From 4beb1016ccd7f3e59b052eb08b0166b16cf415de Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Sat, 7 Dec 2024 00:39:35 +0300 Subject: [PATCH 001/263] Make unknown shuttle events trigger an announcement (#33450) * Make unknown shuttle events trigger an announcement * Call base at the end --------- Co-authored-by: Winkarst <74284083+Winkarst-cpu@users.noreply.github.co> --- Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs index d2686ecdcd..f18115d3cf 100644 --- a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs @@ -1,14 +1,14 @@ using Content.Server.GameTicking.Rules.Components; using Content.Server.GridPreloader; +using Content.Server.StationEvents.Events; using Content.Shared.GameTicking.Components; using Robust.Server.GameObjects; using Robust.Server.Maps; -using Robust.Shared.Map; using Robust.Shared.Prototypes; namespace Content.Server.GameTicking.Rules; -public sealed class LoadMapRuleSystem : GameRuleSystem +public sealed class LoadMapRuleSystem : StationEventSystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly MapSystem _map = default!; @@ -75,5 +75,7 @@ public sealed class LoadMapRuleSystem : GameRuleSystem var ev = new RuleLoadedGridsEvent(mapId, grids); RaiseLocalEvent(uid, ref ev); + + base.Added(uid, comp, rule, args); } } From 9365e3a99bad75f7426fcc07fa6f406ba23e9620 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 7 Dec 2024 14:39:52 +1100 Subject: [PATCH 002/263] Predicted gas pumps (#33717) * Predicted gas pumps I wanted to try out atmos and first thing I found. * a * Remove details range --- .../EntitySystems/GasPressurePumpSystem.cs | 23 +++ .../UI/GasPressurePumpBoundUserInterface.cs | 90 +++++---- .../Atmos/UI/GasPressurePumpWindow.xaml | 22 +-- .../Atmos/UI/GasPressurePumpWindow.xaml.cs | 35 ++-- .../Monitor/Systems/AtmosMonitoringSystem.cs | 1 + .../Components/GasPressurePumpComponent.cs | 31 --- .../EntitySystems/GasPressurePumpSystem.cs | 180 ++++-------------- .../Binary/EntitySystems/GasRecyclerSystem.cs | 1 + .../EntitySystems/GasVolumePumpSystem.cs | 1 + .../Piping/Components/AtmosDeviceComponent.cs | 12 -- .../Piping/EntitySystems/AtmosDeviceSystem.cs | 1 + .../Trinary/EntitySystems/GasFilterSystem.cs | 1 + .../Trinary/EntitySystems/GasMixerSystem.cs | 1 + .../PressureControlledValveSystem.cs | 1 + .../Unary/EntitySystems/GasVentPumpSystem.cs | 1 + .../EntitySystems/GasVentScrubberSystem.cs | 1 + .../Components/GasPressurePumpComponent.cs | 25 +++ .../SharedGasPressurePumpSystem.cs | 97 ++++++++++ .../SharedGasPressurePumpComponent.cs | 60 ++---- .../Components/AtmosDeviceDisabledEvent.cs | 7 + .../Components/AtmosDeviceEnabledEvent.cs | 7 + .../ActivatableUIRequiresAnchorComponent.cs | 13 ++ .../ActivatableUIRequiresAnchorSystem.cs | 41 ++++ .../en-US/components/gas-pump-component.ftl | 2 - Resources/Locale/en-US/ui/general.ftl | 2 + .../Structures/Piping/Atmospherics/binary.yml | 7 +- 26 files changed, 355 insertions(+), 308 deletions(-) create mode 100644 Content.Client/Atmos/EntitySystems/GasPressurePumpSystem.cs delete mode 100644 Content.Server/Atmos/Piping/Binary/Components/GasPressurePumpComponent.cs create mode 100644 Content.Shared/Atmos/Components/GasPressurePumpComponent.cs create mode 100644 Content.Shared/Atmos/EntitySystems/SharedGasPressurePumpSystem.cs create mode 100644 Content.Shared/Atmos/Piping/Components/AtmosDeviceDisabledEvent.cs create mode 100644 Content.Shared/Atmos/Piping/Components/AtmosDeviceEnabledEvent.cs create mode 100644 Content.Shared/UserInterface/ActivatableUIRequiresAnchorComponent.cs create mode 100644 Content.Shared/UserInterface/ActivatableUIRequiresAnchorSystem.cs diff --git a/Content.Client/Atmos/EntitySystems/GasPressurePumpSystem.cs b/Content.Client/Atmos/EntitySystems/GasPressurePumpSystem.cs new file mode 100644 index 0000000000..54e16bc862 --- /dev/null +++ b/Content.Client/Atmos/EntitySystems/GasPressurePumpSystem.cs @@ -0,0 +1,23 @@ +using Content.Client.Atmos.UI; +using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.EntitySystems; +using Content.Shared.Atmos.Piping.Binary.Components; + +namespace Content.Client.Atmos.EntitySystems; + +public sealed class GasPressurePumpSystem : SharedGasPressurePumpSystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnPumpUpdate); + } + + private void OnPumpUpdate(Entity ent, ref AfterAutoHandleStateEvent args) + { + if (UserInterfaceSystem.TryGetOpenUi(ent.Owner, GasPressurePumpUiKey.Key, out var bui)) + { + bui.Update(); + } + } +} diff --git a/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs b/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs index 220fdbe875..0c07eec402 100644 --- a/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs @@ -1,65 +1,63 @@ using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Content.Shared.Atmos.Piping.Binary.Components; +using Content.Shared.IdentityManagement; using Content.Shared.Localizations; using JetBrains.Annotations; -using Robust.Client.GameObjects; using Robust.Client.UserInterface; -namespace Content.Client.Atmos.UI +namespace Content.Client.Atmos.UI; + +/// +/// Initializes a and updates it when new server messages are received. +/// +[UsedImplicitly] +public sealed class GasPressurePumpBoundUserInterface : BoundUserInterface { - /// - /// Initializes a and updates it when new server messages are received. - /// - [UsedImplicitly] - public sealed class GasPressurePumpBoundUserInterface : BoundUserInterface + [ViewVariables] + private const float MaxPressure = Atmospherics.MaxOutputPressure; + + [ViewVariables] + private GasPressurePumpWindow? _window; + + public GasPressurePumpBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { - [ViewVariables] - private const float MaxPressure = Atmospherics.MaxOutputPressure; + } - [ViewVariables] - private GasPressurePumpWindow? _window; + protected override void Open() + { + base.Open(); - public GasPressurePumpBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) - { - } + _window = this.CreateWindow(); - protected override void Open() - { - base.Open(); + _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; + _window.PumpOutputPressureChanged += OnPumpOutputPressurePressed; + Update(); + } - _window = this.CreateWindow(); + public void Update() + { + if (_window == null) + return; - _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; - _window.PumpOutputPressureChanged += OnPumpOutputPressurePressed; - } + _window.Title = Identity.Name(Owner, EntMan); - private void OnToggleStatusButtonPressed() - { - if (_window is null) return; - SendMessage(new GasPressurePumpToggleStatusMessage(_window.PumpStatus)); - } + if (!EntMan.TryGetComponent(Owner, out GasPressurePumpComponent? pump)) + return; - private void OnPumpOutputPressurePressed(string value) - { - var pressure = UserInputParser.TryFloat(value, out var parsed) ? parsed : 0f; - if (pressure > MaxPressure) pressure = MaxPressure; + _window.SetPumpStatus(pump.Enabled); + _window.MaxPressure = pump.MaxTargetPressure; + _window.SetOutputPressure(pump.TargetPressure); + } - SendMessage(new GasPressurePumpChangeOutputPressureMessage(pressure)); - } + private void OnToggleStatusButtonPressed() + { + if (_window is null) return; + SendPredictedMessage(new GasPressurePumpToggleStatusMessage(_window.PumpStatus)); + } - /// - /// Update the UI state based on server-sent info - /// - /// - protected override void UpdateState(BoundUserInterfaceState state) - { - base.UpdateState(state); - if (_window == null || state is not GasPressurePumpBoundUserInterfaceState cast) - return; - - _window.Title = (cast.PumpLabel); - _window.SetPumpStatus(cast.Enabled); - _window.SetOutputPressure(cast.OutputPressure); - } + private void OnPumpOutputPressurePressed(float value) + { + SendPredictedMessage(new GasPressurePumpChangeOutputPressureMessage(value)); } } diff --git a/Content.Client/Atmos/UI/GasPressurePumpWindow.xaml b/Content.Client/Atmos/UI/GasPressurePumpWindow.xaml index a0896a7b41..f2c2c7cec5 100644 --- a/Content.Client/Atmos/UI/GasPressurePumpWindow.xaml +++ b/Content.Client/Atmos/UI/GasPressurePumpWindow.xaml @@ -1,22 +1,18 @@ - + xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls" + SetSize="340 110" MinSize="340 110" Title="Pressure Pump"> - diff --git a/Content.Client/Atmos/Consoles/AtmosMonitoringEntryContainer.xaml.cs b/Content.Client/Atmos/Consoles/AtmosMonitoringEntryContainer.xaml.cs new file mode 100644 index 0000000000..0ce0c9c880 --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosMonitoringEntryContainer.xaml.cs @@ -0,0 +1,166 @@ +using Content.Client.Stylesheets; +using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; +using Content.Shared.FixedPoint; +using Content.Shared.Temperature; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using System.Linq; + +namespace Content.Client.Atmos.Consoles; + +[GenerateTypedNameReferences] +public sealed partial class AtmosMonitoringEntryContainer : BoxContainer +{ + public AtmosMonitoringConsoleEntry Data; + + private readonly IEntityManager _entManager; + private readonly IResourceCache _cache; + + public AtmosMonitoringEntryContainer(AtmosMonitoringConsoleEntry data) + { + RobustXamlLoader.Load(this); + _entManager = IoCManager.Resolve(); + _cache = IoCManager.Resolve(); + + Data = data; + + // Modulate colored stripe + NetworkColorStripe.Modulate = data.Color; + + // Load fonts + var headerFont = new VectorFont(_cache.GetResource("/Fonts/NotoSans/NotoSans-Bold.ttf"), 11); + var normalFont = new VectorFont(_cache.GetResource("/Fonts/NotoSansDisplay/NotoSansDisplay-Regular.ttf"), 11); + + // Set fonts + TemperatureHeaderLabel.FontOverride = headerFont; + PressureHeaderLabel.FontOverride = headerFont; + TotalMolHeaderLabel.FontOverride = headerFont; + GasesHeaderLabel.FontOverride = headerFont; + + TemperatureLabel.FontOverride = normalFont; + PressureLabel.FontOverride = normalFont; + TotalMolLabel.FontOverride = normalFont; + + NoDataLabel.FontOverride = headerFont; + } + + public void UpdateEntry(AtmosMonitoringConsoleEntry updatedData, bool isFocus) + { + // Load fonts + var normalFont = new VectorFont(_cache.GetResource("/Fonts/NotoSansDisplay/NotoSansDisplay-Regular.ttf"), 11); + + // Update name and values + if (!string.IsNullOrEmpty(updatedData.Address)) + NetworkNameLabel.Text = Loc.GetString("atmos-alerts-window-alarm-label", ("name", updatedData.EntityName), ("address", updatedData.Address)); + + else + NetworkNameLabel.Text = Loc.GetString(updatedData.EntityName); + + Data = updatedData; + + // Modulate colored stripe + NetworkColorStripe.Modulate = Data.Color; + + // Focus updates + if (isFocus) + SetAsFocus(); + else + RemoveAsFocus(); + + // Check if powered + if (!updatedData.IsPowered) + { + MainDataContainer.Visible = false; + NoDataLabel.Visible = true; + + return; + } + + // Set container visibility + MainDataContainer.Visible = true; + NoDataLabel.Visible = false; + + // Update temperature + var isNotVacuum = updatedData.TotalMolData > 1e-6f; + var tempK = (FixedPoint2)updatedData.TemperatureData; + var tempC = (FixedPoint2)TemperatureHelpers.KelvinToCelsius(tempK.Float()); + + TemperatureLabel.Text = isNotVacuum ? + Loc.GetString("atmos-alerts-window-temperature-value", ("valueInC", tempC), ("valueInK", tempK)) : + Loc.GetString("atmos-alerts-window-invalid-value"); + + TemperatureLabel.FontColorOverride = isNotVacuum ? Color.DarkGray : StyleNano.DisabledFore; + + // Update pressure + PressureLabel.Text = Loc.GetString("atmos-alerts-window-pressure-value", ("value", (FixedPoint2)updatedData.PressureData)); + PressureLabel.FontColorOverride = isNotVacuum ? Color.DarkGray : StyleNano.DisabledFore; + + // Update total mol + TotalMolLabel.Text = Loc.GetString("atmos-alerts-window-total-mol-value", ("value", (FixedPoint2)updatedData.TotalMolData)); + TotalMolLabel.FontColorOverride = isNotVacuum ? Color.DarkGray : StyleNano.DisabledFore; + + // Update other present gases + GasGridContainer.RemoveAllChildren(); + + if (updatedData.GasData.Count() == 0) + { + // No gases + var gasLabel = new Label() + { + Text = Loc.GetString("atmos-alerts-window-other-gases-value-nil"), + FontOverride = normalFont, + FontColorOverride = StyleNano.DisabledFore, + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Center, + HorizontalExpand = true, + Margin = new Thickness(0, 2, 0, 0), + SetHeight = 24f, + }; + + GasGridContainer.AddChild(gasLabel); + } + + else + { + // Add an entry for each gas + foreach (var (gas, percent) in updatedData.GasData) + { + var gasPercent = (FixedPoint2)0f; + gasPercent = percent * 100f; + + var gasAbbreviation = Atmospherics.GasAbbreviations.GetValueOrDefault(gas, Loc.GetString("gas-unknown-abbreviation")); + + var gasLabel = new Label() + { + Text = Loc.GetString("atmos-alerts-window-other-gases-value", ("shorthand", gasAbbreviation), ("value", gasPercent)), + FontOverride = normalFont, + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Center, + HorizontalExpand = true, + Margin = new Thickness(0, 2, 0, 0), + SetHeight = 24f, + }; + + GasGridContainer.AddChild(gasLabel); + } + } + } + + public void SetAsFocus() + { + FocusButton.AddStyleClass(StyleNano.StyleClassButtonColorGreen); + ArrowTexture.TexturePath = "/Textures/Interface/Nano/inverted_triangle.svg.png"; + FocusContainer.Visible = true; + } + + public void RemoveAsFocus() + { + FocusButton.RemoveStyleClass(StyleNano.StyleClassButtonColorGreen); + ArrowTexture.TexturePath = "/Textures/Interface/Nano/triangle_right.png"; + FocusContainer.Visible = false; + } +} diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 90c2680c4a..b774b7d8b5 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -385,26 +385,6 @@ public partial class NavMapControl : MapGridControl if (PostWallDrawingAction != null) PostWallDrawingAction.Invoke(handle); - // Beacons - if (_beacons.Pressed) - { - var rectBuffer = new Vector2(5f, 3f); - - // Calculate font size for current zoom level - var fontSize = (int) Math.Round(1 / WorldRange * DefaultDisplayedRange * UIScale * _targetFontsize, 0); - var font = new VectorFont(_cache.GetResource("/Fonts/NotoSans/NotoSans-Bold.ttf"), fontSize); - - foreach (var beacon in _navMap.Beacons.Values) - { - var position = beacon.Position - offset; - position = ScalePosition(position with { Y = -position.Y }); - - var textDimensions = handle.GetDimensions(font, beacon.Text, 1f); - handle.DrawRect(new UIBox2(position - textDimensions / 2 - rectBuffer, position + textDimensions / 2 + rectBuffer), BackgroundColor); - handle.DrawString(font, position - textDimensions / 2, beacon.Text, beacon.Color); - } - } - var curTime = Timing.RealTime; var blinkFrequency = 1f / 1f; var lit = curTime.TotalSeconds % blinkFrequency > blinkFrequency / 2f; @@ -443,11 +423,31 @@ public partial class NavMapControl : MapGridControl position = ScalePosition(new Vector2(position.X, -position.Y)); var scalingCoefficient = MinmapScaleModifier * float.Sqrt(MinimapScale); - var positionOffset = new Vector2(scalingCoefficient * blip.Texture.Width, scalingCoefficient * blip.Texture.Height); + var positionOffset = new Vector2(scalingCoefficient * blip.Scale * blip.Texture.Width, scalingCoefficient * blip.Scale * blip.Texture.Height); handle.DrawTextureRect(blip.Texture, new UIBox2(position - positionOffset, position + positionOffset), blip.Color); } } + + // Beacons + if (_beacons.Pressed) + { + var rectBuffer = new Vector2(5f, 3f); + + // Calculate font size for current zoom level + var fontSize = (int)Math.Round(1 / WorldRange * DefaultDisplayedRange * UIScale * _targetFontsize, 0); + var font = new VectorFont(_cache.GetResource("/Fonts/NotoSans/NotoSans-Bold.ttf"), fontSize); + + foreach (var beacon in _navMap.Beacons.Values) + { + var position = beacon.Position - offset; + position = ScalePosition(position with { Y = -position.Y }); + + var textDimensions = handle.GetDimensions(font, beacon.Text, 1f); + handle.DrawRect(new UIBox2(position - textDimensions / 2 - rectBuffer, position + textDimensions / 2 + rectBuffer), BackgroundColor); + handle.DrawString(font, position - textDimensions / 2, beacon.Text, beacon.Color); + } + } } protected override void FrameUpdate(FrameEventArgs args) @@ -689,6 +689,9 @@ public partial class NavMapControl : MapGridControl Vector2i foundTermius; Vector2i foundOrigin; + if (origin == terminus) + return; + // Does our new line end at the beginning of an existing line? if (lookup.Remove(terminus, out foundTermius)) { @@ -739,13 +742,15 @@ public struct NavMapBlip public Color Color; public bool Blinks; public bool Selectable; + public float Scale; - public NavMapBlip(EntityCoordinates coordinates, Texture texture, Color color, bool blinks, bool selectable = true) + public NavMapBlip(EntityCoordinates coordinates, Texture texture, Color color, bool blinks, bool selectable = true, float scale = 1f) { Coordinates = coordinates; Texture = texture; Color = color; Blinks = blinks; Selectable = selectable; + Scale = scale; } } diff --git a/Content.Server/Atmos/Consoles/AtmosMonitoringConsoleSystem.cs b/Content.Server/Atmos/Consoles/AtmosMonitoringConsoleSystem.cs new file mode 100644 index 0000000000..5ecadc7154 --- /dev/null +++ b/Content.Server/Atmos/Consoles/AtmosMonitoringConsoleSystem.cs @@ -0,0 +1,542 @@ +using Content.Server.Atmos.Components; +using Content.Server.Atmos.Piping.Components; +using Content.Server.DeviceNetwork.Components; +using Content.Server.NodeContainer; +using Content.Server.NodeContainer.EntitySystems; +using Content.Server.NodeContainer.NodeGroups; +using Content.Server.NodeContainer.Nodes; +using Content.Server.Power.Components; +using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.Consoles; +using Content.Shared.Labels.Components; +using Content.Shared.Pinpointer; +using Robust.Server.GameObjects; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Timing; +using System.Diagnostics.CodeAnalysis; +using System.Linq; + +namespace Content.Server.Atmos.Consoles; + +public sealed class AtmosMonitoringConsoleSystem : SharedAtmosMonitoringConsoleSystem +{ + [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; + [Dependency] private readonly SharedMapSystem _sharedMapSystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + + // Private variables + // Note: this data does not need to be saved + private Dictionary> _gridAtmosPipeChunks = new(); + private float _updateTimer = 1.0f; + + // Constants + private const float UpdateTime = 1.0f; + private const int ChunkSize = 4; + + public override void Initialize() + { + base.Initialize(); + + // Console events + SubscribeLocalEvent(OnConsoleInit); + SubscribeLocalEvent(OnConsoleAnchorChanged); + SubscribeLocalEvent(OnConsoleParentChanged); + + // Tracked device events + SubscribeLocalEvent(OnEntityNodeGroupsRebuilt); + SubscribeLocalEvent(OnEntityPipeColorChanged); + SubscribeLocalEvent(OnEntityShutdown); + + // Grid events + SubscribeLocalEvent(OnGridSplit); + } + + #region Event handling + + private void OnConsoleInit(EntityUid uid, AtmosMonitoringConsoleComponent component, ComponentInit args) + { + InitializeAtmosMonitoringConsole(uid, component); + } + + private void OnConsoleAnchorChanged(EntityUid uid, AtmosMonitoringConsoleComponent component, AnchorStateChangedEvent args) + { + InitializeAtmosMonitoringConsole(uid, component); + } + + private void OnConsoleParentChanged(EntityUid uid, AtmosMonitoringConsoleComponent component, EntParentChangedMessage args) + { + component.ForceFullUpdate = true; + InitializeAtmosMonitoringConsole(uid, component); + } + + private void OnEntityNodeGroupsRebuilt(EntityUid uid, AtmosMonitoringConsoleDeviceComponent component, NodeGroupsRebuilt args) + { + InitializeAtmosMonitoringDevice(uid, component); + } + + private void OnEntityPipeColorChanged(EntityUid uid, AtmosMonitoringConsoleDeviceComponent component, AtmosPipeColorChangedEvent args) + { + InitializeAtmosMonitoringDevice(uid, component); + } + + private void OnEntityShutdown(EntityUid uid, AtmosMonitoringConsoleDeviceComponent component, EntityTerminatingEvent args) + { + ShutDownAtmosMonitoringEntity(uid, component); + } + + private void OnGridSplit(ref GridSplitEvent args) + { + // Collect grids + var allGrids = args.NewGrids.ToList(); + + if (!allGrids.Contains(args.Grid)) + allGrids.Add(args.Grid); + + // Rebuild the pipe networks on the affected grids + foreach (var ent in allGrids) + { + if (!TryComp(ent, out var grid)) + continue; + + RebuildAtmosPipeGrid(ent, grid); + } + + // Update atmos monitoring consoles that stand upon an updated grid + var query = AllEntityQuery(); + while (query.MoveNext(out var ent, out var entConsole, out var entXform)) + { + if (entXform.GridUid == null) + continue; + + if (!allGrids.Contains(entXform.GridUid.Value)) + continue; + + InitializeAtmosMonitoringConsole(ent, entConsole); + } + } + + #endregion + + #region UI updates + + public override void Update(float frameTime) + { + base.Update(frameTime); + + _updateTimer += frameTime; + + if (_updateTimer >= UpdateTime) + { + _updateTimer -= UpdateTime; + + var query = AllEntityQuery(); + while (query.MoveNext(out var ent, out var entConsole, out var entXform)) + { + if (entXform?.GridUid == null) + continue; + + UpdateUIState(ent, entConsole, entXform); + } + } + } + + public void UpdateUIState + (EntityUid uid, + AtmosMonitoringConsoleComponent component, + TransformComponent xform) + { + if (!_userInterfaceSystem.IsUiOpen(uid, AtmosMonitoringConsoleUiKey.Key)) + return; + + var gridUid = xform.GridUid!.Value; + + if (!TryComp(gridUid, out var mapGrid)) + return; + + if (!TryComp(gridUid, out var atmosphere)) + return; + + // The grid must have a NavMapComponent to visualize the map in the UI + EnsureComp(gridUid); + + // Gathering data to be send to the client + var atmosNetworks = new List(); + var query = AllEntityQuery(); + + while (query.MoveNext(out var ent, out var entSensor, out var entXform)) + { + if (entXform?.GridUid != xform.GridUid) + continue; + + if (!entXform.Anchored) + continue; + + var entry = CreateAtmosMonitoringConsoleEntry(ent, entXform); + + if (entry != null) + atmosNetworks.Add(entry.Value); + } + + // Set the UI state + _userInterfaceSystem.SetUiState(uid, AtmosMonitoringConsoleUiKey.Key, + new AtmosMonitoringConsoleBoundInterfaceState(atmosNetworks.ToArray())); + } + + private AtmosMonitoringConsoleEntry? CreateAtmosMonitoringConsoleEntry(EntityUid uid, TransformComponent xform) + { + AtmosMonitoringConsoleEntry? entry = null; + + var netEnt = GetNetEntity(uid); + var name = MetaData(uid).EntityName; + var address = string.Empty; + + if (xform.GridUid == null) + return null; + + if (!TryGettingFirstPipeNode(uid, out var pipeNode, out var netId) || + pipeNode == null || + netId == null) + return null; + + var pipeColor = TryComp(uid, out var colorComponent) ? colorComponent.Color : Color.White; + + // Name the entity based on its label, if available + if (TryComp(uid, out var label) && label.CurrentLabel != null) + name = label.CurrentLabel; + + // Otherwise use its base name and network address + else if (TryComp(uid, out var deviceNet)) + address = deviceNet.Address; + + // Entry for unpowered devices + if (TryComp(uid, out var apcPowerReceiver) && !apcPowerReceiver.Powered) + { + entry = new AtmosMonitoringConsoleEntry(netEnt, GetNetCoordinates(xform.Coordinates), netId.Value, name, address) + { + IsPowered = false, + Color = pipeColor + }; + + return entry; + } + + // Entry for powered devices + var gasData = new Dictionary(); + var isAirPresent = pipeNode.Air.TotalMoles > 0; + + if (isAirPresent) + { + foreach (var gas in Enum.GetValues()) + { + if (pipeNode.Air[(int)gas] > 0) + gasData.Add(gas, pipeNode.Air[(int)gas] / pipeNode.Air.TotalMoles); + } + } + + entry = new AtmosMonitoringConsoleEntry(netEnt, GetNetCoordinates(xform.Coordinates), netId.Value, name, address) + { + TemperatureData = isAirPresent ? pipeNode.Air.Temperature : 0f, + PressureData = pipeNode.Air.Pressure, + TotalMolData = pipeNode.Air.TotalMoles, + GasData = gasData, + Color = pipeColor + }; + + return entry; + } + + private Dictionary GetAllAtmosDeviceNavMapData(EntityUid gridUid) + { + var atmosDeviceNavMapData = new Dictionary(); + + var query = AllEntityQuery(); + while (query.MoveNext(out var ent, out var entComponent, out var entXform)) + { + if (TryGetAtmosDeviceNavMapData(ent, entComponent, entXform, gridUid, out var data)) + atmosDeviceNavMapData.Add(data.Value.NetEntity, data.Value); + } + + return atmosDeviceNavMapData; + } + + private bool TryGetAtmosDeviceNavMapData + (EntityUid uid, + AtmosMonitoringConsoleDeviceComponent component, + TransformComponent xform, + EntityUid gridUid, + [NotNullWhen(true)] out AtmosDeviceNavMapData? device) + { + device = null; + + if (component.NavMapBlip == null) + return false; + + if (xform.GridUid != gridUid) + return false; + + if (!xform.Anchored) + return false; + + var direction = xform.LocalRotation.GetCardinalDir(); + + if (!TryGettingFirstPipeNode(uid, out var _, out var netId)) + netId = -1; + + var color = Color.White; + + if (TryComp(uid, out var atmosPipeColor)) + color = atmosPipeColor.Color; + + device = new AtmosDeviceNavMapData(GetNetEntity(uid), GetNetCoordinates(xform.Coordinates), netId.Value, component.NavMapBlip.Value, direction, color); + + return true; + } + + #endregion + + #region Pipe net functions + + private void RebuildAtmosPipeGrid(EntityUid gridUid, MapGridComponent grid) + { + var allChunks = new Dictionary(); + + // Adds all atmos pipes to the nav map via bit mask chunks + var queryPipes = AllEntityQuery(); + while (queryPipes.MoveNext(out var ent, out var entAtmosPipeColor, out var entNodeContainer, out var entXform)) + { + if (entXform.GridUid != gridUid) + continue; + + if (!entXform.Anchored) + continue; + + var tile = _sharedMapSystem.GetTileRef(gridUid, grid, entXform.Coordinates); + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile.GridIndices, ChunkSize); + var relative = SharedMapSystem.GetChunkRelative(tile.GridIndices, ChunkSize); + + if (!allChunks.TryGetValue(chunkOrigin, out var chunk)) + { + chunk = new AtmosPipeChunk(chunkOrigin); + allChunks[chunkOrigin] = chunk; + } + + UpdateAtmosPipeChunk(ent, entNodeContainer, entAtmosPipeColor, GetTileIndex(relative), ref chunk); + } + + // Add or update the chunks on the associated grid + _gridAtmosPipeChunks[gridUid] = allChunks; + + // Update the consoles that are on the same grid + var queryConsoles = AllEntityQuery(); + while (queryConsoles.MoveNext(out var ent, out var entConsole, out var entXform)) + { + if (gridUid != entXform.GridUid) + continue; + + entConsole.AtmosPipeChunks = allChunks; + Dirty(ent, entConsole); + } + } + + private void RebuildSingleTileOfPipeNetwork(EntityUid gridUid, MapGridComponent grid, EntityCoordinates coords) + { + if (!_gridAtmosPipeChunks.TryGetValue(gridUid, out var allChunks)) + allChunks = new Dictionary(); + + var tile = _sharedMapSystem.GetTileRef(gridUid, grid, coords); + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile.GridIndices, ChunkSize); + var relative = SharedMapSystem.GetChunkRelative(tile.GridIndices, ChunkSize); + var tileIdx = GetTileIndex(relative); + + if (!allChunks.TryGetValue(chunkOrigin, out var chunk)) + chunk = new AtmosPipeChunk(chunkOrigin); + + // Remove all stale values for the tile + foreach (var (index, atmosPipeData) in chunk.AtmosPipeData) + { + var mask = (ulong)SharedNavMapSystem.AllDirMask << tileIdx * SharedNavMapSystem.Directions; + chunk.AtmosPipeData[index] = atmosPipeData & ~mask; + } + + // Rebuild the tile's pipe data + foreach (var ent in _sharedMapSystem.GetAnchoredEntities(gridUid, grid, coords)) + { + if (!TryComp(ent, out var entAtmosPipeColor)) + continue; + + if (!TryComp(ent, out var entNodeContainer)) + continue; + + UpdateAtmosPipeChunk(ent, entNodeContainer, entAtmosPipeColor, tileIdx, ref chunk); + } + + // Add or update the chunk on the associated grid + // Only the modified chunk will be sent to the client + chunk.LastUpdate = _gameTiming.CurTick; + allChunks[chunkOrigin] = chunk; + _gridAtmosPipeChunks[gridUid] = allChunks; + + // Update the components of the monitoring consoles that are attached to the same grid + var query = AllEntityQuery(); + + while (query.MoveNext(out var ent, out var entConsole, out var entXform)) + { + if (gridUid != entXform.GridUid) + continue; + + entConsole.AtmosPipeChunks = allChunks; + Dirty(ent, entConsole); + } + } + + private void UpdateAtmosPipeChunk(EntityUid uid, NodeContainerComponent nodeContainer, AtmosPipeColorComponent pipeColor, int tileIdx, ref AtmosPipeChunk chunk) + { + // Entities that are actively being deleted are not to be drawn + if (MetaData(uid).EntityLifeStage >= EntityLifeStage.Terminating) + return; + + foreach ((var id, var node) in nodeContainer.Nodes) + { + if (node is not PipeNode) + continue; + + var pipeNode = (PipeNode)node; + var netId = GetPipeNodeNetId(pipeNode); + var pipeDirection = pipeNode.CurrentPipeDirection; + + chunk.AtmosPipeData.TryGetValue((netId, pipeColor.Color.ToHex()), out var atmosPipeData); + atmosPipeData |= (ulong)pipeDirection << tileIdx * SharedNavMapSystem.Directions; + chunk.AtmosPipeData[(netId, pipeColor.Color.ToHex())] = atmosPipeData; + } + } + + private bool TryGettingFirstPipeNode(EntityUid uid, [NotNullWhen(true)] out PipeNode? pipeNode, [NotNullWhen(true)] out int? netId) + { + pipeNode = null; + netId = null; + + if (!TryComp(uid, out var nodeContainer)) + return false; + + foreach (var node in nodeContainer.Nodes.Values) + { + if (node is PipeNode) + { + pipeNode = (PipeNode)node; + netId = GetPipeNodeNetId(pipeNode); + + return true; + } + } + + return false; + } + + private int GetPipeNodeNetId(PipeNode pipeNode) + { + if (pipeNode.NodeGroup is BaseNodeGroup) + { + var nodeGroup = (BaseNodeGroup)pipeNode.NodeGroup; + + return nodeGroup.NetId; + } + + return -1; + } + + #endregion + + #region Initialization functions + + private void InitializeAtmosMonitoringConsole(EntityUid uid, AtmosMonitoringConsoleComponent component) + { + var xform = Transform(uid); + + if (xform.GridUid == null) + return; + + var grid = xform.GridUid.Value; + + if (!TryComp(grid, out var map)) + return; + + component.AtmosDevices = GetAllAtmosDeviceNavMapData(grid); + + if (!_gridAtmosPipeChunks.TryGetValue(grid, out var chunks)) + { + RebuildAtmosPipeGrid(grid, map); + } + + else + { + component.AtmosPipeChunks = chunks; + Dirty(uid, component); + } + } + + private void InitializeAtmosMonitoringDevice(EntityUid uid, AtmosMonitoringConsoleDeviceComponent component) + { + // Rebuild tile + var xform = Transform(uid); + var gridUid = xform.GridUid; + + if (gridUid != null && TryComp(gridUid, out var grid)) + RebuildSingleTileOfPipeNetwork(gridUid.Value, grid, xform.Coordinates); + + // Update blips on affected consoles + if (component.NavMapBlip == null) + return; + + var netEntity = EntityManager.GetNetEntity(uid); + var query = AllEntityQuery(); + + while (query.MoveNext(out var ent, out var entConsole, out var entXform)) + { + var isDirty = entConsole.AtmosDevices.Remove(netEntity); + + if (gridUid != null && + gridUid == entXform.GridUid && + xform.Anchored && + TryGetAtmosDeviceNavMapData(uid, component, xform, gridUid.Value, out var data)) + { + entConsole.AtmosDevices.Add(netEntity, data.Value); + isDirty = true; + } + + if (isDirty) + Dirty(ent, entConsole); + } + } + + private void ShutDownAtmosMonitoringEntity(EntityUid uid, AtmosMonitoringConsoleDeviceComponent component) + { + // Rebuild tile + var xform = Transform(uid); + var gridUid = xform.GridUid; + + if (gridUid != null && TryComp(gridUid, out var grid)) + RebuildSingleTileOfPipeNetwork(gridUid.Value, grid, xform.Coordinates); + + // Update blips on affected consoles + if (component.NavMapBlip == null) + return; + + var netEntity = EntityManager.GetNetEntity(uid); + var query = AllEntityQuery(); + + while (query.MoveNext(out var ent, out var entConsole)) + { + if (entConsole.AtmosDevices.Remove(netEntity)) + Dirty(ent, entConsole); + } + } + + #endregion + + private int GetTileIndex(Vector2i relativeTile) + { + return relativeTile.X * ChunkSize + relativeTile.Y; + } +} diff --git a/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs b/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs index 5b05668ad5..a8edb07d31 100644 --- a/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs +++ b/Content.Server/Atmos/Piping/Components/AtmosPipeColorComponent.cs @@ -1,19 +1,24 @@ using Content.Server.Atmos.Piping.EntitySystems; using JetBrains.Annotations; -namespace Content.Server.Atmos.Piping.Components -{ - [RegisterComponent] - public sealed partial class AtmosPipeColorComponent : Component - { - [DataField("color")] - public Color Color { get; set; } = Color.White; +namespace Content.Server.Atmos.Piping.Components; - [ViewVariables(VVAccess.ReadWrite), UsedImplicitly] - public Color ColorVV - { - get => Color; - set => IoCManager.Resolve().System().SetColor(Owner, this, value); - } +[RegisterComponent] +public sealed partial class AtmosPipeColorComponent : Component +{ + [DataField] + public Color Color { get; set; } = Color.White; + + [ViewVariables(VVAccess.ReadWrite), UsedImplicitly] + public Color ColorVV + { + get => Color; + set => IoCManager.Resolve().System().SetColor(Owner, this, value); } } + +[ByRefEvent] +public record struct AtmosPipeColorChangedEvent(Color color) +{ + public Color Color = color; +} diff --git a/Content.Server/Atmos/Piping/EntitySystems/AtmosPipeColorSystem.cs b/Content.Server/Atmos/Piping/EntitySystems/AtmosPipeColorSystem.cs index b9ee668032..dcb08dcd57 100644 --- a/Content.Server/Atmos/Piping/EntitySystems/AtmosPipeColorSystem.cs +++ b/Content.Server/Atmos/Piping/EntitySystems/AtmosPipeColorSystem.cs @@ -40,6 +40,9 @@ namespace Content.Server.Atmos.Piping.EntitySystems return; _appearance.SetData(uid, PipeColorVisuals.Color, color, appearance); + + var ev = new AtmosPipeColorChangedEvent(color); + RaiseLocalEvent(uid, ref ev); } } } diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index 19766d92e6..cb89f6c199 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -145,6 +145,22 @@ namespace Content.Shared.Atmos /// public const float SpaceHeatCapacity = 7000f; + /// + /// Dictionary of chemical abbreviations for + /// + public static Dictionary GasAbbreviations = new Dictionary() + { + [Gas.Ammonia] = Loc.GetString("gas-ammonia-abbreviation"), + [Gas.CarbonDioxide] = Loc.GetString("gas-carbon-dioxide-abbreviation"), + [Gas.Frezon] = Loc.GetString("gas-frezon-abbreviation"), + [Gas.Nitrogen] = Loc.GetString("gas-nitrogen-abbreviation"), + [Gas.NitrousOxide] = Loc.GetString("gas-nitrous-oxide-abbreviation"), + [Gas.Oxygen] = Loc.GetString("gas-oxygen-abbreviation"), + [Gas.Plasma] = Loc.GetString("gas-plasma-abbreviation"), + [Gas.Tritium] = Loc.GetString("gas-tritium-abbreviation"), + [Gas.WaterVapor] = Loc.GetString("gas-water-vapor-abbreviation"), + }; + #region Excited Groups /// private void OnActivate(EntityUid uid, StorageComponent storageComp, ActivateInWorldEvent args) { - if (args.Handled || !args.Complex || !CanInteract(args.User, (uid, storageComp), storageComp.ClickInsert)) + if (args.Handled || !args.Complex || !storageComp.OpenOnActivate || !CanInteract(args.User, (uid, storageComp))) return; // Toggle diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 5683ae95a7..52547454a0 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -65,8 +65,18 @@ namespace Content.Shared.Storage [DataField] public TimeSpan OpenUiCooldown = TimeSpan.Zero; + /// + /// Can insert stuff by clicking the storage entity with it. + /// [DataField] - public bool ClickInsert = true; // Can insert stuff by clicking the storage entity with it + public bool ClickInsert = true; + + /// + /// Open the storage window when pressing E. + /// When false you can still open the inventory using verbs. + /// + [DataField] + public bool OpenOnActivate = true; /// /// How many entities area pickup can pickup at once. diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 56acf52fb7..469a92092d 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -15,6 +15,7 @@ # they like eat it idk lol - type: Storage clickInsert: false + openOnActivate: false grid: - 0,0,1,2 maxItemSize: Large From ecc2edea6d3d56b8d402566910f13bec540352ae Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Dec 2024 00:13:41 +0000 Subject: [PATCH 125/263] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 1177665f1a..cd66c6e974 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -627,5 +627,13 @@ Entries: id: 78 time: '2024-11-30T20:11:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31836 +- author: slarticodefast + changes: + - message: Health scanning a slime as an aghost will no longer insert the scanner + into their inventory. + type: Fix + id: 79 + time: '2024-12-18T00:12:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33884 Name: Admin Order: 1 From 122e307694fbeb0e5b8c1f81690e3cbfaf41c9d4 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Tue, 17 Dec 2024 23:44:29 -0500 Subject: [PATCH 126/263] Amber Station - Added Holopads, Atmos Monitoring, and Advanced SMESes (#33923) * Added holopads and atmos network monitoring. * Added the advanced SMESes to the station and evac shuttle * Removed an accidentally mapped vox air alarm * Fixed invalids in the escape shuttle --- Resources/Maps/Shuttles/emergency_amber.yml | 255 ++- Resources/Maps/amber.yml | 1688 +++++++++++++------ 2 files changed, 1371 insertions(+), 572 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_amber.yml b/Resources/Maps/Shuttles/emergency_amber.yml index ce4a8e186a..6c159b4ab5 100644 --- a/Resources/Maps/Shuttles/emergency_amber.yml +++ b/Resources/Maps/Shuttles/emergency_amber.yml @@ -468,7 +468,8 @@ entities: parent: 1 - type: DeviceList devices: - - 358 + - 425 + - 422 - proto: AirCanister entities: - uid: 337 @@ -1868,7 +1869,6 @@ entities: - uid: 249 components: - type: Transform - rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 1 - uid: 250 @@ -1933,6 +1933,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-9.5 parent: 1 + - uid: 430 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 - proto: ChairOfficeDark entities: - uid: 261 @@ -2098,6 +2103,12 @@ entities: - type: Transform pos: 0.5,4.5 parent: 1 + - uid: 311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 - uid: 327 components: - type: Transform @@ -2220,6 +2231,13 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 1 +- proto: ComputerAtmosMonitoring + entities: + - uid: 373 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 - proto: ComputerComms entities: - uid: 306 @@ -2258,31 +2276,92 @@ entities: parent: 1 - proto: DogBed entities: - - uid: 311 + - uid: 435 components: - type: Transform - pos: 6.5,7.5 - parent: 1 -- proto: DrinkCanPack - entities: - - uid: 312 - components: - - type: Transform - pos: 6.4505157,8.605185 + pos: 5.5,7.5 parent: 1 - proto: DrinkGlass entities: - uid: 313 components: - type: Transform - pos: 10.504318,2.655363 + rot: -6.283185307179586 rad + pos: 10.220142,2.6318495 parent: 1 - proto: DrinkShaker entities: - uid: 315 components: - type: Transform - pos: 10.366066,4.171074 + rot: -6.283185307179586 rad + pos: 10.449422,2.9654143 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - uid: 442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 1 + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 7.5,4.5 parent: 1 - proto: EmergencyRollerBed entities: @@ -2422,6 +2501,15 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasPipeSensorDistribution + entities: + - uid: 312 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeStraight entities: - uid: 320 @@ -2525,13 +2613,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 373 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 374 components: - type: Transform @@ -2687,6 +2768,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 423 components: - type: Transform @@ -2759,6 +2856,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 358 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 387 components: - type: Transform @@ -2853,16 +2957,6 @@ entities: - 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 358 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 7 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 368 components: - type: Transform @@ -2896,6 +2990,28 @@ entities: - 5 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 7 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 7 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 451 components: - type: Transform @@ -3086,6 +3202,19 @@ entities: - type: Transform pos: -3.584198,-9.54459 parent: 1 +- proto: HolopadLongRange + entities: + - uid: 438 + components: + - type: MetaData + name: long-range holopad (Escape Shuttle) + - type: Transform + pos: 1.5,7.5 + parent: 1 + - type: Label + currentLabel: Escape Shuttle + - type: NameModifier + baseName: long-range holopad - proto: HoloprojectorSecurity entities: - uid: 496 @@ -3454,6 +3583,38 @@ entities: - type: Transform pos: 7.5,0.5 parent: 1 +- proto: Screen + entities: + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 - proto: ShuttersNormalOpen entities: - uid: 551 @@ -3725,7 +3886,7 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-9.5 parent: 1 -- proto: SMESBasic +- proto: SMESAdvanced entities: - uid: 314 components: @@ -3813,12 +3974,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,8.5 parent: 1 - - uid: 610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,8.5 - parent: 1 - uid: 611 components: - type: Transform @@ -4564,6 +4719,16 @@ entities: - type: Transform pos: 8.5,-3.5 parent: 1 +- proto: WarpPoint + entities: + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - type: WarpPoint + location: Escape Shuttle - proto: WeaponCapacitorRecharger entities: - uid: 758 @@ -4576,14 +4741,6 @@ entities: - type: Transform pos: 1.5,8.5 parent: 1 -- proto: WindoorBarKitchenLocked - entities: - - uid: 760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,2.5 - parent: 1 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 761 @@ -4600,6 +4757,14 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-11.5 parent: 1 +- proto: WindoorServiceLocked + entities: + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 - proto: WindowReinforcedDirectional entities: - uid: 294 diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index 21442a60b0..3ff3d0d16d 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -15,6 +15,7 @@ tilemap: 63: FloorCarpetOffice 28: FloorDark 65: FloorDarkDiagonalMini + 3: FloorDarkMono 64: FloorDarkPavement 61: FloorDarkPavementVertical 29: FloorFreezer @@ -74,59 +75,59 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: CQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDwAAAAACDwAAAAADDwAAAAABDwAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADDwAAAAAADwAAAAABDwAAAAAADwAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDwAAAAABDwAAAAABDwAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADGgAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADDwAAAAAADwAAAAACDwAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABGgAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAACDwAAAAABDwAAAAABDwAAAAADDwAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADDwAAAAACDwAAAAABDwAAAAAADwAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABDwAAAAAADwAAAAACDwAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAABDwAAAAABDwAAAAACDwAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAADGgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDwAAAAADDwAAAAAADwAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACGgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: CQAAAAABCQAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAACCQAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAADCQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAABCQAAAAADCQAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: IwAAAAACIwAAAAABIwAAAAADIwAAAAACIwAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAACIwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAACDgAAAAAAHAAAAAADHAAAAAACIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADIwAAAAADIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGgAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAABIwAAAAADIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAACIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAABIwAAAAACIwAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABIwAAAAABIwAAAAABAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAACIwAAAAABAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAADHAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABHAAAAAACIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAACHAAAAAADKQAAAAAAKwAAAAABKwAAAAABKwAAAAABDgAAAAAACQAAAAAAHAAAAAAADgAAAAAAHAAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADHAAAAAADDgAAAAAAKwAAAAACKwAAAAADKwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAD + tiles: IwAAAAABIwAAAAAAIwAAAAABIwAAAAABIwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADIwAAAAADIwAAAAAAIwAAAAACIwAAAAADIwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACDgAAAAAAHAAAAAADHAAAAAABIwAAAAADIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAHAAAAAABHAAAAAAAIwAAAAADIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGgAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACIwAAAAABIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABHAAAAAADIwAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAABIwAAAAABIwAAAAACIwAAAAAAIwAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAIwAAAAABIwAAAAACAAAAAAAAAAAAAAAAIwAAAAACIwAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAABHAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACHAAAAAADIwAAAAACIwAAAAABAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACHAAAAAADKQAAAAAAKwAAAAAAKwAAAAACKwAAAAAADgAAAAAACQAAAAACHAAAAAACDgAAAAAAHAAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAACHAAAAAABDgAAAAAAKwAAAAABKwAAAAABKwAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAACCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAIwAAAAADIwAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABIwAAAAADIwAAAAADDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAACIwAAAAACIwAAAAACIwAAAAACIwAAAAADIwAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAC + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAIwAAAAACIwAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADIwAAAAAAIwAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABIwAAAAADIwAAAAAAIwAAAAADIwAAAAAAIwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: CQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMAAAAAAAMAAAAAAKMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAADHAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAACHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACLwAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAACAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABAAAAAAAKLwAAAAADLwAAAAACLwAAAAABAAAAAAAAAAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAALwAAAAADLwAAAAACLwAAAAABAAAAAAAAAAAAAAAEDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAAAAAAAALwAAAAACLwAAAAABLwAAAAAAAAAAAAAAAAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAMAAAAAADMAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAMAAAAAADMAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAMAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADHAAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACLwAAAAABLwAAAAADLwAAAAABLwAAAAAALwAAAAABLwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAABLwAAAAAALwAAAAACLwAAAAADLwAAAAACLwAAAAABLwAAAAADAAAAAAAILwAAAAADLwAAAAAALwAAAAABAAAAAAAFAAAAAAAAAAAAAAAALwAAAAABLwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAABAAAAAAAJLwAAAAACLwAAAAAALwAAAAABAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAALwAAAAABLwAAAAACLwAAAAAAAAAAAAABAAAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAAAAAAAALwAAAAABLwAAAAADLwAAAAABAAAAAAAAAAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAALwAAAAACLwAAAAAALwAAAAADAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADAAAAAAAILwAAAAAALwAAAAABLwAAAAABAAAAAAAAAAAAAAAHDgAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAMQAAAAADMQAAAAADMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABCQAAAAADCQAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AAAAAAAALwAAAAAALwAAAAACLwAAAAABAAAAAAABAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADAAAAAAAALwAAAAABLwAAAAADLwAAAAAAAAAAAAAAAAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAALwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAABCQAAAAAACQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACCQAAAAABCQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: LAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABLgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADLgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAADLgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAALAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAACCQAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABCQAAAAAD + tiles: LAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAACQAAAAAACQAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABLgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADLgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACLgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAABLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACDgAAAAAACQAAAAADCQAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAAACQAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAACQAAAAADCQAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABCQAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAABCQAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: MwAAAAADMwAAAAACMwAAAAABMwAAAAACMwAAAAACMwAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAADMwAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAANwAAAAACNwAAAAAANwAAAAABNwAAAAAACQAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAACDgAAAAAANwAAAAABNwAAAAAANwAAAAADNwAAAAACDgAAAAAADgAAAAAAMwAAAAABDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAACOAAAAAADDgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAOAAAAAACOAAAAAACOAAAAAACOAAAAAACOAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADOAAAAAADOAAAAAABOAAAAAABOAAAAAACOAAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAAOAAAAAADOAAAAAADOAAAAAADOAAAAAADOAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAB + tiles: MwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAAAMwAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAANwAAAAACNwAAAAABNwAAAAABNwAAAAABCQAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAANwAAAAABNwAAAAACNwAAAAADNwAAAAABDgAAAAAADgAAAAAAMwAAAAACDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAADDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAOAAAAAADOAAAAAACOAAAAAADOAAAAAABOAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABOAAAAAABOAAAAAADOAAAAAACOAAAAAADOAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADOAAAAAADHAAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAADLAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: DgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAABIwAAAAABIwAAAAACIwAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAAIwAAAAADIwAAAAADIwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAAHAAAAAABIwAAAAACIwAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAABDgAAAAAAHAAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAACMwAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAABHAAAAAACHAAAAAABHAAAAAACMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACCQAAAAACHAAAAAABHAAAAAACHAAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAAC + tiles: DgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAABHAAAAAAAIwAAAAABIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAABIwAAAAADIwAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADDgAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABDgAAAAAAHAAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAADHAAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAABMwAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAADCQAAAAAAHAAAAAACHAAAAAABHAAAAAACMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAAHAAAAAAD version: 6 -2,-4: ind: -2,-4 - tiles: CQAAAAABCQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAACCQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAABOQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAAOQAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAHAAAAAACHAAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAADIwAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAACIwAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADDgAAAAAAIwAAAAABIwAAAAAA + tiles: CQAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAAAOQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAAOQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAAHAAAAAACHAAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAADIwAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAADDgAAAAAAIwAAAAACIwAAAAAD version: 6 -2,-5: ind: -2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: DgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABIwAAAAACIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAABHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAALwAAAAABDgAAAAAADgAAAAAAMwAAAAAAMwAAAAACHAAAAAABHAAAAAACHAAAAAAAHAAAAAACDgAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAA + tiles: DgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAACDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAADMwAAAAAAMwAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABIwAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAACMwAAAAAAMwAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAACDgAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAALDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAMDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAJDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAIDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAEAAAAAAAAAAAAAAACDgAAAAAADgAAAAAA version: 6 -2,2: ind: -2,2 @@ -134,19 +135,19 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAAAHAAAAAACLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAADCQAAAAABCQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACHAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAADCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: CQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAADMwAAAAABLgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACDgAAAAAAHAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACDgAAAAAAHAAAAAACLgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAADDgAAAAAAHAAAAAADLgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACDgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAADLgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAACLAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAADMwAAAAAADgAAAAAAHAAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAAADgAAAAAAHAAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADDgAAAAAAHAAAAAADLgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAACDgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAABLgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: LgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAACMwAAAAABMwAAAAAADgAAAAAAMwAAAAACMwAAAAACAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMwAAAAACMwAAAAACDgAAAAAAMQAAAAACMQAAAAAAMQAAAAACLgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAAMwAAAAABMwAAAAADMwAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABLgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAACMwAAAAABMwAAAAADLgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAMwAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAADDgAAAAAAMwAAAAACMwAAAAAAMwAAAAADLgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAAMwAAAAACMwAAAAAAMwAAAAACDgAAAAAAMwAAAAADMwAAAAACMwAAAAACLgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAMwAAAAACMwAAAAAAMwAAAAADDgAAAAAAMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAAMwAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAADLgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACMwAAAAABMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAABDgAAAAAAIwAAAAADIwAAAAACIwAAAAAAMwAAAAADMwAAAAAADgAAAAAAMwAAAAABMwAAAAACAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHMwAAAAAAMwAAAAADDgAAAAAAMQAAAAABMQAAAAADMQAAAAACLgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAADDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACLgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACLgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAAMwAAAAACMwAAAAABMwAAAAACDgAAAAAADgAAAAAAMwAAAAABDgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAADDgAAAAAAMwAAAAABMwAAAAABMwAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADMwAAAAACMwAAAAADMwAAAAABDgAAAAAAMwAAAAABMwAAAAACMwAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAAAGgAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABGgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-5: ind: -3,-5 @@ -154,11 +155,11 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAACDgAAAAAACQAAAAABDgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAAAMQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAACMQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 -3,2: ind: -3,2 @@ -166,15 +167,15 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: HAAAAAADDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HAAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAABMwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABCQAAAAACDgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAAADgAAAAAA version: 6 -4,-4: ind: -4,-4 @@ -182,7 +183,7 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAADOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -198,31 +199,31 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAEDgAAAAAAPAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAGPAAAAAACIwAAAAAAPAAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAAHAAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAMAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAAAAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAALDgAAAAAAHAAAAAADPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAADPQAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAACDgAAAAAAPAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAFPAAAAAABIwAAAAABPAAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAAHAAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAMAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAEDgAAAAAAAAAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAABPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAABPQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: IQAAAAACIQAAAAABDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADwAAAAACDwAAAAACDwAAAAADCQAAAAACHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAABCQAAAAACDwAAAAABMgAAAAAADwAAAAABCQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDwAAAAACDwAAAAACDwAAAAADCQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: IQAAAAAAIQAAAAABDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDwAAAAABDwAAAAADDwAAAAABCQAAAAABHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAABCQAAAAACCQAAAAAADwAAAAAAMgAAAAAADwAAAAADCQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDwAAAAAADwAAAAACDwAAAAAACQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: CQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAACDgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACAAAAAAAEAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABAAAAAAAADgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAADIQAAAAADIQAAAAADDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAACDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAABIQAAAAABIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAB + tiles: CQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAABIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAACIwAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAAAAAAAAFDgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIQAAAAAAIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACIQAAAAABDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAACIQAAAAACIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAB version: 6 0,-4: ind: 0,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAMQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAAD + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAAMQAAAAACMQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAAMQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAAC version: 6 0,-5: ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAA version: 6 0,0: ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAADDgAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAFMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABPQAAAAADLAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAKMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACOwAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAAAOwAAAAAAOwAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAHMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABPQAAAAADLgAAAAAALAAAAAAALAAAAAAAMAAAAAAJDgAAAAAADgAAAAAAMAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAACQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAADLwAAAAADLwAAAAADLwAAAAABLwAAAAACLwAAAAACLwAAAAABLwAAAAABLwAAAAADLwAAAAABLwAAAAAACQAAAAACLwAAAAACLwAAAAABLwAAAAACDgAAAAAALwAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAAMAAAAAAIDgAAAAAADgAAAAAAMAAAAAAHDgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAAMAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABPQAAAAACLAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAADOwAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADOwAAAAAAOwAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAAAPQAAAAABLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABLwAAAAABLwAAAAADLwAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAABLwAAAAABLwAAAAACCQAAAAAALwAAAAABLwAAAAAALwAAAAADDgAAAAAALwAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAA version: 6 0,1: ind: 0,1 - tiles: CQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: CQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 0,2: ind: 0,2 @@ -230,19 +231,19 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABAAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABAAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAABHAAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACHAAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAACHAAAAAADDgAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAACCQAAAAACHAAAAAAADgAAAAAACQAAAAAB + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABAAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACAAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAABHAAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABHAAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAADDgAAAAAALAAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAABCQAAAAADHAAAAAADDgAAAAAACQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: CQAAAAADCQAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAAHAAAAAADDgAAAAAAHAAAAAABCQAAAAADDwAAAAADCQAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABCQAAAAACDwAAAAABCQAAAAAACQAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACHAAAAAABDgAAAAAAHAAAAAADCQAAAAADCQAAAAADCQAAAAADHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAB + tiles: CQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAACDgAAAAAAHAAAAAADCQAAAAABDwAAAAABCQAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABCQAAAAAADwAAAAABCQAAAAADCQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAABHAAAAAACDgAAAAAAHAAAAAABCQAAAAAACQAAAAAACQAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: DgAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABIwAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAACIwAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACDgAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAAAIwAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAADIwAAAAABIwAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAA + tiles: DgAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAADIwAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAABIwAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADDgAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAACIwAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAACIwAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAAMwAAAAACMwAAAAABDgAAAAAAQQAAAAAAQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAAMwAAAAAAMwAAAAACDgAAAAAAQQAAAAABQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAADMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALAAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAAQQAAAAADQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAAMwAAAAAAMwAAAAACDgAAAAAAQQAAAAABQQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAABMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAACMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALAAAAAAA version: 6 1,-5: ind: 1,-5 @@ -250,71 +251,71 @@ entities: version: 6 1,0: ind: 1,0 - tiles: DgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAADHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAACQAAAAADCQAAAAACHAAAAAADDgAAAAAACQAAAAACDgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAACQAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAABHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABQAAAAAACDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACLwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAB + tiles: DgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAAACQAAAAACHAAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAAAHAAAAAACDgAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAACQAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAADgAAAAAACQAAAAADHAAAAAADHAAAAAABDgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABQAAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAD version: 6 1,1: ind: 1,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAD + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAAMAAAAAALLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAABCQAAAAABCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADLAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAB version: 6 1,2: ind: 1,2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: CQAAAAADDgAAAAAAQAAAAAACQAAAAAAADwAAAAADQAAAAAADQAAAAAABQAAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACDgAAAAAAQAAAAAAAQAAAAAAADwAAAAABQAAAAAAAQAAAAAACDgAAAAAAQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAQAAAAAACQAAAAAABDwAAAAABQAAAAAACQAAAAAADQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAQAAAAAADQAAAAAACQAAAAAABQAAAAAABQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAACIwAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADIwAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAABDgAAAAAAQAAAAAADQAAAAAADDwAAAAABQAAAAAACQAAAAAABQAAAAAADQAAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAQAAAAAAAQAAAAAACDwAAAAADQAAAAAACQAAAAAADDgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAQAAAAAAAQAAAAAADDwAAAAABQAAAAAACQAAAAAAAQAAAAAADQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAADQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADIwAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAABCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAQwAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: CQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAAOQAAAAADOQAAAAADOQAAAAAAOQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAACOQAAAAAAOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADOQAAAAADOQAAAAADOQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAAGgAAAAACLwAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACGgAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABGgAAAAAALwAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACGgAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAACGgAAAAACLwAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABGgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAABQAAAAAADQAAAAAADQAAAAAABQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABGgAAAAADLwAAAAADCQAAAAACDgAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAAQAAAAAABQAAAAAABDwAAAAAAQAAAAAADQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAB + tiles: CQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAOQAAAAAAOQAAAAABOQAAAAAAOQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAACOQAAAAADOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADOQAAAAADOQAAAAABOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAACHAAAAAACHAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABGgAAAAADLwAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADGgAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAAAGgAAAAADLwAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAADGgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAAGgAAAAADLwAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADGgAAAAACDgAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAADQAAAAAACQAAAAAACQAAAAAACQAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABGgAAAAADLwAAAAAACQAAAAADDgAAAAAAQAAAAAACQAAAAAADQAAAAAABQAAAAAAAQAAAAAADQAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAQAAAAAACQAAAAAAADwAAAAACQAAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAD version: 6 2,-3: ind: 2,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAAHAAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAABIQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAAHAAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAAIQAAAAABIQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAARwAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACRwAAAAABLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAA version: 6 2,0: ind: 2,0 - tiles: QwAAAAABCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAQwAAAAACCQAAAAAACQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAAQwAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAAIwAAAAACDgAAAAAAIwAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAABDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAADCQAAAAABDgAAAAAAMAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAQwAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAMAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: QwAAAAADCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAQwAAAAADCQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAIwAAAAADDgAAAAAAIwAAAAABDgAAAAAADgAAAAAAQwAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAADCQAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAQwAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAMAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA version: 6 2,1: ind: 2,1 - tiles: QwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAQwAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QwAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAQwAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,2: ind: 2,2 - tiles: CQAAAAABCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAACCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: CQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAACGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAACGgAAAAACCQAAAAACCQAAAAADCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABGgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAADGgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAAAGgAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAADLwAAAAACLwAAAAACGgAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAACGgAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABGgAAAAACCQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAAAGgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAABGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAASAAAAAADSAAAAAACSAAAAAACDgAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAAASAAAAAADSAAAAAAASAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACSQAAAAABSQAAAAABLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAABSAAAAAAASAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAACMQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAASAAAAAABSAAAAAACSAAAAAACDgAAAAAAHAAAAAACDgAAAAAAHAAAAAACDgAAAAAAHAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAABSAAAAAABSAAAAAACSAAAAAADHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADSQAAAAADSQAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAACSAAAAAADSAAAAAABHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAADMQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAABDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAADDgAAAAAARgAAAAABRgAAAAADDgAAAAAARgAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAADgAAAAAARgAAAAABRgAAAAABDgAAAAAARgAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAMwAAAAACDgAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAARwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 3,0: ind: 3,0 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,1: ind: 3,1 @@ -326,7 +327,7 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAADQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAABDgAAAAAAQAAAAAADQAAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAAHAAAAAABRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAAMwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAAADgAAAAAAQAAAAAABQAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADLAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAAQAAAAAAAQAAAAAABQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAADQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAACRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAADDgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAAADgAAAAAAQAAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 4,0: ind: 4,0 @@ -338,7 +339,7 @@ entities: version: 6 6,-2: ind: 6,-2 - tiles: QAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,-6: ind: 1,-6 @@ -346,11 +347,11 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAACLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAACRwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADLgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAACDgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAADMwAAAAADRwAAAAAAMwAAAAADDgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACDgAAAAAAMwAAAAADMwAAAAADDgAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAADLAAAAAAALAAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADDgAAAAAAMwAAAAACMwAAAAADMwAAAAAALAAAAAAASQAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAADLAAAAAAARwAAAAACRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAAADgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAACMwAAAAADRwAAAAACMwAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAACDgAAAAAAMwAAAAACMwAAAAAADgAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAACDgAAAAAAMwAAAAACMwAAAAADMwAAAAACLAAAAAAASQAAAAADHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAAASQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAADSQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -378,7 +379,7 @@ entities: version: 6 6,-3: ind: 6,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,1: ind: -4,1 @@ -386,7 +387,7 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAPQAAAAABDgAAAAAAQAAAAAACDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAADDgAAAAAADgAAAAAAQAAAAAABDgAAAAAA + tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAAQAAAAAADQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAPQAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAABDgAAAAAADgAAAAAAQAAAAAADDgAAAAAA version: 6 -5,-5: ind: -5,-5 @@ -394,23 +395,23 @@ entities: version: 6 3,-6: ind: 3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAACSgAAAAAASgAAAAADSgAAAAABSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAACSQAAAAACHAAAAAACHAAAAAABSgAAAAADSgAAAAABSgAAAAACSgAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADSQAAAAACSQAAAAABSQAAAAACHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAAHAAAAAADSgAAAAABSgAAAAADSgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABLgAAAAAASQAAAAACSQAAAAABHAAAAAADHAAAAAAASgAAAAABSgAAAAABSgAAAAACSgAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAASQAAAAACSQAAAAABSQAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: PAAAAAADIwAAAAABDgAAAAAALAAAAAAAPAAAAAAGDgAAAAAAIwAAAAABIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAARwAAAAAALAAAAAAADgAAAAAAIwAAAAADDgAAAAAAIwAAAAADPAAAAAAFIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACPAAAAAAFPAAAAAAGDgAAAAAADgAAAAAADgAAAAAAPAAAAAAFIwAAAAAAIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAACPAAAAAAEIwAAAAADRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAAAPAAAAAAEDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAADSgAAAAABDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAALAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACSgAAAAACDgAAAAAASgAAAAAASgAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: PAAAAAAAIwAAAAACDgAAAAAALAAAAAAAPAAAAAAFDgAAAAAAIwAAAAADIwAAAAAAIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACRwAAAAABLAAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAABPAAAAAABIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABPAAAAAAAPAAAAAACDgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAACIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAAPAAAAAAGIwAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAACPAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAAASgAAAAAADgAAAAAADgAAAAAASgAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAADSgAAAAAADgAAAAAASgAAAAACSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-6: ind: 4,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADDgAAAAAAPAAAAAAGIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAACIwAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAEDgAAAAAADgAAAAAAIwAAAAAAPAAAAAAEDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAADgAAAAAAPAAAAAAFIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAAIwAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAEDgAAAAAADgAAAAAAIwAAAAAAPAAAAAAFDgAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAARwAAAAABDgAAAAAARwAAAAACDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-4: ind: 5,-4 @@ -603,11 +604,6 @@ entities: decals: 1363: 20,2 1376: 8,-18 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 1448: -7,-38 - node: zIndex: 1 color: '#FFFFFFFF' @@ -615,6 +611,7 @@ entities: decals: 4120: -2,-41 12339: -6,-37 + 15018: -7,-38 - node: zIndex: 2 color: '#FFFFFFFF' @@ -650,12 +647,7 @@ entities: decals: 1449: -7,-42 14878: 12,-10 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 4123: -6,-41 + 15001: -6,-41 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -678,16 +670,16 @@ entities: decals: 1441: -7,-41 1442: -7,-40 - 1443: -7,-39 14874: 12,-9 + 15002: -6,-40 + 15003: -6,-39 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 4121: -6,-39 - 4122: -6,-40 12341: -6,-38 + 15019: -7,-39 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -697,7 +689,6 @@ entities: 1444: -11,-38 1445: -10,-38 1446: -9,-38 - 1447: -8,-38 14875: 13,-10 - node: zIndex: 1 @@ -722,6 +713,7 @@ entities: 14371: -20,-41 14372: -21,-41 14373: -22,-41 + 15020: -8,-38 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1065,6 +1057,12 @@ entities: 12094: -29,10 12095: -29,11 12096: -29,12 + - node: + zIndex: 1 + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 15021: -29,-1 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1283,6 +1281,12 @@ entities: decals: 12091: -31,10 12092: -31,11 + - node: + zIndex: 1 + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 15022: -23,-1 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -1847,6 +1851,11 @@ entities: 14138: 20,-22 14146: 11,-33 14147: 15,-33 + 15033: -33,-4 + 15034: -32,-4 + 15035: -31,-6 + 15036: -30,-6 + 15037: -29,-6 - node: zIndex: 1 color: '#FFFFFF93' @@ -2083,6 +2092,7 @@ entities: 14966: 39,5 14967: 37,9 14972: 33,2 + 15059: 30,25 - node: cleanable: True zIndex: 5 @@ -2104,8 +2114,6 @@ entities: 3970: 14,-52 4018: -6,-44 4019: -5,-41 - 4020: -6,-41 - 4021: -6,-40 4332: 27,-57 4333: 27,-58 4334: 28,-58 @@ -3158,13 +3166,10 @@ entities: 8451: -7,-49 8458: -11,-44 8460: -11,-44 - 8461: -6,-41 - 8462: -6,-39 8464: -7,-37 8465: -8,-37 8466: -9,-37 8467: -9,-38 - 8468: -7,-38 8469: -8,-42 8507: 2,-42 8508: 2,-43 @@ -4198,6 +4203,13 @@ entities: 14993: 42,1 14994: 41,2 14995: 45,-4 + 15004: -6,-41 + 15005: -6,-39 + 15006: -6,-38 + 15007: -6,-40 + 15023: -29,-1 + 15024: -23,-1 + 15025: -37,17 - node: cleanable: True zIndex: 5 @@ -4342,7 +4354,6 @@ entities: 8479: -5,-38 8480: -5,-38 8481: -5,-39 - 8482: -5,-40 8483: -4,-40 8484: -3,-39 8485: -4,-39 @@ -4355,7 +4366,6 @@ entities: 8492: -4,-41 8493: -5,-43 8494: -6,-43 - 8495: -7,-43 8496: 0,-45 8497: -1,-45 8498: -1,-44 @@ -4461,6 +4471,11 @@ entities: 14918: -34,20 14919: -33,18 14920: -32,19 + 15038: 38,-37 + 15039: 20,-26 + 15040: 21,-26 + 15041: 21,-27 + 15042: 20,-27 - node: cleanable: True zIndex: 5 @@ -5540,7 +5555,6 @@ entities: 14350: -9,-33 14351: -7,-35 14352: -10,-37 - 14353: -8,-38 14354: -11,-43 14355: -12,-43 14356: -13,-43 @@ -5636,6 +5650,18 @@ entities: 14962: 42,1 14963: 42,3 14964: 38,3 + 15011: -6,-41 + 15012: -4,-42 + 15013: -5,-40 + 15026: -12,12 + 15027: -11,12 + 15028: -16,12 + 15029: -17,12 + 15030: -13,12 + 15031: 14,12 + 15032: 13,12 + 15043: 20,-25 + 15044: 21,-28 - node: cleanable: True zIndex: 5 @@ -6557,6 +6583,32 @@ entities: 14982: 34,14 14983: 33,13 14984: 33,21 + 15045: 19,-28 + 15046: 19,-25 + 15047: 20,-28 + 15048: 20,-29 + 15049: 20,-32 + 15050: 28,-27 + 15051: 30,-29 + 15052: 29,-10 + 15053: 34,-8 + 15054: 27,0 + 15055: 33,-1 + 15056: 31,11 + 15057: 31,10 + 15058: 29,26 + - node: + zIndex: 5 + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 15015: -4.9428806,-39.95555 + - node: + zIndex: 5 + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 15017: -3.5776198,-40.049366 - node: color: '#FFFFFFFF' id: FlowersBRTwo @@ -6578,12 +6630,6 @@ entities: id: Flowersbr3 decals: 9898: -16.75473,14.587231 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 314: -4.91751,-40.01531 - 319: -5.0217276,-39.744286 - node: color: '#FFFFFFFF' id: Flowerspv2 @@ -6606,6 +6652,12 @@ entities: id: Flowersy2 decals: 312: -4.9800406,-39.202244 + - node: + zIndex: 5 + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 15016: -4.4530544,-40.059788 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -6636,6 +6688,12 @@ entities: 14260: -20,-50 14261: -21,-50 14262: -23,-50 + - node: + color: '#3EB38896' + id: FullTileOverlayGreyscale + decals: + 15061: -15,-57 + 15062: -15,-56 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -6677,7 +6735,6 @@ entities: decals: 11337: -19,-56 11338: -18,-56 - 11339: -17,-56 - node: color: '#D381C996' id: FullTileOverlayGreyscale @@ -6705,8 +6762,7 @@ entities: decals: 10911: -14,-22 10912: -14,-18 - 11340: -15,-57 - 11341: -15,-56 + 15060: -17,-56 - node: zIndex: 1 color: '#EFB34196' @@ -7099,16 +7155,6 @@ entities: id: MiniTileWhiteInnerSw decals: 12373: -23,0 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteLineE - decals: - 10341: -29,-1 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteLineW - decals: - 10342: -23,-1 - node: cleanable: True color: '#4B709CFF' @@ -8490,15 +8536,8 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1414: -7,-43 1417: -6,-43 1418: -5,-43 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 1413: -7,-43 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -10350,10 +10389,12 @@ entities: 1: 16 -11,-14: 0: 52733 - -10,-14: - 0: 30711 + -11,-15: + 0: 3296 -10,-15: 0: 20208 + -10,-14: + 0: 30711 -9,-16: 2: 1092 -10,-18: @@ -12173,6 +12214,16 @@ entities: container: 19898 - proto: AirAlarm entities: + - uid: 15205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 9455 + - 9454 - uid: 29 components: - type: Transform @@ -12323,7 +12374,7 @@ entities: parent: 2 - type: DeviceList devices: - - 5375 + - 20727 - 7574 - uid: 2697 components: @@ -12757,15 +12808,6 @@ entities: - 15398 - 15395 - 15396 - - uid: 13795 - components: - - type: Transform - pos: -11.5,-5.5 - parent: 2 - - type: DeviceList - devices: - - 1556 - - 1139 - uid: 13796 components: - type: Transform @@ -12787,7 +12829,7 @@ entities: parent: 2 - type: DeviceList devices: - - 13799 + - 20738 - 17886 - 17885 - 15301 @@ -12814,8 +12856,6 @@ entities: - type: DeviceList devices: - 13804 - - 1640 - - 1559 - uid: 13806 components: - type: Transform @@ -12894,7 +12934,7 @@ entities: devices: - 14018 - 14016 - - 13992 + - 9572 - 2693 - 15626 - 15625 @@ -12963,7 +13003,6 @@ entities: - 14162 - 4653 - 4360 - - 14168 - 1276 - uid: 14169 components: @@ -13504,9 +13543,8 @@ entities: parent: 2 - type: DeviceList devices: - - 9673 - 4869 - - 15638 + - 4911 - proto: AirAlarmAssembly entities: - uid: 2321 @@ -13514,18 +13552,6 @@ entities: - type: Transform pos: 11.5,-10.5 parent: 2 -- proto: AirAlarmVox - entities: - - uid: 15205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-49.5 - parent: 2 - - type: DeviceList - devices: - - 9455 - - 9454 - proto: AirCanister entities: - uid: 790 @@ -14092,6 +14118,12 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,12.5 parent: 2 + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-58.5 + parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 1479 @@ -14704,12 +14736,6 @@ entities: invokeCounter: 3 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-58.5 - parent: 2 - uid: 17705 components: - type: Transform @@ -14724,6 +14750,12 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,12.5 parent: 2 + - uid: 20741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-58.5 + parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3498 @@ -16262,6 +16294,14 @@ entities: - type: DeviceNetwork deviceLists: - 4428 + - uid: 9572 + components: + - type: Transform + pos: -17.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14019 - uid: 10682 components: - type: Transform @@ -16474,14 +16514,6 @@ entities: - type: DeviceNetwork deviceLists: - 13796 - - uid: 13799 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13798 - uid: 13803 components: - type: Transform @@ -16538,14 +16570,6 @@ entities: - type: DeviceNetwork deviceLists: - 13972 - - uid: 13992 - components: - - type: Transform - pos: -17.5,-56.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14019 - uid: 14048 components: - type: Transform @@ -16554,14 +16578,6 @@ entities: - type: DeviceNetwork deviceLists: - 14047 - - uid: 14168 - components: - - type: Transform - pos: 24.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14167 - uid: 14193 components: - type: Transform @@ -16854,6 +16870,14 @@ entities: - type: DeviceNetwork deviceLists: - 17576 + - uid: 20738 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13798 - proto: AirTankFilled entities: - uid: 5121 @@ -17965,6 +17989,12 @@ entities: parent: 2 - proto: AtmosDeviceFanDirectional entities: + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-58.5 + parent: 2 - uid: 783 components: - type: Transform @@ -18049,12 +18079,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-68.5 parent: 2 - - uid: 9940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-58.5 - parent: 2 - uid: 16101 components: - type: Transform @@ -26820,6 +26844,11 @@ entities: - type: Transform pos: -9.5,9.5 parent: 2 + - uid: 3542 + components: + - type: Transform + pos: -37.5,-58.5 + parent: 2 - uid: 3551 components: - type: Transform @@ -36415,6 +36444,21 @@ entities: - type: Transform pos: -45.5,-55.5 parent: 2 + - uid: 20750 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 20751 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 20752 + components: + - type: Transform + pos: -40.5,-58.5 + parent: 2 - proto: CableApcStack entities: - uid: 1898 @@ -39508,11 +39552,6 @@ entities: - type: Transform pos: 7.5,-25.5 parent: 2 - - uid: 9735 - components: - - type: Transform - pos: -14.5,-56.5 - parent: 2 - uid: 9736 components: - type: Transform @@ -41288,6 +41327,11 @@ entities: - type: Transform pos: 25.5,-1.5 parent: 2 + - uid: 20765 + components: + - type: Transform + pos: -16.5,-55.5 + parent: 2 - proto: CableHVStack entities: - uid: 3012 @@ -49016,15 +49060,8 @@ entities: - uid: 2087 components: - type: Transform - rot: 1.5707963267948966 rad pos: 37.5,-36.5 parent: 2 - - uid: 2091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-36.5 - parent: 2 - uid: 2141 components: - type: Transform @@ -49178,12 +49215,6 @@ entities: - type: Transform pos: 7.5,-18.5 parent: 2 - - uid: 2792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 2 - uid: 2829 components: - type: Transform @@ -49454,6 +49485,11 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-18.5 parent: 2 + - uid: 3540 + components: + - type: Transform + pos: -40.5,-58.5 + parent: 2 - uid: 3554 components: - type: Transform @@ -51685,12 +51721,6 @@ entities: - type: Transform pos: 27.5,-43.5 parent: 2 - - uid: 14832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 2 - uid: 14843 components: - type: Transform @@ -52430,6 +52460,11 @@ entities: - type: Transform pos: -31.5,14.5 parent: 2 + - uid: 20747 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 - proto: CelloInstrument entities: - uid: 5831 @@ -53861,11 +53896,6 @@ entities: - type: Transform pos: 31.5,38.5 parent: 2 - - uid: 15711 - components: - - type: Transform - pos: -35.5,-57.5 - parent: 2 - uid: 15716 components: - type: Transform @@ -53911,6 +53941,11 @@ entities: - type: Transform pos: 31.5,5.5 parent: 2 + - uid: 20749 + components: + - type: Transform + pos: -40.5,-57.5 + parent: 2 - proto: ClosetEmergencyN2 entities: - uid: 323 @@ -53955,11 +53990,6 @@ entities: - type: Transform pos: 39.5,-52.5 parent: 2 - - uid: 11717 - components: - - type: Transform - pos: -36.5,-57.5 - parent: 2 - uid: 17868 components: - type: Transform @@ -53975,6 +54005,11 @@ entities: - type: Transform pos: 61.5,-54.5 parent: 2 + - uid: 20748 + components: + - type: Transform + pos: -41.5,-57.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 4580 @@ -54215,6 +54250,11 @@ entities: - type: Transform pos: 38.5,-61.5 parent: 2 + - uid: 20753 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 - proto: ClosetRadiationSuitFilled entities: - uid: 42 @@ -54239,6 +54279,11 @@ entities: - type: Transform pos: 40.5,-52.5 parent: 2 + - uid: 20754 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 - proto: ClosetToolFilled entities: - uid: 1125 @@ -55615,6 +55660,20 @@ entities: linkedPorts: 4541: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 2340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-56.5 + parent: 2 + - uid: 20126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 - proto: computerBodyScanner entities: - uid: 265 @@ -55678,17 +55737,17 @@ entities: parent: 2 - proto: ComputerCargoBounty entities: + - uid: 2573 + components: + - type: Transform + pos: -17.5,-55.5 + parent: 2 - uid: 4250 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,19.5 parent: 2 - - uid: 9724 - components: - - type: Transform - pos: -18.5,-55.5 - parent: 2 - proto: ComputerCargoOrders entities: - uid: 850 @@ -55703,10 +55762,10 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 - - uid: 9725 + - uid: 2426 components: - type: Transform - pos: -17.5,-55.5 + pos: -18.5,-55.5 parent: 2 - uid: 14297 components: @@ -55716,11 +55775,11 @@ entities: parent: 2 - proto: ComputerComms entities: - - uid: 39 + - uid: 9723 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-57.5 + pos: -17.5,-57.5 parent: 2 - proto: ComputerCrewMonitoring entities: @@ -55880,8 +55939,7 @@ entities: - uid: 9721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-56.5 + pos: -16.5,-55.5 parent: 2 - uid: 10292 components: @@ -55891,16 +55949,17 @@ entities: parent: 2 - proto: ComputerRadar entities: + - uid: 5026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-57.5 + parent: 2 - uid: 5425 components: - type: Transform pos: 18.5,31.5 parent: 2 - - uid: 9726 - components: - - type: Transform - pos: -16.5,-55.5 - parent: 2 - proto: ComputerResearchAndDevelopment entities: - uid: 4271 @@ -56495,10 +56554,10 @@ entities: parent: 2 - proto: CrateNPCHamlet entities: - - uid: 9723 + - uid: 20764 components: - type: Transform - pos: -17.5,-57.5 + pos: -16.5,-50.5 parent: 2 - proto: CrateSecurityTrackingMindshieldImplants entities: @@ -57084,10 +57143,10 @@ entities: parent: 2 - proto: DefaultStationBeaconEscapePod entities: - - uid: 15738 + - uid: 16430 components: - type: Transform - pos: -38.5,-58.5 + pos: -41.5,-58.5 parent: 2 - proto: DefaultStationBeaconEvac entities: @@ -57374,11 +57433,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-23.5 parent: 2 - - uid: 17615 - components: - - type: Transform - pos: 11.5,21.5 - parent: 2 - uid: 20143 components: - type: Transform @@ -63384,13 +63438,6 @@ entities: - type: Transform pos: 35.67042,3.7359033 parent: 2 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 16465 - components: - - type: Transform - pos: -63.581856,-16.131536 - parent: 2 - proto: ElectricGuitarInstrument entities: - uid: 3227 @@ -63406,12 +63453,24 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-1.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 2699 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 2792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-58.5 + parent: 2 + - type: Battery + startingCharge: 30000 - uid: 2952 components: - type: Transform @@ -63419,24 +63478,37 @@ entities: parent: 2 - type: Battery startingCharge: 30000 + - uid: 3539 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 + - type: Battery + startingCharge: 30000 - uid: 4936 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,2.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 5436 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-2.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 5680 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,16.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 6744 components: - type: Transform @@ -63459,17 +63531,31 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-11.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 8962 components: - type: Transform pos: -14.5,-23.5 parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 12379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - type: Battery + startingCharge: 30000 - uid: 14438 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,5.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 14568 components: - type: Transform @@ -63948,11 +64034,11 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 17150 + - uid: 17136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-58.5 + rot: -1.5707963267948966 rad + pos: 33.5,16.5 parent: 2 - type: Battery startingCharge: 30000 @@ -63962,17 +64048,31 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-10.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 18964 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,12.5 parent: 2 + - type: Battery + startingCharge: 30000 - uid: 19286 components: - type: Transform pos: 61.5,-52.5 parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 20766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 + - type: Battery + startingCharge: 30000 - proto: EmergencyMedipen entities: - uid: 4814 @@ -64049,6 +64149,18 @@ entities: parent: 2 - proto: ExtinguisherCabinetFilled entities: + - uid: 3541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,21.5 + parent: 2 - uid: 5101 components: - type: Transform @@ -64121,11 +64233,6 @@ entities: - type: Transform pos: 30.5,39.5 parent: 2 - - uid: 17627 - components: - - type: Transform - pos: 38.5,-23.5 - parent: 2 - uid: 17628 components: - type: Transform @@ -64166,6 +64273,18 @@ entities: - type: Transform pos: -21.5,-17.5 parent: 2 + - uid: 20761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - uid: 20762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 - proto: EZNutrientChemistryBottle entities: - uid: 17701 @@ -66562,7 +66681,6 @@ entities: deviceLists: - 14004 - 6790 - - 20239 - uid: 15639 components: - type: Transform @@ -66994,7 +67112,7 @@ entities: - type: Transform pos: -40.5,-42.5 parent: 2 -- proto: FloraRockSolid01 +- proto: FloraRockSolid entities: - uid: 17948 components: @@ -67002,17 +67120,25 @@ entities: rot: 3.141592653589793 rad pos: 11.492828,-6.4149537 parent: 2 + - uid: 19549 + components: + - type: Transform + pos: 12.574104,-1.440425 + parent: 2 - uid: 19552 components: - type: Transform pos: -10.482171,6.58344 parent: 2 -- proto: FloraRockSolid02 - entities: - - uid: 19549 + - uid: 19556 components: - type: Transform - pos: 12.574104,-1.440425 + pos: 3.4913387,7.572454 + parent: 2 + - uid: 19558 + components: + - type: Transform + pos: 9.461854,1.5700341 parent: 2 - uid: 19971 components: @@ -67024,24 +67150,12 @@ entities: - type: Transform pos: 22.556618,18.605299 parent: 2 -- proto: FloraRockSolid03 - entities: - - uid: 19556 - components: - - type: Transform - pos: 3.4913387,7.572454 - parent: 2 - - uid: 19558 - components: - - type: Transform - pos: 9.461854,1.5700341 - parent: 2 - uid: 20653 components: - type: Transform pos: 27.553556,21.553436 parent: 2 -- proto: FloraTree04 +- proto: FloraTree entities: - uid: 1550 components: @@ -67049,8 +67163,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.792082,16.220356 parent: 2 -- proto: FloraTree05 - entities: - uid: 4620 components: - type: Transform @@ -67474,6 +67586,13 @@ entities: - type: Transform pos: 3.5404968,-19.16355 parent: 2 +- proto: GameMasterCircuitBoard + entities: + - uid: 16465 + components: + - type: Transform + pos: -63.581856,-16.131536 + parent: 2 - proto: GasAnalyzer entities: - uid: 2089 @@ -67499,7 +67618,7 @@ entities: pos: -33.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - proto: GasFilterFlipped entities: - uid: 1575 @@ -68155,6 +68274,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9957 components: - type: Transform @@ -68163,14 +68290,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9960 components: - type: Transform @@ -69097,37 +69216,56 @@ entities: - type: Transform pos: -8.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13795 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeSensorTEGCold +- proto: GasPipeSensorMixedAir entities: - - uid: 1640 + - uid: 9724 components: + - type: MetaData + name: gas pipe sensor (Cryopods) - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-9.5 + rot: 1.5707963267948966 rad + pos: -32.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13805 + - type: Label + currentLabel: Cryopods - type: AtmosPipeColor color: '#03FCD3FF' + - type: NameModifier + baseName: gas pipe sensor + - uid: 9725 + components: + - type: MetaData + name: gas pipe sensor (AI Satellite) + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - type: Label + currentLabel: AI Satellite + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: NameModifier + baseName: gas pipe sensor - proto: GasPipeSensorTEGHot entities: - - uid: 1559 + - uid: 6714 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-6.5 + pos: 3.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13805 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasPipeSensorWaste entities: - uid: 1556 @@ -69135,9 +69273,6 @@ entities: - type: Transform pos: -9.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13795 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasPipeStraight @@ -71060,14 +71195,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 5027 components: - type: Transform @@ -71108,6 +71235,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 5375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5391 components: - type: Transform @@ -71281,11 +71416,11 @@ entities: - uid: 6030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 6031 components: - type: Transform @@ -71502,14 +71637,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 6714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 6716 components: - type: Transform @@ -80280,14 +80407,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 16430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16432 components: - type: Transform @@ -83300,7 +83419,7 @@ entities: pos: -35.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#03FCD3FF' - uid: 5244 components: - type: Transform @@ -83717,17 +83836,6 @@ entities: - 20239 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2670 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5473 components: - type: Transform @@ -84937,6 +85045,17 @@ entities: - 13798 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 20727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2670 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentPumpVox entities: - uid: 1134 @@ -85192,6 +85311,17 @@ entities: - 14167 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20239 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5054 components: - type: Transform @@ -85408,17 +85538,6 @@ entities: - 3053 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-51.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20239 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 10416 components: - type: Transform @@ -89385,11 +89504,6 @@ entities: - type: Transform pos: -14.5,-45.5 parent: 2 - - uid: 10615 - components: - - type: Transform - pos: -15.5,-45.5 - parent: 2 - uid: 10616 components: - type: Transform @@ -90565,6 +90679,11 @@ entities: - type: Transform pos: 77.5,-70.5 parent: 2 + - uid: 15738 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 - uid: 15768 components: - type: Transform @@ -94698,6 +94817,478 @@ entities: - type: Transform pos: -13.111154,-8.26818 parent: 2 +- proto: Holopad + entities: + - uid: 404 + components: + - type: MetaData + name: holopad (Engi - Front Desk) + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - type: Label + currentLabel: Engi - Front Desk + - type: NameModifier + baseName: holopad + - uid: 1559 + components: + - type: MetaData + name: holopad (Sec - Detective) + - type: Transform + pos: 36.5,2.5 + parent: 2 + - type: Label + currentLabel: Sec - Detective + - type: NameModifier + baseName: holopad + - uid: 1593 + components: + - type: MetaData + name: holopad (Bridge) + - type: Transform + pos: -17.5,-56.5 + parent: 2 + - type: Label + currentLabel: Bridge + - type: NameModifier + baseName: holopad + - uid: 1955 + components: + - type: MetaData + name: holopad (Sci - Anomalies) + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - type: Label + currentLabel: Sci - Anomalies + - type: NameModifier + baseName: holopad + - uid: 2091 + components: + - type: MetaData + name: holopad (Chapel) + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - type: Label + currentLabel: Chapel + - type: NameModifier + baseName: holopad + - uid: 2582 + components: + - type: MetaData + name: holopad (Tech Vault) + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - type: Label + currentLabel: Tech Vault + - type: NameModifier + baseName: holopad + - uid: 9726 + components: + - type: MetaData + name: holopad (AI Foyer) + - type: Transform + pos: -51.5,-12.5 + parent: 2 + - type: Label + currentLabel: AI Foyer + - type: NameModifier + baseName: holopad + - uid: 9940 + components: + - type: MetaData + name: holopad (Command - Captain) + - type: Transform + pos: -23.5,-51.5 + parent: 2 + - type: Label + currentLabel: Command - Captain + - type: NameModifier + baseName: holopad + - uid: 10615 + components: + - type: MetaData + name: holopad (Library) + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - type: Label + currentLabel: Library + - type: NameModifier + baseName: holopad + - uid: 13799 + components: + - type: MetaData + name: holopad (Sci - Front Desk) + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - type: Label + currentLabel: Sci - Front Desk + - type: NameModifier + baseName: holopad + - uid: 15711 + components: + - type: MetaData + name: holopad (Engi - SMES Bank) + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - type: Label + currentLabel: Engi - SMES Bank + - type: NameModifier + baseName: holopad + - uid: 17150 + components: + - type: MetaData + name: holopad (Telecoms) + - type: Transform + pos: 24.5,0.5 + parent: 2 + - type: Label + currentLabel: Telecoms + - type: NameModifier + baseName: holopad + - uid: 17615 + components: + - type: MetaData + name: holopad (Engi - TEG) + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - type: Label + currentLabel: Engi - TEG + - type: NameModifier + baseName: holopad + - uid: 20707 + components: + - type: MetaData + name: holopad (Command - HoP) + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - type: Label + currentLabel: Command - HoP + - type: NameModifier + baseName: holopad + - uid: 20708 + components: + - type: MetaData + name: holopad (Med - Medbay) + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - type: Label + currentLabel: Med - Medbay + - type: NameModifier + baseName: holopad + - uid: 20709 + components: + - type: MetaData + name: holopad (Med - Virology) + - type: Transform + pos: -50.5,-41.5 + parent: 2 + - type: Label + currentLabel: Med - Virology + - type: NameModifier + baseName: holopad + - uid: 20710 + components: + - type: MetaData + name: holopad (Med - Surgery) + - type: Transform + pos: -51.5,-30.5 + parent: 2 + - type: Label + currentLabel: Med - Surgery + - type: NameModifier + baseName: holopad + - uid: 20711 + components: + - type: MetaData + name: holopad (Med - Chemistry) + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - type: Label + currentLabel: Med - Chemistry + - type: NameModifier + baseName: holopad + - uid: 20712 + components: + - type: MetaData + name: holopad (Med - Front Desk) + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - type: Label + currentLabel: Med - Front Desk + - type: NameModifier + baseName: holopad + - uid: 20713 + components: + - type: MetaData + name: holopad (Med - Morgue) + - type: Transform + pos: -42.5,-46.5 + parent: 2 + - type: Label + currentLabel: Med - Morgue + - type: NameModifier + baseName: holopad + - uid: 20715 + components: + - type: MetaData + name: holopad (Janitor) + - type: Transform + pos: 28.5,2.5 + parent: 2 + - type: Label + currentLabel: Janitor + - type: NameModifier + baseName: holopad + - uid: 20716 + components: + - type: MetaData + name: holopad (Sci - Robotics) + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - type: Label + currentLabel: Sci - Robotics + - type: NameModifier + baseName: holopad + - uid: 20717 + components: + - type: MetaData + name: holopad (Sci - Artifacts) + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - type: Label + currentLabel: Sci - Artifacts + - type: NameModifier + baseName: holopad + - uid: 20720 + components: + - type: MetaData + name: holopad (Sec - Lawyer) + - type: Transform + pos: 29.5,11.5 + parent: 2 + - type: Label + currentLabel: Sec - Lawyer + - type: NameModifier + baseName: holopad + - uid: 20721 + components: + - type: MetaData + name: holopad (Cargo - Front Desk) + - type: Transform + pos: 5.5,16.5 + parent: 2 + - type: Label + currentLabel: Cargo - Front Desk + - type: NameModifier + baseName: holopad + - uid: 20723 + components: + - type: MetaData + name: holopad (Cargo - Salvage) + - type: Transform + pos: 16.5,23.5 + parent: 2 + - type: Label + currentLabel: Cargo - Salvage + - type: NameModifier + baseName: holopad + - uid: 20724 + components: + - type: MetaData + name: holopad (Sec - Work Area) + - type: Transform + pos: -25.5,4.5 + parent: 2 + - type: Label + currentLabel: Sec - Work Area + - type: NameModifier + baseName: holopad + - uid: 20725 + components: + - type: MetaData + name: holopad (Sec - Brig) + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - type: Label + currentLabel: Sec - Brig + - type: NameModifier + baseName: holopad + - uid: 20726 + components: + - type: MetaData + name: holopad (Sec - Warden) + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - type: Label + currentLabel: Sec - Warden + - type: NameModifier + baseName: holopad + - uid: 20728 + components: + - type: MetaData + name: holopad (Hydroponics) + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - type: Label + currentLabel: Hydroponics + - type: NameModifier + baseName: holopad + - uid: 20732 + components: + - type: MetaData + name: holopad (Game Room) + - type: Transform + pos: 19.5,-47.5 + parent: 2 + - type: Label + currentLabel: Game Room + - type: NameModifier + baseName: holopad + - uid: 20733 + components: + - type: MetaData + name: holopad (Engi - Atmos) + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - type: Label + currentLabel: Engi - Atmos + - type: NameModifier + baseName: holopad + - uid: 20739 + components: + - type: MetaData + name: holopad (Sec - Locker Room) + - type: Transform + pos: -25.5,16.5 + parent: 2 + - type: Label + currentLabel: Sec - Locker Room + - type: NameModifier + baseName: holopad + - uid: 20740 + components: + - type: MetaData + name: holopad (Med - Psychologist) + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - type: Label + currentLabel: Med - Psychologist + - type: NameModifier + baseName: holopad + - uid: 20756 + components: + - type: MetaData + name: holopad (Command - CE) + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - type: Label + currentLabel: Command - CE + - type: NameModifier + baseName: holopad + - uid: 20757 + components: + - type: MetaData + name: holopad (Command - QM) + - type: Transform + pos: -7.5,18.5 + parent: 2 + - type: Label + currentLabel: Command - QM + - type: NameModifier + baseName: holopad + - uid: 20758 + components: + - type: MetaData + name: holopad (Command - RD) + - type: Transform + pos: 30.5,-34.5 + parent: 2 + - type: Label + currentLabel: Command - RD + - type: NameModifier + baseName: holopad + - uid: 20759 + components: + - type: MetaData + name: holopad (Command - HoS) + - type: Transform + pos: -22.5,11.5 + parent: 2 + - type: Label + currentLabel: Command - HoS + - type: NameModifier + baseName: holopad + - uid: 20760 + components: + - type: MetaData + name: holopad (Command - CMO) + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - type: Label + currentLabel: Command - CMO + - type: NameModifier + baseName: holopad +- proto: HolopadLongRange + entities: + - uid: 20706 + components: + - type: MetaData + name: long-range holopad (Bridge) + - type: Transform + pos: -17.5,-52.5 + parent: 2 + - type: Label + currentLabel: Bridge + - type: NameModifier + baseName: long-range holopad + - uid: 20722 + components: + - type: MetaData + name: long-range holopad (Cargo) + - type: Transform + pos: 4.5,24.5 + parent: 2 + - type: Label + currentLabel: Cargo + - type: NameModifier + baseName: long-range holopad +- proto: HolopadMachineCircuitboard + entities: + - uid: 20729 + components: + - type: Transform + pos: 6.8019543,-27.547781 + parent: 2 + - uid: 20730 + components: + - type: Transform + pos: 12.400941,-17.507607 + parent: 2 + - uid: 20731 + components: + - type: Transform + pos: 12.863626,-12.920663 + parent: 2 - proto: HoloprojectorSecurity entities: - uid: 14409 @@ -95531,8 +96122,6 @@ entities: - Pressed: Toggle 11459: - Pressed: Toggle - 11460: - - Pressed: Toggle - proto: LockableButtonCaptain entities: - uid: 15649 @@ -95732,7 +96321,7 @@ entities: - Pressed: DoorBolt 15654: - Pressed: Toggle - 15655: + 15749: - Pressed: Toggle 15656: - Pressed: Toggle @@ -95941,14 +96530,16 @@ entities: - Pressed: Toggle 11838: - Pressed: Toggle - 2426: + 13992: - Pressed: Toggle - 2573: + 13795: - Pressed: Toggle - 12379: + 12282: - Pressed: Toggle 17722: - Pressed: Toggle + 20763: + - Pressed: Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 1929 @@ -97923,6 +98514,8 @@ entities: entities: - uid: 6989 components: + - type: MetaData + desc: At first glance it's the real deal, but after careful examination it appears this is an EDM album. Strong 6 to a light 7. - type: Transform pos: 47.54206,-8.527592 parent: 2 @@ -99296,11 +99889,6 @@ entities: - type: Transform pos: 7.5,18.5 parent: 2 - - uid: 2582 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 2 - uid: 2619 components: - type: Transform @@ -99382,6 +99970,12 @@ entities: - type: Transform pos: 46.5,-50.5 parent: 2 + - uid: 20734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 - proto: PowerDrill entities: - uid: 4425 @@ -99582,6 +100176,22 @@ entities: - type: Transform pos: 28.5,19.5 parent: 2 + - uid: 13795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-39.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 13992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-39.5 + parent: 2 + - type: PoweredLight + on: False - uid: 14407 components: - type: Transform @@ -99749,6 +100359,20 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-37.5 parent: 2 + - uid: 20737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,12.5 + parent: 2 + - uid: 20763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-38.5 + parent: 2 + - type: PoweredLight + on: False - proto: PoweredLEDSmallLight entities: - uid: 12977 @@ -101219,6 +101843,12 @@ entities: - type: Transform pos: 53.5,-16.5 parent: 2 + - uid: 9735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,11.5 + parent: 2 - uid: 9954 components: - type: Transform @@ -101246,6 +101876,12 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-35.5 parent: 2 + - uid: 11460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-45.5 + parent: 2 - uid: 11545 components: - type: Transform @@ -101396,12 +102032,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-52.5 parent: 2 - - uid: 12379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-42.5 - parent: 2 - uid: 12390 components: - type: Transform @@ -101815,30 +102445,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,8.5 parent: 2 -- proto: PoweredStrobeLightEpsilon - entities: - - uid: 2340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,11.5 - parent: 2 - - uid: 2426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-39.5 - parent: 2 - - type: PoweredLight - on: True - - uid: 2573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-39.5 - parent: 2 - - type: PoweredLight - on: True - proto: PrefilledSyringe entities: - uid: 6049 @@ -103004,12 +103610,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-39.5 parent: 2 - - uid: 3539 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-39.5 - parent: 2 - uid: 3549 components: - type: Transform @@ -103026,11 +103626,6 @@ entities: - type: Transform pos: -2.5,-39.5 parent: 2 - - uid: 3633 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 2 - uid: 5074 components: - type: Transform @@ -103150,6 +103745,11 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-40.5 parent: 2 + - uid: 11717 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 - uid: 13193 components: - type: Transform @@ -103185,6 +103785,12 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,17.5 parent: 2 + - uid: 15655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-39.5 + parent: 2 - uid: 15698 components: - type: Transform @@ -103215,12 +103821,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,12.5 parent: 2 - - uid: 3541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 2 - uid: 7376 components: - type: Transform @@ -103233,6 +103833,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-41.5 parent: 2 + - uid: 14168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 2 - uid: 17982 components: - type: Transform @@ -103252,12 +103858,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-39.5 parent: 2 - - uid: 3542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 2 - uid: 7089 components: - type: Transform @@ -103299,9 +103899,15 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-4.5 parent: 2 + - uid: 20714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 2 - proto: RailingRound entities: - - uid: 3540 + - uid: 14832 components: - type: Transform rot: 3.141592653589793 rad @@ -103390,6 +103996,11 @@ entities: - type: Transform pos: -43.5,-51.5 parent: 2 + - uid: 20125 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 - proto: RandomDrinkBottle entities: - uid: 1844 @@ -104109,11 +104720,6 @@ entities: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 219 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 2 - uid: 1092 components: - type: Transform @@ -106549,11 +107155,6 @@ entities: - type: Transform pos: 74.5,-47.5 parent: 2 - - uid: 7506 - components: - - type: Transform - pos: -15.5,-45.5 - parent: 2 - uid: 7511 components: - type: Transform @@ -107039,6 +107640,11 @@ entities: - type: Transform pos: 57.5,-49.5 parent: 2 + - uid: 9958 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 - uid: 9999 components: - type: Transform @@ -107894,6 +108500,12 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-50.5 parent: 2 + - uid: 20767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,16.5 + parent: 2 - proto: Screwdriver entities: - uid: 19555 @@ -108425,12 +109037,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-43.5 parent: 2 - - uid: 11460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-44.5 - parent: 2 - uid: 11461 components: - type: Transform @@ -108501,12 +109107,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-45.5 parent: 2 - - uid: 15655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-45.5 - parent: 2 - uid: 15656 components: - type: Transform @@ -108519,6 +109119,12 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-45.5 parent: 2 + - uid: 15749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-45.5 + parent: 2 - uid: 16020 components: - type: Transform @@ -108733,7 +109339,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2340: + 20737: + - Pressed: Toggle + 9735: - Pressed: Toggle - uid: 3255 components: @@ -109216,6 +109824,12 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,21.5 parent: 2 + - uid: 20755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-49.5 + parent: 2 - proto: SignDirectionalSupply entities: - uid: 16966 @@ -109368,17 +109982,17 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-55.5 parent: 2 - - uid: 15749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-56.5 - parent: 2 - uid: 17856 components: - type: Transform pos: -34.5,11.5 parent: 2 + - uid: 20746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-57.5 + parent: 2 - proto: SignEVA entities: - uid: 914 @@ -109803,6 +110417,43 @@ entities: - type: Transform pos: -32.5,-32.5 parent: 2 +- proto: SMESAdvanced + entities: + - uid: 2499 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + pos: -43.5,-55.5 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 - proto: SMESBasic entities: - uid: 2314 @@ -109812,16 +110463,6 @@ entities: - type: Transform pos: -10.5,-53.5 parent: 2 - - uid: 2499 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 2 - - uid: 2776 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 2 - uid: 6542 components: - type: MetaData @@ -109836,37 +110477,6 @@ entities: - type: Transform pos: 21.5,-8.5 parent: 2 - - uid: 8444 - components: - - type: Transform - pos: -30.5,24.5 - parent: 2 - - uid: 8838 - components: - - type: MetaData - name: North East Solars SMES - - type: Transform - pos: 46.5,3.5 - parent: 2 - - uid: 10400 - components: - - type: MetaData - name: South West Solars SMES - - type: Transform - pos: -43.5,-55.5 - parent: 2 - - uid: 15942 - components: - - type: MetaData - name: AI Satellite SMES - - type: Transform - pos: -62.5,-8.5 - parent: 2 - - uid: 16111 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 2 - proto: SMESMachineCircuitboard entities: - uid: 2088 @@ -112130,10 +112740,10 @@ entities: - type: Transform pos: 35.5,-25.5 parent: 2 - - uid: 20125 + - uid: 20719 components: - type: Transform - pos: 37.5,-36.5 + pos: 38.5,-37.5 parent: 2 - proto: SpawnPointResearchDirector entities: @@ -112176,10 +112786,10 @@ entities: - type: Transform pos: 36.5,-40.5 parent: 2 - - uid: 20126 + - uid: 20718 components: - type: Transform - pos: 38.5,-36.5 + pos: 38.5,-35.5 parent: 2 - proto: SpawnPointSecurityCadet entities: @@ -112956,11 +113566,6 @@ entities: - type: Transform pos: 26.5,-43.5 parent: 2 - - uid: 4911 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 2 - uid: 19990 components: - type: Transform @@ -112971,6 +113576,16 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 2 + - uid: 20735 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 20736 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 - proto: StrangePill entities: - uid: 18971 @@ -113127,11 +113742,6 @@ entities: - type: Transform pos: -61.353973,-11.489028 parent: 2 - - uid: 20661 - components: - - type: Transform - pos: -34.526165,17.347694 - parent: 2 - proto: SuitStorageCaptain entities: - uid: 15645 @@ -114496,11 +115106,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-17.5 parent: 2 - - uid: 1955 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 2 - uid: 1956 components: - type: Transform @@ -115330,6 +115935,12 @@ entities: - type: Transform pos: -40.5,-2.5 parent: 2 + - uid: 20661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 - uid: 20681 components: - type: Transform @@ -117749,10 +118360,10 @@ entities: parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 9572 + - uid: 17627 components: - type: Transform - pos: -7.5,-6.5 + pos: -7.5,-4.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: @@ -123950,6 +124561,7 @@ entities: - uid: 15467 components: - type: Transform + rot: 1.5707963267948966 rad pos: -64.5,-17.5 parent: 2 - uid: 15478 @@ -125097,6 +125709,26 @@ entities: - type: Transform pos: -36.5,13.5 parent: 2 + - uid: 20742 + components: + - type: Transform + pos: -42.5,-57.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + pos: -42.5,-59.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + pos: -41.5,-59.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + pos: -40.5,-59.5 + parent: 2 - proto: WallReinforcedRust entities: - uid: 141 @@ -127351,6 +127983,12 @@ entities: - type: Transform pos: -23.5,-6.5 parent: 2 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 2 - uid: 86 components: - type: Transform @@ -127561,11 +128199,6 @@ entities: - type: Transform pos: -7.5,-9.5 parent: 2 - - uid: 1593 - components: - - type: Transform - pos: -11.5,-5.5 - parent: 2 - uid: 1643 components: - type: Transform @@ -128151,11 +128784,6 @@ entities: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 3544 - components: - - type: Transform - pos: -6.5,-42.5 - parent: 2 - uid: 3573 components: - type: Transform @@ -130801,6 +131429,11 @@ entities: - type: Transform pos: 38.5,5.5 parent: 2 + - uid: 20768 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 2 - proto: WallSolidRust entities: - uid: 206 @@ -132830,6 +133463,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-29.5 parent: 2 + - uid: 3544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-44.5 + parent: 2 - uid: 3553 components: - type: Transform @@ -133258,11 +133897,6 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,-16.5 parent: 2 - - uid: 17136 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 2 - uid: 17452 components: - type: Transform From 91b85be1a43fa053f35117b9930b304a0d862eb7 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Tue, 17 Dec 2024 20:45:50 -0800 Subject: [PATCH 127/263] Bagel Power Rebalance + Gas Pipe Sensors (#33925) * Balances bagel power * Adds gas pipe sensors * remove invalids :) --- Resources/Maps/bagel.yml | 6153 ++++++++++++++++++++------------------ 1 file changed, 3227 insertions(+), 2926 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 71b8efeedf..f7d4c9ba26 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -245,7 +245,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: XQAAAAACXQAAAAABXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAATQAAAAAATQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADTgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAAA + tiles: XQAAAAACXQAAAAABXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAATQAAAAAATQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAATgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAAA version: 6 3,0: ind: 3,0 @@ -253,7 +253,7 @@ entities: version: 6 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAegAAAAAAegAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAegAAAAAAegAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA version: 6 0,-6: ind: 0,-6 @@ -864,6 +864,12 @@ entities: 2013: -28,0 3842: 5,-45 3843: 4,-45 + 4874: 1,25 + 4875: 0,25 + 4876: -1,25 + 4877: 1,23 + 4879: -1,23 + 4880: 0,23 - node: color: '#52B4E996' id: BoxGreyscale @@ -1635,11 +1641,16 @@ entities: decals: 1695: -29,-14 1738: -22,-23 + - node: + zIndex: 5 + color: '#EFCC4193' + id: BrickTileWhiteInnerNe + decals: + 4914: -3,24 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNe decals: - 2128: -3,23 2271: -3,21 - node: color: '#EFD84196' @@ -1670,11 +1681,16 @@ entities: decals: 1690: -29,-6 1862: -31,-17 + - node: + zIndex: 5 + color: '#EFCC4193' + id: BrickTileWhiteInnerSe + decals: + 4913: -3,24 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSe decals: - 2153: -3,23 2249: -3,27 - node: color: '#52B4E996' @@ -1686,11 +1702,15 @@ entities: id: BrickTileWhiteInnerSw decals: 1689: -25,-6 + - node: + color: '#EFCC4193' + id: BrickTileWhiteInnerSw + decals: + 4898: -5,27 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSw decals: - 2147: -5,27 2152: -4,23 - node: color: '#EFD54196' @@ -1744,11 +1764,16 @@ entities: 1672: -22,-5 1711: -24,-20 - node: - color: '#EFCC4196' + color: '#EFCC4193' id: BrickTileWhiteLineE decals: - 2126: -3,24 - 2127: -3,25 + 4899: -3,23 + - node: + zIndex: 5 + color: '#EFCC4193' + id: BrickTileWhiteLineE + decals: + 4915: -3,25 - node: color: '#EFD54193' id: BrickTileWhiteLineE @@ -1829,15 +1854,17 @@ entities: decals: 3035: 22,5 3036: 24,5 + - node: + zIndex: 5 + color: '#EFCC4193' + id: BrickTileWhiteLineN + decals: + 4907: -2,24 + 4910: 2,24 - node: color: '#EFCC4196' id: BrickTileWhiteLineN decals: - 2121: 2,23 - 2122: 1,23 - 2123: 0,23 - 2124: -1,23 - 2125: -2,23 2135: -11,32 - node: color: '#EFD54193' @@ -1923,15 +1950,17 @@ entities: 1859: -27,-17 1860: -29,-17 1861: -30,-17 + - node: + zIndex: 5 + color: '#EFCC4193' + id: BrickTileWhiteLineS + decals: + 4908: -2,24 + 4909: 2,24 - node: color: '#EFCC4196' id: BrickTileWhiteLineS decals: - 2116: 2,23 - 2117: 1,23 - 2118: 0,23 - 2119: -1,23 - 2120: -2,23 2141: -10,27 2142: -9,27 2143: -8,27 @@ -3091,12 +3120,9 @@ entities: 2273: 4,20 2275: -4,21 2276: -3,22 - 2277: -3,24 2278: -2,21 2279: -2,20 - 2280: -3,23 2281: -5,28 - 2282: -5,27 2283: -11,28 2284: -12,29 2285: -13,30 @@ -5703,22 +5729,32 @@ entities: 718: -30,34 861: -12,2 1363: -2,31 - 3282: -2,24 3342: -19,40 3749: -8,29 3881: -114,30 3895: -15,2 + - node: + zIndex: 5 + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 4916: -2,24 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 841: -8,2 1362: 2,31 - 2115: 2,24 3330: -27,38 3341: -15,40 3748: -5,29 3880: -110,30 + - node: + zIndex: 5 + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 4918: 2,24 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -5728,6 +5764,12 @@ entities: 3340: -19,42 3762: -29,-1 3894: -15,4 + - node: + zIndex: 5 + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 4917: -2,24 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5740,6 +5782,12 @@ entities: 3339: -15,42 3870: -25,-1 3963: -54,6 + - node: + zIndex: 5 + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 4919: 2,24 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -5813,6 +5861,7 @@ entities: 3893: -15,3 4099: 17,-22 4214: -16,33 + 4886: -2,23 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -6095,6 +6144,9 @@ entities: 4211: -17,32 4243: 38,23 4828: 18,-25 + 4881: -1,24 + 4882: 0,24 + 4883: 1,24 - node: color: '#DE3A3A96' id: WarnLineS @@ -6146,6 +6198,7 @@ entities: 3780: 40,-36 4098: 15,-22 4212: -18,33 + 4887: 2,23 - node: color: '#DE3A3A96' id: WarnLineW @@ -6184,9 +6237,6 @@ entities: 1778: -2,-23 1890: -42,-2 2063: -27,-23 - 2110: 0,24 - 2111: 1,24 - 2112: -1,24 2734: 4,-39 2741: 5,-39 2742: 3,-39 @@ -6231,6 +6281,9 @@ entities: 4213: -17,34 4244: 38,25 4827: 18,-23 + 4888: -1,24 + 4889: 0,24 + 4890: 1,24 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -8330,7 +8383,7 @@ entities: 1: 39312 -12,8: 4: 12 - 6: 3072 + 5: 3072 -11,5: 0: 63351 -11,6: @@ -8339,7 +8392,7 @@ entities: -11,8: 4: 1 1: 17476 - 6: 256 + 5: 256 -11,7: 1: 17484 -10,5: @@ -8437,10 +8490,10 @@ entities: 0: 255 1: 57344 -8,11: - 5: 816 + 6: 816 1: 34952 -9,11: - 5: 2176 + 6: 2176 1: 8738 -8,12: 1: 34959 @@ -8460,7 +8513,7 @@ entities: -6,11: 0: 4095 -6,12: - 5: 61166 + 6: 61166 -5,9: 0: 65528 -5,10: @@ -8468,7 +8521,7 @@ entities: -5,11: 0: 36863 -5,12: - 5: 30515 + 6: 30515 0: 12 -4,9: 0: 65528 @@ -8478,7 +8531,7 @@ entities: 0: 4095 -4,12: 0: 1 - 5: 65518 + 6: 65518 -4,13: 1: 61680 -5,13: @@ -8492,7 +8545,7 @@ entities: -5,15: 1: 17487 -3,12: - 5: 13107 + 6: 13107 1: 34944 -3,13: 1: 47792 @@ -8558,7 +8611,7 @@ entities: 1: 61713 -12,9: 0: 16 - 5: 3084 + 6: 3084 -13,9: 1: 39305 -13,10: @@ -8568,18 +8621,18 @@ entities: 0: 12544 -12,10: 3: 12 - 5: 3072 + 6: 3072 -12,11: - 5: 12 + 6: 12 -11,9: - 5: 257 + 6: 257 1: 17476 -11,10: 3: 1 - 5: 256 + 6: 256 1: 17476 -11,11: - 5: 1 + 6: 1 1: 17476 -11,12: 1: 17487 @@ -8633,7 +8686,7 @@ entities: 1: 15 -13,12: 1: 34952 - 6: 48 + 5: 48 4: 12288 -12,13: 1: 61455 @@ -8667,11 +8720,11 @@ entities: 1: 62671 -7,14: 1: 244 - 5: 57344 + 6: 57344 0: 1024 -7,15: 1: 61440 - 5: 238 + 6: 238 0: 1024 -7,16: 1: 65524 @@ -8730,7 +8783,7 @@ entities: -14,12: 0: 1 1: 8738 - 6: 128 + 5: 128 4: 32768 -17,12: 0: 52232 @@ -9339,7 +9392,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 + - 6666.982 - 0 - 0 - 0 @@ -9354,7 +9407,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 + - 0 - 0 - 0 - 0 @@ -9964,6 +10017,16 @@ entities: - 18260 - 18539 - 18540 + - uid: 15745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,26.5 + parent: 60 + - type: DeviceList + devices: + - 16635 + - 16634 - uid: 16145 components: - type: Transform @@ -10612,16 +10675,14 @@ entities: parent: 60 - type: DeviceList devices: - - 16556 - - 16557 - - 16558 - - 16633 - 21709 - - 16008 - 16007 - - 16636 - - 16634 - - 16635 + - 16008 + - 16556 + - 16558 + - 16557 + - 16718 + - 16633 - uid: 21712 components: - type: Transform @@ -14096,6 +14157,9 @@ entities: - type: Transform pos: -1.5,24.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21710 - uid: 21713 components: - type: Transform @@ -14225,7 +14289,29 @@ entities: - uid: 16530 components: - type: Transform - pos: 8.465609,23.526558 + pos: 8.69011,23.484507 + parent: 60 + - uid: 24348 + components: + - type: Transform + pos: 8.361985,23.453257 + parent: 60 +- proto: AmePartFlatpack + entities: + - uid: 24320 + components: + - type: Transform + pos: 4.3016086,23.688532 + parent: 60 + - uid: 24349 + components: + - type: Transform + pos: 4.6922336,23.329157 + parent: 60 + - uid: 24408 + components: + - type: Transform + pos: 4.3484836,23.391657 parent: 60 - proto: AnomalyScanner entities: @@ -42086,6 +42172,21 @@ entities: - type: Transform pos: -118.5,15.5 parent: 60 + - uid: 24416 + components: + - type: Transform + pos: 1.5,23.5 + parent: 60 + - uid: 24546 + components: + - type: Transform + pos: -0.5,23.5 + parent: 60 + - uid: 24556 + components: + - type: Transform + pos: 0.5,23.5 + parent: 60 - uid: 24557 components: - type: Transform @@ -42451,6 +42552,76 @@ entities: - type: Transform pos: -111.5,31.5 parent: 60 + - uid: 24682 + components: + - type: Transform + pos: -0.5,22.5 + parent: 60 + - uid: 24683 + components: + - type: Transform + pos: 0.5,22.5 + parent: 60 + - uid: 24684 + components: + - type: Transform + pos: 1.5,22.5 + parent: 60 + - uid: 24687 + components: + - type: Transform + pos: 4.5,26.5 + parent: 60 + - uid: 24688 + components: + - type: Transform + pos: 4.5,25.5 + parent: 60 + - uid: 24689 + components: + - type: Transform + pos: 4.5,24.5 + parent: 60 + - uid: 24768 + components: + - type: Transform + pos: 4.5,23.5 + parent: 60 + - uid: 24769 + components: + - type: Transform + pos: 4.5,22.5 + parent: 60 + - uid: 24770 + components: + - type: Transform + pos: 4.5,21.5 + parent: 60 + - uid: 24771 + components: + - type: Transform + pos: 4.5,20.5 + parent: 60 + - uid: 24772 + components: + - type: Transform + pos: 3.5,20.5 + parent: 60 + - uid: 24773 + components: + - type: Transform + pos: 2.5,20.5 + parent: 60 + - uid: 24774 + components: + - type: Transform + pos: 1.5,20.5 + parent: 60 + - uid: 24775 + components: + - type: Transform + pos: 1.5,21.5 + parent: 60 - proto: CableHVStack entities: - uid: 13606 @@ -46295,6 +46466,26 @@ entities: - type: Transform pos: -5.5,37.5 parent: 60 + - uid: 15722 + components: + - type: Transform + pos: -1.5,24.5 + parent: 60 + - uid: 15723 + components: + - type: Transform + pos: -0.5,24.5 + parent: 60 + - uid: 15724 + components: + - type: Transform + pos: 1.5,24.5 + parent: 60 + - uid: 15744 + components: + - type: Transform + pos: 0.5,24.5 + parent: 60 - uid: 15808 components: - type: Transform @@ -46305,6 +46496,11 @@ entities: - type: Transform pos: -44.5,15.5 parent: 60 + - uid: 16004 + components: + - type: Transform + pos: 2.5,24.5 + parent: 60 - uid: 16060 components: - type: Transform @@ -46825,31 +47021,6 @@ entities: - type: Transform pos: -2.5,24.5 parent: 60 - - uid: 16714 - components: - - type: Transform - pos: -2.5,23.5 - parent: 60 - - uid: 16715 - components: - - type: Transform - pos: -1.5,23.5 - parent: 60 - - uid: 16716 - components: - - type: Transform - pos: -0.5,23.5 - parent: 60 - - uid: 16717 - components: - - type: Transform - pos: 0.5,23.5 - parent: 60 - - uid: 16718 - components: - - type: Transform - pos: 1.5,23.5 - parent: 60 - uid: 16719 components: - type: Transform @@ -49060,6 +49231,24 @@ entities: rot: 3.141592653589793 rad pos: -110.5,30.5 parent: 60 + - uid: 24677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 60 + - uid: 24679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 60 + - uid: 24681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 60 - proto: CandyBowl entities: - uid: 15506 @@ -62445,6 +62634,11 @@ entities: - 0 - 0 - 0 + - uid: 24410 + components: + - type: Transform + pos: 6.5,23.5 + parent: 60 - proto: CrateEngineeringCableBulk entities: - uid: 2593 @@ -72304,26 +72498,41 @@ entities: - type: Transform pos: -2.5,22.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21710 - uid: 16008 components: - type: Transform pos: -3.5,22.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21710 - uid: 16556 components: - type: Transform pos: -4.5,26.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21710 - uid: 16557 components: - type: Transform pos: -3.5,26.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21710 - uid: 16558 components: - type: Transform pos: -2.5,26.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21710 - uid: 17493 components: - type: Transform @@ -73882,7 +74091,7 @@ entities: pos: 47.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - proto: GasFilterFlipped entities: - uid: 23468 @@ -74089,7 +74298,7 @@ entities: pos: 23.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPassiveVent entities: - uid: 2979 @@ -74313,13 +74522,15 @@ entities: pos: 44.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 125 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-21.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 217 components: - type: Transform @@ -74327,7 +74538,7 @@ entities: pos: 27.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 222 components: - type: Transform @@ -74335,7 +74546,7 @@ entities: pos: 20.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 248 components: - type: Transform @@ -74343,21 +74554,21 @@ entities: pos: -24.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 311 components: - type: Transform pos: 27.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 947 components: - type: Transform pos: 16.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 995 components: - type: Transform @@ -74365,14 +74576,14 @@ entities: pos: 9.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1388 components: - type: Transform pos: 4.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1408 components: - type: Transform @@ -74380,7 +74591,7 @@ entities: pos: 5.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1409 components: - type: Transform @@ -74388,7 +74599,7 @@ entities: pos: 7.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1817 components: - type: Transform @@ -74396,14 +74607,14 @@ entities: pos: -29.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1836 components: - type: Transform pos: -30.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1892 components: - type: Transform @@ -74411,14 +74622,14 @@ entities: pos: -27.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1926 components: - type: Transform pos: -29.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1973 components: - type: Transform @@ -74426,7 +74637,7 @@ entities: pos: -22.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2025 components: - type: Transform @@ -74434,7 +74645,7 @@ entities: pos: -23.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2203 components: - type: Transform @@ -74442,7 +74653,7 @@ entities: pos: 15.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2207 components: - type: Transform @@ -74450,14 +74661,14 @@ entities: pos: 32.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2274 components: - type: Transform pos: 34.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2366 components: - type: Transform @@ -74465,7 +74676,7 @@ entities: pos: 30.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2443 components: - type: Transform @@ -74473,7 +74684,7 @@ entities: pos: 16.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2999 components: - type: Transform @@ -74519,12 +74730,14 @@ entities: pos: 40.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3188 components: - type: Transform pos: 49.5,-19.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3198 components: - type: Transform @@ -74532,7 +74745,7 @@ entities: pos: -25.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3211 components: - type: Transform @@ -74540,7 +74753,7 @@ entities: pos: 49.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3960 components: - type: Transform @@ -74548,7 +74761,7 @@ entities: pos: -13.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3961 components: - type: Transform @@ -74556,7 +74769,7 @@ entities: pos: -13.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4739 components: - type: Transform @@ -74564,7 +74777,7 @@ entities: pos: 43.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4911 components: - type: Transform @@ -74572,14 +74785,14 @@ entities: pos: -2.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4912 components: - type: Transform pos: -0.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4913 components: - type: Transform @@ -74587,7 +74800,7 @@ entities: pos: 3.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4914 components: - type: Transform @@ -74595,7 +74808,7 @@ entities: pos: -2.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4935 components: - type: Transform @@ -74603,14 +74816,14 @@ entities: pos: 1.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4936 components: - type: Transform pos: 3.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4961 components: - type: Transform @@ -74618,7 +74831,7 @@ entities: pos: 43.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4985 components: - type: Transform @@ -74626,7 +74839,7 @@ entities: pos: 1.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4987 components: - type: Transform @@ -74634,7 +74847,7 @@ entities: pos: -0.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5474 components: - type: Transform @@ -74642,7 +74855,7 @@ entities: pos: -38.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5550 components: - type: Transform @@ -74665,14 +74878,14 @@ entities: pos: 8.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5695 components: - type: Transform pos: 8.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5699 components: - type: Transform @@ -74680,7 +74893,7 @@ entities: pos: 5.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5700 components: - type: Transform @@ -74688,21 +74901,21 @@ entities: pos: 6.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5701 components: - type: Transform pos: 6.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5702 components: - type: Transform pos: 5.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5703 components: - type: Transform @@ -74710,7 +74923,7 @@ entities: pos: -7.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5706 components: - type: Transform @@ -74718,7 +74931,7 @@ entities: pos: -7.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5709 components: - type: Transform @@ -74726,7 +74939,7 @@ entities: pos: -4.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5710 components: - type: Transform @@ -74734,7 +74947,7 @@ entities: pos: -4.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5711 components: - type: Transform @@ -74742,7 +74955,7 @@ entities: pos: -5.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5712 components: - type: Transform @@ -74750,14 +74963,14 @@ entities: pos: -5.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5819 components: - type: Transform pos: 19.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5902 components: - type: Transform @@ -74765,7 +74978,7 @@ entities: pos: 15.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5950 components: - type: Transform @@ -74773,7 +74986,7 @@ entities: pos: -54.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5967 components: - type: Transform @@ -74781,14 +74994,14 @@ entities: pos: -55.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6046 components: - type: Transform pos: -44.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6047 components: - type: Transform @@ -74796,14 +75009,14 @@ entities: pos: -49.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6062 components: - type: Transform pos: -43.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6112 components: - type: Transform @@ -74811,7 +75024,7 @@ entities: pos: -43.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6135 components: - type: Transform @@ -74819,7 +75032,7 @@ entities: pos: -44.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6401 components: - type: Transform @@ -74827,7 +75040,7 @@ entities: pos: -47.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6803 components: - type: Transform @@ -74835,14 +75048,14 @@ entities: pos: -23.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6823 components: - type: Transform pos: 17.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7033 components: - type: Transform @@ -74850,14 +75063,14 @@ entities: pos: -23.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7285 components: - type: Transform pos: -24.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7357 components: - type: Transform @@ -74877,14 +75090,14 @@ entities: pos: 23.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8255 components: - type: Transform pos: -37.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8258 components: - type: Transform @@ -74892,7 +75105,7 @@ entities: pos: -25.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8579 components: - type: Transform @@ -74900,7 +75113,7 @@ entities: pos: -30.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8771 components: - type: Transform @@ -74908,7 +75121,7 @@ entities: pos: -28.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8948 components: - type: Transform @@ -74916,27 +75129,29 @@ entities: pos: -22.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8970 components: - type: Transform pos: 21.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9019 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9030 components: - type: Transform pos: -30.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9032 components: - type: Transform @@ -74944,14 +75159,14 @@ entities: pos: -21.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9157 components: - type: Transform pos: -18.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9638 components: - type: Transform @@ -74959,20 +75174,22 @@ entities: pos: -54.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11105 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-19.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11154 components: - type: Transform pos: -6.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11281 components: - type: Transform @@ -74986,7 +75203,7 @@ entities: pos: 37.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11488 components: - type: Transform @@ -74994,7 +75211,7 @@ entities: pos: 12.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11723 components: - type: Transform @@ -75002,7 +75219,7 @@ entities: pos: 40.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11841 components: - type: Transform @@ -75010,7 +75227,7 @@ entities: pos: 48.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12192 components: - type: Transform @@ -75018,7 +75235,7 @@ entities: pos: 41.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12629 components: - type: Transform @@ -75026,7 +75243,7 @@ entities: pos: 39.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12635 components: - type: Transform @@ -75034,7 +75251,7 @@ entities: pos: 40.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12823 components: - type: Transform @@ -75042,7 +75259,7 @@ entities: pos: -36.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12829 components: - type: Transform @@ -75050,7 +75267,7 @@ entities: pos: -43.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12835 components: - type: Transform @@ -75058,7 +75275,7 @@ entities: pos: -43.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13230 components: - type: Transform @@ -75081,7 +75298,7 @@ entities: pos: 49.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13515 components: - type: Transform @@ -75089,7 +75306,7 @@ entities: pos: 41.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13516 components: - type: Transform @@ -75097,7 +75314,7 @@ entities: pos: 37.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13517 components: - type: Transform @@ -75105,7 +75322,7 @@ entities: pos: 37.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13537 components: - type: Transform @@ -75113,7 +75330,7 @@ entities: pos: 20.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13538 components: - type: Transform @@ -75121,7 +75338,7 @@ entities: pos: 20.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13631 components: - type: Transform @@ -75129,7 +75346,7 @@ entities: pos: -8.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14230 components: - type: Transform @@ -75137,7 +75354,7 @@ entities: pos: -15.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14231 components: - type: Transform @@ -75145,14 +75362,14 @@ entities: pos: -14.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14260 components: - type: Transform pos: -14.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14297 components: - type: Transform @@ -75160,14 +75377,14 @@ entities: pos: -7.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14311 components: - type: Transform pos: -8.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14666 components: - type: Transform @@ -75182,7 +75399,7 @@ entities: pos: -12.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14668 components: - type: Transform @@ -75190,7 +75407,7 @@ entities: pos: -20.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14674 components: - type: Transform @@ -75198,7 +75415,7 @@ entities: pos: -20.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14698 components: - type: Transform @@ -75206,7 +75423,7 @@ entities: pos: -12.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14702 components: - type: Transform @@ -75227,7 +75444,7 @@ entities: pos: -20.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14842 components: - type: Transform @@ -75324,7 +75541,7 @@ entities: pos: -33.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15181 components: - type: Transform @@ -75424,14 +75641,14 @@ entities: pos: -22.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15594 components: - type: Transform pos: -10.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15612 components: - type: Transform @@ -75439,14 +75656,14 @@ entities: pos: -20.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15613 components: - type: Transform pos: -12.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16611 components: - type: Transform @@ -75454,7 +75671,7 @@ entities: pos: 1.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16641 components: - type: Transform @@ -75462,7 +75679,7 @@ entities: pos: -3.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16741 components: - type: Transform @@ -75492,7 +75709,7 @@ entities: pos: -47.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17290 components: - type: Transform @@ -75500,7 +75717,7 @@ entities: pos: -52.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17586 components: - type: Transform @@ -75508,7 +75725,7 @@ entities: pos: -41.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17587 components: - type: Transform @@ -75516,7 +75733,7 @@ entities: pos: -43.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18020 components: - type: Transform @@ -75530,7 +75747,7 @@ entities: pos: -2.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18250 components: - type: Transform @@ -75538,14 +75755,14 @@ entities: pos: -3.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18276 components: - type: Transform pos: -2.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18277 components: - type: Transform @@ -75553,7 +75770,7 @@ entities: pos: -4.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18366 components: - type: Transform @@ -75566,7 +75783,7 @@ entities: pos: 4.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18435 components: - type: Transform @@ -75574,7 +75791,7 @@ entities: pos: -3.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18511 components: - type: Transform @@ -75582,21 +75799,21 @@ entities: pos: -2.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18532 components: - type: Transform pos: 2.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18534 components: - type: Transform pos: 4.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18712 components: - type: Transform @@ -75604,7 +75821,7 @@ entities: pos: 39.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18713 components: - type: Transform @@ -75612,7 +75829,7 @@ entities: pos: 37.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18914 components: - type: Transform @@ -75620,7 +75837,7 @@ entities: pos: 47.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21325 components: - type: Transform @@ -75628,14 +75845,14 @@ entities: pos: -58.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21326 components: - type: Transform pos: -58.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21393 components: - type: Transform @@ -75643,14 +75860,14 @@ entities: pos: -15.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21440 components: - type: Transform pos: -7.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21441 components: - type: Transform @@ -75658,7 +75875,7 @@ entities: pos: -8.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21534 components: - type: Transform @@ -75666,14 +75883,14 @@ entities: pos: 53.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21666 components: - type: Transform pos: -29.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22829 components: - type: Transform @@ -75681,7 +75898,7 @@ entities: pos: -119.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22846 components: - type: Transform @@ -75689,7 +75906,7 @@ entities: pos: -111.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22872 components: - type: Transform @@ -75697,14 +75914,14 @@ entities: pos: -110.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22873 components: - type: Transform pos: -102.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22874 components: - type: Transform @@ -75712,35 +75929,35 @@ entities: pos: -102.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22875 components: - type: Transform pos: -99.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22877 components: - type: Transform pos: -110.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22880 components: - type: Transform pos: -98.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22895 components: - type: Transform pos: -111.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22896 components: - type: Transform @@ -75748,7 +75965,7 @@ entities: pos: -113.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22897 components: - type: Transform @@ -75756,7 +75973,7 @@ entities: pos: -113.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22898 components: - type: Transform @@ -75764,7 +75981,7 @@ entities: pos: -111.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22899 components: - type: Transform @@ -75772,7 +75989,7 @@ entities: pos: -111.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22909 components: - type: Transform @@ -76008,7 +76225,7 @@ entities: pos: 55.5,47.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24902 components: - type: Transform @@ -76016,14 +76233,14 @@ entities: pos: 33.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25167 components: - type: Transform pos: 35.5,47.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 467 @@ -76032,75 +76249,77 @@ entities: pos: 1.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 483 components: - type: Transform pos: -0.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 872 components: - type: Transform pos: 44.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 942 components: - type: Transform pos: 45.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1040 components: - type: Transform pos: 15.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1177 components: - type: Transform pos: -16.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2002 components: - type: Transform pos: -22.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2361 components: - type: Transform pos: 23.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2470 components: - type: Transform pos: 21.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2491 components: - type: Transform pos: 39.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2903 components: - type: Transform pos: 49.5,-21.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3122 components: - type: Transform @@ -76112,126 +76331,126 @@ entities: pos: 45.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3194 components: - type: Transform pos: 44.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3195 components: - type: Transform pos: 44.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4002 components: - type: Transform pos: -7.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4116 components: - type: Transform pos: 33.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4656 components: - type: Transform pos: -0.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5991 components: - type: Transform pos: -52.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6213 components: - type: Transform pos: 1.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6264 components: - type: Transform pos: 17.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6268 components: - type: Transform pos: -38.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6275 components: - type: Transform pos: -47.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6834 components: - type: Transform pos: -47.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7563 components: - type: Transform pos: -21.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8720 components: - type: Transform pos: -18.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8748 components: - type: Transform pos: -21.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9232 components: - type: Transform pos: 17.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14241 components: - type: Transform pos: -14.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15113 components: - type: Transform pos: -33.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15531 components: - type: Transform @@ -76245,35 +76464,35 @@ entities: pos: 39.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17887 components: - type: Transform pos: 45.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18231 components: - type: Transform pos: 1.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18239 components: - type: Transform pos: 1.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22822 components: - type: Transform pos: -111.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22997 components: - type: Transform @@ -76295,6 +76514,55 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' +- proto: GasPipeSensor + entities: + - uid: 3127 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: Label + currentLabel: Cryogenics +- proto: GasPipeSensorDistribution + entities: + - uid: 14741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,31.5 + parent: 60 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 15074 + components: + - type: Transform + pos: -14.5,43.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 14858 + components: + - type: Transform + pos: -18.5,43.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeSensorWaste + entities: + - uid: 14937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,30.5 + parent: 60 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 47 @@ -76303,7 +76571,7 @@ entities: pos: -36.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 88 components: - type: Transform @@ -76311,7 +76579,7 @@ entities: pos: -32.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 98 components: - type: Transform @@ -76319,7 +76587,7 @@ entities: pos: -21.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 133 components: - type: Transform @@ -76327,14 +76595,14 @@ entities: pos: 23.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 171 components: - type: Transform pos: 44.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 195 components: - type: Transform @@ -76342,7 +76610,7 @@ entities: pos: 39.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 196 components: - type: Transform @@ -76350,7 +76618,7 @@ entities: pos: 40.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 198 components: - type: Transform @@ -76358,7 +76626,7 @@ entities: pos: 41.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 199 components: - type: Transform @@ -76366,7 +76634,7 @@ entities: pos: 42.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 202 components: - type: Transform @@ -76374,7 +76642,7 @@ entities: pos: 23.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 212 components: - type: Transform @@ -76382,7 +76650,7 @@ entities: pos: 21.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 221 components: - type: Transform @@ -76390,7 +76658,7 @@ entities: pos: 20.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 224 components: - type: Transform @@ -76398,7 +76666,7 @@ entities: pos: 21.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 272 components: - type: Transform @@ -76406,7 +76674,7 @@ entities: pos: 21.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 293 components: - type: Transform @@ -76414,7 +76682,7 @@ entities: pos: 20.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 294 components: - type: Transform @@ -76422,7 +76690,7 @@ entities: pos: 27.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 299 components: - type: Transform @@ -76430,7 +76698,7 @@ entities: pos: 21.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 301 components: - type: Transform @@ -76438,7 +76706,7 @@ entities: pos: 27.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 302 components: - type: Transform @@ -76446,7 +76714,7 @@ entities: pos: 23.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 305 components: - type: Transform @@ -76454,7 +76722,7 @@ entities: pos: 24.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 310 components: - type: Transform @@ -76462,7 +76730,7 @@ entities: pos: 26.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 312 components: - type: Transform @@ -76470,7 +76738,7 @@ entities: pos: 23.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 318 components: - type: Transform @@ -76478,7 +76746,7 @@ entities: pos: 27.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 360 components: - type: Transform @@ -76486,7 +76754,7 @@ entities: pos: 21.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 361 components: - type: Transform @@ -76494,105 +76762,105 @@ entities: pos: 25.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 412 components: - type: Transform pos: 1.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 413 components: - type: Transform pos: 1.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 414 components: - type: Transform pos: 1.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 415 components: - type: Transform pos: 1.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 416 components: - type: Transform pos: 1.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 418 components: - type: Transform pos: 1.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 420 components: - type: Transform pos: -0.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 421 components: - type: Transform pos: -0.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 422 components: - type: Transform pos: -0.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 423 components: - type: Transform pos: -0.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 424 components: - type: Transform pos: -0.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 425 components: - type: Transform pos: -0.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 427 components: - type: Transform pos: -0.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 440 components: - type: Transform pos: 44.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 462 components: - type: Transform @@ -76600,7 +76868,7 @@ entities: pos: 1.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 463 components: - type: Transform @@ -76608,14 +76876,14 @@ entities: pos: 0.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 465 components: - type: Transform pos: 45.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 468 components: - type: Transform @@ -76623,7 +76891,7 @@ entities: pos: -0.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 469 components: - type: Transform @@ -76631,7 +76899,7 @@ entities: pos: -1.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 470 components: - type: Transform @@ -76639,7 +76907,7 @@ entities: pos: -2.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 471 components: - type: Transform @@ -76647,7 +76915,7 @@ entities: pos: 2.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 472 components: - type: Transform @@ -76655,35 +76923,35 @@ entities: pos: 3.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 475 components: - type: Transform pos: 1.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 476 components: - type: Transform pos: 1.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 477 components: - type: Transform pos: 1.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 478 components: - type: Transform pos: 1.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 480 components: - type: Transform @@ -76691,7 +76959,7 @@ entities: pos: -0.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 481 components: - type: Transform @@ -76699,7 +76967,7 @@ entities: pos: -0.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 484 components: - type: Transform @@ -76707,7 +76975,7 @@ entities: pos: -0.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 485 components: - type: Transform @@ -76715,7 +76983,7 @@ entities: pos: -0.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 486 components: - type: Transform @@ -76723,7 +76991,7 @@ entities: pos: -0.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 495 components: - type: Transform @@ -76731,7 +76999,7 @@ entities: pos: -2.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 496 components: - type: Transform @@ -76739,7 +77007,7 @@ entities: pos: -1.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 505 components: - type: Transform @@ -76747,7 +77015,7 @@ entities: pos: 0.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 506 components: - type: Transform @@ -76755,7 +77023,7 @@ entities: pos: 1.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 507 components: - type: Transform @@ -76763,7 +77031,7 @@ entities: pos: 2.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 509 components: - type: Transform @@ -76771,7 +77039,7 @@ entities: pos: 4.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 510 components: - type: Transform @@ -76779,7 +77047,7 @@ entities: pos: 4.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 512 components: - type: Transform @@ -76787,7 +77055,7 @@ entities: pos: -3.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 532 components: - type: Transform @@ -76795,7 +77063,7 @@ entities: pos: 43.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 618 components: - type: Transform @@ -76803,7 +77071,7 @@ entities: pos: -32.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 619 components: - type: Transform @@ -76811,14 +77079,14 @@ entities: pos: -31.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 632 components: - type: Transform pos: -14.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 716 components: - type: Transform @@ -76826,7 +77094,7 @@ entities: pos: 13.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 720 components: - type: Transform @@ -76834,21 +77102,21 @@ entities: pos: -24.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 735 components: - type: Transform pos: 30.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 764 components: - type: Transform pos: -27.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 794 components: - type: Transform @@ -76856,7 +77124,7 @@ entities: pos: -15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 835 components: - type: Transform @@ -76864,21 +77132,21 @@ entities: pos: -32.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 874 components: - type: Transform pos: -3.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 875 components: - type: Transform pos: -3.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 879 components: - type: Transform @@ -76886,7 +77154,7 @@ entities: pos: -7.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 880 components: - type: Transform @@ -76894,7 +77162,7 @@ entities: pos: -6.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 881 components: - type: Transform @@ -76902,7 +77170,7 @@ entities: pos: -5.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 882 components: - type: Transform @@ -76910,7 +77178,7 @@ entities: pos: -4.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 883 components: - type: Transform @@ -76918,7 +77186,7 @@ entities: pos: -4.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 884 components: - type: Transform @@ -76926,7 +77194,7 @@ entities: pos: -8.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 885 components: - type: Transform @@ -76934,7 +77202,7 @@ entities: pos: -8.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 886 components: - type: Transform @@ -76942,7 +77210,7 @@ entities: pos: -9.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 888 components: - type: Transform @@ -76950,7 +77218,7 @@ entities: pos: -11.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 889 components: - type: Transform @@ -76958,14 +77226,14 @@ entities: pos: -12.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 890 components: - type: Transform pos: -9.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 891 components: - type: Transform @@ -76973,7 +77241,7 @@ entities: pos: -4.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 892 components: - type: Transform @@ -76981,7 +77249,7 @@ entities: pos: -5.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 893 components: - type: Transform @@ -76989,7 +77257,7 @@ entities: pos: -6.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 894 components: - type: Transform @@ -76997,7 +77265,7 @@ entities: pos: -7.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 897 components: - type: Transform @@ -77005,7 +77273,7 @@ entities: pos: -10.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 899 components: - type: Transform @@ -77013,7 +77281,7 @@ entities: pos: -11.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 900 components: - type: Transform @@ -77021,7 +77289,7 @@ entities: pos: -12.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 901 components: - type: Transform @@ -77029,7 +77297,7 @@ entities: pos: -13.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 903 components: - type: Transform @@ -77037,42 +77305,42 @@ entities: pos: -14.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 905 components: - type: Transform pos: -9.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 906 components: - type: Transform pos: -9.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 908 components: - type: Transform pos: -3.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 909 components: - type: Transform pos: -3.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 917 components: - type: Transform pos: 30.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 950 components: - type: Transform @@ -77080,7 +77348,7 @@ entities: pos: 42.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 951 components: - type: Transform @@ -77088,7 +77356,7 @@ entities: pos: 44.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 961 components: - type: Transform @@ -77096,7 +77364,7 @@ entities: pos: -13.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 991 components: - type: Transform @@ -77104,7 +77372,7 @@ entities: pos: -16.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 996 components: - type: Transform @@ -77112,7 +77380,7 @@ entities: pos: 14.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1029 components: - type: Transform @@ -77120,7 +77388,7 @@ entities: pos: 5.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1030 components: - type: Transform @@ -77128,7 +77396,7 @@ entities: pos: 6.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1031 components: - type: Transform @@ -77136,7 +77404,7 @@ entities: pos: 7.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1032 components: - type: Transform @@ -77144,7 +77412,7 @@ entities: pos: 8.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1033 components: - type: Transform @@ -77152,7 +77420,7 @@ entities: pos: 9.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1034 components: - type: Transform @@ -77160,7 +77428,7 @@ entities: pos: 10.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1035 components: - type: Transform @@ -77168,7 +77436,7 @@ entities: pos: 11.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1037 components: - type: Transform @@ -77176,7 +77444,7 @@ entities: pos: 13.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1038 components: - type: Transform @@ -77184,7 +77452,7 @@ entities: pos: 14.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1039 components: - type: Transform @@ -77192,7 +77460,7 @@ entities: pos: 15.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1041 components: - type: Transform @@ -77200,7 +77468,7 @@ entities: pos: 5.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1042 components: - type: Transform @@ -77208,7 +77476,7 @@ entities: pos: 6.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1044 components: - type: Transform @@ -77216,7 +77484,7 @@ entities: pos: 8.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1046 components: - type: Transform @@ -77224,7 +77492,7 @@ entities: pos: 10.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1048 components: - type: Transform @@ -77232,7 +77500,7 @@ entities: pos: 12.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1049 components: - type: Transform @@ -77240,7 +77508,7 @@ entities: pos: 13.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1050 components: - type: Transform @@ -77248,7 +77516,7 @@ entities: pos: 14.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1053 components: - type: Transform @@ -77256,7 +77524,7 @@ entities: pos: 17.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1054 components: - type: Transform @@ -77264,7 +77532,7 @@ entities: pos: 17.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1055 components: - type: Transform @@ -77272,7 +77540,7 @@ entities: pos: 15.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1056 components: - type: Transform @@ -77280,7 +77548,7 @@ entities: pos: 17.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1057 components: - type: Transform @@ -77288,7 +77556,7 @@ entities: pos: 17.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1058 components: - type: Transform @@ -77296,7 +77564,7 @@ entities: pos: 15.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1060 components: - type: Transform @@ -77304,7 +77572,7 @@ entities: pos: 17.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1062 components: - type: Transform @@ -77312,7 +77580,7 @@ entities: pos: 15.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1063 components: - type: Transform @@ -77320,7 +77588,7 @@ entities: pos: 15.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1064 components: - type: Transform @@ -77328,7 +77596,7 @@ entities: pos: 17.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1065 components: - type: Transform @@ -77336,7 +77604,7 @@ entities: pos: 17.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1067 components: - type: Transform @@ -77344,7 +77612,7 @@ entities: pos: 15.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1068 components: - type: Transform @@ -77352,7 +77620,7 @@ entities: pos: 17.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1069 components: - type: Transform @@ -77360,7 +77628,7 @@ entities: pos: 17.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1070 components: - type: Transform @@ -77368,7 +77636,7 @@ entities: pos: 15.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1073 components: - type: Transform @@ -77376,7 +77644,7 @@ entities: pos: 17.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1076 components: - type: Transform @@ -77384,7 +77652,7 @@ entities: pos: 17.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1078 components: - type: Transform @@ -77392,7 +77660,7 @@ entities: pos: 15.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1080 components: - type: Transform @@ -77400,7 +77668,7 @@ entities: pos: 17.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1081 components: - type: Transform @@ -77408,7 +77676,7 @@ entities: pos: 17.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1082 components: - type: Transform @@ -77416,7 +77684,7 @@ entities: pos: 15.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1083 components: - type: Transform @@ -77424,7 +77692,7 @@ entities: pos: 15.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1084 components: - type: Transform @@ -77432,7 +77700,7 @@ entities: pos: 17.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1085 components: - type: Transform @@ -77440,7 +77708,7 @@ entities: pos: 17.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1086 components: - type: Transform @@ -77448,7 +77716,7 @@ entities: pos: 15.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1087 components: - type: Transform @@ -77456,7 +77724,7 @@ entities: pos: 15.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1088 components: - type: Transform @@ -77464,7 +77732,7 @@ entities: pos: 17.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1089 components: - type: Transform @@ -77472,7 +77740,7 @@ entities: pos: 17.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1090 components: - type: Transform @@ -77480,7 +77748,7 @@ entities: pos: 15.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1091 components: - type: Transform @@ -77488,14 +77756,14 @@ entities: pos: 15.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1092 components: - type: Transform pos: 17.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1093 components: - type: Transform @@ -77503,7 +77771,7 @@ entities: pos: 15.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1094 components: - type: Transform @@ -77511,14 +77779,14 @@ entities: pos: 17.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1095 components: - type: Transform pos: 15.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1097 components: - type: Transform @@ -77526,7 +77794,7 @@ entities: pos: 15.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1098 components: - type: Transform @@ -77534,7 +77802,7 @@ entities: pos: 17.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1100 components: - type: Transform @@ -77542,7 +77810,7 @@ entities: pos: 17.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1101 components: - type: Transform @@ -77550,7 +77818,7 @@ entities: pos: 15.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1102 components: - type: Transform @@ -77558,7 +77826,7 @@ entities: pos: 17.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1103 components: - type: Transform @@ -77566,7 +77834,7 @@ entities: pos: 15.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1104 components: - type: Transform @@ -77574,7 +77842,7 @@ entities: pos: 17.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1105 components: - type: Transform @@ -77582,7 +77850,7 @@ entities: pos: 15.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1106 components: - type: Transform @@ -77590,7 +77858,7 @@ entities: pos: 17.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1107 components: - type: Transform @@ -77598,7 +77866,7 @@ entities: pos: 15.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1108 components: - type: Transform @@ -77606,7 +77874,7 @@ entities: pos: 17.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1109 components: - type: Transform @@ -77614,7 +77882,7 @@ entities: pos: 15.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1110 components: - type: Transform @@ -77622,7 +77890,7 @@ entities: pos: 17.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1111 components: - type: Transform @@ -77630,7 +77898,7 @@ entities: pos: 15.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1112 components: - type: Transform @@ -77638,7 +77906,7 @@ entities: pos: 17.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1113 components: - type: Transform @@ -77646,7 +77914,7 @@ entities: pos: -15.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1119 components: - type: Transform @@ -77654,7 +77922,7 @@ entities: pos: -14.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1120 components: - type: Transform @@ -77662,7 +77930,7 @@ entities: pos: -14.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1123 components: - type: Transform @@ -77670,7 +77938,7 @@ entities: pos: -14.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1124 components: - type: Transform @@ -77678,7 +77946,7 @@ entities: pos: -14.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1125 components: - type: Transform @@ -77686,14 +77954,14 @@ entities: pos: -16.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1126 components: - type: Transform pos: -16.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1127 components: - type: Transform @@ -77701,7 +77969,7 @@ entities: pos: -14.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1129 components: - type: Transform @@ -77709,7 +77977,7 @@ entities: pos: -16.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1130 components: - type: Transform @@ -77717,7 +77985,7 @@ entities: pos: -16.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1131 components: - type: Transform @@ -77725,7 +77993,7 @@ entities: pos: -14.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1132 components: - type: Transform @@ -77733,7 +78001,7 @@ entities: pos: -14.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1134 components: - type: Transform @@ -77741,7 +78009,7 @@ entities: pos: -16.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1135 components: - type: Transform @@ -77749,7 +78017,7 @@ entities: pos: -16.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1137 components: - type: Transform @@ -77757,7 +78025,7 @@ entities: pos: -14.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1138 components: - type: Transform @@ -77765,7 +78033,7 @@ entities: pos: -14.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1139 components: - type: Transform @@ -77773,7 +78041,7 @@ entities: pos: -16.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1140 components: - type: Transform @@ -77781,7 +78049,7 @@ entities: pos: -16.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1141 components: - type: Transform @@ -77789,7 +78057,7 @@ entities: pos: -14.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1142 components: - type: Transform @@ -77797,7 +78065,7 @@ entities: pos: -14.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1143 components: - type: Transform @@ -77805,7 +78073,7 @@ entities: pos: -16.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1144 components: - type: Transform @@ -77813,7 +78081,7 @@ entities: pos: -16.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1145 components: - type: Transform @@ -77821,7 +78089,7 @@ entities: pos: -14.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1146 components: - type: Transform @@ -77829,7 +78097,7 @@ entities: pos: -14.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1147 components: - type: Transform @@ -77837,7 +78105,7 @@ entities: pos: -16.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1149 components: - type: Transform @@ -77845,7 +78113,7 @@ entities: pos: -14.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1151 components: - type: Transform @@ -77853,7 +78121,7 @@ entities: pos: -16.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1152 components: - type: Transform @@ -77861,7 +78129,7 @@ entities: pos: -16.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1153 components: - type: Transform @@ -77869,7 +78137,7 @@ entities: pos: -14.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1154 components: - type: Transform @@ -77877,7 +78145,7 @@ entities: pos: -14.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1155 components: - type: Transform @@ -77885,7 +78153,7 @@ entities: pos: -16.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1156 components: - type: Transform @@ -77893,7 +78161,7 @@ entities: pos: -16.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1157 components: - type: Transform @@ -77901,7 +78169,7 @@ entities: pos: -14.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1158 components: - type: Transform @@ -77909,7 +78177,7 @@ entities: pos: -14.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1159 components: - type: Transform @@ -77917,7 +78185,7 @@ entities: pos: -16.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1160 components: - type: Transform @@ -77925,7 +78193,7 @@ entities: pos: -16.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1161 components: - type: Transform @@ -77933,7 +78201,7 @@ entities: pos: -14.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1162 components: - type: Transform @@ -77941,7 +78209,7 @@ entities: pos: -14.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1163 components: - type: Transform @@ -77949,7 +78217,7 @@ entities: pos: -16.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1164 components: - type: Transform @@ -77957,7 +78225,7 @@ entities: pos: -16.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1165 components: - type: Transform @@ -77965,7 +78233,7 @@ entities: pos: -14.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1166 components: - type: Transform @@ -77973,7 +78241,7 @@ entities: pos: -14.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1168 components: - type: Transform @@ -77981,7 +78249,7 @@ entities: pos: -16.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1169 components: - type: Transform @@ -77989,7 +78257,7 @@ entities: pos: -14.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1171 components: - type: Transform @@ -77997,7 +78265,7 @@ entities: pos: -16.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1172 components: - type: Transform @@ -78005,7 +78273,7 @@ entities: pos: -16.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1173 components: - type: Transform @@ -78013,7 +78281,7 @@ entities: pos: -14.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1176 components: - type: Transform @@ -78021,28 +78289,28 @@ entities: pos: -17.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1214 components: - type: Transform pos: -14.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1215 components: - type: Transform pos: -16.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1216 components: - type: Transform pos: -14.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1218 components: - type: Transform @@ -78050,14 +78318,14 @@ entities: pos: -13.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1219 components: - type: Transform pos: -16.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1220 components: - type: Transform @@ -78065,7 +78333,7 @@ entities: pos: -12.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1221 components: - type: Transform @@ -78073,7 +78341,7 @@ entities: pos: -12.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1222 components: - type: Transform @@ -78081,7 +78349,7 @@ entities: pos: -11.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1223 components: - type: Transform @@ -78089,7 +78357,7 @@ entities: pos: -11.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1224 components: - type: Transform @@ -78097,7 +78365,7 @@ entities: pos: -10.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1227 components: - type: Transform @@ -78105,7 +78373,7 @@ entities: pos: -9.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1228 components: - type: Transform @@ -78113,7 +78381,7 @@ entities: pos: -8.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1231 components: - type: Transform @@ -78121,7 +78389,7 @@ entities: pos: -15.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1257 components: - type: Transform @@ -78129,7 +78397,7 @@ entities: pos: -18.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1260 components: - type: Transform @@ -78137,7 +78405,7 @@ entities: pos: 9.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1261 components: - type: Transform @@ -78145,7 +78413,7 @@ entities: pos: 10.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1263 components: - type: Transform @@ -78153,7 +78421,7 @@ entities: pos: 11.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1264 components: - type: Transform @@ -78161,7 +78429,7 @@ entities: pos: 11.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1266 components: - type: Transform @@ -78169,7 +78437,7 @@ entities: pos: 12.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1267 components: - type: Transform @@ -78177,7 +78445,7 @@ entities: pos: 13.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1268 components: - type: Transform @@ -78185,7 +78453,7 @@ entities: pos: 14.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1270 components: - type: Transform @@ -78193,7 +78461,7 @@ entities: pos: 14.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1271 components: - type: Transform @@ -78201,7 +78469,7 @@ entities: pos: 15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1272 components: - type: Transform @@ -78209,7 +78477,7 @@ entities: pos: 16.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1274 components: - type: Transform @@ -78217,7 +78485,7 @@ entities: pos: 17.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1279 components: - type: Transform @@ -78225,14 +78493,14 @@ entities: pos: -48.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1281 components: - type: Transform pos: -16.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1306 components: - type: Transform @@ -78240,7 +78508,7 @@ entities: pos: -17.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1308 components: - type: Transform @@ -78248,7 +78516,7 @@ entities: pos: -1.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1359 components: - type: Transform @@ -78263,112 +78531,112 @@ entities: pos: 3.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1390 components: - type: Transform pos: 3.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1391 components: - type: Transform pos: 3.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1395 components: - type: Transform pos: 4.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1396 components: - type: Transform pos: 4.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1399 components: - type: Transform pos: 7.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1400 components: - type: Transform pos: 7.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1401 components: - type: Transform pos: 7.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1402 components: - type: Transform pos: 7.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1403 components: - type: Transform pos: 7.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1404 components: - type: Transform pos: 7.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1413 components: - type: Transform pos: -0.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1414 components: - type: Transform pos: -0.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1415 components: - type: Transform pos: 1.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1416 components: - type: Transform pos: 1.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1418 components: - type: Transform pos: 1.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1420 components: - type: Transform @@ -78376,7 +78644,7 @@ entities: pos: -0.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1421 components: - type: Transform @@ -78384,7 +78652,7 @@ entities: pos: -0.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1422 components: - type: Transform @@ -78392,7 +78660,7 @@ entities: pos: -0.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1423 components: - type: Transform @@ -78400,7 +78668,7 @@ entities: pos: -0.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1424 components: - type: Transform @@ -78408,7 +78676,7 @@ entities: pos: -0.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1425 components: - type: Transform @@ -78416,7 +78684,7 @@ entities: pos: 1.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1426 components: - type: Transform @@ -78424,7 +78692,7 @@ entities: pos: 1.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1427 components: - type: Transform @@ -78432,7 +78700,7 @@ entities: pos: 1.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1428 components: - type: Transform @@ -78440,7 +78708,7 @@ entities: pos: 1.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1497 components: - type: Transform @@ -78448,14 +78716,14 @@ entities: pos: -20.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1500 components: - type: Transform pos: -36.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1505 components: - type: Transform @@ -78463,7 +78731,7 @@ entities: pos: -21.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1506 components: - type: Transform @@ -78471,7 +78739,7 @@ entities: pos: -16.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1519 components: - type: Transform @@ -78479,7 +78747,7 @@ entities: pos: -22.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1526 components: - type: Transform @@ -78487,7 +78755,7 @@ entities: pos: -21.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1531 components: - type: Transform @@ -78495,7 +78763,7 @@ entities: pos: -24.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1588 components: - type: Transform @@ -78503,21 +78771,21 @@ entities: pos: -18.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1592 components: - type: Transform pos: -28.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1601 components: - type: Transform pos: -25.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1602 components: - type: Transform @@ -78525,7 +78793,7 @@ entities: pos: -16.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1605 components: - type: Transform @@ -78533,7 +78801,7 @@ entities: pos: -25.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1606 components: - type: Transform @@ -78541,7 +78809,7 @@ entities: pos: -27.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1607 components: - type: Transform @@ -78549,7 +78817,7 @@ entities: pos: -26.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1609 components: - type: Transform @@ -78557,7 +78825,7 @@ entities: pos: -23.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1612 components: - type: Transform @@ -78565,7 +78833,7 @@ entities: pos: -26.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1613 components: - type: Transform @@ -78573,7 +78841,7 @@ entities: pos: -27.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1614 components: - type: Transform @@ -78581,7 +78849,7 @@ entities: pos: -28.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1619 components: - type: Transform @@ -78589,7 +78857,7 @@ entities: pos: -32.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1629 components: - type: Transform @@ -78597,7 +78865,7 @@ entities: pos: -16.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1630 components: - type: Transform @@ -78605,7 +78873,7 @@ entities: pos: -16.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1641 components: - type: Transform @@ -78613,21 +78881,21 @@ entities: pos: 4.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1657 components: - type: Transform pos: -25.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1692 components: - type: Transform pos: -36.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1694 components: - type: Transform @@ -78635,7 +78903,7 @@ entities: pos: -17.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1705 components: - type: Transform @@ -78643,7 +78911,7 @@ entities: pos: -25.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1712 components: - type: Transform @@ -78651,7 +78919,7 @@ entities: pos: -29.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1713 components: - type: Transform @@ -78659,7 +78927,7 @@ entities: pos: -30.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1723 components: - type: Transform @@ -78667,14 +78935,14 @@ entities: pos: -20.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1730 components: - type: Transform pos: -38.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1733 components: - type: Transform @@ -78682,7 +78950,7 @@ entities: pos: -24.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1747 components: - type: Transform @@ -78690,7 +78958,7 @@ entities: pos: -33.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1749 components: - type: Transform @@ -78698,7 +78966,7 @@ entities: pos: -28.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1750 components: - type: Transform @@ -78706,7 +78974,7 @@ entities: pos: -31.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1751 components: - type: Transform @@ -78714,7 +78982,7 @@ entities: pos: -30.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1752 components: - type: Transform @@ -78722,14 +78990,14 @@ entities: pos: -17.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1753 components: - type: Transform pos: -38.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1754 components: - type: Transform @@ -78737,14 +79005,14 @@ entities: pos: -30.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1755 components: - type: Transform pos: -38.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1757 components: - type: Transform @@ -78752,28 +79020,28 @@ entities: pos: -29.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1769 components: - type: Transform pos: -36.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1770 components: - type: Transform pos: -36.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1772 components: - type: Transform pos: -36.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1773 components: - type: Transform @@ -78781,7 +79049,7 @@ entities: pos: -26.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1774 components: - type: Transform @@ -78789,7 +79057,7 @@ entities: pos: -25.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1776 components: - type: Transform @@ -78797,49 +79065,49 @@ entities: pos: -20.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1777 components: - type: Transform pos: -36.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1778 components: - type: Transform pos: -38.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1779 components: - type: Transform pos: -36.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1782 components: - type: Transform pos: -38.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1783 components: - type: Transform pos: -36.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1784 components: - type: Transform pos: -36.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1785 components: - type: Transform @@ -78847,7 +79115,7 @@ entities: pos: -23.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1786 components: - type: Transform @@ -78855,14 +79123,14 @@ entities: pos: -18.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1788 components: - type: Transform pos: -38.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1791 components: - type: Transform @@ -78870,7 +79138,7 @@ entities: pos: -31.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1797 components: - type: Transform @@ -78878,21 +79146,21 @@ entities: pos: -24.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1809 components: - type: Transform pos: -31.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1825 components: - type: Transform pos: -38.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1826 components: - type: Transform @@ -78900,28 +79168,28 @@ entities: pos: -30.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1827 components: - type: Transform pos: -38.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1828 components: - type: Transform pos: -38.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1829 components: - type: Transform pos: -36.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1834 components: - type: Transform @@ -78929,14 +79197,14 @@ entities: pos: -26.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1837 components: - type: Transform pos: -36.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1839 components: - type: Transform @@ -78944,7 +79212,7 @@ entities: pos: -24.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1840 components: - type: Transform @@ -78952,7 +79220,7 @@ entities: pos: -19.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1841 components: - type: Transform @@ -78960,14 +79228,14 @@ entities: pos: -34.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1842 components: - type: Transform pos: -38.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1844 components: - type: Transform @@ -78975,7 +79243,7 @@ entities: pos: -19.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1851 components: - type: Transform @@ -78983,7 +79251,7 @@ entities: pos: -21.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1855 components: - type: Transform @@ -78991,42 +79259,42 @@ entities: pos: -32.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1874 components: - type: Transform pos: -38.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1875 components: - type: Transform pos: -38.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1876 components: - type: Transform pos: -38.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1877 components: - type: Transform pos: -38.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1878 components: - type: Transform pos: -38.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1879 components: - type: Transform @@ -79034,14 +79302,14 @@ entities: pos: -35.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1880 components: - type: Transform pos: -36.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1890 components: - type: Transform @@ -79049,28 +79317,28 @@ entities: pos: -36.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1894 components: - type: Transform pos: -24.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1895 components: - type: Transform pos: -38.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1896 components: - type: Transform pos: -36.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1897 components: - type: Transform @@ -79078,7 +79346,7 @@ entities: pos: -32.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1898 components: - type: Transform @@ -79086,7 +79354,7 @@ entities: pos: -35.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1899 components: - type: Transform @@ -79094,7 +79362,7 @@ entities: pos: -31.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1900 components: - type: Transform @@ -79102,7 +79370,7 @@ entities: pos: -34.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1901 components: - type: Transform @@ -79110,7 +79378,7 @@ entities: pos: -28.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1903 components: - type: Transform @@ -79118,7 +79386,7 @@ entities: pos: -25.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1906 components: - type: Transform @@ -79126,7 +79394,7 @@ entities: pos: -24.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1909 components: - type: Transform @@ -79134,7 +79402,7 @@ entities: pos: -29.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1910 components: - type: Transform @@ -79142,7 +79410,7 @@ entities: pos: -30.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1913 components: - type: Transform @@ -79150,7 +79418,7 @@ entities: pos: -32.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1914 components: - type: Transform @@ -79158,7 +79426,7 @@ entities: pos: -30.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1915 components: - type: Transform @@ -79166,7 +79434,7 @@ entities: pos: -20.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1916 components: - type: Transform @@ -79174,7 +79442,7 @@ entities: pos: -21.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1917 components: - type: Transform @@ -79182,7 +79450,7 @@ entities: pos: -31.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1918 components: - type: Transform @@ -79190,7 +79458,7 @@ entities: pos: -32.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1920 components: - type: Transform @@ -79198,14 +79466,14 @@ entities: pos: -21.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1921 components: - type: Transform pos: -21.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1923 components: - type: Transform @@ -79213,7 +79481,7 @@ entities: pos: -21.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1925 components: - type: Transform @@ -79221,7 +79489,7 @@ entities: pos: -20.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1929 components: - type: Transform @@ -79229,7 +79497,7 @@ entities: pos: -32.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1934 components: - type: Transform @@ -79237,14 +79505,14 @@ entities: pos: -23.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1935 components: - type: Transform pos: -21.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1936 components: - type: Transform @@ -79252,7 +79520,7 @@ entities: pos: -22.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1943 components: - type: Transform @@ -79260,7 +79528,7 @@ entities: pos: -24.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1945 components: - type: Transform @@ -79268,7 +79536,7 @@ entities: pos: -28.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1946 components: - type: Transform @@ -79276,7 +79544,7 @@ entities: pos: -27.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1958 components: - type: Transform @@ -79284,7 +79552,7 @@ entities: pos: -21.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1961 components: - type: Transform @@ -79292,7 +79560,7 @@ entities: pos: -21.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1965 components: - type: Transform @@ -79300,7 +79568,7 @@ entities: pos: -29.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1966 components: - type: Transform @@ -79308,7 +79576,7 @@ entities: pos: -23.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1967 components: - type: Transform @@ -79316,14 +79584,14 @@ entities: pos: -23.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1968 components: - type: Transform pos: -22.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1969 components: - type: Transform @@ -79331,7 +79599,7 @@ entities: pos: -32.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1970 components: - type: Transform @@ -79339,14 +79607,14 @@ entities: pos: -29.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1974 components: - type: Transform pos: -30.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1975 components: - type: Transform @@ -79354,7 +79622,7 @@ entities: pos: -21.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1976 components: - type: Transform @@ -79362,7 +79630,7 @@ entities: pos: -21.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1977 components: - type: Transform @@ -79370,7 +79638,7 @@ entities: pos: -21.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1981 components: - type: Transform @@ -79378,21 +79646,21 @@ entities: pos: -25.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1983 components: - type: Transform pos: -31.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1985 components: - type: Transform pos: -31.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1990 components: - type: Transform @@ -79400,7 +79668,7 @@ entities: pos: -31.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1991 components: - type: Transform @@ -79408,14 +79676,14 @@ entities: pos: -33.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1992 components: - type: Transform pos: -38.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1993 components: - type: Transform @@ -79423,21 +79691,21 @@ entities: pos: -22.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1995 components: - type: Transform pos: -36.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1997 components: - type: Transform pos: -38.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1998 components: - type: Transform @@ -79445,28 +79713,28 @@ entities: pos: -37.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1999 components: - type: Transform pos: -36.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2000 components: - type: Transform pos: -38.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2001 components: - type: Transform pos: -38.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2006 components: - type: Transform @@ -79474,7 +79742,7 @@ entities: pos: -27.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2007 components: - type: Transform @@ -79482,14 +79750,14 @@ entities: pos: -28.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2010 components: - type: Transform pos: -24.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2011 components: - type: Transform @@ -79497,7 +79765,7 @@ entities: pos: -26.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2013 components: - type: Transform @@ -79505,7 +79773,7 @@ entities: pos: -23.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2016 components: - type: Transform @@ -79513,21 +79781,21 @@ entities: pos: -36.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2020 components: - type: Transform pos: -23.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2021 components: - type: Transform pos: -23.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2023 components: - type: Transform @@ -79535,7 +79803,7 @@ entities: pos: -24.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2028 components: - type: Transform @@ -79543,7 +79811,7 @@ entities: pos: -24.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2029 components: - type: Transform @@ -79551,49 +79819,49 @@ entities: pos: -23.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2031 components: - type: Transform pos: -23.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2032 components: - type: Transform pos: -24.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2033 components: - type: Transform pos: -24.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2107 components: - type: Transform pos: -36.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2108 components: - type: Transform pos: -36.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2109 components: - type: Transform pos: -36.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2110 components: - type: Transform @@ -79601,35 +79869,35 @@ entities: pos: -39.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2111 components: - type: Transform pos: -38.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2112 components: - type: Transform pos: -36.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2122 components: - type: Transform pos: -36.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2123 components: - type: Transform pos: -38.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2124 components: - type: Transform @@ -79637,7 +79905,7 @@ entities: pos: -18.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2125 components: - type: Transform @@ -79645,7 +79913,7 @@ entities: pos: -20.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2126 components: - type: Transform @@ -79653,7 +79921,7 @@ entities: pos: -23.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2128 components: - type: Transform @@ -79661,7 +79929,7 @@ entities: pos: -27.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2129 components: - type: Transform @@ -79669,7 +79937,7 @@ entities: pos: -28.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2131 components: - type: Transform @@ -79677,7 +79945,7 @@ entities: pos: -20.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2159 components: - type: Transform @@ -79685,7 +79953,7 @@ entities: pos: 43.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2161 components: - type: Transform @@ -79693,56 +79961,56 @@ entities: pos: -22.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2194 components: - type: Transform pos: 15.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2195 components: - type: Transform pos: 15.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2196 components: - type: Transform pos: 15.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2197 components: - type: Transform pos: 15.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2198 components: - type: Transform pos: 15.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2201 components: - type: Transform pos: 16.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2202 components: - type: Transform pos: 16.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2204 components: - type: Transform @@ -79750,7 +80018,7 @@ entities: pos: 34.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2206 components: - type: Transform @@ -79758,7 +80026,7 @@ entities: pos: 33.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2209 components: - type: Transform @@ -79766,7 +80034,7 @@ entities: pos: 34.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2288 components: - type: Transform @@ -79774,21 +80042,21 @@ entities: pos: -4.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2356 components: - type: Transform pos: 32.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2357 components: - type: Transform pos: 32.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2362 components: - type: Transform @@ -79796,7 +80064,7 @@ entities: pos: 23.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2363 components: - type: Transform @@ -79804,7 +80072,7 @@ entities: pos: 23.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2364 components: - type: Transform @@ -79820,7 +80088,7 @@ entities: pos: 22.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2367 components: - type: Transform @@ -79828,7 +80096,7 @@ entities: pos: 23.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2372 components: - type: Transform @@ -79836,7 +80104,7 @@ entities: pos: 23.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2373 components: - type: Transform @@ -79844,7 +80112,7 @@ entities: pos: 25.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2460 components: - type: Transform @@ -79852,7 +80120,7 @@ entities: pos: 16.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2461 components: - type: Transform @@ -79860,7 +80128,7 @@ entities: pos: 17.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2462 components: - type: Transform @@ -79868,7 +80136,7 @@ entities: pos: 18.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2463 components: - type: Transform @@ -79876,7 +80144,7 @@ entities: pos: 19.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2464 components: - type: Transform @@ -79884,7 +80152,7 @@ entities: pos: 20.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2465 components: - type: Transform @@ -79892,7 +80160,7 @@ entities: pos: 18.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2466 components: - type: Transform @@ -79900,7 +80168,7 @@ entities: pos: 19.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2467 components: - type: Transform @@ -79908,7 +80176,7 @@ entities: pos: 20.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2468 components: - type: Transform @@ -79916,7 +80184,7 @@ entities: pos: 21.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2469 components: - type: Transform @@ -79924,7 +80192,7 @@ entities: pos: 22.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2471 components: - type: Transform @@ -79932,7 +80200,7 @@ entities: pos: 24.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2472 components: - type: Transform @@ -79940,7 +80208,7 @@ entities: pos: 25.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2474 components: - type: Transform @@ -79948,7 +80216,7 @@ entities: pos: 22.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2475 components: - type: Transform @@ -79956,7 +80224,7 @@ entities: pos: 23.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2476 components: - type: Transform @@ -79964,7 +80232,7 @@ entities: pos: 24.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2477 components: - type: Transform @@ -79972,7 +80240,7 @@ entities: pos: 25.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2478 components: - type: Transform @@ -79980,7 +80248,7 @@ entities: pos: 26.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2479 components: - type: Transform @@ -79988,7 +80256,7 @@ entities: pos: 27.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2480 components: - type: Transform @@ -79996,7 +80264,7 @@ entities: pos: 28.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2483 components: - type: Transform @@ -80004,7 +80272,7 @@ entities: pos: 31.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2484 components: - type: Transform @@ -80012,7 +80280,7 @@ entities: pos: 32.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2485 components: - type: Transform @@ -80020,7 +80288,7 @@ entities: pos: 33.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2487 components: - type: Transform @@ -80028,7 +80296,7 @@ entities: pos: 35.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2488 components: - type: Transform @@ -80036,7 +80304,7 @@ entities: pos: 36.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2489 components: - type: Transform @@ -80044,7 +80312,7 @@ entities: pos: 37.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2490 components: - type: Transform @@ -80052,7 +80320,7 @@ entities: pos: 38.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2492 components: - type: Transform @@ -80060,7 +80328,7 @@ entities: pos: 26.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2493 components: - type: Transform @@ -80068,7 +80336,7 @@ entities: pos: 27.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2494 components: - type: Transform @@ -80076,7 +80344,7 @@ entities: pos: 28.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2495 components: - type: Transform @@ -80084,7 +80352,7 @@ entities: pos: 29.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2496 components: - type: Transform @@ -80092,7 +80360,7 @@ entities: pos: 30.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2497 components: - type: Transform @@ -80100,7 +80368,7 @@ entities: pos: 31.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2500 components: - type: Transform @@ -80108,7 +80376,7 @@ entities: pos: 34.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2501 components: - type: Transform @@ -80116,7 +80384,7 @@ entities: pos: 35.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2502 components: - type: Transform @@ -80124,7 +80392,7 @@ entities: pos: 36.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2503 components: - type: Transform @@ -80132,7 +80400,7 @@ entities: pos: 37.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2504 components: - type: Transform @@ -80140,7 +80408,7 @@ entities: pos: 38.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2505 components: - type: Transform @@ -80148,7 +80416,7 @@ entities: pos: 39.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2545 components: - type: Transform @@ -80156,7 +80424,7 @@ entities: pos: 32.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2546 components: - type: Transform @@ -80164,7 +80432,7 @@ entities: pos: 30.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2547 components: - type: Transform @@ -80172,7 +80440,7 @@ entities: pos: 32.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2548 components: - type: Transform @@ -80180,7 +80448,7 @@ entities: pos: 30.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2549 components: - type: Transform @@ -80188,7 +80456,7 @@ entities: pos: 32.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2550 components: - type: Transform @@ -80196,7 +80464,7 @@ entities: pos: 30.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2554 components: - type: Transform @@ -80204,7 +80472,7 @@ entities: pos: 32.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2578 components: - type: Transform @@ -80212,7 +80480,7 @@ entities: pos: -29.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2581 components: - type: Transform @@ -80220,7 +80488,7 @@ entities: pos: -20.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2613 components: - type: Transform @@ -80228,7 +80496,7 @@ entities: pos: 29.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2638 components: - type: Transform @@ -80236,14 +80504,14 @@ entities: pos: 33.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2639 components: - type: Transform pos: 30.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2669 components: - type: Transform @@ -80251,7 +80519,7 @@ entities: pos: 19.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2670 components: - type: Transform @@ -80259,7 +80527,7 @@ entities: pos: 20.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2692 components: - type: Transform @@ -80267,49 +80535,49 @@ entities: pos: 18.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2695 components: - type: Transform pos: 40.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2696 components: - type: Transform pos: 40.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2697 components: - type: Transform pos: 40.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2698 components: - type: Transform pos: 39.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2699 components: - type: Transform pos: 39.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2700 components: - type: Transform pos: 39.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2701 components: - type: Transform @@ -80317,7 +80585,7 @@ entities: pos: 40.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2702 components: - type: Transform @@ -80325,7 +80593,7 @@ entities: pos: 41.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2703 components: - type: Transform @@ -80333,14 +80601,14 @@ entities: pos: 41.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2707 components: - type: Transform pos: 40.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2760 components: - type: Transform @@ -80348,7 +80616,7 @@ entities: pos: -30.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2783 components: - type: Transform @@ -80356,7 +80624,7 @@ entities: pos: 19.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2786 components: - type: Transform @@ -80364,7 +80632,7 @@ entities: pos: 29.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2787 components: - type: Transform @@ -80372,28 +80640,28 @@ entities: pos: 19.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2788 components: - type: Transform pos: 17.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2792 components: - type: Transform pos: -25.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2793 components: - type: Transform pos: -21.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2794 components: - type: Transform @@ -80401,7 +80669,7 @@ entities: pos: 25.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2796 components: - type: Transform @@ -80409,7 +80677,7 @@ entities: pos: 24.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2797 components: - type: Transform @@ -80417,7 +80685,7 @@ entities: pos: 26.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2798 components: - type: Transform @@ -80425,7 +80693,7 @@ entities: pos: 31.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2800 components: - type: Transform @@ -80433,7 +80701,7 @@ entities: pos: 28.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2801 components: - type: Transform @@ -80441,7 +80709,7 @@ entities: pos: 27.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2803 components: - type: Transform @@ -80449,7 +80717,7 @@ entities: pos: 25.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2804 components: - type: Transform @@ -80457,7 +80725,7 @@ entities: pos: 33.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2805 components: - type: Transform @@ -80465,28 +80733,28 @@ entities: pos: 19.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2806 components: - type: Transform pos: -25.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2807 components: - type: Transform pos: -27.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2808 components: - type: Transform pos: -27.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2810 components: - type: Transform @@ -80494,7 +80762,7 @@ entities: pos: 21.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2811 components: - type: Transform @@ -80502,7 +80770,7 @@ entities: pos: 20.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2814 components: - type: Transform @@ -80510,7 +80778,7 @@ entities: pos: 21.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2815 components: - type: Transform @@ -80518,7 +80786,7 @@ entities: pos: 26.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2816 components: - type: Transform @@ -80526,14 +80794,14 @@ entities: pos: 19.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2820 components: - type: Transform pos: 17.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2842 components: - type: Transform @@ -80541,7 +80809,7 @@ entities: pos: 28.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2843 components: - type: Transform @@ -80549,14 +80817,14 @@ entities: pos: 30.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2844 components: - type: Transform pos: 17.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2849 components: - type: Transform @@ -80564,7 +80832,7 @@ entities: pos: 16.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2860 components: - type: Transform @@ -80572,7 +80840,7 @@ entities: pos: -20.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2862 components: - type: Transform @@ -80580,7 +80848,7 @@ entities: pos: 42.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2863 components: - type: Transform @@ -80588,7 +80856,7 @@ entities: pos: 43.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2864 components: - type: Transform @@ -80596,7 +80864,7 @@ entities: pos: 44.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2867 components: - type: Transform @@ -80604,7 +80872,7 @@ entities: pos: 42.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2868 components: - type: Transform @@ -80612,14 +80880,14 @@ entities: pos: 43.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2885 components: - type: Transform pos: 45.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2899 components: - type: Transform @@ -80627,14 +80895,14 @@ entities: pos: 32.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2901 components: - type: Transform pos: 44.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2940 components: - type: Transform @@ -80642,7 +80910,7 @@ entities: pos: -24.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2980 components: - type: Transform @@ -80666,7 +80934,7 @@ entities: pos: 46.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2987 components: - type: Transform @@ -80674,7 +80942,7 @@ entities: pos: 45.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2988 components: - type: Transform @@ -80682,14 +80950,14 @@ entities: pos: 45.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2990 components: - type: Transform pos: 45.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2991 components: - type: Transform @@ -80697,7 +80965,7 @@ entities: pos: 45.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2992 components: - type: Transform @@ -80705,7 +80973,7 @@ entities: pos: 45.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2993 components: - type: Transform @@ -80713,7 +80981,7 @@ entities: pos: 45.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2994 components: - type: Transform @@ -80721,7 +80989,7 @@ entities: pos: 45.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2995 components: - type: Transform @@ -80729,7 +80997,7 @@ entities: pos: 45.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2997 components: - type: Transform @@ -80761,13 +81029,15 @@ entities: pos: 22.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3011 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-19.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3021 components: - type: Transform @@ -80807,13 +81077,7 @@ entities: pos: 46.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-20.5 - parent: 60 + color: '#990000FF' - uid: 3148 components: - type: Transform @@ -80821,7 +81085,7 @@ entities: pos: 45.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3149 components: - type: Transform @@ -80829,7 +81093,7 @@ entities: pos: -21.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3186 components: - type: Transform @@ -80837,7 +81101,7 @@ entities: pos: -23.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3187 components: - type: Transform @@ -80845,7 +81109,7 @@ entities: pos: -24.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3190 components: - type: Transform @@ -80853,7 +81117,7 @@ entities: pos: 43.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3191 components: - type: Transform @@ -80861,14 +81125,14 @@ entities: pos: 44.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3193 components: - type: Transform pos: 45.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3199 components: - type: Transform @@ -80876,7 +81140,7 @@ entities: pos: -23.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3204 components: - type: Transform @@ -80884,7 +81148,7 @@ entities: pos: -24.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3216 components: - type: Transform @@ -80892,7 +81156,7 @@ entities: pos: 45.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3217 components: - type: Transform @@ -80900,7 +81164,7 @@ entities: pos: -25.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3219 components: - type: Transform @@ -80908,140 +81172,140 @@ entities: pos: 42.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3561 components: - type: Transform pos: 45.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3562 components: - type: Transform pos: 45.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3563 components: - type: Transform pos: 45.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3564 components: - type: Transform pos: 45.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3565 components: - type: Transform pos: 45.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3566 components: - type: Transform pos: 45.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3568 components: - type: Transform pos: 44.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3569 components: - type: Transform pos: 44.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3570 components: - type: Transform pos: 44.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3571 components: - type: Transform pos: 44.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3572 components: - type: Transform pos: 44.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3574 components: - type: Transform pos: 44.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3575 components: - type: Transform pos: 44.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3576 components: - type: Transform pos: 44.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3577 components: - type: Transform pos: 44.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3578 components: - type: Transform pos: 44.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3579 components: - type: Transform pos: 44.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3580 components: - type: Transform pos: 44.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3581 components: - type: Transform pos: 44.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3618 components: - type: Transform @@ -81049,7 +81313,7 @@ entities: pos: -6.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3619 components: - type: Transform @@ -81057,7 +81321,7 @@ entities: pos: -3.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3620 components: - type: Transform @@ -81065,7 +81329,7 @@ entities: pos: -4.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3711 components: - type: Transform @@ -81073,105 +81337,105 @@ entities: pos: 44.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3914 components: - type: Transform pos: 1.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3916 components: - type: Transform pos: 1.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3917 components: - type: Transform pos: 1.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3919 components: - type: Transform pos: 1.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3921 components: - type: Transform pos: 1.5,-43.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3922 components: - type: Transform pos: 1.5,-44.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3923 components: - type: Transform pos: 1.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3925 components: - type: Transform pos: -0.5,-44.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3926 components: - type: Transform pos: -0.5,-43.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3927 components: - type: Transform pos: -0.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3928 components: - type: Transform pos: -0.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3931 components: - type: Transform pos: -0.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3932 components: - type: Transform pos: -0.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3933 components: - type: Transform pos: -0.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3934 components: - type: Transform @@ -81179,7 +81443,7 @@ entities: pos: 0.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3935 components: - type: Transform @@ -81187,7 +81451,7 @@ entities: pos: -0.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3936 components: - type: Transform @@ -81195,7 +81459,7 @@ entities: pos: -1.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3937 components: - type: Transform @@ -81203,7 +81467,7 @@ entities: pos: -2.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3938 components: - type: Transform @@ -81211,7 +81475,7 @@ entities: pos: -3.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3939 components: - type: Transform @@ -81219,7 +81483,7 @@ entities: pos: -2.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3940 components: - type: Transform @@ -81227,7 +81491,7 @@ entities: pos: -3.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3941 components: - type: Transform @@ -81235,7 +81499,7 @@ entities: pos: -1.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3942 components: - type: Transform @@ -81243,7 +81507,7 @@ entities: pos: -4.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3943 components: - type: Transform @@ -81251,7 +81515,7 @@ entities: pos: -4.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3944 components: - type: Transform @@ -81259,7 +81523,7 @@ entities: pos: -5.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3945 components: - type: Transform @@ -81267,7 +81531,7 @@ entities: pos: -5.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3946 components: - type: Transform @@ -81275,7 +81539,7 @@ entities: pos: -6.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3947 components: - type: Transform @@ -81283,7 +81547,7 @@ entities: pos: -6.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3948 components: - type: Transform @@ -81291,7 +81555,7 @@ entities: pos: -7.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3951 components: - type: Transform @@ -81299,7 +81563,7 @@ entities: pos: -8.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3952 components: - type: Transform @@ -81307,7 +81571,7 @@ entities: pos: -9.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3953 components: - type: Transform @@ -81315,7 +81579,7 @@ entities: pos: -9.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3954 components: - type: Transform @@ -81323,7 +81587,7 @@ entities: pos: -10.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3955 components: - type: Transform @@ -81331,7 +81595,7 @@ entities: pos: -10.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3956 components: - type: Transform @@ -81339,7 +81603,7 @@ entities: pos: -11.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3957 components: - type: Transform @@ -81347,7 +81611,7 @@ entities: pos: -11.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3958 components: - type: Transform @@ -81355,7 +81619,7 @@ entities: pos: -12.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3959 components: - type: Transform @@ -81363,28 +81627,28 @@ entities: pos: -12.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3983 components: - type: Transform pos: -0.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3997 components: - type: Transform pos: -42.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4001 components: - type: Transform pos: 48.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4006 components: - type: Transform @@ -81392,7 +81656,7 @@ entities: pos: 14.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4008 components: - type: Transform @@ -81400,7 +81664,7 @@ entities: pos: -5.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4018 components: - type: Transform @@ -81408,7 +81672,7 @@ entities: pos: -27.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4023 components: - type: Transform @@ -81416,7 +81680,7 @@ entities: pos: -34.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4024 components: - type: Transform @@ -81424,7 +81688,7 @@ entities: pos: -35.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4025 components: - type: Transform @@ -81432,7 +81696,7 @@ entities: pos: -31.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4026 components: - type: Transform @@ -81440,7 +81704,7 @@ entities: pos: -32.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4027 components: - type: Transform @@ -81448,7 +81712,7 @@ entities: pos: -33.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4028 components: - type: Transform @@ -81456,7 +81720,7 @@ entities: pos: -34.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4029 components: - type: Transform @@ -81464,7 +81728,7 @@ entities: pos: -35.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4030 components: - type: Transform @@ -81472,7 +81736,7 @@ entities: pos: -36.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4032 components: - type: Transform @@ -81480,7 +81744,7 @@ entities: pos: -37.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4107 components: - type: Transform @@ -81488,14 +81752,14 @@ entities: pos: 35.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4112 components: - type: Transform pos: 33.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4122 components: - type: Transform @@ -81503,7 +81767,7 @@ entities: pos: 30.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4126 components: - type: Transform @@ -81511,7 +81775,7 @@ entities: pos: 31.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4130 components: - type: Transform @@ -81519,7 +81783,7 @@ entities: pos: 34.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4132 components: - type: Transform @@ -81527,7 +81791,7 @@ entities: pos: 34.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4134 components: - type: Transform @@ -81535,7 +81799,7 @@ entities: pos: 34.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4137 components: - type: Transform @@ -81549,14 +81813,14 @@ entities: pos: 34.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4151 components: - type: Transform pos: 33.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4155 components: - type: Transform @@ -81564,7 +81828,7 @@ entities: pos: 43.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4183 components: - type: Transform @@ -81572,7 +81836,7 @@ entities: pos: 33.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4184 components: - type: Transform @@ -81580,7 +81844,7 @@ entities: pos: 31.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4185 components: - type: Transform @@ -81588,7 +81852,7 @@ entities: pos: 30.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4186 components: - type: Transform @@ -81596,7 +81860,7 @@ entities: pos: 33.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4325 components: - type: Transform @@ -81604,14 +81868,14 @@ entities: pos: 36.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4333 components: - type: Transform pos: -31.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4335 components: - type: Transform @@ -81619,7 +81883,7 @@ entities: pos: 34.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4356 components: - type: Transform @@ -81627,7 +81891,7 @@ entities: pos: 35.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4361 components: - type: Transform @@ -81635,7 +81899,7 @@ entities: pos: -20.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4484 components: - type: Transform @@ -81643,7 +81907,7 @@ entities: pos: 40.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4485 components: - type: Transform @@ -81651,14 +81915,14 @@ entities: pos: 37.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4486 components: - type: Transform pos: 44.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4488 components: - type: Transform @@ -81666,7 +81930,7 @@ entities: pos: 46.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4489 components: - type: Transform @@ -81674,7 +81938,7 @@ entities: pos: 47.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4490 components: - type: Transform @@ -81682,7 +81946,7 @@ entities: pos: 36.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4497 components: - type: Transform @@ -81690,7 +81954,7 @@ entities: pos: 48.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4507 components: - type: Transform @@ -81698,7 +81962,7 @@ entities: pos: 46.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4519 components: - type: Transform @@ -81706,14 +81970,14 @@ entities: pos: -25.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4550 components: - type: Transform pos: -36.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4627 components: - type: Transform @@ -81721,14 +81985,14 @@ entities: pos: -25.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4629 components: - type: Transform pos: -0.5,-60.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4645 components: - type: Transform @@ -81736,42 +82000,42 @@ entities: pos: 40.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4648 components: - type: Transform pos: -0.5,-59.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4649 components: - type: Transform pos: -0.5,-58.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4650 components: - type: Transform pos: -0.5,-57.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4657 components: - type: Transform pos: 1.5,-56.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4658 components: - type: Transform pos: 1.5,-57.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4666 components: - type: Transform @@ -81779,21 +82043,21 @@ entities: pos: 38.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4725 components: - type: Transform pos: 1.5,-54.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4726 components: - type: Transform pos: 1.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4836 components: - type: Transform @@ -81801,7 +82065,7 @@ entities: pos: 1.5,-47.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4837 components: - type: Transform @@ -81809,7 +82073,7 @@ entities: pos: -0.5,-48.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4838 components: - type: Transform @@ -81817,7 +82081,7 @@ entities: pos: -0.5,-49.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4839 components: - type: Transform @@ -81825,7 +82089,7 @@ entities: pos: 1.5,-49.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4840 components: - type: Transform @@ -81833,7 +82097,7 @@ entities: pos: 1.5,-50.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4841 components: - type: Transform @@ -81841,7 +82105,7 @@ entities: pos: -0.5,-50.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4842 components: - type: Transform @@ -81849,7 +82113,7 @@ entities: pos: -0.5,-51.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4843 components: - type: Transform @@ -81857,7 +82121,7 @@ entities: pos: 1.5,-51.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4844 components: - type: Transform @@ -81865,7 +82129,7 @@ entities: pos: -0.5,-52.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4845 components: - type: Transform @@ -81873,14 +82137,14 @@ entities: pos: 1.5,-52.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4908 components: - type: Transform pos: 1.5,-60.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4909 components: - type: Transform @@ -81888,7 +82152,7 @@ entities: pos: -2.5,-65.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4916 components: - type: Transform @@ -81896,7 +82160,7 @@ entities: pos: 2.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4917 components: - type: Transform @@ -81904,7 +82168,7 @@ entities: pos: 3.5,-64.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4918 components: - type: Transform @@ -81912,7 +82176,7 @@ entities: pos: 2.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4919 components: - type: Transform @@ -81920,7 +82184,7 @@ entities: pos: 3.5,-69.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4920 components: - type: Transform @@ -81928,7 +82192,7 @@ entities: pos: 3.5,-68.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4921 components: - type: Transform @@ -81936,7 +82200,7 @@ entities: pos: -2.5,-67.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4927 components: - type: Transform @@ -81944,14 +82208,14 @@ entities: pos: -3.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4928 components: - type: Transform pos: -0.5,-62.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4930 components: - type: Transform @@ -81959,7 +82223,7 @@ entities: pos: -4.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4931 components: - type: Transform @@ -81967,7 +82231,7 @@ entities: pos: 1.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4932 components: - type: Transform @@ -81975,7 +82239,7 @@ entities: pos: -5.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4933 components: - type: Transform @@ -81983,14 +82247,14 @@ entities: pos: -2.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4934 components: - type: Transform pos: 1.5,-62.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4967 components: - type: Transform @@ -81998,7 +82262,7 @@ entities: pos: -6.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4968 components: - type: Transform @@ -82006,7 +82270,7 @@ entities: pos: -7.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4969 components: - type: Transform @@ -82014,7 +82278,7 @@ entities: pos: -7.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4970 components: - type: Transform @@ -82022,7 +82286,7 @@ entities: pos: -8.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4972 components: - type: Transform @@ -82030,7 +82294,7 @@ entities: pos: -2.5,-68.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4974 components: - type: Transform @@ -82038,7 +82302,7 @@ entities: pos: 2.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4975 components: - type: Transform @@ -82046,14 +82310,14 @@ entities: pos: -8.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4981 components: - type: Transform pos: 1.5,-58.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4982 components: - type: Transform @@ -82061,7 +82325,7 @@ entities: pos: -2.5,-66.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4983 components: - type: Transform @@ -82069,7 +82333,7 @@ entities: pos: -2.5,-69.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4984 components: - type: Transform @@ -82077,14 +82341,14 @@ entities: pos: -1.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4986 components: - type: Transform pos: 1.5,-59.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4988 components: - type: Transform @@ -82092,7 +82356,7 @@ entities: pos: -1.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4989 components: - type: Transform @@ -82100,14 +82364,14 @@ entities: pos: -2.5,-64.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4991 components: - type: Transform pos: 1.5,-71.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4994 components: - type: Transform @@ -82115,7 +82379,7 @@ entities: pos: 3.5,-67.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4995 components: - type: Transform @@ -82123,14 +82387,14 @@ entities: pos: 3.5,-66.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4998 components: - type: Transform pos: -0.5,-71.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5000 components: - type: Transform @@ -82138,7 +82402,7 @@ entities: pos: 2.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5012 components: - type: Transform @@ -82146,7 +82410,7 @@ entities: pos: 3.5,-65.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5020 components: - type: Transform @@ -82154,7 +82418,7 @@ entities: pos: -26.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5055 components: - type: Transform @@ -82162,7 +82426,7 @@ entities: pos: 37.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5098 components: - type: Transform @@ -82170,21 +82434,21 @@ entities: pos: 6.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5115 components: - type: Transform pos: 1.5,-73.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5117 components: - type: Transform pos: 1.5,-74.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5118 components: - type: Transform @@ -82192,7 +82456,7 @@ entities: pos: 4.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5142 components: - type: Transform @@ -82200,7 +82464,7 @@ entities: pos: 3.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5147 components: - type: Transform @@ -82208,7 +82472,7 @@ entities: pos: -9.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5148 components: - type: Transform @@ -82216,14 +82480,14 @@ entities: pos: 4.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5215 components: - type: Transform pos: -0.5,-73.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5299 components: - type: Transform @@ -82231,35 +82495,35 @@ entities: pos: -36.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5392 components: - type: Transform pos: 13.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5393 components: - type: Transform pos: 13.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5394 components: - type: Transform pos: 13.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5396 components: - type: Transform pos: 9.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5424 components: - type: Transform @@ -82267,7 +82531,7 @@ entities: pos: -31.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5426 components: - type: Transform @@ -82275,7 +82539,7 @@ entities: pos: -20.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5441 components: - type: Transform @@ -82283,7 +82547,7 @@ entities: pos: 41.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5443 components: - type: Transform @@ -82291,7 +82555,7 @@ entities: pos: 42.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5444 components: - type: Transform @@ -82299,7 +82563,7 @@ entities: pos: 38.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5447 components: - type: Transform @@ -82307,7 +82571,7 @@ entities: pos: 31.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5448 components: - type: Transform @@ -82315,7 +82579,7 @@ entities: pos: 32.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5449 components: - type: Transform @@ -82323,14 +82587,14 @@ entities: pos: 31.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5450 components: - type: Transform pos: 44.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5451 components: - type: Transform @@ -82338,7 +82602,7 @@ entities: pos: 30.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5452 components: - type: Transform @@ -82346,7 +82610,7 @@ entities: pos: 30.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5456 components: - type: Transform @@ -82354,7 +82618,7 @@ entities: pos: -19.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5463 components: - type: Transform @@ -82362,7 +82626,7 @@ entities: pos: 38.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5464 components: - type: Transform @@ -82370,7 +82634,7 @@ entities: pos: 44.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5465 components: - type: Transform @@ -82378,7 +82642,7 @@ entities: pos: -22.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5467 components: - type: Transform @@ -82386,7 +82650,7 @@ entities: pos: 44.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5468 components: - type: Transform @@ -82394,21 +82658,21 @@ entities: pos: 41.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5469 components: - type: Transform pos: -38.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5470 components: - type: Transform pos: -38.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5471 components: - type: Transform @@ -82416,7 +82680,7 @@ entities: pos: -17.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5475 components: - type: Transform @@ -82424,7 +82688,7 @@ entities: pos: -16.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5487 components: - type: Transform @@ -82432,7 +82696,7 @@ entities: pos: 42.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5511 components: - type: Transform @@ -82440,7 +82704,7 @@ entities: pos: -13.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5517 components: - type: Transform @@ -82448,7 +82712,7 @@ entities: pos: 43.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5549 components: - type: Transform @@ -82464,7 +82728,7 @@ entities: pos: 45.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5558 components: - type: Transform @@ -82472,7 +82736,7 @@ entities: pos: 44.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5569 components: - type: Transform @@ -82480,7 +82744,7 @@ entities: pos: -44.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5570 components: - type: Transform @@ -82488,7 +82752,7 @@ entities: pos: -42.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5571 components: - type: Transform @@ -82496,7 +82760,7 @@ entities: pos: -42.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5572 components: - type: Transform @@ -82504,7 +82768,7 @@ entities: pos: -44.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5573 components: - type: Transform @@ -82512,7 +82776,7 @@ entities: pos: -44.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5574 components: - type: Transform @@ -82520,7 +82784,7 @@ entities: pos: -44.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5575 components: - type: Transform @@ -82528,7 +82792,7 @@ entities: pos: -42.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5576 components: - type: Transform @@ -82558,7 +82822,7 @@ entities: pos: 41.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5596 components: - type: Transform @@ -82566,7 +82830,7 @@ entities: pos: 45.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5648 components: - type: Transform @@ -82590,7 +82854,7 @@ entities: pos: 33.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5694 components: - type: Transform @@ -82598,7 +82862,7 @@ entities: pos: 8.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5697 components: - type: Transform @@ -82606,7 +82870,7 @@ entities: pos: 6.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5698 components: - type: Transform @@ -82614,7 +82878,7 @@ entities: pos: 7.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5704 components: - type: Transform @@ -82622,7 +82886,7 @@ entities: pos: -7.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5705 components: - type: Transform @@ -82630,7 +82894,7 @@ entities: pos: -6.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5707 components: - type: Transform @@ -82638,7 +82902,7 @@ entities: pos: -6.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5708 components: - type: Transform @@ -82646,7 +82910,7 @@ entities: pos: -5.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5713 components: - type: Transform @@ -82654,7 +82918,7 @@ entities: pos: -3.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5714 components: - type: Transform @@ -82662,7 +82926,7 @@ entities: pos: -2.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5715 components: - type: Transform @@ -82670,7 +82934,7 @@ entities: pos: -1.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5716 components: - type: Transform @@ -82678,7 +82942,7 @@ entities: pos: 1.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5717 components: - type: Transform @@ -82686,7 +82950,7 @@ entities: pos: 3.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5718 components: - type: Transform @@ -82694,7 +82958,7 @@ entities: pos: 4.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5719 components: - type: Transform @@ -82702,7 +82966,7 @@ entities: pos: 2.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5720 components: - type: Transform @@ -82710,7 +82974,7 @@ entities: pos: -0.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5721 components: - type: Transform @@ -82718,7 +82982,7 @@ entities: pos: -4.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5722 components: - type: Transform @@ -82726,7 +82990,7 @@ entities: pos: -3.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5723 components: - type: Transform @@ -82734,7 +82998,7 @@ entities: pos: -2.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5724 components: - type: Transform @@ -82742,7 +83006,7 @@ entities: pos: -1.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5726 components: - type: Transform @@ -82750,7 +83014,7 @@ entities: pos: 5.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5727 components: - type: Transform @@ -82758,7 +83022,7 @@ entities: pos: 4.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5728 components: - type: Transform @@ -82766,7 +83030,7 @@ entities: pos: 3.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5729 components: - type: Transform @@ -82774,7 +83038,7 @@ entities: pos: 2.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5731 components: - type: Transform @@ -82782,7 +83046,7 @@ entities: pos: 0.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5732 components: - type: Transform @@ -82790,28 +83054,28 @@ entities: pos: 0.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5734 components: - type: Transform pos: -0.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5735 components: - type: Transform pos: 1.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5737 components: - type: Transform pos: 1.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5762 components: - type: Transform @@ -82819,7 +83083,7 @@ entities: pos: 15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5763 components: - type: Transform @@ -82827,7 +83091,7 @@ entities: pos: 15.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5764 components: - type: Transform @@ -82835,7 +83099,7 @@ entities: pos: 17.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5818 components: - type: Transform @@ -82843,14 +83107,14 @@ entities: pos: 17.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5825 components: - type: Transform pos: -25.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5832 components: - type: Transform @@ -82858,21 +83122,21 @@ entities: pos: 34.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5834 components: - type: Transform pos: -38.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5846 components: - type: Transform pos: 1.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5852 components: - type: Transform @@ -82880,7 +83144,7 @@ entities: pos: 43.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5875 components: - type: Transform @@ -82893,49 +83157,49 @@ entities: pos: 15.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5893 components: - type: Transform pos: -28.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5894 components: - type: Transform pos: -29.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5895 components: - type: Transform pos: -29.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5896 components: - type: Transform pos: -28.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5904 components: - type: Transform pos: 48.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5910 components: - type: Transform pos: -23.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5913 components: - type: Transform @@ -82943,7 +83207,7 @@ entities: pos: 46.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5916 components: - type: Transform @@ -82951,7 +83215,7 @@ entities: pos: 6.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5920 components: - type: Transform @@ -82959,63 +83223,63 @@ entities: pos: 19.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5931 components: - type: Transform pos: -38.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5939 components: - type: Transform pos: -36.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5941 components: - type: Transform pos: -52.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5944 components: - type: Transform pos: -52.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5945 components: - type: Transform pos: -36.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5946 components: - type: Transform pos: -49.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5948 components: - type: Transform pos: -52.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5949 components: - type: Transform pos: -36.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5957 components: - type: Transform @@ -83023,7 +83287,7 @@ entities: pos: -40.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5958 components: - type: Transform @@ -83031,7 +83295,7 @@ entities: pos: -50.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5959 components: - type: Transform @@ -83039,7 +83303,7 @@ entities: pos: -43.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5965 components: - type: Transform @@ -83047,7 +83311,7 @@ entities: pos: -38.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5966 components: - type: Transform @@ -83055,14 +83319,14 @@ entities: pos: -43.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5968 components: - type: Transform pos: 48.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5969 components: - type: Transform @@ -83070,7 +83334,7 @@ entities: pos: -42.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5970 components: - type: Transform @@ -83078,7 +83342,7 @@ entities: pos: -49.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5973 components: - type: Transform @@ -83086,7 +83350,7 @@ entities: pos: -38.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5975 components: - type: Transform @@ -83094,14 +83358,14 @@ entities: pos: -55.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5976 components: - type: Transform pos: -36.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5977 components: - type: Transform @@ -83109,7 +83373,7 @@ entities: pos: -53.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5978 components: - type: Transform @@ -83117,7 +83381,7 @@ entities: pos: -52.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5979 components: - type: Transform @@ -83125,7 +83389,7 @@ entities: pos: -48.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5981 components: - type: Transform @@ -83133,35 +83397,35 @@ entities: pos: -45.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5982 components: - type: Transform pos: -42.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5984 components: - type: Transform pos: -47.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5985 components: - type: Transform pos: -47.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5986 components: - type: Transform pos: -49.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5989 components: - type: Transform @@ -83169,7 +83433,7 @@ entities: pos: -37.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5992 components: - type: Transform @@ -83177,14 +83441,14 @@ entities: pos: -46.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5993 components: - type: Transform pos: -55.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5994 components: - type: Transform @@ -83192,7 +83456,7 @@ entities: pos: -39.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5995 components: - type: Transform @@ -83200,7 +83464,7 @@ entities: pos: -40.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5996 components: - type: Transform @@ -83208,7 +83472,7 @@ entities: pos: -41.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5997 components: - type: Transform @@ -83216,7 +83480,7 @@ entities: pos: -45.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5998 components: - type: Transform @@ -83224,7 +83488,7 @@ entities: pos: -39.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5999 components: - type: Transform @@ -83232,7 +83496,7 @@ entities: pos: -46.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6000 components: - type: Transform @@ -83240,7 +83504,7 @@ entities: pos: -37.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6001 components: - type: Transform @@ -83248,7 +83512,7 @@ entities: pos: -55.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6003 components: - type: Transform @@ -83256,7 +83520,7 @@ entities: pos: -40.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6004 components: - type: Transform @@ -83264,7 +83528,7 @@ entities: pos: -44.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6006 components: - type: Transform @@ -83272,7 +83536,7 @@ entities: pos: -54.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6007 components: - type: Transform @@ -83280,7 +83544,7 @@ entities: pos: -51.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6009 components: - type: Transform @@ -83288,7 +83552,7 @@ entities: pos: 10.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6010 components: - type: Transform @@ -83296,7 +83560,7 @@ entities: pos: -55.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6011 components: - type: Transform @@ -83304,14 +83568,14 @@ entities: pos: -35.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6016 components: - type: Transform pos: -38.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6017 components: - type: Transform @@ -83319,7 +83583,7 @@ entities: pos: -51.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6019 components: - type: Transform @@ -83327,7 +83591,7 @@ entities: pos: -53.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6021 components: - type: Transform @@ -83335,7 +83599,7 @@ entities: pos: -46.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6022 components: - type: Transform @@ -83343,7 +83607,7 @@ entities: pos: -47.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6023 components: - type: Transform @@ -83351,7 +83615,7 @@ entities: pos: -45.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6025 components: - type: Transform @@ -83359,7 +83623,7 @@ entities: pos: -44.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6027 components: - type: Transform @@ -83367,14 +83631,14 @@ entities: pos: -47.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6029 components: - type: Transform pos: -47.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6030 components: - type: Transform @@ -83382,7 +83646,7 @@ entities: pos: -48.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6031 components: - type: Transform @@ -83390,7 +83654,7 @@ entities: pos: -50.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6033 components: - type: Transform @@ -83398,7 +83662,7 @@ entities: pos: -40.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6035 components: - type: Transform @@ -83406,7 +83670,7 @@ entities: pos: -39.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6040 components: - type: Transform @@ -83414,7 +83678,7 @@ entities: pos: -44.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6045 components: - type: Transform @@ -83422,14 +83686,14 @@ entities: pos: -55.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6048 components: - type: Transform pos: -47.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6057 components: - type: Transform @@ -83437,7 +83701,7 @@ entities: pos: -45.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6059 components: - type: Transform @@ -83445,14 +83709,14 @@ entities: pos: -46.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6060 components: - type: Transform pos: -47.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6063 components: - type: Transform @@ -83460,7 +83724,7 @@ entities: pos: -45.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6064 components: - type: Transform @@ -83468,7 +83732,7 @@ entities: pos: -42.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6095 components: - type: Transform @@ -83476,7 +83740,7 @@ entities: pos: -43.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6096 components: - type: Transform @@ -83484,7 +83748,7 @@ entities: pos: -55.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6106 components: - type: Transform @@ -83492,7 +83756,7 @@ entities: pos: -44.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6107 components: - type: Transform @@ -83500,7 +83764,7 @@ entities: pos: -44.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6108 components: - type: Transform @@ -83508,14 +83772,14 @@ entities: pos: -44.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6110 components: - type: Transform pos: -49.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6111 components: - type: Transform @@ -83523,14 +83787,14 @@ entities: pos: -47.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6113 components: - type: Transform pos: -49.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6114 components: - type: Transform @@ -83538,7 +83802,7 @@ entities: pos: -46.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6115 components: - type: Transform @@ -83546,7 +83810,7 @@ entities: pos: -44.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6116 components: - type: Transform @@ -83554,7 +83818,7 @@ entities: pos: -44.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6122 components: - type: Transform @@ -83562,7 +83826,7 @@ entities: pos: -48.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6124 components: - type: Transform @@ -83570,7 +83834,7 @@ entities: pos: 11.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6134 components: - type: Transform @@ -83578,7 +83842,7 @@ entities: pos: -48.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6178 components: - type: Transform @@ -83586,7 +83850,7 @@ entities: pos: -19.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6180 components: - type: Transform @@ -83594,7 +83858,7 @@ entities: pos: -23.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6197 components: - type: Transform @@ -83602,7 +83866,7 @@ entities: pos: 7.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6198 components: - type: Transform @@ -83610,7 +83874,7 @@ entities: pos: 3.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6199 components: - type: Transform @@ -83618,28 +83882,28 @@ entities: pos: 5.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6212 components: - type: Transform pos: -0.5,-54.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6217 components: - type: Transform pos: -0.5,-56.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6218 components: - type: Transform pos: -0.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6267 components: - type: Transform @@ -83647,7 +83911,7 @@ entities: pos: -55.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6269 components: - type: Transform @@ -83655,7 +83919,7 @@ entities: pos: -38.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6279 components: - type: Transform @@ -83663,7 +83927,7 @@ entities: pos: 12.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6281 components: - type: Transform @@ -83671,7 +83935,7 @@ entities: pos: 17.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6283 components: - type: Transform @@ -83679,14 +83943,14 @@ entities: pos: 17.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6284 components: - type: Transform pos: 15.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6285 components: - type: Transform @@ -83694,7 +83958,7 @@ entities: pos: 15.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6287 components: - type: Transform @@ -83702,7 +83966,7 @@ entities: pos: 15.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6289 components: - type: Transform @@ -83710,7 +83974,7 @@ entities: pos: 16.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6291 components: - type: Transform @@ -83718,7 +83982,7 @@ entities: pos: 14.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6292 components: - type: Transform @@ -83726,7 +83990,7 @@ entities: pos: 13.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6293 components: - type: Transform @@ -83734,7 +83998,7 @@ entities: pos: 12.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6294 components: - type: Transform @@ -83742,7 +84006,7 @@ entities: pos: 16.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6295 components: - type: Transform @@ -83750,7 +84014,7 @@ entities: pos: 15.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6296 components: - type: Transform @@ -83758,7 +84022,7 @@ entities: pos: 14.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6297 components: - type: Transform @@ -83766,7 +84030,7 @@ entities: pos: 13.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6298 components: - type: Transform @@ -83774,14 +84038,14 @@ entities: pos: 15.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6309 components: - type: Transform pos: -22.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6358 components: - type: Transform @@ -83789,7 +84053,7 @@ entities: pos: -35.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6371 components: - type: Transform @@ -83797,7 +84061,7 @@ entities: pos: 17.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6379 components: - type: Transform @@ -83805,7 +84069,7 @@ entities: pos: -1.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6391 components: - type: Transform @@ -83813,7 +84077,7 @@ entities: pos: 17.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6399 components: - type: Transform @@ -83821,7 +84085,7 @@ entities: pos: 17.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6410 components: - type: Transform @@ -83829,7 +84093,7 @@ entities: pos: -2.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6457 components: - type: Transform @@ -83837,7 +84101,7 @@ entities: pos: -0.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6596 components: - type: Transform @@ -83853,7 +84117,7 @@ entities: pos: 7.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6760 components: - type: Transform @@ -83861,7 +84125,7 @@ entities: pos: -19.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6761 components: - type: Transform @@ -83869,14 +84133,14 @@ entities: pos: -22.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6763 components: - type: Transform pos: -21.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6778 components: - type: Transform @@ -83892,14 +84156,14 @@ entities: pos: 2.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6799 components: - type: Transform pos: -38.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6800 components: - type: Transform @@ -83907,7 +84171,7 @@ entities: pos: -32.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6801 components: - type: Transform @@ -83915,7 +84179,7 @@ entities: pos: -27.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6802 components: - type: Transform @@ -83923,14 +84187,14 @@ entities: pos: -29.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6804 components: - type: Transform pos: -30.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6809 components: - type: Transform @@ -83938,14 +84202,14 @@ entities: pos: 17.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6824 components: - type: Transform pos: -27.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6833 components: - type: Transform @@ -83953,7 +84217,7 @@ entities: pos: 45.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6837 components: - type: Transform @@ -83961,7 +84225,7 @@ entities: pos: 41.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6838 components: - type: Transform @@ -83969,7 +84233,7 @@ entities: pos: 42.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6839 components: - type: Transform @@ -83977,7 +84241,7 @@ entities: pos: 44.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6840 components: - type: Transform @@ -83985,7 +84249,7 @@ entities: pos: 45.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6982 components: - type: Transform @@ -83993,7 +84257,7 @@ entities: pos: -41.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7012 components: - type: Transform @@ -84001,7 +84265,7 @@ entities: pos: 15.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7115 components: - type: Transform @@ -84014,7 +84278,7 @@ entities: pos: 15.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7123 components: - type: Transform @@ -84027,7 +84291,7 @@ entities: pos: -22.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7200 components: - type: Transform @@ -84035,21 +84299,21 @@ entities: pos: 16.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7211 components: - type: Transform pos: -49.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7214 components: - type: Transform pos: -23.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7215 components: - type: Transform @@ -84057,7 +84321,7 @@ entities: pos: 23.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7284 components: - type: Transform @@ -84065,7 +84329,7 @@ entities: pos: -21.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7335 components: - type: Transform @@ -84102,21 +84366,21 @@ entities: pos: 1.5,-75.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7382 components: - type: Transform pos: -0.5,-74.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7383 components: - type: Transform pos: -0.5,-75.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7458 components: - type: Transform @@ -84124,7 +84388,7 @@ entities: pos: -28.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7464 components: - type: Transform @@ -84132,7 +84396,7 @@ entities: pos: -23.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7473 components: - type: Transform @@ -84140,7 +84404,7 @@ entities: pos: 5.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7478 components: - type: Transform @@ -84148,14 +84412,14 @@ entities: pos: 6.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7601 components: - type: Transform pos: -22.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7647 components: - type: Transform @@ -84163,7 +84427,7 @@ entities: pos: -20.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7649 components: - type: Transform @@ -84171,7 +84435,7 @@ entities: pos: -22.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7670 components: - type: Transform @@ -84179,21 +84443,21 @@ entities: pos: 27.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7676 components: - type: Transform pos: -49.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7680 components: - type: Transform pos: -36.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7681 components: - type: Transform @@ -84201,14 +84465,14 @@ entities: pos: -29.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7715 components: - type: Transform pos: 33.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7716 components: - type: Transform @@ -84216,7 +84480,7 @@ entities: pos: 32.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7717 components: - type: Transform @@ -84224,7 +84488,7 @@ entities: pos: 32.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7785 components: - type: Transform @@ -84232,14 +84496,14 @@ entities: pos: -25.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7835 components: - type: Transform pos: 4.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7856 components: - type: Transform @@ -84247,7 +84511,7 @@ entities: pos: 45.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7896 components: - type: Transform @@ -84411,7 +84675,7 @@ entities: pos: 25.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8130 components: - type: Transform @@ -84419,7 +84683,7 @@ entities: pos: -1.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8131 components: - type: Transform @@ -84427,7 +84691,7 @@ entities: pos: -2.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8132 components: - type: Transform @@ -84435,7 +84699,7 @@ entities: pos: 0.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8133 components: - type: Transform @@ -84443,7 +84707,7 @@ entities: pos: -0.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8134 components: - type: Transform @@ -84451,7 +84715,7 @@ entities: pos: -1.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8135 components: - type: Transform @@ -84459,7 +84723,7 @@ entities: pos: -2.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8151 components: - type: Transform @@ -84472,14 +84736,14 @@ entities: pos: -38.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8206 components: - type: Transform pos: -38.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8207 components: - type: Transform @@ -84487,7 +84751,7 @@ entities: pos: -26.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8212 components: - type: Transform @@ -84495,7 +84759,7 @@ entities: pos: -24.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8223 components: - type: Transform @@ -84503,7 +84767,7 @@ entities: pos: -23.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8225 components: - type: Transform @@ -84511,7 +84775,7 @@ entities: pos: -21.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8228 components: - type: Transform @@ -84519,7 +84783,7 @@ entities: pos: -21.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8257 components: - type: Transform @@ -84527,7 +84791,7 @@ entities: pos: 45.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8261 components: - type: Transform @@ -84535,7 +84799,7 @@ entities: pos: -30.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8263 components: - type: Transform @@ -84543,7 +84807,7 @@ entities: pos: -29.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8264 components: - type: Transform @@ -84551,7 +84815,7 @@ entities: pos: -28.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8267 components: - type: Transform @@ -84559,7 +84823,7 @@ entities: pos: -30.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8270 components: - type: Transform @@ -84567,7 +84831,7 @@ entities: pos: -30.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8274 components: - type: Transform @@ -84575,14 +84839,14 @@ entities: pos: -28.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8386 components: - type: Transform pos: -22.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8387 components: - type: Transform @@ -84590,56 +84854,56 @@ entities: pos: 23.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8533 components: - type: Transform pos: 17.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8534 components: - type: Transform pos: 17.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8535 components: - type: Transform pos: 17.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8538 components: - type: Transform pos: 15.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8539 components: - type: Transform pos: 15.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8540 components: - type: Transform pos: 15.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8541 components: - type: Transform pos: 15.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8577 components: - type: Transform @@ -84647,14 +84911,14 @@ entities: pos: -31.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8711 components: - type: Transform pos: -21.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8712 components: - type: Transform @@ -84662,7 +84926,7 @@ entities: pos: -22.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8713 components: - type: Transform @@ -84670,7 +84934,7 @@ entities: pos: -21.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8717 components: - type: Transform @@ -84678,14 +84942,14 @@ entities: pos: -31.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8719 components: - type: Transform pos: -18.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8721 components: - type: Transform @@ -84693,7 +84957,7 @@ entities: pos: -30.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8749 components: - type: Transform @@ -84701,14 +84965,14 @@ entities: pos: -30.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8792 components: - type: Transform pos: -16.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8899 components: - type: Transform @@ -84728,14 +84992,14 @@ entities: pos: -55.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8945 components: - type: Transform pos: 1.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8949 components: - type: Transform @@ -84743,28 +85007,28 @@ entities: pos: -27.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8963 components: - type: Transform pos: 44.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8964 components: - type: Transform pos: 44.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9003 components: - type: Transform pos: 19.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9014 components: - type: Transform @@ -84772,14 +85036,14 @@ entities: pos: -32.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9022 components: - type: Transform pos: 44.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9031 components: - type: Transform @@ -84787,21 +85051,21 @@ entities: pos: -21.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9033 components: - type: Transform pos: -18.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9043 components: - type: Transform pos: -18.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9045 components: - type: Transform @@ -84809,7 +85073,7 @@ entities: pos: 39.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9148 components: - type: Transform @@ -84817,7 +85081,7 @@ entities: pos: -35.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9158 components: - type: Transform @@ -84825,7 +85089,7 @@ entities: pos: -19.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9159 components: - type: Transform @@ -84833,7 +85097,7 @@ entities: pos: -20.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9358 components: - type: Transform @@ -84861,7 +85125,7 @@ entities: pos: -46.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9610 components: - type: Transform @@ -84869,7 +85133,7 @@ entities: pos: -45.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9635 components: - type: Transform @@ -84877,7 +85141,7 @@ entities: pos: -53.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9636 components: - type: Transform @@ -84885,7 +85149,7 @@ entities: pos: -54.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9639 components: - type: Transform @@ -84893,7 +85157,7 @@ entities: pos: -39.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9640 components: - type: Transform @@ -84901,7 +85165,7 @@ entities: pos: -40.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9642 components: - type: Transform @@ -84909,7 +85173,7 @@ entities: pos: -43.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9649 components: - type: Transform @@ -84917,7 +85181,7 @@ entities: pos: -44.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9650 components: - type: Transform @@ -84925,7 +85189,7 @@ entities: pos: -45.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9653 components: - type: Transform @@ -84933,63 +85197,63 @@ entities: pos: -53.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9654 components: - type: Transform pos: -54.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9655 components: - type: Transform pos: -54.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9657 components: - type: Transform pos: -54.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9658 components: - type: Transform pos: -54.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9659 components: - type: Transform pos: -54.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9660 components: - type: Transform pos: -54.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9661 components: - type: Transform pos: -54.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9662 components: - type: Transform pos: -54.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9663 components: - type: Transform @@ -85025,7 +85289,7 @@ entities: pos: -58.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10695 components: - type: Transform @@ -85033,7 +85297,7 @@ entities: pos: -51.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10696 components: - type: Transform @@ -85041,7 +85305,7 @@ entities: pos: -49.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10828 components: - type: Transform @@ -85049,7 +85313,7 @@ entities: pos: -34.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11132 components: - type: Transform @@ -85057,7 +85321,7 @@ entities: pos: 46.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11158 components: - type: Transform @@ -85065,7 +85329,7 @@ entities: pos: 43.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11379 components: - type: Transform @@ -85073,7 +85337,7 @@ entities: pos: 14.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11739 components: - type: Transform @@ -85081,7 +85345,7 @@ entities: pos: 44.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11757 components: - type: Transform @@ -85089,7 +85353,7 @@ entities: pos: 47.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11814 components: - type: Transform @@ -85097,7 +85361,7 @@ entities: pos: 45.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11830 components: - type: Transform @@ -85105,14 +85369,14 @@ entities: pos: 48.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12221 components: - type: Transform pos: 9.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12284 components: - type: Transform @@ -85120,7 +85384,7 @@ entities: pos: 42.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12522 components: - type: Transform @@ -85141,28 +85405,28 @@ entities: pos: 41.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12620 components: - type: Transform pos: 49.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12627 components: - type: Transform pos: 38.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12628 components: - type: Transform pos: 38.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12630 components: - type: Transform @@ -85170,7 +85434,7 @@ entities: pos: 40.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12824 components: - type: Transform @@ -85178,7 +85442,7 @@ entities: pos: -37.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12826 components: - type: Transform @@ -85186,7 +85450,7 @@ entities: pos: -40.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12827 components: - type: Transform @@ -85194,7 +85458,7 @@ entities: pos: -41.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12828 components: - type: Transform @@ -85202,42 +85466,42 @@ entities: pos: -42.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12830 components: - type: Transform pos: -43.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12831 components: - type: Transform pos: -43.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12832 components: - type: Transform pos: -43.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12833 components: - type: Transform pos: -43.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12834 components: - type: Transform pos: -43.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12836 components: - type: Transform @@ -85245,7 +85509,7 @@ entities: pos: -44.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12838 components: - type: Transform @@ -85253,7 +85517,7 @@ entities: pos: -47.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12843 components: - type: Transform @@ -85261,7 +85525,7 @@ entities: pos: -39.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12844 components: - type: Transform @@ -85269,21 +85533,21 @@ entities: pos: -38.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12847 components: - type: Transform pos: -43.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12848 components: - type: Transform pos: -43.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12849 components: - type: Transform @@ -85291,7 +85555,7 @@ entities: pos: -46.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12850 components: - type: Transform @@ -85299,7 +85563,7 @@ entities: pos: -45.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13081 components: - type: Transform @@ -85307,7 +85571,7 @@ entities: pos: 43.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13140 components: - type: Transform @@ -85315,14 +85579,14 @@ entities: pos: 38.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13206 components: - type: Transform pos: 49.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13210 components: - type: Transform @@ -85330,7 +85594,7 @@ entities: pos: 40.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13237 components: - type: Transform @@ -85338,7 +85602,7 @@ entities: pos: 18.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13239 components: - type: Transform @@ -85346,7 +85610,7 @@ entities: pos: 17.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13240 components: - type: Transform @@ -85354,7 +85618,7 @@ entities: pos: 18.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13244 components: - type: Transform @@ -85362,7 +85626,7 @@ entities: pos: 24.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13268 components: - type: Transform @@ -85375,7 +85639,7 @@ entities: pos: 49.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13505 components: - type: Transform @@ -85383,7 +85647,7 @@ entities: pos: 46.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13506 components: - type: Transform @@ -85391,7 +85655,7 @@ entities: pos: 45.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13507 components: - type: Transform @@ -85399,14 +85663,14 @@ entities: pos: 41.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13508 components: - type: Transform pos: 49.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13509 components: - type: Transform @@ -85414,14 +85678,14 @@ entities: pos: 41.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13511 components: - type: Transform pos: 49.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13512 components: - type: Transform @@ -85429,7 +85693,7 @@ entities: pos: 44.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13513 components: - type: Transform @@ -85437,7 +85701,7 @@ entities: pos: 43.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13518 components: - type: Transform @@ -85445,7 +85709,7 @@ entities: pos: 38.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13539 components: - type: Transform @@ -85453,7 +85717,7 @@ entities: pos: 17.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13540 components: - type: Transform @@ -85461,7 +85725,7 @@ entities: pos: 18.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13541 components: - type: Transform @@ -85469,7 +85733,7 @@ entities: pos: 19.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13542 components: - type: Transform @@ -85477,7 +85741,7 @@ entities: pos: 18.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13543 components: - type: Transform @@ -85485,7 +85749,7 @@ entities: pos: 19.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13544 components: - type: Transform @@ -85493,7 +85757,7 @@ entities: pos: 20.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13545 components: - type: Transform @@ -85501,13 +85765,15 @@ entities: pos: 21.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13550 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,25.5 parent: 60 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13564 components: - type: Transform @@ -85515,7 +85781,7 @@ entities: pos: 23.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13565 components: - type: Transform @@ -85523,7 +85789,7 @@ entities: pos: 24.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13566 components: - type: Transform @@ -85531,7 +85797,7 @@ entities: pos: 39.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13573 components: - type: Transform @@ -85539,7 +85805,7 @@ entities: pos: 13.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13587 components: - type: Transform @@ -85547,7 +85813,7 @@ entities: pos: 26.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13588 components: - type: Transform @@ -85555,14 +85821,14 @@ entities: pos: 3.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13591 components: - type: Transform pos: 49.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13594 components: - type: Transform @@ -85570,7 +85836,7 @@ entities: pos: 27.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13595 components: - type: Transform @@ -85578,7 +85844,7 @@ entities: pos: 28.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13596 components: - type: Transform @@ -85586,7 +85852,7 @@ entities: pos: 29.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13597 components: - type: Transform @@ -85594,7 +85860,7 @@ entities: pos: 30.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13630 components: - type: Transform @@ -85602,7 +85868,7 @@ entities: pos: 32.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13640 components: - type: Transform @@ -85610,7 +85876,7 @@ entities: pos: 12.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13643 components: - type: Transform @@ -85630,7 +85896,7 @@ entities: pos: 33.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13652 components: - type: Transform @@ -85638,7 +85904,7 @@ entities: pos: 34.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13653 components: - type: Transform @@ -85646,7 +85912,7 @@ entities: pos: 35.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13674 components: - type: Transform @@ -85654,7 +85920,7 @@ entities: pos: -8.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13675 components: - type: Transform @@ -85662,7 +85928,7 @@ entities: pos: -8.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13676 components: - type: Transform @@ -85670,7 +85936,7 @@ entities: pos: -8.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13806 components: - type: Transform @@ -85678,7 +85944,7 @@ entities: pos: 36.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13807 components: - type: Transform @@ -85686,7 +85952,7 @@ entities: pos: 37.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13809 components: - type: Transform @@ -85694,7 +85960,7 @@ entities: pos: 39.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13810 components: - type: Transform @@ -85702,7 +85968,7 @@ entities: pos: 22.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13822 components: - type: Transform @@ -85710,7 +85976,7 @@ entities: pos: 25.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13836 components: - type: Transform @@ -85718,7 +85984,7 @@ entities: pos: 25.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13837 components: - type: Transform @@ -85726,7 +85992,7 @@ entities: pos: 26.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13839 components: - type: Transform @@ -85734,7 +86000,7 @@ entities: pos: -26.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13840 components: - type: Transform @@ -85742,7 +86008,7 @@ entities: pos: -26.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13841 components: - type: Transform @@ -85750,7 +86016,7 @@ entities: pos: -26.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13843 components: - type: Transform @@ -85758,13 +86024,15 @@ entities: pos: 27.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13869 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,23.5 parent: 60 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13877 components: - type: Transform @@ -85778,7 +86046,7 @@ entities: pos: 28.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13920 components: - type: Transform @@ -85786,7 +86054,7 @@ entities: pos: 29.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13921 components: - type: Transform @@ -85794,7 +86062,7 @@ entities: pos: 30.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13932 components: - type: Transform @@ -85802,7 +86070,7 @@ entities: pos: -14.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13935 components: - type: Transform @@ -85822,7 +86090,7 @@ entities: pos: 31.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14003 components: - type: Transform @@ -85830,7 +86098,7 @@ entities: pos: -26.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14004 components: - type: Transform @@ -85838,7 +86106,7 @@ entities: pos: -26.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14005 components: - type: Transform @@ -85846,7 +86114,7 @@ entities: pos: -26.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14016 components: - type: Transform @@ -85854,7 +86122,7 @@ entities: pos: 33.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14017 components: - type: Transform @@ -85862,7 +86130,7 @@ entities: pos: 34.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14018 components: - type: Transform @@ -85870,7 +86138,7 @@ entities: pos: 35.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14019 components: - type: Transform @@ -85878,7 +86146,7 @@ entities: pos: 36.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14020 components: - type: Transform @@ -85886,7 +86154,7 @@ entities: pos: 37.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14023 components: - type: Transform @@ -85894,7 +86162,7 @@ entities: pos: 16.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14024 components: - type: Transform @@ -85902,7 +86170,7 @@ entities: pos: 17.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14025 components: - type: Transform @@ -85910,7 +86178,7 @@ entities: pos: 18.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14026 components: - type: Transform @@ -85918,7 +86186,7 @@ entities: pos: 19.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14027 components: - type: Transform @@ -85926,7 +86194,7 @@ entities: pos: 20.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14028 components: - type: Transform @@ -85934,7 +86202,7 @@ entities: pos: 21.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14030 components: - type: Transform @@ -85942,7 +86210,7 @@ entities: pos: 23.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14031 components: - type: Transform @@ -85950,7 +86218,7 @@ entities: pos: 24.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14032 components: - type: Transform @@ -85958,7 +86226,7 @@ entities: pos: 25.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14033 components: - type: Transform @@ -85966,7 +86234,7 @@ entities: pos: 26.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14034 components: - type: Transform @@ -85974,7 +86242,7 @@ entities: pos: 27.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14035 components: - type: Transform @@ -85982,7 +86250,7 @@ entities: pos: 28.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14036 components: - type: Transform @@ -85990,7 +86258,7 @@ entities: pos: 29.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14037 components: - type: Transform @@ -85998,7 +86266,7 @@ entities: pos: 30.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14038 components: - type: Transform @@ -86006,7 +86274,7 @@ entities: pos: 31.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14039 components: - type: Transform @@ -86014,7 +86282,7 @@ entities: pos: 32.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14041 components: - type: Transform @@ -86022,7 +86290,7 @@ entities: pos: 34.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14042 components: - type: Transform @@ -86030,7 +86298,7 @@ entities: pos: 35.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14045 components: - type: Transform @@ -86038,7 +86306,7 @@ entities: pos: 37.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14046 components: - type: Transform @@ -86046,7 +86314,7 @@ entities: pos: 38.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14048 components: - type: Transform @@ -86054,21 +86322,21 @@ entities: pos: 40.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14132 components: - type: Transform pos: -9.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14153 components: - type: Transform pos: -9.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14181 components: - type: Transform @@ -86076,7 +86344,7 @@ entities: pos: -21.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14209 components: - type: Transform @@ -86084,7 +86352,7 @@ entities: pos: -13.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14214 components: - type: Transform @@ -86092,7 +86360,7 @@ entities: pos: -15.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14229 components: - type: Transform @@ -86100,7 +86368,7 @@ entities: pos: -15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14232 components: - type: Transform @@ -86108,7 +86376,7 @@ entities: pos: -16.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14233 components: - type: Transform @@ -86116,7 +86384,7 @@ entities: pos: -16.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14234 components: - type: Transform @@ -86124,7 +86392,7 @@ entities: pos: -16.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14235 components: - type: Transform @@ -86132,7 +86400,7 @@ entities: pos: -16.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14236 components: - type: Transform @@ -86140,7 +86408,7 @@ entities: pos: -16.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14238 components: - type: Transform @@ -86148,7 +86416,7 @@ entities: pos: -16.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14239 components: - type: Transform @@ -86156,7 +86424,7 @@ entities: pos: -16.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14240 components: - type: Transform @@ -86164,7 +86432,7 @@ entities: pos: -16.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14242 components: - type: Transform @@ -86172,7 +86440,7 @@ entities: pos: -16.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14243 components: - type: Transform @@ -86180,7 +86448,7 @@ entities: pos: -16.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14244 components: - type: Transform @@ -86188,7 +86456,7 @@ entities: pos: -16.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14245 components: - type: Transform @@ -86196,7 +86464,7 @@ entities: pos: -14.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14246 components: - type: Transform @@ -86204,7 +86472,7 @@ entities: pos: -14.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14247 components: - type: Transform @@ -86212,7 +86480,7 @@ entities: pos: -14.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14248 components: - type: Transform @@ -86220,7 +86488,7 @@ entities: pos: -14.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14249 components: - type: Transform @@ -86228,7 +86496,7 @@ entities: pos: -14.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14250 components: - type: Transform @@ -86236,7 +86504,7 @@ entities: pos: -14.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14252 components: - type: Transform @@ -86244,7 +86512,7 @@ entities: pos: -14.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14253 components: - type: Transform @@ -86252,7 +86520,7 @@ entities: pos: -14.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14254 components: - type: Transform @@ -86260,7 +86528,7 @@ entities: pos: -14.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14255 components: - type: Transform @@ -86268,7 +86536,7 @@ entities: pos: -14.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14256 components: - type: Transform @@ -86276,7 +86544,7 @@ entities: pos: -14.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14257 components: - type: Transform @@ -86284,7 +86552,7 @@ entities: pos: -14.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14258 components: - type: Transform @@ -86292,7 +86560,7 @@ entities: pos: -14.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14261 components: - type: Transform @@ -86300,7 +86568,7 @@ entities: pos: -17.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14262 components: - type: Transform @@ -86308,7 +86576,7 @@ entities: pos: -18.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14263 components: - type: Transform @@ -86316,7 +86584,7 @@ entities: pos: -19.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14264 components: - type: Transform @@ -86324,7 +86592,7 @@ entities: pos: -20.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14265 components: - type: Transform @@ -86332,7 +86600,7 @@ entities: pos: -21.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14266 components: - type: Transform @@ -86340,14 +86608,14 @@ entities: pos: -22.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14267 components: - type: Transform pos: 49.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14268 components: - type: Transform @@ -86355,7 +86623,7 @@ entities: pos: -24.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14269 components: - type: Transform @@ -86363,7 +86631,7 @@ entities: pos: -25.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14271 components: - type: Transform @@ -86371,7 +86639,7 @@ entities: pos: -27.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14272 components: - type: Transform @@ -86379,7 +86647,7 @@ entities: pos: -28.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14273 components: - type: Transform @@ -86387,7 +86655,7 @@ entities: pos: -29.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14275 components: - type: Transform @@ -86395,7 +86663,7 @@ entities: pos: -15.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14276 components: - type: Transform @@ -86403,7 +86671,7 @@ entities: pos: -16.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14277 components: - type: Transform @@ -86411,7 +86679,7 @@ entities: pos: -17.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14278 components: - type: Transform @@ -86419,7 +86687,7 @@ entities: pos: -18.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14281 components: - type: Transform @@ -86427,7 +86695,7 @@ entities: pos: -21.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14282 components: - type: Transform @@ -86435,7 +86703,7 @@ entities: pos: -22.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14283 components: - type: Transform @@ -86443,7 +86711,7 @@ entities: pos: -23.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14284 components: - type: Transform @@ -86451,7 +86719,7 @@ entities: pos: -25.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14290 components: - type: Transform @@ -86465,7 +86733,7 @@ entities: pos: -13.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14292 components: - type: Transform @@ -86473,7 +86741,7 @@ entities: pos: -12.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14294 components: - type: Transform @@ -86481,7 +86749,7 @@ entities: pos: -10.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14296 components: - type: Transform @@ -86489,7 +86757,7 @@ entities: pos: -8.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14298 components: - type: Transform @@ -86497,7 +86765,7 @@ entities: pos: -7.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14299 components: - type: Transform @@ -86505,7 +86773,7 @@ entities: pos: -7.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14300 components: - type: Transform @@ -86513,7 +86781,7 @@ entities: pos: -7.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14301 components: - type: Transform @@ -86521,7 +86789,7 @@ entities: pos: -7.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14304 components: - type: Transform @@ -86529,7 +86797,7 @@ entities: pos: -15.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14305 components: - type: Transform @@ -86537,7 +86805,7 @@ entities: pos: -14.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14306 components: - type: Transform @@ -86545,7 +86813,7 @@ entities: pos: -12.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14307 components: - type: Transform @@ -86553,7 +86821,7 @@ entities: pos: -13.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14309 components: - type: Transform @@ -86561,7 +86829,7 @@ entities: pos: -10.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14310 components: - type: Transform @@ -86569,7 +86837,7 @@ entities: pos: -9.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14314 components: - type: Transform @@ -86577,7 +86845,7 @@ entities: pos: -8.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14315 components: - type: Transform @@ -86585,7 +86853,7 @@ entities: pos: -8.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14316 components: - type: Transform @@ -86593,7 +86861,7 @@ entities: pos: -8.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14317 components: - type: Transform @@ -86601,56 +86869,56 @@ entities: pos: -8.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14319 components: - type: Transform pos: -9.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14320 components: - type: Transform pos: -9.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14321 components: - type: Transform pos: -9.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14322 components: - type: Transform pos: -9.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14323 components: - type: Transform pos: -9.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14324 components: - type: Transform pos: -9.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14455 components: - type: Transform pos: -27.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14456 components: - type: Transform @@ -86658,7 +86926,7 @@ entities: pos: -26.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14457 components: - type: Transform @@ -86666,7 +86934,7 @@ entities: pos: -26.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14458 components: - type: Transform @@ -86674,7 +86942,7 @@ entities: pos: -26.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14459 components: - type: Transform @@ -86682,7 +86950,7 @@ entities: pos: -26.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14460 components: - type: Transform @@ -86690,7 +86958,7 @@ entities: pos: -26.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14461 components: - type: Transform @@ -86698,119 +86966,119 @@ entities: pos: -26.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14462 components: - type: Transform pos: -24.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14463 components: - type: Transform pos: -24.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14464 components: - type: Transform pos: -24.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14465 components: - type: Transform pos: -24.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14466 components: - type: Transform pos: -24.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14467 components: - type: Transform pos: -24.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14469 components: - type: Transform pos: -24.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14470 components: - type: Transform pos: -24.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14471 components: - type: Transform pos: -24.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14472 components: - type: Transform pos: -24.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14473 components: - type: Transform pos: -24.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14474 components: - type: Transform pos: -24.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14475 components: - type: Transform pos: -24.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14476 components: - type: Transform pos: -24.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14489 components: - type: Transform pos: -27.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14495 components: - type: Transform pos: -23.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14643 components: - type: Transform @@ -86818,7 +87086,7 @@ entities: pos: -20.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14644 components: - type: Transform @@ -86826,7 +87094,7 @@ entities: pos: -22.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14662 components: - type: Transform @@ -86839,7 +87107,7 @@ entities: pos: -16.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14669 components: - type: Transform @@ -86847,7 +87115,7 @@ entities: pos: -24.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14671 components: - type: Transform @@ -86855,7 +87123,7 @@ entities: pos: -23.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14672 components: - type: Transform @@ -86863,7 +87131,7 @@ entities: pos: -22.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14686 components: - type: Transform @@ -86904,15 +87172,7 @@ entities: pos: 41.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,30.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 14742 components: - type: Transform @@ -86920,7 +87180,7 @@ entities: pos: -29.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14743 components: - type: Transform @@ -86928,7 +87188,7 @@ entities: pos: -28.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14744 components: - type: Transform @@ -86936,7 +87196,7 @@ entities: pos: -27.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14747 components: - type: Transform @@ -86944,7 +87204,7 @@ entities: pos: -24.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14748 components: - type: Transform @@ -86952,7 +87212,7 @@ entities: pos: -23.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14754 components: - type: Transform @@ -86960,7 +87220,7 @@ entities: pos: -20.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14755 components: - type: Transform @@ -86968,7 +87228,7 @@ entities: pos: -20.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14757 components: - type: Transform @@ -86976,7 +87236,7 @@ entities: pos: -25.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14758 components: - type: Transform @@ -86984,7 +87244,7 @@ entities: pos: -22.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14759 components: - type: Transform @@ -86992,7 +87252,7 @@ entities: pos: -22.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14760 components: - type: Transform @@ -87000,7 +87260,7 @@ entities: pos: -22.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14761 components: - type: Transform @@ -87008,7 +87268,7 @@ entities: pos: -22.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14762 components: - type: Transform @@ -87016,7 +87276,7 @@ entities: pos: -22.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14764 components: - type: Transform @@ -87024,7 +87284,7 @@ entities: pos: -36.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14765 components: - type: Transform @@ -87032,7 +87292,7 @@ entities: pos: -35.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14767 components: - type: Transform @@ -87040,7 +87300,7 @@ entities: pos: -33.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14768 components: - type: Transform @@ -87048,14 +87308,14 @@ entities: pos: -32.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14769 components: - type: Transform pos: -41.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14771 components: - type: Transform @@ -87063,7 +87323,7 @@ entities: pos: -35.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14773 components: - type: Transform @@ -87071,7 +87331,7 @@ entities: pos: -29.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14777 components: - type: Transform @@ -87079,7 +87339,7 @@ entities: pos: -26.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14778 components: - type: Transform @@ -87087,7 +87347,7 @@ entities: pos: -25.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14781 components: - type: Transform @@ -87101,7 +87361,7 @@ entities: pos: -28.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14786 components: - type: Transform @@ -87109,7 +87369,7 @@ entities: pos: -31.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14790 components: - type: Transform @@ -87117,7 +87377,7 @@ entities: pos: -34.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14794 components: - type: Transform @@ -87142,13 +87402,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,41.5 parent: 60 - - uid: 14858 - components: - - type: Transform - pos: -18.5,43.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14870 components: - type: Transform @@ -87156,14 +87409,14 @@ entities: pos: -27.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14871 components: - type: Transform pos: -43.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14878 components: - type: Transform @@ -87171,7 +87424,7 @@ entities: pos: -33.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14879 components: - type: Transform @@ -87179,7 +87432,7 @@ entities: pos: -31.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14883 components: - type: Transform @@ -87211,7 +87464,7 @@ entities: pos: -33.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14897 components: - type: Transform @@ -87253,7 +87506,7 @@ entities: pos: -26.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14934 components: - type: Transform @@ -87261,7 +87514,7 @@ entities: pos: -27.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14935 components: - type: Transform @@ -87269,7 +87522,7 @@ entities: pos: -28.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14936 components: - type: Transform @@ -87277,15 +87530,7 @@ entities: pos: -26.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 60 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 14938 components: - type: Transform @@ -87293,7 +87538,7 @@ entities: pos: -31.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14940 components: - type: Transform @@ -87319,14 +87564,14 @@ entities: pos: 1.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14987 components: - type: Transform pos: -33.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14991 components: - type: Transform @@ -87436,14 +87681,7 @@ entities: - uid: 15073 components: - type: Transform - pos: -17.5,42.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF0D00FF' - - uid: 15074 - components: - - type: Transform - pos: -14.5,43.5 + pos: -15.5,42.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' @@ -87463,10 +87701,10 @@ entities: - uid: 15084 components: - type: Transform - pos: -15.5,42.5 + pos: -17.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#00F2FFFF' + color: '#FF1212FF' - uid: 15090 components: - type: Transform @@ -87537,7 +87775,7 @@ entities: pos: -32.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15118 components: - type: Transform @@ -87623,7 +87861,7 @@ entities: pos: -33.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15146 components: - type: Transform @@ -87643,7 +87881,7 @@ entities: pos: 13.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15172 components: - type: Transform @@ -87675,7 +87913,7 @@ entities: pos: -31.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15273 components: - type: Transform @@ -87735,7 +87973,7 @@ entities: pos: -19.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15358 components: - type: Transform @@ -87743,7 +87981,7 @@ entities: pos: -17.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15365 components: - type: Transform @@ -88058,7 +88296,7 @@ entities: pos: -22.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15589 components: - type: Transform @@ -88066,7 +88304,7 @@ entities: pos: -22.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15590 components: - type: Transform @@ -88074,7 +88312,7 @@ entities: pos: -22.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15592 components: - type: Transform @@ -88082,7 +88320,7 @@ entities: pos: -22.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15598 components: - type: Transform @@ -88090,7 +88328,7 @@ entities: pos: -18.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15606 components: - type: Transform @@ -88098,7 +88336,7 @@ entities: pos: -10.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15607 components: - type: Transform @@ -88106,7 +88344,7 @@ entities: pos: -10.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15608 components: - type: Transform @@ -88114,7 +88352,7 @@ entities: pos: -10.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15609 components: - type: Transform @@ -88122,7 +88360,7 @@ entities: pos: -10.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15610 components: - type: Transform @@ -88130,7 +88368,7 @@ entities: pos: -10.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15611 components: - type: Transform @@ -88138,7 +88376,7 @@ entities: pos: -10.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15614 components: - type: Transform @@ -88146,7 +88384,7 @@ entities: pos: -20.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15615 components: - type: Transform @@ -88154,7 +88392,7 @@ entities: pos: -20.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15616 components: - type: Transform @@ -88162,7 +88400,7 @@ entities: pos: -19.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15618 components: - type: Transform @@ -88170,7 +88408,7 @@ entities: pos: -17.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15619 components: - type: Transform @@ -88178,7 +88416,7 @@ entities: pos: -16.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15620 components: - type: Transform @@ -88186,7 +88424,7 @@ entities: pos: -15.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15622 components: - type: Transform @@ -88194,28 +88432,28 @@ entities: pos: -13.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15623 components: - type: Transform pos: -12.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15624 components: - type: Transform pos: -12.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15625 components: - type: Transform pos: -12.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15627 components: - type: Transform @@ -88223,7 +88461,7 @@ entities: pos: -19.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15628 components: - type: Transform @@ -88231,7 +88469,7 @@ entities: pos: -18.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15629 components: - type: Transform @@ -88239,7 +88477,7 @@ entities: pos: -17.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15630 components: - type: Transform @@ -88247,7 +88485,7 @@ entities: pos: -16.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15631 components: - type: Transform @@ -88255,7 +88493,7 @@ entities: pos: -15.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15632 components: - type: Transform @@ -88263,7 +88501,7 @@ entities: pos: -14.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15633 components: - type: Transform @@ -88271,14 +88509,14 @@ entities: pos: -13.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15634 components: - type: Transform pos: -12.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15638 components: - type: Transform @@ -88286,7 +88524,7 @@ entities: pos: -16.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15639 components: - type: Transform @@ -88294,7 +88532,7 @@ entities: pos: -16.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15640 components: - type: Transform @@ -88302,7 +88540,7 @@ entities: pos: -16.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15641 components: - type: Transform @@ -88310,7 +88548,7 @@ entities: pos: -15.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15642 components: - type: Transform @@ -88318,7 +88556,7 @@ entities: pos: -14.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15643 components: - type: Transform @@ -88326,7 +88564,7 @@ entities: pos: -13.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15644 components: - type: Transform @@ -88334,7 +88572,7 @@ entities: pos: -12.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15645 components: - type: Transform @@ -88342,35 +88580,35 @@ entities: pos: -11.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15646 components: - type: Transform pos: -10.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15655 components: - type: Transform pos: -0.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15656 components: - type: Transform pos: -0.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15657 components: - type: Transform pos: -0.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15658 components: - type: Transform @@ -88378,7 +88616,7 @@ entities: pos: 0.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15659 components: - type: Transform @@ -88386,28 +88624,36 @@ entities: pos: -9.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15662 components: - type: Transform pos: 1.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15663 components: - type: Transform pos: 1.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 15746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,24.5 + parent: 60 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 16562 components: - type: Transform pos: -16.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16564 components: - type: Transform @@ -88415,7 +88661,7 @@ entities: pos: -8.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16565 components: - type: Transform @@ -88423,7 +88669,7 @@ entities: pos: -7.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16566 components: - type: Transform @@ -88431,7 +88677,7 @@ entities: pos: -6.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16567 components: - type: Transform @@ -88439,7 +88685,7 @@ entities: pos: -5.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16568 components: - type: Transform @@ -88447,7 +88693,7 @@ entities: pos: -4.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16569 components: - type: Transform @@ -88455,56 +88701,56 @@ entities: pos: -3.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16570 components: - type: Transform pos: -2.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16572 components: - type: Transform pos: -2.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16573 components: - type: Transform pos: -2.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16574 components: - type: Transform pos: -2.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16575 components: - type: Transform pos: -2.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16577 components: - type: Transform pos: -2.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16578 components: - type: Transform pos: -2.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16579 components: - type: Transform @@ -88512,7 +88758,7 @@ entities: pos: -1.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16583 components: - type: Transform @@ -88520,7 +88766,7 @@ entities: pos: -11.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16584 components: - type: Transform @@ -88528,7 +88774,7 @@ entities: pos: -10.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16585 components: - type: Transform @@ -88536,7 +88782,7 @@ entities: pos: -9.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16586 components: - type: Transform @@ -88544,7 +88790,7 @@ entities: pos: -8.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16587 components: - type: Transform @@ -88552,7 +88798,7 @@ entities: pos: -7.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16588 components: - type: Transform @@ -88560,7 +88806,7 @@ entities: pos: -6.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16589 components: - type: Transform @@ -88568,7 +88814,7 @@ entities: pos: -5.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16590 components: - type: Transform @@ -88576,28 +88822,28 @@ entities: pos: -4.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16591 components: - type: Transform pos: -3.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16592 components: - type: Transform pos: -3.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16593 components: - type: Transform pos: -3.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16595 components: - type: Transform @@ -88605,28 +88851,28 @@ entities: pos: -3.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16596 components: - type: Transform pos: -3.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16597 components: - type: Transform pos: -3.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16598 components: - type: Transform pos: -3.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16600 components: - type: Transform @@ -88634,7 +88880,7 @@ entities: pos: -2.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16601 components: - type: Transform @@ -88642,7 +88888,7 @@ entities: pos: -1.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16602 components: - type: Transform @@ -88650,7 +88896,7 @@ entities: pos: -0.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16603 components: - type: Transform @@ -88658,7 +88904,7 @@ entities: pos: 0.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16606 components: - type: Transform @@ -88666,7 +88912,7 @@ entities: pos: -2.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16607 components: - type: Transform @@ -88674,7 +88920,7 @@ entities: pos: -1.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16609 components: - type: Transform @@ -88682,7 +88928,7 @@ entities: pos: -0.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16610 components: - type: Transform @@ -88690,7 +88936,7 @@ entities: pos: 0.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16613 components: - type: Transform @@ -88698,7 +88944,7 @@ entities: pos: -0.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16614 components: - type: Transform @@ -88706,7 +88952,7 @@ entities: pos: -0.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16617 components: - type: Transform @@ -88714,7 +88960,7 @@ entities: pos: 1.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16618 components: - type: Transform @@ -88722,7 +88968,7 @@ entities: pos: 1.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16622 components: - type: Transform @@ -88730,15 +88976,7 @@ entities: pos: -2.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,24.5 - parent: 60 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16624 components: - type: Transform @@ -88746,7 +88984,7 @@ entities: pos: -0.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16625 components: - type: Transform @@ -88754,7 +88992,7 @@ entities: pos: 1.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16626 components: - type: Transform @@ -88762,7 +89000,7 @@ entities: pos: 2.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16627 components: - type: Transform @@ -88770,7 +89008,7 @@ entities: pos: 3.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16628 components: - type: Transform @@ -88778,7 +89016,7 @@ entities: pos: 4.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16629 components: - type: Transform @@ -88786,7 +89024,7 @@ entities: pos: 2.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16630 components: - type: Transform @@ -88794,7 +89032,7 @@ entities: pos: 3.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16631 components: - type: Transform @@ -88802,35 +89040,35 @@ entities: pos: 4.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16637 components: - type: Transform pos: -3.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16638 components: - type: Transform pos: -3.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16639 components: - type: Transform pos: -3.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16640 components: - type: Transform pos: -2.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16644 components: - type: Transform @@ -88838,7 +89076,7 @@ entities: pos: 2.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16646 components: - type: Transform @@ -88846,7 +89084,7 @@ entities: pos: 1.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16649 components: - type: Transform @@ -88854,7 +89092,7 @@ entities: pos: 5.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16650 components: - type: Transform @@ -88862,7 +89100,7 @@ entities: pos: 6.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16651 components: - type: Transform @@ -88870,7 +89108,7 @@ entities: pos: 7.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16652 components: - type: Transform @@ -88878,7 +89116,7 @@ entities: pos: 8.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16653 components: - type: Transform @@ -88886,7 +89124,7 @@ entities: pos: 9.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16655 components: - type: Transform @@ -88894,7 +89132,7 @@ entities: pos: 11.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16657 components: - type: Transform @@ -88902,14 +89140,14 @@ entities: pos: 3.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16658 components: - type: Transform pos: 4.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16660 components: - type: Transform @@ -88917,7 +89155,7 @@ entities: pos: 6.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16661 components: - type: Transform @@ -88925,7 +89163,7 @@ entities: pos: 7.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16662 components: - type: Transform @@ -88933,7 +89171,7 @@ entities: pos: 8.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16663 components: - type: Transform @@ -88941,7 +89179,7 @@ entities: pos: 9.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16665 components: - type: Transform @@ -88949,7 +89187,7 @@ entities: pos: 11.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16671 components: - type: Transform @@ -88957,7 +89195,7 @@ entities: pos: 5.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16676 components: - type: Transform @@ -88965,7 +89203,7 @@ entities: pos: 5.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16677 components: - type: Transform @@ -88973,7 +89211,7 @@ entities: pos: 5.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16742 components: - type: Transform @@ -89004,7 +89242,7 @@ entities: pos: -50.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17458 components: - type: Transform @@ -89012,7 +89250,7 @@ entities: pos: -44.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17506 components: - type: Transform @@ -89020,7 +89258,7 @@ entities: pos: 18.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17507 components: - type: Transform @@ -89028,7 +89266,7 @@ entities: pos: 19.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17508 components: - type: Transform @@ -89036,7 +89274,7 @@ entities: pos: 20.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17510 components: - type: Transform @@ -89044,7 +89282,7 @@ entities: pos: 22.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17511 components: - type: Transform @@ -89052,7 +89290,7 @@ entities: pos: 23.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17512 components: - type: Transform @@ -89060,7 +89298,7 @@ entities: pos: 24.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17513 components: - type: Transform @@ -89068,7 +89306,7 @@ entities: pos: 25.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17514 components: - type: Transform @@ -89076,7 +89314,7 @@ entities: pos: 26.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17515 components: - type: Transform @@ -89084,7 +89322,7 @@ entities: pos: 27.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17516 components: - type: Transform @@ -89092,7 +89330,7 @@ entities: pos: 28.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17517 components: - type: Transform @@ -89100,7 +89338,7 @@ entities: pos: 29.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17518 components: - type: Transform @@ -89108,7 +89346,7 @@ entities: pos: 30.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17519 components: - type: Transform @@ -89116,7 +89354,7 @@ entities: pos: 31.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17520 components: - type: Transform @@ -89124,7 +89362,7 @@ entities: pos: 32.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17521 components: - type: Transform @@ -89132,7 +89370,7 @@ entities: pos: 33.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17522 components: - type: Transform @@ -89140,7 +89378,7 @@ entities: pos: 34.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17524 components: - type: Transform @@ -89148,7 +89386,7 @@ entities: pos: 36.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17526 components: - type: Transform @@ -89156,7 +89394,7 @@ entities: pos: 38.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17527 components: - type: Transform @@ -89164,7 +89402,7 @@ entities: pos: 39.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17528 components: - type: Transform @@ -89172,105 +89410,105 @@ entities: pos: 40.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17530 components: - type: Transform pos: 41.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17531 components: - type: Transform pos: 41.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17532 components: - type: Transform pos: 41.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17533 components: - type: Transform pos: 41.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17534 components: - type: Transform pos: 41.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17535 components: - type: Transform pos: 41.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17536 components: - type: Transform pos: 41.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17537 components: - type: Transform pos: 41.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17539 components: - type: Transform pos: 41.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17540 components: - type: Transform pos: 41.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17541 components: - type: Transform pos: 41.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17542 components: - type: Transform pos: 41.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17543 components: - type: Transform pos: 41.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17544 components: - type: Transform pos: 41.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17546 components: - type: Transform @@ -89278,7 +89516,7 @@ entities: pos: 40.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17547 components: - type: Transform @@ -89286,28 +89524,28 @@ entities: pos: 39.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17548 components: - type: Transform pos: 39.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17549 components: - type: Transform pos: 39.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17550 components: - type: Transform pos: 39.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17569 components: - type: Transform @@ -89315,7 +89553,7 @@ entities: pos: -37.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17571 components: - type: Transform @@ -89323,7 +89561,7 @@ entities: pos: -39.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17572 components: - type: Transform @@ -89331,7 +89569,7 @@ entities: pos: -40.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17573 components: - type: Transform @@ -89339,7 +89577,7 @@ entities: pos: -41.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17574 components: - type: Transform @@ -89353,7 +89591,7 @@ entities: pos: -37.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17576 components: - type: Transform @@ -89361,7 +89599,7 @@ entities: pos: -38.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17577 components: - type: Transform @@ -89369,7 +89607,7 @@ entities: pos: -39.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17578 components: - type: Transform @@ -89377,7 +89615,7 @@ entities: pos: -40.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17579 components: - type: Transform @@ -89390,21 +89628,21 @@ entities: pos: -43.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17582 components: - type: Transform pos: -43.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17584 components: - type: Transform pos: -41.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17588 components: - type: Transform @@ -89412,7 +89650,7 @@ entities: pos: -41.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17589 components: - type: Transform @@ -89420,7 +89658,7 @@ entities: pos: -42.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17590 components: - type: Transform @@ -89428,7 +89666,7 @@ entities: pos: -43.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17591 components: - type: Transform @@ -89436,7 +89674,7 @@ entities: pos: -45.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17592 components: - type: Transform @@ -89444,7 +89682,7 @@ entities: pos: -45.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17593 components: - type: Transform @@ -89452,7 +89690,7 @@ entities: pos: -44.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17594 components: - type: Transform @@ -89466,7 +89704,7 @@ entities: pos: -43.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17596 components: - type: Transform @@ -89474,7 +89712,7 @@ entities: pos: -44.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17597 components: - type: Transform @@ -89482,7 +89720,7 @@ entities: pos: -45.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17598 components: - type: Transform @@ -89490,7 +89728,7 @@ entities: pos: -44.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17599 components: - type: Transform @@ -89498,77 +89736,77 @@ entities: pos: -45.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17605 components: - type: Transform pos: -38.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17606 components: - type: Transform pos: -38.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17607 components: - type: Transform pos: -38.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17608 components: - type: Transform pos: -38.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17609 components: - type: Transform pos: -36.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17610 components: - type: Transform pos: -36.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17611 components: - type: Transform pos: -36.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17612 components: - type: Transform pos: -36.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17613 components: - type: Transform pos: -34.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17614 components: - type: Transform pos: -34.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17699 components: - type: Transform @@ -89576,84 +89814,84 @@ entities: pos: 23.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17711 components: - type: Transform pos: 39.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17746 components: - type: Transform pos: 39.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17747 components: - type: Transform pos: 39.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17748 components: - type: Transform pos: 39.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17842 components: - type: Transform pos: 39.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17846 components: - type: Transform pos: 39.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17847 components: - type: Transform pos: 39.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17848 components: - type: Transform pos: 39.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17849 components: - type: Transform pos: 39.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17850 components: - type: Transform pos: 39.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17862 components: - type: Transform pos: 39.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17866 components: - type: Transform @@ -89661,7 +89899,7 @@ entities: pos: 23.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17869 components: - type: Transform @@ -89669,7 +89907,7 @@ entities: pos: 23.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17880 components: - type: Transform @@ -89677,7 +89915,7 @@ entities: pos: 40.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17881 components: - type: Transform @@ -89685,7 +89923,7 @@ entities: pos: 41.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17882 components: - type: Transform @@ -89693,7 +89931,7 @@ entities: pos: 42.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17885 components: - type: Transform @@ -89701,7 +89939,7 @@ entities: pos: 43.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17886 components: - type: Transform @@ -89709,7 +89947,7 @@ entities: pos: 44.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17888 components: - type: Transform @@ -89717,7 +89955,7 @@ entities: pos: 46.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17889 components: - type: Transform @@ -89725,7 +89963,7 @@ entities: pos: 47.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17890 components: - type: Transform @@ -89733,7 +89971,7 @@ entities: pos: 48.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18097 components: - type: Transform @@ -89741,7 +89979,7 @@ entities: pos: 50.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18101 components: - type: Transform @@ -89749,7 +89987,7 @@ entities: pos: 51.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18102 components: - type: Transform @@ -89757,7 +89995,7 @@ entities: pos: 42.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18216 components: - type: Transform @@ -89765,7 +90003,7 @@ entities: pos: -2.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18218 components: - type: Transform @@ -89773,84 +90011,84 @@ entities: pos: 1.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18219 components: - type: Transform pos: 1.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18220 components: - type: Transform pos: 1.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18221 components: - type: Transform pos: 1.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18222 components: - type: Transform pos: 1.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18224 components: - type: Transform pos: 1.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18225 components: - type: Transform pos: 1.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18226 components: - type: Transform pos: 1.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18227 components: - type: Transform pos: 1.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18228 components: - type: Transform pos: 1.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18229 components: - type: Transform pos: 1.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18230 components: - type: Transform pos: -0.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18232 components: - type: Transform @@ -89858,35 +90096,35 @@ entities: pos: -0.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18233 components: - type: Transform pos: -0.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18234 components: - type: Transform pos: -0.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18235 components: - type: Transform pos: -0.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18236 components: - type: Transform pos: -0.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18237 components: - type: Transform @@ -89894,28 +90132,28 @@ entities: pos: 0.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18238 components: - type: Transform pos: -0.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18240 components: - type: Transform pos: -0.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18241 components: - type: Transform pos: -0.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18244 components: - type: Transform @@ -89923,7 +90161,7 @@ entities: pos: -1.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18245 components: - type: Transform @@ -89931,7 +90169,7 @@ entities: pos: 0.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18246 components: - type: Transform @@ -89939,7 +90177,7 @@ entities: pos: -0.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18247 components: - type: Transform @@ -89947,7 +90185,7 @@ entities: pos: -1.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18248 components: - type: Transform @@ -89955,28 +90193,28 @@ entities: pos: -2.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18251 components: - type: Transform pos: -2.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18252 components: - type: Transform pos: -2.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18253 components: - type: Transform pos: -2.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18262 components: - type: Transform @@ -89984,28 +90222,28 @@ entities: pos: -6.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18263 components: - type: Transform pos: -3.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18264 components: - type: Transform pos: -3.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18265 components: - type: Transform pos: -3.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18268 components: - type: Transform @@ -90013,7 +90251,7 @@ entities: pos: -5.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18269 components: - type: Transform @@ -90021,7 +90259,7 @@ entities: pos: -6.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18274 components: - type: Transform @@ -90029,7 +90267,7 @@ entities: pos: -2.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18275 components: - type: Transform @@ -90037,7 +90275,7 @@ entities: pos: -2.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18278 components: - type: Transform @@ -90045,7 +90283,7 @@ entities: pos: -4.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18279 components: - type: Transform @@ -90053,7 +90291,7 @@ entities: pos: -4.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18280 components: - type: Transform @@ -90061,7 +90299,7 @@ entities: pos: -3.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18417 components: - type: Transform @@ -90069,7 +90307,7 @@ entities: pos: 2.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18418 components: - type: Transform @@ -90077,7 +90315,7 @@ entities: pos: 3.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18419 components: - type: Transform @@ -90085,7 +90323,7 @@ entities: pos: 4.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18420 components: - type: Transform @@ -90093,7 +90331,7 @@ entities: pos: 1.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18421 components: - type: Transform @@ -90101,7 +90339,7 @@ entities: pos: 2.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18422 components: - type: Transform @@ -90109,7 +90347,7 @@ entities: pos: 3.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18431 components: - type: Transform @@ -90117,7 +90355,7 @@ entities: pos: -3.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18432 components: - type: Transform @@ -90125,7 +90363,7 @@ entities: pos: -3.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18433 components: - type: Transform @@ -90133,7 +90371,7 @@ entities: pos: -3.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18502 components: - type: Transform @@ -90141,7 +90379,7 @@ entities: pos: -5.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18533 components: - type: Transform @@ -90149,7 +90387,7 @@ entities: pos: 1.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18535 components: - type: Transform @@ -90157,7 +90395,7 @@ entities: pos: 3.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18536 components: - type: Transform @@ -90165,7 +90403,7 @@ entities: pos: 4.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18537 components: - type: Transform @@ -90173,7 +90411,7 @@ entities: pos: 4.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18538 components: - type: Transform @@ -90181,7 +90419,7 @@ entities: pos: 4.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18543 components: - type: Transform @@ -90189,7 +90427,7 @@ entities: pos: 45.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18545 components: - type: Transform @@ -90197,7 +90435,7 @@ entities: pos: 46.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18551 components: - type: Transform @@ -90205,7 +90443,7 @@ entities: pos: 47.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18585 components: - type: Transform @@ -90213,7 +90451,7 @@ entities: pos: 49.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18648 components: - type: Transform @@ -90221,7 +90459,7 @@ entities: pos: 50.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18650 components: - type: Transform @@ -90229,7 +90467,7 @@ entities: pos: 45.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18651 components: - type: Transform @@ -90237,7 +90475,7 @@ entities: pos: 45.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18654 components: - type: Transform @@ -90245,7 +90483,7 @@ entities: pos: 43.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18655 components: - type: Transform @@ -90253,7 +90491,7 @@ entities: pos: 43.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18656 components: - type: Transform @@ -90261,21 +90499,21 @@ entities: pos: 43.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18660 components: - type: Transform pos: 52.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18661 components: - type: Transform pos: 52.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18665 components: - type: Transform @@ -90283,7 +90521,7 @@ entities: pos: 51.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18666 components: - type: Transform @@ -90291,7 +90529,7 @@ entities: pos: 50.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18667 components: - type: Transform @@ -90299,7 +90537,7 @@ entities: pos: 49.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18670 components: - type: Transform @@ -90307,7 +90545,7 @@ entities: pos: 51.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18672 components: - type: Transform @@ -90315,7 +90553,7 @@ entities: pos: 51.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18673 components: - type: Transform @@ -90323,7 +90561,7 @@ entities: pos: 51.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18674 components: - type: Transform @@ -90331,7 +90569,7 @@ entities: pos: 51.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18675 components: - type: Transform @@ -90339,7 +90577,7 @@ entities: pos: 51.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18680 components: - type: Transform @@ -90347,7 +90585,7 @@ entities: pos: 50.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18684 components: - type: Transform @@ -90355,7 +90593,7 @@ entities: pos: 49.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18688 components: - type: Transform @@ -90363,7 +90601,7 @@ entities: pos: 52.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18689 components: - type: Transform @@ -90371,7 +90609,7 @@ entities: pos: 52.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18690 components: - type: Transform @@ -90379,7 +90617,7 @@ entities: pos: 39.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18692 components: - type: Transform @@ -90387,7 +90625,7 @@ entities: pos: 39.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18711 components: - type: Transform @@ -90395,7 +90633,7 @@ entities: pos: 39.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18714 components: - type: Transform @@ -90403,35 +90641,35 @@ entities: pos: 38.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18715 components: - type: Transform pos: 37.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18716 components: - type: Transform pos: 37.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18718 components: - type: Transform pos: 37.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18872 components: - type: Transform pos: 48.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18892 components: - type: Transform @@ -90444,21 +90682,21 @@ entities: pos: 47.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18912 components: - type: Transform pos: 47.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18913 components: - type: Transform pos: 47.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18928 components: - type: Transform @@ -90494,7 +90732,7 @@ entities: pos: 16.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19172 components: - type: Transform @@ -90502,7 +90740,7 @@ entities: pos: 17.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19173 components: - type: Transform @@ -90510,7 +90748,7 @@ entities: pos: 18.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19174 components: - type: Transform @@ -90518,7 +90756,7 @@ entities: pos: 19.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19175 components: - type: Transform @@ -90526,7 +90764,7 @@ entities: pos: 20.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19176 components: - type: Transform @@ -90534,7 +90772,7 @@ entities: pos: 18.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19177 components: - type: Transform @@ -90542,7 +90780,7 @@ entities: pos: 19.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19178 components: - type: Transform @@ -90550,7 +90788,7 @@ entities: pos: 20.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21289 components: - type: Transform @@ -90558,7 +90796,7 @@ entities: pos: -56.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21301 components: - type: Transform @@ -90566,7 +90804,7 @@ entities: pos: -57.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21302 components: - type: Transform @@ -90574,7 +90812,7 @@ entities: pos: -58.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21304 components: - type: Transform @@ -90582,7 +90820,7 @@ entities: pos: -58.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21305 components: - type: Transform @@ -90590,7 +90828,7 @@ entities: pos: -59.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21306 components: - type: Transform @@ -90598,7 +90836,7 @@ entities: pos: -60.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21307 components: - type: Transform @@ -90606,7 +90844,7 @@ entities: pos: -61.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21308 components: - type: Transform @@ -90614,7 +90852,7 @@ entities: pos: -62.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21309 components: - type: Transform @@ -90622,7 +90860,7 @@ entities: pos: -63.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21310 components: - type: Transform @@ -90630,7 +90868,7 @@ entities: pos: -64.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21311 components: - type: Transform @@ -90638,7 +90876,7 @@ entities: pos: -65.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21312 components: - type: Transform @@ -90646,7 +90884,7 @@ entities: pos: -66.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21313 components: - type: Transform @@ -90654,7 +90892,7 @@ entities: pos: -67.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21314 components: - type: Transform @@ -90662,7 +90900,7 @@ entities: pos: -68.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21315 components: - type: Transform @@ -90670,7 +90908,7 @@ entities: pos: -69.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21316 components: - type: Transform @@ -90678,7 +90916,7 @@ entities: pos: -70.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21317 components: - type: Transform @@ -90686,7 +90924,7 @@ entities: pos: -71.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21319 components: - type: Transform @@ -90694,7 +90932,7 @@ entities: pos: -73.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21320 components: - type: Transform @@ -90702,7 +90940,7 @@ entities: pos: -74.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21321 components: - type: Transform @@ -90710,7 +90948,7 @@ entities: pos: -75.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21322 components: - type: Transform @@ -90718,7 +90956,7 @@ entities: pos: -76.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21323 components: - type: Transform @@ -90726,7 +90964,7 @@ entities: pos: -77.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21324 components: - type: Transform @@ -90734,7 +90972,7 @@ entities: pos: -78.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21329 components: - type: Transform @@ -90779,7 +91017,7 @@ entities: pos: -7.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21659 components: - type: Transform @@ -90787,7 +91025,7 @@ entities: pos: -23.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21660 components: - type: Transform @@ -90795,7 +91033,7 @@ entities: pos: -24.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21661 components: - type: Transform @@ -90803,7 +91041,7 @@ entities: pos: -25.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21662 components: - type: Transform @@ -90811,7 +91049,7 @@ entities: pos: -26.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21663 components: - type: Transform @@ -90819,7 +91057,7 @@ entities: pos: -27.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21664 components: - type: Transform @@ -90827,7 +91065,7 @@ entities: pos: -28.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22790 components: - type: Transform @@ -90835,7 +91073,7 @@ entities: pos: -79.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22791 components: - type: Transform @@ -90843,7 +91081,7 @@ entities: pos: -80.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22792 components: - type: Transform @@ -90851,7 +91089,7 @@ entities: pos: -81.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22793 components: - type: Transform @@ -90859,7 +91097,7 @@ entities: pos: -82.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22794 components: - type: Transform @@ -90867,7 +91105,7 @@ entities: pos: -83.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22795 components: - type: Transform @@ -90875,7 +91113,7 @@ entities: pos: -84.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22796 components: - type: Transform @@ -90883,7 +91121,7 @@ entities: pos: -85.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22797 components: - type: Transform @@ -90891,7 +91129,7 @@ entities: pos: -86.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22798 components: - type: Transform @@ -90899,7 +91137,7 @@ entities: pos: -87.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22799 components: - type: Transform @@ -90907,7 +91145,7 @@ entities: pos: -88.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22800 components: - type: Transform @@ -90915,7 +91153,7 @@ entities: pos: -89.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22801 components: - type: Transform @@ -90923,7 +91161,7 @@ entities: pos: -90.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22802 components: - type: Transform @@ -90931,7 +91169,7 @@ entities: pos: -91.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22803 components: - type: Transform @@ -90939,7 +91177,7 @@ entities: pos: -92.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22804 components: - type: Transform @@ -90947,7 +91185,7 @@ entities: pos: -93.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22805 components: - type: Transform @@ -90955,7 +91193,7 @@ entities: pos: -94.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22806 components: - type: Transform @@ -90963,7 +91201,7 @@ entities: pos: -95.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22807 components: - type: Transform @@ -90971,7 +91209,7 @@ entities: pos: -96.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22808 components: - type: Transform @@ -90979,7 +91217,7 @@ entities: pos: -97.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22809 components: - type: Transform @@ -90987,7 +91225,7 @@ entities: pos: -98.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22811 components: - type: Transform @@ -90995,7 +91233,7 @@ entities: pos: -100.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22812 components: - type: Transform @@ -91003,7 +91241,7 @@ entities: pos: -101.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22813 components: - type: Transform @@ -91011,7 +91249,7 @@ entities: pos: -102.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22815 components: - type: Transform @@ -91019,7 +91257,7 @@ entities: pos: -104.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22816 components: - type: Transform @@ -91027,7 +91265,7 @@ entities: pos: -105.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22817 components: - type: Transform @@ -91035,7 +91273,7 @@ entities: pos: -106.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22818 components: - type: Transform @@ -91043,7 +91281,7 @@ entities: pos: -107.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22819 components: - type: Transform @@ -91051,7 +91289,7 @@ entities: pos: -108.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22820 components: - type: Transform @@ -91059,7 +91297,7 @@ entities: pos: -109.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22821 components: - type: Transform @@ -91067,7 +91305,7 @@ entities: pos: -110.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22824 components: - type: Transform @@ -91075,7 +91313,7 @@ entities: pos: -113.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22825 components: - type: Transform @@ -91083,7 +91321,7 @@ entities: pos: -114.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22826 components: - type: Transform @@ -91091,7 +91329,7 @@ entities: pos: -115.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22827 components: - type: Transform @@ -91099,7 +91337,7 @@ entities: pos: -116.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22830 components: - type: Transform @@ -91107,7 +91345,7 @@ entities: pos: -111.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22831 components: - type: Transform @@ -91115,7 +91353,7 @@ entities: pos: -111.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22832 components: - type: Transform @@ -91123,7 +91361,7 @@ entities: pos: -111.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22833 components: - type: Transform @@ -91131,7 +91369,7 @@ entities: pos: -111.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22834 components: - type: Transform @@ -91139,7 +91377,7 @@ entities: pos: -111.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22835 components: - type: Transform @@ -91147,7 +91385,7 @@ entities: pos: -111.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22836 components: - type: Transform @@ -91155,7 +91393,7 @@ entities: pos: -111.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22837 components: - type: Transform @@ -91163,7 +91401,7 @@ entities: pos: -111.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22838 components: - type: Transform @@ -91171,7 +91409,7 @@ entities: pos: -111.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22840 components: - type: Transform @@ -91179,7 +91417,7 @@ entities: pos: -111.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22841 components: - type: Transform @@ -91187,7 +91425,7 @@ entities: pos: -111.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22842 components: - type: Transform @@ -91195,7 +91433,7 @@ entities: pos: -111.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22843 components: - type: Transform @@ -91203,7 +91441,7 @@ entities: pos: -111.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22844 components: - type: Transform @@ -91211,7 +91449,7 @@ entities: pos: -111.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22845 components: - type: Transform @@ -91219,7 +91457,7 @@ entities: pos: -111.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22848 components: - type: Transform @@ -91227,7 +91465,7 @@ entities: pos: -99.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22849 components: - type: Transform @@ -91235,7 +91473,7 @@ entities: pos: -99.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22850 components: - type: Transform @@ -91243,7 +91481,7 @@ entities: pos: -99.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22851 components: - type: Transform @@ -91251,7 +91489,7 @@ entities: pos: -100.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22852 components: - type: Transform @@ -91259,91 +91497,91 @@ entities: pos: -101.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22853 components: - type: Transform pos: -102.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22854 components: - type: Transform pos: -102.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22855 components: - type: Transform pos: -102.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22856 components: - type: Transform pos: -102.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22857 components: - type: Transform pos: -102.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22858 components: - type: Transform pos: -102.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22859 components: - type: Transform pos: -102.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22860 components: - type: Transform pos: -102.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22861 components: - type: Transform pos: -102.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22862 components: - type: Transform pos: -102.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22863 components: - type: Transform pos: -102.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22864 components: - type: Transform pos: -102.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22865 components: - type: Transform @@ -91351,7 +91589,7 @@ entities: pos: -103.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22866 components: - type: Transform @@ -91359,7 +91597,7 @@ entities: pos: -104.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22867 components: - type: Transform @@ -91367,7 +91605,7 @@ entities: pos: -105.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22868 components: - type: Transform @@ -91375,7 +91613,7 @@ entities: pos: -106.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22869 components: - type: Transform @@ -91383,7 +91621,7 @@ entities: pos: -107.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22870 components: - type: Transform @@ -91391,7 +91629,7 @@ entities: pos: -108.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22871 components: - type: Transform @@ -91399,7 +91637,7 @@ entities: pos: -109.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22900 components: - type: Transform @@ -91407,35 +91645,35 @@ entities: pos: -112.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22901 components: - type: Transform pos: -113.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22902 components: - type: Transform pos: -113.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22903 components: - type: Transform pos: -113.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22904 components: - type: Transform pos: -113.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22905 components: - type: Transform @@ -91443,7 +91681,7 @@ entities: pos: -112.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22919 components: - type: Transform @@ -92520,7 +92758,7 @@ entities: pos: -30.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23925 components: - type: Transform @@ -92528,7 +92766,7 @@ entities: pos: -22.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23977 components: - type: Transform @@ -92536,7 +92774,7 @@ entities: pos: 15.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24128 components: - type: Transform @@ -92544,7 +92782,7 @@ entities: pos: -6.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24130 components: - type: Transform @@ -92552,7 +92790,7 @@ entities: pos: -7.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24131 components: - type: Transform @@ -92560,7 +92798,7 @@ entities: pos: -8.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24132 components: - type: Transform @@ -92568,7 +92806,7 @@ entities: pos: -7.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24135 components: - type: Transform @@ -92576,7 +92814,7 @@ entities: pos: -6.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24357 components: - type: Transform @@ -92584,7 +92822,7 @@ entities: pos: 46.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24750 components: - type: Transform @@ -92592,7 +92830,7 @@ entities: pos: 54.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24827 components: - type: Transform @@ -92600,7 +92838,7 @@ entities: pos: 53.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24828 components: - type: Transform @@ -92608,7 +92846,7 @@ entities: pos: 52.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24829 components: - type: Transform @@ -92616,7 +92854,7 @@ entities: pos: 51.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24830 components: - type: Transform @@ -92624,7 +92862,7 @@ entities: pos: 50.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24831 components: - type: Transform @@ -92632,7 +92870,7 @@ entities: pos: 49.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24832 components: - type: Transform @@ -92640,7 +92878,7 @@ entities: pos: 48.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24833 components: - type: Transform @@ -92648,7 +92886,7 @@ entities: pos: 47.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24835 components: - type: Transform @@ -92656,7 +92894,7 @@ entities: pos: 44.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24836 components: - type: Transform @@ -92664,7 +92902,7 @@ entities: pos: 43.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24837 components: - type: Transform @@ -92672,7 +92910,7 @@ entities: pos: 42.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24838 components: - type: Transform @@ -92680,7 +92918,7 @@ entities: pos: 46.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24839 components: - type: Transform @@ -92688,7 +92926,7 @@ entities: pos: 42.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24840 components: - type: Transform @@ -92696,7 +92934,7 @@ entities: pos: 44.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24841 components: - type: Transform @@ -92704,7 +92942,7 @@ entities: pos: 45.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24842 components: - type: Transform @@ -92712,7 +92950,7 @@ entities: pos: 46.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24843 components: - type: Transform @@ -92720,7 +92958,7 @@ entities: pos: 47.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24844 components: - type: Transform @@ -92728,7 +92966,7 @@ entities: pos: 48.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24846 components: - type: Transform @@ -92736,7 +92974,7 @@ entities: pos: 49.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24847 components: - type: Transform @@ -92744,7 +92982,7 @@ entities: pos: 50.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24848 components: - type: Transform @@ -92752,7 +92990,7 @@ entities: pos: 51.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24849 components: - type: Transform @@ -92760,7 +92998,7 @@ entities: pos: 52.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24850 components: - type: Transform @@ -92768,7 +93006,7 @@ entities: pos: 55.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24851 components: - type: Transform @@ -92776,7 +93014,7 @@ entities: pos: 55.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24852 components: - type: Transform @@ -92784,7 +93022,7 @@ entities: pos: 55.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24853 components: - type: Transform @@ -92792,7 +93030,7 @@ entities: pos: 55.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24854 components: - type: Transform @@ -92800,7 +93038,7 @@ entities: pos: 55.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24855 components: - type: Transform @@ -92808,7 +93046,7 @@ entities: pos: 55.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24856 components: - type: Transform @@ -92816,7 +93054,7 @@ entities: pos: 55.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24857 components: - type: Transform @@ -92824,7 +93062,7 @@ entities: pos: 55.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24858 components: - type: Transform @@ -92832,7 +93070,7 @@ entities: pos: 55.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24859 components: - type: Transform @@ -92840,7 +93078,7 @@ entities: pos: 55.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24860 components: - type: Transform @@ -92848,7 +93086,7 @@ entities: pos: 55.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24861 components: - type: Transform @@ -92856,7 +93094,7 @@ entities: pos: 55.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24862 components: - type: Transform @@ -92864,7 +93102,7 @@ entities: pos: 55.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24863 components: - type: Transform @@ -92872,7 +93110,7 @@ entities: pos: 55.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24864 components: - type: Transform @@ -92880,7 +93118,7 @@ entities: pos: 55.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24865 components: - type: Transform @@ -92888,7 +93126,7 @@ entities: pos: 55.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24866 components: - type: Transform @@ -92896,7 +93134,7 @@ entities: pos: 55.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24867 components: - type: Transform @@ -92904,7 +93142,7 @@ entities: pos: 55.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24868 components: - type: Transform @@ -92912,7 +93150,7 @@ entities: pos: 55.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24869 components: - type: Transform @@ -92920,7 +93158,7 @@ entities: pos: 55.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24870 components: - type: Transform @@ -92928,7 +93166,7 @@ entities: pos: 55.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24872 components: - type: Transform @@ -92936,7 +93174,7 @@ entities: pos: 53.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24873 components: - type: Transform @@ -92944,7 +93182,7 @@ entities: pos: 53.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24874 components: - type: Transform @@ -92952,7 +93190,7 @@ entities: pos: 53.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24875 components: - type: Transform @@ -92960,7 +93198,7 @@ entities: pos: 53.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24876 components: - type: Transform @@ -92968,7 +93206,7 @@ entities: pos: 53.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24877 components: - type: Transform @@ -92976,7 +93214,7 @@ entities: pos: 53.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24879 components: - type: Transform @@ -92984,7 +93222,7 @@ entities: pos: 53.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24880 components: - type: Transform @@ -92992,7 +93230,7 @@ entities: pos: 53.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24881 components: - type: Transform @@ -93000,7 +93238,7 @@ entities: pos: 53.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24882 components: - type: Transform @@ -93008,7 +93246,7 @@ entities: pos: 53.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24883 components: - type: Transform @@ -93016,7 +93254,7 @@ entities: pos: 53.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24884 components: - type: Transform @@ -93024,7 +93262,7 @@ entities: pos: 53.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24885 components: - type: Transform @@ -93032,7 +93270,7 @@ entities: pos: 53.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24886 components: - type: Transform @@ -93040,7 +93278,7 @@ entities: pos: 53.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24887 components: - type: Transform @@ -93048,7 +93286,7 @@ entities: pos: 53.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24888 components: - type: Transform @@ -93056,7 +93294,7 @@ entities: pos: 53.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24889 components: - type: Transform @@ -93064,7 +93302,7 @@ entities: pos: 53.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24890 components: - type: Transform @@ -93072,7 +93310,7 @@ entities: pos: 53.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24892 components: - type: Transform @@ -93080,7 +93318,7 @@ entities: pos: 33.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24893 components: - type: Transform @@ -93088,7 +93326,7 @@ entities: pos: 33.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24894 components: - type: Transform @@ -93096,7 +93334,7 @@ entities: pos: 33.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24895 components: - type: Transform @@ -93104,7 +93342,7 @@ entities: pos: 33.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24896 components: - type: Transform @@ -93112,7 +93350,7 @@ entities: pos: 33.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24897 components: - type: Transform @@ -93120,7 +93358,7 @@ entities: pos: 33.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24898 components: - type: Transform @@ -93128,7 +93366,7 @@ entities: pos: 33.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24899 components: - type: Transform @@ -93136,7 +93374,7 @@ entities: pos: 33.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24900 components: - type: Transform @@ -93144,7 +93382,7 @@ entities: pos: 33.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24901 components: - type: Transform @@ -93152,7 +93390,7 @@ entities: pos: 33.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24903 components: - type: Transform @@ -93160,7 +93398,7 @@ entities: pos: 33.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24904 components: - type: Transform @@ -93168,7 +93406,7 @@ entities: pos: 33.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24905 components: - type: Transform @@ -93176,7 +93414,7 @@ entities: pos: 33.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24906 components: - type: Transform @@ -93184,7 +93422,7 @@ entities: pos: 33.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24907 components: - type: Transform @@ -93192,7 +93430,7 @@ entities: pos: 33.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24908 components: - type: Transform @@ -93200,7 +93438,7 @@ entities: pos: 33.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24909 components: - type: Transform @@ -93208,7 +93446,7 @@ entities: pos: 33.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24910 components: - type: Transform @@ -93216,7 +93454,7 @@ entities: pos: 33.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24911 components: - type: Transform @@ -93224,7 +93462,7 @@ entities: pos: 35.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24912 components: - type: Transform @@ -93232,7 +93470,7 @@ entities: pos: 35.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24913 components: - type: Transform @@ -93240,7 +93478,7 @@ entities: pos: 35.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24914 components: - type: Transform @@ -93248,7 +93486,7 @@ entities: pos: 35.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24915 components: - type: Transform @@ -93256,7 +93494,7 @@ entities: pos: 35.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24917 components: - type: Transform @@ -93264,7 +93502,7 @@ entities: pos: 35.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24918 components: - type: Transform @@ -93272,7 +93510,7 @@ entities: pos: 35.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24919 components: - type: Transform @@ -93280,7 +93518,7 @@ entities: pos: 35.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24920 components: - type: Transform @@ -93288,7 +93526,7 @@ entities: pos: 35.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24921 components: - type: Transform @@ -93296,7 +93534,7 @@ entities: pos: 35.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24922 components: - type: Transform @@ -93304,7 +93542,7 @@ entities: pos: 35.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24923 components: - type: Transform @@ -93312,7 +93550,7 @@ entities: pos: 35.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24924 components: - type: Transform @@ -93320,7 +93558,7 @@ entities: pos: 35.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24925 components: - type: Transform @@ -93328,7 +93566,7 @@ entities: pos: 35.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24926 components: - type: Transform @@ -93336,7 +93574,7 @@ entities: pos: 35.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24927 components: - type: Transform @@ -93344,7 +93582,7 @@ entities: pos: 35.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24928 components: - type: Transform @@ -93352,7 +93590,7 @@ entities: pos: 35.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24929 components: - type: Transform @@ -93360,7 +93598,7 @@ entities: pos: 35.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24930 components: - type: Transform @@ -93368,7 +93606,7 @@ entities: pos: 35.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24931 components: - type: Transform @@ -93376,7 +93614,7 @@ entities: pos: 35.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25169 components: - type: Transform @@ -93384,7 +93622,7 @@ entities: pos: 35.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25170 components: - type: Transform @@ -93392,14 +93630,14 @@ entities: pos: 35.5,46.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25171 components: - type: Transform pos: 55.5,46.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25187 components: - type: Transform @@ -93407,7 +93645,7 @@ entities: pos: 53.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25188 components: - type: Transform @@ -93415,7 +93653,7 @@ entities: pos: 53.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 46 @@ -93425,7 +93663,7 @@ entities: pos: -33.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 220 components: - type: Transform @@ -93433,7 +93671,7 @@ entities: pos: 23.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 306 components: - type: Transform @@ -93441,7 +93679,7 @@ entities: pos: 21.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 409 components: - type: Transform @@ -93449,7 +93687,7 @@ entities: pos: 1.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 417 components: - type: Transform @@ -93457,7 +93695,7 @@ entities: pos: -0.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 429 components: - type: Transform @@ -93465,7 +93703,7 @@ entities: pos: 45.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 474 components: - type: Transform @@ -93473,7 +93711,7 @@ entities: pos: 1.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 479 components: - type: Transform @@ -93481,7 +93719,7 @@ entities: pos: -0.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 499 components: - type: Transform @@ -93489,21 +93727,21 @@ entities: pos: -14.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 508 components: - type: Transform pos: 3.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 511 components: - type: Transform pos: -3.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 617 components: - type: Transform @@ -93511,7 +93749,7 @@ entities: pos: -19.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 795 components: - type: Transform @@ -93519,21 +93757,21 @@ entities: pos: -38.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 877 components: - type: Transform pos: -4.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 878 components: - type: Transform pos: -8.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 887 components: - type: Transform @@ -93541,14 +93779,14 @@ entities: pos: -10.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 896 components: - type: Transform pos: -9.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 953 components: - type: Transform @@ -93556,7 +93794,7 @@ entities: pos: -36.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 960 components: - type: Transform @@ -93564,21 +93802,21 @@ entities: pos: -9.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1036 components: - type: Transform pos: 11.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1043 components: - type: Transform pos: 7.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1045 components: - type: Transform @@ -93586,7 +93824,7 @@ entities: pos: 15.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1047 components: - type: Transform @@ -93594,14 +93832,14 @@ entities: pos: 12.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1051 components: - type: Transform pos: 16.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1052 components: - type: Transform @@ -93609,7 +93847,7 @@ entities: pos: 17.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1059 components: - type: Transform @@ -93617,7 +93855,7 @@ entities: pos: 17.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1061 components: - type: Transform @@ -93625,7 +93863,7 @@ entities: pos: 15.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1066 components: - type: Transform @@ -93633,7 +93871,7 @@ entities: pos: 9.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1077 components: - type: Transform @@ -93641,7 +93879,7 @@ entities: pos: 17.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1079 components: - type: Transform @@ -93649,7 +93887,7 @@ entities: pos: 15.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1096 components: - type: Transform @@ -93657,7 +93895,7 @@ entities: pos: 15.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1114 components: - type: Transform @@ -93665,7 +93903,7 @@ entities: pos: -14.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1115 components: - type: Transform @@ -93673,14 +93911,14 @@ entities: pos: -16.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1116 components: - type: Transform pos: -24.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1122 components: - type: Transform @@ -93688,7 +93926,7 @@ entities: pos: -16.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1128 components: - type: Transform @@ -93696,7 +93934,7 @@ entities: pos: -16.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1148 components: - type: Transform @@ -93704,7 +93942,7 @@ entities: pos: -14.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1150 components: - type: Transform @@ -93712,7 +93950,7 @@ entities: pos: -16.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1174 components: - type: Transform @@ -93720,14 +93958,14 @@ entities: pos: -15.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1217 components: - type: Transform pos: -14.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1225 components: - type: Transform @@ -93735,14 +93973,14 @@ entities: pos: -9.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1226 components: - type: Transform pos: -10.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1229 components: - type: Transform @@ -93750,21 +93988,21 @@ entities: pos: -8.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1259 components: - type: Transform pos: 13.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1262 components: - type: Transform pos: 10.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1265 components: - type: Transform @@ -93772,14 +94010,14 @@ entities: pos: 12.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1269 components: - type: Transform pos: 9.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1273 components: - type: Transform @@ -93787,7 +94025,7 @@ entities: pos: 15.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1275 components: - type: Transform @@ -93795,7 +94033,7 @@ entities: pos: 15.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1276 components: - type: Transform @@ -93803,7 +94041,7 @@ entities: pos: 17.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1410 components: - type: Transform @@ -93811,7 +94049,7 @@ entities: pos: 3.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1417 components: - type: Transform @@ -93819,7 +94057,7 @@ entities: pos: -0.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1419 components: - type: Transform @@ -93827,7 +94065,7 @@ entities: pos: 1.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1498 components: - type: Transform @@ -93835,14 +94073,14 @@ entities: pos: -19.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1510 components: - type: Transform pos: -20.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1529 components: - type: Transform @@ -93850,7 +94088,7 @@ entities: pos: -22.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1600 components: - type: Transform @@ -93858,21 +94096,21 @@ entities: pos: -25.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1608 components: - type: Transform pos: -29.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1610 components: - type: Transform pos: -23.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1658 components: - type: Transform @@ -93880,7 +94118,7 @@ entities: pos: -31.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1668 components: - type: Transform @@ -93888,14 +94126,14 @@ entities: pos: -27.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1714 components: - type: Transform pos: -28.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1715 components: - type: Transform @@ -93903,21 +94141,21 @@ entities: pos: -30.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1756 components: - type: Transform pos: -22.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1768 components: - type: Transform pos: -25.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1775 components: - type: Transform @@ -93925,7 +94163,7 @@ entities: pos: -20.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1781 components: - type: Transform @@ -93933,14 +94171,14 @@ entities: pos: -38.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1813 components: - type: Transform pos: -26.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1822 components: - type: Transform @@ -93948,14 +94186,14 @@ entities: pos: -31.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1845 components: - type: Transform pos: -27.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1848 components: - type: Transform @@ -93963,7 +94201,7 @@ entities: pos: -36.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1927 components: - type: Transform @@ -93971,7 +94209,7 @@ entities: pos: -30.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1928 components: - type: Transform @@ -93979,7 +94217,7 @@ entities: pos: -30.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1933 components: - type: Transform @@ -93987,7 +94225,7 @@ entities: pos: -30.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1947 components: - type: Transform @@ -93995,7 +94233,7 @@ entities: pos: -22.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1948 components: - type: Transform @@ -94003,14 +94241,14 @@ entities: pos: -22.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1960 components: - type: Transform pos: -26.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1972 components: - type: Transform @@ -94018,7 +94256,7 @@ entities: pos: -21.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1982 components: - type: Transform @@ -94026,7 +94264,7 @@ entities: pos: -21.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1994 components: - type: Transform @@ -94034,7 +94272,7 @@ entities: pos: -36.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2090 components: - type: Transform @@ -94042,7 +94280,7 @@ entities: pos: -22.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2127 components: - type: Transform @@ -94050,7 +94288,7 @@ entities: pos: -26.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2276 components: - type: Transform @@ -94058,7 +94296,7 @@ entities: pos: 32.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2358 components: - type: Transform @@ -94066,7 +94304,7 @@ entities: pos: 32.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2359 components: - type: Transform @@ -94074,21 +94312,21 @@ entities: pos: 30.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2377 components: - type: Transform pos: 24.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2380 components: - type: Transform pos: 25.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2473 components: - type: Transform @@ -94096,21 +94334,21 @@ entities: pos: 23.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2481 components: - type: Transform pos: 30.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2482 components: - type: Transform pos: 32.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2486 components: - type: Transform @@ -94118,7 +94356,7 @@ entities: pos: 34.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2498 components: - type: Transform @@ -94126,7 +94364,7 @@ entities: pos: 29.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2499 components: - type: Transform @@ -94134,7 +94372,7 @@ entities: pos: 33.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2537 components: - type: Transform @@ -94142,14 +94380,14 @@ entities: pos: 32.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2693 components: - type: Transform pos: 40.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2694 components: - type: Transform @@ -94157,7 +94395,7 @@ entities: pos: 40.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2799 components: - type: Transform @@ -94165,7 +94403,7 @@ entities: pos: 19.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2802 components: - type: Transform @@ -94173,7 +94411,7 @@ entities: pos: 17.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2812 components: - type: Transform @@ -94181,7 +94419,7 @@ entities: pos: 17.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2869 components: - type: Transform @@ -94189,7 +94427,7 @@ entities: pos: 44.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2881 components: - type: Transform @@ -94197,7 +94435,7 @@ entities: pos: 35.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2902 components: - type: Transform @@ -94205,7 +94443,7 @@ entities: pos: 44.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2981 components: - type: Transform @@ -94221,7 +94459,7 @@ entities: pos: 45.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2989 components: - type: Transform @@ -94229,7 +94467,7 @@ entities: pos: 44.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3001 components: - type: Transform @@ -94245,20 +94483,22 @@ entities: pos: 44.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3121 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-21.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3123 components: - type: Transform pos: 47.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3189 components: - type: Transform @@ -94266,7 +94506,7 @@ entities: pos: 33.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3196 components: - type: Transform @@ -94274,7 +94514,7 @@ entities: pos: -27.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3205 components: - type: Transform @@ -94282,26 +94522,30 @@ entities: pos: 45.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3209 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-21.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3214 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-23.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3220 components: - type: Transform pos: 45.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3224 components: - type: Transform @@ -94309,7 +94553,7 @@ entities: pos: -30.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3367 components: - type: Transform @@ -94317,7 +94561,7 @@ entities: pos: -3.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3573 components: - type: Transform @@ -94325,7 +94569,7 @@ entities: pos: 45.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3915 components: - type: Transform @@ -94333,7 +94577,7 @@ entities: pos: 1.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3918 components: - type: Transform @@ -94341,7 +94585,7 @@ entities: pos: -0.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3920 components: - type: Transform @@ -94349,7 +94593,7 @@ entities: pos: -0.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3924 components: - type: Transform @@ -94357,7 +94601,7 @@ entities: pos: 1.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3929 components: - type: Transform @@ -94365,7 +94609,7 @@ entities: pos: 1.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3930 components: - type: Transform @@ -94373,7 +94617,7 @@ entities: pos: 1.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3950 components: - type: Transform @@ -94381,7 +94625,7 @@ entities: pos: -8.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3984 components: - type: Transform @@ -94389,7 +94633,7 @@ entities: pos: -0.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3998 components: - type: Transform @@ -94397,7 +94641,7 @@ entities: pos: -54.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4110 components: - type: Transform @@ -94405,7 +94649,7 @@ entities: pos: 34.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4117 components: - type: Transform @@ -94413,7 +94657,7 @@ entities: pos: 45.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4123 components: - type: Transform @@ -94421,7 +94665,7 @@ entities: pos: 33.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4146 components: - type: Transform @@ -94429,7 +94673,7 @@ entities: pos: 33.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4154 components: - type: Transform @@ -94437,14 +94681,14 @@ entities: pos: 34.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4336 components: - type: Transform pos: 39.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4354 components: - type: Transform @@ -94452,7 +94696,7 @@ entities: pos: 39.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4483 components: - type: Transform @@ -94460,14 +94704,14 @@ entities: pos: 34.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4541 components: - type: Transform pos: -4.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4630 components: - type: Transform @@ -94475,7 +94719,7 @@ entities: pos: -0.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4834 components: - type: Transform @@ -94483,7 +94727,7 @@ entities: pos: -0.5,-47.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4835 components: - type: Transform @@ -94491,7 +94735,7 @@ entities: pos: 1.5,-48.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4915 components: - type: Transform @@ -94499,7 +94743,7 @@ entities: pos: 1.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4965 components: - type: Transform @@ -94507,7 +94751,7 @@ entities: pos: 1.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4990 components: - type: Transform @@ -94515,7 +94759,7 @@ entities: pos: -0.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5473 components: - type: Transform @@ -94523,7 +94767,7 @@ entities: pos: -15.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5476 components: - type: Transform @@ -94531,7 +94775,7 @@ entities: pos: -38.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5532 components: - type: Transform @@ -94539,7 +94783,7 @@ entities: pos: 17.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5583 components: - type: Transform @@ -94553,7 +94797,7 @@ entities: pos: -0.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5730 components: - type: Transform @@ -94561,7 +94805,7 @@ entities: pos: 1.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5733 components: - type: Transform @@ -94569,7 +94813,7 @@ entities: pos: -0.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5736 components: - type: Transform @@ -94577,7 +94821,7 @@ entities: pos: 1.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5746 components: - type: Transform @@ -94585,14 +94829,14 @@ entities: pos: -9.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5758 components: - type: Transform pos: -14.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5765 components: - type: Transform @@ -94600,14 +94844,14 @@ entities: pos: 16.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5817 components: - type: Transform pos: 18.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5829 components: - type: Transform @@ -94615,7 +94859,7 @@ entities: pos: 34.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5847 components: - type: Transform @@ -94623,7 +94867,7 @@ entities: pos: 1.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5865 components: - type: Transform @@ -94631,21 +94875,21 @@ entities: pos: -36.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5890 components: - type: Transform pos: 12.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5891 components: - type: Transform pos: -36.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5892 components: - type: Transform @@ -94653,7 +94897,7 @@ entities: pos: -28.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5921 components: - type: Transform @@ -94661,7 +94905,7 @@ entities: pos: 30.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5922 components: - type: Transform @@ -94669,14 +94913,14 @@ entities: pos: 32.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5942 components: - type: Transform pos: -37.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5947 components: - type: Transform @@ -94684,14 +94928,14 @@ entities: pos: -36.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5953 components: - type: Transform pos: -37.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6005 components: - type: Transform @@ -94699,7 +94943,7 @@ entities: pos: -41.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6008 components: - type: Transform @@ -94707,7 +94951,7 @@ entities: pos: -38.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6012 components: - type: Transform @@ -94715,14 +94959,14 @@ entities: pos: -36.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6020 components: - type: Transform pos: -49.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6024 components: - type: Transform @@ -94730,7 +94974,7 @@ entities: pos: -44.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6026 components: - type: Transform @@ -94738,14 +94982,14 @@ entities: pos: -42.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6037 components: - type: Transform pos: -42.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6109 components: - type: Transform @@ -94753,7 +94997,7 @@ entities: pos: -49.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6120 components: - type: Transform @@ -94761,14 +95005,14 @@ entities: pos: -49.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6214 components: - type: Transform pos: 0.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6278 components: - type: Transform @@ -94776,7 +95020,7 @@ entities: pos: 15.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6280 components: - type: Transform @@ -94784,7 +95028,7 @@ entities: pos: 15.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6282 components: - type: Transform @@ -94792,42 +95036,42 @@ entities: pos: 15.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6365 components: - type: Transform pos: -31.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6380 components: - type: Transform pos: -41.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6426 components: - type: Transform pos: 0.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6660 components: - type: Transform pos: -42.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6662 components: - type: Transform pos: -42.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6810 components: - type: Transform @@ -94835,7 +95079,7 @@ entities: pos: 17.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6825 components: - type: Transform @@ -94843,7 +95087,7 @@ entities: pos: -27.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7682 components: - type: Transform @@ -94851,7 +95095,7 @@ entities: pos: -38.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7683 components: - type: Transform @@ -94859,7 +95103,7 @@ entities: pos: -38.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8079 components: - type: Transform @@ -94882,14 +95126,14 @@ entities: pos: -36.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8224 components: - type: Transform pos: -31.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8226 components: - type: Transform @@ -94897,7 +95141,7 @@ entities: pos: -19.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8227 components: - type: Transform @@ -94905,7 +95149,7 @@ entities: pos: -25.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8233 components: - type: Transform @@ -94913,7 +95157,7 @@ entities: pos: -22.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8241 components: - type: Transform @@ -94921,7 +95165,7 @@ entities: pos: -36.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8537 components: - type: Transform @@ -94929,7 +95173,7 @@ entities: pos: 15.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8548 components: - type: Transform @@ -94937,7 +95181,7 @@ entities: pos: 15.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8580 components: - type: Transform @@ -94945,14 +95189,14 @@ entities: pos: -30.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8715 components: - type: Transform pos: -27.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8722 components: - type: Transform @@ -94960,7 +95204,7 @@ entities: pos: -22.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8735 components: - type: Transform @@ -94968,7 +95212,7 @@ entities: pos: -30.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8790 components: - type: Transform @@ -94976,7 +95220,7 @@ entities: pos: -26.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8884 components: - type: Transform @@ -94984,7 +95228,7 @@ entities: pos: 23.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9233 components: - type: Transform @@ -94992,7 +95236,7 @@ entities: pos: 17.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9455 components: - type: Transform @@ -95000,21 +95244,21 @@ entities: pos: -55.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9458 components: - type: Transform pos: -52.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9637 components: - type: Transform pos: -55.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11153 components: - type: Transform @@ -95022,14 +95266,14 @@ entities: pos: 41.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11722 components: - type: Transform pos: 42.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11734 components: - type: Transform @@ -95037,7 +95281,7 @@ entities: pos: 15.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11761 components: - type: Transform @@ -95045,7 +95289,7 @@ entities: pos: 17.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12196 components: - type: Transform @@ -95060,6 +95304,8 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,-22.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12625 components: - type: Transform @@ -95067,7 +95313,7 @@ entities: pos: 39.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12626 components: - type: Transform @@ -95075,7 +95321,7 @@ entities: pos: 38.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12744 components: - type: Transform @@ -95083,28 +95329,28 @@ entities: pos: 49.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13113 components: - type: Transform pos: 48.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13245 components: - type: Transform pos: 23.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13443 components: - type: Transform pos: -21.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13447 components: - type: Transform @@ -95112,7 +95358,7 @@ entities: pos: -21.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13448 components: - type: Transform @@ -95120,14 +95366,14 @@ entities: pos: -21.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13504 components: - type: Transform pos: 47.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13534 components: - type: Transform @@ -95135,14 +95381,14 @@ entities: pos: 43.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13546 components: - type: Transform pos: 21.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13612 components: - type: Transform @@ -95150,7 +95396,7 @@ entities: pos: 31.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13673 components: - type: Transform @@ -95158,7 +95404,7 @@ entities: pos: -8.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13808 components: - type: Transform @@ -95166,56 +95412,56 @@ entities: pos: 38.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13914 components: - type: Transform pos: 49.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14015 components: - type: Transform pos: 32.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14021 components: - type: Transform pos: 38.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14022 components: - type: Transform pos: 17.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14029 components: - type: Transform pos: 36.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14044 components: - type: Transform pos: 22.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14047 components: - type: Transform pos: 39.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14237 components: - type: Transform @@ -95223,7 +95469,7 @@ entities: pos: -16.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14251 components: - type: Transform @@ -95231,7 +95477,7 @@ entities: pos: -16.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14259 components: - type: Transform @@ -95239,21 +95485,21 @@ entities: pos: -16.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14270 components: - type: Transform pos: -26.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14274 components: - type: Transform pos: -36.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14280 components: - type: Transform @@ -95261,7 +95507,7 @@ entities: pos: -22.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14293 components: - type: Transform @@ -95269,14 +95515,14 @@ entities: pos: -11.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14295 components: - type: Transform pos: -9.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14308 components: - type: Transform @@ -95284,7 +95530,7 @@ entities: pos: -11.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14313 components: - type: Transform @@ -95292,7 +95538,7 @@ entities: pos: -8.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14468 components: - type: Transform @@ -95300,7 +95546,7 @@ entities: pos: -23.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14478 components: - type: Transform @@ -95308,7 +95554,7 @@ entities: pos: -24.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14490 components: - type: Transform @@ -95316,7 +95562,7 @@ entities: pos: -26.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14491 components: - type: Transform @@ -95324,7 +95570,7 @@ entities: pos: -27.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14492 components: - type: Transform @@ -95332,7 +95578,7 @@ entities: pos: -24.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14496 components: - type: Transform @@ -95340,7 +95586,7 @@ entities: pos: -23.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14735 components: - type: Transform @@ -95348,7 +95594,7 @@ entities: pos: -22.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14736 components: - type: Transform @@ -95361,7 +95607,7 @@ entities: pos: -29.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14746 components: - type: Transform @@ -95369,7 +95615,7 @@ entities: pos: -25.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14750 components: - type: Transform @@ -95377,7 +95623,7 @@ entities: pos: -22.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14751 components: - type: Transform @@ -95385,7 +95631,7 @@ entities: pos: -16.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14753 components: - type: Transform @@ -95393,7 +95639,7 @@ entities: pos: -20.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14763 components: - type: Transform @@ -95401,28 +95647,28 @@ entities: pos: -20.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14800 components: - type: Transform pos: -34.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14827 components: - type: Transform pos: -20.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14866 components: - type: Transform pos: -24.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14880 components: - type: Transform @@ -95452,7 +95698,7 @@ entities: pos: -16.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15138 components: - type: Transform @@ -95468,7 +95714,7 @@ entities: pos: -32.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15164 components: - type: Transform @@ -95602,14 +95848,14 @@ entities: pos: -11.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15605 components: - type: Transform pos: -21.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15617 components: - type: Transform @@ -95617,7 +95863,7 @@ entities: pos: -18.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15621 components: - type: Transform @@ -95625,7 +95871,7 @@ entities: pos: -14.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15626 components: - type: Transform @@ -95633,7 +95879,7 @@ entities: pos: -10.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15635 components: - type: Transform @@ -95641,7 +95887,7 @@ entities: pos: -12.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15637 components: - type: Transform @@ -95649,7 +95895,7 @@ entities: pos: -10.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15647 components: - type: Transform @@ -95657,7 +95903,7 @@ entities: pos: -12.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15661 components: - type: Transform @@ -95665,7 +95911,7 @@ entities: pos: -0.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15664 components: - type: Transform @@ -95673,14 +95919,14 @@ entities: pos: -3.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16563 components: - type: Transform pos: -2.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16571 components: - type: Transform @@ -95688,7 +95934,7 @@ entities: pos: -2.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16576 components: - type: Transform @@ -95696,14 +95942,14 @@ entities: pos: -3.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16580 components: - type: Transform pos: -0.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16581 components: - type: Transform @@ -95711,14 +95957,14 @@ entities: pos: -2.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16582 components: - type: Transform pos: -3.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16594 components: - type: Transform @@ -95726,7 +95972,7 @@ entities: pos: -3.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16599 components: - type: Transform @@ -95734,7 +95980,7 @@ entities: pos: -2.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16608 components: - type: Transform @@ -95742,7 +95988,7 @@ entities: pos: -0.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16612 components: - type: Transform @@ -95750,14 +95996,7 @@ entities: pos: -1.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16616 - components: - - type: Transform - pos: 0.5,24.5 - parent: 60 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 16632 components: - type: Transform @@ -95765,28 +96004,28 @@ entities: pos: 1.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16645 components: - type: Transform pos: 1.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16647 components: - type: Transform pos: 5.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16648 components: - type: Transform pos: 4.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16654 components: - type: Transform @@ -95794,14 +96033,14 @@ entities: pos: 10.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16656 components: - type: Transform pos: 2.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16659 components: - type: Transform @@ -95809,7 +96048,7 @@ entities: pos: 3.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16664 components: - type: Transform @@ -95817,7 +96056,7 @@ entities: pos: 10.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16971 components: - type: Transform @@ -95833,7 +96072,7 @@ entities: pos: 37.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17525 components: - type: Transform @@ -95841,14 +96080,14 @@ entities: pos: 21.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17529 components: - type: Transform pos: 41.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17538 components: - type: Transform @@ -95856,28 +96095,28 @@ entities: pos: 39.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17570 components: - type: Transform pos: -38.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17580 components: - type: Transform pos: -43.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17583 components: - type: Transform pos: -30.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17585 components: - type: Transform @@ -95885,7 +96124,7 @@ entities: pos: -31.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17629 components: - type: Transform @@ -95893,7 +96132,7 @@ entities: pos: 22.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17841 components: - type: Transform @@ -95901,7 +96140,7 @@ entities: pos: 41.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18067 components: - type: Transform @@ -95915,7 +96154,7 @@ entities: pos: -0.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18223 components: - type: Transform @@ -95923,28 +96162,28 @@ entities: pos: -0.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18242 components: - type: Transform pos: 1.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18243 components: - type: Transform pos: -0.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18255 components: - type: Transform pos: -3.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18256 components: - type: Transform @@ -95952,7 +96191,7 @@ entities: pos: -3.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18424 components: - type: Transform @@ -95960,7 +96199,7 @@ entities: pos: -0.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18440 components: - type: Transform @@ -95968,7 +96207,7 @@ entities: pos: 44.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18531 components: - type: Transform @@ -95976,7 +96215,7 @@ entities: pos: 2.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18649 components: - type: Transform @@ -95984,7 +96223,7 @@ entities: pos: 51.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18659 components: - type: Transform @@ -95992,21 +96231,21 @@ entities: pos: 52.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18662 components: - type: Transform pos: 52.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18669 components: - type: Transform pos: 51.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18717 components: - type: Transform @@ -96014,7 +96253,7 @@ entities: pos: 37.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21168 components: - type: Transform @@ -96022,7 +96261,7 @@ entities: pos: -16.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21318 components: - type: Transform @@ -96030,7 +96269,7 @@ entities: pos: -72.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21416 components: - type: Transform @@ -96070,7 +96309,7 @@ entities: pos: -29.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22810 components: - type: Transform @@ -96078,28 +96317,28 @@ entities: pos: -99.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22814 components: - type: Transform pos: -103.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22823 components: - type: Transform pos: -112.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22828 components: - type: Transform pos: -117.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22839 components: - type: Transform @@ -96107,7 +96346,7 @@ entities: pos: -111.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22847 components: - type: Transform @@ -96115,7 +96354,7 @@ entities: pos: -99.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22883 components: - type: Transform @@ -96123,7 +96362,7 @@ entities: pos: -118.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22892 components: - type: Transform @@ -96131,7 +96370,7 @@ entities: pos: -111.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22930 components: - type: Transform @@ -96224,7 +96463,15 @@ entities: pos: -6.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 24658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,24.5 + parent: 60 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 24748 components: - type: Transform @@ -96232,7 +96479,7 @@ entities: pos: 55.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24749 components: - type: Transform @@ -96240,14 +96487,14 @@ entities: pos: 53.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24845 components: - type: Transform pos: 43.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24871 components: - type: Transform @@ -96255,7 +96502,7 @@ entities: pos: 55.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24916 components: - type: Transform @@ -96263,7 +96510,7 @@ entities: pos: 35.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25168 components: - type: Transform @@ -96271,7 +96518,7 @@ entities: pos: 33.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25172 components: - type: Transform @@ -96279,7 +96526,7 @@ entities: pos: 53.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25182 components: - type: Transform @@ -96287,7 +96534,7 @@ entities: pos: 45.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPort entities: - uid: 111 @@ -96364,14 +96611,14 @@ entities: pos: -16.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14721 components: - type: Transform pos: -15.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15005 components: - type: Transform @@ -96420,7 +96667,7 @@ entities: pos: -8.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21667 components: - type: Transform @@ -96428,7 +96675,7 @@ entities: pos: -30.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21668 components: - type: Transform @@ -96436,7 +96683,7 @@ entities: pos: -30.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21673 components: - type: Transform @@ -96492,6 +96739,8 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-23.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3013 components: - type: MetaData @@ -96501,7 +96750,7 @@ entities: pos: 48.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8074 components: - type: Transform @@ -96552,7 +96801,7 @@ entities: pos: -33.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14774 components: - type: Transform @@ -96624,7 +96873,7 @@ entities: pos: -34.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15143 components: - type: Transform @@ -96632,7 +96881,7 @@ entities: pos: -34.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15281 components: - type: Transform @@ -96664,21 +96913,21 @@ entities: pos: -20.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22884 components: - type: Transform pos: -119.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22885 components: - type: Transform pos: -118.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23049 components: - type: Transform @@ -96768,6 +97017,8 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-23.5 parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7061 components: - type: Transform @@ -96827,6 +97078,8 @@ entities: parent: 60 - type: GasValve open: False + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7095 components: - type: Transform @@ -96865,7 +97118,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14837 components: - type: Transform @@ -96908,7 +97161,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15345 components: - type: Transform @@ -96932,11 +97185,8 @@ entities: - uid: 15498 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,43.5 parent: 60 - - type: GasValve - open: False - uid: 15499 components: - type: Transform @@ -96944,6 +97194,8 @@ entities: parent: 60 - type: GasValve open: False + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15530 components: - type: Transform @@ -96952,6 +97204,8 @@ entities: parent: 60 - type: GasValve open: False + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 23540 components: - type: Transform @@ -96969,21 +97223,21 @@ entities: pos: -9.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 114 components: - type: Transform pos: 49.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 127 components: - type: Transform pos: 20.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 179 components: - type: Transform @@ -96991,7 +97245,7 @@ entities: pos: 20.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 275 components: - type: Transform @@ -96999,7 +97253,7 @@ entities: pos: 21.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 426 components: - type: Transform @@ -97007,7 +97261,7 @@ entities: pos: 0.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 482 components: - type: Transform @@ -97015,7 +97269,7 @@ entities: pos: 0.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 792 components: - type: Transform @@ -97023,7 +97277,7 @@ entities: pos: -15.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 856 components: - type: Transform @@ -97031,7 +97285,7 @@ entities: pos: -33.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 910 components: - type: Transform @@ -97039,7 +97293,7 @@ entities: pos: -3.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 928 components: - type: Transform @@ -97047,7 +97301,7 @@ entities: pos: -8.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 946 components: - type: Transform @@ -97055,7 +97309,7 @@ entities: pos: -48.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1133 components: - type: Transform @@ -97063,7 +97317,7 @@ entities: pos: -15.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1385 components: - type: Transform @@ -97079,7 +97333,7 @@ entities: pos: 5.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1429 components: - type: Transform @@ -97087,7 +97341,7 @@ entities: pos: 0.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1455 components: - type: Transform @@ -97095,7 +97349,7 @@ entities: pos: 11.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1511 components: - type: Transform @@ -97103,7 +97357,7 @@ entities: pos: -20.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1651 components: - type: Transform @@ -97114,7 +97368,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1652 components: - type: Transform @@ -97125,7 +97379,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1665 components: - type: Transform @@ -97136,7 +97390,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1669 components: - type: Transform @@ -97147,7 +97401,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1682 components: - type: Transform @@ -97158,14 +97412,14 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1780 components: - type: Transform pos: -20.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1787 components: - type: Transform @@ -97173,7 +97427,7 @@ entities: pos: -37.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1838 components: - type: Transform @@ -97184,14 +97438,14 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1996 components: - type: Transform pos: -33.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2027 components: - type: Transform @@ -97199,7 +97453,7 @@ entities: pos: -22.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2208 components: - type: Transform @@ -97207,7 +97461,7 @@ entities: pos: 34.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2215 components: - type: Transform @@ -97215,7 +97469,7 @@ entities: pos: 34.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2370 components: - type: Transform @@ -97223,7 +97477,7 @@ entities: pos: 24.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2371 components: - type: Transform @@ -97231,7 +97485,7 @@ entities: pos: 25.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2560 components: - type: Transform @@ -97239,7 +97493,7 @@ entities: pos: 31.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2706 components: - type: Transform @@ -97247,7 +97501,7 @@ entities: pos: 18.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2791 components: - type: Transform @@ -97258,7 +97512,7 @@ entities: deviceLists: - 8791 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2826 components: - type: Transform @@ -97266,7 +97520,7 @@ entities: pos: 44.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2861 components: - type: Transform @@ -97277,7 +97531,7 @@ entities: deviceLists: - 8669 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2984 components: - type: Transform @@ -97285,7 +97539,7 @@ entities: pos: 47.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3002 components: - type: Transform @@ -97310,7 +97564,7 @@ entities: deviceLists: - 8271 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3567 components: - type: Transform @@ -97318,7 +97572,7 @@ entities: pos: 45.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3692 components: - type: Transform @@ -97326,21 +97580,21 @@ entities: pos: 16.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3964 components: - type: Transform pos: -13.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3965 components: - type: Transform pos: -8.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3986 components: - type: Transform @@ -97348,7 +97602,7 @@ entities: pos: 0.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4537 components: - type: Transform @@ -97356,7 +97610,7 @@ entities: pos: -2.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4953 components: - type: Transform @@ -97364,14 +97618,14 @@ entities: pos: 0.5,-48.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5412 components: - type: Transform pos: 12.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5425 components: - type: Transform @@ -97382,7 +97636,7 @@ entities: deviceLists: - 8260 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5439 components: - type: Transform @@ -97390,7 +97644,7 @@ entities: pos: 43.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5445 components: - type: Transform @@ -97398,14 +97652,14 @@ entities: pos: 29.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5446 components: - type: Transform pos: 33.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5472 components: - type: Transform @@ -97413,7 +97667,7 @@ entities: pos: -16.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5518 components: - type: Transform @@ -97421,14 +97675,14 @@ entities: pos: 39.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5585 components: - type: Transform pos: -44.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5739 components: - type: Transform @@ -97436,7 +97690,7 @@ entities: pos: 2.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5822 components: - type: Transform @@ -97444,7 +97698,7 @@ entities: pos: 17.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5824 components: - type: Transform @@ -97452,7 +97706,7 @@ entities: pos: 34.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5843 components: - type: Transform @@ -97460,7 +97714,7 @@ entities: pos: 0.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5929 components: - type: Transform @@ -97468,7 +97722,7 @@ entities: pos: -28.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5938 components: - type: Transform @@ -97476,7 +97730,7 @@ entities: pos: -52.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5951 components: - type: Transform @@ -97484,7 +97738,7 @@ entities: pos: -41.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5952 components: - type: Transform @@ -97492,7 +97746,7 @@ entities: pos: -37.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5954 components: - type: Transform @@ -97500,7 +97754,7 @@ entities: pos: 10.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5955 components: - type: Transform @@ -97508,7 +97762,7 @@ entities: pos: 12.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5956 components: - type: Transform @@ -97516,7 +97770,7 @@ entities: pos: 11.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5980 components: - type: Transform @@ -97524,14 +97778,14 @@ entities: pos: -43.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5987 components: - type: Transform pos: -43.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5990 components: - type: Transform @@ -97539,7 +97793,7 @@ entities: pos: -34.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6002 components: - type: Transform @@ -97547,21 +97801,21 @@ entities: pos: -29.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6032 components: - type: Transform pos: -52.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6087 components: - type: Transform pos: -19.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6093 components: - type: Transform @@ -97569,7 +97823,7 @@ entities: pos: -37.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6300 components: - type: Transform @@ -97577,7 +97831,7 @@ entities: pos: 11.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6307 components: - type: Transform @@ -97588,7 +97842,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6417 components: - type: Transform @@ -97596,7 +97850,7 @@ entities: pos: 2.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6418 components: - type: Transform @@ -97604,7 +97858,7 @@ entities: pos: 2.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6648 components: - type: Transform @@ -97615,7 +97869,7 @@ entities: deviceLists: - 2103 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6759 components: - type: Transform @@ -97626,7 +97880,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6770 components: - type: Transform @@ -97634,7 +97888,7 @@ entities: pos: 9.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6789 components: - type: Transform @@ -97642,7 +97896,7 @@ entities: pos: -42.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6835 components: - type: Transform @@ -97650,7 +97904,7 @@ entities: pos: 40.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7387 components: - type: Transform @@ -97658,7 +97912,7 @@ entities: pos: 1.5,-76.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7476 components: - type: Transform @@ -97666,7 +97920,7 @@ entities: pos: 7.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7484 components: - type: Transform @@ -97674,7 +97928,7 @@ entities: pos: 0.5,-56.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7485 components: - type: Transform @@ -97682,7 +97936,7 @@ entities: pos: -9.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8087 components: - type: Transform @@ -97714,7 +97968,7 @@ entities: pos: -3.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8259 components: - type: Transform @@ -97725,7 +97979,7 @@ entities: deviceLists: - 8265 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8388 components: - type: Transform @@ -97733,7 +97987,7 @@ entities: pos: -37.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8413 components: - type: Transform @@ -97741,7 +97995,7 @@ entities: pos: -26.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8619 components: - type: Transform @@ -97749,7 +98003,7 @@ entities: pos: 16.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8962 components: - type: Transform @@ -97757,7 +98011,7 @@ entities: pos: 32.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9016 components: - type: Transform @@ -97765,7 +98019,7 @@ entities: pos: 47.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9046 components: - type: Transform @@ -97773,7 +98027,7 @@ entities: pos: 40.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9063 components: - type: Transform @@ -97781,7 +98035,7 @@ entities: pos: 29.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9471 components: - type: Transform @@ -97792,7 +98046,7 @@ entities: deviceLists: - 7065 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9472 components: - type: Transform @@ -97803,7 +98057,7 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9607 components: - type: Transform @@ -97811,7 +98065,7 @@ entities: pos: -42.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9651 components: - type: Transform @@ -97822,7 +98076,7 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9678 components: - type: Transform @@ -97830,7 +98084,7 @@ entities: pos: -37.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11978 components: - type: Transform @@ -97841,7 +98095,7 @@ entities: deviceLists: - 8714 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12589 components: - type: Transform @@ -97849,7 +98103,7 @@ entities: pos: 16.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12592 components: - type: Transform @@ -97857,7 +98111,7 @@ entities: pos: 16.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12623 components: - type: Transform @@ -97865,7 +98119,7 @@ entities: pos: 43.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12624 components: - type: Transform @@ -97873,7 +98127,7 @@ entities: pos: 41.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12839 components: - type: Transform @@ -97881,21 +98135,21 @@ entities: pos: -48.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12868 components: - type: Transform pos: 40.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13074 components: - type: Transform pos: 38.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13241 components: - type: Transform @@ -97903,7 +98157,7 @@ entities: pos: 19.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13242 components: - type: Transform @@ -97911,14 +98165,14 @@ entities: pos: 16.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13536 components: - type: Transform pos: 16.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13548 components: - type: Transform @@ -97926,7 +98180,7 @@ entities: pos: 21.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13589 components: - type: Transform @@ -97934,21 +98188,21 @@ entities: pos: 4.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14302 components: - type: Transform pos: -7.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14303 components: - type: Transform pos: -11.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14325 components: - type: Transform @@ -97956,7 +98210,7 @@ entities: pos: -8.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14501 components: - type: Transform @@ -97964,14 +98218,14 @@ entities: pos: -23.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14502 components: - type: Transform pos: -23.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14642 components: - type: Transform @@ -97979,7 +98233,7 @@ entities: pos: -19.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14752 components: - type: Transform @@ -97987,7 +98241,7 @@ entities: pos: -21.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14770 components: - type: Transform @@ -97997,21 +98251,21 @@ entities: deviceLists: - 23956 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15651 components: - type: Transform pos: -18.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15652 components: - type: Transform pos: -14.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16559 components: - type: Transform @@ -98019,7 +98273,7 @@ entities: pos: -29.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16604 components: - type: Transform @@ -98027,14 +98281,14 @@ entities: pos: -11.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16619 components: - type: Transform pos: -0.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16620 components: - type: Transform @@ -98042,23 +98296,18 @@ entities: pos: 0.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16635 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 15745 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 60 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16643 components: - type: Transform @@ -98066,7 +98315,7 @@ entities: pos: -2.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16666 components: - type: Transform @@ -98074,14 +98323,14 @@ entities: pos: 12.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16669 components: - type: Transform pos: 10.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16670 components: - type: Transform @@ -98089,7 +98338,7 @@ entities: pos: -2.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16682 components: - type: Transform @@ -98097,7 +98346,7 @@ entities: pos: 5.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16683 components: - type: Transform @@ -98105,14 +98354,24 @@ entities: pos: 2.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16684 components: - type: Transform pos: -32.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 16718 + components: + - type: Transform + pos: -1.5,25.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 21710 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17601 components: - type: Transform @@ -98120,7 +98379,7 @@ entities: pos: -46.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17602 components: - type: Transform @@ -98128,7 +98387,7 @@ entities: pos: -46.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17624 components: - type: Transform @@ -98136,7 +98395,7 @@ entities: pos: -36.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17625 components: - type: Transform @@ -98144,7 +98403,7 @@ entities: pos: -38.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17627 components: - type: Transform @@ -98152,7 +98411,7 @@ entities: pos: -15.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17628 components: - type: Transform @@ -98160,7 +98419,7 @@ entities: pos: -30.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18139 components: - type: Transform @@ -98168,7 +98427,7 @@ entities: pos: -2.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18270 components: - type: Transform @@ -98176,7 +98435,7 @@ entities: pos: -7.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18426 components: - type: Transform @@ -98184,7 +98443,7 @@ entities: pos: 0.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18427 components: - type: Transform @@ -98192,7 +98451,7 @@ entities: pos: 5.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18429 components: - type: Transform @@ -98200,7 +98459,7 @@ entities: pos: 0.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18539 components: - type: Transform @@ -98208,7 +98467,7 @@ entities: pos: 0.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18540 components: - type: Transform @@ -98216,7 +98475,7 @@ entities: pos: 4.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18560 components: - type: Transform @@ -98229,7 +98488,7 @@ entities: pos: 45.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18653 components: - type: Transform @@ -98237,7 +98496,7 @@ entities: pos: 45.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18663 components: - type: Transform @@ -98245,7 +98504,7 @@ entities: pos: 53.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18664 components: - type: Transform @@ -98253,7 +98512,7 @@ entities: pos: 53.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18668 components: - type: Transform @@ -98261,7 +98520,7 @@ entities: pos: 48.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18906 components: - type: Transform @@ -98272,7 +98531,7 @@ entities: deviceLists: - 24792 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18937 components: - type: Transform @@ -98288,7 +98547,7 @@ entities: pos: 36.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19054 components: - type: Transform @@ -98296,7 +98555,7 @@ entities: pos: 32.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19056 components: - type: Transform @@ -98307,7 +98566,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19057 components: - type: Transform @@ -98318,7 +98577,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19179 components: - type: Transform @@ -98326,7 +98585,7 @@ entities: pos: 21.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19403 components: - type: Transform @@ -98334,21 +98593,21 @@ entities: pos: 40.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21327 components: - type: Transform pos: -72.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22876 components: - type: Transform pos: -110.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22878 components: - type: Transform @@ -98356,7 +98615,7 @@ entities: pos: -110.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22879 components: - type: Transform @@ -98364,7 +98623,7 @@ entities: pos: -103.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22881 components: - type: Transform @@ -98372,7 +98631,7 @@ entities: pos: -98.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22882 components: - type: Transform @@ -98380,7 +98639,7 @@ entities: pos: -112.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22886 components: - type: Transform @@ -98388,7 +98647,7 @@ entities: pos: -117.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22891 components: - type: Transform @@ -98396,7 +98655,7 @@ entities: pos: -112.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22893 components: - type: Transform @@ -98404,7 +98663,7 @@ entities: pos: -112.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22894 components: - type: Transform @@ -98412,7 +98671,7 @@ entities: pos: -110.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23505 components: - type: Transform @@ -98428,7 +98687,7 @@ entities: pos: -5.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24136 components: - type: Transform @@ -98436,7 +98695,7 @@ entities: pos: -9.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24834 components: - type: Transform @@ -98447,7 +98706,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25173 components: - type: Transform @@ -98458,7 +98717,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25174 components: - type: Transform @@ -98469,7 +98728,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25179 components: - type: Transform @@ -98480,7 +98739,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25180 components: - type: Transform @@ -98491,7 +98750,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25185 components: - type: Transform @@ -98502,7 +98761,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 61 @@ -98512,7 +98771,7 @@ entities: pos: 35.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 223 components: - type: Transform @@ -98520,7 +98779,7 @@ entities: pos: 26.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 263 components: - type: Transform @@ -98528,7 +98787,7 @@ entities: pos: 22.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 337 components: - type: Transform @@ -98536,7 +98795,7 @@ entities: pos: 47.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 428 components: - type: Transform @@ -98544,7 +98803,7 @@ entities: pos: 0.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 473 components: - type: Transform @@ -98552,14 +98811,14 @@ entities: pos: 0.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 516 components: - type: Transform pos: -19.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 629 components: - type: Transform @@ -98567,7 +98826,7 @@ entities: pos: 19.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 719 components: - type: Transform @@ -98575,7 +98834,7 @@ entities: pos: -22.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 788 components: - type: Transform @@ -98583,7 +98842,7 @@ entities: pos: -15.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 871 components: - type: Transform @@ -98591,14 +98850,14 @@ entities: pos: 41.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 904 components: - type: Transform pos: -10.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 912 components: - type: Transform @@ -98606,7 +98865,7 @@ entities: pos: -8.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 913 components: - type: Transform @@ -98614,7 +98873,7 @@ entities: pos: -4.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1136 components: - type: Transform @@ -98622,7 +98881,7 @@ entities: pos: -15.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1246 components: - type: Transform @@ -98630,7 +98889,7 @@ entities: pos: 37.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1397 components: - type: Transform @@ -98638,7 +98897,7 @@ entities: pos: 4.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1398 components: - type: Transform @@ -98646,7 +98905,7 @@ entities: pos: 3.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1430 components: - type: Transform @@ -98654,14 +98913,14 @@ entities: pos: 0.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1456 components: - type: Transform pos: 12.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1564 components: - type: Transform @@ -98672,7 +98931,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1771 components: - type: Transform @@ -98680,7 +98939,7 @@ entities: pos: -37.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1846 components: - type: Transform @@ -98691,7 +98950,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1850 components: - type: Transform @@ -98702,7 +98961,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1893 components: - type: Transform @@ -98713,7 +98972,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1902 components: - type: Transform @@ -98724,7 +98983,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2026 components: - type: Transform @@ -98732,7 +98991,7 @@ entities: pos: -22.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2205 components: - type: Transform @@ -98740,7 +98999,7 @@ entities: pos: 29.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2360 components: - type: Transform @@ -98748,28 +99007,28 @@ entities: pos: 23.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2374 components: - type: Transform pos: 23.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2563 components: - type: Transform pos: 29.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2704 components: - type: Transform pos: 39.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2772 components: - type: Transform @@ -98777,7 +99036,7 @@ entities: pos: -37.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2821 components: - type: Transform @@ -98785,7 +99044,7 @@ entities: pos: 44.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2983 components: - type: Transform @@ -98817,7 +99076,7 @@ entities: pos: 44.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3693 components: - type: Transform @@ -98825,7 +99084,7 @@ entities: pos: 16.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3962 components: - type: Transform @@ -98833,14 +99092,14 @@ entities: pos: -7.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3963 components: - type: Transform pos: -13.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3985 components: - type: Transform @@ -98848,14 +99107,14 @@ entities: pos: 0.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4502 components: - type: Transform pos: 39.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4944 components: - type: Transform @@ -98863,7 +99122,7 @@ entities: pos: 0.5,-47.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4971 components: - type: Transform @@ -98871,7 +99130,7 @@ entities: pos: 0.5,-54.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5404 components: - type: Transform @@ -98879,7 +99138,7 @@ entities: pos: 43.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5411 components: - type: Transform @@ -98887,14 +99146,14 @@ entities: pos: 10.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5440 components: - type: Transform pos: 34.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5454 components: - type: Transform @@ -98905,14 +99164,14 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5581 components: - type: Transform pos: -42.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5738 components: - type: Transform @@ -98920,7 +99179,7 @@ entities: pos: -1.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5745 components: - type: Transform @@ -98928,7 +99187,7 @@ entities: pos: -10.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5766 components: - type: Transform @@ -98936,7 +99195,7 @@ entities: pos: 16.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5820 components: - type: Transform @@ -98944,7 +99203,7 @@ entities: pos: 18.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5823 components: - type: Transform @@ -98952,7 +99211,7 @@ entities: pos: 29.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5831 components: - type: Transform @@ -98960,7 +99219,7 @@ entities: pos: 43.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5930 components: - type: Transform @@ -98968,7 +99227,7 @@ entities: pos: -29.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5961 components: - type: Transform @@ -98976,14 +99235,14 @@ entities: pos: -37.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5962 components: - type: Transform pos: -30.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6015 components: - type: Transform @@ -98991,7 +99250,7 @@ entities: pos: -34.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6018 components: - type: Transform @@ -98999,7 +99258,7 @@ entities: pos: -37.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6028 components: - type: Transform @@ -99007,7 +99266,7 @@ entities: pos: -41.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6058 components: - type: Transform @@ -99015,7 +99274,7 @@ entities: pos: -43.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6065 components: - type: Transform @@ -99023,7 +99282,7 @@ entities: pos: -18.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6290 components: - type: Transform @@ -99031,7 +99290,7 @@ entities: pos: 16.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6299 components: - type: Transform @@ -99039,7 +99298,7 @@ entities: pos: 11.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6308 components: - type: Transform @@ -99050,7 +99309,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6474 components: - type: Transform @@ -99058,7 +99317,7 @@ entities: pos: -1.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6475 components: - type: Transform @@ -99066,7 +99325,7 @@ entities: pos: -1.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6762 components: - type: Transform @@ -99077,7 +99336,7 @@ entities: deviceLists: - 8260 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7177 components: - type: Transform @@ -99085,7 +99344,7 @@ entities: pos: -27.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7343 components: - type: Transform @@ -99093,7 +99352,7 @@ entities: pos: -42.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7368 components: - type: Transform @@ -99101,7 +99360,7 @@ entities: pos: -0.5,-76.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7463 components: - type: Transform @@ -99109,7 +99368,7 @@ entities: pos: -10.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7488 components: - type: Transform @@ -99117,7 +99376,7 @@ entities: pos: 8.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7686 components: - type: Transform @@ -99125,7 +99384,7 @@ entities: pos: -31.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7790 components: - type: Transform @@ -99136,7 +99395,7 @@ entities: deviceLists: - 249 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8137 components: - type: Transform @@ -99144,7 +99403,7 @@ entities: pos: -3.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8230 components: - type: Transform @@ -99155,7 +99414,7 @@ entities: deviceLists: - 2103 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8269 components: - type: Transform @@ -99165,7 +99424,7 @@ entities: deviceLists: - 8265 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8578 components: - type: Transform @@ -99173,7 +99432,7 @@ entities: pos: -33.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8620 components: - type: Transform @@ -99181,7 +99440,7 @@ entities: pos: 16.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8718 components: - type: Transform @@ -99192,7 +99451,7 @@ entities: deviceLists: - 8669 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8898 components: - type: Transform @@ -99202,7 +99461,7 @@ entities: deviceLists: - 8271 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8960 components: - type: Transform @@ -99210,14 +99469,14 @@ entities: pos: -48.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9017 components: - type: Transform pos: -47.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9034 components: - type: Transform @@ -99228,7 +99487,7 @@ entities: deviceLists: - 8791 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9061 components: - type: Transform @@ -99236,7 +99495,7 @@ entities: pos: 29.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9062 components: - type: Transform @@ -99244,14 +99503,14 @@ entities: pos: 29.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9154 components: - type: Transform pos: -26.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9156 components: - type: Transform @@ -99262,7 +99521,7 @@ entities: deviceLists: - 8714 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9160 components: - type: Transform @@ -99270,7 +99529,7 @@ entities: pos: 22.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9428 components: - type: Transform @@ -99280,14 +99539,14 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9608 components: - type: Transform pos: -41.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9631 components: - type: Transform @@ -99298,7 +99557,7 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9641 components: - type: Transform @@ -99306,7 +99565,7 @@ entities: pos: -41.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9674 components: - type: Transform @@ -99317,14 +99576,14 @@ entities: deviceLists: - 7065 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9677 components: - type: Transform pos: -38.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12001 components: - type: Transform @@ -99332,7 +99591,7 @@ entities: pos: 16.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12591 components: - type: Transform @@ -99340,7 +99599,7 @@ entities: pos: 16.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12594 components: - type: Transform @@ -99355,7 +99614,7 @@ entities: pos: 38.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12632 components: - type: Transform @@ -99363,14 +99622,14 @@ entities: pos: 41.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12633 components: - type: Transform pos: 38.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12897 components: - type: Transform @@ -99378,7 +99637,7 @@ entities: pos: 13.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13073 components: - type: Transform @@ -99386,7 +99645,7 @@ entities: pos: 40.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13075 components: - type: Transform @@ -99394,7 +99653,7 @@ entities: pos: 38.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13238 components: - type: Transform @@ -99402,7 +99661,7 @@ entities: pos: 19.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13444 components: - type: Transform @@ -99415,14 +99674,14 @@ entities: pos: 36.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13563 components: - type: Transform pos: 22.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13754 components: - type: Transform @@ -99436,14 +99695,14 @@ entities: pos: -14.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14312 components: - type: Transform pos: -11.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14318 components: - type: Transform @@ -99451,14 +99710,14 @@ entities: pos: -9.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14503 components: - type: Transform pos: -27.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15648 components: - type: Transform @@ -99466,7 +99725,7 @@ entities: pos: -21.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15649 components: - type: Transform @@ -99474,7 +99733,7 @@ entities: pos: -16.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15650 components: - type: Transform @@ -99482,14 +99741,14 @@ entities: pos: -11.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16560 components: - type: Transform pos: -25.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16605 components: - type: Transform @@ -99497,37 +99756,43 @@ entities: pos: -11.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16615 components: - type: Transform pos: 1.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16621 components: - type: Transform pos: -1.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16633 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,25.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21710 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16634 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,28.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 15745 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16642 components: - type: Transform @@ -99535,7 +99800,7 @@ entities: pos: -2.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16667 components: - type: Transform @@ -99543,21 +99808,21 @@ entities: pos: 12.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16668 components: - type: Transform pos: 10.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16672 components: - type: Transform pos: 3.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16673 components: - type: Transform @@ -99565,7 +99830,7 @@ entities: pos: -3.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16675 components: - type: Transform @@ -99573,7 +99838,7 @@ entities: pos: 0.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16681 components: - type: Transform @@ -99581,7 +99846,7 @@ entities: pos: 4.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17603 components: - type: Transform @@ -99589,7 +99854,7 @@ entities: pos: -46.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17604 components: - type: Transform @@ -99597,7 +99862,7 @@ entities: pos: -46.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17621 components: - type: Transform @@ -99605,7 +99870,7 @@ entities: pos: -34.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17626 components: - type: Transform @@ -99617,7 +99882,7 @@ entities: pos: -31.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17632 components: - type: Transform @@ -99625,7 +99890,7 @@ entities: pos: -15.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18257 components: - type: Transform @@ -99633,7 +99898,7 @@ entities: pos: -4.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18258 components: - type: Transform @@ -99641,7 +99906,7 @@ entities: pos: -7.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18260 components: - type: Transform @@ -99649,7 +99914,7 @@ entities: pos: 0.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18425 components: - type: Transform @@ -99657,7 +99922,7 @@ entities: pos: 0.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18428 components: - type: Transform @@ -99665,7 +99930,7 @@ entities: pos: 4.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18430 components: - type: Transform @@ -99673,7 +99938,7 @@ entities: pos: 0.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18434 components: - type: Transform @@ -99681,21 +99946,21 @@ entities: pos: -2.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18657 components: - type: Transform pos: 43.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18658 components: - type: Transform pos: 44.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18685 components: - type: Transform @@ -99703,7 +99968,7 @@ entities: pos: 48.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18686 components: - type: Transform @@ -99711,7 +99976,7 @@ entities: pos: 53.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18687 components: - type: Transform @@ -99719,7 +99984,7 @@ entities: pos: 53.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18884 components: - type: Transform @@ -99730,7 +99995,7 @@ entities: deviceLists: - 24792 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18915 components: - type: Transform @@ -99738,7 +100003,7 @@ entities: pos: 48.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18938 components: - type: Transform @@ -99753,7 +100018,7 @@ entities: pos: 31.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19058 components: - type: Transform @@ -99763,7 +100028,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19059 components: - type: Transform @@ -99773,7 +100038,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19180 components: - type: Transform @@ -99781,7 +100046,7 @@ entities: pos: 21.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21328 components: - type: Transform @@ -99875,7 +100140,7 @@ entities: deviceLists: - 23956 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24358 components: - type: Transform @@ -99883,7 +100148,7 @@ entities: pos: 47.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25175 components: - type: Transform @@ -99894,7 +100159,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25176 components: - type: Transform @@ -99905,7 +100170,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25177 components: - type: Transform @@ -99916,7 +100181,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25178 components: - type: Transform @@ -99927,7 +100192,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25183 components: - type: Transform @@ -99937,7 +100202,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25186 components: - type: Transform @@ -99948,7 +100213,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - uid: 14850 @@ -104297,16 +104562,6 @@ entities: - type: Transform pos: 1.5,26.5 parent: 60 - - uid: 16004 - components: - - type: Transform - pos: 0.5,22.5 - parent: 60 - - uid: 16005 - components: - - type: Transform - pos: 1.5,22.5 - parent: 60 - uid: 16006 components: - type: Transform @@ -104394,6 +104649,16 @@ entities: - type: Transform pos: 1.5,37.5 parent: 60 + - uid: 16623 + components: + - type: Transform + pos: 1.5,22.5 + parent: 60 + - uid: 16636 + components: + - type: Transform + pos: 0.5,22.5 + parent: 60 - uid: 16995 components: - type: Transform @@ -124361,21 +124626,6 @@ entities: - type: Transform pos: 10.5,22.5 parent: 60 - - uid: 15722 - components: - - type: Transform - pos: 1.5,22.5 - parent: 60 - - uid: 15723 - components: - - type: Transform - pos: 0.5,22.5 - parent: 60 - - uid: 15724 - components: - - type: Transform - pos: -0.5,22.5 - parent: 60 - uid: 15725 components: - type: Transform @@ -129590,6 +129840,33 @@ entities: - type: Transform pos: 42.5,-30.5 parent: 60 +- proto: SMESAdvanced + entities: + - uid: 16715 + components: + - type: Transform + pos: -0.5,25.5 + parent: 60 + - uid: 16716 + components: + - type: Transform + pos: 1.5,25.5 + parent: 60 + - uid: 16717 + components: + - type: Transform + pos: 0.5,25.5 + parent: 60 + - uid: 24414 + components: + - type: Transform + pos: 1.5,23.5 + parent: 60 + - uid: 24685 + components: + - type: Transform + pos: 0.5,23.5 + parent: 60 - proto: SMESBasic entities: - uid: 3207 @@ -129628,27 +129905,6 @@ entities: - type: Transform pos: -65.5,-17.5 parent: 60 - - uid: 15744 - components: - - type: MetaData - name: Engineering SMES 3 - - type: Transform - pos: 1.5,25.5 - parent: 60 - - uid: 15745 - components: - - type: MetaData - name: Engineering SMES 2 - - type: Transform - pos: 0.5,25.5 - parent: 60 - - uid: 15746 - components: - - type: MetaData - name: Engineering SMES 1 - - type: Transform - pos: -0.5,25.5 - parent: 60 - uid: 16153 components: - type: Transform @@ -157044,6 +157300,24 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,26.5 parent: 60 + - uid: 16005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 60 + - uid: 16616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 60 + - uid: 16714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 60 - uid: 17843 components: - type: Transform @@ -160026,6 +160300,33 @@ entities: - type: Transform pos: -13.5,-19.5 parent: 60 + - uid: 24660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,22.5 + parent: 60 + - uid: 24663 + components: + - type: Transform + pos: -0.5,22.5 + parent: 60 + - uid: 24666 + components: + - type: Transform + pos: 0.5,22.5 + parent: 60 + - uid: 24675 + components: + - type: Transform + pos: 1.5,22.5 + parent: 60 + - uid: 24676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 60 - uid: 25388 components: - type: Transform @@ -160101,7 +160402,7 @@ entities: - uid: 16066 components: - type: Transform - pos: 4.583174,23.552982 + pos: 4.7859836,23.670473 parent: 60 - uid: 17140 components: From 8b0b822207f892cd899236a76926dab681dcc55d Mon Sep 17 00:00:00 2001 From: Spanky Date: Wed, 18 Dec 2024 00:55:09 -0500 Subject: [PATCH 128/263] Omega Update (Holopads & Engi Stuff) (#33926) Omega Update Add holopads, atmospheric network monitors & sensors, and advanced SMES's. --- Resources/Maps/omega.yml | 1259 ++++++++++++++++++++++++++++---------- 1 file changed, 935 insertions(+), 324 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 8b9f9cb6fa..648fec3b38 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -57,7 +57,7 @@ entities: chunks: -1,0: ind: -1,0 - tiles: PgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAABeQAAAAAADgAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAABHQAAAAAAeQAAAAAADgAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAADgAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAACHQAAAAAADgAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAABHQAAAAABDgAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAABHQAAAAADDgAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAADdgAAAAACHQAAAAABDgAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAAAHQAAAAADDgAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAABdgAAAAACHQAAAAABDgAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAACHQAAAAAADgAAAAADDgAAAAADWQAAAAACWQAAAAACWQAAAAADDgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABDgAAAAABWQAAAAAAWQAAAAADWQAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAA + tiles: PgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAABeQAAAAAADgAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAABHQAAAAAAeQAAAAAADgAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAADgAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAACHQAAAAAADgAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAABHQAAAAABDgAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAABHQAAAAADDgAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAADdgAAAAACHQAAAAABDgAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAAAHQAAAAADDgAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAABdgAAAAACHQAAAAABDgAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAACHQAAAAAADgAAAAADDgAAAAADWQAAAAACWQAAAAACWQAAAAADDgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABDgAAAAABWQAAAAAAWQAAAAADWQAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAA version: 6 0,0: ind: 0,0 @@ -65,11 +65,11 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAAgAAAAABAgAAAAABAgAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAACdgAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAANgAAAAAAHQAAAAACHQAAAAADHQAAAAAANgAAAAAAHQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAANgAAAAAAHQAAAAAAHQAAAAABUAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAA + tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAAgAAAAABAgAAAAABAgAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAACdgAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAANgAAAAAAHQAAAAACHQAAAAADHQAAAAAANgAAAAAAHQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAANgAAAAAAHQAAAAAAHQAAAAABUAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAA version: 6 0,1: ind: 0,1 - tiles: WQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACLwAAAAAALwAAAAAALwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACdgAAAAACdgAAAAACdgAAAAACUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC + tiles: WQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACLwAAAAAALwAAAAAALwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACdgAAAAACdgAAAAACdgAAAAACUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAA version: 6 0,-1: ind: 0,-1 @@ -77,11 +77,11 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: bAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAADeQAAAAAAWQAAAAADWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAOgAAAAAAHQAAAAABLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAACDgAAAAADDgAAAAACeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABDgAAAAAADgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAADgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAADDgAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADWQAAAAABDgAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAADgAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAADgAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAADHQAAAAADHQAAAAABDgAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAB + tiles: bAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAADeQAAAAAAWQAAAAADWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAOgAAAAAAHQAAAAABLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABDgAAAAAADgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAADgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAADDgAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADWQAAAAABDgAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAADgAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAADgAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAADHQAAAAADHQAAAAABDgAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAB version: 6 -2,1: ind: -2,1 - tiles: WQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAACeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAACeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 @@ -93,35 +93,35 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACBwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACBwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: HQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAACaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: HQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAACaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,2: ind: 1,2 - tiles: WQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADLAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADLAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAEBwAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAIBwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAIaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,3: ind: 0,3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAAANgAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACNgAAAAAAHQAAAAABNgAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAACeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAANgAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACHQAAAAACNgAAAAAAHQAAAAABHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAAANgAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACNgAAAAAAHQAAAAABNgAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAANgAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACHQAAAAACNgAAAAAAHQAAAAABHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: WQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAADeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAIeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAADeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 @@ -149,7 +149,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -157,19 +157,19 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACbAAAAAACbAAAAAACbAAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAABWQAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAGeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACbAAAAAACbAAAAAACbAAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAABWQAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAGBwAAAAAABwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAMeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAKBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAKBwAAAAAEBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAFBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHCwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -189,19 +189,19 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADTQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADHQAAAAABHQAAAAACTQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAACBwAAAAAABwAAAAAFBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADTQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADHQAAAAABHQAAAAACTQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAACBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAC + tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAC version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABWQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABWQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,0: ind: -4,0 @@ -209,11 +209,11 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAJeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABWQAAAAABWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAIegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABWQAAAAABWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAGBwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -225,7 +225,7 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 @@ -241,7 +241,7 @@ entities: version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 @@ -261,7 +261,7 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAA version: 6 -5,0: ind: -5,0 @@ -400,6 +400,8 @@ entities: 2153: -36,22 2182: -34,20 2183: -38,15 + 2309: -57,3 + 2310: -51,8 - node: angle: 4.71238898038469 rad color: '#DE3A3AFF' @@ -1026,6 +1028,9 @@ entities: 734: -49,-8 735: -50,-8 736: -51,-8 + 2306: -51,-7 + 2307: -50,-7 + 2308: -49,-7 - node: color: '#FFFFFFFF' id: Delivery @@ -1101,6 +1106,25 @@ entities: 2266: 23,-4 2267: 14,-3 2268: 14,-4 + 2311: 26,-4 + 2312: 26,-3 + 2313: 26,-2 + 2314: 32,-2 + 2315: 32,-3 + 2316: 32,-4 + 2317: -4,-10 + 2318: -3,-10 + 2319: -2,-10 + 2320: -7,-34 + 2321: -6,-34 + 2322: 0,-34 + 2323: 1,-34 + 2324: -4,12 + 2325: -3,12 + 2326: -2,12 + 2327: -4,15 + 2328: -3,15 + 2329: -2,15 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1667,10 +1691,10 @@ entities: 1103: -1,32 1104: -1,33 1105: -1,34 - 1106: -4,31 1107: -4,32 1108: -4,33 1109: -4,34 + 2305: -4,31 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -4692,6 +4716,13 @@ entities: container: 12116 - proto: ActionToggleLight entities: + - uid: 6594 + components: + - type: Transform + parent: 12120 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 12120 - uid: 8638 components: - type: Transform @@ -4986,7 +5017,6 @@ entities: - 7873 - 7887 - 7886 - - 7743 - 13696 - 13697 - uid: 12213 @@ -5658,8 +5688,6 @@ entities: - 9504 - 9421 - 13408 - - 13683 - - 13682 - uid: 13677 components: - type: Transform @@ -5966,13 +5994,6 @@ entities: - type: Transform pos: 6.5,18.5 parent: 4812 -- proto: AirlockCommandLocked - entities: - - uid: 11928 - components: - - type: Transform - pos: -13.5,18.5 - parent: 4812 - proto: AirlockDetectiveLocked entities: - uid: 5358 @@ -6026,6 +6047,12 @@ entities: - type: Transform pos: -14.5,9.5 parent: 4812 + - uid: 1098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,18.5 + parent: 4812 - uid: 3726 components: - type: Transform @@ -6627,11 +6654,6 @@ entities: - type: Transform pos: -21.5,10.5 parent: 4812 - - uid: 1098 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 4812 - uid: 4378 components: - type: Transform @@ -6692,6 +6714,11 @@ entities: - type: Transform pos: -2.5,12.5 parent: 4812 + - uid: 7743 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 4812 - uid: 8158 components: - type: Transform @@ -8331,6 +8358,11 @@ entities: parent: 4812 - proto: AsteroidRock entities: + - uid: 1804 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 4812 - uid: 2808 components: - type: Transform @@ -9601,11 +9633,6 @@ entities: - type: Transform pos: -51.5,-15.5 parent: 4812 - - uid: 10443 - components: - - type: Transform - pos: -51.5,-16.5 - parent: 4812 - uid: 10444 components: - type: Transform @@ -10648,6 +10675,11 @@ entities: parent: 4812 - proto: AsteroidRockMining entities: + - uid: 1805 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 4812 - uid: 3224 components: - type: Transform @@ -10723,11 +10755,6 @@ entities: - type: Transform pos: -53.5,-3.5 parent: 4812 - - uid: 12779 - components: - - type: Transform - pos: -55.5,-4.5 - parent: 4812 - uid: 13071 components: - type: Transform @@ -11274,14 +11301,6 @@ entities: parent: 4812 - type: BarSign current: TheAleNath -- proto: BaseComputer - entities: - - uid: 13498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,1.5 - parent: 4812 - proto: BaseGasCondenser entities: - uid: 9503 @@ -11956,10 +11975,10 @@ entities: - type: Transform pos: 14.429598,18.642262 parent: 4812 - - uid: 3705 + - uid: 11476 components: - type: Transform - pos: 15.550373,35.549133 + pos: 15.522215,35.610966 parent: 4812 - proto: BoxHandcuff entities: @@ -12127,11 +12146,17 @@ entities: parent: 4812 - proto: ButtonFrameCaution entities: + - uid: 9073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,7.5 + parent: 4812 - uid: 13615 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,8.5 + pos: -51.5,-7.5 parent: 4812 - uid: 13616 components: @@ -12139,6 +12164,18 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-0.5 parent: 4812 + - uid: 13617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,2.5 + parent: 4812 + - uid: 13682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,11.5 + parent: 4812 - proto: CableApcExtension entities: - uid: 258 @@ -28709,6 +28746,12 @@ entities: - type: Transform pos: -41.5,6.5 parent: 4812 + - uid: 4143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,10.5 + parent: 4812 - uid: 4197 components: - type: Transform @@ -30046,12 +30089,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-5.5 parent: 4812 - - uid: 12782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,11.5 - parent: 4812 - uid: 12997 components: - type: Transform @@ -30146,11 +30183,11 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-57.5 parent: 4812 - - uid: 13438 + - uid: 13498 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,10.5 + pos: -56.5,11.5 parent: 4812 - uid: 13513 components: @@ -30162,11 +30199,6 @@ entities: - type: Transform pos: -50.5,3.5 parent: 4812 - - uid: 13526 - components: - - type: Transform - pos: -52.5,3.5 - parent: 4812 - uid: 13541 components: - type: Transform @@ -30221,6 +30253,18 @@ entities: - type: Transform pos: -45.5,5.5 parent: 4812 + - uid: 13804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-39.5 + parent: 4812 + - uid: 13805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-39.5 + parent: 4812 - proto: Chair entities: - uid: 3239 @@ -32715,8 +32759,22 @@ entities: - uid: 12120 components: - type: Transform - pos: -41.401306,-7.235723 + pos: -42.855858,-7.1805997 parent: 4812 + - type: HandheldLight + toggleActionEntity: 6594 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6594 + - type: ActionsContainer - proto: ClothingHeadHatOutlawHat entities: - uid: 9510 @@ -33603,6 +33661,12 @@ entities: rot: 3.141592653589793 rad pos: -31.5,1.5 parent: 4812 + - uid: 13810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,0.5 + parent: 4812 - proto: ComputerAnalysisConsole entities: - uid: 6313 @@ -33615,6 +33679,20 @@ entities: linkedPorts: 6319: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 3581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 4812 + - uid: 13812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,0.5 + parent: 4812 - proto: computerBodyScanner entities: - uid: 4921 @@ -33910,6 +33988,12 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-25.5 parent: 4812 + - uid: 13788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-39.5 + parent: 4812 - proto: ComputerStationRecords entities: - uid: 1077 @@ -34270,6 +34354,11 @@ entities: - 0 - 0 - 0 + - uid: 13807 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 4812 - proto: CrateEngineeringSecure entities: - uid: 9425 @@ -35037,10 +35126,10 @@ entities: parent: 4812 - proto: DefaultStationBeaconTEG entities: - - uid: 10970 + - uid: 6560 components: - type: Transform - pos: -52.5,3.5 + pos: -51.5,3.5 parent: 4812 - proto: DefaultStationBeaconTheater entities: @@ -38191,7 +38280,7 @@ entities: - uid: 10763 components: - type: Transform - pos: -41.78473,-7.362537 + pos: -43.230858,-7.2431426 parent: 4812 - proto: DrinkMugMetal entities: @@ -38264,13 +38353,6 @@ entities: - type: Transform pos: -13.459903,-33.042583 parent: 4812 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 12645 - components: - - type: Transform - pos: 9.589803,43.291424 - parent: 4812 - proto: ElectricGuitarInstrument entities: - uid: 1720 @@ -38723,6 +38805,11 @@ entities: parent: 4812 - type: FaxMachine name: Security + - uid: 13774 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 4812 - proto: FaxMachineCaptain entities: - uid: 7298 @@ -38951,7 +39038,6 @@ entities: - 7782 - 7783 - 12212 - - 7743 - 13696 - 13697 - uid: 12221 @@ -39346,8 +39432,6 @@ entities: parent: 4812 - type: DeviceList devices: - - 13683 - - 13682 - 9504 - proto: FireAxeCabinetFilled entities: @@ -39553,15 +39637,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 4812 - - uid: 7743 - components: - - type: Transform - pos: -31.5,10.5 - parent: 4812 - - type: DeviceNetwork - deviceLists: - - 12210 - - 12209 - uid: 8591 components: - type: Transform @@ -39648,25 +39723,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-24.5 parent: 4812 - - uid: 13682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,6.5 - parent: 4812 - - type: DeviceNetwork - deviceLists: - - 13607 - - 13681 - - uid: 13683 - components: - - type: Transform - pos: -48.5,0.5 - parent: 4812 - - type: DeviceNetwork - deviceLists: - - 13607 - - 13681 - uid: 13696 components: - type: Transform @@ -40542,6 +40598,13 @@ entities: parent: 4812 - type: Fixtures fixtures: {} + - uid: 13785 + components: + - type: Transform + pos: 19.5,36.5 + parent: 4812 + - type: Fixtures + fixtures: {} - proto: FloorTileItemGold entities: - uid: 10471 @@ -41027,7 +41090,7 @@ entities: - uid: 10765 components: - type: Transform - pos: -43.00348,-7.268787 + pos: -42.970436,-7.3995013 parent: 4812 - proto: FoodPlate entities: @@ -41093,6 +41156,13 @@ entities: - type: Transform pos: -2.6495848,-3.5494857 parent: 4812 +- proto: GameMasterCircuitBoard + entities: + - uid: 12645 + components: + - type: Transform + pos: 9.589803,43.291424 + parent: 4812 - proto: GasAnalyzer entities: - uid: 6318 @@ -42232,6 +42302,76 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' +- proto: GasPipeSensor + entities: + - uid: 9699 + components: + - type: MetaData + name: gas pipe sensor (Burn Chamber Out) + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - type: Label + currentLabel: Burn Chamber Out + - type: NameModifier + baseName: gas pipe sensor + - uid: 9902 + components: + - type: MetaData + name: gas pipe sensor (Burn Chamber In) + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - type: Label + currentLabel: Burn Chamber In + - type: NameModifier + baseName: gas pipe sensor +- proto: GasPipeSensorDistribution + entities: + - uid: 10676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 9502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 10443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPipeSensorWaste + entities: + - uid: 10970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 251 @@ -50305,22 +50445,6 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,12.5 parent: 4812 - - uid: 8727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 8751 components: - type: Transform @@ -51197,14 +51321,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 9543 components: - type: Transform @@ -51221,22 +51337,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9933 components: - type: Transform @@ -52312,14 +52412,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 13741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 13742 components: - type: Transform @@ -54239,6 +54331,14 @@ entities: - type: Transform pos: -53.5,12.5 parent: 4812 + - uid: 9903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10090 components: - type: Transform @@ -54246,22 +54346,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#947507FF' - - uid: 11900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13377 components: - type: Transform @@ -54293,6 +54377,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 13759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasThermoMachineFreezer entities: - uid: 859 @@ -56244,16 +56336,6 @@ entities: parent: 4812 - proto: Girder entities: - - uid: 4142 - components: - - type: Transform - pos: 21.5,0.5 - parent: 4812 - - uid: 4143 - components: - - type: Transform - pos: 16.5,3.5 - parent: 4812 - uid: 6634 components: - type: Transform @@ -60649,6 +60731,505 @@ entities: - type: Transform pos: -51.5,-12.5 parent: 4812 +- proto: Holopad + entities: + - uid: 3705 + components: + - type: MetaData + name: holopad (Law Office) + - type: Transform + pos: -17.5,16.5 + parent: 4812 + - type: Label + currentLabel: Law Office + - type: NameModifier + baseName: holopad + - uid: 4482 + components: + - type: MetaData + name: holopad (Captain's Office) + - type: Transform + pos: -12.5,24.5 + parent: 4812 + - type: Label + currentLabel: Captain's Office + - type: NameModifier + baseName: holopad + - uid: 11928 + components: + - type: MetaData + name: holopad (Bar) + - type: Transform + pos: 3.5,7.5 + parent: 4812 + - type: Label + currentLabel: Bar + - type: NameModifier + baseName: holopad + - uid: 13760 + components: + - type: MetaData + name: holopad (Cargo Bay) + - type: Transform + pos: 16.5,19.5 + parent: 4812 + - type: Label + currentLabel: Cargo Bay + - type: NameModifier + baseName: holopad + - uid: 13762 + components: + - type: MetaData + name: holopad (Bridge) + - type: Transform + pos: -0.5,31.5 + parent: 4812 + - type: Label + currentLabel: Bridge + - type: NameModifier + baseName: holopad + - uid: 13763 + components: + - type: MetaData + name: holopad (HoS's Office) + - type: Transform + pos: -20.5,24.5 + parent: 4812 + - type: Label + currentLabel: HoS's Office + - type: NameModifier + baseName: holopad + - uid: 13764 + components: + - type: MetaData + name: holopad (Perma) + - type: Transform + pos: -29.5,29.5 + parent: 4812 + - type: Label + currentLabel: Perma + - type: NameModifier + baseName: holopad + - uid: 13765 + components: + - type: MetaData + name: holopad (Security Brig) + - type: Transform + pos: -30.5,15.5 + parent: 4812 + - type: Label + currentLabel: Security Brig + - type: NameModifier + baseName: holopad + - uid: 13766 + components: + - type: MetaData + name: holopad (Atmospherics Gear Room) + - type: Transform + pos: -31.5,2.5 + parent: 4812 + - type: Label + currentLabel: Atmospherics Gear Room + - type: NameModifier + baseName: holopad + - uid: 13767 + components: + - type: MetaData + name: holopad (Engineering Gear Room) + - type: Transform + pos: -31.5,-6.5 + parent: 4812 + - type: Label + currentLabel: Engineering Gear Room + - type: NameModifier + baseName: holopad + - uid: 13768 + components: + - type: MetaData + name: holopad (Atmospherics Bay) + - type: Transform + pos: -50.5,8.5 + parent: 4812 + - type: Label + currentLabel: Atmospherics Bay + - type: NameModifier + baseName: holopad + - uid: 13769 + components: + - type: MetaData + name: holopad (Engineering Break Room) + - type: Transform + pos: -40.5,-7.5 + parent: 4812 + - type: Label + currentLabel: Engineering Break Room + - type: NameModifier + baseName: holopad + - uid: 13770 + components: + - type: MetaData + name: holopad (CE's Office) + - type: Transform + pos: -50.5,-7.5 + parent: 4812 + - type: Label + currentLabel: CE's Office + - type: NameModifier + baseName: holopad + - uid: 13771 + components: + - type: MetaData + name: holopad (Library) + - type: Transform + pos: -27.5,-16.5 + parent: 4812 + - type: Label + currentLabel: Library + - type: NameModifier + baseName: holopad + - uid: 13772 + components: + - type: MetaData + name: holopad (CMO's Office) + - type: Transform + pos: -25.5,-27.5 + parent: 4812 + - type: Label + currentLabel: CMO's Office + - type: NameModifier + baseName: holopad + - uid: 13773 + components: + - type: MetaData + name: holopad (Chemistry) + - type: Transform + pos: -11.5,-15.5 + parent: 4812 + - type: Label + currentLabel: Chemistry + - type: NameModifier + baseName: holopad + - uid: 13777 + components: + - type: MetaData + name: holopad (Lounge) + - type: Transform + pos: -2.5,-17.5 + parent: 4812 + - type: Label + currentLabel: Lounge + - type: NameModifier + baseName: holopad + - uid: 13778 + components: + - type: MetaData + name: holopad (Medical Bay) + - type: Transform + pos: -16.5,-21.5 + parent: 4812 + - type: Label + currentLabel: Medical Bay + - type: NameModifier + baseName: holopad + - uid: 13779 + components: + - type: MetaData + name: holopad (Security Arrivals Checkpoint) + - type: Transform + pos: -2.5,-27.5 + parent: 4812 + - type: Label + currentLabel: Security Arrivals Checkpoint + - type: NameModifier + baseName: holopad + - uid: 13780 + components: + - type: MetaData + name: holopad (Atmospherics TEG) + - type: Transform + pos: -56.5,3.5 + parent: 4812 + - type: Label + currentLabel: Atmospherics TEG + - type: NameModifier + baseName: holopad + - uid: 13781 + components: + - type: MetaData + name: holopad (Botany) + - type: Transform + pos: -10.5,-7.5 + parent: 4812 + - type: Label + currentLabel: Botany + - type: NameModifier + baseName: holopad + - uid: 13782 + components: + - type: MetaData + name: holopad (Theater) + - type: Transform + pos: -9.5,6.5 + parent: 4812 + - type: Label + currentLabel: Theater + - type: NameModifier + baseName: holopad + - uid: 13783 + components: + - type: MetaData + name: holopad (QM's Office) + - type: Transform + pos: 16.5,31.5 + parent: 4812 + - type: Label + currentLabel: QM's Office + - type: NameModifier + baseName: holopad + - uid: 13784 + components: + - type: MetaData + name: holopad (Theater Office) + - type: Transform + pos: -9.5,0.5 + parent: 4812 + - type: Label + currentLabel: Theater Office + - type: NameModifier + baseName: holopad + - uid: 13786 + components: + - type: MetaData + name: holopad (Security EVAC Checkpoint) + - type: Transform + pos: 29.5,3.5 + parent: 4812 + - type: Label + currentLabel: Security EVAC Checkpoint + - type: NameModifier + baseName: holopad + - uid: 13787 + components: + - type: MetaData + name: holopad (Detective's Office) + - type: Transform + pos: 20.5,-16.5 + parent: 4812 + - type: Label + currentLabel: Detective's Office + - type: NameModifier + baseName: holopad + - uid: 13789 + components: + - type: MetaData + name: holopad (Science Xenoarchaeology) + - type: Transform + pos: 23.5,-25.5 + parent: 4812 + - type: Label + currentLabel: Science Xenoarchaeology + - type: NameModifier + baseName: holopad + - uid: 13790 + components: + - type: MetaData + name: holopad (Security Gear Room) + - type: Transform + pos: -37.5,11.5 + parent: 4812 + - type: Label + currentLabel: Security Gear Room + - type: NameModifier + baseName: holopad + - uid: 13791 + components: + - type: MetaData + name: holopad (Science RND) + - type: Transform + pos: 6.5,-15.5 + parent: 4812 + - type: Label + currentLabel: Science RND + - type: NameModifier + baseName: holopad + - uid: 13792 + components: + - type: MetaData + name: holopad (Janitorial) + - type: Transform + pos: -22.5,-6.5 + parent: 4812 + - type: Label + currentLabel: Janitorial + - type: NameModifier + baseName: holopad + - uid: 13793 + components: + - type: MetaData + name: holopad (Vault) + - type: Transform + pos: -2.5,22.5 + parent: 4812 + - type: Label + currentLabel: Vault + - type: NameModifier + baseName: holopad + - uid: 13795 + components: + - type: MetaData + name: holopad (RD's Office) + - type: Transform + pos: 27.5,-18.5 + parent: 4812 + - type: Label + currentLabel: RD's Office + - type: NameModifier + baseName: holopad + - uid: 13796 + components: + - type: MetaData + name: holopad (Science Anomaly Lab) + - type: Transform + pos: 33.5,-27.5 + parent: 4812 + - type: Label + currentLabel: Science Anomaly Lab + - type: NameModifier + baseName: holopad + - uid: 13797 + components: + - type: MetaData + name: holopad (Medical Morgue) + - type: Transform + pos: -19.5,-15.5 + parent: 4812 + - type: Label + currentLabel: Medical Morgue + - type: NameModifier + baseName: holopad + - uid: 13798 + components: + - type: MetaData + name: holopad (Medical Paramedic) + - type: Transform + pos: -9.5,-26.5 + parent: 4812 + - type: Label + currentLabel: Medical Paramedic + - type: NameModifier + baseName: holopad + - uid: 13799 + components: + - type: MetaData + name: holopad (AI Upload) + - type: Transform + pos: 6.5,46.5 + parent: 4812 + - type: Label + currentLabel: AI Upload + - type: NameModifier + baseName: holopad + - uid: 13800 + components: + - type: MetaData + name: holopad (AI Core) + - type: Transform + pos: 10.5,50.5 + parent: 4812 + - type: Label + currentLabel: AI Core + - type: NameModifier + baseName: holopad + - uid: 13801 + components: + - type: MetaData + name: holopad (Medical Virology) + - type: Transform + pos: -36.5,-34.5 + parent: 4812 + - type: Label + currentLabel: Medical Virology + - type: NameModifier + baseName: holopad + - uid: 13802 + components: + - type: MetaData + name: holopad (HoP's Office) + - type: Transform + pos: 8.5,25.5 + parent: 4812 + - type: Label + currentLabel: HoP's Office + - type: NameModifier + baseName: holopad + - uid: 13803 + components: + - type: MetaData + name: holopad (Tool Room) + - type: Transform + pos: -17.5,10.5 + parent: 4812 + - type: Label + currentLabel: Tool Room + - type: NameModifier + baseName: holopad + - uid: 13809 + components: + - type: MetaData + name: holopad (Chapel) + - type: Transform + pos: -17.5,-34.5 + parent: 4812 + - type: Label + currentLabel: Chapel + - type: NameModifier + baseName: holopad + - uid: 13811 + components: + - type: MetaData + name: holopad (Kitchen) + - type: Transform + pos: 4.5,-2.5 + parent: 4812 + - type: Label + currentLabel: Kitchen + - type: NameModifier + baseName: holopad + - uid: 13813 + components: + - type: MetaData + name: holopad (Science Robotics) + - type: Transform + pos: 5.5,-26.5 + parent: 4812 + - type: Label + currentLabel: Science Robotics + - type: NameModifier + baseName: holopad +- proto: HolopadLongRange + entities: + - uid: 13758 + components: + - type: MetaData + name: long-range holopad (Station Cargo) + - type: Transform + pos: 17.5,26.5 + parent: 4812 + - type: Label + currentLabel: Station Cargo + - type: NameModifier + baseName: long-range holopad + - uid: 13761 + components: + - type: MetaData + name: long-range holopad (Station Bridge) + - type: Transform + pos: -4.5,31.5 + parent: 4812 + - type: Label + currentLabel: Station Bridge + - type: NameModifier + baseName: long-range holopad - proto: HospitalCurtainsOpen entities: - uid: 3228 @@ -61516,6 +62097,66 @@ entities: - type: Transform pos: 9.339803,43.5883 parent: 4812 +- proto: LockableButtonAtmospherics + entities: + - uid: 4142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,11.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9455: + - Pressed: Toggle + - uid: 8728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-0.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9828: + - Pressed: Toggle + - uid: 13618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,7.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9455: + - Pressed: Toggle + - uid: 13619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,2.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9828: + - Pressed: Toggle +- proto: LockableButtonChiefEngineer + entities: + - uid: 13776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-7.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 10675: + - Pressed: Toggle + 10674: + - Pressed: Toggle + 10673: + - Pressed: Toggle + 13775: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 9571 @@ -61756,6 +62397,11 @@ entities: - 0 - 0 - 0 + - uid: 13808 + components: + - type: Transform + pos: 30.5,-36.5 + parent: 4812 - proto: LockerEngineerFilled entities: - uid: 9719 @@ -63388,11 +64034,6 @@ entities: - type: Transform pos: -12.499591,23.511097 parent: 4812 - - uid: 3581 - components: - - type: Transform - pos: 15.253733,35.810513 - parent: 4812 - proto: PianoInstrument entities: - uid: 1749 @@ -64374,6 +65015,56 @@ entities: - type: Transform pos: 28.456348,-20.243092 parent: 4812 +- proto: PoweredDimSmallLight + entities: + - uid: 8727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 4812 + - uid: 11900 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 4812 + - uid: 11906 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 4812 + - uid: 12779 + components: + - type: Transform + pos: 16.5,11.5 + parent: 4812 + - uid: 12782 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 4812 + - uid: 13386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 4812 + - uid: 13438 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 4812 + - uid: 13526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 4812 + - uid: 13606 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 4812 - proto: Poweredlight entities: - uid: 742 @@ -65846,20 +66537,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1804 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1805 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1806 components: - type: Transform @@ -65991,13 +66668,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4482 - components: - - type: Transform - pos: 16.5,11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4545 components: - type: Transform @@ -66293,13 +66963,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9073 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9353 components: - type: Transform @@ -66327,14 +66990,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10408 components: - type: Transform @@ -66419,21 +67074,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11256 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-38.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11357 components: - type: Transform @@ -66464,13 +67104,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11476 - components: - - type: Transform - pos: 18.5,-36.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11674 components: - type: Transform @@ -66516,12 +67149,6 @@ entities: - type: Transform pos: 64.5,-1.5 parent: 4812 - - uid: 13386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-18.5 - parent: 4812 - uid: 13461 components: - type: Transform @@ -66540,6 +67167,12 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-1.5 parent: 4812 + - uid: 13794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-38.5 + parent: 4812 - proto: PresentRandom entities: - uid: 6392 @@ -66824,6 +67457,12 @@ entities: - type: Transform pos: -31.5,17.5 parent: 4812 + - uid: 13806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-39.5 + parent: 4812 - proto: RadioHandheld entities: - uid: 4582 @@ -70699,6 +71338,11 @@ entities: - type: Transform pos: -7.5,-27.5 parent: 4812 + - uid: 13775 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 4812 - proto: ShuttleConsoleCircuitboard entities: - uid: 10959 @@ -70857,37 +71501,6 @@ entities: - Pressed: Toggle 8161: - Pressed: Toggle - - uid: 10676 - components: - - type: Transform - pos: -51.5,-7.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 10675: - - Pressed: Toggle - 10674: - - Pressed: Toggle - 10673: - - Pressed: Toggle - - uid: 13618 - components: - - type: Transform - pos: -62.5,2.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 9828: - - Pressed: Toggle - - uid: 13619 - components: - - type: Transform - pos: -61.5,11.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 9455: - - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 4413 @@ -70930,26 +71543,6 @@ entities: - Pressed: Toggle 13665: - Pressed: Toggle - - uid: 13606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,8.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 9455: - - Pressed: Toggle - - uid: 13617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-0.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 9828: - - Pressed: Toggle - uid: 13662 components: - type: Transform @@ -72015,6 +72608,22 @@ entities: - type: Transform pos: 10.5,-43.5 parent: 4812 +- proto: SMESAdvanced + entities: + - uid: 13683 + components: + - type: MetaData + name: SMES Bank 2 + - type: Transform + pos: -44.5,-2.5 + parent: 4812 + - uid: 13741 + components: + - type: MetaData + name: SMES Bank 1 + - type: Transform + pos: -45.5,-2.5 + parent: 4812 - proto: SMESBasic entities: - uid: 3699 @@ -72031,16 +72640,6 @@ entities: - type: Transform pos: 14.5,47.5 parent: 4812 - - uid: 6560 - components: - - type: Transform - pos: -45.5,-2.5 - parent: 4812 - - uid: 6594 - components: - - type: Transform - pos: -44.5,-2.5 - parent: 4812 - uid: 10166 components: - type: MetaData @@ -85885,6 +86484,12 @@ entities: - type: Transform pos: 34.5,-35.5 parent: 4812 + - uid: 11256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,0.5 + parent: 4812 - uid: 11266 components: - type: Transform @@ -85925,6 +86530,12 @@ entities: - type: Transform pos: 16.5,-35.5 parent: 4812 + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 4812 - uid: 11302 components: - type: Transform From 42f7279f52bbd5c272c5bfbcd2c2ff8b48932eed Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Wed, 18 Dec 2024 00:17:48 -0800 Subject: [PATCH 129/263] Box Power Rebalance + Holopads, Gas Pipe Sensors (#33929) * fix power * Rebalance power, add holopads, add pipenet sensors * recolor that one pipe I missed + remove invalids * resave map, if this fails tests one more time, no more cake --- Resources/Maps/box.yml | 4156 ++++++++++++++++++++++++---------------- 1 file changed, 2485 insertions(+), 1671 deletions(-) diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 79d9b8114f..e7343a76fe 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -137,7 +137,7 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAABdQAAAAACdQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAdQAAAAACdQAAAAABdQAAAAABdQAAAAAAdQAAAAACWQAAAAABLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAACeQAAAAAAaQAAAAAAdQAAAAAAdQAAAAABdQAAAAAAdQAAAAAAdQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAADWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAJgAAAAADJgAAAAABdQAAAAADJgAAAAACJgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAABbAAAAAABWQAAAAABWQAAAAAAWQAAAAACHQAAAAABeQAAAAAAJgAAAAABJgAAAAADdQAAAAACJgAAAAADJgAAAAAAeQAAAAAAUgAAAAABLAAAAAAALAAAAAAAeQAAAAAAbAAAAAADWQAAAAAAWQAAAAACWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAABdQAAAAACdQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAdQAAAAACdQAAAAABdQAAAAABdQAAAAAAdQAAAAACWQAAAAABLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAACeQAAAAAAaQAAAAAAdQAAAAAAdQAAAAABdQAAAAAAdQAAAAAAdQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAADWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAJgAAAAADJgAAAAABdQAAAAADJgAAAAACJgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAABbAAAAAABWQAAAAABWQAAAAAAWQAAAAADHQAAAAABeQAAAAAAJgAAAAABJgAAAAADdQAAAAACJgAAAAADJgAAAAAAeQAAAAAAUgAAAAABLAAAAAAALAAAAAAAeQAAAAAAbAAAAAADWQAAAAAAWQAAAAACWQAAAAAB version: 6 1,0: ind: 1,0 @@ -369,7 +369,7 @@ entities: version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAADAwAAAAACAwAAAAABeQAAAAAAWQAAAAADWQAAAAACDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAADAwAAAAABAwAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAADAwAAAAACAwAAAAABeQAAAAAAWQAAAAADWQAAAAACDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAADAwAAAAABAwAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -557,11 +557,6 @@ entities: id: Arrows decals: 3643: 60,-52 - - node: - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 386: -25,-66 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -709,9 +704,6 @@ entities: color: '#FFFFFFFF' id: BotGreyscale decals: - 383: -26,-69 - 384: -26,-68 - 385: -26,-67 1060: -1,-22 1061: -2,-21 1062: -1,-20 @@ -743,7 +735,6 @@ entities: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 381: -24,-67 1058: 0,-20 1059: -2,-22 - node: @@ -763,7 +754,6 @@ entities: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 382: -24,-69 1056: 0,-22 1057: -2,-20 - node: @@ -836,6 +826,11 @@ entities: 3582: 0,36 3583: 1,36 3584: 2,36 + 4242: -27,-70 + 4246: -23,-70 + 4276: -26,-70 + 4277: -24,-70 + 4281: -25,-70 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1703,7 +1698,6 @@ entities: id: Caution decals: 1680: 66,-22 - 2436: 31,-34 2615: 9,-74 - node: color: '#3B393B85' @@ -5409,6 +5403,7 @@ entities: 2314: -73,-4 3093: 13,-77 3512: -13,-63 + 4264: -27,-70 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -5423,6 +5418,7 @@ entities: 2313: -76,-4 3092: 17,-77 3511: -11,-63 + 4263: -23,-70 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -5433,6 +5429,7 @@ entities: 2041: 22,-90 2317: -73,8 3091: 13,-75 + 4254: -27,-66 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5449,6 +5446,7 @@ entities: 2316: -76,8 3094: 17,-75 3699: -38,-10 + 4259: -23,-66 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN @@ -5501,6 +5499,9 @@ entities: 3089: 13,-76 3510: -13,-62 3514: 23,18 + 4251: -27,-67 + 4252: -27,-68 + 4253: -27,-69 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5764,6 +5765,9 @@ entities: 3086: 14,-75 3087: 15,-75 3088: 16,-75 + 4255: -26,-66 + 4258: -24,-66 + 4280: -25,-66 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5830,6 +5834,9 @@ entities: 3568: -11,35 3569: -11,36 3703: -38,-11 + 4260: -23,-67 + 4261: -23,-68 + 4262: -23,-69 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5844,11 +5851,6 @@ entities: 352: 0,38 353: -1,38 354: -2,38 - 376: -23,-70 - 377: -24,-70 - 378: -25,-70 - 379: -26,-70 - 380: -27,-70 664: 74,-34 665: 73,-34 666: 72,-34 @@ -5915,6 +5917,9 @@ entities: 3084: 15,-77 3085: 16,-77 3508: -12,-63 + 4278: -26,-70 + 4279: -24,-70 + 4282: -25,-70 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -9312,8 +9317,8 @@ entities: - type: DeviceList devices: - 23261 - - 23260 - 22587 + - 16789 - uid: 22589 components: - type: Transform @@ -11917,7 +11922,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -28068.637 + secondsUntilStateChange: -32560.857 state: Opening - type: DeviceLinkSource lastSignals: @@ -13684,6 +13689,9 @@ entities: - type: Transform pos: -23.5,-67.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22588 - uid: 22591 components: - type: Transform @@ -14140,7 +14148,12 @@ entities: - uid: 16349 components: - type: Transform - pos: -12.447352,-72.425316 + pos: -12.304632,-72.45412 + parent: 8364 + - uid: 18727 + components: + - type: Transform + pos: -12.664007,-72.46974 parent: 8364 - proto: AnomalyScanner entities: @@ -40275,7 +40288,7 @@ entities: - uid: 4819 components: - type: Transform - pos: -23.5,-64.5 + pos: -22.5,-66.5 parent: 8364 - uid: 4973 components: @@ -41070,22 +41083,17 @@ entities: - uid: 6316 components: - type: Transform - pos: -25.5,-70.5 + pos: -24.5,-69.5 parent: 8364 - uid: 6317 components: - type: Transform - pos: -25.5,-68.5 - parent: 8364 - - uid: 6319 - components: - - type: Transform - pos: -25.5,-67.5 + pos: -25.5,-64.5 parent: 8364 - uid: 6321 components: - type: Transform - pos: -25.5,-69.5 + pos: -24.5,-68.5 parent: 8364 - uid: 6322 components: @@ -41095,7 +41103,7 @@ entities: - uid: 6323 components: - type: Transform - pos: -25.5,-66.5 + pos: -26.5,-66.5 parent: 8364 - uid: 6324 components: @@ -44570,7 +44578,7 @@ entities: - uid: 14368 components: - type: Transform - pos: -23.5,-65.5 + pos: -23.5,-66.5 parent: 8364 - uid: 14600 components: @@ -44620,7 +44628,7 @@ entities: - uid: 14925 components: - type: Transform - pos: -24.5,-64.5 + pos: -22.5,-67.5 parent: 8364 - uid: 15105 components: @@ -44977,6 +44985,56 @@ entities: - type: Transform pos: -6.5,-53.5 parent: 8364 + - uid: 16592 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 8364 + - uid: 16593 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 8364 + - uid: 16594 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 8364 + - uid: 16595 + components: + - type: Transform + pos: -26.5,-67.5 + parent: 8364 + - uid: 16596 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 8364 + - uid: 16606 + components: + - type: Transform + pos: -26.5,-64.5 + parent: 8364 + - uid: 16617 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 8364 + - uid: 16790 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 8364 + - uid: 16791 + components: + - type: Transform + pos: -23.5,-64.5 + parent: 8364 + - uid: 16877 + components: + - type: Transform + pos: -22.5,-64.5 + parent: 8364 - uid: 17006 components: - type: Transform @@ -44995,7 +45053,7 @@ entities: - uid: 17012 components: - type: Transform - pos: -25.5,-64.5 + pos: -23.5,-67.5 parent: 8364 - uid: 17014 components: @@ -45045,23 +45103,18 @@ entities: - uid: 17162 components: - type: Transform - pos: -23.5,-66.5 + pos: -23.5,-68.5 parent: 8364 - uid: 17163 components: - type: Transform - pos: -23.5,-67.5 + pos: -25.5,-68.5 parent: 8364 - uid: 17164 components: - type: Transform pos: -22.5,-68.5 parent: 8364 - - uid: 17165 - components: - - type: Transform - pos: -23.5,-68.5 - parent: 8364 - uid: 17167 components: - type: Transform @@ -45507,6 +45560,11 @@ entities: - type: Transform pos: 46.5,-38.5 parent: 8364 + - uid: 18596 + components: + - type: Transform + pos: -22.5,-65.5 + parent: 8364 - uid: 18722 components: - type: Transform @@ -45517,6 +45575,11 @@ entities: - type: Transform pos: -4.5,-56.5 parent: 8364 + - uid: 18728 + components: + - type: Transform + pos: -24.5,-71.5 + parent: 8364 - uid: 18763 components: - type: Transform @@ -45582,26 +45645,6 @@ entities: - type: Transform pos: -26.5,-65.5 parent: 8364 - - uid: 18979 - components: - - type: Transform - pos: -26.5,-64.5 - parent: 8364 - - uid: 19017 - components: - - type: Transform - pos: -24.5,-68.5 - parent: 8364 - - uid: 19018 - components: - - type: Transform - pos: -24.5,-67.5 - parent: 8364 - - uid: 19019 - components: - - type: Transform - pos: -24.5,-66.5 - parent: 8364 - uid: 19053 components: - type: Transform @@ -57637,6 +57680,12 @@ entities: parent: 8364 - proto: CableTerminal entities: + - uid: 6319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-67.5 + parent: 8364 - uid: 15917 components: - type: Transform @@ -57649,30 +57698,42 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-50.5 parent: 8364 + - uid: 16597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-68.5 + parent: 8364 + - uid: 16598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-67.5 + parent: 8364 + - uid: 16599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-66.5 + parent: 8364 + - uid: 16615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-66.5 + parent: 8364 + - uid: 16616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-68.5 + parent: 8364 - uid: 17346 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,23.5 parent: 8364 - - uid: 19020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-68.5 - parent: 8364 - - uid: 19021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-67.5 - parent: 8364 - - uid: 19028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-66.5 - parent: 8364 - uid: 19131 components: - type: Transform @@ -62330,6 +62391,24 @@ entities: - type: Transform pos: 49.5,-24.5 parent: 8364 + - uid: 19017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-66.5 + parent: 8364 + - uid: 19018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-67.5 + parent: 8364 + - uid: 19019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-68.5 + parent: 8364 - uid: 19189 components: - type: Transform @@ -64514,11 +64593,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,1.5 parent: 8364 - - uid: 10817 - components: - - type: Transform - pos: 56.5,2.5 - parent: 8364 - uid: 10818 components: - type: Transform @@ -64709,6 +64783,11 @@ entities: - type: Transform pos: 2.7203026,-11.488351 parent: 8364 + - uid: 28111 + components: + - type: Transform + pos: 56.5,2.5 + parent: 8364 - proto: ChairOfficeLight entities: - uid: 5220 @@ -70425,6 +70504,18 @@ entities: linkedPorts: 21199: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 19021 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 8364 + - uid: 19028 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 8364 - proto: computerBodyScanner entities: - uid: 2390 @@ -70663,6 +70754,12 @@ entities: - type: Transform pos: -3.5,-4.5 parent: 8364 + - uid: 17165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-71.5 + parent: 8364 - uid: 17457 components: - type: Transform @@ -71309,6 +71406,11 @@ entities: - type: Transform pos: -11.5,-72.5 parent: 8364 + - uid: 18724 + components: + - type: Transform + pos: -10.5,-72.5 + parent: 8364 - proto: CrateEngineeringCableBulk entities: - uid: 9423 @@ -81923,13 +82025,6 @@ entities: - type: Transform pos: 74.3515,-18.443996 parent: 8364 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 27917 - components: - - type: Transform - pos: 3.5477152,-12.389968 - parent: 8364 - proto: EmergencyLight entities: - uid: 20300 @@ -85124,7 +85219,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -22257.174 + secondsUntilStateChange: -26749.395 state: Closing - uid: 15010 components: @@ -85617,7 +85712,7 @@ entities: pos: -4.5,-71.5 parent: 8364 - type: Door - secondsUntilStateChange: -14004.904 + secondsUntilStateChange: -18497.125 state: Closing - proto: Fireplace entities: @@ -86742,6 +86837,13 @@ entities: - type: Transform pos: -37.41171,-48.284546 parent: 8364 +- proto: GameMasterCircuitBoard + entities: + - uid: 27917 + components: + - type: Transform + pos: 3.5477152,-12.389968 + parent: 8364 - proto: GasAnalyzer entities: - uid: 12259 @@ -86807,7 +86909,7 @@ entities: pos: 29.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - proto: GasMinerCarbonDioxide entities: - uid: 16807 @@ -87071,14 +87173,14 @@ entities: pos: -4.5,39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 45 components: - type: Transform pos: -4.5,37.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2004 components: - type: Transform @@ -87232,6 +87334,8 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-33.5 parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 5258 components: - type: Transform @@ -87253,7 +87357,7 @@ entities: pos: -3.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5317 components: - type: Transform @@ -87261,7 +87365,7 @@ entities: pos: -3.5,-66.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5381 components: - type: Transform @@ -87269,7 +87373,7 @@ entities: pos: 52.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5389 components: - type: Transform @@ -87292,7 +87396,7 @@ entities: pos: 57.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5595 components: - type: Transform @@ -87331,7 +87435,7 @@ entities: pos: 69.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7228 components: - type: Transform @@ -87346,7 +87450,7 @@ entities: pos: -5.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7315 components: - type: Transform @@ -87361,7 +87465,7 @@ entities: pos: -4.5,41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8431 components: - type: Transform @@ -87392,7 +87496,7 @@ entities: pos: -18.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8971 components: - type: Transform @@ -87400,7 +87504,7 @@ entities: pos: -5.5,37.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8972 components: - type: Transform @@ -87408,7 +87512,7 @@ entities: pos: -5.5,39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8975 components: - type: Transform @@ -87431,7 +87535,7 @@ entities: pos: -5.5,41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9094 components: - type: Transform @@ -87439,7 +87543,7 @@ entities: pos: -13.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9097 components: - type: Transform @@ -87564,6 +87668,8 @@ entities: - type: Transform pos: 40.5,8.5 parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10443 components: - type: Transform @@ -87586,7 +87692,7 @@ entities: pos: -1.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15367 components: - type: Transform @@ -87601,7 +87707,7 @@ entities: pos: 1.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15880 components: - type: Transform @@ -87734,7 +87840,7 @@ entities: pos: 3.5,-63.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17095 components: - type: Transform @@ -87794,7 +87900,7 @@ entities: pos: 4.5,-63.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17203 components: - type: Transform @@ -87911,7 +88017,7 @@ entities: pos: 35.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18659 components: - type: Transform @@ -87919,13 +88025,15 @@ entities: pos: 28.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19247 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-35.5 parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 20067 components: - type: Transform @@ -87948,7 +88056,7 @@ entities: pos: 58.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21770 components: - type: Transform @@ -87956,19 +88064,23 @@ entities: pos: -5.5,-63.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21809 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-35.5 parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 22545 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-33.5 parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 22744 components: - type: Transform @@ -88022,14 +88134,14 @@ entities: pos: 7.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23128 components: - type: Transform pos: 8.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23129 components: - type: Transform @@ -88068,7 +88180,7 @@ entities: pos: 1.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23150 components: - type: Transform @@ -88076,7 +88188,7 @@ entities: pos: 1.5,-66.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23329 components: - type: Transform @@ -88084,14 +88196,14 @@ entities: pos: -17.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23432 components: - type: Transform pos: -54.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23433 components: - type: Transform @@ -88099,7 +88211,7 @@ entities: pos: -54.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23439 components: - type: Transform @@ -88107,21 +88219,21 @@ entities: pos: -64.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23447 components: - type: Transform pos: -64.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23501 components: - type: Transform pos: 14.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23567 components: - type: Transform @@ -88190,7 +88302,7 @@ entities: pos: -28.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23984 components: - type: Transform @@ -88205,7 +88317,7 @@ entities: pos: -28.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23986 components: - type: Transform @@ -88227,7 +88339,7 @@ entities: pos: -4.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24149 components: - type: Transform @@ -88235,14 +88347,14 @@ entities: pos: 3.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24151 components: - type: Transform pos: 3.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24152 components: - type: Transform @@ -88250,7 +88362,7 @@ entities: pos: -4.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24153 components: - type: Transform @@ -88288,7 +88400,7 @@ entities: pos: 8.5,14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24263 components: - type: Transform @@ -88302,7 +88414,7 @@ entities: pos: 20.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24379 components: - type: Transform @@ -88318,7 +88430,7 @@ entities: pos: 20.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24399 components: - type: Transform @@ -88341,7 +88453,7 @@ entities: pos: 22.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24438 components: - type: Transform @@ -88349,7 +88461,7 @@ entities: pos: 20.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24442 components: - type: Transform @@ -88372,7 +88484,7 @@ entities: pos: 29.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24477 components: - type: Transform @@ -88396,7 +88508,7 @@ entities: pos: 24.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24602 components: - type: Transform @@ -88404,7 +88516,7 @@ entities: pos: 24.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24603 components: - type: Transform @@ -88412,7 +88524,7 @@ entities: pos: 20.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24624 components: - type: Transform @@ -88452,7 +88564,7 @@ entities: pos: 40.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24639 components: - type: Transform @@ -88460,7 +88572,7 @@ entities: pos: 41.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24660 components: - type: Transform @@ -88476,7 +88588,7 @@ entities: pos: 40.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24723 components: - type: Transform @@ -88490,14 +88602,14 @@ entities: pos: 39.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24837 components: - type: Transform pos: 46.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24854 components: - type: Transform @@ -88543,7 +88655,7 @@ entities: pos: 43.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24902 components: - type: Transform @@ -88567,14 +88679,14 @@ entities: pos: 47.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24960 components: - type: Transform pos: 69.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24961 components: - type: Transform @@ -88588,7 +88700,7 @@ entities: pos: 74.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25066 components: - type: Transform @@ -88596,7 +88708,7 @@ entities: pos: 74.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25114 components: - type: Transform @@ -88611,7 +88723,7 @@ entities: pos: 66.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25200 components: - type: Transform @@ -88635,7 +88747,7 @@ entities: pos: -45.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25435 components: - type: Transform @@ -88643,7 +88755,7 @@ entities: pos: -10.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25436 components: - type: Transform @@ -88651,7 +88763,7 @@ entities: pos: -10.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25561 components: - type: Transform @@ -88675,7 +88787,7 @@ entities: pos: 3.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25564 components: - type: Transform @@ -88683,7 +88795,7 @@ entities: pos: 3.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25600 components: - type: Transform @@ -88699,7 +88811,7 @@ entities: pos: -14.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25750 components: - type: Transform @@ -88714,7 +88826,7 @@ entities: pos: 14.5,38.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25808 components: - type: Transform @@ -88730,7 +88842,7 @@ entities: pos: 16.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25810 components: - type: Transform @@ -88738,7 +88850,7 @@ entities: pos: 16.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25811 components: - type: Transform @@ -88761,6 +88873,8 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-34.5 parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 26099 components: - type: Transform @@ -88775,7 +88889,7 @@ entities: pos: 5.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27180 components: - type: Transform @@ -88811,14 +88925,14 @@ entities: pos: -5.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8876 components: - type: Transform pos: 2.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20264 components: - type: Transform @@ -88831,6 +88945,8 @@ entities: - type: Transform pos: 30.5,-33.5 parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 23026 components: - type: Transform @@ -88844,7 +88960,7 @@ entities: pos: -1.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23118 components: - type: Transform @@ -88858,21 +88974,21 @@ entities: pos: -1.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23430 components: - type: Transform pos: -64.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23452 components: - type: Transform pos: -12.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23550 components: - type: Transform @@ -88900,14 +89016,14 @@ entities: pos: -25.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24346 components: - type: Transform pos: 17.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24347 components: - type: Transform @@ -88921,7 +89037,7 @@ entities: pos: 26.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24571 components: - type: Transform @@ -88935,7 +89051,7 @@ entities: pos: 35.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24625 components: - type: Transform @@ -88949,12 +89065,14 @@ entities: pos: 26.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24708 components: - type: Transform pos: 32.5,-33.5 parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 24724 components: - type: Transform @@ -88968,14 +89086,14 @@ entities: pos: 39.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24780 components: - type: Transform pos: 39.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24781 components: - type: Transform @@ -88989,7 +89107,7 @@ entities: pos: 43.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24867 components: - type: Transform @@ -89003,7 +89121,7 @@ entities: pos: 61.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25094 components: - type: Transform @@ -89024,14 +89142,14 @@ entities: pos: 66.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25187 components: - type: Transform pos: 66.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25537 components: - type: Transform @@ -89045,7 +89163,7 @@ entities: pos: -4.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25576 components: - type: Transform @@ -89073,7 +89191,7 @@ entities: pos: 14.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26931 components: - type: Transform @@ -89081,6 +89199,81 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasPipeSensor + entities: + - uid: 17381 + components: + - type: MetaData + name: gas pipe sensor (Cryogenics) + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-33.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: Label + currentLabel: Cryogenics + - type: NameModifier + baseName: gas pipe sensor + - uid: 19020 + components: + - type: MetaData + name: gas pipe sensor (TEG Mix) + - type: Transform + pos: 17.5,-58.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - type: Label + currentLabel: TEG Mix + - type: NameModifier + baseName: gas pipe sensor +- proto: GasPipeSensorDistribution + entities: + - uid: 10817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-47.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorMixedAir + entities: + - uid: 17864 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 8364 +- proto: GasPipeSensorTEGCold + entities: + - uid: 7418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 16396 + components: + - type: Transform + pos: 14.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeSensorWaste + entities: + - uid: 16914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 3 @@ -89098,7 +89291,7 @@ entities: pos: -4.5,36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 42 components: - type: Transform @@ -89114,7 +89307,7 @@ entities: pos: -10.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 44 components: - type: Transform @@ -89122,7 +89315,7 @@ entities: pos: -8.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 46 components: - type: Transform @@ -89130,7 +89323,7 @@ entities: pos: -5.5,38.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 47 components: - type: Transform @@ -89206,7 +89399,7 @@ entities: pos: -2.5,-63.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1625 components: - type: Transform @@ -89244,7 +89437,7 @@ entities: pos: -4.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3771 components: - type: Transform @@ -89302,7 +89495,7 @@ entities: pos: -6.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3861 components: - type: Transform @@ -89342,7 +89535,7 @@ entities: pos: 4.5,-57.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3992 components: - type: Transform @@ -89350,7 +89543,7 @@ entities: pos: 8.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3994 components: - type: Transform @@ -89358,7 +89551,7 @@ entities: pos: 7.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3996 components: - type: Transform @@ -89412,7 +89605,7 @@ entities: pos: 10.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4062 components: - type: Transform @@ -89554,21 +89747,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 4498 components: - type: Transform pos: 3.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4501 components: - type: Transform @@ -89808,7 +89993,7 @@ entities: pos: -5.5,50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5075 components: - type: Transform @@ -89816,7 +90001,7 @@ entities: pos: -4.5,50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5079 components: - type: Transform @@ -89839,6 +90024,8 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-34.5 parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 5255 components: - type: Transform @@ -89868,14 +90055,14 @@ entities: pos: -5.5,-66.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5290 components: - type: Transform pos: -5.5,-67.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5392 components: - type: Transform @@ -89891,7 +90078,7 @@ entities: pos: 55.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5394 components: - type: Transform @@ -89899,7 +90086,7 @@ entities: pos: 54.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5395 components: - type: Transform @@ -89976,7 +90163,7 @@ entities: pos: 0.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6251 components: - type: Transform @@ -89998,14 +90185,14 @@ entities: pos: -7.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7041 components: - type: Transform pos: 69.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7056 components: - type: Transform @@ -90019,7 +90206,7 @@ entities: pos: 69.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7072 components: - type: Transform @@ -90034,7 +90221,7 @@ entities: pos: 70.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7086 components: - type: Transform @@ -90049,7 +90236,7 @@ entities: pos: 69.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7096 components: - type: Transform @@ -90065,14 +90252,14 @@ entities: pos: 71.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7114 components: - type: Transform pos: 69.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7143 components: - type: Transform @@ -90087,7 +90274,7 @@ entities: pos: 72.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7164 components: - type: Transform @@ -90109,7 +90296,7 @@ entities: pos: 69.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7221 components: - type: Transform @@ -90130,7 +90317,7 @@ entities: pos: 69.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7278 components: - type: Transform @@ -90162,7 +90349,7 @@ entities: pos: -13.5,44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7298 components: - type: Transform @@ -90170,7 +90357,7 @@ entities: pos: -13.5,45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7299 components: - type: Transform @@ -90178,7 +90365,7 @@ entities: pos: -13.5,46.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7305 components: - type: Transform @@ -90186,7 +90373,7 @@ entities: pos: -11.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7310 components: - type: Transform @@ -90230,7 +90417,7 @@ entities: pos: -2.5,50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7321 components: - type: Transform @@ -90238,7 +90425,7 @@ entities: pos: -3.5,50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7322 components: - type: Transform @@ -90246,7 +90433,7 @@ entities: pos: -12.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7323 components: - type: Transform @@ -90254,7 +90441,7 @@ entities: pos: -9.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7325 components: - type: Transform @@ -90303,14 +90490,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-48.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8216 components: - type: Transform @@ -90356,7 +90535,7 @@ entities: pos: -12.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8912 components: - type: Transform @@ -90364,7 +90543,7 @@ entities: pos: -6.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8931 components: - type: Transform @@ -90372,7 +90551,7 @@ entities: pos: -8.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8932 components: - type: Transform @@ -90380,7 +90559,7 @@ entities: pos: -9.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8948 components: - type: Transform @@ -90404,7 +90583,7 @@ entities: pos: -14.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8967 components: - type: Transform @@ -90412,7 +90591,7 @@ entities: pos: -4.5,40.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8968 components: - type: Transform @@ -90420,7 +90599,7 @@ entities: pos: -5.5,42.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8977 components: - type: Transform @@ -90428,7 +90607,7 @@ entities: pos: -15.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8978 components: - type: Transform @@ -90436,7 +90615,7 @@ entities: pos: -16.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8985 components: - type: Transform @@ -90444,14 +90623,14 @@ entities: pos: -11.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8987 components: - type: Transform pos: -6.5,44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8988 components: - type: Transform @@ -90459,7 +90638,7 @@ entities: pos: -17.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9000 components: - type: Transform @@ -90482,35 +90661,35 @@ entities: pos: -6.5,45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9065 components: - type: Transform pos: -6.5,47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9066 components: - type: Transform pos: -6.5,46.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9067 components: - type: Transform pos: -6.5,49.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9068 components: - type: Transform pos: -6.5,48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9087 components: - type: Transform @@ -90541,7 +90720,7 @@ entities: pos: -13.5,34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9106 components: - type: Transform @@ -90549,7 +90728,7 @@ entities: pos: -5.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9108 components: - type: Transform @@ -90557,7 +90736,7 @@ entities: pos: -7.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9187 components: - type: Transform @@ -91013,7 +91192,7 @@ entities: pos: -41.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13665 components: - type: Transform @@ -91052,7 +91231,7 @@ entities: pos: -41.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14232 components: - type: Transform @@ -91075,14 +91254,14 @@ entities: pos: -1.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15342 components: - type: Transform pos: -1.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15345 components: - type: Transform @@ -91097,7 +91276,7 @@ entities: pos: 0.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15510 components: - type: Transform @@ -91105,7 +91284,7 @@ entities: pos: 0.5,-49.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15543 components: - type: Transform @@ -91121,7 +91300,7 @@ entities: pos: 14.5,-76.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 15876 components: - type: Transform @@ -91344,14 +91523,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-77.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16915 components: - type: Transform @@ -91374,7 +91545,7 @@ entities: pos: 5.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16985 components: - type: Transform @@ -91429,7 +91600,7 @@ entities: pos: -9.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17021 components: - type: Transform @@ -91572,7 +91743,7 @@ entities: pos: 4.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17115 components: - type: Transform @@ -91580,7 +91751,7 @@ entities: pos: 4.5,-62.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17120 components: - type: Transform @@ -91588,7 +91759,7 @@ entities: pos: 4.5,-59.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17121 components: - type: Transform @@ -91596,7 +91767,7 @@ entities: pos: 4.5,-58.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17126 components: - type: Transform @@ -91713,7 +91884,7 @@ entities: pos: -8.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17166 components: - type: Transform @@ -92036,7 +92207,7 @@ entities: pos: -0.5,-49.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17333 components: - type: Transform @@ -92060,14 +92231,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-47.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 17383 components: - type: Transform @@ -92083,7 +92246,7 @@ entities: pos: -10.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17521 components: - type: Transform @@ -92091,7 +92254,7 @@ entities: pos: 5.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17523 components: - type: Transform @@ -92115,7 +92278,7 @@ entities: pos: 5.5,-49.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17564 components: - type: Transform @@ -92146,7 +92309,7 @@ entities: pos: 5.5,-46.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17595 components: - type: Transform @@ -92161,7 +92324,7 @@ entities: pos: 5.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17601 components: - type: Transform @@ -92169,7 +92332,7 @@ entities: pos: 9.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17633 components: - type: Transform @@ -92177,7 +92340,7 @@ entities: pos: 4.5,-60.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17654 components: - type: Transform @@ -92256,7 +92419,7 @@ entities: pos: -3.5,-67.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18660 components: - type: Transform @@ -92264,12 +92427,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-33.5 - parent: 8364 - uid: 19066 components: - type: Transform @@ -92357,7 +92514,7 @@ entities: pos: -69.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20153 components: - type: Transform @@ -92372,7 +92529,7 @@ entities: pos: -68.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20213 components: - type: Transform @@ -92380,7 +92537,7 @@ entities: pos: -70.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21382 components: - type: Transform @@ -92427,13 +92584,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 22740 - components: - - type: Transform - pos: 20.5,-62.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22741 components: - type: Transform @@ -92814,7 +92964,7 @@ entities: pos: -3.5,-63.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22850 components: - type: Transform @@ -92884,7 +93034,7 @@ entities: pos: 4.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22982 components: - type: Transform @@ -92892,7 +93042,7 @@ entities: pos: 3.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22983 components: - type: Transform @@ -92900,7 +93050,7 @@ entities: pos: 2.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22984 components: - type: Transform @@ -92908,14 +93058,14 @@ entities: pos: 1.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22992 components: - type: Transform pos: 5.5,-51.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22999 components: - type: Transform @@ -92930,7 +93080,7 @@ entities: pos: 6.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23003 components: - type: Transform @@ -92938,7 +93088,7 @@ entities: pos: 7.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23004 components: - type: Transform @@ -92984,21 +93134,21 @@ entities: pos: 5.5,-53.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23015 components: - type: Transform pos: 5.5,-54.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23016 components: - type: Transform pos: 5.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23018 components: - type: Transform @@ -93022,7 +93172,7 @@ entities: pos: 3.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23022 components: - type: Transform @@ -93030,7 +93180,7 @@ entities: pos: 2.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23023 components: - type: Transform @@ -93046,7 +93196,7 @@ entities: pos: 1.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23025 components: - type: Transform @@ -93062,7 +93212,7 @@ entities: pos: 0.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23029 components: - type: Transform @@ -93070,35 +93220,35 @@ entities: pos: -0.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23030 components: - type: Transform pos: -1.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23031 components: - type: Transform pos: -1.5,-54.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23032 components: - type: Transform pos: -1.5,-53.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23033 components: - type: Transform pos: -1.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23034 components: - type: Transform @@ -93133,7 +93283,7 @@ entities: pos: -1.5,-51.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23039 components: - type: Transform @@ -93161,21 +93311,21 @@ entities: pos: -1.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23045 components: - type: Transform pos: -1.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23047 components: - type: Transform pos: -1.5,-46.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23049 components: - type: Transform @@ -93197,7 +93347,7 @@ entities: pos: 0.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23053 components: - type: Transform @@ -93205,7 +93355,7 @@ entities: pos: -0.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23054 components: - type: Transform @@ -93213,7 +93363,7 @@ entities: pos: -1.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23057 components: - type: Transform @@ -93221,7 +93371,7 @@ entities: pos: -2.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23058 components: - type: Transform @@ -93229,7 +93379,7 @@ entities: pos: -3.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23059 components: - type: Transform @@ -93237,7 +93387,7 @@ entities: pos: -4.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23061 components: - type: Transform @@ -93293,14 +93443,14 @@ entities: pos: -6.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23073 components: - type: Transform pos: -5.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23074 components: - type: Transform @@ -93328,21 +93478,21 @@ entities: pos: -5.5,-54.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23078 components: - type: Transform pos: -5.5,-53.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23079 components: - type: Transform pos: -5.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23080 components: - type: Transform @@ -93358,7 +93508,7 @@ entities: pos: -8.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23082 components: - type: Transform @@ -93366,7 +93516,7 @@ entities: pos: -9.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23083 components: - type: Transform @@ -93390,7 +93540,7 @@ entities: pos: -10.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23092 components: - type: Transform @@ -93473,7 +93623,7 @@ entities: pos: -10.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23114 components: - type: Transform @@ -93497,7 +93647,7 @@ entities: pos: -9.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23122 components: - type: Transform @@ -93521,35 +93671,35 @@ entities: pos: 6.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23125 components: - type: Transform pos: 7.5,-66.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23126 components: - type: Transform pos: 7.5,-67.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23131 components: - type: Transform pos: 8.5,-69.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23132 components: - type: Transform pos: 8.5,-70.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23134 components: - type: Transform @@ -93571,7 +93721,7 @@ entities: pos: -8.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23137 components: - type: Transform @@ -93579,7 +93729,7 @@ entities: pos: -7.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23139 components: - type: Transform @@ -93603,7 +93753,7 @@ entities: pos: -11.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23145 components: - type: Transform @@ -93619,7 +93769,7 @@ entities: pos: 2.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23154 components: - type: Transform @@ -93635,7 +93785,7 @@ entities: pos: 8.5,-71.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23156 components: - type: Transform @@ -93659,7 +93809,7 @@ entities: pos: 8.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23159 components: - type: Transform @@ -93667,7 +93817,7 @@ entities: pos: 8.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23162 components: - type: Transform @@ -93675,7 +93825,7 @@ entities: pos: 7.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23163 components: - type: Transform @@ -93683,7 +93833,7 @@ entities: pos: 6.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23164 components: - type: Transform @@ -93691,7 +93841,7 @@ entities: pos: 5.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23165 components: - type: Transform @@ -93699,7 +93849,7 @@ entities: pos: 4.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23166 components: - type: Transform @@ -93767,7 +93917,7 @@ entities: pos: -0.5,-66.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23187 components: - type: Transform @@ -93775,7 +93925,7 @@ entities: pos: -1.5,-66.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23188 components: - type: Transform @@ -93783,7 +93933,7 @@ entities: pos: -2.5,-66.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23189 components: - type: Transform @@ -93839,7 +93989,7 @@ entities: pos: -5.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23198 components: - type: Transform @@ -93901,7 +94051,7 @@ entities: pos: -11.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23217 components: - type: Transform @@ -93909,7 +94059,7 @@ entities: pos: -12.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23218 components: - type: Transform @@ -93925,7 +94075,7 @@ entities: pos: 5.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23240 components: - type: Transform @@ -93941,7 +94091,7 @@ entities: pos: -14.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23243 components: - type: Transform @@ -93949,7 +94099,7 @@ entities: pos: -15.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23244 components: - type: Transform @@ -93957,7 +94107,7 @@ entities: pos: -16.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23245 components: - type: Transform @@ -93965,7 +94115,7 @@ entities: pos: -17.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23246 components: - type: Transform @@ -93973,7 +94123,7 @@ entities: pos: -18.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23247 components: - type: Transform @@ -93981,7 +94131,7 @@ entities: pos: -19.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23248 components: - type: Transform @@ -93989,7 +94139,7 @@ entities: pos: -20.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23249 components: - type: Transform @@ -93997,15 +94147,7 @@ entities: pos: -21.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-68.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23251 components: - type: Transform @@ -94117,7 +94259,7 @@ entities: pos: -2.5,-43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23277 components: - type: Transform @@ -94125,42 +94267,42 @@ entities: pos: -3.5,-43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23282 components: - type: Transform pos: -1.5,-42.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23283 components: - type: Transform pos: -1.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23284 components: - type: Transform pos: -1.5,-40.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23285 components: - type: Transform pos: -1.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23287 components: - type: Transform pos: -1.5,-37.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23288 components: - type: Transform @@ -94203,7 +94345,7 @@ entities: pos: -2.5,-36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23297 components: - type: Transform @@ -94211,7 +94353,7 @@ entities: pos: -3.5,-36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23298 components: - type: Transform @@ -94251,7 +94393,7 @@ entities: pos: -1.5,-35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23307 components: - type: Transform @@ -94259,7 +94401,7 @@ entities: pos: -1.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23308 components: - type: Transform @@ -94283,7 +94425,7 @@ entities: pos: -1.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23311 components: - type: Transform @@ -94291,7 +94433,7 @@ entities: pos: -1.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23312 components: - type: Transform @@ -94307,7 +94449,7 @@ entities: pos: -2.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23315 components: - type: Transform @@ -94315,7 +94457,7 @@ entities: pos: -3.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23316 components: - type: Transform @@ -94323,7 +94465,7 @@ entities: pos: -5.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23317 components: - type: Transform @@ -94331,7 +94473,7 @@ entities: pos: -4.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23318 components: - type: Transform @@ -94339,7 +94481,7 @@ entities: pos: -6.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23319 components: - type: Transform @@ -94347,7 +94489,7 @@ entities: pos: -7.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23321 components: - type: Transform @@ -94355,7 +94497,7 @@ entities: pos: -9.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23322 components: - type: Transform @@ -94363,7 +94505,7 @@ entities: pos: -10.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23323 components: - type: Transform @@ -94371,7 +94513,7 @@ entities: pos: -11.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23325 components: - type: Transform @@ -94379,7 +94521,7 @@ entities: pos: -13.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23326 components: - type: Transform @@ -94387,7 +94529,7 @@ entities: pos: -14.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23327 components: - type: Transform @@ -94395,7 +94537,7 @@ entities: pos: -15.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23328 components: - type: Transform @@ -94403,7 +94545,7 @@ entities: pos: -16.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23330 components: - type: Transform @@ -94411,7 +94553,7 @@ entities: pos: -17.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23331 components: - type: Transform @@ -94419,7 +94561,7 @@ entities: pos: -17.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23332 components: - type: Transform @@ -94427,7 +94569,7 @@ entities: pos: -17.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23333 components: - type: Transform @@ -94435,7 +94577,7 @@ entities: pos: -17.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23334 components: - type: Transform @@ -94443,7 +94585,7 @@ entities: pos: -17.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23337 components: - type: Transform @@ -94451,7 +94593,7 @@ entities: pos: -17.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23339 components: - type: Transform @@ -94459,7 +94601,7 @@ entities: pos: -17.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23340 components: - type: Transform @@ -94467,7 +94609,7 @@ entities: pos: -17.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23341 components: - type: Transform @@ -94475,7 +94617,7 @@ entities: pos: -17.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23342 components: - type: Transform @@ -94483,7 +94625,7 @@ entities: pos: -17.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23343 components: - type: Transform @@ -94491,7 +94633,7 @@ entities: pos: -17.5,-17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23344 components: - type: Transform @@ -94499,7 +94641,7 @@ entities: pos: -17.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23346 components: - type: Transform @@ -94507,7 +94649,7 @@ entities: pos: -17.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23347 components: - type: Transform @@ -94515,7 +94657,7 @@ entities: pos: -17.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23349 components: - type: Transform @@ -94523,7 +94665,7 @@ entities: pos: -17.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23350 components: - type: Transform @@ -94531,7 +94673,7 @@ entities: pos: -17.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23351 components: - type: Transform @@ -94539,7 +94681,7 @@ entities: pos: -17.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23352 components: - type: Transform @@ -94547,7 +94689,7 @@ entities: pos: -17.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23355 components: - type: Transform @@ -94555,7 +94697,7 @@ entities: pos: -17.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23356 components: - type: Transform @@ -94563,7 +94705,7 @@ entities: pos: -17.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23357 components: - type: Transform @@ -94571,7 +94713,7 @@ entities: pos: -17.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23358 components: - type: Transform @@ -94579,7 +94721,7 @@ entities: pos: -17.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23359 components: - type: Transform @@ -94587,7 +94729,7 @@ entities: pos: -17.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23361 components: - type: Transform @@ -94595,7 +94737,7 @@ entities: pos: -18.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23362 components: - type: Transform @@ -94603,7 +94745,7 @@ entities: pos: -19.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23363 components: - type: Transform @@ -94611,7 +94753,7 @@ entities: pos: -20.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23364 components: - type: Transform @@ -94619,7 +94761,7 @@ entities: pos: -21.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23367 components: - type: Transform @@ -94627,7 +94769,7 @@ entities: pos: -24.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23368 components: - type: Transform @@ -94635,7 +94777,7 @@ entities: pos: -25.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23370 components: - type: Transform @@ -94643,7 +94785,7 @@ entities: pos: -27.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23371 components: - type: Transform @@ -94651,7 +94793,7 @@ entities: pos: -28.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23372 components: - type: Transform @@ -94659,7 +94801,7 @@ entities: pos: -29.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23373 components: - type: Transform @@ -94667,7 +94809,7 @@ entities: pos: -30.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23376 components: - type: Transform @@ -94675,7 +94817,7 @@ entities: pos: -33.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23377 components: - type: Transform @@ -94683,7 +94825,7 @@ entities: pos: -34.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23378 components: - type: Transform @@ -94691,7 +94833,7 @@ entities: pos: -35.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23379 components: - type: Transform @@ -94699,7 +94841,7 @@ entities: pos: -36.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23380 components: - type: Transform @@ -94707,7 +94849,7 @@ entities: pos: -37.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23381 components: - type: Transform @@ -94715,7 +94857,7 @@ entities: pos: -38.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23382 components: - type: Transform @@ -94723,7 +94865,7 @@ entities: pos: -39.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23383 components: - type: Transform @@ -94731,7 +94873,7 @@ entities: pos: -40.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23385 components: - type: Transform @@ -94739,7 +94881,7 @@ entities: pos: -42.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23387 components: - type: Transform @@ -94747,7 +94889,7 @@ entities: pos: -44.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23389 components: - type: Transform @@ -94755,7 +94897,7 @@ entities: pos: -46.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23390 components: - type: Transform @@ -94763,7 +94905,7 @@ entities: pos: -47.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23391 components: - type: Transform @@ -94771,7 +94913,7 @@ entities: pos: -48.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23392 components: - type: Transform @@ -94779,7 +94921,7 @@ entities: pos: -49.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23394 components: - type: Transform @@ -94787,7 +94929,7 @@ entities: pos: -51.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23395 components: - type: Transform @@ -94795,7 +94937,7 @@ entities: pos: -52.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23397 components: - type: Transform @@ -94803,7 +94945,7 @@ entities: pos: -53.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23398 components: - type: Transform @@ -94811,7 +94953,7 @@ entities: pos: -55.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23399 components: - type: Transform @@ -94819,42 +94961,42 @@ entities: pos: -55.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23400 components: - type: Transform pos: -54.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23401 components: - type: Transform pos: -54.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23402 components: - type: Transform pos: -54.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23403 components: - type: Transform pos: -54.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23404 components: - type: Transform pos: -54.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23405 components: - type: Transform @@ -94862,7 +95004,7 @@ entities: pos: -56.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23408 components: - type: Transform @@ -94870,7 +95012,7 @@ entities: pos: -59.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23409 components: - type: Transform @@ -94878,7 +95020,7 @@ entities: pos: -61.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23410 components: - type: Transform @@ -94886,7 +95028,7 @@ entities: pos: -60.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23411 components: - type: Transform @@ -94894,7 +95036,7 @@ entities: pos: -62.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23412 components: - type: Transform @@ -94902,7 +95044,7 @@ entities: pos: -63.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23413 components: - type: Transform @@ -94910,7 +95052,7 @@ entities: pos: -56.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23414 components: - type: Transform @@ -94918,7 +95060,7 @@ entities: pos: -57.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23416 components: - type: Transform @@ -94926,7 +95068,7 @@ entities: pos: -59.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23417 components: - type: Transform @@ -94934,7 +95076,7 @@ entities: pos: -60.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23418 components: - type: Transform @@ -94942,7 +95084,7 @@ entities: pos: -61.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23419 components: - type: Transform @@ -94950,7 +95092,7 @@ entities: pos: -62.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23420 components: - type: Transform @@ -94958,7 +95100,7 @@ entities: pos: -63.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23421 components: - type: Transform @@ -94966,7 +95108,7 @@ entities: pos: -64.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23422 components: - type: Transform @@ -94974,7 +95116,7 @@ entities: pos: -64.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23424 components: - type: Transform @@ -94982,7 +95124,7 @@ entities: pos: -64.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23425 components: - type: Transform @@ -94990,7 +95132,7 @@ entities: pos: -64.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23426 components: - type: Transform @@ -94998,7 +95140,7 @@ entities: pos: -64.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23427 components: - type: Transform @@ -95006,7 +95148,7 @@ entities: pos: -64.5,2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23428 components: - type: Transform @@ -95014,7 +95156,7 @@ entities: pos: -64.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23429 components: - type: Transform @@ -95022,7 +95164,7 @@ entities: pos: -64.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23434 components: - type: Transform @@ -95030,7 +95172,7 @@ entities: pos: -64.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23436 components: - type: Transform @@ -95038,7 +95180,7 @@ entities: pos: -64.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23437 components: - type: Transform @@ -95046,7 +95188,7 @@ entities: pos: -64.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23438 components: - type: Transform @@ -95054,7 +95196,7 @@ entities: pos: -64.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23440 components: - type: Transform @@ -95062,7 +95204,7 @@ entities: pos: -64.5,3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23441 components: - type: Transform @@ -95070,7 +95212,7 @@ entities: pos: -64.5,4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23442 components: - type: Transform @@ -95078,7 +95220,7 @@ entities: pos: -64.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23443 components: - type: Transform @@ -95086,7 +95228,7 @@ entities: pos: -64.5,6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23444 components: - type: Transform @@ -95094,7 +95236,7 @@ entities: pos: -64.5,7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23445 components: - type: Transform @@ -95102,7 +95244,7 @@ entities: pos: -64.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23446 components: - type: Transform @@ -95110,7 +95252,7 @@ entities: pos: -64.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23448 components: - type: Transform @@ -95118,7 +95260,7 @@ entities: pos: -16.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23449 components: - type: Transform @@ -95126,7 +95268,7 @@ entities: pos: -15.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23450 components: - type: Transform @@ -95134,7 +95276,7 @@ entities: pos: -14.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23451 components: - type: Transform @@ -95142,7 +95284,7 @@ entities: pos: -13.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23453 components: - type: Transform @@ -95150,7 +95292,7 @@ entities: pos: -11.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23454 components: - type: Transform @@ -95158,7 +95300,7 @@ entities: pos: -10.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23455 components: - type: Transform @@ -95166,7 +95308,7 @@ entities: pos: -9.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23456 components: - type: Transform @@ -95174,7 +95316,7 @@ entities: pos: -8.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23457 components: - type: Transform @@ -95182,7 +95324,7 @@ entities: pos: -7.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23458 components: - type: Transform @@ -95190,7 +95332,7 @@ entities: pos: -6.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23459 components: - type: Transform @@ -95198,7 +95340,7 @@ entities: pos: -5.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23460 components: - type: Transform @@ -95206,7 +95348,7 @@ entities: pos: -4.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23461 components: - type: Transform @@ -95214,7 +95356,7 @@ entities: pos: -3.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23464 components: - type: Transform @@ -95222,7 +95364,7 @@ entities: pos: -1.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23465 components: - type: Transform @@ -95230,7 +95372,7 @@ entities: pos: -1.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23466 components: - type: Transform @@ -95238,7 +95380,7 @@ entities: pos: -1.5,2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23467 components: - type: Transform @@ -95246,7 +95388,7 @@ entities: pos: -1.5,3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23469 components: - type: Transform @@ -95254,7 +95396,7 @@ entities: pos: -1.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23470 components: - type: Transform @@ -95262,7 +95404,7 @@ entities: pos: -1.5,6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23471 components: - type: Transform @@ -95270,7 +95412,7 @@ entities: pos: -1.5,7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23472 components: - type: Transform @@ -95278,7 +95420,7 @@ entities: pos: -1.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23473 components: - type: Transform @@ -95286,7 +95428,7 @@ entities: pos: -1.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23474 components: - type: Transform @@ -95294,7 +95436,7 @@ entities: pos: -1.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23475 components: - type: Transform @@ -95302,7 +95444,7 @@ entities: pos: -1.5,11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23476 components: - type: Transform @@ -95310,7 +95452,7 @@ entities: pos: -1.5,12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23477 components: - type: Transform @@ -95318,7 +95460,7 @@ entities: pos: -1.5,13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23479 components: - type: Transform @@ -95326,7 +95468,7 @@ entities: pos: -1.5,15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23480 components: - type: Transform @@ -95334,7 +95476,7 @@ entities: pos: -1.5,16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23481 components: - type: Transform @@ -95342,7 +95484,7 @@ entities: pos: -1.5,17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23482 components: - type: Transform @@ -95350,7 +95492,7 @@ entities: pos: -1.5,18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23483 components: - type: Transform @@ -95358,7 +95500,7 @@ entities: pos: -1.5,19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23484 components: - type: Transform @@ -95366,7 +95508,7 @@ entities: pos: -1.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23486 components: - type: Transform @@ -95374,7 +95516,7 @@ entities: pos: -0.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23487 components: - type: Transform @@ -95382,7 +95524,7 @@ entities: pos: 0.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23488 components: - type: Transform @@ -95390,7 +95532,7 @@ entities: pos: 1.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23489 components: - type: Transform @@ -95398,7 +95540,7 @@ entities: pos: 2.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23490 components: - type: Transform @@ -95406,7 +95548,7 @@ entities: pos: 3.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23491 components: - type: Transform @@ -95414,7 +95556,7 @@ entities: pos: 4.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23492 components: - type: Transform @@ -95422,7 +95564,7 @@ entities: pos: 5.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23493 components: - type: Transform @@ -95430,7 +95572,7 @@ entities: pos: 6.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23494 components: - type: Transform @@ -95438,7 +95580,7 @@ entities: pos: 7.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23496 components: - type: Transform @@ -95446,7 +95588,7 @@ entities: pos: 9.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23498 components: - type: Transform @@ -95454,7 +95596,7 @@ entities: pos: 11.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23499 components: - type: Transform @@ -95462,7 +95604,7 @@ entities: pos: 12.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23500 components: - type: Transform @@ -95470,168 +95612,168 @@ entities: pos: 13.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23502 components: - type: Transform pos: 14.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23503 components: - type: Transform pos: 14.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23504 components: - type: Transform pos: 14.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23505 components: - type: Transform pos: 14.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23506 components: - type: Transform pos: 14.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23509 components: - type: Transform pos: 14.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23510 components: - type: Transform pos: 14.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23511 components: - type: Transform pos: 14.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23512 components: - type: Transform pos: 14.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23514 components: - type: Transform pos: 14.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23515 components: - type: Transform pos: 14.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23516 components: - type: Transform pos: 14.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23517 components: - type: Transform pos: 14.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23518 components: - type: Transform pos: 14.5,-17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23519 components: - type: Transform pos: 14.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23521 components: - type: Transform pos: 14.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23522 components: - type: Transform pos: 14.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23523 components: - type: Transform pos: 14.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23524 components: - type: Transform pos: 14.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23525 components: - type: Transform pos: 14.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23527 components: - type: Transform pos: 14.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23528 components: - type: Transform pos: 14.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23529 components: - type: Transform pos: 14.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23531 components: - type: Transform @@ -95639,7 +95781,7 @@ entities: pos: -0.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23532 components: - type: Transform @@ -95647,7 +95789,7 @@ entities: pos: 0.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23534 components: - type: Transform @@ -95655,7 +95797,7 @@ entities: pos: 2.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23535 components: - type: Transform @@ -95663,7 +95805,7 @@ entities: pos: 3.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23537 components: - type: Transform @@ -95671,7 +95813,7 @@ entities: pos: 5.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23538 components: - type: Transform @@ -95679,7 +95821,7 @@ entities: pos: 6.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23539 components: - type: Transform @@ -95687,7 +95829,7 @@ entities: pos: 7.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23540 components: - type: Transform @@ -95695,7 +95837,7 @@ entities: pos: 8.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23541 components: - type: Transform @@ -95703,7 +95845,7 @@ entities: pos: 9.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23542 components: - type: Transform @@ -95711,7 +95853,7 @@ entities: pos: 11.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23543 components: - type: Transform @@ -95719,7 +95861,7 @@ entities: pos: 10.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23544 components: - type: Transform @@ -95727,7 +95869,7 @@ entities: pos: 13.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23545 components: - type: Transform @@ -95735,7 +95877,7 @@ entities: pos: 12.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23546 components: - type: Transform @@ -95743,7 +95885,7 @@ entities: pos: 14.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23547 components: - type: Transform @@ -95751,7 +95893,7 @@ entities: pos: 14.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23548 components: - type: Transform @@ -96959,7 +97101,7 @@ entities: pos: 15.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23750 components: - type: Transform @@ -96967,7 +97109,7 @@ entities: pos: 16.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23751 components: - type: Transform @@ -96975,7 +97117,7 @@ entities: pos: 17.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23752 components: - type: Transform @@ -96983,7 +97125,7 @@ entities: pos: 18.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23753 components: - type: Transform @@ -97199,7 +97341,7 @@ entities: pos: 19.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23785 components: - type: Transform @@ -97207,7 +97349,7 @@ entities: pos: 20.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23786 components: - type: Transform @@ -97215,7 +97357,7 @@ entities: pos: 21.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23787 components: - type: Transform @@ -97487,7 +97629,7 @@ entities: pos: 59.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23829 components: - type: Transform @@ -97495,7 +97637,7 @@ entities: pos: 58.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23830 components: - type: Transform @@ -97503,7 +97645,7 @@ entities: pos: 57.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23831 components: - type: Transform @@ -97511,7 +97653,7 @@ entities: pos: 56.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23832 components: - type: Transform @@ -97519,7 +97661,7 @@ entities: pos: 54.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23833 components: - type: Transform @@ -97527,7 +97669,7 @@ entities: pos: 55.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23834 components: - type: Transform @@ -97535,7 +97677,7 @@ entities: pos: 53.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23836 components: - type: Transform @@ -97543,7 +97685,7 @@ entities: pos: 51.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23837 components: - type: Transform @@ -97551,7 +97693,7 @@ entities: pos: 50.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23838 components: - type: Transform @@ -97559,7 +97701,7 @@ entities: pos: 49.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23839 components: - type: Transform @@ -97567,7 +97709,7 @@ entities: pos: 48.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23840 components: - type: Transform @@ -97575,7 +97717,7 @@ entities: pos: 47.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23842 components: - type: Transform @@ -97583,7 +97725,7 @@ entities: pos: 45.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23843 components: - type: Transform @@ -97591,7 +97733,7 @@ entities: pos: 44.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23845 components: - type: Transform @@ -97599,7 +97741,7 @@ entities: pos: 42.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23846 components: - type: Transform @@ -97607,7 +97749,7 @@ entities: pos: 41.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23847 components: - type: Transform @@ -97615,7 +97757,7 @@ entities: pos: 40.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23848 components: - type: Transform @@ -97623,7 +97765,7 @@ entities: pos: 39.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23849 components: - type: Transform @@ -97631,7 +97773,7 @@ entities: pos: 38.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23850 components: - type: Transform @@ -97639,7 +97781,7 @@ entities: pos: 37.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23853 components: - type: Transform @@ -97647,7 +97789,7 @@ entities: pos: 33.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23854 components: - type: Transform @@ -97655,7 +97797,7 @@ entities: pos: 34.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23855 components: - type: Transform @@ -97663,7 +97805,7 @@ entities: pos: 32.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23857 components: - type: Transform @@ -97671,7 +97813,7 @@ entities: pos: 30.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23858 components: - type: Transform @@ -97679,7 +97821,7 @@ entities: pos: 29.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23859 components: - type: Transform @@ -97687,7 +97829,7 @@ entities: pos: 28.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23861 components: - type: Transform @@ -97695,7 +97837,7 @@ entities: pos: 27.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23862 components: - type: Transform @@ -97703,7 +97845,7 @@ entities: pos: 25.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23863 components: - type: Transform @@ -97711,7 +97853,7 @@ entities: pos: 24.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23864 components: - type: Transform @@ -97719,7 +97861,7 @@ entities: pos: 23.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23866 components: - type: Transform @@ -97823,7 +97965,7 @@ entities: pos: 60.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23881 components: - type: Transform @@ -97831,7 +97973,7 @@ entities: pos: 61.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23882 components: - type: Transform @@ -97839,7 +97981,7 @@ entities: pos: 63.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23883 components: - type: Transform @@ -97847,7 +97989,7 @@ entities: pos: 62.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23884 components: - type: Transform @@ -97855,7 +97997,7 @@ entities: pos: 64.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23887 components: - type: Transform @@ -97863,7 +98005,7 @@ entities: pos: 68.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23888 components: - type: Transform @@ -97871,7 +98013,7 @@ entities: pos: 67.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23889 components: - type: Transform @@ -97879,7 +98021,7 @@ entities: pos: 69.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23890 components: - type: Transform @@ -97887,7 +98029,7 @@ entities: pos: 70.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23891 components: - type: Transform @@ -97895,7 +98037,7 @@ entities: pos: 71.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23892 components: - type: Transform @@ -97903,7 +98045,7 @@ entities: pos: 72.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23893 components: - type: Transform @@ -97911,7 +98053,7 @@ entities: pos: 73.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23894 components: - type: Transform @@ -97927,7 +98069,7 @@ entities: pos: 74.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23896 components: - type: Transform @@ -97935,7 +98077,7 @@ entities: pos: 75.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23897 components: - type: Transform @@ -97975,7 +98117,7 @@ entities: pos: 76.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23906 components: - type: Transform @@ -97983,7 +98125,7 @@ entities: pos: 76.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23908 components: - type: Transform @@ -97991,7 +98133,7 @@ entities: pos: 76.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23909 components: - type: Transform @@ -98023,7 +98165,7 @@ entities: pos: 76.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23914 components: - type: Transform @@ -98031,7 +98173,7 @@ entities: pos: 76.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23916 components: - type: Transform @@ -98039,7 +98181,7 @@ entities: pos: 76.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23917 components: - type: Transform @@ -98079,7 +98221,7 @@ entities: pos: 76.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23922 components: - type: Transform @@ -98087,7 +98229,7 @@ entities: pos: 76.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23923 components: - type: Transform @@ -98095,7 +98237,7 @@ entities: pos: -1.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23924 components: - type: Transform @@ -98103,7 +98245,7 @@ entities: pos: -1.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23925 components: - type: Transform @@ -98111,7 +98253,7 @@ entities: pos: -1.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23926 components: - type: Transform @@ -98135,7 +98277,7 @@ entities: pos: -1.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23931 components: - type: Transform @@ -98143,7 +98285,7 @@ entities: pos: -1.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23932 components: - type: Transform @@ -98167,7 +98309,7 @@ entities: pos: -1.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23937 components: - type: Transform @@ -98215,7 +98357,7 @@ entities: pos: -18.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23956 components: - type: Transform @@ -98223,7 +98365,7 @@ entities: pos: -19.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23961 components: - type: Transform @@ -98231,7 +98373,7 @@ entities: pos: -21.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23962 components: - type: Transform @@ -98267,28 +98409,28 @@ entities: pos: -22.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23967 components: - type: Transform pos: -22.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23968 components: - type: Transform pos: -22.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23969 components: - type: Transform pos: -22.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23970 components: - type: Transform @@ -98302,7 +98444,7 @@ entities: pos: -22.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23972 components: - type: Transform @@ -98310,7 +98452,7 @@ entities: pos: -23.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23973 components: - type: Transform @@ -98342,7 +98484,7 @@ entities: pos: -26.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23980 components: - type: Transform @@ -98350,7 +98492,7 @@ entities: pos: -27.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23981 components: - type: Transform @@ -98358,7 +98500,7 @@ entities: pos: -28.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23982 components: - type: Transform @@ -98373,7 +98515,7 @@ entities: pos: -28.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23988 components: - type: Transform @@ -98396,7 +98538,7 @@ entities: pos: -29.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23991 components: - type: Transform @@ -98412,7 +98554,7 @@ entities: pos: -30.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23993 components: - type: Transform @@ -98436,7 +98578,7 @@ entities: pos: -31.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23996 components: - type: Transform @@ -98520,7 +98662,7 @@ entities: pos: -25.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24016 components: - type: Transform @@ -98543,7 +98685,7 @@ entities: pos: -25.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24021 components: - type: Transform @@ -98557,7 +98699,7 @@ entities: pos: -25.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24023 components: - type: Transform @@ -98578,14 +98720,14 @@ entities: pos: -25.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24026 components: - type: Transform pos: -25.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24027 components: - type: Transform @@ -98599,7 +98741,7 @@ entities: pos: -25.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24033 components: - type: Transform @@ -98623,7 +98765,7 @@ entities: pos: -24.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24036 components: - type: Transform @@ -98631,7 +98773,7 @@ entities: pos: -23.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24037 components: - type: Transform @@ -98639,7 +98781,7 @@ entities: pos: -22.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24040 components: - type: Transform @@ -98695,7 +98837,7 @@ entities: pos: -26.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24047 components: - type: Transform @@ -98703,7 +98845,7 @@ entities: pos: -27.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24048 components: - type: Transform @@ -98711,7 +98853,7 @@ entities: pos: -28.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24049 components: - type: Transform @@ -98719,7 +98861,7 @@ entities: pos: -29.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24050 components: - type: Transform @@ -98727,7 +98869,7 @@ entities: pos: -30.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24053 components: - type: Transform @@ -98748,7 +98890,7 @@ entities: pos: -25.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24058 components: - type: Transform @@ -98756,7 +98898,7 @@ entities: pos: -16.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24059 components: - type: Transform @@ -98764,7 +98906,7 @@ entities: pos: -15.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24060 components: - type: Transform @@ -98772,7 +98914,7 @@ entities: pos: -14.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24061 components: - type: Transform @@ -98788,7 +98930,7 @@ entities: pos: -8.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24065 components: - type: Transform @@ -98796,7 +98938,7 @@ entities: pos: -8.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24066 components: - type: Transform @@ -98804,7 +98946,7 @@ entities: pos: -8.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24067 components: - type: Transform @@ -98812,7 +98954,7 @@ entities: pos: -8.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24068 components: - type: Transform @@ -98820,7 +98962,7 @@ entities: pos: -8.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24069 components: - type: Transform @@ -98892,7 +99034,7 @@ entities: pos: -18.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24080 components: - type: Transform @@ -98900,7 +99042,7 @@ entities: pos: -19.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24081 components: - type: Transform @@ -98908,28 +99050,28 @@ entities: pos: -20.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24088 components: - type: Transform pos: 4.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24089 components: - type: Transform pos: 4.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24090 components: - type: Transform pos: 4.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24091 components: - type: Transform @@ -99012,7 +99154,7 @@ entities: pos: 13.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24106 components: - type: Transform @@ -99020,7 +99162,7 @@ entities: pos: 12.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24107 components: - type: Transform @@ -99028,7 +99170,7 @@ entities: pos: 11.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24112 components: - type: Transform @@ -99108,7 +99250,7 @@ entities: pos: 13.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24123 components: - type: Transform @@ -99116,7 +99258,7 @@ entities: pos: 12.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24124 components: - type: Transform @@ -99124,7 +99266,7 @@ entities: pos: 11.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24125 components: - type: Transform @@ -99132,7 +99274,7 @@ entities: pos: 10.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24126 components: - type: Transform @@ -99140,7 +99282,7 @@ entities: pos: 9.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24127 components: - type: Transform @@ -99148,7 +99290,7 @@ entities: pos: 8.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24129 components: - type: Transform @@ -99156,7 +99298,7 @@ entities: pos: 6.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24130 components: - type: Transform @@ -99164,7 +99306,7 @@ entities: pos: -16.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24131 components: - type: Transform @@ -99172,7 +99314,7 @@ entities: pos: -15.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24132 components: - type: Transform @@ -99180,7 +99322,7 @@ entities: pos: -14.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24133 components: - type: Transform @@ -99188,7 +99330,7 @@ entities: pos: -13.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24134 components: - type: Transform @@ -99196,7 +99338,7 @@ entities: pos: -12.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24135 components: - type: Transform @@ -99204,7 +99346,7 @@ entities: pos: -11.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24136 components: - type: Transform @@ -99212,7 +99354,7 @@ entities: pos: -10.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24137 components: - type: Transform @@ -99220,7 +99362,7 @@ entities: pos: -9.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24139 components: - type: Transform @@ -99228,7 +99370,7 @@ entities: pos: -7.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24140 components: - type: Transform @@ -99292,7 +99434,7 @@ entities: pos: -6.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24157 components: - type: Transform @@ -99300,7 +99442,7 @@ entities: pos: -5.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24159 components: - type: Transform @@ -99308,7 +99450,7 @@ entities: pos: -2.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24160 components: - type: Transform @@ -99316,7 +99458,7 @@ entities: pos: -1.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24161 components: - type: Transform @@ -99324,7 +99466,7 @@ entities: pos: -0.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24163 components: - type: Transform @@ -99332,7 +99474,7 @@ entities: pos: 1.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24165 components: - type: Transform @@ -99340,7 +99482,7 @@ entities: pos: 4.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24166 components: - type: Transform @@ -99348,7 +99490,7 @@ entities: pos: 5.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24167 components: - type: Transform @@ -99419,21 +99561,21 @@ entities: pos: 0.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24183 components: - type: Transform pos: 0.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24184 components: - type: Transform pos: 0.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24185 components: - type: Transform @@ -99475,35 +99617,35 @@ entities: pos: 7.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24194 components: - type: Transform pos: 7.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24195 components: - type: Transform pos: 7.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24196 components: - type: Transform pos: 7.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24197 components: - type: Transform pos: 7.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24200 components: - type: Transform @@ -99517,7 +99659,7 @@ entities: pos: 7.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24202 components: - type: Transform @@ -99531,7 +99673,7 @@ entities: pos: 7.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24204 components: - type: Transform @@ -99545,7 +99687,7 @@ entities: pos: 7.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24206 components: - type: Transform @@ -99559,7 +99701,7 @@ entities: pos: 7.5,-17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24208 components: - type: Transform @@ -99573,14 +99715,14 @@ entities: pos: 7.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24210 components: - type: Transform pos: 7.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24211 components: - type: Transform @@ -99618,7 +99760,7 @@ entities: pos: 8.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24221 components: - type: Transform @@ -99626,7 +99768,7 @@ entities: pos: 9.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24222 components: - type: Transform @@ -99634,7 +99776,7 @@ entities: pos: 10.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24223 components: - type: Transform @@ -99642,35 +99784,35 @@ entities: pos: 11.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24225 components: - type: Transform pos: -8.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24226 components: - type: Transform pos: -8.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24227 components: - type: Transform pos: -8.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24228 components: - type: Transform pos: -8.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24229 components: - type: Transform @@ -99691,28 +99833,28 @@ entities: pos: -8.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24232 components: - type: Transform pos: -8.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24233 components: - type: Transform pos: -8.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24234 components: - type: Transform pos: -8.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24235 components: - type: Transform @@ -99768,14 +99910,14 @@ entities: pos: 8.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24251 components: - type: Transform pos: 8.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24252 components: - type: Transform @@ -99803,7 +99945,7 @@ entities: pos: 8.5,3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24264 components: - type: Transform @@ -99824,21 +99966,21 @@ entities: pos: 8.5,4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24267 components: - type: Transform pos: 8.5,6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24268 components: - type: Transform pos: 8.5,7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24269 components: - type: Transform @@ -99877,7 +100019,7 @@ entities: pos: 8.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24275 components: - type: Transform @@ -99891,7 +100033,7 @@ entities: pos: 8.5,12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24278 components: - type: Transform @@ -99907,7 +100049,7 @@ entities: pos: 8.5,13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24280 components: - type: Transform @@ -99939,7 +100081,7 @@ entities: pos: 7.5,14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24284 components: - type: Transform @@ -99955,7 +100097,7 @@ entities: pos: 7.5,11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24286 components: - type: Transform @@ -99971,7 +100113,7 @@ entities: pos: 7.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24288 components: - type: Transform @@ -99987,7 +100129,7 @@ entities: pos: 7.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24290 components: - type: Transform @@ -100011,7 +100153,7 @@ entities: pos: -12.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24305 components: - type: Transform @@ -100019,7 +100161,7 @@ entities: pos: -12.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24306 components: - type: Transform @@ -100050,7 +100192,7 @@ entities: pos: -12.5,2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24311 components: - type: Transform @@ -100064,7 +100206,7 @@ entities: pos: -12.5,4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24314 components: - type: Transform @@ -100085,21 +100227,21 @@ entities: pos: -12.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24319 components: - type: Transform pos: -12.5,6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24320 components: - type: Transform pos: -12.5,7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24321 components: - type: Transform @@ -100107,7 +100249,7 @@ entities: pos: -11.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24322 components: - type: Transform @@ -100115,7 +100257,7 @@ entities: pos: -10.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24323 components: - type: Transform @@ -100123,7 +100265,7 @@ entities: pos: -9.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24324 components: - type: Transform @@ -100131,7 +100273,7 @@ entities: pos: -8.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24325 components: - type: Transform @@ -100139,7 +100281,7 @@ entities: pos: -7.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24326 components: - type: Transform @@ -100147,7 +100289,7 @@ entities: pos: -6.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24327 components: - type: Transform @@ -100187,7 +100329,7 @@ entities: pos: 9.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24340 components: - type: Transform @@ -100195,7 +100337,7 @@ entities: pos: 10.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24341 components: - type: Transform @@ -100235,7 +100377,7 @@ entities: pos: 12.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24352 components: - type: Transform @@ -100243,7 +100385,7 @@ entities: pos: 14.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24353 components: - type: Transform @@ -100251,7 +100393,7 @@ entities: pos: 15.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24354 components: - type: Transform @@ -100259,7 +100401,7 @@ entities: pos: 16.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24355 components: - type: Transform @@ -100283,28 +100425,28 @@ entities: pos: 18.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24358 components: - type: Transform pos: 17.5,11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24359 components: - type: Transform pos: 17.5,12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24360 components: - type: Transform pos: 17.5,13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24361 components: - type: Transform @@ -100339,21 +100481,21 @@ entities: pos: 13.5,11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24366 components: - type: Transform pos: 13.5,12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24367 components: - type: Transform pos: 13.5,13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24380 components: - type: Transform @@ -100433,7 +100575,7 @@ entities: pos: 21.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24390 components: - type: Transform @@ -100441,7 +100583,7 @@ entities: pos: 22.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24391 components: - type: Transform @@ -100449,7 +100591,7 @@ entities: pos: 23.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24392 components: - type: Transform @@ -100457,7 +100599,7 @@ entities: pos: 24.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24393 components: - type: Transform @@ -100465,7 +100607,7 @@ entities: pos: 25.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24394 components: - type: Transform @@ -100473,7 +100615,7 @@ entities: pos: 26.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24395 components: - type: Transform @@ -100481,7 +100623,7 @@ entities: pos: 27.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24396 components: - type: Transform @@ -100489,7 +100631,7 @@ entities: pos: 28.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24397 components: - type: Transform @@ -100505,7 +100647,7 @@ entities: pos: 17.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24403 components: - type: Transform @@ -100537,7 +100679,7 @@ entities: pos: 17.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24407 components: - type: Transform @@ -100545,7 +100687,7 @@ entities: pos: 17.5,7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24408 components: - type: Transform @@ -100561,7 +100703,7 @@ entities: pos: 17.5,6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24412 components: - type: Transform @@ -100569,7 +100711,7 @@ entities: pos: 16.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24413 components: - type: Transform @@ -100585,7 +100727,7 @@ entities: pos: 15.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24415 components: - type: Transform @@ -100593,7 +100735,7 @@ entities: pos: 14.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24416 components: - type: Transform @@ -100617,7 +100759,7 @@ entities: pos: 13.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24423 components: - type: Transform @@ -100649,7 +100791,7 @@ entities: pos: 22.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24427 components: - type: Transform @@ -100657,7 +100799,7 @@ entities: pos: 22.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24429 components: - type: Transform @@ -100673,7 +100815,7 @@ entities: pos: 22.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24432 components: - type: Transform @@ -100697,7 +100839,7 @@ entities: pos: 21.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24443 components: - type: Transform @@ -100718,14 +100860,14 @@ entities: pos: 20.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24446 components: - type: Transform pos: 20.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24447 components: - type: Transform @@ -100747,14 +100889,14 @@ entities: pos: 20.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24450 components: - type: Transform pos: 20.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24451 components: - type: Transform @@ -100775,21 +100917,21 @@ entities: pos: 20.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24454 components: - type: Transform pos: 20.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24455 components: - type: Transform pos: 20.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24456 components: - type: Transform @@ -100817,14 +100959,14 @@ entities: pos: 20.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24460 components: - type: Transform pos: 20.5,2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24461 components: - type: Transform @@ -100879,7 +101021,7 @@ entities: pos: 23.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24471 components: - type: Transform @@ -100887,7 +101029,7 @@ entities: pos: 24.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24472 components: - type: Transform @@ -100895,7 +101037,7 @@ entities: pos: 25.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24473 components: - type: Transform @@ -100903,7 +101045,7 @@ entities: pos: 26.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24474 components: - type: Transform @@ -100911,7 +101053,7 @@ entities: pos: 27.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24475 components: - type: Transform @@ -100919,7 +101061,7 @@ entities: pos: 28.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24478 components: - type: Transform @@ -100943,7 +101085,7 @@ entities: pos: 29.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24481 components: - type: Transform @@ -100951,7 +101093,7 @@ entities: pos: 29.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24482 components: - type: Transform @@ -100975,7 +101117,7 @@ entities: pos: 29.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24485 components: - type: Transform @@ -100983,7 +101125,7 @@ entities: pos: 29.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24486 components: - type: Transform @@ -101007,7 +101149,7 @@ entities: pos: 29.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24489 components: - type: Transform @@ -101015,7 +101157,7 @@ entities: pos: 29.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24490 components: - type: Transform @@ -101039,7 +101181,7 @@ entities: pos: 29.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24495 components: - type: Transform @@ -101047,7 +101189,7 @@ entities: pos: 36.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24496 components: - type: Transform @@ -101087,7 +101229,7 @@ entities: pos: 36.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24501 components: - type: Transform @@ -101095,7 +101237,7 @@ entities: pos: 36.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24502 components: - type: Transform @@ -101117,42 +101259,42 @@ entities: pos: 36.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24509 components: - type: Transform pos: 36.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24510 components: - type: Transform pos: 36.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24511 components: - type: Transform pos: 36.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24512 components: - type: Transform pos: 36.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24513 components: - type: Transform pos: 36.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24514 components: - type: Transform @@ -101376,126 +101518,126 @@ entities: pos: 35.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24552 components: - type: Transform pos: 35.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24553 components: - type: Transform pos: 35.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24554 components: - type: Transform pos: 35.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24555 components: - type: Transform pos: 35.5,-17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24557 components: - type: Transform pos: 35.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24558 components: - type: Transform pos: 35.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24559 components: - type: Transform pos: 35.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24560 components: - type: Transform pos: 35.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24561 components: - type: Transform pos: 26.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24562 components: - type: Transform pos: 26.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24563 components: - type: Transform pos: 26.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24564 components: - type: Transform pos: 26.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24566 components: - type: Transform pos: 26.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24567 components: - type: Transform pos: 26.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24568 components: - type: Transform pos: 26.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24569 components: - type: Transform pos: 26.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24570 components: - type: Transform pos: 26.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24573 components: - type: Transform @@ -101503,7 +101645,7 @@ entities: pos: 27.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24574 components: - type: Transform @@ -101511,7 +101653,7 @@ entities: pos: 28.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24575 components: - type: Transform @@ -101519,7 +101661,7 @@ entities: pos: 29.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24576 components: - type: Transform @@ -101527,7 +101669,7 @@ entities: pos: 30.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24578 components: - type: Transform @@ -101535,7 +101677,7 @@ entities: pos: 32.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24579 components: - type: Transform @@ -101543,7 +101685,7 @@ entities: pos: 33.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24580 components: - type: Transform @@ -101551,7 +101693,7 @@ entities: pos: 34.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24589 components: - type: Transform @@ -101631,7 +101773,7 @@ entities: pos: 25.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24604 components: - type: Transform @@ -101639,7 +101781,7 @@ entities: pos: 23.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24605 components: - type: Transform @@ -101647,7 +101789,7 @@ entities: pos: 22.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24606 components: - type: Transform @@ -101655,28 +101797,28 @@ entities: pos: 21.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24607 components: - type: Transform pos: 20.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24608 components: - type: Transform pos: 20.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24609 components: - type: Transform pos: 20.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24612 components: - type: Transform @@ -101684,7 +101826,7 @@ entities: pos: 35.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24613 components: - type: Transform @@ -101692,7 +101834,7 @@ entities: pos: 35.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24614 components: - type: Transform @@ -101700,7 +101842,7 @@ entities: pos: 35.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24615 components: - type: Transform @@ -101716,7 +101858,7 @@ entities: pos: 36.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24617 components: - type: Transform @@ -101724,7 +101866,7 @@ entities: pos: 37.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24619 components: - type: Transform @@ -101732,7 +101874,7 @@ entities: pos: 38.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24620 components: - type: Transform @@ -101740,7 +101882,7 @@ entities: pos: 38.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24621 components: - type: Transform @@ -101748,7 +101890,7 @@ entities: pos: 38.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24622 components: - type: Transform @@ -101756,7 +101898,7 @@ entities: pos: 38.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24623 components: - type: Transform @@ -101764,7 +101906,7 @@ entities: pos: 39.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24626 components: - type: Transform @@ -101847,35 +101989,35 @@ entities: pos: 41.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24647 components: - type: Transform pos: 26.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24648 components: - type: Transform pos: 26.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24649 components: - type: Transform pos: 26.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24650 components: - type: Transform pos: 26.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24651 components: - type: Transform @@ -101897,7 +102039,7 @@ entities: pos: 40.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24656 components: - type: Transform @@ -101913,7 +102055,7 @@ entities: pos: 40.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24658 components: - type: Transform @@ -101961,7 +102103,7 @@ entities: pos: 42.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24668 components: - type: Transform @@ -101969,7 +102111,7 @@ entities: pos: 43.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24669 components: - type: Transform @@ -101977,7 +102119,7 @@ entities: pos: 44.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24670 components: - type: Transform @@ -102027,28 +102169,28 @@ entities: pos: 26.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24683 components: - type: Transform pos: 26.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24684 components: - type: Transform pos: 26.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24685 components: - type: Transform pos: 26.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24686 components: - type: Transform @@ -102056,7 +102198,7 @@ entities: pos: 27.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24693 components: - type: Transform @@ -102064,7 +102206,7 @@ entities: pos: 26.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24694 components: - type: Transform @@ -102104,7 +102246,7 @@ entities: pos: 25.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24699 components: - type: Transform @@ -102112,7 +102254,7 @@ entities: pos: 24.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24700 components: - type: Transform @@ -102120,7 +102262,7 @@ entities: pos: 23.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24701 components: - type: Transform @@ -102128,7 +102270,7 @@ entities: pos: 22.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24702 components: - type: Transform @@ -102136,7 +102278,7 @@ entities: pos: 21.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24703 components: - type: Transform @@ -102152,7 +102294,7 @@ entities: pos: 20.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24713 components: - type: Transform @@ -102255,35 +102397,35 @@ entities: pos: 35.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24729 components: - type: Transform pos: 35.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24730 components: - type: Transform pos: 35.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24731 components: - type: Transform pos: 35.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24732 components: - type: Transform pos: 35.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24734 components: - type: Transform @@ -102291,7 +102433,7 @@ entities: pos: 36.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24735 components: - type: Transform @@ -102299,7 +102441,7 @@ entities: pos: 37.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24736 components: - type: Transform @@ -102307,14 +102449,14 @@ entities: pos: 38.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24738 components: - type: Transform pos: 39.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24740 components: - type: Transform @@ -102322,7 +102464,7 @@ entities: pos: 40.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24741 components: - type: Transform @@ -102330,7 +102472,7 @@ entities: pos: 41.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24742 components: - type: Transform @@ -102338,7 +102480,7 @@ entities: pos: 42.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24743 components: - type: Transform @@ -102346,7 +102488,7 @@ entities: pos: 43.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24744 components: - type: Transform @@ -102354,7 +102496,7 @@ entities: pos: 44.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24748 components: - type: Transform @@ -102386,7 +102528,7 @@ entities: pos: 39.5,-36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24754 components: - type: Transform @@ -102402,7 +102544,7 @@ entities: pos: 39.5,-37.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24756 components: - type: Transform @@ -102418,7 +102560,7 @@ entities: pos: 39.5,-38.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24758 components: - type: Transform @@ -102442,7 +102584,7 @@ entities: pos: 39.5,-40.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24764 components: - type: Transform @@ -102450,7 +102592,7 @@ entities: pos: 39.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24765 components: - type: Transform @@ -102458,7 +102600,7 @@ entities: pos: 39.5,-42.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24767 components: - type: Transform @@ -102506,7 +102648,7 @@ entities: pos: 38.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24773 components: - type: Transform @@ -102514,7 +102656,7 @@ entities: pos: 37.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24774 components: - type: Transform @@ -102522,14 +102664,14 @@ entities: pos: 36.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24779 components: - type: Transform pos: 8.5,2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24784 components: - type: Transform @@ -102569,7 +102711,7 @@ entities: pos: 37.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24789 components: - type: Transform @@ -102577,7 +102719,7 @@ entities: pos: 38.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24790 components: - type: Transform @@ -102585,7 +102727,7 @@ entities: pos: 38.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24791 components: - type: Transform @@ -102593,7 +102735,7 @@ entities: pos: 37.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24792 components: - type: Transform @@ -102633,7 +102775,7 @@ entities: pos: 39.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24797 components: - type: Transform @@ -102641,7 +102783,7 @@ entities: pos: 39.5,-46.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24798 components: - type: Transform @@ -102649,7 +102791,7 @@ entities: pos: 39.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24799 components: - type: Transform @@ -102657,7 +102799,7 @@ entities: pos: 39.5,-43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24800 components: - type: Transform @@ -102705,7 +102847,7 @@ entities: pos: 40.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24806 components: - type: Transform @@ -102713,7 +102855,7 @@ entities: pos: 41.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24807 components: - type: Transform @@ -102721,7 +102863,7 @@ entities: pos: 42.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24808 components: - type: Transform @@ -102729,7 +102871,7 @@ entities: pos: 43.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24809 components: - type: Transform @@ -102753,7 +102895,7 @@ entities: pos: 39.5,-49.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24818 components: - type: Transform @@ -102761,7 +102903,7 @@ entities: pos: 39.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24819 components: - type: Transform @@ -102769,7 +102911,7 @@ entities: pos: 39.5,-51.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24820 components: - type: Transform @@ -102784,7 +102926,7 @@ entities: pos: 39.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24824 components: - type: Transform @@ -102812,7 +102954,7 @@ entities: pos: 39.5,-54.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24829 components: - type: Transform @@ -102827,7 +102969,7 @@ entities: pos: 38.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24833 components: - type: Transform @@ -102835,7 +102977,7 @@ entities: pos: 37.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24835 components: - type: Transform @@ -102843,7 +102985,7 @@ entities: pos: 41.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24836 components: - type: Transform @@ -102851,49 +102993,49 @@ entities: pos: 42.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24839 components: - type: Transform pos: 43.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24840 components: - type: Transform pos: 43.5,-57.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24841 components: - type: Transform pos: 43.5,-58.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24842 components: - type: Transform pos: 46.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24843 components: - type: Transform pos: 46.5,-57.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24844 components: - type: Transform pos: 46.5,-58.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24845 components: - type: Transform @@ -102901,7 +103043,7 @@ entities: pos: 44.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24846 components: - type: Transform @@ -102909,7 +103051,7 @@ entities: pos: 45.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24847 components: - type: Transform @@ -102917,7 +103059,7 @@ entities: pos: 43.5,-54.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24858 components: - type: Transform @@ -103043,7 +103185,7 @@ entities: pos: 43.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24884 components: - type: Transform @@ -103067,7 +103209,7 @@ entities: pos: 43.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24887 components: - type: Transform @@ -103075,7 +103217,7 @@ entities: pos: 43.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24888 components: - type: Transform @@ -103083,7 +103225,7 @@ entities: pos: 43.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24889 components: - type: Transform @@ -103091,7 +103233,7 @@ entities: pos: 43.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24890 components: - type: Transform @@ -103113,7 +103255,7 @@ entities: pos: 43.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24895 components: - type: Transform @@ -103121,7 +103263,7 @@ entities: pos: 44.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24896 components: - type: Transform @@ -103153,7 +103295,7 @@ entities: pos: 43.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24900 components: - type: Transform @@ -103161,7 +103303,7 @@ entities: pos: 43.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24903 components: - type: Transform @@ -103185,7 +103327,7 @@ entities: pos: 47.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24908 components: - type: Transform @@ -103217,7 +103359,7 @@ entities: pos: 44.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24912 components: - type: Transform @@ -103225,7 +103367,7 @@ entities: pos: 45.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24913 components: - type: Transform @@ -103233,7 +103375,7 @@ entities: pos: 46.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24922 components: - type: Transform @@ -103241,7 +103383,7 @@ entities: pos: 75.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24923 components: - type: Transform @@ -103273,7 +103415,7 @@ entities: pos: 74.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24927 components: - type: Transform @@ -103321,7 +103463,7 @@ entities: pos: 52.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24937 components: - type: Transform @@ -103329,7 +103471,7 @@ entities: pos: 52.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24938 components: - type: Transform @@ -103337,7 +103479,7 @@ entities: pos: 52.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24939 components: - type: Transform @@ -103345,7 +103487,7 @@ entities: pos: 53.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24940 components: - type: Transform @@ -103353,14 +103495,14 @@ entities: pos: 56.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24951 components: - type: Transform pos: 69.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24952 components: - type: Transform @@ -103381,21 +103523,21 @@ entities: pos: 69.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24955 components: - type: Transform pos: 69.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24956 components: - type: Transform pos: 69.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24957 components: - type: Transform @@ -103432,7 +103574,7 @@ entities: pos: 68.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24964 components: - type: Transform @@ -103448,7 +103590,7 @@ entities: pos: 67.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24966 components: - type: Transform @@ -103532,7 +103674,7 @@ entities: pos: 66.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25029 components: - type: Transform @@ -103540,7 +103682,7 @@ entities: pos: 66.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25030 components: - type: Transform @@ -103548,7 +103690,7 @@ entities: pos: 66.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25031 components: - type: Transform @@ -103556,7 +103698,7 @@ entities: pos: 66.5,-17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25032 components: - type: Transform @@ -103564,7 +103706,7 @@ entities: pos: 66.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25033 components: - type: Transform @@ -103572,7 +103714,7 @@ entities: pos: 66.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25036 components: - type: Transform @@ -103580,7 +103722,7 @@ entities: pos: 66.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25037 components: - type: Transform @@ -103604,7 +103746,7 @@ entities: pos: 66.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25043 components: - type: Transform @@ -103625,7 +103767,7 @@ entities: pos: 66.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25047 components: - type: Transform @@ -103665,7 +103807,7 @@ entities: pos: 67.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25052 components: - type: Transform @@ -103673,7 +103815,7 @@ entities: pos: 68.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25053 components: - type: Transform @@ -103681,7 +103823,7 @@ entities: pos: 69.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25056 components: - type: Transform @@ -103737,7 +103879,7 @@ entities: pos: 71.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25063 components: - type: Transform @@ -103745,7 +103887,7 @@ entities: pos: 72.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25064 components: - type: Transform @@ -103753,7 +103895,7 @@ entities: pos: 73.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25067 components: - type: Transform @@ -103761,7 +103903,7 @@ entities: pos: 75.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25068 components: - type: Transform @@ -103769,14 +103911,14 @@ entities: pos: 76.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25074 components: - type: Transform pos: 66.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25077 components: - type: Transform @@ -103784,7 +103926,7 @@ entities: pos: 66.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25078 components: - type: Transform @@ -103800,7 +103942,7 @@ entities: pos: 65.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25080 components: - type: Transform @@ -103808,7 +103950,7 @@ entities: pos: 64.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25081 components: - type: Transform @@ -103824,7 +103966,7 @@ entities: pos: 63.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25083 components: - type: Transform @@ -103840,7 +103982,7 @@ entities: pos: 62.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25086 components: - type: Transform @@ -103854,7 +103996,7 @@ entities: pos: 66.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25088 components: - type: Transform @@ -103868,7 +104010,7 @@ entities: pos: 66.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25090 components: - type: Transform @@ -103882,7 +104024,7 @@ entities: pos: 66.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25092 components: - type: Transform @@ -103896,7 +104038,7 @@ entities: pos: 66.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25095 components: - type: Transform @@ -103920,7 +104062,7 @@ entities: pos: 60.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25098 components: - type: Transform @@ -103928,7 +104070,7 @@ entities: pos: 59.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25099 components: - type: Transform @@ -103944,7 +104086,7 @@ entities: pos: 58.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25101 components: - type: Transform @@ -103974,28 +104116,28 @@ entities: pos: 57.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25105 components: - type: Transform pos: 61.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25106 components: - type: Transform pos: 61.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25107 components: - type: Transform pos: 61.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25108 components: - type: Transform @@ -104016,7 +104158,7 @@ entities: pos: 61.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25111 components: - type: Transform @@ -104058,21 +104200,21 @@ entities: pos: 56.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25122 components: - type: Transform pos: 56.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25123 components: - type: Transform pos: 56.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25126 components: - type: Transform @@ -104088,7 +104230,7 @@ entities: pos: 55.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25128 components: - type: Transform @@ -104096,7 +104238,7 @@ entities: pos: 54.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25129 components: - type: Transform @@ -104112,21 +104254,21 @@ entities: pos: 55.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25137 components: - type: Transform pos: 61.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25138 components: - type: Transform pos: 61.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25139 components: - type: Transform @@ -104163,7 +104305,7 @@ entities: pos: 66.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25148 components: - type: Transform @@ -104179,7 +104321,7 @@ entities: pos: 65.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25152 components: - type: Transform @@ -104187,7 +104329,7 @@ entities: pos: 64.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25153 components: - type: Transform @@ -104195,7 +104337,7 @@ entities: pos: 63.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25154 components: - type: Transform @@ -104235,7 +104377,7 @@ entities: pos: 67.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25159 components: - type: Transform @@ -104243,7 +104385,7 @@ entities: pos: 68.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25160 components: - type: Transform @@ -104258,7 +104400,7 @@ entities: pos: 66.5,-35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25162 components: - type: Transform @@ -104272,7 +104414,7 @@ entities: pos: 66.5,-36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25172 components: - type: Transform @@ -104304,7 +104446,7 @@ entities: pos: 65.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25176 components: - type: Transform @@ -104360,7 +104502,7 @@ entities: pos: 66.5,-37.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25184 components: - type: Transform @@ -104368,7 +104510,7 @@ entities: pos: 66.5,-38.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25185 components: - type: Transform @@ -104376,7 +104518,7 @@ entities: pos: 66.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25186 components: - type: Transform @@ -104384,7 +104526,7 @@ entities: pos: 66.5,-40.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25188 components: - type: Transform @@ -104392,7 +104534,7 @@ entities: pos: 66.5,-42.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25189 components: - type: Transform @@ -104400,7 +104542,7 @@ entities: pos: 66.5,-43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25190 components: - type: Transform @@ -104408,7 +104550,7 @@ entities: pos: 66.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25192 components: - type: Transform @@ -104416,7 +104558,7 @@ entities: pos: 66.5,-46.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25193 components: - type: Transform @@ -104424,7 +104566,7 @@ entities: pos: 66.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25194 components: - type: Transform @@ -104440,7 +104582,7 @@ entities: pos: 66.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25196 components: - type: Transform @@ -104448,7 +104590,7 @@ entities: pos: 66.5,-49.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25197 components: - type: Transform @@ -104496,7 +104638,7 @@ entities: pos: 67.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25205 components: - type: Transform @@ -104504,7 +104646,7 @@ entities: pos: 68.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25208 components: - type: Transform @@ -104520,7 +104662,7 @@ entities: pos: 64.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25210 components: - type: Transform @@ -104528,7 +104670,7 @@ entities: pos: 63.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25211 components: - type: Transform @@ -104544,7 +104686,7 @@ entities: pos: 62.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25213 components: - type: Transform @@ -104560,7 +104702,7 @@ entities: pos: 61.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25215 components: - type: Transform @@ -104576,7 +104718,7 @@ entities: pos: 60.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25217 components: - type: Transform @@ -104592,7 +104734,7 @@ entities: pos: 59.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25219 components: - type: Transform @@ -104631,7 +104773,7 @@ entities: pos: 58.5,-40.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25245 components: - type: Transform @@ -104639,7 +104781,7 @@ entities: pos: 67.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25246 components: - type: Transform @@ -104647,7 +104789,7 @@ entities: pos: 68.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25247 components: - type: Transform @@ -104655,7 +104797,7 @@ entities: pos: 69.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25248 components: - type: Transform @@ -104663,7 +104805,7 @@ entities: pos: 70.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25249 components: - type: Transform @@ -104671,7 +104813,7 @@ entities: pos: 71.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25250 components: - type: Transform @@ -104679,7 +104821,7 @@ entities: pos: 72.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25251 components: - type: Transform @@ -104687,7 +104829,7 @@ entities: pos: 73.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25252 components: - type: Transform @@ -104807,7 +104949,7 @@ entities: pos: -65.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25270 components: - type: Transform @@ -104815,7 +104957,7 @@ entities: pos: -66.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25271 components: - type: Transform @@ -104823,7 +104965,7 @@ entities: pos: -67.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25277 components: - type: Transform @@ -104879,7 +105021,7 @@ entities: pos: -65.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25284 components: - type: Transform @@ -104887,7 +105029,7 @@ entities: pos: -66.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25285 components: - type: Transform @@ -104895,7 +105037,7 @@ entities: pos: -67.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25286 components: - type: Transform @@ -104903,7 +105045,7 @@ entities: pos: -68.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25287 components: - type: Transform @@ -104911,7 +105053,7 @@ entities: pos: -69.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25288 components: - type: Transform @@ -104919,7 +105061,7 @@ entities: pos: -70.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25291 components: - type: Transform @@ -104927,7 +105069,7 @@ entities: pos: -65.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25292 components: - type: Transform @@ -104935,7 +105077,7 @@ entities: pos: -66.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25293 components: - type: Transform @@ -104943,7 +105085,7 @@ entities: pos: -67.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25294 components: - type: Transform @@ -104951,7 +105093,7 @@ entities: pos: -68.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25295 components: - type: Transform @@ -104959,7 +105101,7 @@ entities: pos: -69.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25296 components: - type: Transform @@ -104967,7 +105109,7 @@ entities: pos: -70.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25297 components: - type: Transform @@ -105047,7 +105189,7 @@ entities: pos: -63.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25311 components: - type: Transform @@ -105055,7 +105197,7 @@ entities: pos: -62.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25312 components: - type: Transform @@ -105063,7 +105205,7 @@ entities: pos: -61.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25319 components: - type: Transform @@ -105095,7 +105237,7 @@ entities: pos: -57.5,2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25323 components: - type: Transform @@ -105103,21 +105245,21 @@ entities: pos: -57.5,3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25326 components: - type: Transform pos: -50.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25327 components: - type: Transform pos: -50.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25328 components: - type: Transform @@ -105131,7 +105273,7 @@ entities: pos: -50.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25330 components: - type: Transform @@ -105145,7 +105287,7 @@ entities: pos: -50.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25332 components: - type: Transform @@ -105159,7 +105301,7 @@ entities: pos: -50.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25334 components: - type: Transform @@ -105173,35 +105315,35 @@ entities: pos: -50.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25338 components: - type: Transform pos: -41.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25339 components: - type: Transform pos: -41.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25340 components: - type: Transform pos: -41.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25341 components: - type: Transform pos: -41.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25342 components: - type: Transform @@ -105229,14 +105371,14 @@ entities: pos: -41.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25349 components: - type: Transform pos: -41.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25353 components: - type: Transform @@ -105268,7 +105410,7 @@ entities: pos: -42.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25357 components: - type: Transform @@ -105276,7 +105418,7 @@ entities: pos: -43.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25358 components: - type: Transform @@ -105284,7 +105426,7 @@ entities: pos: -44.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25359 components: - type: Transform @@ -105305,7 +105447,7 @@ entities: pos: -45.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25362 components: - type: Transform @@ -105319,7 +105461,7 @@ entities: pos: -45.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25368 components: - type: Transform @@ -105327,7 +105469,7 @@ entities: pos: -45.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25369 components: - type: Transform @@ -105335,7 +105477,7 @@ entities: pos: -45.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25370 components: - type: Transform @@ -105343,7 +105485,7 @@ entities: pos: -45.5,2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25371 components: - type: Transform @@ -105396,28 +105538,28 @@ entities: pos: -32.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25381 components: - type: Transform pos: -32.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25382 components: - type: Transform pos: -32.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25383 components: - type: Transform pos: -32.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25384 components: - type: Transform @@ -105445,56 +105587,56 @@ entities: pos: -26.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25388 components: - type: Transform pos: -26.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25389 components: - type: Transform pos: -26.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25390 components: - type: Transform pos: -26.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25391 components: - type: Transform pos: -26.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25398 components: - type: Transform pos: -31.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25399 components: - type: Transform pos: -31.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25400 components: - type: Transform pos: -31.5,2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25401 components: - type: Transform @@ -105536,35 +105678,35 @@ entities: pos: -22.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25411 components: - type: Transform pos: -22.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25412 components: - type: Transform pos: -22.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25413 components: - type: Transform pos: -22.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25414 components: - type: Transform pos: -22.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25415 components: - type: Transform @@ -105625,7 +105767,7 @@ entities: pos: -2.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25429 components: - type: Transform @@ -105633,7 +105775,7 @@ entities: pos: -3.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25430 components: - type: Transform @@ -105641,7 +105783,7 @@ entities: pos: -4.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25439 components: - type: Transform @@ -105673,7 +105815,7 @@ entities: pos: -17.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25443 components: - type: Transform @@ -105681,7 +105823,7 @@ entities: pos: -17.5,22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25444 components: - type: Transform @@ -105713,7 +105855,7 @@ entities: pos: -11.5,19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25448 components: - type: Transform @@ -105721,7 +105863,7 @@ entities: pos: -11.5,18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25449 components: - type: Transform @@ -105729,7 +105871,7 @@ entities: pos: -11.5,17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25450 components: - type: Transform @@ -105737,7 +105879,7 @@ entities: pos: -11.5,16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25451 components: - type: Transform @@ -105769,7 +105911,7 @@ entities: pos: -5.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25455 components: - type: Transform @@ -105777,7 +105919,7 @@ entities: pos: -5.5,19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25456 components: - type: Transform @@ -105785,7 +105927,7 @@ entities: pos: -5.5,18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25457 components: - type: Transform @@ -105793,7 +105935,7 @@ entities: pos: -5.5,17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25458 components: - type: Transform @@ -105801,7 +105943,7 @@ entities: pos: -5.5,16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25459 components: - type: Transform @@ -105841,7 +105983,7 @@ entities: pos: -6.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25466 components: - type: Transform @@ -105849,7 +105991,7 @@ entities: pos: -8.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25467 components: - type: Transform @@ -105857,7 +105999,7 @@ entities: pos: -9.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25468 components: - type: Transform @@ -105905,7 +106047,7 @@ entities: pos: -12.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25474 components: - type: Transform @@ -105913,7 +106055,7 @@ entities: pos: -13.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25475 components: - type: Transform @@ -105921,7 +106063,7 @@ entities: pos: -14.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25476 components: - type: Transform @@ -105929,7 +106071,7 @@ entities: pos: -15.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25477 components: - type: Transform @@ -105937,7 +106079,7 @@ entities: pos: -16.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25478 components: - type: Transform @@ -106033,7 +106175,7 @@ entities: pos: -0.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25503 components: - type: Transform @@ -106041,7 +106183,7 @@ entities: pos: 0.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25504 components: - type: Transform @@ -106049,7 +106191,7 @@ entities: pos: 1.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25505 components: - type: Transform @@ -106057,7 +106199,7 @@ entities: pos: 2.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25506 components: - type: Transform @@ -106065,7 +106207,7 @@ entities: pos: 3.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25507 components: - type: Transform @@ -106081,7 +106223,7 @@ entities: pos: 5.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25509 components: - type: Transform @@ -106089,7 +106231,7 @@ entities: pos: 6.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25510 components: - type: Transform @@ -106097,7 +106239,7 @@ entities: pos: 7.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25512 components: - type: Transform @@ -106105,7 +106247,7 @@ entities: pos: 9.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25513 components: - type: Transform @@ -106113,7 +106255,7 @@ entities: pos: 10.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25514 components: - type: Transform @@ -106121,7 +106263,7 @@ entities: pos: 11.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25515 components: - type: Transform @@ -106129,7 +106271,7 @@ entities: pos: 12.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25520 components: - type: Transform @@ -106153,7 +106295,7 @@ entities: pos: 4.5,22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25523 components: - type: Transform @@ -106161,7 +106303,7 @@ entities: pos: 4.5,23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25524 components: - type: Transform @@ -106176,7 +106318,7 @@ entities: pos: 4.5,25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25528 components: - type: Transform @@ -106190,14 +106332,14 @@ entities: pos: 4.5,26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25530 components: - type: Transform pos: 4.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25531 components: - type: Transform @@ -106213,7 +106355,7 @@ entities: pos: 8.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25540 components: - type: Transform @@ -106229,7 +106371,7 @@ entities: pos: 6.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25542 components: - type: Transform @@ -106237,7 +106379,7 @@ entities: pos: 5.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25543 components: - type: Transform @@ -106269,7 +106411,7 @@ entities: pos: 7.5,29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25547 components: - type: Transform @@ -106277,7 +106419,7 @@ entities: pos: 7.5,30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25548 components: - type: Transform @@ -106285,7 +106427,7 @@ entities: pos: 7.5,31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25549 components: - type: Transform @@ -106293,7 +106435,7 @@ entities: pos: 9.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25550 components: - type: Transform @@ -106309,7 +106451,7 @@ entities: pos: 9.5,26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25552 components: - type: Transform @@ -106325,7 +106467,7 @@ entities: pos: 9.5,25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25554 components: - type: Transform @@ -106341,7 +106483,7 @@ entities: pos: 9.5,24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25556 components: - type: Transform @@ -106380,7 +106522,7 @@ entities: pos: -8.5,25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25569 components: - type: Transform @@ -106411,7 +106553,7 @@ entities: pos: -8.5,26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25573 components: - type: Transform @@ -106458,7 +106600,7 @@ entities: pos: -0.5,26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25581 components: - type: Transform @@ -106489,7 +106631,7 @@ entities: pos: 1.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25585 components: - type: Transform @@ -106497,14 +106639,14 @@ entities: pos: 0.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25586 components: - type: Transform pos: -4.5,26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25587 components: - type: Transform @@ -106512,7 +106654,7 @@ entities: pos: -1.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25588 components: - type: Transform @@ -106520,7 +106662,7 @@ entities: pos: -2.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25589 components: - type: Transform @@ -106528,14 +106670,14 @@ entities: pos: -3.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25590 components: - type: Transform pos: -4.5,25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25591 components: - type: Transform @@ -106543,7 +106685,7 @@ entities: pos: -5.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25592 components: - type: Transform @@ -106551,7 +106693,7 @@ entities: pos: -6.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25593 components: - type: Transform @@ -106559,7 +106701,7 @@ entities: pos: -7.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25594 components: - type: Transform @@ -106574,7 +106716,7 @@ entities: pos: -9.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25596 components: - type: Transform @@ -106582,7 +106724,7 @@ entities: pos: -10.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25598 components: - type: Transform @@ -106590,7 +106732,7 @@ entities: pos: -12.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25599 components: - type: Transform @@ -106598,28 +106740,28 @@ entities: pos: -13.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25602 components: - type: Transform pos: -14.5,26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25603 components: - type: Transform pos: -14.5,25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25604 components: - type: Transform pos: -14.5,24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25605 components: - type: Transform @@ -106640,7 +106782,7 @@ entities: pos: -0.5,25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25608 components: - type: Transform @@ -106654,14 +106796,14 @@ entities: pos: 2.5,25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25610 components: - type: Transform pos: 2.5,26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25629 components: - type: Transform @@ -106701,7 +106843,7 @@ entities: pos: 2.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25634 components: - type: Transform @@ -106709,7 +106851,7 @@ entities: pos: 2.5,29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25635 components: - type: Transform @@ -106717,7 +106859,7 @@ entities: pos: 2.5,30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25638 components: - type: Transform @@ -106752,28 +106894,28 @@ entities: pos: 2.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25643 components: - type: Transform pos: 2.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25644 components: - type: Transform pos: 2.5,34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25645 components: - type: Transform pos: 2.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25646 components: - type: Transform @@ -106794,14 +106936,14 @@ entities: pos: -4.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25651 components: - type: Transform pos: -4.5,30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25654 components: - type: Transform @@ -106817,7 +106959,7 @@ entities: pos: -5.5,31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25656 components: - type: Transform @@ -106825,7 +106967,7 @@ entities: pos: -6.5,31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25657 components: - type: Transform @@ -106865,7 +107007,7 @@ entities: pos: -4.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25662 components: - type: Transform @@ -106873,7 +107015,7 @@ entities: pos: -4.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25663 components: - type: Transform @@ -106881,7 +107023,7 @@ entities: pos: -4.5,34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25695 components: - type: Transform @@ -106934,7 +107076,7 @@ entities: pos: -13.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25746 components: - type: Transform @@ -106942,7 +107084,7 @@ entities: pos: -13.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25748 components: - type: Transform @@ -106965,28 +107107,28 @@ entities: pos: 7.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25766 components: - type: Transform pos: 7.5,34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25767 components: - type: Transform pos: 7.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25768 components: - type: Transform pos: 7.5,36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25769 components: - type: Transform @@ -107022,7 +107164,7 @@ entities: pos: 8.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25774 components: - type: Transform @@ -107030,7 +107172,7 @@ entities: pos: 9.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25775 components: - type: Transform @@ -107054,7 +107196,7 @@ entities: pos: 10.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25778 components: - type: Transform @@ -107062,7 +107204,7 @@ entities: pos: 11.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25779 components: - type: Transform @@ -107086,7 +107228,7 @@ entities: pos: 12.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25782 components: - type: Transform @@ -107094,7 +107236,7 @@ entities: pos: 13.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25783 components: - type: Transform @@ -107166,7 +107308,7 @@ entities: pos: 14.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25795 components: - type: Transform @@ -107174,7 +107316,7 @@ entities: pos: 14.5,34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25796 components: - type: Transform @@ -107182,7 +107324,7 @@ entities: pos: 14.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25797 components: - type: Transform @@ -107190,14 +107332,14 @@ entities: pos: 14.5,36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25799 components: - type: Transform pos: 14.5,37.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25806 components: - type: Transform @@ -107205,7 +107347,7 @@ entities: pos: 15.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25812 components: - type: Transform @@ -107253,7 +107395,7 @@ entities: pos: 17.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25818 components: - type: Transform @@ -107261,7 +107403,7 @@ entities: pos: 18.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25819 components: - type: Transform @@ -107269,7 +107411,7 @@ entities: pos: 19.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25820 components: - type: Transform @@ -107277,7 +107419,7 @@ entities: pos: 20.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25821 components: - type: Transform @@ -107285,7 +107427,7 @@ entities: pos: 21.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25822 components: - type: Transform @@ -107293,7 +107435,7 @@ entities: pos: 22.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25966 components: - type: Transform @@ -107341,13 +107483,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 26071 - components: - - type: Transform - pos: 17.5,-58.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - uid: 26082 components: - type: Transform @@ -107371,7 +107506,7 @@ entities: pos: -4.5,-63.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26676 components: - type: Transform @@ -107411,7 +107546,7 @@ entities: pos: -5.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26681 components: - type: Transform @@ -107419,7 +107554,7 @@ entities: pos: -5.5,-71.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26682 components: - type: Transform @@ -107427,7 +107562,7 @@ entities: pos: -5.5,-70.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26683 components: - type: Transform @@ -107435,7 +107570,7 @@ entities: pos: -5.5,-69.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26684 components: - type: Transform @@ -107443,7 +107578,7 @@ entities: pos: -4.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26685 components: - type: Transform @@ -107451,7 +107586,7 @@ entities: pos: -3.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26686 components: - type: Transform @@ -107491,7 +107626,7 @@ entities: pos: -7.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26691 components: - type: Transform @@ -107499,7 +107634,7 @@ entities: pos: -8.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26921 components: - type: Transform @@ -107985,7 +108120,7 @@ entities: pos: -6.5,50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 953 components: - type: Transform @@ -108008,7 +108143,7 @@ entities: pos: 5.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3860 components: - type: Transform @@ -108040,7 +108175,7 @@ entities: pos: 8.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4145 components: - type: Transform @@ -108117,14 +108252,14 @@ entities: pos: -13.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7710 components: - type: Transform pos: -11.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8524 components: - type: Transform @@ -108138,14 +108273,14 @@ entities: pos: -0.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8668 components: - type: Transform pos: -8.5,27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8672 components: - type: Transform @@ -108175,7 +108310,7 @@ entities: pos: -10.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8949 components: - type: Transform @@ -108183,7 +108318,7 @@ entities: pos: -6.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8965 components: - type: Transform @@ -108207,7 +108342,7 @@ entities: pos: -7.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9107 components: - type: Transform @@ -108215,7 +108350,7 @@ entities: pos: -4.5,35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9439 components: - type: Transform @@ -108233,6 +108368,8 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,7.5 parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14212 components: - type: Transform @@ -108264,7 +108401,7 @@ entities: pos: -1.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16134 components: - type: Transform @@ -108272,7 +108409,7 @@ entities: pos: -41.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16338 components: - type: Transform @@ -108334,7 +108471,7 @@ entities: pos: 5.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17042 components: - type: Transform @@ -108342,7 +108479,7 @@ entities: pos: -0.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17051 components: - type: Transform @@ -108371,7 +108508,7 @@ entities: pos: 4.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17119 components: - type: Transform @@ -108379,7 +108516,7 @@ entities: pos: 4.5,-61.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17149 components: - type: Transform @@ -108387,7 +108524,7 @@ entities: pos: 3.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17160 components: - type: Transform @@ -108395,7 +108532,7 @@ entities: pos: -5.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17183 components: - type: Transform @@ -108494,7 +108631,7 @@ entities: pos: 28.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18036 components: - type: Transform @@ -108509,7 +108646,7 @@ entities: pos: 7.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19101 components: - type: Transform @@ -108563,7 +108700,7 @@ entities: pos: -2.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22556 components: - type: Transform @@ -108571,7 +108708,7 @@ entities: pos: 76.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22557 components: - type: Transform @@ -108594,7 +108731,7 @@ entities: pos: -6.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23017 components: - type: Transform @@ -108610,7 +108747,7 @@ entities: pos: -1.5,-49.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23043 components: - type: Transform @@ -108634,7 +108771,7 @@ entities: pos: -1.5,-43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23056 components: - type: Transform @@ -108642,7 +108779,7 @@ entities: pos: -1.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23060 components: - type: Transform @@ -108650,7 +108787,7 @@ entities: pos: -5.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23069 components: - type: Transform @@ -108665,7 +108802,7 @@ entities: pos: -7.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23071 components: - type: Transform @@ -108680,7 +108817,7 @@ entities: pos: 0.5,-66.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23183 components: - type: Transform @@ -108696,14 +108833,14 @@ entities: pos: 5.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23252 components: - type: Transform pos: -13.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23271 components: - type: Transform @@ -108727,7 +108864,7 @@ entities: pos: -1.5,-38.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23294 components: - type: Transform @@ -108735,7 +108872,7 @@ entities: pos: -1.5,-36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23295 components: - type: Transform @@ -108751,7 +108888,7 @@ entities: pos: -8.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23324 components: - type: Transform @@ -108759,7 +108896,7 @@ entities: pos: -12.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23335 components: - type: Transform @@ -108783,7 +108920,7 @@ entities: pos: -17.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23345 components: - type: Transform @@ -108791,7 +108928,7 @@ entities: pos: -17.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23348 components: - type: Transform @@ -108807,7 +108944,7 @@ entities: pos: -17.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23354 components: - type: Transform @@ -108822,7 +108959,7 @@ entities: pos: -17.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23365 components: - type: Transform @@ -108852,7 +108989,7 @@ entities: pos: -31.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23375 components: - type: Transform @@ -108873,7 +109010,7 @@ entities: pos: -43.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23388 components: - type: Transform @@ -108896,7 +109033,7 @@ entities: pos: -54.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23406 components: - type: Transform @@ -108904,7 +109041,7 @@ entities: pos: -57.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23407 components: - type: Transform @@ -108935,7 +109072,7 @@ entities: pos: -64.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23435 components: - type: Transform @@ -108951,7 +109088,7 @@ entities: pos: -1.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23468 components: - type: Transform @@ -108974,7 +109111,7 @@ entities: pos: -1.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23495 components: - type: Transform @@ -108982,7 +109119,7 @@ entities: pos: 8.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23497 components: - type: Transform @@ -108998,7 +109135,7 @@ entities: pos: 14.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23508 components: - type: Transform @@ -109006,7 +109143,7 @@ entities: pos: 14.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23513 components: - type: Transform @@ -109014,7 +109151,7 @@ entities: pos: 14.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23520 components: - type: Transform @@ -109022,7 +109159,7 @@ entities: pos: 14.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23526 components: - type: Transform @@ -109030,7 +109167,7 @@ entities: pos: 14.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23530 components: - type: Transform @@ -109038,7 +109175,7 @@ entities: pos: 14.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23533 components: - type: Transform @@ -109060,7 +109197,7 @@ entities: pos: 1.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23558 components: - type: Transform @@ -109091,7 +109228,7 @@ entities: pos: -17.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23572 components: - type: Transform @@ -109099,7 +109236,7 @@ entities: pos: -17.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23581 components: - type: Transform @@ -109115,7 +109252,7 @@ entities: pos: -17.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23586 components: - type: Transform @@ -109131,7 +109268,7 @@ entities: pos: -17.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23593 components: - type: Transform @@ -109145,21 +109282,21 @@ entities: pos: -22.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23605 components: - type: Transform pos: -23.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23606 components: - type: Transform pos: -32.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23609 components: - type: Transform @@ -109174,7 +109311,7 @@ entities: pos: -26.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23617 components: - type: Transform @@ -109182,7 +109319,7 @@ entities: pos: -45.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23619 components: - type: Transform @@ -109197,14 +109334,14 @@ entities: pos: -41.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23630 components: - type: Transform pos: -50.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23632 components: - type: Transform @@ -109219,7 +109356,7 @@ entities: pos: -58.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23641 components: - type: Transform @@ -109235,7 +109372,7 @@ entities: pos: -64.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23662 components: - type: Transform @@ -109243,7 +109380,7 @@ entities: pos: -64.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23669 components: - type: Transform @@ -109251,7 +109388,7 @@ entities: pos: -58.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23678 components: - type: Transform @@ -109291,7 +109428,7 @@ entities: pos: -1.5,4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23718 components: - type: Transform @@ -109299,7 +109436,7 @@ entities: pos: -1.5,14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23721 components: - type: Transform @@ -109321,7 +109458,7 @@ entities: pos: 10.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23738 components: - type: Transform @@ -109368,7 +109505,7 @@ entities: pos: 4.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23782 components: - type: Transform @@ -109383,28 +109520,28 @@ entities: pos: 22.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23793 components: - type: Transform pos: 35.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23797 components: - type: Transform pos: 31.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23802 components: - type: Transform pos: 26.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23805 components: - type: Transform @@ -109444,14 +109581,14 @@ entities: pos: 52.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23841 components: - type: Transform pos: 46.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23844 components: - type: Transform @@ -109459,7 +109596,7 @@ entities: pos: 43.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23851 components: - type: Transform @@ -109467,7 +109604,7 @@ entities: pos: 36.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23852 components: - type: Transform @@ -109511,14 +109648,14 @@ entities: pos: 66.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23885 components: - type: Transform pos: 65.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23886 components: - type: Transform @@ -109542,7 +109679,7 @@ entities: pos: 76.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23928 components: - type: Transform @@ -109550,7 +109687,7 @@ entities: pos: -1.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23929 components: - type: Transform @@ -109565,7 +109702,7 @@ entities: pos: -20.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23958 components: - type: Transform @@ -109589,21 +109726,21 @@ entities: pos: -22.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23975 components: - type: Transform pos: -24.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23976 components: - type: Transform pos: -25.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23978 components: - type: Transform @@ -109632,7 +109769,7 @@ entities: pos: 7.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24128 components: - type: Transform @@ -109653,14 +109790,14 @@ entities: pos: -8.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24158 components: - type: Transform pos: 2.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24162 components: - type: Transform @@ -109674,7 +109811,7 @@ entities: pos: -3.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24170 components: - type: Transform @@ -109689,7 +109826,7 @@ entities: pos: 0.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24174 components: - type: Transform @@ -109713,7 +109850,7 @@ entities: pos: 7.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24213 components: - type: Transform @@ -109729,7 +109866,7 @@ entities: pos: 8.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24257 components: - type: Transform @@ -109745,7 +109882,7 @@ entities: pos: 8.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24259 components: - type: Transform @@ -109761,7 +109898,7 @@ entities: pos: 8.5,11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24261 components: - type: Transform @@ -109777,7 +109914,7 @@ entities: pos: 8.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24276 components: - type: Transform @@ -109801,7 +109938,7 @@ entities: pos: -12.5,3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24312 components: - type: Transform @@ -109823,14 +109960,14 @@ entities: pos: -12.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24342 components: - type: Transform pos: 11.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24343 components: - type: Transform @@ -109854,14 +109991,14 @@ entities: pos: 13.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24374 components: - type: Transform pos: 19.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24375 components: - type: Transform @@ -109885,7 +110022,7 @@ entities: pos: 17.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24428 components: - type: Transform @@ -109901,7 +110038,7 @@ entities: pos: 22.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24433 components: - type: Transform @@ -109909,7 +110046,7 @@ entities: pos: 22.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24439 components: - type: Transform @@ -109924,7 +110061,7 @@ entities: pos: 36.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24504 components: - type: Transform @@ -109948,7 +110085,7 @@ entities: pos: 35.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24541 components: - type: Transform @@ -109963,7 +110100,7 @@ entities: pos: 31.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24556 components: - type: Transform @@ -109979,7 +110116,7 @@ entities: pos: 26.5,-17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24577 components: - type: Transform @@ -110003,7 +110140,7 @@ entities: pos: 38.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24637 components: - type: Transform @@ -110011,7 +110148,7 @@ entities: pos: 40.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24653 components: - type: Transform @@ -110027,14 +110164,14 @@ entities: pos: 26.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24662 components: - type: Transform pos: 41.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24663 components: - type: Transform @@ -110050,7 +110187,7 @@ entities: pos: 39.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24751 components: - type: Transform @@ -110058,7 +110195,7 @@ entities: pos: 39.5,-35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24761 components: - type: Transform @@ -110082,7 +110219,7 @@ entities: pos: 39.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24783 components: - type: Transform @@ -110106,7 +110243,7 @@ entities: pos: 39.5,-53.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24828 components: - type: Transform @@ -110114,14 +110251,14 @@ entities: pos: 39.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24834 components: - type: Transform pos: 40.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24859 components: - type: Transform @@ -110152,7 +110289,7 @@ entities: pos: 43.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24928 components: - type: Transform @@ -110167,7 +110304,7 @@ entities: pos: 73.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25026 components: - type: Transform @@ -110183,7 +110320,7 @@ entities: pos: 66.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25041 components: - type: Transform @@ -110191,7 +110328,7 @@ entities: pos: 66.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25042 components: - type: Transform @@ -110207,7 +110344,7 @@ entities: pos: 66.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25054 components: - type: Transform @@ -110223,7 +110360,7 @@ entities: pos: 70.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25073 components: - type: Transform @@ -110247,14 +110384,14 @@ entities: pos: 66.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25117 components: - type: Transform pos: 56.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25118 components: - type: Transform @@ -110269,7 +110406,7 @@ entities: pos: 56.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25125 components: - type: Transform @@ -110293,7 +110430,7 @@ entities: pos: 66.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25179 components: - type: Transform @@ -110301,7 +110438,7 @@ entities: pos: 66.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25191 components: - type: Transform @@ -110325,7 +110462,7 @@ entities: pos: -41.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25431 components: - type: Transform @@ -110339,7 +110476,7 @@ entities: pos: -5.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25433 components: - type: Transform @@ -110353,7 +110490,7 @@ entities: pos: -11.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25437 components: - type: Transform @@ -110369,7 +110506,7 @@ entities: pos: -17.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25460 components: - type: Transform @@ -110384,7 +110521,7 @@ entities: pos: -7.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25493 components: - type: Transform @@ -110400,14 +110537,14 @@ entities: pos: 4.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25498 components: - type: Transform pos: 8.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25511 components: - type: Transform @@ -110431,14 +110568,14 @@ entities: pos: 4.5,24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25532 components: - type: Transform pos: 4.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25535 components: - type: Transform @@ -110453,14 +110590,14 @@ entities: pos: 7.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25538 components: - type: Transform pos: 9.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25636 components: - type: Transform @@ -110476,7 +110613,7 @@ entities: pos: 2.5,31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25647 components: - type: Transform @@ -110484,7 +110621,7 @@ entities: pos: -4.5,29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25650 components: - type: Transform @@ -110508,7 +110645,7 @@ entities: pos: -4.5,31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25763 components: - type: Transform @@ -110524,7 +110661,7 @@ entities: pos: 7.5,32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26672 components: - type: Transform @@ -110540,7 +110677,7 @@ entities: pos: -5.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26674 components: - type: Transform @@ -110555,7 +110692,7 @@ entities: pos: -6.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26920 components: - type: Transform @@ -110606,6 +110743,8 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,8.5 parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3798 components: - type: Transform @@ -110643,6 +110782,8 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,7.5 parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15045 components: - type: Transform @@ -110660,7 +110801,7 @@ entities: pos: 1.5,-49.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15506 components: - type: Transform @@ -110668,7 +110809,7 @@ entities: pos: 1.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15641 components: - type: Transform @@ -110908,7 +111049,7 @@ entities: pos: 40.5,6.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 13813 components: - type: Transform @@ -111034,7 +111175,7 @@ entities: pos: 9.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25004 components: - type: Transform @@ -111054,7 +111195,7 @@ entities: pos: 33.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#03FCD3FF' - uid: 26081 components: - type: MetaData @@ -111077,6 +111218,8 @@ entities: - type: Transform pos: 33.5,-32.5 parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 20141 components: - type: Transform @@ -111509,6 +111652,9 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-69.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22588 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23279 @@ -112712,14 +112858,14 @@ entities: pos: 11.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5383 components: - type: Transform pos: 57.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5463 components: - type: Transform @@ -112730,28 +112876,28 @@ entities: deviceLists: - 26707 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7284 components: - type: Transform pos: -7.5,44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7294 components: - type: Transform pos: -13.5,47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7295 components: - type: Transform pos: -18.5,44.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7301 components: - type: Transform @@ -112759,7 +112905,7 @@ entities: pos: -7.5,50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8953 components: - type: Transform @@ -112767,7 +112913,7 @@ entities: pos: -10.5,34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9185 components: - type: Transform @@ -112775,7 +112921,7 @@ entities: pos: -1.5,50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14226 components: - type: Transform @@ -112786,7 +112932,7 @@ entities: deviceLists: - 22970 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15347 components: - type: Transform @@ -112794,14 +112940,25 @@ entities: pos: -2.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 16789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-68.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22588 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16832 components: - type: Transform pos: -0.5,-46.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17122 components: - type: Transform @@ -112809,7 +112966,7 @@ entities: pos: 3.5,-61.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17187 components: - type: Transform @@ -112817,21 +112974,21 @@ entities: pos: 0.5,-67.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17630 components: - type: Transform pos: 5.5,-43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19123 components: - type: Transform pos: 28.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20132 components: - type: Transform @@ -112839,14 +112996,14 @@ entities: pos: -71.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22459 components: - type: Transform pos: -2.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22695 components: - type: Transform @@ -112854,7 +113011,7 @@ entities: pos: 77.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22778 components: - type: Transform @@ -112862,7 +113019,7 @@ entities: pos: -6.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22800 components: - type: Transform @@ -112870,7 +113027,7 @@ entities: pos: -1.5,-63.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22828 components: - type: Transform @@ -112878,7 +113035,7 @@ entities: pos: -12.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22951 components: - type: Transform @@ -112893,7 +113050,7 @@ entities: pos: 8.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23067 components: - type: Transform @@ -112901,7 +113058,7 @@ entities: pos: -1.5,-57.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23086 components: - type: Transform @@ -112909,7 +113066,7 @@ entities: pos: -7.5,-57.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23087 components: - type: Transform @@ -112917,14 +113074,14 @@ entities: pos: -11.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23088 components: - type: Transform pos: -5.5,-51.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23120 components: - type: Transform @@ -112932,7 +113089,7 @@ entities: pos: 8.5,-65.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23177 components: - type: Transform @@ -112940,15 +113097,7 @@ entities: pos: 3.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-68.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23278 components: - type: Transform @@ -112956,7 +113105,7 @@ entities: pos: -4.5,-43.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23302 components: - type: Transform @@ -112964,7 +113113,7 @@ entities: pos: -4.5,-36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23305 components: - type: Transform @@ -112972,7 +113121,7 @@ entities: pos: -0.5,-38.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23941 components: - type: Transform @@ -112980,21 +113129,21 @@ entities: pos: -0.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23948 components: - type: Transform pos: 1.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23950 components: - type: Transform pos: -12.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24012 components: - type: Transform @@ -113002,14 +113151,14 @@ entities: pos: -32.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24013 components: - type: Transform pos: -22.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24014 components: - type: Transform @@ -113017,7 +113166,7 @@ entities: pos: -20.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24032 components: - type: Transform @@ -113025,7 +113174,7 @@ entities: pos: -24.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24039 components: - type: Transform @@ -113033,7 +113182,7 @@ entities: pos: -21.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24051 components: - type: Transform @@ -113041,7 +113190,7 @@ entities: pos: -31.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24056 components: - type: Transform @@ -113049,7 +113198,7 @@ entities: pos: -25.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24062 components: - type: Transform @@ -113057,14 +113206,14 @@ entities: pos: -13.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24073 components: - type: Transform pos: -8.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24083 components: - type: Transform @@ -113072,7 +113221,7 @@ entities: pos: -21.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24084 components: - type: Transform @@ -113080,7 +113229,7 @@ entities: pos: -16.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24087 components: - type: Transform @@ -113088,7 +113237,7 @@ entities: pos: -16.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24097 components: - type: Transform @@ -113096,7 +113245,7 @@ entities: pos: 4.5,-35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24099 components: - type: Transform @@ -113104,7 +113253,7 @@ entities: pos: 15.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24109 components: - type: Transform @@ -113112,7 +113261,7 @@ entities: pos: 10.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24111 components: - type: Transform @@ -113120,7 +113269,7 @@ entities: pos: 15.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24180 components: - type: Transform @@ -113128,7 +113277,7 @@ entities: pos: -3.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24181 components: - type: Transform @@ -113136,7 +113285,7 @@ entities: pos: 2.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24188 components: - type: Transform @@ -113144,7 +113293,7 @@ entities: pos: 0.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24219 components: - type: Transform @@ -113152,7 +113301,7 @@ entities: pos: 7.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24224 components: - type: Transform @@ -113160,7 +113309,7 @@ entities: pos: 12.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24239 components: - type: Transform @@ -113168,7 +113317,7 @@ entities: pos: -8.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24242 components: - type: Transform @@ -113176,7 +113325,7 @@ entities: pos: -16.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24244 components: - type: Transform @@ -113184,14 +113333,14 @@ entities: pos: 15.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24245 components: - type: Transform pos: 76.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24295 components: - type: Transform @@ -113199,7 +113348,7 @@ entities: pos: 6.5,14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24296 components: - type: Transform @@ -113207,7 +113356,7 @@ entities: pos: 6.5,11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24297 components: - type: Transform @@ -113215,7 +113364,7 @@ entities: pos: 6.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24298 components: - type: Transform @@ -113223,7 +113372,7 @@ entities: pos: 6.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24300 components: - type: Transform @@ -113231,7 +113380,7 @@ entities: pos: 10.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24332 components: - type: Transform @@ -113239,7 +113388,7 @@ entities: pos: -11.5,3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24335 components: - type: Transform @@ -113247,7 +113396,7 @@ entities: pos: -12.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24337 components: - type: Transform @@ -113255,7 +113404,7 @@ entities: pos: -13.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24338 components: - type: Transform @@ -113263,21 +113412,21 @@ entities: pos: -5.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24371 components: - type: Transform pos: 13.5,14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24372 components: - type: Transform pos: 17.5,14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24373 components: - type: Transform @@ -113285,7 +113434,7 @@ entities: pos: 11.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24377 components: - type: Transform @@ -113293,7 +113442,7 @@ entities: pos: 19.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24401 components: - type: Transform @@ -113301,7 +113450,7 @@ entities: pos: 29.5,9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24421 components: - type: Transform @@ -113309,7 +113458,7 @@ entities: pos: 12.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24422 components: - type: Transform @@ -113317,7 +113466,7 @@ entities: pos: 18.5,5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24436 components: - type: Transform @@ -113325,21 +113474,21 @@ entities: pos: 21.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24464 components: - type: Transform pos: 20.5,3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24494 components: - type: Transform pos: 29.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24506 components: - type: Transform @@ -113347,14 +113496,14 @@ entities: pos: 35.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24520 components: - type: Transform pos: 36.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24581 components: - type: Transform @@ -113362,7 +113511,7 @@ entities: pos: 27.5,-17.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24582 components: - type: Transform @@ -113370,7 +113519,7 @@ entities: pos: 34.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24586 components: - type: Transform @@ -113378,7 +113527,7 @@ entities: pos: 31.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24587 components: - type: Transform @@ -113386,28 +113535,28 @@ entities: pos: 31.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24610 components: - type: Transform pos: 20.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24644 components: - type: Transform pos: 41.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24646 components: - type: Transform pos: 38.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24673 components: - type: Transform @@ -113415,7 +113564,7 @@ entities: pos: 41.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24674 components: - type: Transform @@ -113423,7 +113572,7 @@ entities: pos: 45.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24709 components: - type: Transform @@ -113431,7 +113580,7 @@ entities: pos: 26.5,-35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24711 components: - type: Transform @@ -113439,7 +113588,7 @@ entities: pos: 19.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24712 components: - type: Transform @@ -113447,7 +113596,7 @@ entities: pos: 27.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24747 components: - type: Transform @@ -113455,7 +113604,7 @@ entities: pos: 45.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24752 components: - type: Transform @@ -113463,7 +113612,7 @@ entities: pos: 40.5,-35.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24777 components: - type: Transform @@ -113471,7 +113620,7 @@ entities: pos: 40.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24778 components: - type: Transform @@ -113479,7 +113628,7 @@ entities: pos: 35.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24814 components: - type: Transform @@ -113487,7 +113636,7 @@ entities: pos: 36.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24815 components: - type: Transform @@ -113495,7 +113644,7 @@ entities: pos: 36.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24816 components: - type: Transform @@ -113503,7 +113652,7 @@ entities: pos: 44.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24830 components: - type: Transform @@ -113511,7 +113660,7 @@ entities: pos: 40.5,-53.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24850 components: - type: Transform @@ -113519,7 +113668,7 @@ entities: pos: 46.5,-59.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24851 components: - type: Transform @@ -113527,7 +113676,7 @@ entities: pos: 43.5,-59.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24852 components: - type: Transform @@ -113535,7 +113684,7 @@ entities: pos: 36.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24853 components: - type: Transform @@ -113543,21 +113692,21 @@ entities: pos: 40.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24878 components: - type: Transform pos: 43.5,-53.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24916 components: - type: Transform pos: 47.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24917 components: - type: Transform @@ -113565,7 +113714,7 @@ entities: pos: 45.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24918 components: - type: Transform @@ -113573,7 +113722,7 @@ entities: pos: 46.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24919 components: - type: Transform @@ -113581,7 +113730,7 @@ entities: pos: 65.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24930 components: - type: Transform @@ -113589,7 +113738,7 @@ entities: pos: 73.5,-10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24967 components: - type: Transform @@ -113597,7 +113746,7 @@ entities: pos: 66.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25035 components: - type: Transform @@ -113605,7 +113754,7 @@ entities: pos: 67.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25071 components: - type: Transform @@ -113613,21 +113762,21 @@ entities: pos: 77.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25072 components: - type: Transform pos: 70.5,-21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25116 components: - type: Transform pos: 61.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25134 components: - type: Transform @@ -113635,7 +113784,7 @@ entities: pos: 53.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25135 components: - type: Transform @@ -113643,7 +113792,7 @@ entities: pos: 57.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25136 components: - type: Transform @@ -113651,7 +113800,7 @@ entities: pos: 54.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25143 components: - type: Transform @@ -113659,7 +113808,7 @@ entities: pos: 61.5,-30.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25166 components: - type: Transform @@ -113667,7 +113816,7 @@ entities: pos: 62.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25167 components: - type: Transform @@ -113675,7 +113824,7 @@ entities: pos: 69.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25169 components: - type: Transform @@ -113683,7 +113832,7 @@ entities: pos: 67.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25171 components: - type: Transform @@ -113691,7 +113840,7 @@ entities: pos: 67.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25207 components: - type: Transform @@ -113699,7 +113848,7 @@ entities: pos: 69.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25223 components: - type: Transform @@ -113707,14 +113856,14 @@ entities: pos: 67.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25241 components: - type: Transform pos: 58.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25261 components: - type: Transform @@ -113722,7 +113871,7 @@ entities: pos: 74.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25290 components: - type: Transform @@ -113730,7 +113879,7 @@ entities: pos: -71.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25305 components: - type: Transform @@ -113738,7 +113887,7 @@ entities: pos: -71.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25306 components: - type: Transform @@ -113746,7 +113895,7 @@ entities: pos: -63.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25313 components: - type: Transform @@ -113754,29 +113903,32 @@ entities: pos: -60.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25317 components: - type: Transform pos: -58.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25318 components: + - type: MetaData + name: air scrubber - type: Transform rot: 3.141592653589793 rad pos: -58.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - type: Label - uid: 25324 components: - type: Transform pos: -57.5,4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25337 components: - type: Transform @@ -113784,7 +113936,7 @@ entities: pos: -50.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25364 components: - type: Transform @@ -113792,7 +113944,7 @@ entities: pos: -40.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25365 components: - type: Transform @@ -113800,14 +113952,14 @@ entities: pos: -45.5,-11.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25377 components: - type: Transform pos: -45.5,3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25392 components: - type: Transform @@ -113815,7 +113967,7 @@ entities: pos: -26.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25393 components: - type: Transform @@ -113823,7 +113975,7 @@ entities: pos: -32.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25397 components: - type: Transform @@ -113831,14 +113983,14 @@ entities: pos: -43.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25406 components: - type: Transform pos: -31.5,3.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25408 components: - type: Transform @@ -113846,7 +113998,7 @@ entities: pos: -23.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25419 components: - type: Transform @@ -113854,7 +114006,7 @@ entities: pos: -22.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25422 components: - type: Transform @@ -113862,7 +114014,7 @@ entities: pos: -0.5,14.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25423 components: - type: Transform @@ -113870,7 +114022,7 @@ entities: pos: -0.5,4.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25479 components: - type: Transform @@ -113878,7 +114030,7 @@ entities: pos: -5.5,15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25480 components: - type: Transform @@ -113886,7 +114038,7 @@ entities: pos: -11.5,15.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25481 components: - type: Transform @@ -113894,14 +114046,14 @@ entities: pos: -18.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25482 components: - type: Transform pos: -17.5,23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25487 components: - type: Transform @@ -113909,7 +114061,7 @@ entities: pos: -7.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25516 components: - type: Transform @@ -113917,7 +114069,7 @@ entities: pos: 13.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25518 components: - type: Transform @@ -113925,7 +114077,7 @@ entities: pos: 8.5,20.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25534 components: - type: Transform @@ -113933,7 +114085,7 @@ entities: pos: 5.5,24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25559 components: - type: Transform @@ -113941,7 +114093,7 @@ entities: pos: 9.5,23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25560 components: - type: Transform @@ -113949,7 +114101,7 @@ entities: pos: 10.5,28.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25624 components: - type: Transform @@ -113957,7 +114109,7 @@ entities: pos: -14.5,23.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25625 components: - type: Transform @@ -113965,7 +114117,7 @@ entities: pos: -8.5,24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25626 components: - type: Transform @@ -113973,7 +114125,7 @@ entities: pos: -4.5,24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25627 components: - type: Transform @@ -113981,7 +114133,7 @@ entities: pos: -0.5,24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25628 components: - type: Transform @@ -113989,7 +114141,7 @@ entities: pos: 2.5,24.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25752 components: - type: Transform @@ -113997,7 +114149,7 @@ entities: pos: -13.5,31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25754 components: - type: Transform @@ -114005,7 +114157,7 @@ entities: pos: -7.5,31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25756 components: - type: Transform @@ -114013,7 +114165,7 @@ entities: pos: -11.5,26.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25758 components: - type: Transform @@ -114021,7 +114173,7 @@ entities: pos: -5.5,29.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25759 components: - type: Transform @@ -114029,14 +114181,14 @@ entities: pos: 3.5,31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25760 components: - type: Transform pos: 2.5,36.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25800 components: - type: Transform @@ -114044,14 +114196,14 @@ entities: pos: 14.5,31.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25801 components: - type: Transform pos: 7.5,37.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25802 components: - type: Transform @@ -114059,7 +114211,7 @@ entities: pos: 13.5,38.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25823 components: - type: Transform @@ -114067,7 +114219,7 @@ entities: pos: 23.5,33.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26695 components: - type: Transform @@ -114075,14 +114227,14 @@ entities: pos: -2.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26696 components: - type: Transform pos: -6.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26697 components: - type: Transform @@ -114090,7 +114242,7 @@ entities: pos: -9.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - uid: 4577 @@ -121841,6 +121993,681 @@ entities: - type: Transform pos: 10.513089,-49.606483 parent: 8364 +- proto: Holopad + entities: + - uid: 4228 + components: + - type: MetaData + name: holopad (Library Meeting) + - type: Transform + pos: 56.5,2.5 + parent: 8364 + - type: Label + currentLabel: Library Meeting + - type: NameModifier + baseName: holopad + - uid: 19029 + components: + - type: MetaData + name: holopad (Brig) + - type: Transform + pos: -1.5,27.5 + parent: 8364 + - type: Label + currentLabel: Brig + - type: NameModifier + baseName: holopad + - uid: 19060 + components: + - type: MetaData + name: holopad (Captain's Office) + - type: Transform + pos: 9.5,-14.5 + parent: 8364 + - type: Label + currentLabel: Captain's Office + - type: NameModifier + baseName: holopad + - uid: 19079 + components: + - type: MetaData + name: holopad (AI Upload) + - type: Transform + pos: -0.5,-13.5 + parent: 8364 + - type: Label + currentLabel: AI Upload + - type: NameModifier + baseName: holopad + - uid: 22740 + components: + - type: MetaData + name: holopad (Bridge) + - type: Transform + pos: -1.5,-7.5 + parent: 8364 + - type: Label + currentLabel: Bridge + - type: NameModifier + baseName: holopad + - uid: 23046 + components: + - type: MetaData + name: holopad (Command Conference) + - type: Transform + pos: -10.5,-14.5 + parent: 8364 + - type: Label + currentLabel: Command Conference + - type: NameModifier + baseName: holopad + - uid: 23250 + components: + - type: MetaData + name: holopad (HoP's Office) + - type: Transform + pos: -9.5,-23.5 + parent: 8364 + - type: Label + currentLabel: HoP's Office + - type: NameModifier + baseName: holopad + - uid: 23260 + components: + - type: MetaData + name: holopad (Cargo) + - type: Transform + pos: -26.5,-23.5 + parent: 8364 + - type: Label + currentLabel: Cargo + - type: NameModifier + baseName: holopad + - uid: 25350 + components: + - type: MetaData + name: holopad (QM's Office) + - type: Transform + pos: -32.5,-29.5 + parent: 8364 + - type: Label + currentLabel: QM's Office + - type: NameModifier + baseName: holopad + - uid: 26071 + components: + - type: MetaData + name: holopad (Cargo Loading Dock) + - type: Transform + pos: -38.5,-29.5 + parent: 8364 + - type: Label + currentLabel: Cargo Loading Dock + - type: NameModifier + baseName: holopad + - uid: 27921 + components: + - type: MetaData + name: holopad (Salvage) + - type: Transform + pos: -26.5,-34.5 + parent: 8364 + - type: Label + currentLabel: Salvage + - type: NameModifier + baseName: holopad + - uid: 28084 + components: + - type: MetaData + name: holopad (CE's Office) + - type: Transform + pos: -3.5,-64.5 + parent: 8364 + - type: Label + currentLabel: CE's Office + - type: NameModifier + baseName: holopad + - uid: 28085 + components: + - type: MetaData + name: holopad (Engineering Proper) + - type: Transform + pos: 2.5,-68.5 + parent: 8364 + - type: Label + currentLabel: Engineering Proper + - type: NameModifier + baseName: holopad + - uid: 28086 + components: + - type: MetaData + name: holopad (Engineering Locker Room) + - type: Transform + pos: 3.5,-62.5 + parent: 8364 + - type: Label + currentLabel: Engineering Locker Room + - type: NameModifier + baseName: holopad + - uid: 28087 + components: + - type: MetaData + name: holopad (Engineering Break Room) + - type: Transform + pos: 6.5,-53.5 + parent: 8364 + - type: Label + currentLabel: Engineering Break Room + - type: NameModifier + baseName: holopad + - uid: 28090 + components: + - type: MetaData + name: holopad (Engineering Front Desk) + - type: Transform + pos: 5.5,-42.5 + parent: 8364 + - type: Label + currentLabel: Engineering Front Desk + - type: NameModifier + baseName: holopad + - uid: 28091 + components: + - type: MetaData + name: holopad (Atmospherics) + - type: Transform + pos: 16.5,-56.5 + parent: 8364 + - type: Label + currentLabel: Atmospherics + - type: NameModifier + baseName: holopad + - uid: 28092 + components: + - type: MetaData + name: holopad (TEG) + - type: Transform + pos: 15.5,-73.5 + parent: 8364 + - type: Label + currentLabel: TEG + - type: NameModifier + baseName: holopad + - uid: 28093 + components: + - type: MetaData + name: holopad (Warden's Office) + - type: Transform + pos: 1.5,32.5 + parent: 8364 + - type: Label + currentLabel: Warden's Office + - type: NameModifier + baseName: holopad + - uid: 28094 + components: + - type: MetaData + name: holopad (Security Break Room) + - type: Transform + pos: 14.5,33.5 + parent: 8364 + - type: Label + currentLabel: Security Break Room + - type: NameModifier + baseName: holopad + - uid: 28095 + components: + - type: MetaData + name: holopad (HoS's Office) + - type: Transform + pos: 14.5,38.5 + parent: 8364 + - type: Label + currentLabel: HoS's Office + - type: NameModifier + baseName: holopad + - uid: 28096 + components: + - type: MetaData + name: holopad (Courtroom) + - type: Transform + pos: 15.5,25.5 + parent: 8364 + - type: Label + currentLabel: Courtroom + - type: NameModifier + baseName: holopad + - uid: 28097 + components: + - type: MetaData + name: holopad (Interrogation) + - type: Transform + pos: -14.5,32.5 + parent: 8364 + - type: Label + currentLabel: Interrogation + - type: NameModifier + baseName: holopad + - uid: 28098 + components: + - type: MetaData + name: holopad (Detective's Office) + - type: Transform + pos: -4.5,15.5 + parent: 8364 + - type: Label + currentLabel: Detective's Office + - type: NameModifier + baseName: holopad + - uid: 28099 + components: + - type: MetaData + name: holopad (Lawyer's Office) + - type: Transform + pos: -12.5,15.5 + parent: 8364 + - type: Label + currentLabel: Lawyer's Office + - type: NameModifier + baseName: holopad + - uid: 28100 + components: + - type: MetaData + name: holopad (EVA) + - type: Transform + pos: -11.5,4.5 + parent: 8364 + - type: Label + currentLabel: EVA + - type: NameModifier + baseName: holopad + - uid: 28101 + components: + - type: MetaData + name: holopad (Showroom) + - type: Transform + pos: 9.5,-26.5 + parent: 8364 + - type: Label + currentLabel: Showroom + - type: NameModifier + baseName: holopad + - uid: 28102 + components: + - type: MetaData + name: holopad (Chemistry) + - type: Transform + pos: 20.5,-19.5 + parent: 8364 + - type: Label + currentLabel: Chemistry + - type: NameModifier + baseName: holopad + - uid: 28103 + components: + - type: MetaData + name: holopad (Medical Front Desk) + - type: Transform + pos: 30.5,-20.5 + parent: 8364 + - type: Label + currentLabel: Medical Front Desk + - type: NameModifier + baseName: holopad + - uid: 28104 + components: + - type: MetaData + name: holopad (Medical Examination) + - type: Transform + pos: 31.5,-28.5 + parent: 8364 + - type: Label + currentLabel: Medical Examination + - type: NameModifier + baseName: holopad + - uid: 28105 + components: + - type: MetaData + name: holopad (Medical Cryogenics) + - type: Transform + pos: 31.5,-34.5 + parent: 8364 + - type: Label + currentLabel: Medical Cryogenics + - type: NameModifier + baseName: holopad + - uid: 28106 + components: + - type: MetaData + name: holopad (CMO's Office) + - type: Transform + pos: 35.5,-42.5 + parent: 8364 + - type: Label + currentLabel: CMO's Office + - type: NameModifier + baseName: holopad + - uid: 28107 + components: + - type: MetaData + name: holopad (Virology) + - type: Transform + pos: 42.5,-56.5 + parent: 8364 + - type: Label + currentLabel: Virology + - type: NameModifier + baseName: holopad + - uid: 28108 + components: + - type: MetaData + name: holopad (Bar) + - type: Transform + pos: 30.5,-5.5 + parent: 8364 + - type: Label + currentLabel: Bar + - type: NameModifier + baseName: holopad + - uid: 28109 + components: + - type: MetaData + name: holopad (Theatre) + - type: Transform + pos: 21.5,4.5 + parent: 8364 + - type: Label + currentLabel: Theatre + - type: NameModifier + baseName: holopad + - uid: 28110 + components: + - type: MetaData + name: holopad (Botany) + - type: Transform + pos: 46.5,-7.5 + parent: 8364 + - type: Label + currentLabel: Botany + - type: NameModifier + baseName: holopad + - uid: 28112 + components: + - type: MetaData + name: holopad (Library) + - type: Transform + pos: 59.5,-9.5 + parent: 8364 + - type: Label + currentLabel: Library + - type: NameModifier + baseName: holopad + - uid: 28113 + components: + - type: MetaData + name: holopad (Chapel) + - type: Transform + pos: 69.5,-6.5 + parent: 8364 + - type: Label + currentLabel: Chapel + - type: NameModifier + baseName: holopad + - uid: 28114 + components: + - type: MetaData + name: holopad (R&D) + - type: Transform + pos: 71.5,-22.5 + parent: 8364 + - type: Label + currentLabel: R&D + - type: NameModifier + baseName: holopad + - uid: 28115 + components: + - type: MetaData + name: holopad (Robotics) + - type: Transform + pos: 60.5,-21.5 + parent: 8364 + - type: Label + currentLabel: Robotics + - type: NameModifier + baseName: holopad + - uid: 28116 + components: + - type: MetaData + name: holopad (RD's Office) + - type: Transform + pos: 71.5,-36.5 + parent: 8364 + - type: Label + currentLabel: RD's Office + - type: NameModifier + baseName: holopad + - uid: 28117 + components: + - type: MetaData + name: holopad (North Artifacts) + - type: Transform + pos: 79.5,-24.5 + parent: 8364 + - type: Label + currentLabel: North Artifacts + - type: NameModifier + baseName: holopad + - uid: 28118 + components: + - type: MetaData + name: holopad (South Artifacts) + - type: Transform + pos: 75.5,-45.5 + parent: 8364 + - type: Label + currentLabel: South Artifacts + - type: NameModifier + baseName: holopad + - uid: 28119 + components: + - type: MetaData + name: holopad (Anomaly Lab) + - type: Transform + pos: 71.5,-51.5 + parent: 8364 + - type: Label + currentLabel: Anomaly Lab + - type: NameModifier + baseName: holopad + - uid: 28120 + components: + - type: MetaData + name: holopad (Kitchen) + - type: Transform + pos: 36.5,-8.5 + parent: 8364 + - type: Label + currentLabel: Kitchen + - type: NameModifier + baseName: holopad + - uid: 28121 + components: + - type: MetaData + name: holopad (Mailroom) + - type: Transform + pos: -21.5,-17.5 + parent: 8364 + - type: Label + currentLabel: Mailroom + - type: NameModifier + baseName: holopad + - uid: 28122 + components: + - type: MetaData + name: holopad (Morgue) + - type: Transform + pos: 44.5,-19.5 + parent: 8364 + - type: Label + currentLabel: Morgue + - type: NameModifier + baseName: holopad + - uid: 28123 + components: + - type: MetaData + name: holopad (Perma) + - type: Transform + pos: -7.5,49.5 + parent: 8364 + - type: Label + currentLabel: Perma + - type: NameModifier + baseName: holopad + - uid: 28124 + components: + - type: MetaData + name: holopad (AI Sat Airlock) + - type: Transform + pos: 28.5,-80.5 + parent: 8364 + - type: Label + currentLabel: AI Sat Airlock + - type: NameModifier + baseName: holopad + - uid: 28125 + components: + - type: MetaData + name: holopad (AI Sat Lobby) + - type: Transform + pos: 28.5,-85.5 + parent: 8364 + - type: Label + currentLabel: AI Sat Lobby + - type: NameModifier + baseName: holopad + - uid: 28126 + components: + - type: MetaData + name: holopad (AI Core) + - type: Transform + pos: 28.5,-108.5 + parent: 8364 + - type: Label + currentLabel: AI Core + - type: NameModifier + baseName: holopad + - uid: 28127 + components: + - type: MetaData + name: holopad (Tools) + - type: Transform + pos: -42.5,3.5 + parent: 8364 + - type: Label + currentLabel: Tools + - type: NameModifier + baseName: holopad + - uid: 28128 + components: + - type: MetaData + name: holopad (Security Arrivals Checkpoint) + - type: Transform + pos: -59.5,4.5 + parent: 8364 + - type: Label + currentLabel: Security Arrivals Checkpoint + - type: NameModifier + baseName: holopad + - uid: 28129 + components: + - type: MetaData + name: holopad (Vault) + - type: Transform + pos: -31.5,4.5 + parent: 8364 + - type: Label + currentLabel: Vault + - type: NameModifier + baseName: holopad + - uid: 28130 + components: + - type: MetaData + name: holopad (Janitor) + - type: Transform + pos: 4.5,-34.5 + parent: 8364 + - type: Label + currentLabel: Janitor + - type: NameModifier + baseName: holopad + - uid: 28131 + components: + - type: MetaData + name: holopad (Tech Vault) + - type: Transform + pos: -6.5,-36.5 + parent: 8364 + - type: Label + currentLabel: Tech Vault + - type: NameModifier + baseName: holopad + - uid: 28134 + components: + - type: MetaData + name: holopad (Telecoms) + - type: Transform + pos: -13.5,-53.5 + parent: 8364 + - type: Label + currentLabel: Telecoms + - type: NameModifier + baseName: holopad + - uid: 28135 + components: + - type: MetaData + name: holopad (Security Evac) + - type: Transform + pos: 79.5,-2.5 + parent: 8364 + - type: Label + currentLabel: Security Evac + - type: NameModifier + baseName: holopad + - uid: 28136 + components: + - type: MetaData + name: holopad (Surgery) + - type: Transform + pos: 20.5,-35.5 + parent: 8364 + - type: Label + currentLabel: Surgery + - type: NameModifier + baseName: holopad +- proto: HolopadLongRange + entities: + - uid: 28088 + components: + - type: MetaData + name: long-range holopad (Cargo Loading Dock) + - type: Transform + pos: -38.5,-25.5 + parent: 8364 + - type: Label + currentLabel: Cargo Loading Dock + - type: NameModifier + baseName: long-range holopad + - uid: 28089 + components: + - type: MetaData + name: long-range holopad (Bridge) + - type: Transform + pos: 0.5,-7.5 + parent: 8364 + - type: Label + currentLabel: Bridge + - type: NameModifier + baseName: long-range holopad - proto: HospitalCurtainsOpen entities: - uid: 2213 @@ -126318,12 +127145,12 @@ entities: - uid: 17674 components: - type: Transform - pos: 7.542186,-46.412346 + pos: 12.267465,-49.63015 parent: 8364 - uid: 17765 components: - type: Transform - pos: 7.542186,-46.412346 + pos: 12.18934,-49.50515 parent: 8364 - uid: 19346 components: @@ -126349,12 +127176,12 @@ entities: - uid: 22564 components: - type: Transform - pos: 7.542186,-46.412346 + pos: 12.236215,-49.50515 parent: 8364 - uid: 22686 components: - type: Transform - pos: 7.542186,-46.412346 + pos: 12.236215,-49.5989 parent: 8364 - uid: 26640 components: @@ -127239,6 +128066,14 @@ entities: - type: Transform pos: 11.5,-37.5 parent: 8364 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 28137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-28.5 + parent: 8364 - proto: PosterLegitLoveIan entities: - uid: 5776 @@ -127573,10 +128408,10 @@ entities: parent: 8364 - proto: PottedPlant27 entities: - - uid: 19079 + - uid: 28133 components: - type: Transform - pos: -7.5,-61.5 + pos: -5.5,-65.5 parent: 8364 - proto: PottedPlant29 entities: @@ -132970,11 +133805,6 @@ entities: - type: Transform pos: -12.5,-72.5 parent: 8364 - - uid: 16396 - components: - - type: Transform - pos: 7.5,-46.5 - parent: 8364 - uid: 16450 components: - type: Transform @@ -133125,6 +133955,11 @@ entities: - type: Transform pos: 34.5,-90.5 parent: 8364 + - uid: 28132 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 8364 - proto: RadiationCollector entities: - uid: 3780 @@ -139949,7 +140784,7 @@ entities: - uid: 27556 components: - type: Transform - pos: -24.410706,-71.44174 + pos: -23.7492,-71.4955 parent: 8364 - proto: SheetPlasma1 entities: @@ -140110,12 +140945,12 @@ entities: - uid: 17672 components: - type: Transform - pos: 7.510936,-46.443596 + pos: 12.704965,-49.520775 parent: 8364 - uid: 17691 components: - type: Transform - pos: 7.510936,-46.443596 + pos: 12.673715,-49.520775 parent: 8364 - uid: 19345 components: @@ -140145,12 +140980,12 @@ entities: - uid: 22559 components: - type: Transform - pos: 7.510936,-46.443596 + pos: 12.68934,-49.489525 parent: 8364 - uid: 22567 components: - type: Transform - pos: 7.510936,-46.443596 + pos: 12.68934,-49.50515 parent: 8364 - uid: 22927 components: @@ -140167,7 +141002,7 @@ entities: - uid: 27557 components: - type: Transform - pos: -23.566956,-71.37924 + pos: -23.2492,-71.39133 parent: 8364 - proto: ShellShotgunPractice entities: @@ -141413,11 +142248,6 @@ entities: - type: Transform pos: 42.5,-43.5 parent: 8364 - - uid: 17864 - components: - - type: Transform - pos: 37.5,-25.5 - parent: 8364 - proto: SignConference entities: - uid: 912 @@ -142764,6 +143594,38 @@ entities: - type: Transform pos: -3.5,51.5 parent: 8364 +- proto: SMESAdvanced + entities: + - uid: 17701 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 8364 + - uid: 18594 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 8364 + - uid: 18595 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 8364 + - uid: 18730 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 8364 + - uid: 18731 + components: + - type: Transform + pos: -23.5,-66.5 + parent: 8364 + - uid: 18979 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 8364 - proto: SMESBasic entities: - uid: 865 @@ -142821,27 +143683,6 @@ entities: - type: Transform pos: -9.5,-65.5 parent: 8364 - - uid: 19013 - components: - - type: MetaData - name: SMES Bank 3 - - type: Transform - pos: -24.5,-66.5 - parent: 8364 - - uid: 19014 - components: - - type: MetaData - name: SMES Bank 2 - - type: Transform - pos: -24.5,-67.5 - parent: 8364 - - uid: 19029 - components: - - type: MetaData - name: SMES Bank 1 - - type: Transform - pos: -24.5,-68.5 - parent: 8364 - uid: 22090 components: - type: Transform @@ -149677,41 +150518,39 @@ entities: - type: Transform pos: 36.5,-36.5 parent: 8364 - - uid: 18594 - components: - - type: Transform - pos: -25.5,-64.5 - parent: 8364 - - uid: 18595 - components: - - type: Transform - pos: -24.5,-64.5 - parent: 8364 - - uid: 18596 - components: - - type: Transform - pos: -23.5,-64.5 - parent: 8364 - uid: 18655 components: - type: Transform pos: 37.5,-36.5 parent: 8364 - - uid: 18724 - components: - - type: Transform - pos: -24.5,-71.5 - parent: 8364 - uid: 18725 components: - type: Transform pos: -23.5,-71.5 parent: 8364 + - uid: 18729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-64.5 + parent: 8364 - uid: 18751 components: - type: Transform pos: 9.5,-60.5 parent: 8364 + - uid: 19013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-64.5 + parent: 8364 + - uid: 19014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-64.5 + parent: 8364 - uid: 19047 components: - type: Transform @@ -173552,16 +174391,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-42.5 parent: 8364 - - uid: 18727 - components: - - type: Transform - pos: -23.5,-68.5 - parent: 8364 - - uid: 18730 - components: - - type: Transform - pos: -25.5,-68.5 - parent: 8364 - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 6248 @@ -175015,21 +175844,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-21.5 parent: 8364 - - uid: 18728 - components: - - type: Transform - pos: -26.5,-68.5 - parent: 8364 - - uid: 18729 - components: - - type: Transform - pos: -24.5,-68.5 - parent: 8364 - - uid: 18731 - components: - - type: Transform - pos: -22.5,-68.5 - parent: 8364 - uid: 21305 components: - type: Transform From 50fddd08046141aec450413d4bad0c586860cf99 Mon Sep 17 00:00:00 2001 From: Spanky Date: Wed, 18 Dec 2024 03:37:56 -0500 Subject: [PATCH 130/263] Cargo Shuttle/ATS Update (#33927) Update Cargo Shuttle/ATS Adds holopads to the cargo shuttle and ATS. Also replaces the blast door buttons on the cargo shuttle with locked variants. --- Resources/Maps/Shuttles/cargo.yml | 228 +++++++++++++------- Resources/Maps/Shuttles/trading_outpost.yml | 96 ++++++--- 2 files changed, 222 insertions(+), 102 deletions(-) diff --git a/Resources/Maps/Shuttles/cargo.yml b/Resources/Maps/Shuttles/cargo.yml index dab78a0102..ca0719dd60 100644 --- a/Resources/Maps/Shuttles/cargo.yml +++ b/Resources/Maps/Shuttles/cargo.yml @@ -3,6 +3,7 @@ meta: postmapinit: false tilemap: 0: Space + 1: FloorReinforced 84: FloorShuttleBlue 89: FloorShuttleWhite 93: FloorSteel @@ -22,15 +23,15 @@ entities: chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAA version: 6 0,-1: ind: 0,-1 @@ -83,6 +84,7 @@ entities: 9: -2,2 10: -4,2 11: -5,2 + 24: -3,5 - node: color: '#A4610696' id: CheckerNWSE @@ -97,43 +99,36 @@ entities: id: QuarterTileOverlayGreyscale decals: 22: -3,-1 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 21: -3,5 - type: GridAtmosphere version: 2 data: tiles: - -2,-1: - 0: 52428 - -1,-1: - 0: 65535 - -1,-2: - 0: 61440 + -2,0: + 0: 51400 -2,1: - 0: 52428 + 0: 16520 + -2,-1: + 0: 32832 -1,0: 0: 65535 -1,1: - 0: 65535 - -1,2: - 0: 255 - 0,-1: - 0: 4369 - 0,1: - 0: 4369 - 0,2: - 0: 1 - 0,0: - 0: 4369 - -2,0: - 0: 52428 + 0: 30719 -2,2: - 0: 140 + 0: 128 + -1,-1: + 0: 63346 + -1,2: + 0: 130 + 0,0: + 0: 4112 + 0,1: + 0: 4096 -2,-2: 0: 32768 + -1,-2: + 0: 32768 + 0,-1: + 0: 16 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -168,6 +163,12 @@ entities: parent: 173 - proto: AirlockGlassShuttle entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 173 - uid: 45 components: - type: Transform @@ -180,12 +181,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 173 - - uid: 52 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 173 - uid: 53 components: - type: Transform @@ -197,6 +192,7 @@ entities: - uid: 79 components: - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,6.5 parent: 173 - proto: AtmosDeviceFanDirectional @@ -247,6 +243,32 @@ entities: - type: Transform pos: -5.5,4.5 parent: 173 +- proto: ButtonFrameCaution + entities: + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 173 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 173 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 173 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 173 - proto: CableApcExtension entities: - uid: 100 @@ -573,6 +595,48 @@ entities: - type: Transform pos: -3.5,-0.5 parent: 173 +- proto: Catwalk + entities: + - uid: 174 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 173 + - uid: 175 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 173 + - uid: 176 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 173 + - uid: 177 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 173 + - uid: 178 + components: + - type: Transform + pos: -5.5,7.5 + parent: 173 + - uid: 179 + components: + - type: Transform + pos: 0.5,7.5 + parent: 173 + - uid: 180 + components: + - type: Transform + pos: -0.5,9.5 + parent: 173 + - uid: 181 + components: + - type: Transform + pos: -4.5,9.5 + parent: 173 - proto: ChairPilotSeat entities: - uid: 141 @@ -753,6 +817,61 @@ entities: - type: Transform pos: -3.5,-2.5 parent: 173 +- proto: HolopadLongRange + entities: + - uid: 186 + components: + - type: MetaData + name: long-range holopad (Cargo Shuttle) + - type: Transform + pos: -2.5,5.5 + parent: 173 + - type: Label + currentLabel: Cargo Shuttle + - type: NameModifier + baseName: long-range holopad +- proto: LockableButtonCargo + entities: + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 3: + - Pressed: Toggle + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 56: + - Pressed: Toggle + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 1: + - Pressed: Toggle + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 173 + - type: DeviceLinkSource + linkedPorts: + 54: + - Pressed: Toggle - proto: PlasticFlapsAirtightClear entities: - uid: 44 @@ -836,44 +955,6 @@ entities: - type: Transform pos: -3.5,8.5 parent: 173 -- proto: SignalButton - entities: - - uid: 2 - components: - - type: Transform - pos: -5.5,5.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 56: - - Pressed: Toggle - - uid: 55 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 3: - - Pressed: Toggle - - uid: 57 - components: - - type: Transform - pos: 0.5,5.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 1: - - Pressed: Toggle - - uid: 58 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 54: - - Pressed: Toggle - proto: SMESBasic entities: - uid: 84 @@ -1176,6 +1257,7 @@ entities: - uid: 66 components: - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-3.5 parent: 173 - uid: 67 diff --git a/Resources/Maps/Shuttles/trading_outpost.yml b/Resources/Maps/Shuttles/trading_outpost.yml index 890ac36641..c88aad4a10 100644 --- a/Resources/Maps/Shuttles/trading_outpost.yml +++ b/Resources/Maps/Shuttles/trading_outpost.yml @@ -98,6 +98,7 @@ entities: 189: 4,-12 190: 5,-12 191: 6,-12 + 192: 5,2 - node: color: '#FFFFFFFF' id: Delivery @@ -568,6 +569,32 @@ entities: - type: Transform pos: -2.5,-6.5 parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 - proto: CableApcExtension entities: - uid: 31 @@ -4299,6 +4326,19 @@ entities: - type: Transform pos: 11.5,9.5 parent: 2 +- proto: HolopadLongRange + entities: + - uid: 546 + components: + - type: MetaData + name: long-range holopad (Automated Trade Station) + - type: Transform + pos: 5.5,2.5 + parent: 2 + - type: Label + currentLabel: Automated Trade Station + - type: NameModifier + baseName: long-range holopad - proto: NewtonCradle entities: - uid: 65 @@ -4727,31 +4767,9 @@ entities: - type: Transform pos: 7.5,3.5 parent: 2 -- proto: SignalSwitchDirectional +- proto: SignalButtonDirectional entities: - - uid: 108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 289: - - On: Open - - Off: Close - - uid: 110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 288: - - On: Open - - Off: Close - - uid: 120 + - uid: 545 components: - type: Transform rot: 1.5707963267948966 rad @@ -4760,9 +4778,18 @@ entities: - type: DeviceLinkSource linkedPorts: 290: - - On: Open - - Off: Close - - uid: 121 + - Pressed: Toggle + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 288: + - Pressed: Toggle + - uid: 550 components: - type: Transform rot: -1.5707963267948966 rad @@ -4771,8 +4798,19 @@ entities: - type: DeviceLinkSource linkedPorts: 279: - - On: Open - - Off: Close + - Pressed: Toggle + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 289: + - Pressed: Toggle +- proto: SignalSwitchDirectional + entities: - uid: 128 components: - type: Transform From 9f0a8aac7d12912ce268a40a22ff35ce181122e1 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Wed, 18 Dec 2024 01:52:21 -0800 Subject: [PATCH 131/263] Cog Power Rebalance + Holopads, Gas Pipe Sensors (#33930) * fix cog power * double fix cog power * trial 3 * fourth go * i stopped counting --- Resources/Maps/cog.yml | 756 +++++++++++++++++++++-------------------- 1 file changed, 388 insertions(+), 368 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index b94be3b223..7d8d68e516 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -92,7 +92,7 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAC + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -2,-1: ind: -2,-1 @@ -180,7 +180,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: KgAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAADKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAARgAAAAAENQAAAAAANQAAAAAARgAAAAAENQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAAALQAAAAACLwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAARgAAAAABNQAAAAAALAAAAAADKgAAAAAALAAAAAACNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAARgAAAAAARgAAAAAAKgAAAAAARgAAAAAANQAAAAAARgAAAAAANQAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAANQAAAAAARgAAAAAEKgAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAELAAAAAABNQAAAAAANQAAAAAANQAAAAAAKgAAAAAARgAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAADRgAAAAACKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAARgAAAAAENQAAAAAANQAAAAAARgAAAAAENQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAAALQAAAAACLwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAARgAAAAABNQAAAAAALAAAAAADKgAAAAAALAAAAAACNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAARgAAAAAARgAAAAAAKgAAAAAARgAAAAAANQAAAAAARgAAAAAANQAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAANQAAAAAARgAAAAAEKgAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAELAAAAAABNQAAAAAANQAAAAAANQAAAAAAKgAAAAAARgAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAADRgAAAAACKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,-2: ind: 2,-2 @@ -956,6 +956,16 @@ entities: 1307: 61,-30 1308: 61,-29 2088: -31,9 + 10246: 14,-18 + 10247: 13,-18 + 10248: 12,-18 + 10249: 12,-15 + 10250: 13,-15 + 10251: 14,-15 + 10277: 15,-18 + 10278: 15,-15 + 10289: 37,2 + 10290: 40,1 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2070,7 +2080,6 @@ entities: 1461: -10,-23 1466: 16,3 1467: 15,3 - 1481: 19,5 1482: 22,5 1484: 19,6 1490: 30,-14 @@ -2253,7 +2262,6 @@ entities: 4272: 10,16 4273: 14,15 4274: 11,17 - 4282: 19,5 4283: 25,5 4284: 28,3 4293: 13,-28 @@ -2989,13 +2997,6 @@ entities: 9520: -18,-65 9521: -17,-70 9522: -17,-71 - 9552: 37,0 - 9553: 35,0 - 9554: 34,1 - 9555: 34,3 - 9556: 36,4 - 9557: 37,3 - 9558: 37,2 9559: 39,4 9560: 40,2 9733: -32,77 @@ -4458,7 +4459,6 @@ entities: 9181: 29,-4 9182: 30,-2 9183: 13,-13 - 9184: 15,-13 9185: 17,-13 9186: 19,-13 9187: 18,-10 @@ -4534,14 +4534,6 @@ entities: 9517: -20,-65 9518: -18,-65 9519: -18,-65 - 9561: 33,0 - 9562: 33,1 - 9563: 33,2 - 9564: 35,3 - 9565: 37,3 - 9566: 38,2 - 9567: 37,1 - 9568: 33,4 9569: 40,2 9570: 39,2 9571: 39,1 @@ -5799,13 +5791,6 @@ entities: 6448: -23,26 6449: -21,26 6450: -20,26 - - node: - color: '#3EB38896' - id: HalfTileOverlayGreyscale180 - decals: - 8008: 17,-14 - 8009: 18,-14 - 9007: 15,-13 - node: color: '#43990996' id: HalfTileOverlayGreyscale180 @@ -7579,11 +7564,6 @@ entities: 6468: -12,27 6469: -11,27 6470: -10,27 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale270 - decals: - 9008: 16,-13 - node: color: '#52B4E956' id: QuarterTileOverlayGreyscale270 @@ -8191,6 +8171,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 9653: -49,63 + - node: + color: '#3EB38896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 10282: 18,-14 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale180 @@ -8294,7 +8279,7 @@ entities: color: '#3EB38896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 8004: 16,-14 + 10281: 17,-14 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale270 @@ -8558,7 +8543,6 @@ entities: 2697: 12,84 2698: 25,84 2699: 26,82 - 9540: 35,3 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -8568,7 +8552,6 @@ entities: 2700: 10,82 2701: 11,84 2742: 24,84 - 9541: 33,3 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8591,7 +8574,6 @@ entities: 2693: 12,72 2694: 25,72 2695: 26,77 - 9539: 35,1 - node: zIndex: 1 color: '#EFB341FF' @@ -8607,22 +8589,18 @@ entities: 2691: 24,72 2692: 11,72 2696: 10,77 - 9542: 33,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: 886: 13,-22 2746: 25,82 - 9546: 33,0 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 885: 18,-22 2743: 11,82 - 9547: 35,0 - 9548: 36,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -8633,15 +8611,12 @@ entities: 602: -16,-46 1260: 57,-37 2745: 25,77 - 9551: 33,4 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 1253: 57,-25 2744: 11,77 - 9549: 36,3 - 9550: 35,4 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8827,8 +8802,6 @@ entities: 5524: -27,66 8297: 13,-12 8298: 14,-12 - 8299: 15,-12 - 8300: 16,-12 8301: 17,-12 8302: 18,-12 8303: 19,-12 @@ -8843,9 +8816,10 @@ entities: 9001: 11,-12 9002: 10,-12 9003: 9,-12 - 9545: 34,4 10164: 34,38 10165: 35,38 + 10279: 16,-12 + 10280: 15,-12 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8929,7 +8903,11 @@ entities: 2944: 57,54 2945: 57,55 5597: -36,62 - 9543: 36,2 + 10284: 37,3 + 10285: 37,1 + 10286: 37,0 + 10287: 37,2 + 10291: 37,4 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9001,7 +8979,6 @@ entities: 8309: 18,4 8310: 19,4 8311: 20,4 - 9544: 34,0 10166: 34,38 10167: 35,38 10244: 61,1 @@ -12433,10 +12410,9 @@ entities: parent: 12 - type: DeviceList devices: - - 1348 - - 2680 - 2416 - - 6197 + - 2680 + - 6291 - uid: 1699 components: - type: Transform @@ -12878,7 +12854,6 @@ entities: parent: 12 - type: DeviceList devices: - - 28375 - 9315 - 9314 - 9318 @@ -12888,6 +12863,19 @@ entities: - 5280 - 10003 - 10026 + - uid: 10201 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 12 + - type: DeviceList + devices: + - 5254 + - 5309 + - 9322 + - 9321 + - 10013 + - 9320 - uid: 11505 components: - type: Transform @@ -13107,7 +13095,7 @@ entities: - 9321 - 7229 - 5316 - - 28375 + - 617 - 4938 - uid: 22248 components: @@ -13862,21 +13850,6 @@ entities: - 27102 - 25548 - 9482 - - uid: 28376 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 12 - - type: DeviceList - devices: - - 5309 - - 10013 - - 5254 - - 9322 - - 9320 - - 9321 - - 29981 - - 29982 - uid: 28381 components: - type: Transform @@ -14661,11 +14634,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-8.5 parent: 12 - - uid: 79 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 12 - uid: 494 components: - type: Transform @@ -14764,6 +14732,12 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-19.5 parent: 12 + - uid: 10017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 12 - uid: 10667 components: - type: Transform @@ -15519,7 +15493,7 @@ entities: pos: 26.5,17.5 parent: 12 - type: Door - secondsUntilStateChange: -1810.9453 + secondsUntilStateChange: -4516.5117 state: Opening - type: DeviceLinkSink invokeCounter: 1 @@ -17798,7 +17772,7 @@ entities: - uid: 2416 components: - type: Transform - pos: 38.5,2.5 + pos: 38.5,3.5 parent: 12 - type: DeviceNetwork deviceLists: @@ -18192,7 +18166,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 28376 + - 10201 - uid: 10450 components: - type: Transform @@ -19150,10 +19124,22 @@ entities: parent: 12 - proto: AmeController entities: - - uid: 2682 + - uid: 4538 components: - type: Transform - pos: 36.5,2.5 + pos: 37.5,2.5 + parent: 12 +- proto: AmePartFlatpack + entities: + - uid: 2422 + components: + - type: Transform + pos: 40.70155,3.4612155 + parent: 12 + - uid: 31868 + components: + - type: Transform + pos: 40.423157,3.779093 parent: 12 - proto: AnomalyScanner entities: @@ -25274,11 +25260,6 @@ entities: - type: Transform pos: 39.5,2.5 parent: 12 - - uid: 2417 - components: - - type: Transform - pos: 36.5,2.5 - parent: 12 - uid: 2425 components: - type: Transform @@ -28159,11 +28140,6 @@ entities: - type: Transform pos: -56.5,-16.5 parent: 12 - - uid: 6196 - components: - - type: Transform - pos: 37.5,2.5 - parent: 12 - uid: 6249 components: - type: Transform @@ -45097,11 +45073,6 @@ entities: - type: Transform pos: 6.5,-54.5 parent: 12 - - uid: 617 - components: - - type: Transform - pos: 36.5,2.5 - parent: 12 - uid: 693 components: - type: Transform @@ -45150,7 +45121,7 @@ entities: - uid: 896 components: - type: Transform - pos: 18.5,-12.5 + pos: 19.5,-11.5 parent: 12 - uid: 904 components: @@ -45342,11 +45313,6 @@ entities: - type: Transform pos: 19.5,10.5 parent: 12 - - uid: 1358 - components: - - type: Transform - pos: 38.5,2.5 - parent: 12 - uid: 1360 components: - type: Transform @@ -45480,7 +45446,7 @@ entities: - uid: 2255 components: - type: Transform - pos: 19.5,-12.5 + pos: 18.5,-11.5 parent: 12 - uid: 2287 components: @@ -45517,16 +45483,16 @@ entities: - type: Transform pos: 40.5,1.5 parent: 12 + - uid: 2411 + components: + - type: Transform + pos: 39.5,2.5 + parent: 12 - uid: 2413 components: - type: Transform pos: 39.5,0.5 parent: 12 - - uid: 2422 - components: - - type: Transform - pos: 39.5,2.5 - parent: 12 - uid: 2466 components: - type: Transform @@ -45550,7 +45516,7 @@ entities: - uid: 2874 components: - type: Transform - pos: 16.5,-12.5 + pos: 15.5,-11.5 parent: 12 - uid: 2887 components: @@ -46150,7 +46116,7 @@ entities: - uid: 4617 components: - type: Transform - pos: 17.5,-12.5 + pos: 20.5,-11.5 parent: 12 - uid: 4623 components: @@ -46227,6 +46193,11 @@ entities: - type: Transform pos: 25.5,-16.5 parent: 12 + - uid: 4803 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 12 - uid: 4858 components: - type: Transform @@ -46470,7 +46441,7 @@ entities: - uid: 5487 components: - type: Transform - pos: 15.5,-11.5 + pos: 17.5,-11.5 parent: 12 - uid: 5500 components: @@ -46495,7 +46466,7 @@ entities: - uid: 5667 components: - type: Transform - pos: 15.5,-12.5 + pos: 16.5,-11.5 parent: 12 - uid: 5671 components: @@ -46547,11 +46518,6 @@ entities: - type: Transform pos: 70.5,-2.5 parent: 12 - - uid: 6291 - components: - - type: Transform - pos: 37.5,2.5 - parent: 12 - uid: 6414 components: - type: Transform @@ -56617,6 +56583,36 @@ entities: - type: Transform pos: -49.5,27.5 parent: 12 + - uid: 31871 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 12 + - uid: 31874 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 12 + - uid: 31875 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 12 + - uid: 31876 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 12 + - uid: 31877 + components: + - type: Transform + pos: 38.5,2.5 + parent: 12 + - uid: 31878 + components: + - type: Transform + pos: 37.5,2.5 + parent: 12 - uid: 32051 components: - type: Transform @@ -58532,6 +58528,11 @@ entities: - type: Transform pos: -60.5,30.5 parent: 12 + - uid: 6197 + components: + - type: Transform + pos: 38.5,1.5 + parent: 12 - uid: 6222 components: - type: Transform @@ -63212,6 +63213,11 @@ entities: - type: Transform pos: -47.5,13.5 parent: 12 + - uid: 19816 + components: + - type: Transform + pos: 37.5,1.5 + parent: 12 - uid: 19817 components: - type: Transform @@ -65772,6 +65778,16 @@ entities: - type: Transform pos: 54.5,2.5 parent: 12 + - uid: 26871 + components: + - type: Transform + pos: 39.5,1.5 + parent: 12 + - uid: 26872 + components: + - type: Transform + pos: 40.5,1.5 + parent: 12 - uid: 26884 components: - type: Transform @@ -67565,6 +67581,17 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-47.5 parent: 12 + - uid: 31867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 12 + - uid: 31869 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 12 - proto: Candle entities: - uid: 13090 @@ -71452,6 +71479,11 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-18.5 parent: 12 + - uid: 6773 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 12 - uid: 7112 components: - type: Transform @@ -74939,6 +74971,12 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,8.5 parent: 12 + - uid: 28376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 12 - uid: 28377 components: - type: Transform @@ -80520,7 +80558,7 @@ entities: - uid: 5503 components: - type: Transform - pos: 40.49897,3.5981612 + pos: 40.62628,2.544718 parent: 12 - uid: 6745 components: @@ -80708,8 +80746,7 @@ entities: - uid: 27188 components: - type: Transform - rot: -25.132741228718352 rad - pos: 17.825888,-13.641907 + pos: 8.695399,-10.653677 parent: 12 - proto: ClothingMaskMuzzle entities: @@ -81881,6 +81918,20 @@ entities: linkedPorts: 1696: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 28972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 12 + - uid: 29967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 12 - proto: computerBodyScanner entities: - uid: 10977 @@ -83311,10 +83362,15 @@ entities: parent: 12 - proto: CrateEngineeringAMEShielding entities: - - uid: 1357 + - uid: 26873 components: - type: Transform - pos: 34.5,2.5 + pos: 38.5,4.5 + parent: 12 + - uid: 31866 + components: + - type: Transform + pos: 39.5,4.5 parent: 12 - proto: CrateEngineeringElectricalSupplies entities: @@ -84281,10 +84337,10 @@ entities: parent: 12 - proto: DefaultStationBeaconAME entities: - - uid: 2411 + - uid: 1358 components: - type: Transform - pos: 37.5,3.5 + pos: 39.5,3.5 parent: 12 - proto: DefaultStationBeaconAnomalyGenerator entities: @@ -85214,12 +85270,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-16.5 parent: 12 - - uid: 10201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 12 - uid: 10414 components: - type: Transform @@ -95478,17 +95528,17 @@ entities: - type: Transform pos: 53.5,49.5 parent: 12 - - uid: 25567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 12 - uid: 26522 components: - type: Transform pos: 33.5,-9.5 parent: 12 + - uid: 26646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 12 - uid: 27021 components: - type: Transform @@ -95685,11 +95735,6 @@ entities: - type: Transform pos: 44.5,-11.5 parent: 12 - - uid: 10017 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 12 - uid: 11239 components: - type: Transform @@ -95872,6 +95917,11 @@ entities: - type: Transform pos: 59.5,-40.5 parent: 12 + - uid: 28375 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 12 - uid: 29391 components: - type: Transform @@ -96707,14 +96757,6 @@ entities: - type: Transform pos: 77.61463,48.901142 parent: 12 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 28852 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -3.3420668,-15.542583 - parent: 12 - proto: ElectricGuitarInstrument entities: - uid: 13481 @@ -96771,12 +96813,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-47.5 parent: 12 - - uid: 1363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 12 - uid: 3900 components: - type: Transform @@ -97627,6 +97663,12 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 12 + - uid: 31870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 12 - uid: 32037 components: - type: Transform @@ -98953,6 +98995,15 @@ entities: deviceLists: - 328 - 28328 + - uid: 617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 22005 - uid: 630 components: - type: Transform @@ -99001,9 +99052,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,0.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 1375 - uid: 1553 components: - type: Transform @@ -100031,7 +100079,7 @@ entities: deviceLists: - 23926 - 28365 - - 28376 + - 10201 - uid: 9321 components: - type: Transform @@ -100040,7 +100088,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 28376 + - 10201 - 22005 - uid: 9322 components: @@ -100050,7 +100098,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 28376 + - 10201 - uid: 9324 components: - type: Transform @@ -102277,15 +102325,6 @@ entities: - type: DeviceNetwork deviceLists: - 27296 - - uid: 28375 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - - 22005 - uid: 28904 components: - type: Transform @@ -102359,18 +102398,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-24.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 28376 - uid: 29982 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-24.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 28376 - uid: 29996 components: - type: Transform @@ -103014,7 +103047,7 @@ entities: - type: Transform pos: 2.5,36.5 parent: 12 -- proto: FloraTree04 +- proto: FloraTree entities: - uid: 2748 components: @@ -103028,15 +103061,7 @@ entities: - type: Transform pos: 22,-26 parent: 12 -- proto: FloraTreeLarge01 - entities: - - uid: 16656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.7850382,24.706781 - parent: 12 -- proto: FloraTreeLarge03 +- proto: FloraTreeLarge entities: - uid: 10941 components: @@ -103050,21 +103075,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.469524,-11.638336 parent: 12 -- proto: FloraTreeLarge04 - entities: + - uid: 16654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5758333,29.903433 + parent: 12 - uid: 16655 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.796552,25.585442 parent: 12 -- proto: FloraTreeLarge06 - entities: - - uid: 16654 + - uid: 16656 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5758333,29.903433 + pos: -2.7850382,24.706781 parent: 12 - proto: FloraTreeStump entities: @@ -103889,6 +103916,14 @@ entities: - type: Transform pos: -26.227678,48.56854 parent: 12 +- proto: GameMasterCircuitBoard + entities: + - uid: 28852 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.3420668,-15.542583 + parent: 12 - proto: GasAnalyzer entities: - uid: 5919 @@ -104418,14 +104453,14 @@ entities: pos: 6.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 2733 components: - type: Transform pos: 12.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 2734 components: - type: Transform @@ -104433,7 +104468,7 @@ entities: pos: 12.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 2758 components: - type: Transform @@ -104915,7 +104950,7 @@ entities: pos: 3.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 5427 components: - type: Transform @@ -104971,7 +105006,7 @@ entities: pos: 6.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 6220 components: - type: Transform @@ -107394,6 +107429,41 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasPipeSensor + entities: + - uid: 1502 + components: + - type: MetaData + name: gas pipe sensor (TEG Mix) + - type: Transform + pos: 12.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - type: Label + currentLabel: TEG Mix + - type: NameModifier + baseName: gas pipe sensor +- proto: GasPipeSensorDistribution + entities: + - uid: 1357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorWaste + entities: + - uid: 2417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 18 @@ -108897,7 +108967,7 @@ entities: pos: 11.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 2448 components: - type: Transform @@ -108936,7 +109006,7 @@ entities: pos: 4.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 2677 components: - type: Transform @@ -108952,7 +109022,7 @@ entities: pos: 5.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 2692 components: - type: Transform @@ -109142,7 +109212,7 @@ entities: pos: 10.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 3464 components: - type: Transform @@ -110725,7 +110795,7 @@ entities: pos: 12.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 4390 components: - type: Transform @@ -111536,14 +111606,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,0.5 parent: 12 - - uid: 5020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5031 components: - type: Transform @@ -112109,7 +112171,7 @@ entities: pos: 12.5,4.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 5387 components: - type: Transform @@ -112133,7 +112195,7 @@ entities: pos: 9.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 5399 components: - type: Transform @@ -112165,7 +112227,7 @@ entities: pos: 7.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 5408 components: - type: Transform @@ -112189,7 +112251,7 @@ entities: pos: 6.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 5418 components: - type: Transform @@ -112197,7 +112259,7 @@ entities: pos: 8.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 5422 components: - type: Transform @@ -112313,7 +112375,7 @@ entities: pos: 12.5,1.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 5634 components: - type: Transform @@ -112714,7 +112776,7 @@ entities: pos: 3.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 6854 components: - type: Transform @@ -113528,7 +113590,7 @@ entities: pos: 3.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 7117 components: - type: Transform @@ -113536,7 +113598,7 @@ entities: pos: 3.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 7118 components: - type: Transform @@ -113560,7 +113622,7 @@ entities: pos: 3.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 7137 components: - type: Transform @@ -113616,7 +113678,7 @@ entities: pos: 3.5,12.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 7147 components: - type: Transform @@ -115280,13 +115342,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 8972 - components: - - type: Transform - pos: 12.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 8981 components: - type: Transform @@ -116885,7 +116940,7 @@ entities: pos: 13.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 11344 components: - type: Transform @@ -116971,7 +117026,7 @@ entities: pos: 12.5,3.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 11592 components: - type: Transform @@ -121905,14 +121960,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19831 components: - type: Transform @@ -128739,13 +128786,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28972 - components: - - type: Transform - pos: 37.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29050 components: - type: Transform @@ -134176,7 +134216,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 28376 + - 10201 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5328 @@ -134238,10 +134278,10 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6197 + - uid: 6291 components: - type: Transform - pos: 37.5,2.5 + pos: 37.5,1.5 parent: 12 - type: DeviceNetwork deviceLists: @@ -136217,7 +136257,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 28376 + - 10201 - type: AtmosPipeColor color: '#990000FF' - uid: 5280 @@ -137634,7 +137674,7 @@ entities: pos: 3.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 26045 components: - type: MetaData @@ -137644,7 +137684,7 @@ entities: pos: 14.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 26556 components: - type: Transform @@ -140544,6 +140584,12 @@ entities: - type: Transform pos: -58.5,36.5 parent: 12 + - uid: 9077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 12 - uid: 9200 components: - type: Transform @@ -143658,6 +143704,11 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,42.5 parent: 12 + - uid: 18712 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 12 - uid: 18896 components: - type: Transform @@ -148573,10 +148624,10 @@ entities: parent: 12 - proto: LockerElectricalSuppliesFilled entities: - - uid: 4803 + - uid: 4174 components: - type: Transform - pos: 17.5,-17.5 + pos: 18.5,-17.5 parent: 12 - uid: 5949 components: @@ -149185,10 +149236,10 @@ entities: - type: Transform pos: 47.5,53.5 parent: 12 - - uid: 8968 + - uid: 6196 components: - type: Transform - pos: 16.5,-17.5 + pos: 17.5,-17.5 parent: 12 - uid: 26203 components: @@ -150700,8 +150751,7 @@ entities: - uid: 29744 components: - type: Transform - rot: -12.566370614359172 rad - pos: 16.434547,-15.449873 + pos: 19.76947,-18.21868 parent: 12 - proto: MysteryFigureBox entities: @@ -153179,13 +153229,6 @@ entities: - type: Transform pos: -6.5,71.5 parent: 12 -- proto: PottedPlant14 - entities: - - uid: 5476 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 12 - proto: PottedPlant2 entities: - uid: 4059 @@ -160522,6 +160565,11 @@ entities: - type: Transform pos: -41.5,56.5 parent: 12 + - uid: 79 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 12 - uid: 174 components: - type: Transform @@ -165877,6 +165925,12 @@ entities: - type: Transform pos: -63.5,-20.5 parent: 12 + - uid: 31872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 12 - uid: 32038 components: - type: Transform @@ -166492,7 +166546,7 @@ entities: - uid: 2420 components: - type: Transform - pos: 40.47119,2.4496126 + pos: 40.4387,2.501758 parent: 12 - proto: SheetPlasma1 entities: @@ -166828,6 +166882,11 @@ entities: - type: Transform pos: 13.5,-13.5 parent: 12 + - uid: 5476 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 12 - uid: 8470 components: - type: Transform @@ -167081,6 +167140,11 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-22.5 parent: 12 + - uid: 31873 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 12 - proto: ShuttersWindow entities: - uid: 7800 @@ -167530,6 +167594,8 @@ entities: - Pressed: Toggle 19852: - Pressed: Toggle + 5476: + - Pressed: Toggle - uid: 22062 components: - type: Transform @@ -167544,6 +167610,8 @@ entities: - Pressed: Toggle 9613: - Pressed: Toggle + 31873: + - Pressed: Toggle - uid: 23446 components: - type: Transform @@ -168207,12 +168275,6 @@ entities: parent: 12 - proto: SignEngine entities: - - uid: 18712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-14.5 - parent: 12 - uid: 27242 components: - type: Transform @@ -168842,13 +168904,50 @@ entities: - type: Transform pos: -34.5,-45.5 parent: 12 -- proto: SMESBasic +- proto: SMESAdvanced entities: - - uid: 1502 + - uid: 2682 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 12 + - uid: 4521 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 12 + - uid: 4522 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 12 + - uid: 4667 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 12 + - uid: 5020 components: - type: Transform pos: 13.5,-17.5 parent: 12 + - uid: 8972 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 12 + - uid: 25094 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 12 + - uid: 25567 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 12 +- proto: SMESBasic + entities: - uid: 2127 components: - type: Transform @@ -168859,16 +168958,6 @@ entities: - type: Transform pos: 2.5,-5.5 parent: 12 - - uid: 4521 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 12 - - uid: 4522 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 12 - uid: 7889 components: - type: Transform @@ -168894,21 +168983,6 @@ entities: - type: Transform pos: 38.5,-6.5 parent: 12 - - uid: 26871 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 12 - - uid: 26872 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 12 - - uid: 26873 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 12 - uid: 27222 components: - type: Transform @@ -173436,17 +173510,6 @@ entities: id: AI core power room - proto: SurveillanceCameraEngineering entities: - - uid: 4667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos lockers/engi hallway - uid: 7716 components: - type: Transform @@ -173575,16 +173638,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: TEG East - - uid: 26646 - components: - - type: Transform - pos: 39.5,-2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME hallway - uid: 27001 components: - type: Transform @@ -173757,17 +173810,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Tesla control - - uid: 31882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME - proto: SurveillanceCameraGeneral entities: - uid: 3 @@ -175552,11 +175594,6 @@ entities: - type: Transform pos: 8.5,-11.5 parent: 12 - - uid: 4913 - components: - - type: Transform - pos: 16.5,-15.5 - parent: 12 - uid: 4935 components: - type: Transform @@ -177093,12 +177130,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,76.5 parent: 12 - - uid: 29967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 12 - uid: 29968 components: - type: Transform @@ -182406,6 +182437,12 @@ entities: - type: Transform pos: 25.5,-11.5 parent: 12 + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 12 - uid: 1501 components: - type: Transform @@ -182893,11 +182930,6 @@ entities: - type: Transform pos: 10.5,-12.5 parent: 12 - - uid: 4538 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 12 - uid: 4573 components: - type: Transform @@ -183031,6 +183063,12 @@ entities: - type: Transform pos: 26.5,-3.5 parent: 12 + - uid: 4913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 12 - uid: 4930 components: - type: Transform @@ -183642,12 +183680,6 @@ entities: - type: Transform pos: 26.5,-0.5 parent: 12 - - uid: 6773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 12 - uid: 6889 components: - type: Transform @@ -184369,6 +184401,12 @@ entities: - type: Transform pos: 31.5,1.5 parent: 12 + - uid: 8968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 12 - uid: 8979 components: - type: Transform @@ -184427,11 +184465,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-17.5 parent: 12 - - uid: 9077 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 12 - uid: 9083 components: - type: Transform @@ -188662,12 +188695,6 @@ entities: - type: Transform pos: 63.5,7.5 parent: 12 - - uid: 25094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-18.5 - parent: 12 - uid: 25095 components: - type: Transform @@ -192649,12 +192676,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-36.5 parent: 12 - - uid: 4174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-14.5 - parent: 12 - uid: 4177 components: - type: Transform @@ -201510,8 +201531,7 @@ entities: - uid: 9394 components: - type: Transform - rot: -25.132741228718352 rad - pos: 17.416166,-13.405632 + pos: 8.648524,-10.372427 parent: 12 - uid: 10394 components: From 1c0db473bcd767be1c1d6abad0e16c289625f5a8 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Wed, 18 Dec 2024 03:09:50 -0800 Subject: [PATCH 132/263] Fland Power Rebalance + Gas Pipe Sensors (#33933) fix fland power --- Resources/Maps/fland.yml | 10252 +++++++++++++++++++------------------ 1 file changed, 5191 insertions(+), 5061 deletions(-) diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index b6ccea0986..b5fc20c1ff 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -404,7 +404,7 @@ entities: version: 6 5,-1: ind: 5,-1 - tiles: fgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABbAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADbAAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAACbAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAVgAAAAAAHwAAAAACVgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + tiles: fgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABbAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADbAAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAACbAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAVgAAAAAAHwAAAAACVgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA version: 6 6,-4: ind: 6,-4 @@ -464,7 +464,7 @@ entities: version: 6 5,0: ind: 5,0 - tiles: XQAAAAACXQAAAAACXQAAAAADXQAAAAAAbAAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAKAAAAAABKAAAAAACKAAAAAABKAAAAAADKAAAAAACUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAKAAAAAADKAAAAAAAKAAAAAACKAAAAAADKAAAAAACUQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAALwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAAAegAAAAACegAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAACLwAAAAABLwAAAAADegAAAAABegAAAAACbAAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABbQAAAAAALwAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAACLwAAAAABegAAAAAAegAAAAABbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAA + tiles: XQAAAAACXQAAAAACXQAAAAADXQAAAAAAbAAAAAAAHwAAAAADfgAAAAAAHwAAAAAAbAAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAbAAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAALwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAAAegAAAAACegAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAACLwAAAAABLwAAAAADegAAAAABegAAAAACbAAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABbQAAAAAALwAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAACLwAAAAABegAAAAAAegAAAAABbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAA version: 6 7,1: ind: 7,1 @@ -1018,12 +1018,6 @@ entities: 5414: 85,-20 5415: 83,-20 5418: 64,-22 - 5746: 90,1 - 5750: 92,1 - 5751: 94,1 - 5763: 85,5 - 5764: 84,5 - 5765: 83,5 5788: 94,-23 5789: 93,-23 5790: 92,-23 @@ -1180,13 +1174,19 @@ entities: 4654: 42,-35 4655: 44,-39 4656: 42,-39 - 5747: 90,2 5748: 93,2 5753: 93,-17 7150: 107,14 7151: 106,14 7152: 106,16 7153: 107,16 + 8755: 90,7 + 8764: 91,0 + 8765: 92,0 + 8766: 93,0 + 8767: 93,2 + 8768: 92,2 + 8769: 91,2 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -2791,9 +2791,6 @@ entities: 5757: 88,5 5758: 87,5 5759: 86,5 - 5760: 83,5 - 5761: 84,5 - 5762: 85,5 - node: color: '#FF669896' id: BrickTileWhiteLineS @@ -3217,6 +3214,18 @@ entities: 6489: 92.088936,42.050976 6490: 85.91706,42.019726 6539: 68.94312,49.02918 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 8757: 90,1 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 8758: 94,1 - node: color: '#334E6DC8' id: CheckerNESW @@ -5502,8 +5511,6 @@ entities: 7810: 80,0 7811: 82,0 7812: 83,-1 - 7813: 86,-2 - 7814: 86,-1 7815: 85,-1 7816: 79,-9 7817: 78,-9 @@ -9496,6 +9503,12 @@ entities: 5495: 37,-1 5496: 38,-1 5497: 39,-1 + - node: + color: '#EFB3412D' + id: QuarterTileOverlayGreyscale90 + decals: + 8752: 95,2 + 8753: 95,1 - node: color: '#EFB34147' id: QuarterTileOverlayGreyscale90 @@ -9553,9 +9566,6 @@ entities: 4849: 93,3 4850: 95,3 4851: 94,3 - 4852: 95,2 - 4853: 95,1 - 4854: 95,0 4855: 95,-1 4856: 95,-13 4857: 95,-12 @@ -10239,11 +10249,12 @@ entities: 5245: 93,-8 5483: 77,-9 5709: 93,-11 - 5744: 86,-2 6391: 120,46 6405: 125,52 8598: -39,-25 8644: 97,-38 + 8749: 90,-1 + 8763: 95,-1 - node: color: '#EFC541FF' id: WarnCornerSmallNW @@ -10270,6 +10281,7 @@ entities: 8435: 99,32 8597: -37,-25 8643: 101,-38 + 8750: 94,-1 - node: cleanable: True color: '#FFFFFFFF' @@ -10295,11 +10307,12 @@ entities: 5150: 118,-23 5243: 93,-4 5707: 93,-1 - 5745: 86,3 6389: 120,52 6406: 125,46 8600: -39,-7 8642: 97,-36 + 8748: 90,3 + 8762: 95,1 - node: cleanable: True color: '#FFFFFFFF' @@ -10333,6 +10346,7 @@ entities: 6407: 120,46 8599: -37,-7 8641: 101,-36 + 8747: 94,3 - node: cleanable: True color: '#FFFFFFFF' @@ -10569,10 +10583,6 @@ entities: 5235: 93,-7 5236: 93,-6 5237: 93,-5 - 5740: 86,-1 - 5741: 86,0 - 5742: 86,1 - 5743: 86,2 5904: 84,32 5905: 91,32 5906: 94,35 @@ -10621,6 +10631,10 @@ entities: 8433: 92,30 8434: 92,31 8639: 97,-37 + 8744: 90,2 + 8745: 90,1 + 8746: 90,0 + 8761: 95,0 - node: cleanable: True color: '#FFFFFFFF' @@ -11191,6 +11205,9 @@ entities: 8636: 100,-36 8637: 99,-36 8638: 98,-36 + 8735: 91,3 + 8736: 92,3 + 8737: 93,3 - node: cleanable: True color: '#FFFFFFFF' @@ -11396,6 +11413,9 @@ entities: 8431: 99,31 8432: 99,33 8640: 101,-37 + 8738: 94,2 + 8739: 94,1 + 8751: 94,0 - node: cleanable: True color: '#FFFFFFFF' @@ -11562,7 +11582,6 @@ entities: 5481: 79,-9 5482: 78,-9 5704: 94,-11 - 5739: 87,-2 5957: 56,25 5958: 55,25 5959: 54,25 @@ -11612,6 +11631,9 @@ entities: 8633: 98,-38 8634: 99,-38 8635: 100,-38 + 8741: 91,-1 + 8742: 92,-1 + 8743: 93,-1 - node: cleanable: True color: '#FFFFFFFF' @@ -17002,6 +17024,8 @@ entities: - 25458 - 25459 - 25877 + - 22720 + - 22730 - uid: 25927 components: - type: Transform @@ -18281,6 +18305,18 @@ entities: rot: 1.5707963267948966 rad pos: 97.5,-32.5 parent: 13329 + - uid: 22715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,1.5 + parent: 13329 + - uid: 22719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,0.5 + parent: 13329 - uid: 25469 components: - type: Transform @@ -21480,17 +21516,22 @@ entities: parent: 13329 - proto: AmeController entities: - - uid: 23456 + - uid: 35827 components: - type: Transform - pos: 86.5,5.5 + pos: 91.5,5.5 parent: 13329 - proto: AmeJar entities: + - uid: 23724 + components: + - type: Transform + pos: 91.72345,8.519444 + parent: 13329 - uid: 27877 components: - type: Transform - pos: 84.584206,5.5199265 + pos: 91.332825,8.550694 parent: 13329 - proto: AnomalyScanner entities: @@ -38061,6 +38102,16 @@ entities: - type: Transform pos: 19.5,-20.5 parent: 13329 + - uid: 11859 + components: + - type: Transform + pos: 94.5,-0.5 + parent: 13329 + - uid: 11862 + components: + - type: Transform + pos: 92.5,-0.5 + parent: 13329 - uid: 11892 components: - type: Transform @@ -46669,17 +46720,12 @@ entities: - uid: 25711 components: - type: Transform - pos: 91.5,0.5 + pos: 91.5,-0.5 parent: 13329 - uid: 25712 components: - type: Transform - pos: 92.5,0.5 - parent: 13329 - - uid: 25713 - components: - - type: Transform - pos: 93.5,0.5 + pos: 93.5,-0.5 parent: 13329 - uid: 25714 components: @@ -60527,20 +60573,15 @@ entities: - type: Transform pos: 43.5,-1.5 parent: 13329 - - uid: 20242 - components: - - type: Transform - pos: 88.5,2.5 - parent: 13329 - uid: 20333 components: - type: Transform - pos: 87.5,1.5 + pos: 91.5,0.5 parent: 13329 - uid: 20334 components: - type: Transform - pos: 87.5,0.5 + pos: 91.5,2.5 parent: 13329 - uid: 20478 components: @@ -62477,20 +62518,15 @@ entities: - type: Transform pos: 68.5,-0.5 parent: 13329 - - uid: 22714 + - uid: 22725 components: - type: Transform - pos: 88.5,-0.5 + pos: 91.5,1.5 parent: 13329 - - uid: 22724 + - uid: 22728 components: - type: Transform - pos: 88.5,0.5 - parent: 13329 - - uid: 22730 - components: - - type: Transform - pos: 89.5,0.5 + pos: 95.5,1.5 parent: 13329 - uid: 22732 components: @@ -62502,6 +62538,11 @@ entities: - type: Transform pos: 83.5,0.5 parent: 13329 + - uid: 22736 + components: + - type: Transform + pos: 92.5,1.5 + parent: 13329 - uid: 22737 components: - type: Transform @@ -62520,22 +62561,17 @@ entities: - uid: 22775 components: - type: Transform - pos: 90.5,-0.5 + pos: 93.5,0.5 parent: 13329 - uid: 22776 components: - type: Transform - pos: 90.5,0.5 + pos: 93.5,-0.5 parent: 13329 - uid: 22777 components: - type: Transform - pos: 90.5,1.5 - parent: 13329 - - uid: 22778 - components: - - type: Transform - pos: 90.5,2.5 + pos: 92.5,2.5 parent: 13329 - uid: 22802 components: @@ -63727,16 +63763,6 @@ entities: - type: Transform pos: 97.5,1.5 parent: 13329 - - uid: 23265 - components: - - type: Transform - pos: 94.5,0.5 - parent: 13329 - - uid: 23275 - components: - - type: Transform - pos: 93.5,0.5 - parent: 13329 - uid: 23281 components: - type: Transform @@ -63757,15 +63783,30 @@ entities: - type: Transform pos: 99.5,-0.5 parent: 13329 - - uid: 23300 + - uid: 23302 components: - type: Transform - pos: 92.5,0.5 + pos: 86.5,0.5 parent: 13329 - - uid: 23301 + - uid: 23303 components: - type: Transform - pos: 91.5,0.5 + pos: 87.5,0.5 + parent: 13329 + - uid: 23304 + components: + - type: Transform + pos: 88.5,0.5 + parent: 13329 + - uid: 23305 + components: + - type: Transform + pos: 91.5,3.5 + parent: 13329 + - uid: 23306 + components: + - type: Transform + pos: 89.5,3.5 parent: 13329 - uid: 23418 components: @@ -63942,20 +63983,30 @@ entities: - type: Transform pos: 80.5,-5.5 parent: 13329 + - uid: 23455 + components: + - type: Transform + pos: 89.5,1.5 + parent: 13329 + - uid: 23456 + components: + - type: Transform + pos: 89.5,2.5 + parent: 13329 - uid: 23467 components: - type: Transform - pos: 87.5,-0.5 + pos: 89.5,0.5 parent: 13329 - uid: 23468 components: - type: Transform - pos: 87.5,2.5 + pos: 93.5,3.5 parent: 13329 - uid: 23469 components: - type: Transform - pos: 88.5,1.5 + pos: 92.5,-0.5 parent: 13329 - uid: 23591 components: @@ -64037,6 +64088,16 @@ entities: - type: Transform pos: 97.5,-45.5 parent: 13329 + - uid: 23756 + components: + - type: Transform + pos: 91.5,-0.5 + parent: 13329 + - uid: 23821 + components: + - type: Transform + pos: 94.5,1.5 + parent: 13329 - uid: 23888 components: - type: Transform @@ -64917,10 +64978,20 @@ entities: - type: Transform pos: -32.5,46.5 parent: 13329 + - uid: 25544 + components: + - type: Transform + pos: 89.5,-0.5 + parent: 13329 + - uid: 25545 + components: + - type: Transform + pos: 90.5,-0.5 + parent: 13329 - uid: 25546 components: - type: Transform - pos: 86.5,0.5 + pos: 92.5,3.5 parent: 13329 - uid: 25547 components: @@ -64937,6 +65008,16 @@ entities: - type: Transform pos: 87.5,3.5 parent: 13329 + - uid: 25874 + components: + - type: Transform + pos: 93.5,1.5 + parent: 13329 + - uid: 26126 + components: + - type: Transform + pos: 92.5,0.5 + parent: 13329 - uid: 26228 components: - type: Transform @@ -64947,25 +65028,25 @@ entities: - type: Transform pos: 86.5,-11.5 parent: 13329 - - uid: 26678 + - uid: 26239 components: - type: Transform - pos: 91.5,1.5 + pos: 93.5,2.5 parent: 13329 - - uid: 26679 + - uid: 26673 components: - type: Transform - pos: 92.5,1.5 + pos: 86.5,2.5 parent: 13329 - - uid: 26680 + - uid: 26674 components: - type: Transform - pos: 93.5,1.5 + pos: 86.5,1.5 parent: 13329 - - uid: 26681 + - uid: 26675 components: - type: Transform - pos: 94.5,1.5 + pos: 86.5,-0.5 parent: 13329 - uid: 26723 components: @@ -68352,6 +68433,11 @@ entities: - type: Transform pos: 109.5,42.5 parent: 13329 + - uid: 35839 + components: + - type: Transform + pos: 86.5,3.5 + parent: 13329 - proto: CableHVStack entities: - uid: 26657 @@ -76041,20 +76127,15 @@ entities: - type: Transform pos: 94.5,0.5 parent: 13329 - - uid: 25988 - components: - - type: Transform - pos: 93.5,0.5 - parent: 13329 - - uid: 25989 - components: - - type: Transform - pos: 92.5,0.5 - parent: 13329 - uid: 25990 components: - type: Transform - pos: 91.5,0.5 + pos: 92.5,-0.5 + parent: 13329 + - uid: 26681 + components: + - type: Transform + pos: 86.5,2.5 parent: 13329 - uid: 26789 components: @@ -78711,6 +78792,66 @@ entities: - type: Transform pos: 126.5,49.5 parent: 13329 + - uid: 35822 + components: + - type: Transform + pos: 86.5,1.5 + parent: 13329 + - uid: 35823 + components: + - type: Transform + pos: 86.5,0.5 + parent: 13329 + - uid: 35824 + components: + - type: Transform + pos: 86.5,-0.5 + parent: 13329 + - uid: 35829 + components: + - type: Transform + pos: 91.5,-0.5 + parent: 13329 + - uid: 35830 + components: + - type: Transform + pos: 87.5,0.5 + parent: 13329 + - uid: 35831 + components: + - type: Transform + pos: 88.5,0.5 + parent: 13329 + - uid: 35833 + components: + - type: Transform + pos: 89.5,0.5 + parent: 13329 + - uid: 35834 + components: + - type: Transform + pos: 91.5,3.5 + parent: 13329 + - uid: 35835 + components: + - type: Transform + pos: 92.5,3.5 + parent: 13329 + - uid: 35836 + components: + - type: Transform + pos: 93.5,3.5 + parent: 13329 + - uid: 35837 + components: + - type: Transform + pos: 94.5,3.5 + parent: 13329 + - uid: 35838 + components: + - type: Transform + pos: 93.5,-0.5 + parent: 13329 - proto: CableMVStack entities: - uid: 26655 @@ -78743,6 +78884,16 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,2.5 parent: 13329 + - uid: 20233 + components: + - type: Transform + pos: 91.5,1.5 + parent: 13329 + - uid: 20242 + components: + - type: Transform + pos: 92.5,1.5 + parent: 13329 - uid: 22199 components: - type: Transform @@ -78755,29 +78906,28 @@ entities: rot: 3.141592653589793 rad pos: 114.5,31.5 parent: 13329 - - uid: 22715 + - uid: 22723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,2.5 + pos: 93.5,1.5 parent: 13329 - - uid: 22717 + - uid: 22724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,0.5 + rot: 3.141592653589793 rad + pos: 91.5,1.5 parent: 13329 - - uid: 22728 + - uid: 22726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-0.5 + rot: 3.141592653589793 rad + pos: 92.5,1.5 parent: 13329 - - uid: 22731 + - uid: 22778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,1.5 + rot: 3.141592653589793 rad + pos: 93.5,1.5 parent: 13329 - uid: 23131 components: @@ -85652,30 +85802,23 @@ entities: - type: Transform pos: 116.5,-12.5 parent: 13329 - - uid: 23302 + - uid: 23265 components: - type: Transform - pos: 94.5,0.5 + rot: 3.141592653589793 rad + pos: 91.5,1.5 parent: 13329 - - uid: 23303 + - uid: 23275 components: - type: Transform - pos: 93.5,0.5 + rot: 3.141592653589793 rad + pos: 92.5,1.5 parent: 13329 - - uid: 23304 + - uid: 23300 components: - type: Transform - pos: 92.5,0.5 - parent: 13329 - - uid: 23305 - components: - - type: Transform - pos: 91.5,0.5 - parent: 13329 - - uid: 23306 - components: - - type: Transform - pos: 90.5,0.5 + rot: 3.141592653589793 rad + pos: 93.5,1.5 parent: 13329 - uid: 23307 components: @@ -86382,25 +86525,25 @@ entities: - type: Transform pos: 67.5,-29.5 parent: 13329 - - uid: 26673 - components: - - type: Transform - pos: 87.5,-0.5 - parent: 13329 - - uid: 26674 - components: - - type: Transform - pos: 87.5,0.5 - parent: 13329 - - uid: 26675 - components: - - type: Transform - pos: 87.5,1.5 - parent: 13329 - uid: 26676 components: - type: Transform - pos: 87.5,2.5 + pos: 86.5,0.5 + parent: 13329 + - uid: 26678 + components: + - type: Transform + pos: 86.5,-0.5 + parent: 13329 + - uid: 26679 + components: + - type: Transform + pos: 86.5,2.5 + parent: 13329 + - uid: 26680 + components: + - type: Transform + pos: 86.5,1.5 parent: 13329 - uid: 26752 components: @@ -96805,11 +96948,6 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,-15.5 parent: 13329 - - uid: 26126 - components: - - type: Transform - pos: 74.5,-23.5 - parent: 13329 - uid: 26127 components: - type: Transform @@ -96863,6 +97001,19 @@ entities: - type: Transform pos: 76.5,57.5 parent: 13329 +- proto: ComputerAtmosMonitoring + entities: + - uid: 17626 + components: + - type: Transform + pos: 74.5,-23.5 + parent: 13329 + - uid: 27878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-12.5 + parent: 13329 - proto: computerBodyScanner entities: - uid: 13336 @@ -98149,29 +98300,16 @@ entities: - 0 - proto: CrateEngineeringAMEShielding entities: - - uid: 23455 + - uid: 25989 components: - type: Transform - pos: 85.5,5.5 + pos: 89.5,5.5 + parent: 13329 + - uid: 35832 + components: + - type: Transform + pos: 88.5,5.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEngineeringCableBulk entities: - uid: 26562 @@ -110612,13 +110750,6 @@ entities: - type: Transform pos: 21.596437,36.347313 parent: 13329 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 35741 - components: - - type: Transform - pos: 109.38693,52.710564 - parent: 13329 - proto: EmergencyLight entities: - uid: 11013 @@ -112639,6 +112770,8 @@ entities: - 23463 - 23462 - 25938 + - 22720 + - 22730 - uid: 25928 components: - type: Transform @@ -114657,6 +114790,26 @@ entities: - type: Transform pos: 94.5,35.5 parent: 13329 + - uid: 22720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,0.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 25925 + - 25926 + - uid: 22730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,1.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 25925 + - 25926 - uid: 22740 components: - type: Transform @@ -115955,7 +116108,7 @@ entities: - type: Transform pos: 72.5,9.5 parent: 13329 -- proto: FloraRockSolid01 +- proto: FloraRockSolid entities: - uid: 3696 components: @@ -115987,49 +116140,43 @@ entities: - type: Transform pos: -49.556454,-54.417187 parent: 13329 - - uid: 33676 - components: - - type: Transform - pos: 44.49005,58.51424 - parent: 13329 - - uid: 34462 - components: - - type: Transform - pos: 81.58648,-54.126415 - parent: 13329 -- proto: FloraRockSolid02 - entities: - - uid: 34461 - components: - - type: Transform - pos: 72.133354,-56.970165 - parent: 13329 -- proto: FloraRockSolid03 - entities: - uid: 33675 components: - type: Transform pos: 47.55255,49.48299 parent: 13329 + - uid: 33676 + components: + - type: Transform + pos: 44.49005,58.51424 + parent: 13329 - uid: 34460 components: - type: Transform pos: 84.508354,-58.45454 parent: 13329 -- proto: FloraTree02 - entities: - - uid: 34592 + - uid: 34461 components: - type: Transform - pos: 90.28094,-53.392754 + pos: 72.133354,-56.970165 parent: 13329 -- proto: FloraTree03 + - uid: 34462 + components: + - type: Transform + pos: 81.58648,-54.126415 + parent: 13329 +- proto: FloraTree entities: - uid: 6301 components: - type: Transform pos: -34.318974,55.41485 parent: 13329 + - uid: 34592 + components: + - type: Transform + pos: 90.28094,-53.392754 + parent: 13329 - proto: FoamCrossbow entities: - uid: 1357 @@ -116448,6 +116595,13 @@ entities: - type: Transform pos: -6.0250926,40.639038 parent: 13329 +- proto: GameMasterCircuitBoard + entities: + - uid: 35741 + components: + - type: Transform + pos: 109.38693,52.710564 + parent: 13329 - proto: GasAnalyzer entities: - uid: 27891 @@ -116481,7 +116635,7 @@ entities: pos: 28.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 19788 components: - type: Transform @@ -116731,7 +116885,7 @@ entities: pos: -10.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 356 components: - type: Transform @@ -116739,7 +116893,7 @@ entities: pos: 0.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 357 components: - type: Transform @@ -116747,14 +116901,14 @@ entities: pos: -3.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 358 components: - type: Transform pos: -3.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 372 components: - type: Transform @@ -116762,7 +116916,7 @@ entities: pos: -14.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 373 components: - type: Transform @@ -116770,7 +116924,7 @@ entities: pos: -10.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 379 components: - type: Transform @@ -116778,7 +116932,7 @@ entities: pos: -11.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 386 components: - type: Transform @@ -116786,7 +116940,7 @@ entities: pos: -16.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 417 components: - type: Transform @@ -116794,14 +116948,14 @@ entities: pos: -11.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 418 components: - type: Transform pos: -11.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 442 components: - type: Transform @@ -116809,7 +116963,7 @@ entities: pos: -19.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 443 components: - type: Transform @@ -116817,7 +116971,7 @@ entities: pos: -19.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 449 components: - type: Transform @@ -116825,21 +116979,21 @@ entities: pos: -20.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 454 components: - type: Transform pos: -18.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 535 components: - type: Transform pos: -15.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 536 components: - type: Transform @@ -116847,7 +117001,7 @@ entities: pos: -16.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 546 components: - type: Transform @@ -116855,14 +117009,14 @@ entities: pos: -8.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 551 components: - type: Transform pos: -4.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 560 components: - type: Transform @@ -116870,7 +117024,7 @@ entities: pos: -16.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 566 components: - type: Transform @@ -116878,7 +117032,7 @@ entities: pos: -16.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 570 components: - type: Transform @@ -116886,14 +117040,14 @@ entities: pos: -15.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 574 components: - type: Transform pos: -8.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 590 components: - type: Transform @@ -116901,7 +117055,7 @@ entities: pos: -10.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 601 components: - type: Transform @@ -116909,14 +117063,14 @@ entities: pos: -11.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 618 components: - type: Transform pos: -17.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 619 components: - type: Transform @@ -116924,7 +117078,7 @@ entities: pos: -17.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 622 components: - type: Transform @@ -116932,14 +117086,14 @@ entities: pos: -13.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1515 components: - type: Transform pos: 3.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1524 components: - type: Transform @@ -116947,7 +117101,7 @@ entities: pos: -6.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2132 components: - type: Transform @@ -116955,7 +117109,7 @@ entities: pos: -7.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2133 components: - type: Transform @@ -116963,7 +117117,7 @@ entities: pos: -7.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2134 components: - type: Transform @@ -116971,14 +117125,14 @@ entities: pos: -11.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2135 components: - type: Transform pos: -11.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2136 components: - type: Transform @@ -116986,7 +117140,7 @@ entities: pos: -13.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2138 components: - type: Transform @@ -116994,7 +117148,7 @@ entities: pos: -13.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2304 components: - type: Transform @@ -117002,7 +117156,7 @@ entities: pos: -15.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2305 components: - type: Transform @@ -117010,7 +117164,7 @@ entities: pos: -15.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2306 components: - type: Transform @@ -117018,7 +117172,7 @@ entities: pos: -18.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2543 components: - type: Transform @@ -117026,21 +117180,21 @@ entities: pos: -17.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4061 components: - type: Transform pos: 0.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4062 components: - type: Transform pos: -1.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4351 components: - type: Transform @@ -117048,7 +117202,7 @@ entities: pos: -36.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4352 components: - type: Transform @@ -117056,21 +117210,21 @@ entities: pos: -37.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4353 components: - type: Transform pos: -28.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4354 components: - type: Transform pos: -27.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4355 components: - type: Transform @@ -117078,7 +117232,7 @@ entities: pos: -28.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4356 components: - type: Transform @@ -117086,7 +117240,7 @@ entities: pos: -36.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4357 components: - type: Transform @@ -117094,7 +117248,7 @@ entities: pos: -37.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4453 components: - type: Transform @@ -117102,7 +117256,7 @@ entities: pos: -21.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4455 components: - type: Transform @@ -117110,7 +117264,7 @@ entities: pos: -21.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4456 components: - type: Transform @@ -117118,7 +117272,7 @@ entities: pos: -19.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4696 components: - type: Transform @@ -117131,7 +117285,7 @@ entities: pos: -21.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5504 components: - type: Transform @@ -117139,7 +117293,7 @@ entities: pos: -24.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5523 components: - type: Transform @@ -117147,14 +117301,14 @@ entities: pos: -24.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5526 components: - type: Transform pos: -32.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5527 components: - type: Transform @@ -117162,7 +117316,7 @@ entities: pos: -37.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5528 components: - type: Transform @@ -117170,21 +117324,21 @@ entities: pos: -37.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5534 components: - type: Transform pos: -31.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5551 components: - type: Transform pos: -24.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5553 components: - type: Transform @@ -117192,7 +117346,7 @@ entities: pos: -24.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5572 components: - type: Transform @@ -117200,7 +117354,7 @@ entities: pos: -33.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5573 components: - type: Transform @@ -117208,7 +117362,7 @@ entities: pos: -30.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5621 components: - type: Transform @@ -117216,7 +117370,7 @@ entities: pos: -28.5,73.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5623 components: - type: Transform @@ -117224,14 +117378,14 @@ entities: pos: -28.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5624 components: - type: Transform pos: -25.5,73.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5645 components: - type: Transform @@ -117239,7 +117393,7 @@ entities: pos: -22.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5661 components: - type: Transform @@ -117247,7 +117401,7 @@ entities: pos: -9.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5662 components: - type: Transform @@ -117255,7 +117409,7 @@ entities: pos: -10.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5663 components: - type: Transform @@ -117263,21 +117417,21 @@ entities: pos: -8.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5664 components: - type: Transform pos: -7.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5677 components: - type: Transform pos: -13.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5678 components: - type: Transform @@ -117285,14 +117439,14 @@ entities: pos: -16.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5683 components: - type: Transform pos: -16.5,70.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5688 components: - type: Transform @@ -117300,14 +117454,14 @@ entities: pos: -17.5,70.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5703 components: - type: Transform pos: -11.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5706 components: - type: Transform @@ -117315,14 +117469,14 @@ entities: pos: -20.5,70.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5710 components: - type: Transform pos: -20.5,67.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5711 components: - type: Transform @@ -117330,14 +117484,14 @@ entities: pos: -20.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5712 components: - type: Transform pos: -17.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5713 components: - type: Transform @@ -117345,7 +117499,7 @@ entities: pos: -17.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5749 components: - type: Transform @@ -117353,7 +117507,7 @@ entities: pos: -11.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5750 components: - type: Transform @@ -117361,7 +117515,7 @@ entities: pos: -9.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5751 components: - type: Transform @@ -117369,7 +117523,7 @@ entities: pos: -9.5,68.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5752 components: - type: Transform @@ -117377,21 +117531,21 @@ entities: pos: -7.5,68.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6903 components: - type: Transform pos: 5.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8029 components: - type: Transform pos: 18.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8030 components: - type: Transform @@ -117399,7 +117553,7 @@ entities: pos: 9.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8106 components: - type: Transform @@ -117407,7 +117561,7 @@ entities: pos: 43.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8135 components: - type: Transform @@ -117415,7 +117569,7 @@ entities: pos: 43.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8142 components: - type: Transform @@ -117423,21 +117577,21 @@ entities: pos: 42.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8145 components: - type: Transform pos: 50.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8168 components: - type: Transform pos: 44.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8169 components: - type: Transform @@ -117445,7 +117599,7 @@ entities: pos: 47.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8207 components: - type: Transform @@ -117453,7 +117607,7 @@ entities: pos: 55.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8410 components: - type: Transform @@ -117461,28 +117615,28 @@ entities: pos: 50.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8440 components: - type: Transform pos: 35.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8450 components: - type: Transform pos: 36.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8482 components: - type: Transform pos: 30.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8534 components: - type: Transform @@ -117490,7 +117644,7 @@ entities: pos: 35.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8543 components: - type: Transform @@ -117498,7 +117652,7 @@ entities: pos: 31.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8564 components: - type: Transform @@ -117506,7 +117660,7 @@ entities: pos: 18.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8573 components: - type: Transform @@ -117514,7 +117668,7 @@ entities: pos: 19.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8588 components: - type: Transform @@ -117522,14 +117676,14 @@ entities: pos: 20.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9262 components: - type: Transform pos: 9.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9263 components: - type: Transform @@ -117537,14 +117691,14 @@ entities: pos: 9.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9264 components: - type: Transform pos: 16.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9292 components: - type: Transform @@ -117552,7 +117706,7 @@ entities: pos: 14.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9293 components: - type: Transform @@ -117560,14 +117714,14 @@ entities: pos: 14.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9299 components: - type: Transform pos: 8.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9300 components: - type: Transform @@ -117575,14 +117729,14 @@ entities: pos: 8.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9317 components: - type: Transform pos: 11.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9318 components: - type: Transform @@ -117590,7 +117744,7 @@ entities: pos: 11.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9319 components: - type: Transform @@ -117598,7 +117752,7 @@ entities: pos: 13.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9320 components: - type: Transform @@ -117606,21 +117760,21 @@ entities: pos: 10.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9321 components: - type: Transform pos: 13.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9871 components: - type: Transform pos: 16.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9901 components: - type: Transform @@ -117628,14 +117782,14 @@ entities: pos: 5.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9902 components: - type: Transform pos: 6.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9903 components: - type: Transform @@ -117643,7 +117797,7 @@ entities: pos: -5.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9924 components: - type: Transform @@ -117651,7 +117805,7 @@ entities: pos: -3.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9945 components: - type: Transform @@ -117659,7 +117813,7 @@ entities: pos: -2.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9946 components: - type: Transform @@ -117667,7 +117821,7 @@ entities: pos: -2.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11042 components: - type: Transform @@ -117675,7 +117829,7 @@ entities: pos: 8.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11043 components: - type: Transform @@ -117683,7 +117837,7 @@ entities: pos: 6.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11049 components: - type: Transform @@ -117691,14 +117845,14 @@ entities: pos: 10.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11054 components: - type: Transform pos: 14.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11055 components: - type: Transform @@ -117706,7 +117860,7 @@ entities: pos: 14.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11086 components: - type: Transform @@ -117714,7 +117868,7 @@ entities: pos: 11.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11088 components: - type: Transform @@ -117722,7 +117876,7 @@ entities: pos: 13.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11103 components: - type: Transform @@ -117730,7 +117884,7 @@ entities: pos: 18.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11107 components: - type: Transform @@ -117738,14 +117892,14 @@ entities: pos: 16.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11112 components: - type: Transform pos: 20.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11119 components: - type: Transform @@ -117753,7 +117907,7 @@ entities: pos: 18.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11120 components: - type: Transform @@ -117761,14 +117915,14 @@ entities: pos: 20.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11138 components: - type: Transform pos: 39.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11143 components: - type: Transform @@ -117776,14 +117930,14 @@ entities: pos: 25.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11144 components: - type: Transform pos: 37.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11231 components: - type: Transform @@ -117791,7 +117945,7 @@ entities: pos: 16.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12670 components: - type: Transform @@ -117799,7 +117953,7 @@ entities: pos: -40.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12671 components: - type: Transform @@ -117807,7 +117961,7 @@ entities: pos: -38.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12717 components: - type: Transform @@ -117815,7 +117969,7 @@ entities: pos: -38.5,-59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12718 components: - type: Transform @@ -117823,7 +117977,7 @@ entities: pos: -40.5,-60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13471 components: - type: Transform @@ -117831,7 +117985,7 @@ entities: pos: 22.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13557 components: - type: Transform @@ -117839,7 +117993,7 @@ entities: pos: -33.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13558 components: - type: Transform @@ -117847,7 +118001,7 @@ entities: pos: -35.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14123 components: - type: Transform @@ -117855,7 +118009,7 @@ entities: pos: 50.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14126 components: - type: Transform @@ -117863,7 +118017,7 @@ entities: pos: 52.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14255 components: - type: Transform @@ -117871,7 +118025,7 @@ entities: pos: 45.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14280 components: - type: Transform @@ -117879,14 +118033,14 @@ entities: pos: 49.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14305 components: - type: Transform pos: 43.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14307 components: - type: Transform @@ -117894,7 +118048,7 @@ entities: pos: 42.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14332 components: - type: Transform @@ -117902,7 +118056,7 @@ entities: pos: 45.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14346 components: - type: Transform @@ -117910,7 +118064,7 @@ entities: pos: 39.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14491 components: - type: Transform @@ -117918,7 +118072,7 @@ entities: pos: 47.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15389 components: - type: Transform @@ -117962,7 +118116,7 @@ entities: pos: 54.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16668 components: - type: Transform @@ -117970,7 +118124,7 @@ entities: pos: 56.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16750 components: - type: Transform @@ -117978,14 +118132,14 @@ entities: pos: 71.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16751 components: - type: Transform pos: 74.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16758 components: - type: Transform @@ -117993,7 +118147,7 @@ entities: pos: 78.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16864 components: - type: Transform @@ -118001,7 +118155,7 @@ entities: pos: 65.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16865 components: - type: Transform @@ -118009,14 +118163,14 @@ entities: pos: 65.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17159 components: - type: Transform pos: 14.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17160 components: - type: Transform @@ -118024,7 +118178,7 @@ entities: pos: 12.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17161 components: - type: Transform @@ -118032,14 +118186,14 @@ entities: pos: 11.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17237 components: - type: Transform pos: 17.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17289 components: - type: Transform @@ -118047,14 +118201,14 @@ entities: pos: -5.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17292 components: - type: Transform pos: -3.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17321 components: - type: Transform @@ -118062,7 +118216,7 @@ entities: pos: -0.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17358 components: - type: Transform @@ -118070,13 +118224,15 @@ entities: pos: 24.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17361 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,48.5 parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17427 components: - type: Transform @@ -118084,7 +118240,7 @@ entities: pos: 36.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17486 components: - type: Transform @@ -118092,7 +118248,7 @@ entities: pos: 4.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17487 components: - type: Transform @@ -118100,13 +118256,15 @@ entities: pos: 2.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17627 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17732 components: - type: Transform @@ -118114,7 +118272,7 @@ entities: pos: 22.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17733 components: - type: Transform @@ -118122,7 +118280,7 @@ entities: pos: 19.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19426 components: - type: Transform @@ -118130,14 +118288,14 @@ entities: pos: 23.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19430 components: - type: Transform pos: 24.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19510 components: - type: Transform @@ -118145,7 +118303,7 @@ entities: pos: 25.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19789 components: - type: Transform @@ -118163,7 +118321,7 @@ entities: pos: 44.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19815 components: - type: Transform @@ -118171,7 +118329,7 @@ entities: pos: 44.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19834 components: - type: Transform @@ -118179,7 +118337,7 @@ entities: pos: 56.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20646 components: - type: Transform @@ -118192,7 +118350,7 @@ entities: pos: 43.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22648 components: - type: Transform @@ -118200,7 +118358,7 @@ entities: pos: 80.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23633 components: - type: Transform @@ -118223,7 +118381,7 @@ entities: pos: 68.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23651 components: - type: Transform @@ -118231,7 +118389,7 @@ entities: pos: 67.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23659 components: - type: Transform @@ -118239,7 +118397,7 @@ entities: pos: 67.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23665 components: - type: Transform @@ -118247,7 +118405,7 @@ entities: pos: 80.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23696 components: - type: Transform @@ -118279,7 +118437,7 @@ entities: pos: 83.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23739 components: - type: Transform @@ -118287,7 +118445,7 @@ entities: pos: 86.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23740 components: - type: Transform @@ -118295,7 +118453,7 @@ entities: pos: 69.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23754 components: - type: Transform @@ -118303,14 +118461,14 @@ entities: pos: 67.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23755 components: - type: Transform pos: 68.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23822 components: - type: Transform @@ -118318,7 +118476,7 @@ entities: pos: 79.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23833 components: - type: Transform @@ -118433,14 +118591,14 @@ entities: pos: 63.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24030 components: - type: Transform pos: 63.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24043 components: - type: Transform @@ -118448,7 +118606,7 @@ entities: pos: 63.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24870 components: - type: Transform @@ -118456,14 +118614,14 @@ entities: pos: 75.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25092 components: - type: Transform pos: 97.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25099 components: - type: Transform @@ -118471,7 +118629,7 @@ entities: pos: 97.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25239 components: - type: Transform @@ -118479,7 +118637,7 @@ entities: pos: 79.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25240 components: - type: Transform @@ -118487,7 +118645,7 @@ entities: pos: 79.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25288 components: - type: Transform @@ -118495,14 +118653,14 @@ entities: pos: 111.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25289 components: - type: Transform pos: 113.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25290 components: - type: Transform @@ -118510,14 +118668,14 @@ entities: pos: 113.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25325 components: - type: Transform pos: 97.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25326 components: - type: Transform @@ -118525,7 +118683,7 @@ entities: pos: 97.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25337 components: - type: Transform @@ -118533,7 +118691,7 @@ entities: pos: 72.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25351 components: - type: Transform @@ -118541,7 +118699,7 @@ entities: pos: 75.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25352 components: - type: Transform @@ -118549,14 +118707,14 @@ entities: pos: 78.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25353 components: - type: Transform pos: 78.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25354 components: - type: Transform @@ -118564,14 +118722,14 @@ entities: pos: 77.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25390 components: - type: Transform pos: 83.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25406 components: - type: Transform @@ -118579,14 +118737,14 @@ entities: pos: 88.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25445 components: - type: Transform pos: 94.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25446 components: - type: Transform @@ -118594,14 +118752,14 @@ entities: pos: 90.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25447 components: - type: Transform pos: 98.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25471 components: - type: Transform @@ -118609,7 +118767,7 @@ entities: pos: 93.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25474 components: - type: Transform @@ -118617,7 +118775,7 @@ entities: pos: 95.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25500 components: - type: Transform @@ -118625,7 +118783,7 @@ entities: pos: 90.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25896 components: - type: Transform @@ -118640,7 +118798,7 @@ entities: pos: 102.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27636 components: - type: Transform @@ -118648,7 +118806,7 @@ entities: pos: 102.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27839 components: - type: Transform @@ -118661,7 +118819,7 @@ entities: pos: 92.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27849 components: - type: Transform @@ -118669,7 +118827,7 @@ entities: pos: 92.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28062 components: - type: Transform @@ -118677,14 +118835,14 @@ entities: pos: 93.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28064 components: - type: Transform pos: 98.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28065 components: - type: Transform @@ -118692,14 +118850,14 @@ entities: pos: 98.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28089 components: - type: Transform pos: 119.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28096 components: - type: Transform @@ -118707,7 +118865,7 @@ entities: pos: 125.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28110 components: - type: Transform @@ -118715,7 +118873,7 @@ entities: pos: 121.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28111 components: - type: Transform @@ -118723,7 +118881,7 @@ entities: pos: 121.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28122 components: - type: Transform @@ -118731,7 +118889,7 @@ entities: pos: 119.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28123 components: - type: Transform @@ -118739,7 +118897,7 @@ entities: pos: 118.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28144 components: - type: Transform @@ -118747,7 +118905,7 @@ entities: pos: 121.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28862 components: - type: Transform @@ -118755,7 +118913,7 @@ entities: pos: 66.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28863 components: - type: Transform @@ -118763,7 +118921,7 @@ entities: pos: 66.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29315 components: - type: Transform @@ -118771,14 +118929,14 @@ entities: pos: 66.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29316 components: - type: Transform pos: 69.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29324 components: - type: Transform @@ -118786,7 +118944,7 @@ entities: pos: 72.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29739 components: - type: Transform @@ -118794,7 +118952,7 @@ entities: pos: 73.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29740 components: - type: Transform @@ -118802,21 +118960,21 @@ entities: pos: 72.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29741 components: - type: Transform pos: 95.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29742 components: - type: Transform pos: 97.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29744 components: - type: Transform @@ -118824,7 +118982,7 @@ entities: pos: 98.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29776 components: - type: Transform @@ -118832,14 +118990,14 @@ entities: pos: 119.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29778 components: - type: Transform pos: 119.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29779 components: - type: Transform @@ -118847,14 +119005,14 @@ entities: pos: 126.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29780 components: - type: Transform pos: 126.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29814 components: - type: Transform @@ -118862,7 +119020,7 @@ entities: pos: 101.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29820 components: - type: Transform @@ -118870,14 +119028,14 @@ entities: pos: 107.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29821 components: - type: Transform pos: 107.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29822 components: - type: Transform @@ -118885,21 +119043,21 @@ entities: pos: 101.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30293 components: - type: Transform pos: 79.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31157 components: - type: Transform pos: 61.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31158 components: - type: Transform @@ -118907,7 +119065,7 @@ entities: pos: 59.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31196 components: - type: Transform @@ -118915,7 +119073,7 @@ entities: pos: 65.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31197 components: - type: Transform @@ -118923,7 +119081,7 @@ entities: pos: 55.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31198 components: - type: Transform @@ -118931,7 +119089,7 @@ entities: pos: 58.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31199 components: - type: Transform @@ -118939,7 +119097,7 @@ entities: pos: 60.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 333 @@ -118948,264 +119106,266 @@ entities: pos: -1.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 431 components: - type: Transform pos: -10.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 529 components: - type: Transform pos: 0.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1609 components: - type: Transform pos: -10.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1717 components: - type: Transform pos: 5.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5484 components: - type: Transform pos: -5.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5495 components: - type: Transform pos: -21.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7949 components: - type: Transform pos: 23.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7956 components: - type: Transform pos: 23.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7960 components: - type: Transform pos: 23.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8000 components: - type: Transform pos: 0.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8082 components: - type: Transform pos: 28.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8098 components: - type: Transform pos: 30.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9888 components: - type: Transform pos: 6.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9947 components: - type: Transform pos: 8.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11057 components: - type: Transform pos: 8.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13094 components: - type: Transform pos: -38.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14028 components: - type: Transform pos: 25.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14127 components: - type: Transform pos: 47.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14137 components: - type: Transform pos: 42.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14198 components: - type: Transform pos: 49.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14558 components: - type: Transform pos: 59.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16813 components: - type: Transform pos: 83.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17211 components: - type: Transform pos: 19.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17215 components: - type: Transform pos: 17.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17228 components: - type: Transform pos: 17.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17232 components: - type: Transform pos: 19.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17269 components: - type: Transform pos: 8.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17343 components: - type: Transform pos: 24.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17362 components: - type: Transform pos: 29.5,50.5 parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17412 components: - type: Transform pos: 29.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17420 components: - type: Transform pos: 28.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21106 components: - type: Transform pos: 81.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21125 components: - type: Transform pos: 83.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21142 components: - type: Transform pos: 81.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21143 components: - type: Transform pos: 83.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21144 components: - type: Transform pos: 83.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21145 components: - type: Transform pos: 81.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23632 components: - type: Transform @@ -119219,63 +119379,112 @@ entities: pos: 76.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24028 components: - type: Transform pos: 63.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24581 components: - type: Transform pos: 86.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24889 components: - type: Transform pos: 75.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25321 components: - type: Transform pos: 93.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25363 components: - type: Transform pos: 77.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27656 components: - type: Transform pos: 87.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29758 components: - type: Transform pos: 101.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29799 components: - type: Transform pos: 100.5,50.5 parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeSensor + entities: + - uid: 20332 + components: + - type: Transform + pos: 29.5,49.5 + parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: Label + currentLabel: Cryogenics +- proto: GasPipeSensorDistribution + entities: + - uid: 23637 + components: + - type: Transform + pos: 83.5,-24.5 + parent: 13329 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 22713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,-39.5 + parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 23663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,-34.5 + parent: 13329 - type: AtmosPipeColor color: '#FF1212FF' +- proto: GasPipeSensorWaste + entities: + - uid: 23645 + components: + - type: Transform + pos: 68.5,-31.5 + parent: 13329 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 324 @@ -119285,7 +119494,7 @@ entities: pos: -2.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 325 components: - type: Transform @@ -119293,7 +119502,7 @@ entities: pos: -3.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 326 components: - type: Transform @@ -119301,7 +119510,7 @@ entities: pos: -4.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 327 components: - type: Transform @@ -119309,7 +119518,7 @@ entities: pos: -5.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 329 components: - type: Transform @@ -119317,7 +119526,7 @@ entities: pos: -7.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 330 components: - type: Transform @@ -119325,7 +119534,7 @@ entities: pos: -8.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 331 components: - type: Transform @@ -119333,7 +119542,7 @@ entities: pos: -9.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 332 components: - type: Transform @@ -119341,7 +119550,7 @@ entities: pos: -10.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 334 components: - type: Transform @@ -119349,7 +119558,7 @@ entities: pos: -1.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 335 components: - type: Transform @@ -119357,7 +119566,7 @@ entities: pos: -2.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 336 components: - type: Transform @@ -119365,7 +119574,7 @@ entities: pos: -3.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 337 components: - type: Transform @@ -119373,7 +119582,7 @@ entities: pos: -4.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 339 components: - type: Transform @@ -119381,7 +119590,7 @@ entities: pos: -6.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 340 components: - type: Transform @@ -119389,7 +119598,7 @@ entities: pos: -7.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 341 components: - type: Transform @@ -119397,7 +119606,7 @@ entities: pos: -8.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 342 components: - type: Transform @@ -119405,91 +119614,91 @@ entities: pos: -9.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 344 components: - type: Transform pos: -5.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 345 components: - type: Transform pos: -5.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 346 components: - type: Transform pos: -6.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 347 components: - type: Transform pos: -6.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 348 components: - type: Transform pos: -6.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 349 components: - type: Transform pos: -1.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 350 components: - type: Transform pos: -1.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 351 components: - type: Transform pos: -1.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 352 components: - type: Transform pos: -1.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 353 components: - type: Transform pos: -1.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 354 components: - type: Transform pos: -1.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 355 components: - type: Transform pos: -1.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 360 components: - type: Transform @@ -119497,7 +119706,7 @@ entities: pos: -5.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 361 components: - type: Transform @@ -119505,7 +119714,7 @@ entities: pos: -6.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 362 components: - type: Transform @@ -119513,7 +119722,7 @@ entities: pos: -7.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 363 components: - type: Transform @@ -119521,7 +119730,7 @@ entities: pos: -8.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 364 components: - type: Transform @@ -119529,7 +119738,7 @@ entities: pos: -9.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 366 components: - type: Transform @@ -119537,7 +119746,7 @@ entities: pos: -11.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 367 components: - type: Transform @@ -119545,7 +119754,7 @@ entities: pos: -12.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 368 components: - type: Transform @@ -119553,7 +119762,7 @@ entities: pos: -13.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 370 components: - type: Transform @@ -119561,7 +119770,7 @@ entities: pos: -14.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 371 components: - type: Transform @@ -119569,7 +119778,7 @@ entities: pos: -14.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 374 components: - type: Transform @@ -119577,7 +119786,7 @@ entities: pos: -13.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 375 components: - type: Transform @@ -119585,7 +119794,7 @@ entities: pos: -12.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 376 components: - type: Transform @@ -119593,7 +119802,7 @@ entities: pos: -11.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 382 components: - type: Transform @@ -119601,7 +119810,7 @@ entities: pos: -13.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 383 components: - type: Transform @@ -119609,7 +119818,7 @@ entities: pos: -14.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 384 components: - type: Transform @@ -119617,14 +119826,14 @@ entities: pos: -15.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 385 components: - type: Transform pos: -16.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 391 components: - type: Transform @@ -119632,7 +119841,7 @@ entities: pos: -19.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 392 components: - type: Transform @@ -119640,7 +119849,7 @@ entities: pos: -18.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 393 components: - type: Transform @@ -119648,7 +119857,7 @@ entities: pos: -17.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 394 components: - type: Transform @@ -119656,7 +119865,7 @@ entities: pos: -16.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 395 components: - type: Transform @@ -119664,7 +119873,7 @@ entities: pos: -15.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 396 components: - type: Transform @@ -119672,7 +119881,7 @@ entities: pos: -14.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 397 components: - type: Transform @@ -119680,7 +119889,7 @@ entities: pos: -13.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 398 components: - type: Transform @@ -119688,7 +119897,7 @@ entities: pos: -12.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 399 components: - type: Transform @@ -119696,7 +119905,7 @@ entities: pos: -11.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 400 components: - type: Transform @@ -119704,7 +119913,7 @@ entities: pos: -11.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 401 components: - type: Transform @@ -119712,7 +119921,7 @@ entities: pos: -11.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 402 components: - type: Transform @@ -119720,7 +119929,7 @@ entities: pos: -11.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 403 components: - type: Transform @@ -119728,7 +119937,7 @@ entities: pos: -11.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 404 components: - type: Transform @@ -119736,7 +119945,7 @@ entities: pos: -10.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 405 components: - type: Transform @@ -119744,7 +119953,7 @@ entities: pos: -9.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 407 components: - type: Transform @@ -119752,7 +119961,7 @@ entities: pos: -8.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 408 components: - type: Transform @@ -119760,7 +119969,7 @@ entities: pos: -8.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 409 components: - type: Transform @@ -119768,7 +119977,7 @@ entities: pos: -8.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 412 components: - type: Transform @@ -119776,7 +119985,7 @@ entities: pos: -7.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 413 components: - type: Transform @@ -119784,14 +119993,14 @@ entities: pos: -5.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 414 components: - type: Transform pos: -6.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 415 components: - type: Transform @@ -119799,7 +120008,7 @@ entities: pos: -9.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 419 components: - type: Transform @@ -119807,7 +120016,7 @@ entities: pos: -12.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 425 components: - type: Transform @@ -119815,7 +120024,7 @@ entities: pos: -10.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 426 components: - type: Transform @@ -119823,7 +120032,7 @@ entities: pos: -10.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 427 components: - type: Transform @@ -119831,7 +120040,7 @@ entities: pos: -10.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 428 components: - type: Transform @@ -119839,7 +120048,7 @@ entities: pos: -10.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 429 components: - type: Transform @@ -119847,7 +120056,7 @@ entities: pos: -10.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 430 components: - type: Transform @@ -119855,7 +120064,7 @@ entities: pos: -10.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 432 components: - type: Transform @@ -119863,7 +120072,7 @@ entities: pos: -9.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 433 components: - type: Transform @@ -119871,7 +120080,7 @@ entities: pos: -8.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 434 components: - type: Transform @@ -119879,7 +120088,7 @@ entities: pos: -11.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 435 components: - type: Transform @@ -119887,7 +120096,7 @@ entities: pos: -12.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 436 components: - type: Transform @@ -119895,7 +120104,7 @@ entities: pos: -13.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 437 components: - type: Transform @@ -119903,7 +120112,7 @@ entities: pos: -14.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 438 components: - type: Transform @@ -119911,7 +120120,7 @@ entities: pos: -15.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 439 components: - type: Transform @@ -119919,7 +120128,7 @@ entities: pos: -16.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 440 components: - type: Transform @@ -119927,7 +120136,7 @@ entities: pos: -17.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 441 components: - type: Transform @@ -119935,35 +120144,35 @@ entities: pos: -18.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 444 components: - type: Transform pos: -19.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 445 components: - type: Transform pos: -20.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 446 components: - type: Transform pos: -20.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 447 components: - type: Transform pos: -20.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 450 components: - type: Transform @@ -119971,7 +120180,7 @@ entities: pos: -7.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 455 components: - type: Transform @@ -119979,7 +120188,7 @@ entities: pos: -19.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 456 components: - type: Transform @@ -119987,7 +120196,7 @@ entities: pos: -18.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 457 components: - type: Transform @@ -119995,7 +120204,7 @@ entities: pos: -18.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 458 components: - type: Transform @@ -120003,7 +120212,7 @@ entities: pos: -18.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 459 components: - type: Transform @@ -120011,7 +120220,7 @@ entities: pos: -18.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 463 components: - type: Transform @@ -120019,7 +120228,7 @@ entities: pos: 0.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 464 components: - type: Transform @@ -120027,7 +120236,7 @@ entities: pos: 0.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 465 components: - type: Transform @@ -120035,7 +120244,7 @@ entities: pos: 0.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 466 components: - type: Transform @@ -120043,7 +120252,7 @@ entities: pos: 0.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 467 components: - type: Transform @@ -120051,7 +120260,7 @@ entities: pos: 0.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 468 components: - type: Transform @@ -120059,7 +120268,7 @@ entities: pos: 0.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 469 components: - type: Transform @@ -120067,7 +120276,7 @@ entities: pos: 0.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 470 components: - type: Transform @@ -120075,7 +120284,7 @@ entities: pos: 0.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 471 components: - type: Transform @@ -120083,7 +120292,7 @@ entities: pos: 0.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 472 components: - type: Transform @@ -120091,7 +120300,7 @@ entities: pos: 0.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 473 components: - type: Transform @@ -120099,7 +120308,7 @@ entities: pos: 0.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 474 components: - type: Transform @@ -120107,7 +120316,7 @@ entities: pos: 0.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 475 components: - type: Transform @@ -120115,7 +120324,7 @@ entities: pos: 0.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 477 components: - type: Transform @@ -120123,7 +120332,7 @@ entities: pos: 0.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 478 components: - type: Transform @@ -120131,7 +120340,7 @@ entities: pos: 0.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 481 components: - type: Transform @@ -120139,7 +120348,7 @@ entities: pos: -1.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 482 components: - type: Transform @@ -120147,7 +120356,7 @@ entities: pos: -2.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 483 components: - type: Transform @@ -120155,7 +120364,7 @@ entities: pos: -3.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 484 components: - type: Transform @@ -120163,7 +120372,7 @@ entities: pos: -4.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 485 components: - type: Transform @@ -120171,7 +120380,7 @@ entities: pos: -5.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 486 components: - type: Transform @@ -120179,7 +120388,7 @@ entities: pos: -6.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 487 components: - type: Transform @@ -120187,49 +120396,49 @@ entities: pos: -7.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 490 components: - type: Transform pos: -10.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 491 components: - type: Transform pos: -10.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 492 components: - type: Transform pos: -10.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 493 components: - type: Transform pos: -10.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 494 components: - type: Transform pos: -10.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 495 components: - type: Transform pos: -10.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 497 components: - type: Transform @@ -120237,7 +120446,7 @@ entities: pos: -8.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 498 components: - type: Transform @@ -120245,7 +120454,7 @@ entities: pos: -7.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 499 components: - type: Transform @@ -120253,7 +120462,7 @@ entities: pos: -6.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 500 components: - type: Transform @@ -120261,7 +120470,7 @@ entities: pos: -5.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 501 components: - type: Transform @@ -120269,7 +120478,7 @@ entities: pos: -4.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 502 components: - type: Transform @@ -120277,7 +120486,7 @@ entities: pos: -3.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 503 components: - type: Transform @@ -120285,7 +120494,7 @@ entities: pos: -2.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 506 components: - type: Transform @@ -120293,7 +120502,7 @@ entities: pos: -1.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 507 components: - type: Transform @@ -120301,7 +120510,7 @@ entities: pos: -1.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 508 components: - type: Transform @@ -120309,7 +120518,7 @@ entities: pos: -1.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 509 components: - type: Transform @@ -120317,7 +120526,7 @@ entities: pos: -1.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 510 components: - type: Transform @@ -120325,7 +120534,7 @@ entities: pos: -1.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 511 components: - type: Transform @@ -120333,7 +120542,7 @@ entities: pos: -1.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 513 components: - type: Transform @@ -120341,7 +120550,7 @@ entities: pos: -1.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 514 components: - type: Transform @@ -120349,7 +120558,7 @@ entities: pos: -1.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 515 components: - type: Transform @@ -120357,7 +120566,7 @@ entities: pos: -1.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 516 components: - type: Transform @@ -120365,7 +120574,7 @@ entities: pos: -1.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 517 components: - type: Transform @@ -120373,7 +120582,7 @@ entities: pos: -1.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 518 components: - type: Transform @@ -120381,7 +120590,7 @@ entities: pos: -1.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 519 components: - type: Transform @@ -120389,7 +120598,7 @@ entities: pos: -1.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 520 components: - type: Transform @@ -120397,7 +120606,7 @@ entities: pos: -1.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 521 components: - type: Transform @@ -120405,7 +120614,7 @@ entities: pos: -1.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 522 components: - type: Transform @@ -120413,7 +120622,7 @@ entities: pos: 0.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 524 components: - type: Transform @@ -120421,7 +120630,7 @@ entities: pos: 0.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 525 components: - type: Transform @@ -120429,7 +120638,7 @@ entities: pos: 0.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 526 components: - type: Transform @@ -120437,7 +120646,7 @@ entities: pos: 0.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 527 components: - type: Transform @@ -120445,7 +120654,7 @@ entities: pos: 0.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 528 components: - type: Transform @@ -120453,21 +120662,21 @@ entities: pos: 0.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 533 components: - type: Transform pos: -15.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 534 components: - type: Transform pos: -15.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 539 components: - type: Transform @@ -120475,7 +120684,7 @@ entities: pos: -14.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 540 components: - type: Transform @@ -120483,7 +120692,7 @@ entities: pos: -13.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 541 components: - type: Transform @@ -120491,7 +120700,7 @@ entities: pos: -12.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 542 components: - type: Transform @@ -120499,21 +120708,21 @@ entities: pos: -11.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 543 components: - type: Transform pos: -8.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 544 components: - type: Transform pos: -8.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 547 components: - type: Transform @@ -120521,7 +120730,7 @@ entities: pos: -7.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 548 components: - type: Transform @@ -120529,7 +120738,7 @@ entities: pos: -6.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 549 components: - type: Transform @@ -120537,7 +120746,7 @@ entities: pos: -5.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 550 components: - type: Transform @@ -120545,7 +120754,7 @@ entities: pos: -4.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 554 components: - type: Transform @@ -120553,7 +120762,7 @@ entities: pos: -10.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 555 components: - type: Transform @@ -120561,7 +120770,7 @@ entities: pos: -11.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 556 components: - type: Transform @@ -120569,7 +120778,7 @@ entities: pos: -12.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 557 components: - type: Transform @@ -120577,7 +120786,7 @@ entities: pos: -13.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 558 components: - type: Transform @@ -120585,7 +120794,7 @@ entities: pos: -14.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 559 components: - type: Transform @@ -120593,21 +120802,21 @@ entities: pos: -15.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 562 components: - type: Transform pos: -16.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 563 components: - type: Transform pos: -16.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 564 components: - type: Transform @@ -120615,7 +120824,7 @@ entities: pos: -17.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 576 components: - type: Transform @@ -120623,7 +120832,7 @@ entities: pos: -8.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 577 components: - type: Transform @@ -120631,7 +120840,7 @@ entities: pos: -8.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 578 components: - type: Transform @@ -120639,7 +120848,7 @@ entities: pos: -7.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 579 components: - type: Transform @@ -120647,7 +120856,7 @@ entities: pos: -6.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 580 components: - type: Transform @@ -120655,35 +120864,35 @@ entities: pos: -5.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 581 components: - type: Transform pos: -8.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 582 components: - type: Transform pos: -8.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 583 components: - type: Transform pos: -8.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 584 components: - type: Transform pos: -8.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 585 components: - type: Transform @@ -120691,7 +120900,7 @@ entities: pos: -9.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 586 components: - type: Transform @@ -120699,7 +120908,7 @@ entities: pos: -10.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 591 components: - type: Transform @@ -120707,7 +120916,7 @@ entities: pos: -5.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 592 components: - type: Transform @@ -120715,7 +120924,7 @@ entities: pos: -10.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 593 components: - type: Transform @@ -120723,7 +120932,7 @@ entities: pos: -10.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 594 components: - type: Transform @@ -120731,7 +120940,7 @@ entities: pos: -10.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 595 components: - type: Transform @@ -120739,7 +120948,7 @@ entities: pos: -10.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 596 components: - type: Transform @@ -120747,7 +120956,7 @@ entities: pos: -10.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 597 components: - type: Transform @@ -120755,7 +120964,7 @@ entities: pos: -9.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 598 components: - type: Transform @@ -120763,7 +120972,7 @@ entities: pos: -8.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 599 components: - type: Transform @@ -120771,7 +120980,7 @@ entities: pos: -7.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 600 components: - type: Transform @@ -120779,28 +120988,28 @@ entities: pos: -6.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 603 components: - type: Transform pos: -15.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 604 components: - type: Transform pos: -15.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 605 components: - type: Transform pos: -15.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 606 components: - type: Transform @@ -120808,7 +121017,7 @@ entities: pos: -14.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 607 components: - type: Transform @@ -120816,7 +121025,7 @@ entities: pos: -13.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 608 components: - type: Transform @@ -120824,7 +121033,7 @@ entities: pos: -12.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 620 components: - type: Transform @@ -120832,7 +121041,7 @@ entities: pos: -16.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 621 components: - type: Transform @@ -120840,7 +121049,7 @@ entities: pos: -15.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 623 components: - type: Transform @@ -120848,7 +121057,7 @@ entities: pos: -14.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1517 components: - type: Transform @@ -120856,7 +121065,7 @@ entities: pos: -0.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1518 components: - type: Transform @@ -120864,7 +121073,7 @@ entities: pos: -0.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1519 components: - type: Transform @@ -120872,7 +121081,7 @@ entities: pos: -1.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1520 components: - type: Transform @@ -120880,7 +121089,7 @@ entities: pos: -2.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1521 components: - type: Transform @@ -120888,7 +121097,7 @@ entities: pos: -3.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1522 components: - type: Transform @@ -120896,7 +121105,7 @@ entities: pos: -4.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1523 components: - type: Transform @@ -120904,7 +121113,7 @@ entities: pos: -5.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1526 components: - type: Transform @@ -120912,7 +121121,7 @@ entities: pos: 1.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1528 components: - type: Transform @@ -120920,7 +121129,7 @@ entities: pos: 2.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1529 components: - type: Transform @@ -120928,7 +121137,7 @@ entities: pos: 3.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1530 components: - type: Transform @@ -120936,7 +121145,7 @@ entities: pos: 2.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1531 components: - type: Transform @@ -120944,7 +121153,7 @@ entities: pos: 1.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1532 components: - type: Transform @@ -120952,7 +121161,7 @@ entities: pos: 0.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1533 components: - type: Transform @@ -120960,7 +121169,7 @@ entities: pos: -6.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1534 components: - type: Transform @@ -120968,7 +121177,7 @@ entities: pos: -6.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1535 components: - type: Transform @@ -120976,7 +121185,7 @@ entities: pos: -4.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1536 components: - type: Transform @@ -120984,7 +121193,7 @@ entities: pos: 3.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1537 components: - type: Transform @@ -120992,7 +121201,7 @@ entities: pos: 3.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1538 components: - type: Transform @@ -121000,7 +121209,7 @@ entities: pos: 4.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1539 components: - type: Transform @@ -121008,7 +121217,7 @@ entities: pos: 4.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1540 components: - type: Transform @@ -121016,7 +121225,7 @@ entities: pos: 4.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1542 components: - type: Transform @@ -121024,7 +121233,7 @@ entities: pos: 1.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1543 components: - type: Transform @@ -121032,7 +121241,7 @@ entities: pos: 2.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1550 components: - type: Transform @@ -121040,63 +121249,63 @@ entities: pos: -2.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1600 components: - type: Transform pos: -6.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1601 components: - type: Transform pos: -6.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1602 components: - type: Transform pos: -6.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1603 components: - type: Transform pos: -6.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1604 components: - type: Transform pos: -6.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1605 components: - type: Transform pos: -6.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1606 components: - type: Transform pos: -6.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1607 components: - type: Transform pos: -6.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1610 components: - type: Transform @@ -121104,7 +121313,7 @@ entities: pos: -10.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1611 components: - type: Transform @@ -121112,7 +121321,7 @@ entities: pos: -10.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1612 components: - type: Transform @@ -121120,28 +121329,28 @@ entities: pos: -10.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1613 components: - type: Transform pos: -10.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1614 components: - type: Transform pos: -10.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1615 components: - type: Transform pos: -10.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1666 components: - type: Transform @@ -121149,7 +121358,7 @@ entities: pos: -9.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1667 components: - type: Transform @@ -121157,7 +121366,7 @@ entities: pos: -8.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1668 components: - type: Transform @@ -121165,7 +121374,7 @@ entities: pos: -7.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1669 components: - type: Transform @@ -121173,7 +121382,7 @@ entities: pos: -11.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1670 components: - type: Transform @@ -121181,7 +121390,7 @@ entities: pos: -12.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1671 components: - type: Transform @@ -121189,7 +121398,7 @@ entities: pos: -13.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1674 components: - type: Transform @@ -121197,7 +121406,7 @@ entities: pos: -4.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1675 components: - type: Transform @@ -121205,7 +121414,7 @@ entities: pos: -3.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1676 components: - type: Transform @@ -121213,7 +121422,7 @@ entities: pos: -2.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1677 components: - type: Transform @@ -121221,7 +121430,7 @@ entities: pos: -1.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1678 components: - type: Transform @@ -121229,7 +121438,7 @@ entities: pos: -0.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1679 components: - type: Transform @@ -121237,7 +121446,7 @@ entities: pos: 0.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1680 components: - type: Transform @@ -121245,7 +121454,7 @@ entities: pos: 1.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1681 components: - type: Transform @@ -121253,7 +121462,7 @@ entities: pos: 2.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1683 components: - type: Transform @@ -121261,7 +121470,7 @@ entities: pos: 4.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1684 components: - type: Transform @@ -121269,7 +121478,7 @@ entities: pos: 5.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1685 components: - type: Transform @@ -121277,7 +121486,7 @@ entities: pos: 6.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1686 components: - type: Transform @@ -121285,7 +121494,7 @@ entities: pos: 7.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1688 components: - type: Transform @@ -121293,7 +121502,7 @@ entities: pos: 3.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1689 components: - type: Transform @@ -121301,7 +121510,7 @@ entities: pos: 3.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1690 components: - type: Transform @@ -121309,7 +121518,7 @@ entities: pos: 3.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1691 components: - type: Transform @@ -121317,7 +121526,7 @@ entities: pos: 3.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1693 components: - type: Transform @@ -121325,7 +121534,7 @@ entities: pos: 3.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1695 components: - type: Transform @@ -121333,7 +121542,7 @@ entities: pos: 3.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1696 components: - type: Transform @@ -121341,7 +121550,7 @@ entities: pos: 5.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1697 components: - type: Transform @@ -121349,7 +121558,7 @@ entities: pos: 5.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1698 components: - type: Transform @@ -121357,7 +121566,7 @@ entities: pos: 5.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1699 components: - type: Transform @@ -121365,7 +121574,7 @@ entities: pos: 5.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1700 components: - type: Transform @@ -121373,7 +121582,7 @@ entities: pos: 5.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1701 components: - type: Transform @@ -121381,7 +121590,7 @@ entities: pos: 6.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1702 components: - type: Transform @@ -121389,7 +121598,7 @@ entities: pos: 5.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1703 components: - type: Transform @@ -121397,7 +121606,7 @@ entities: pos: 5.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1704 components: - type: Transform @@ -121405,7 +121614,7 @@ entities: pos: 5.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1706 components: - type: Transform @@ -121413,7 +121622,7 @@ entities: pos: -4.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1707 components: - type: Transform @@ -121421,7 +121630,7 @@ entities: pos: -4.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1708 components: - type: Transform @@ -121429,7 +121638,7 @@ entities: pos: -4.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1709 components: - type: Transform @@ -121437,7 +121646,7 @@ entities: pos: -4.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1710 components: - type: Transform @@ -121445,7 +121654,7 @@ entities: pos: -4.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1711 components: - type: Transform @@ -121453,7 +121662,7 @@ entities: pos: -4.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1712 components: - type: Transform @@ -121461,7 +121670,7 @@ entities: pos: -4.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1713 components: - type: Transform @@ -121469,7 +121678,7 @@ entities: pos: -4.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1714 components: - type: Transform @@ -121477,7 +121686,7 @@ entities: pos: -4.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1715 components: - type: Transform @@ -121485,7 +121694,7 @@ entities: pos: -4.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1719 components: - type: Transform @@ -121493,7 +121702,7 @@ entities: pos: -2.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1720 components: - type: Transform @@ -121501,7 +121710,7 @@ entities: pos: -1.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1721 components: - type: Transform @@ -121509,7 +121718,7 @@ entities: pos: -0.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1722 components: - type: Transform @@ -121517,7 +121726,7 @@ entities: pos: 0.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1723 components: - type: Transform @@ -121525,7 +121734,7 @@ entities: pos: 1.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1724 components: - type: Transform @@ -121533,7 +121742,7 @@ entities: pos: 2.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1725 components: - type: Transform @@ -121541,7 +121750,7 @@ entities: pos: 3.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1726 components: - type: Transform @@ -121549,7 +121758,7 @@ entities: pos: 4.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1727 components: - type: Transform @@ -121557,7 +121766,7 @@ entities: pos: 6.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1728 components: - type: Transform @@ -121565,7 +121774,7 @@ entities: pos: 7.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1729 components: - type: Transform @@ -121573,7 +121782,7 @@ entities: pos: 8.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1731 components: - type: Transform @@ -121581,7 +121790,7 @@ entities: pos: -6.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1732 components: - type: Transform @@ -121589,7 +121798,7 @@ entities: pos: -7.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1733 components: - type: Transform @@ -121597,7 +121806,7 @@ entities: pos: -8.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1734 components: - type: Transform @@ -121605,7 +121814,7 @@ entities: pos: -9.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1735 components: - type: Transform @@ -121613,7 +121822,7 @@ entities: pos: -10.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1736 components: - type: Transform @@ -121621,7 +121830,7 @@ entities: pos: -11.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1738 components: - type: Transform @@ -121629,7 +121838,7 @@ entities: pos: -13.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1739 components: - type: Transform @@ -121637,7 +121846,7 @@ entities: pos: -10.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2119 components: - type: Transform @@ -121645,21 +121854,21 @@ entities: pos: -6.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2130 components: - type: Transform pos: -5.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2131 components: - type: Transform pos: -5.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2137 components: - type: Transform @@ -121667,7 +121876,7 @@ entities: pos: -12.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2140 components: - type: Transform @@ -121675,7 +121884,7 @@ entities: pos: -9.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2141 components: - type: Transform @@ -121683,7 +121892,7 @@ entities: pos: -10.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2142 components: - type: Transform @@ -121691,7 +121900,7 @@ entities: pos: -15.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2143 components: - type: Transform @@ -121699,7 +121908,7 @@ entities: pos: -16.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2144 components: - type: Transform @@ -121707,7 +121916,7 @@ entities: pos: -17.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2145 components: - type: Transform @@ -121715,7 +121924,7 @@ entities: pos: -18.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2146 components: - type: Transform @@ -121723,7 +121932,7 @@ entities: pos: -19.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2147 components: - type: Transform @@ -121731,7 +121940,7 @@ entities: pos: -20.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2149 components: - type: Transform @@ -121739,7 +121948,7 @@ entities: pos: -22.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2150 components: - type: Transform @@ -121747,7 +121956,7 @@ entities: pos: -23.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2151 components: - type: Transform @@ -121755,7 +121964,7 @@ entities: pos: -24.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2152 components: - type: Transform @@ -121763,7 +121972,7 @@ entities: pos: -25.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2153 components: - type: Transform @@ -121771,7 +121980,7 @@ entities: pos: -26.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2154 components: - type: Transform @@ -121779,7 +121988,7 @@ entities: pos: -27.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2155 components: - type: Transform @@ -121787,7 +121996,7 @@ entities: pos: -15.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2156 components: - type: Transform @@ -121795,7 +122004,7 @@ entities: pos: -16.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2159 components: - type: Transform @@ -121803,7 +122012,7 @@ entities: pos: -19.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2160 components: - type: Transform @@ -121811,7 +122020,7 @@ entities: pos: -20.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2161 components: - type: Transform @@ -121819,7 +122028,7 @@ entities: pos: -21.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2162 components: - type: Transform @@ -121827,7 +122036,7 @@ entities: pos: -22.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2164 components: - type: Transform @@ -121835,7 +122044,7 @@ entities: pos: -24.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2165 components: - type: Transform @@ -121843,7 +122052,7 @@ entities: pos: -25.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2166 components: - type: Transform @@ -121851,7 +122060,7 @@ entities: pos: -26.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2167 components: - type: Transform @@ -121859,7 +122068,7 @@ entities: pos: -27.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2168 components: - type: Transform @@ -121867,7 +122076,7 @@ entities: pos: 9.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2169 components: - type: Transform @@ -121875,7 +122084,7 @@ entities: pos: 10.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2170 components: - type: Transform @@ -121883,7 +122092,7 @@ entities: pos: 11.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2171 components: - type: Transform @@ -121891,7 +122100,7 @@ entities: pos: 12.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2172 components: - type: Transform @@ -121899,7 +122108,7 @@ entities: pos: 13.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2173 components: - type: Transform @@ -121907,7 +122116,7 @@ entities: pos: 14.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2175 components: - type: Transform @@ -121915,7 +122124,7 @@ entities: pos: 9.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2176 components: - type: Transform @@ -121923,7 +122132,7 @@ entities: pos: 10.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2177 components: - type: Transform @@ -121931,7 +122140,7 @@ entities: pos: 11.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2180 components: - type: Transform @@ -121939,7 +122148,7 @@ entities: pos: 14.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2181 components: - type: Transform @@ -121947,7 +122156,7 @@ entities: pos: 15.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2182 components: - type: Transform @@ -121955,7 +122164,7 @@ entities: pos: -14.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2184 components: - type: Transform @@ -121963,7 +122172,7 @@ entities: pos: -10.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2185 components: - type: Transform @@ -121971,7 +122180,7 @@ entities: pos: -10.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2186 components: - type: Transform @@ -121979,7 +122188,7 @@ entities: pos: -14.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2187 components: - type: Transform @@ -121987,7 +122196,7 @@ entities: pos: -14.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2188 components: - type: Transform @@ -121995,7 +122204,7 @@ entities: pos: -14.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2285 components: - type: Transform @@ -122003,7 +122212,7 @@ entities: pos: -5.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2286 components: - type: Transform @@ -122011,7 +122220,7 @@ entities: pos: -5.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2288 components: - type: Transform @@ -122019,7 +122228,7 @@ entities: pos: -6.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2289 components: - type: Transform @@ -122027,7 +122236,7 @@ entities: pos: -7.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2290 components: - type: Transform @@ -122035,7 +122244,7 @@ entities: pos: -8.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2291 components: - type: Transform @@ -122043,7 +122252,7 @@ entities: pos: -9.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2292 components: - type: Transform @@ -122051,7 +122260,7 @@ entities: pos: -10.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2293 components: - type: Transform @@ -122059,7 +122268,7 @@ entities: pos: -11.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2294 components: - type: Transform @@ -122067,7 +122276,7 @@ entities: pos: -12.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2295 components: - type: Transform @@ -122075,7 +122284,7 @@ entities: pos: -13.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2296 components: - type: Transform @@ -122083,7 +122292,7 @@ entities: pos: -14.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2297 components: - type: Transform @@ -122091,7 +122300,7 @@ entities: pos: -16.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2298 components: - type: Transform @@ -122099,35 +122308,35 @@ entities: pos: -17.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2299 components: - type: Transform pos: -18.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2301 components: - type: Transform pos: -18.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2302 components: - type: Transform pos: -18.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2303 components: - type: Transform pos: -18.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2541 components: - type: Transform @@ -122135,7 +122344,7 @@ entities: pos: -15.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2542 components: - type: Transform @@ -122143,210 +122352,210 @@ entities: pos: -16.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2544 components: - type: Transform pos: -17.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2545 components: - type: Transform pos: -17.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2546 components: - type: Transform pos: -17.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2547 components: - type: Transform pos: -17.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2548 components: - type: Transform pos: -17.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4036 components: - type: Transform pos: -1.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4037 components: - type: Transform pos: -1.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4039 components: - type: Transform pos: -1.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4040 components: - type: Transform pos: -1.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4041 components: - type: Transform pos: -1.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4042 components: - type: Transform pos: -1.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4043 components: - type: Transform pos: -1.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4044 components: - type: Transform pos: -1.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4045 components: - type: Transform pos: -1.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4046 components: - type: Transform pos: -1.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4047 components: - type: Transform pos: -1.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4048 components: - type: Transform pos: 0.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4049 components: - type: Transform pos: 0.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4050 components: - type: Transform pos: 0.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4051 components: - type: Transform pos: 0.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4052 components: - type: Transform pos: 0.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4053 components: - type: Transform pos: 0.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4054 components: - type: Transform pos: 0.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4055 components: - type: Transform pos: 0.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4056 components: - type: Transform pos: 0.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4057 components: - type: Transform pos: 0.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4058 components: - type: Transform pos: 0.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4059 components: - type: Transform pos: 0.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4060 components: - type: Transform pos: 0.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4063 components: - type: Transform @@ -122354,7 +122563,7 @@ entities: pos: -2.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4065 components: - type: Transform @@ -122362,7 +122571,7 @@ entities: pos: -4.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4066 components: - type: Transform @@ -122370,7 +122579,7 @@ entities: pos: -5.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4067 components: - type: Transform @@ -122378,7 +122587,7 @@ entities: pos: -6.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4068 components: - type: Transform @@ -122386,7 +122595,7 @@ entities: pos: -7.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4069 components: - type: Transform @@ -122394,7 +122603,7 @@ entities: pos: -8.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4070 components: - type: Transform @@ -122402,7 +122611,7 @@ entities: pos: -9.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4071 components: - type: Transform @@ -122410,7 +122619,7 @@ entities: pos: -10.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4073 components: - type: Transform @@ -122418,7 +122627,7 @@ entities: pos: -12.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4074 components: - type: Transform @@ -122426,7 +122635,7 @@ entities: pos: -13.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4075 components: - type: Transform @@ -122434,7 +122643,7 @@ entities: pos: -14.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4076 components: - type: Transform @@ -122442,7 +122651,7 @@ entities: pos: -15.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4077 components: - type: Transform @@ -122450,7 +122659,7 @@ entities: pos: -16.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4078 components: - type: Transform @@ -122458,7 +122667,7 @@ entities: pos: -17.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4079 components: - type: Transform @@ -122466,7 +122675,7 @@ entities: pos: -18.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4080 components: - type: Transform @@ -122474,7 +122683,7 @@ entities: pos: -19.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4081 components: - type: Transform @@ -122482,7 +122691,7 @@ entities: pos: -20.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4082 components: - type: Transform @@ -122490,7 +122699,7 @@ entities: pos: -21.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4084 components: - type: Transform @@ -122498,7 +122707,7 @@ entities: pos: -23.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4086 components: - type: Transform @@ -122506,7 +122715,7 @@ entities: pos: -25.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4087 components: - type: Transform @@ -122514,7 +122723,7 @@ entities: pos: -26.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4088 components: - type: Transform @@ -122522,7 +122731,7 @@ entities: pos: -27.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4089 components: - type: Transform @@ -122530,7 +122739,7 @@ entities: pos: -28.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4090 components: - type: Transform @@ -122538,7 +122747,7 @@ entities: pos: -29.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4091 components: - type: Transform @@ -122546,7 +122755,7 @@ entities: pos: -30.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4093 components: - type: Transform @@ -122554,7 +122763,7 @@ entities: pos: -1.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4094 components: - type: Transform @@ -122562,7 +122771,7 @@ entities: pos: -2.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4095 components: - type: Transform @@ -122570,7 +122779,7 @@ entities: pos: -3.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4096 components: - type: Transform @@ -122578,7 +122787,7 @@ entities: pos: -4.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4098 components: - type: Transform @@ -122586,7 +122795,7 @@ entities: pos: -6.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4099 components: - type: Transform @@ -122594,7 +122803,7 @@ entities: pos: -7.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4100 components: - type: Transform @@ -122602,7 +122811,7 @@ entities: pos: -8.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4101 components: - type: Transform @@ -122610,7 +122819,7 @@ entities: pos: -9.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4102 components: - type: Transform @@ -122618,7 +122827,7 @@ entities: pos: -10.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4103 components: - type: Transform @@ -122626,7 +122835,7 @@ entities: pos: -11.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4105 components: - type: Transform @@ -122634,7 +122843,7 @@ entities: pos: -13.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4106 components: - type: Transform @@ -122642,7 +122851,7 @@ entities: pos: -14.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4107 components: - type: Transform @@ -122650,7 +122859,7 @@ entities: pos: -15.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4108 components: - type: Transform @@ -122658,7 +122867,7 @@ entities: pos: -16.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4109 components: - type: Transform @@ -122666,7 +122875,7 @@ entities: pos: -17.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4110 components: - type: Transform @@ -122674,7 +122883,7 @@ entities: pos: -18.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4112 components: - type: Transform @@ -122682,7 +122891,7 @@ entities: pos: -20.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4113 components: - type: Transform @@ -122690,7 +122899,7 @@ entities: pos: -21.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4114 components: - type: Transform @@ -122698,7 +122907,7 @@ entities: pos: -22.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4116 components: - type: Transform @@ -122706,7 +122915,7 @@ entities: pos: -24.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4117 components: - type: Transform @@ -122714,7 +122923,7 @@ entities: pos: -25.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4118 components: - type: Transform @@ -122722,7 +122931,7 @@ entities: pos: -26.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4119 components: - type: Transform @@ -122730,7 +122939,7 @@ entities: pos: -27.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4120 components: - type: Transform @@ -122738,7 +122947,7 @@ entities: pos: -28.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4121 components: - type: Transform @@ -122746,7 +122955,7 @@ entities: pos: -29.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4122 components: - type: Transform @@ -122754,7 +122963,7 @@ entities: pos: -30.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4123 components: - type: Transform @@ -122762,112 +122971,112 @@ entities: pos: -31.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4126 components: - type: Transform pos: -32.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4127 components: - type: Transform pos: -32.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4128 components: - type: Transform pos: -32.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4129 components: - type: Transform pos: -32.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4130 components: - type: Transform pos: -32.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4132 components: - type: Transform pos: -31.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4133 components: - type: Transform pos: -31.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4134 components: - type: Transform pos: -31.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4135 components: - type: Transform pos: -31.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4136 components: - type: Transform pos: -31.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4137 components: - type: Transform pos: -31.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4139 components: - type: Transform pos: -31.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4140 components: - type: Transform pos: -31.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4142 components: - type: Transform pos: -32.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4143 components: - type: Transform pos: -32.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4359 components: - type: Transform @@ -122875,7 +123084,7 @@ entities: pos: -36.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4360 components: - type: Transform @@ -122883,7 +123092,7 @@ entities: pos: -35.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4361 components: - type: Transform @@ -122891,7 +123100,7 @@ entities: pos: -34.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4362 components: - type: Transform @@ -122899,7 +123108,7 @@ entities: pos: -33.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4363 components: - type: Transform @@ -122907,7 +123116,7 @@ entities: pos: -32.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4364 components: - type: Transform @@ -122915,7 +123124,7 @@ entities: pos: -31.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4366 components: - type: Transform @@ -122923,7 +123132,7 @@ entities: pos: -29.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4367 components: - type: Transform @@ -122931,7 +123140,7 @@ entities: pos: -28.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4368 components: - type: Transform @@ -122939,7 +123148,7 @@ entities: pos: -27.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4369 components: - type: Transform @@ -122947,7 +123156,7 @@ entities: pos: -27.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4371 components: - type: Transform @@ -122955,7 +123164,7 @@ entities: pos: -27.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4372 components: - type: Transform @@ -122963,7 +123172,7 @@ entities: pos: -27.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4373 components: - type: Transform @@ -122971,7 +123180,7 @@ entities: pos: -27.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4374 components: - type: Transform @@ -122979,7 +123188,7 @@ entities: pos: -27.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4375 components: - type: Transform @@ -122987,7 +123196,7 @@ entities: pos: -27.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4376 components: - type: Transform @@ -122995,7 +123204,7 @@ entities: pos: -27.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4377 components: - type: Transform @@ -123003,7 +123212,7 @@ entities: pos: -28.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4378 components: - type: Transform @@ -123011,7 +123220,7 @@ entities: pos: -29.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4379 components: - type: Transform @@ -123019,7 +123228,7 @@ entities: pos: -30.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4380 components: - type: Transform @@ -123027,7 +123236,7 @@ entities: pos: -31.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4381 components: - type: Transform @@ -123035,7 +123244,7 @@ entities: pos: -33.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4382 components: - type: Transform @@ -123043,7 +123252,7 @@ entities: pos: -34.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4383 components: - type: Transform @@ -123051,7 +123260,7 @@ entities: pos: -35.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4384 components: - type: Transform @@ -123059,105 +123268,105 @@ entities: pos: -36.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4385 components: - type: Transform pos: -37.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4386 components: - type: Transform pos: -37.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4388 components: - type: Transform pos: -37.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4389 components: - type: Transform pos: -37.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4390 components: - type: Transform pos: -37.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4391 components: - type: Transform pos: -37.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4392 components: - type: Transform pos: -37.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4393 components: - type: Transform pos: -37.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4394 components: - type: Transform pos: -36.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4396 components: - type: Transform pos: -36.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4397 components: - type: Transform pos: -36.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4398 components: - type: Transform pos: -36.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4399 components: - type: Transform pos: -36.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4400 components: - type: Transform pos: -36.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4401 components: - type: Transform @@ -123165,7 +123374,7 @@ entities: pos: -35.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4402 components: - type: Transform @@ -123173,7 +123382,7 @@ entities: pos: -34.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4403 components: - type: Transform @@ -123181,7 +123390,7 @@ entities: pos: -33.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4404 components: - type: Transform @@ -123189,7 +123398,7 @@ entities: pos: -32.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4405 components: - type: Transform @@ -123197,7 +123406,7 @@ entities: pos: -30.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4406 components: - type: Transform @@ -123205,7 +123414,7 @@ entities: pos: -29.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4407 components: - type: Transform @@ -123213,7 +123422,7 @@ entities: pos: -28.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4409 components: - type: Transform @@ -123221,7 +123430,7 @@ entities: pos: -28.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4410 components: - type: Transform @@ -123229,7 +123438,7 @@ entities: pos: -28.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4411 components: - type: Transform @@ -123237,7 +123446,7 @@ entities: pos: -28.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4412 components: - type: Transform @@ -123245,7 +123454,7 @@ entities: pos: -28.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4414 components: - type: Transform @@ -123253,7 +123462,7 @@ entities: pos: -29.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4415 components: - type: Transform @@ -123261,7 +123470,7 @@ entities: pos: -30.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4416 components: - type: Transform @@ -123269,7 +123478,7 @@ entities: pos: -31.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4417 components: - type: Transform @@ -123277,7 +123486,7 @@ entities: pos: -32.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4418 components: - type: Transform @@ -123285,7 +123494,7 @@ entities: pos: -33.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4420 components: - type: Transform @@ -123293,119 +123502,119 @@ entities: pos: -35.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4421 components: - type: Transform pos: -19.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4422 components: - type: Transform pos: -19.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4423 components: - type: Transform pos: -19.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4424 components: - type: Transform pos: -19.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4425 components: - type: Transform pos: -19.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4426 components: - type: Transform pos: -19.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4427 components: - type: Transform pos: -19.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4429 components: - type: Transform pos: -19.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4430 components: - type: Transform pos: -19.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4431 components: - type: Transform pos: -19.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4432 components: - type: Transform pos: -19.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4433 components: - type: Transform pos: -19.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4434 components: - type: Transform pos: -19.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4435 components: - type: Transform pos: -19.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4436 components: - type: Transform pos: -19.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4437 components: - type: Transform pos: -19.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4438 components: - type: Transform @@ -123413,7 +123622,7 @@ entities: pos: -20.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4439 components: - type: Transform @@ -123421,7 +123630,7 @@ entities: pos: -21.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4440 components: - type: Transform @@ -123429,7 +123638,7 @@ entities: pos: -21.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4441 components: - type: Transform @@ -123437,7 +123646,7 @@ entities: pos: -22.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4442 components: - type: Transform @@ -123445,7 +123654,7 @@ entities: pos: -23.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4443 components: - type: Transform @@ -123453,7 +123662,7 @@ entities: pos: -24.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4444 components: - type: Transform @@ -123461,7 +123670,7 @@ entities: pos: -25.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4445 components: - type: Transform @@ -123469,7 +123678,7 @@ entities: pos: -26.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4446 components: - type: Transform @@ -123477,7 +123686,7 @@ entities: pos: -27.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4447 components: - type: Transform @@ -123485,35 +123694,35 @@ entities: pos: -28.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4449 components: - type: Transform pos: -30.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4450 components: - type: Transform pos: -30.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4451 components: - type: Transform pos: -30.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4452 components: - type: Transform pos: -30.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4457 components: - type: Transform @@ -123521,7 +123730,7 @@ entities: pos: -31.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4458 components: - type: Transform @@ -123529,42 +123738,42 @@ entities: pos: -32.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4460 components: - type: Transform pos: -34.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4461 components: - type: Transform pos: -34.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4462 components: - type: Transform pos: -34.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4464 components: - type: Transform pos: -24.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4465 components: - type: Transform pos: -24.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4466 components: - type: Transform @@ -123572,7 +123781,7 @@ entities: pos: -20.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4467 components: - type: Transform @@ -123580,14 +123789,14 @@ entities: pos: -21.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4693 components: - type: Transform pos: -29.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4752 components: - type: Transform @@ -123595,7 +123804,7 @@ entities: pos: -27.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4753 components: - type: Transform @@ -123603,7 +123812,7 @@ entities: pos: -26.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4754 components: - type: Transform @@ -123611,7 +123820,7 @@ entities: pos: -25.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4755 components: - type: Transform @@ -123619,7 +123828,7 @@ entities: pos: -24.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4756 components: - type: Transform @@ -123627,7 +123836,7 @@ entities: pos: -26.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4757 components: - type: Transform @@ -123635,7 +123844,7 @@ entities: pos: -25.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4758 components: - type: Transform @@ -123643,7 +123852,7 @@ entities: pos: -24.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5110 components: - type: Transform @@ -123651,7 +123860,7 @@ entities: pos: -5.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5111 components: - type: Transform @@ -123659,7 +123868,7 @@ entities: pos: -5.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5112 components: - type: Transform @@ -123667,7 +123876,7 @@ entities: pos: -5.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5113 components: - type: Transform @@ -123675,7 +123884,7 @@ entities: pos: -5.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5114 components: - type: Transform @@ -123683,7 +123892,7 @@ entities: pos: -5.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5115 components: - type: Transform @@ -123691,7 +123900,7 @@ entities: pos: -5.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5116 components: - type: Transform @@ -123699,7 +123908,7 @@ entities: pos: -5.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5117 components: - type: Transform @@ -123707,7 +123916,7 @@ entities: pos: -5.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5119 components: - type: Transform @@ -123715,7 +123924,7 @@ entities: pos: -5.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5120 components: - type: Transform @@ -123723,7 +123932,7 @@ entities: pos: -5.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5121 components: - type: Transform @@ -123731,7 +123940,7 @@ entities: pos: -5.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5122 components: - type: Transform @@ -123739,7 +123948,7 @@ entities: pos: -5.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5123 components: - type: Transform @@ -123747,7 +123956,7 @@ entities: pos: -5.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5124 components: - type: Transform @@ -123755,7 +123964,7 @@ entities: pos: -3.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5125 components: - type: Transform @@ -123763,7 +123972,7 @@ entities: pos: -3.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5126 components: - type: Transform @@ -123771,7 +123980,7 @@ entities: pos: -3.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5127 components: - type: Transform @@ -123779,7 +123988,7 @@ entities: pos: -3.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5128 components: - type: Transform @@ -123787,7 +123996,7 @@ entities: pos: -3.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5129 components: - type: Transform @@ -123795,7 +124004,7 @@ entities: pos: -3.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5130 components: - type: Transform @@ -123803,7 +124012,7 @@ entities: pos: -3.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5131 components: - type: Transform @@ -123811,7 +124020,7 @@ entities: pos: -3.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5132 components: - type: Transform @@ -123819,7 +124028,7 @@ entities: pos: -3.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5134 components: - type: Transform @@ -123827,7 +124036,7 @@ entities: pos: -3.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5135 components: - type: Transform @@ -123835,7 +124044,7 @@ entities: pos: -3.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5136 components: - type: Transform @@ -123843,7 +124052,7 @@ entities: pos: -3.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5137 components: - type: Transform @@ -123851,7 +124060,7 @@ entities: pos: -3.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5138 components: - type: Transform @@ -123859,7 +124068,7 @@ entities: pos: -3.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5139 components: - type: Transform @@ -123867,7 +124076,7 @@ entities: pos: -3.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5485 components: - type: Transform @@ -123875,7 +124084,7 @@ entities: pos: -5.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5486 components: - type: Transform @@ -123883,7 +124092,7 @@ entities: pos: -6.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5487 components: - type: Transform @@ -123891,7 +124100,7 @@ entities: pos: -7.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5489 components: - type: Transform @@ -123899,7 +124108,7 @@ entities: pos: -9.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5490 components: - type: Transform @@ -123907,7 +124116,7 @@ entities: pos: -10.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5492 components: - type: Transform @@ -123915,7 +124124,7 @@ entities: pos: -12.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5493 components: - type: Transform @@ -123923,7 +124132,7 @@ entities: pos: -13.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5494 components: - type: Transform @@ -123931,7 +124140,7 @@ entities: pos: -14.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5496 components: - type: Transform @@ -123939,7 +124148,7 @@ entities: pos: -16.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5497 components: - type: Transform @@ -123947,7 +124156,7 @@ entities: pos: -17.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5498 components: - type: Transform @@ -123955,7 +124164,7 @@ entities: pos: -18.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5499 components: - type: Transform @@ -123963,7 +124172,7 @@ entities: pos: -19.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5500 components: - type: Transform @@ -123971,7 +124180,7 @@ entities: pos: -20.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5502 components: - type: Transform @@ -123979,7 +124188,7 @@ entities: pos: -22.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5503 components: - type: Transform @@ -123987,7 +124196,7 @@ entities: pos: -23.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5505 components: - type: Transform @@ -123995,7 +124204,7 @@ entities: pos: -6.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5506 components: - type: Transform @@ -124003,7 +124212,7 @@ entities: pos: -7.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5507 components: - type: Transform @@ -124011,7 +124220,7 @@ entities: pos: -8.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5509 components: - type: Transform @@ -124019,7 +124228,7 @@ entities: pos: -10.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5510 components: - type: Transform @@ -124027,7 +124236,7 @@ entities: pos: -11.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5511 components: - type: Transform @@ -124035,7 +124244,7 @@ entities: pos: -12.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5513 components: - type: Transform @@ -124043,7 +124252,7 @@ entities: pos: -14.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5514 components: - type: Transform @@ -124051,7 +124260,7 @@ entities: pos: -15.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5515 components: - type: Transform @@ -124059,7 +124268,7 @@ entities: pos: -16.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5516 components: - type: Transform @@ -124067,7 +124276,7 @@ entities: pos: -17.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5517 components: - type: Transform @@ -124075,7 +124284,7 @@ entities: pos: -18.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5518 components: - type: Transform @@ -124083,7 +124292,7 @@ entities: pos: -19.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5519 components: - type: Transform @@ -124091,7 +124300,7 @@ entities: pos: -20.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5520 components: - type: Transform @@ -124099,7 +124308,7 @@ entities: pos: -21.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5521 components: - type: Transform @@ -124107,7 +124316,7 @@ entities: pos: -22.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5522 components: - type: Transform @@ -124115,7 +124324,7 @@ entities: pos: -23.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5530 components: - type: Transform @@ -124123,7 +124332,7 @@ entities: pos: -31.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5531 components: - type: Transform @@ -124131,7 +124340,7 @@ entities: pos: -31.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5532 components: - type: Transform @@ -124139,7 +124348,7 @@ entities: pos: -31.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5535 components: - type: Transform @@ -124147,7 +124356,7 @@ entities: pos: -32.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5536 components: - type: Transform @@ -124155,7 +124364,7 @@ entities: pos: -34.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5537 components: - type: Transform @@ -124163,7 +124372,7 @@ entities: pos: -35.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5538 components: - type: Transform @@ -124171,7 +124380,7 @@ entities: pos: -36.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5539 components: - type: Transform @@ -124179,7 +124388,7 @@ entities: pos: -37.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5540 components: - type: Transform @@ -124187,7 +124396,7 @@ entities: pos: -37.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5541 components: - type: Transform @@ -124195,7 +124404,7 @@ entities: pos: -37.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5542 components: - type: Transform @@ -124203,7 +124412,7 @@ entities: pos: -37.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5543 components: - type: Transform @@ -124211,7 +124420,7 @@ entities: pos: -37.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5544 components: - type: Transform @@ -124219,7 +124428,7 @@ entities: pos: -36.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5545 components: - type: Transform @@ -124227,7 +124436,7 @@ entities: pos: -35.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5546 components: - type: Transform @@ -124235,7 +124444,7 @@ entities: pos: -34.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5547 components: - type: Transform @@ -124243,21 +124452,21 @@ entities: pos: -33.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5548 components: - type: Transform pos: -32.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5549 components: - type: Transform pos: -32.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5554 components: - type: Transform @@ -124265,7 +124474,7 @@ entities: pos: -25.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5555 components: - type: Transform @@ -124273,7 +124482,7 @@ entities: pos: -26.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5556 components: - type: Transform @@ -124281,7 +124490,7 @@ entities: pos: -27.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5557 components: - type: Transform @@ -124289,7 +124498,7 @@ entities: pos: -24.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5558 components: - type: Transform @@ -124297,7 +124506,7 @@ entities: pos: -24.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5559 components: - type: Transform @@ -124305,7 +124514,7 @@ entities: pos: -24.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5560 components: - type: Transform @@ -124313,7 +124522,7 @@ entities: pos: -25.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5561 components: - type: Transform @@ -124321,77 +124530,77 @@ entities: pos: -26.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5562 components: - type: Transform pos: -27.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5563 components: - type: Transform pos: -27.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5564 components: - type: Transform pos: -27.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5565 components: - type: Transform pos: -27.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5566 components: - type: Transform pos: -27.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5567 components: - type: Transform pos: -33.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5568 components: - type: Transform pos: -33.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5569 components: - type: Transform pos: -33.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5570 components: - type: Transform pos: -33.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5571 components: - type: Transform pos: -33.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5575 components: - type: Transform @@ -124399,7 +124608,7 @@ entities: pos: -31.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5576 components: - type: Transform @@ -124407,7 +124616,7 @@ entities: pos: -32.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5577 components: - type: Transform @@ -124415,7 +124624,7 @@ entities: pos: -29.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5578 components: - type: Transform @@ -124423,14 +124632,14 @@ entities: pos: -28.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5579 components: - type: Transform pos: -27.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5580 components: - type: Transform @@ -124438,7 +124647,7 @@ entities: pos: -26.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5582 components: - type: Transform @@ -124446,7 +124655,7 @@ entities: pos: -24.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5583 components: - type: Transform @@ -124454,7 +124663,7 @@ entities: pos: -23.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5584 components: - type: Transform @@ -124462,7 +124671,7 @@ entities: pos: -22.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5585 components: - type: Transform @@ -124470,7 +124679,7 @@ entities: pos: -21.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5586 components: - type: Transform @@ -124478,7 +124687,7 @@ entities: pos: -20.5,71.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5587 components: - type: Transform @@ -124486,7 +124695,7 @@ entities: pos: -19.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5588 components: - type: Transform @@ -124494,7 +124703,7 @@ entities: pos: -18.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5589 components: - type: Transform @@ -124502,49 +124711,49 @@ entities: pos: -17.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5591 components: - type: Transform pos: -25.5,66.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5613 components: - type: Transform pos: -25.5,67.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5614 components: - type: Transform pos: -25.5,68.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5615 components: - type: Transform pos: -25.5,69.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5616 components: - type: Transform pos: -25.5,70.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5617 components: - type: Transform pos: -25.5,71.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5619 components: - type: Transform @@ -124552,7 +124761,7 @@ entities: pos: -26.5,73.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5620 components: - type: Transform @@ -124560,7 +124769,7 @@ entities: pos: -27.5,73.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5622 components: - type: Transform @@ -124591,14 +124800,14 @@ entities: pos: -30.5,66.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5641 components: - type: Transform pos: -30.5,67.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5646 components: - type: Transform @@ -124606,7 +124815,7 @@ entities: pos: -21.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5647 components: - type: Transform @@ -124614,7 +124823,7 @@ entities: pos: -21.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5648 components: - type: Transform @@ -124622,7 +124831,7 @@ entities: pos: -22.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5649 components: - type: Transform @@ -124630,7 +124839,7 @@ entities: pos: -22.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5650 components: - type: Transform @@ -124638,7 +124847,7 @@ entities: pos: -21.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5651 components: - type: Transform @@ -124646,7 +124855,7 @@ entities: pos: -21.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5652 components: - type: Transform @@ -124654,7 +124863,7 @@ entities: pos: -21.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5653 components: - type: Transform @@ -124662,7 +124871,7 @@ entities: pos: -21.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5654 components: - type: Transform @@ -124670,7 +124879,7 @@ entities: pos: -15.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5655 components: - type: Transform @@ -124678,7 +124887,7 @@ entities: pos: -15.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5656 components: - type: Transform @@ -124686,28 +124895,28 @@ entities: pos: -15.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5665 components: - type: Transform pos: -8.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5666 components: - type: Transform pos: -9.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5667 components: - type: Transform pos: -9.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5670 components: - type: Transform @@ -124715,7 +124924,7 @@ entities: pos: -13.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5671 components: - type: Transform @@ -124723,7 +124932,7 @@ entities: pos: -13.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5672 components: - type: Transform @@ -124731,7 +124940,7 @@ entities: pos: -13.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5673 components: - type: Transform @@ -124739,7 +124948,7 @@ entities: pos: -13.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5674 components: - type: Transform @@ -124747,7 +124956,7 @@ entities: pos: -13.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5676 components: - type: Transform @@ -124755,7 +124964,7 @@ entities: pos: -13.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5680 components: - type: Transform @@ -124763,7 +124972,7 @@ entities: pos: -16.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5681 components: - type: Transform @@ -124771,7 +124980,7 @@ entities: pos: -14.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5682 components: - type: Transform @@ -124779,7 +124988,7 @@ entities: pos: -15.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5684 components: - type: Transform @@ -124787,7 +124996,7 @@ entities: pos: -16.5,66.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5685 components: - type: Transform @@ -124795,7 +125004,7 @@ entities: pos: -16.5,67.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5686 components: - type: Transform @@ -124803,7 +125012,7 @@ entities: pos: -16.5,68.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5687 components: - type: Transform @@ -124811,7 +125020,7 @@ entities: pos: -16.5,69.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5691 components: - type: Transform @@ -124819,7 +125028,7 @@ entities: pos: -24.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5692 components: - type: Transform @@ -124827,7 +125036,7 @@ entities: pos: -23.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5693 components: - type: Transform @@ -124835,7 +125044,7 @@ entities: pos: -22.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5694 components: - type: Transform @@ -124843,7 +125052,7 @@ entities: pos: -21.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5696 components: - type: Transform @@ -124851,7 +125060,7 @@ entities: pos: -19.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5697 components: - type: Transform @@ -124859,7 +125068,7 @@ entities: pos: -18.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5698 components: - type: Transform @@ -124867,7 +125076,7 @@ entities: pos: -16.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5699 components: - type: Transform @@ -124875,7 +125084,7 @@ entities: pos: -15.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5700 components: - type: Transform @@ -124883,7 +125092,7 @@ entities: pos: -14.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5701 components: - type: Transform @@ -124891,7 +125100,7 @@ entities: pos: -13.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5702 components: - type: Transform @@ -124899,7 +125108,7 @@ entities: pos: -12.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5707 components: - type: Transform @@ -124907,49 +125116,49 @@ entities: pos: -20.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5708 components: - type: Transform pos: -20.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5709 components: - type: Transform pos: -20.5,66.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5714 components: - type: Transform pos: -17.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5715 components: - type: Transform pos: -17.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5716 components: - type: Transform pos: -17.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5717 components: - type: Transform pos: -17.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5718 components: - type: Transform @@ -124957,7 +125166,7 @@ entities: pos: -18.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5719 components: - type: Transform @@ -124965,7 +125174,7 @@ entities: pos: -19.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5726 components: - type: Transform @@ -124973,7 +125182,7 @@ entities: pos: -11.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5727 components: - type: Transform @@ -124981,7 +125190,7 @@ entities: pos: -11.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5728 components: - type: Transform @@ -124989,7 +125198,7 @@ entities: pos: -11.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5729 components: - type: Transform @@ -124997,7 +125206,7 @@ entities: pos: -11.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5730 components: - type: Transform @@ -125005,7 +125214,7 @@ entities: pos: -12.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5731 components: - type: Transform @@ -125013,7 +125222,7 @@ entities: pos: -13.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5732 components: - type: Transform @@ -125021,7 +125230,7 @@ entities: pos: -14.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5733 components: - type: Transform @@ -125029,7 +125238,7 @@ entities: pos: -15.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5734 components: - type: Transform @@ -125037,7 +125246,7 @@ entities: pos: -16.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5735 components: - type: Transform @@ -125045,7 +125254,7 @@ entities: pos: -14.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5736 components: - type: Transform @@ -125053,14 +125262,14 @@ entities: pos: -15.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5737 components: - type: Transform pos: -11.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5738 components: - type: Transform @@ -125068,7 +125277,7 @@ entities: pos: -10.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5739 components: - type: Transform @@ -125076,7 +125285,7 @@ entities: pos: -9.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5740 components: - type: Transform @@ -125084,7 +125293,7 @@ entities: pos: -11.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5741 components: - type: Transform @@ -125092,35 +125301,35 @@ entities: pos: -10.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5742 components: - type: Transform pos: -9.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5743 components: - type: Transform pos: -9.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5744 components: - type: Transform pos: -9.5,66.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5745 components: - type: Transform pos: -9.5,67.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5746 components: - type: Transform @@ -125128,7 +125337,7 @@ entities: pos: -8.5,68.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5747 components: - type: Transform @@ -125136,7 +125345,7 @@ entities: pos: -7.5,69.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5748 components: - type: Transform @@ -125144,7 +125353,7 @@ entities: pos: -7.5,70.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6893 components: - type: Transform @@ -125152,7 +125361,7 @@ entities: pos: 1.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6894 components: - type: Transform @@ -125160,7 +125369,7 @@ entities: pos: 2.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6895 components: - type: Transform @@ -125168,7 +125377,7 @@ entities: pos: -0.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6896 components: - type: Transform @@ -125176,7 +125385,7 @@ entities: pos: 0.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6897 components: - type: Transform @@ -125184,7 +125393,7 @@ entities: pos: 1.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6898 components: - type: Transform @@ -125192,7 +125401,7 @@ entities: pos: 2.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6899 components: - type: Transform @@ -125200,7 +125409,7 @@ entities: pos: 3.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6900 components: - type: Transform @@ -125208,7 +125417,7 @@ entities: pos: 4.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6901 components: - type: Transform @@ -125216,7 +125425,7 @@ entities: pos: 3.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6902 components: - type: Transform @@ -125224,7 +125433,7 @@ entities: pos: 4.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7004 components: - type: Transform @@ -125232,7 +125441,7 @@ entities: pos: 1.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7119 components: - type: Transform @@ -125240,7 +125449,7 @@ entities: pos: 23.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7124 components: - type: Transform @@ -125248,7 +125457,7 @@ entities: pos: 25.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7125 components: - type: Transform @@ -125256,7 +125465,7 @@ entities: pos: 23.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7126 components: - type: Transform @@ -125264,7 +125473,7 @@ entities: pos: 25.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7127 components: - type: Transform @@ -125272,7 +125481,7 @@ entities: pos: 25.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7128 components: - type: Transform @@ -125280,7 +125489,7 @@ entities: pos: 23.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7131 components: - type: Transform @@ -125288,7 +125497,7 @@ entities: pos: 23.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7881 components: - type: Transform @@ -125296,7 +125505,7 @@ entities: pos: 23.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7883 components: - type: Transform @@ -125304,7 +125513,7 @@ entities: pos: 17.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7884 components: - type: Transform @@ -125312,7 +125521,7 @@ entities: pos: 18.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7885 components: - type: Transform @@ -125320,7 +125529,7 @@ entities: pos: 19.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7886 components: - type: Transform @@ -125328,7 +125537,7 @@ entities: pos: 20.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7887 components: - type: Transform @@ -125336,7 +125545,7 @@ entities: pos: 21.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7889 components: - type: Transform @@ -125344,7 +125553,7 @@ entities: pos: 17.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7890 components: - type: Transform @@ -125352,7 +125561,7 @@ entities: pos: 18.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7891 components: - type: Transform @@ -125360,7 +125569,7 @@ entities: pos: 19.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7892 components: - type: Transform @@ -125368,7 +125577,7 @@ entities: pos: 20.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7893 components: - type: Transform @@ -125376,7 +125585,7 @@ entities: pos: 21.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7894 components: - type: Transform @@ -125384,7 +125593,7 @@ entities: pos: 22.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7895 components: - type: Transform @@ -125392,7 +125601,7 @@ entities: pos: 23.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7896 components: - type: Transform @@ -125400,7 +125609,7 @@ entities: pos: 25.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7897 components: - type: Transform @@ -125408,7 +125617,7 @@ entities: pos: 23.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7898 components: - type: Transform @@ -125416,7 +125625,7 @@ entities: pos: 22.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7900 components: - type: Transform @@ -125424,7 +125633,7 @@ entities: pos: 24.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7908 components: - type: Transform @@ -125432,7 +125641,7 @@ entities: pos: 25.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7909 components: - type: Transform @@ -125440,7 +125649,7 @@ entities: pos: 25.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7910 components: - type: Transform @@ -125448,7 +125657,7 @@ entities: pos: 25.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7911 components: - type: Transform @@ -125456,7 +125665,7 @@ entities: pos: 25.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7913 components: - type: Transform @@ -125464,7 +125673,7 @@ entities: pos: 25.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7914 components: - type: Transform @@ -125472,7 +125681,7 @@ entities: pos: 25.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7916 components: - type: Transform @@ -125480,7 +125689,7 @@ entities: pos: 25.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7917 components: - type: Transform @@ -125488,7 +125697,7 @@ entities: pos: 25.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7918 components: - type: Transform @@ -125496,7 +125705,7 @@ entities: pos: 25.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7919 components: - type: Transform @@ -125504,7 +125713,7 @@ entities: pos: 25.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7920 components: - type: Transform @@ -125512,7 +125721,7 @@ entities: pos: 25.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7921 components: - type: Transform @@ -125520,7 +125729,7 @@ entities: pos: 25.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7922 components: - type: Transform @@ -125528,7 +125737,7 @@ entities: pos: 25.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7923 components: - type: Transform @@ -125536,7 +125745,7 @@ entities: pos: 24.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7924 components: - type: Transform @@ -125544,7 +125753,7 @@ entities: pos: 25.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7925 components: - type: Transform @@ -125552,7 +125761,7 @@ entities: pos: 25.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7926 components: - type: Transform @@ -125560,7 +125769,7 @@ entities: pos: 25.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7928 components: - type: Transform @@ -125568,7 +125777,7 @@ entities: pos: 25.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7929 components: - type: Transform @@ -125576,7 +125785,7 @@ entities: pos: 25.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7930 components: - type: Transform @@ -125584,7 +125793,7 @@ entities: pos: 25.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7931 components: - type: Transform @@ -125592,7 +125801,7 @@ entities: pos: 25.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7933 components: - type: Transform @@ -125600,7 +125809,7 @@ entities: pos: 25.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7936 components: - type: Transform @@ -125608,7 +125817,7 @@ entities: pos: 25.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7937 components: - type: Transform @@ -125616,7 +125825,7 @@ entities: pos: 25.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7938 components: - type: Transform @@ -125624,7 +125833,7 @@ entities: pos: 25.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7939 components: - type: Transform @@ -125632,7 +125841,7 @@ entities: pos: 25.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7940 components: - type: Transform @@ -125640,7 +125849,7 @@ entities: pos: 25.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7941 components: - type: Transform @@ -125648,7 +125857,7 @@ entities: pos: 25.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7942 components: - type: Transform @@ -125656,7 +125865,7 @@ entities: pos: 23.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7943 components: - type: Transform @@ -125664,7 +125873,7 @@ entities: pos: 23.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7944 components: - type: Transform @@ -125672,7 +125881,7 @@ entities: pos: 23.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7945 components: - type: Transform @@ -125680,7 +125889,7 @@ entities: pos: 23.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7946 components: - type: Transform @@ -125688,7 +125897,7 @@ entities: pos: 23.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7947 components: - type: Transform @@ -125696,7 +125905,7 @@ entities: pos: 23.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7948 components: - type: Transform @@ -125704,7 +125913,7 @@ entities: pos: 23.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7950 components: - type: Transform @@ -125712,7 +125921,7 @@ entities: pos: 23.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7951 components: - type: Transform @@ -125720,7 +125929,7 @@ entities: pos: 23.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7952 components: - type: Transform @@ -125728,7 +125937,7 @@ entities: pos: 23.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7953 components: - type: Transform @@ -125736,7 +125945,7 @@ entities: pos: 23.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7954 components: - type: Transform @@ -125744,7 +125953,7 @@ entities: pos: 23.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7955 components: - type: Transform @@ -125752,7 +125961,7 @@ entities: pos: 23.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7957 components: - type: Transform @@ -125760,7 +125969,7 @@ entities: pos: 23.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7958 components: - type: Transform @@ -125768,7 +125977,7 @@ entities: pos: 23.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7959 components: - type: Transform @@ -125776,7 +125985,7 @@ entities: pos: 23.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7961 components: - type: Transform @@ -125784,7 +125993,7 @@ entities: pos: 23.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7962 components: - type: Transform @@ -125792,7 +126001,7 @@ entities: pos: 23.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7963 components: - type: Transform @@ -125800,7 +126009,7 @@ entities: pos: 23.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7964 components: - type: Transform @@ -125808,7 +126017,7 @@ entities: pos: 23.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7966 components: - type: Transform @@ -125816,7 +126025,7 @@ entities: pos: 23.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7968 components: - type: Transform @@ -125824,7 +126033,7 @@ entities: pos: 23.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7969 components: - type: Transform @@ -125832,7 +126041,7 @@ entities: pos: 23.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7970 components: - type: Transform @@ -125840,7 +126049,7 @@ entities: pos: 23.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7971 components: - type: Transform @@ -125848,7 +126057,7 @@ entities: pos: 23.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7972 components: - type: Transform @@ -125856,7 +126065,7 @@ entities: pos: 23.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7973 components: - type: Transform @@ -125864,7 +126073,7 @@ entities: pos: 23.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7974 components: - type: Transform @@ -125872,7 +126081,7 @@ entities: pos: 25.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7975 components: - type: Transform @@ -125880,7 +126089,7 @@ entities: pos: 25.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7976 components: - type: Transform @@ -125888,7 +126097,7 @@ entities: pos: 24.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7977 components: - type: Transform @@ -125896,7 +126105,7 @@ entities: pos: 25.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7978 components: - type: Transform @@ -125904,7 +126113,7 @@ entities: pos: 22.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7979 components: - type: Transform @@ -125912,7 +126121,7 @@ entities: pos: 21.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7980 components: - type: Transform @@ -125920,7 +126129,7 @@ entities: pos: 20.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7981 components: - type: Transform @@ -125928,7 +126137,7 @@ entities: pos: 19.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7982 components: - type: Transform @@ -125936,7 +126145,7 @@ entities: pos: 18.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7983 components: - type: Transform @@ -125944,7 +126153,7 @@ entities: pos: 17.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7984 components: - type: Transform @@ -125952,7 +126161,7 @@ entities: pos: 16.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7985 components: - type: Transform @@ -125960,7 +126169,7 @@ entities: pos: 15.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7986 components: - type: Transform @@ -125968,7 +126177,7 @@ entities: pos: 14.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7987 components: - type: Transform @@ -125976,7 +126185,7 @@ entities: pos: 13.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7989 components: - type: Transform @@ -125984,7 +126193,7 @@ entities: pos: 11.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7990 components: - type: Transform @@ -125992,7 +126201,7 @@ entities: pos: 10.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7992 components: - type: Transform @@ -126000,7 +126209,7 @@ entities: pos: 8.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7993 components: - type: Transform @@ -126008,7 +126217,7 @@ entities: pos: 7.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7994 components: - type: Transform @@ -126016,7 +126225,7 @@ entities: pos: 6.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7995 components: - type: Transform @@ -126024,7 +126233,7 @@ entities: pos: 5.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7996 components: - type: Transform @@ -126032,7 +126241,7 @@ entities: pos: 4.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7997 components: - type: Transform @@ -126040,7 +126249,7 @@ entities: pos: 3.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7998 components: - type: Transform @@ -126048,7 +126257,7 @@ entities: pos: 2.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7999 components: - type: Transform @@ -126056,7 +126265,7 @@ entities: pos: 1.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8002 components: - type: Transform @@ -126064,7 +126273,7 @@ entities: pos: -0.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8003 components: - type: Transform @@ -126072,7 +126281,7 @@ entities: pos: 0.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8004 components: - type: Transform @@ -126080,7 +126289,7 @@ entities: pos: 1.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8005 components: - type: Transform @@ -126088,7 +126297,7 @@ entities: pos: 2.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8007 components: - type: Transform @@ -126096,7 +126305,7 @@ entities: pos: 4.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8008 components: - type: Transform @@ -126104,7 +126313,7 @@ entities: pos: 5.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8009 components: - type: Transform @@ -126112,7 +126321,7 @@ entities: pos: 6.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8010 components: - type: Transform @@ -126120,7 +126329,7 @@ entities: pos: 7.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8011 components: - type: Transform @@ -126128,7 +126337,7 @@ entities: pos: 8.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8012 components: - type: Transform @@ -126136,7 +126345,7 @@ entities: pos: 9.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8013 components: - type: Transform @@ -126144,7 +126353,7 @@ entities: pos: 10.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8014 components: - type: Transform @@ -126152,7 +126361,7 @@ entities: pos: 11.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8015 components: - type: Transform @@ -126160,7 +126369,7 @@ entities: pos: 12.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8016 components: - type: Transform @@ -126168,7 +126377,7 @@ entities: pos: 13.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8019 components: - type: Transform @@ -126176,7 +126385,7 @@ entities: pos: 16.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8020 components: - type: Transform @@ -126184,7 +126393,7 @@ entities: pos: 17.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8021 components: - type: Transform @@ -126192,7 +126401,7 @@ entities: pos: 18.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8022 components: - type: Transform @@ -126200,7 +126409,7 @@ entities: pos: 19.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8023 components: - type: Transform @@ -126208,7 +126417,7 @@ entities: pos: 20.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8024 components: - type: Transform @@ -126216,7 +126425,7 @@ entities: pos: 21.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8025 components: - type: Transform @@ -126224,7 +126433,7 @@ entities: pos: 22.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8026 components: - type: Transform @@ -126232,7 +126441,7 @@ entities: pos: 23.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8027 components: - type: Transform @@ -126240,7 +126449,7 @@ entities: pos: 24.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8031 components: - type: Transform @@ -126248,7 +126457,7 @@ entities: pos: 9.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8032 components: - type: Transform @@ -126256,7 +126465,7 @@ entities: pos: 9.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8033 components: - type: Transform @@ -126264,7 +126473,7 @@ entities: pos: 10.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8034 components: - type: Transform @@ -126272,7 +126481,7 @@ entities: pos: 11.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8035 components: - type: Transform @@ -126280,7 +126489,7 @@ entities: pos: 12.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8036 components: - type: Transform @@ -126288,7 +126497,7 @@ entities: pos: 13.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8037 components: - type: Transform @@ -126296,7 +126505,7 @@ entities: pos: 14.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8038 components: - type: Transform @@ -126304,7 +126513,7 @@ entities: pos: 15.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8039 components: - type: Transform @@ -126312,7 +126521,7 @@ entities: pos: 16.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8040 components: - type: Transform @@ -126320,28 +126529,28 @@ entities: pos: 17.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8041 components: - type: Transform pos: 18.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8042 components: - type: Transform pos: 18.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8043 components: - type: Transform pos: 18.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8044 components: - type: Transform @@ -126349,7 +126558,7 @@ entities: pos: 19.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8045 components: - type: Transform @@ -126357,7 +126566,7 @@ entities: pos: 20.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8046 components: - type: Transform @@ -126365,7 +126574,7 @@ entities: pos: 21.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8047 components: - type: Transform @@ -126373,7 +126582,7 @@ entities: pos: 22.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8070 components: - type: Transform @@ -126381,7 +126590,7 @@ entities: pos: 26.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8071 components: - type: Transform @@ -126389,7 +126598,7 @@ entities: pos: 27.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8073 components: - type: Transform @@ -126397,7 +126606,7 @@ entities: pos: 29.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8074 components: - type: Transform @@ -126405,7 +126614,7 @@ entities: pos: 30.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8077 components: - type: Transform @@ -126413,7 +126622,7 @@ entities: pos: 33.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8079 components: - type: Transform @@ -126421,7 +126630,7 @@ entities: pos: 35.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8081 components: - type: Transform @@ -126429,7 +126638,7 @@ entities: pos: 37.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8083 components: - type: Transform @@ -126437,7 +126646,7 @@ entities: pos: 39.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8084 components: - type: Transform @@ -126445,7 +126654,7 @@ entities: pos: 40.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8085 components: - type: Transform @@ -126453,7 +126662,7 @@ entities: pos: 41.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8086 components: - type: Transform @@ -126461,7 +126670,7 @@ entities: pos: 42.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8087 components: - type: Transform @@ -126469,7 +126678,7 @@ entities: pos: 24.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8088 components: - type: Transform @@ -126477,7 +126686,7 @@ entities: pos: 25.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8089 components: - type: Transform @@ -126485,7 +126694,7 @@ entities: pos: 26.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8091 components: - type: Transform @@ -126493,7 +126702,7 @@ entities: pos: 28.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8092 components: - type: Transform @@ -126501,7 +126710,7 @@ entities: pos: 29.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8094 components: - type: Transform @@ -126509,7 +126718,7 @@ entities: pos: 31.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8095 components: - type: Transform @@ -126517,7 +126726,7 @@ entities: pos: 32.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8097 components: - type: Transform @@ -126525,7 +126734,7 @@ entities: pos: 34.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8099 components: - type: Transform @@ -126533,7 +126742,7 @@ entities: pos: 36.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8101 components: - type: Transform @@ -126541,7 +126750,7 @@ entities: pos: 38.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8102 components: - type: Transform @@ -126549,7 +126758,7 @@ entities: pos: 39.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8103 components: - type: Transform @@ -126557,7 +126766,7 @@ entities: pos: 40.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8104 components: - type: Transform @@ -126565,7 +126774,7 @@ entities: pos: 41.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8107 components: - type: Transform @@ -126573,7 +126782,7 @@ entities: pos: 42.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8109 components: - type: Transform @@ -126581,7 +126790,7 @@ entities: pos: 42.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8110 components: - type: Transform @@ -126589,7 +126798,7 @@ entities: pos: 42.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8112 components: - type: Transform @@ -126597,7 +126806,7 @@ entities: pos: 43.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8113 components: - type: Transform @@ -126605,7 +126814,7 @@ entities: pos: 43.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8114 components: - type: Transform @@ -126613,7 +126822,7 @@ entities: pos: 43.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8115 components: - type: Transform @@ -126621,7 +126830,7 @@ entities: pos: 44.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8116 components: - type: Transform @@ -126629,7 +126838,7 @@ entities: pos: 45.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8117 components: - type: Transform @@ -126637,7 +126846,7 @@ entities: pos: 46.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8118 components: - type: Transform @@ -126645,7 +126854,7 @@ entities: pos: 47.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8119 components: - type: Transform @@ -126653,7 +126862,7 @@ entities: pos: 48.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8120 components: - type: Transform @@ -126661,147 +126870,147 @@ entities: pos: 49.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8121 components: - type: Transform pos: 50.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8122 components: - type: Transform pos: 50.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8124 components: - type: Transform pos: 50.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8125 components: - type: Transform pos: 50.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8126 components: - type: Transform pos: 50.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8127 components: - type: Transform pos: 50.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8128 components: - type: Transform pos: 50.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8129 components: - type: Transform pos: 50.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8130 components: - type: Transform pos: 42.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8131 components: - type: Transform pos: 42.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8132 components: - type: Transform pos: 42.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8133 components: - type: Transform pos: 42.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8134 components: - type: Transform pos: 42.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8148 components: - type: Transform pos: 42.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8149 components: - type: Transform pos: 42.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8150 components: - type: Transform pos: 42.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8151 components: - type: Transform pos: 42.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8152 components: - type: Transform pos: 42.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8153 components: - type: Transform pos: 42.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8154 components: - type: Transform pos: 42.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8155 components: - type: Transform @@ -126809,7 +127018,7 @@ entities: pos: 43.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8156 components: - type: Transform @@ -126817,7 +127026,7 @@ entities: pos: 48.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8157 components: - type: Transform @@ -126825,7 +127034,7 @@ entities: pos: 49.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8158 components: - type: Transform @@ -126833,7 +127042,7 @@ entities: pos: 50.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8159 components: - type: Transform @@ -126841,7 +127050,7 @@ entities: pos: 50.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8160 components: - type: Transform @@ -126849,7 +127058,7 @@ entities: pos: 50.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8161 components: - type: Transform @@ -126857,7 +127066,7 @@ entities: pos: 50.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8162 components: - type: Transform @@ -126865,7 +127074,7 @@ entities: pos: 50.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8163 components: - type: Transform @@ -126873,7 +127082,7 @@ entities: pos: 50.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8164 components: - type: Transform @@ -126881,7 +127090,7 @@ entities: pos: 50.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8171 components: - type: Transform @@ -126889,7 +127098,7 @@ entities: pos: 24.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8172 components: - type: Transform @@ -126897,7 +127106,7 @@ entities: pos: 25.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8173 components: - type: Transform @@ -126905,7 +127114,7 @@ entities: pos: 26.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8174 components: - type: Transform @@ -126913,7 +127122,7 @@ entities: pos: 27.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8175 components: - type: Transform @@ -126921,7 +127130,7 @@ entities: pos: 28.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8177 components: - type: Transform @@ -126929,7 +127138,7 @@ entities: pos: 30.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8178 components: - type: Transform @@ -126937,7 +127146,7 @@ entities: pos: 31.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8179 components: - type: Transform @@ -126945,7 +127154,7 @@ entities: pos: 32.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8180 components: - type: Transform @@ -126953,7 +127162,7 @@ entities: pos: 33.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8181 components: - type: Transform @@ -126961,7 +127170,7 @@ entities: pos: 34.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8182 components: - type: Transform @@ -126969,7 +127178,7 @@ entities: pos: 35.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8183 components: - type: Transform @@ -126977,7 +127186,7 @@ entities: pos: 36.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8184 components: - type: Transform @@ -126985,7 +127194,7 @@ entities: pos: 37.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8185 components: - type: Transform @@ -126993,7 +127202,7 @@ entities: pos: 38.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8186 components: - type: Transform @@ -127001,7 +127210,7 @@ entities: pos: 39.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8187 components: - type: Transform @@ -127009,7 +127218,7 @@ entities: pos: 40.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8189 components: - type: Transform @@ -127017,7 +127226,7 @@ entities: pos: 42.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8190 components: - type: Transform @@ -127025,7 +127234,7 @@ entities: pos: 43.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8191 components: - type: Transform @@ -127033,7 +127242,7 @@ entities: pos: 44.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8192 components: - type: Transform @@ -127041,7 +127250,7 @@ entities: pos: 45.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8193 components: - type: Transform @@ -127049,7 +127258,7 @@ entities: pos: 46.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8195 components: - type: Transform @@ -127057,7 +127266,7 @@ entities: pos: 48.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8196 components: - type: Transform @@ -127065,7 +127274,7 @@ entities: pos: 49.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8197 components: - type: Transform @@ -127073,7 +127282,7 @@ entities: pos: 50.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8198 components: - type: Transform @@ -127081,7 +127290,7 @@ entities: pos: 51.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8199 components: - type: Transform @@ -127089,7 +127298,7 @@ entities: pos: 52.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8200 components: - type: Transform @@ -127097,7 +127306,7 @@ entities: pos: 53.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8201 components: - type: Transform @@ -127105,7 +127314,7 @@ entities: pos: 54.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8202 components: - type: Transform @@ -127113,7 +127322,7 @@ entities: pos: 54.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8203 components: - type: Transform @@ -127121,7 +127330,7 @@ entities: pos: 54.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8204 components: - type: Transform @@ -127129,7 +127338,7 @@ entities: pos: 54.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8205 components: - type: Transform @@ -127137,7 +127346,7 @@ entities: pos: 54.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8206 components: - type: Transform @@ -127145,7 +127354,7 @@ entities: pos: 54.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8208 components: - type: Transform @@ -127153,7 +127362,7 @@ entities: pos: 54.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8209 components: - type: Transform @@ -127161,7 +127370,7 @@ entities: pos: 54.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8210 components: - type: Transform @@ -127169,7 +127378,7 @@ entities: pos: 54.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8211 components: - type: Transform @@ -127177,7 +127386,7 @@ entities: pos: 54.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8212 components: - type: Transform @@ -127185,7 +127394,7 @@ entities: pos: 54.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8214 components: - type: Transform @@ -127193,7 +127402,7 @@ entities: pos: 54.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8215 components: - type: Transform @@ -127201,7 +127410,7 @@ entities: pos: 54.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8216 components: - type: Transform @@ -127209,7 +127418,7 @@ entities: pos: 54.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8217 components: - type: Transform @@ -127217,7 +127426,7 @@ entities: pos: 54.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8218 components: - type: Transform @@ -127225,7 +127434,7 @@ entities: pos: 54.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8219 components: - type: Transform @@ -127233,7 +127442,7 @@ entities: pos: 54.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8221 components: - type: Transform @@ -127241,7 +127450,7 @@ entities: pos: 54.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8222 components: - type: Transform @@ -127249,7 +127458,7 @@ entities: pos: 54.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8223 components: - type: Transform @@ -127257,7 +127466,7 @@ entities: pos: 54.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8224 components: - type: Transform @@ -127265,7 +127474,7 @@ entities: pos: 54.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8225 components: - type: Transform @@ -127273,7 +127482,7 @@ entities: pos: 54.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8226 components: - type: Transform @@ -127281,7 +127490,7 @@ entities: pos: 54.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8227 components: - type: Transform @@ -127289,7 +127498,7 @@ entities: pos: 54.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8228 components: - type: Transform @@ -127297,7 +127506,7 @@ entities: pos: 54.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8231 components: - type: Transform @@ -127305,7 +127514,7 @@ entities: pos: 54.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8232 components: - type: Transform @@ -127313,7 +127522,7 @@ entities: pos: 54.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8233 components: - type: Transform @@ -127321,7 +127530,7 @@ entities: pos: 53.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8234 components: - type: Transform @@ -127329,7 +127538,7 @@ entities: pos: 52.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8235 components: - type: Transform @@ -127337,7 +127546,7 @@ entities: pos: 51.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8236 components: - type: Transform @@ -127345,7 +127554,7 @@ entities: pos: 50.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8237 components: - type: Transform @@ -127353,7 +127562,7 @@ entities: pos: 49.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8238 components: - type: Transform @@ -127361,7 +127570,7 @@ entities: pos: 48.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8239 components: - type: Transform @@ -127369,7 +127578,7 @@ entities: pos: 47.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8241 components: - type: Transform @@ -127377,7 +127586,7 @@ entities: pos: 45.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8242 components: - type: Transform @@ -127385,7 +127594,7 @@ entities: pos: 44.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8243 components: - type: Transform @@ -127393,7 +127602,7 @@ entities: pos: 43.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8244 components: - type: Transform @@ -127401,7 +127610,7 @@ entities: pos: 42.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8245 components: - type: Transform @@ -127409,7 +127618,7 @@ entities: pos: 41.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8246 components: - type: Transform @@ -127417,7 +127626,7 @@ entities: pos: 40.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8247 components: - type: Transform @@ -127425,7 +127634,7 @@ entities: pos: 39.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8248 components: - type: Transform @@ -127433,7 +127642,7 @@ entities: pos: 38.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8249 components: - type: Transform @@ -127441,7 +127650,7 @@ entities: pos: 37.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8250 components: - type: Transform @@ -127449,7 +127658,7 @@ entities: pos: 36.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8251 components: - type: Transform @@ -127457,7 +127666,7 @@ entities: pos: 35.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8252 components: - type: Transform @@ -127465,7 +127674,7 @@ entities: pos: 34.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8253 components: - type: Transform @@ -127473,7 +127682,7 @@ entities: pos: 33.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8254 components: - type: Transform @@ -127481,7 +127690,7 @@ entities: pos: 32.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8255 components: - type: Transform @@ -127489,7 +127698,7 @@ entities: pos: 31.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8257 components: - type: Transform @@ -127497,7 +127706,7 @@ entities: pos: 29.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8258 components: - type: Transform @@ -127505,7 +127714,7 @@ entities: pos: 28.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8259 components: - type: Transform @@ -127513,7 +127722,7 @@ entities: pos: 27.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8260 components: - type: Transform @@ -127521,7 +127730,7 @@ entities: pos: 26.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8261 components: - type: Transform @@ -127529,7 +127738,7 @@ entities: pos: 26.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8262 components: - type: Transform @@ -127537,7 +127746,7 @@ entities: pos: 27.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8264 components: - type: Transform @@ -127545,7 +127754,7 @@ entities: pos: 29.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8265 components: - type: Transform @@ -127553,7 +127762,7 @@ entities: pos: 30.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8266 components: - type: Transform @@ -127561,7 +127770,7 @@ entities: pos: 31.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8267 components: - type: Transform @@ -127569,7 +127778,7 @@ entities: pos: 32.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8268 components: - type: Transform @@ -127577,7 +127786,7 @@ entities: pos: 33.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8269 components: - type: Transform @@ -127585,7 +127794,7 @@ entities: pos: 34.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8270 components: - type: Transform @@ -127593,7 +127802,7 @@ entities: pos: 35.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8271 components: - type: Transform @@ -127601,7 +127810,7 @@ entities: pos: 36.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8272 components: - type: Transform @@ -127609,7 +127818,7 @@ entities: pos: 37.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8273 components: - type: Transform @@ -127617,7 +127826,7 @@ entities: pos: 38.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8274 components: - type: Transform @@ -127625,7 +127834,7 @@ entities: pos: 39.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8275 components: - type: Transform @@ -127633,7 +127842,7 @@ entities: pos: 40.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8276 components: - type: Transform @@ -127641,7 +127850,7 @@ entities: pos: 41.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8277 components: - type: Transform @@ -127649,7 +127858,7 @@ entities: pos: 42.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8278 components: - type: Transform @@ -127657,7 +127866,7 @@ entities: pos: 43.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8280 components: - type: Transform @@ -127665,7 +127874,7 @@ entities: pos: 45.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8281 components: - type: Transform @@ -127673,7 +127882,7 @@ entities: pos: 46.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8282 components: - type: Transform @@ -127681,7 +127890,7 @@ entities: pos: 47.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8283 components: - type: Transform @@ -127689,7 +127898,7 @@ entities: pos: 48.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8284 components: - type: Transform @@ -127697,7 +127906,7 @@ entities: pos: 49.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8285 components: - type: Transform @@ -127705,7 +127914,7 @@ entities: pos: 50.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8286 components: - type: Transform @@ -127713,7 +127922,7 @@ entities: pos: 51.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8287 components: - type: Transform @@ -127721,7 +127930,7 @@ entities: pos: 52.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8288 components: - type: Transform @@ -127729,7 +127938,7 @@ entities: pos: 53.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8289 components: - type: Transform @@ -127737,7 +127946,7 @@ entities: pos: 54.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8290 components: - type: Transform @@ -127745,224 +127954,224 @@ entities: pos: 55.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8291 components: - type: Transform pos: 56.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8294 components: - type: Transform pos: 56.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8295 components: - type: Transform pos: 56.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8296 components: - type: Transform pos: 56.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8297 components: - type: Transform pos: 56.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8298 components: - type: Transform pos: 56.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8299 components: - type: Transform pos: 56.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8300 components: - type: Transform pos: 56.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8301 components: - type: Transform pos: 56.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8302 components: - type: Transform pos: 56.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8303 components: - type: Transform pos: 56.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8304 components: - type: Transform pos: 56.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8305 components: - type: Transform pos: 56.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8306 components: - type: Transform pos: 56.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8307 components: - type: Transform pos: 56.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8308 components: - type: Transform pos: 56.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8310 components: - type: Transform pos: 56.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8311 components: - type: Transform pos: 56.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8312 components: - type: Transform pos: 56.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8313 components: - type: Transform pos: 56.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8315 components: - type: Transform pos: 56.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8316 components: - type: Transform pos: 56.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8317 components: - type: Transform pos: 56.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8318 components: - type: Transform pos: 56.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8320 components: - type: Transform pos: 56.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8321 components: - type: Transform pos: 56.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8322 components: - type: Transform pos: 56.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8323 components: - type: Transform pos: 56.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8324 components: - type: Transform pos: 56.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8325 components: - type: Transform pos: 56.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8326 components: - type: Transform pos: 56.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8327 components: - type: Transform @@ -127970,7 +128179,7 @@ entities: pos: 55.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8328 components: - type: Transform @@ -127978,7 +128187,7 @@ entities: pos: 54.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8329 components: - type: Transform @@ -127986,7 +128195,7 @@ entities: pos: 53.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8330 components: - type: Transform @@ -127994,7 +128203,7 @@ entities: pos: 52.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8331 components: - type: Transform @@ -128002,7 +128211,7 @@ entities: pos: 51.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8333 components: - type: Transform @@ -128010,7 +128219,7 @@ entities: pos: 49.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8334 components: - type: Transform @@ -128018,7 +128227,7 @@ entities: pos: 48.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8335 components: - type: Transform @@ -128026,7 +128235,7 @@ entities: pos: 47.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8336 components: - type: Transform @@ -128034,7 +128243,7 @@ entities: pos: 46.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8337 components: - type: Transform @@ -128042,7 +128251,7 @@ entities: pos: 45.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8338 components: - type: Transform @@ -128050,7 +128259,7 @@ entities: pos: 44.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8340 components: - type: Transform @@ -128058,7 +128267,7 @@ entities: pos: 42.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8341 components: - type: Transform @@ -128066,7 +128275,7 @@ entities: pos: 41.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8342 components: - type: Transform @@ -128074,7 +128283,7 @@ entities: pos: 40.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8343 components: - type: Transform @@ -128082,7 +128291,7 @@ entities: pos: 39.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8344 components: - type: Transform @@ -128090,7 +128299,7 @@ entities: pos: 38.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8345 components: - type: Transform @@ -128098,7 +128307,7 @@ entities: pos: 37.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8346 components: - type: Transform @@ -128106,7 +128315,7 @@ entities: pos: 36.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8348 components: - type: Transform @@ -128114,7 +128323,7 @@ entities: pos: 34.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8349 components: - type: Transform @@ -128122,7 +128331,7 @@ entities: pos: 33.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8350 components: - type: Transform @@ -128130,7 +128339,7 @@ entities: pos: 32.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8351 components: - type: Transform @@ -128138,7 +128347,7 @@ entities: pos: 31.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8352 components: - type: Transform @@ -128146,7 +128355,7 @@ entities: pos: 30.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8353 components: - type: Transform @@ -128154,7 +128363,7 @@ entities: pos: 29.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8354 components: - type: Transform @@ -128162,7 +128371,7 @@ entities: pos: 28.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8355 components: - type: Transform @@ -128170,7 +128379,7 @@ entities: pos: 27.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8356 components: - type: Transform @@ -128178,7 +128387,7 @@ entities: pos: 26.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8411 components: - type: Transform @@ -128186,7 +128395,7 @@ entities: pos: 50.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8412 components: - type: Transform @@ -128194,7 +128403,7 @@ entities: pos: 52.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8413 components: - type: Transform @@ -128202,7 +128411,7 @@ entities: pos: 53.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8414 components: - type: Transform @@ -128210,7 +128419,7 @@ entities: pos: 54.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8417 components: - type: Transform @@ -128218,7 +128427,7 @@ entities: pos: 42.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8418 components: - type: Transform @@ -128226,7 +128435,7 @@ entities: pos: 42.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8419 components: - type: Transform @@ -128234,7 +128443,7 @@ entities: pos: 42.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8420 components: - type: Transform @@ -128242,133 +128451,133 @@ entities: pos: 42.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8422 components: - type: Transform pos: 27.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8423 components: - type: Transform pos: 27.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8424 components: - type: Transform pos: 27.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8425 components: - type: Transform pos: 27.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8426 components: - type: Transform pos: 30.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8427 components: - type: Transform pos: 30.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8428 components: - type: Transform pos: 30.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8429 components: - type: Transform pos: 30.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8430 components: - type: Transform pos: 33.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8431 components: - type: Transform pos: 33.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8432 components: - type: Transform pos: 33.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8433 components: - type: Transform pos: 33.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8434 components: - type: Transform pos: 37.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8435 components: - type: Transform pos: 37.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8436 components: - type: Transform pos: 37.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8437 components: - type: Transform pos: 37.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8438 components: - type: Transform pos: 35.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8439 components: - type: Transform pos: 35.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8441 components: - type: Transform @@ -128376,7 +128585,7 @@ entities: pos: 34.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8442 components: - type: Transform @@ -128384,7 +128593,7 @@ entities: pos: 35.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8443 components: - type: Transform @@ -128392,7 +128601,7 @@ entities: pos: 36.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8444 components: - type: Transform @@ -128400,7 +128609,7 @@ entities: pos: 36.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8445 components: - type: Transform @@ -128408,7 +128617,7 @@ entities: pos: 36.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8446 components: - type: Transform @@ -128416,7 +128625,7 @@ entities: pos: 36.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8447 components: - type: Transform @@ -128424,7 +128633,7 @@ entities: pos: 36.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8448 components: - type: Transform @@ -128432,7 +128641,7 @@ entities: pos: 36.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8449 components: - type: Transform @@ -128440,7 +128649,7 @@ entities: pos: 36.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8451 components: - type: Transform @@ -128448,126 +128657,126 @@ entities: pos: 34.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8454 components: - type: Transform pos: 38.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8455 components: - type: Transform pos: 38.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8456 components: - type: Transform pos: 34.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8457 components: - type: Transform pos: 34.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8458 components: - type: Transform pos: 34.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8459 components: - type: Transform pos: 31.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8460 components: - type: Transform pos: 31.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8461 components: - type: Transform pos: 31.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8462 components: - type: Transform pos: 28.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8463 components: - type: Transform pos: 28.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8464 components: - type: Transform pos: 28.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8465 components: - type: Transform pos: 28.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8466 components: - type: Transform pos: 28.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8467 components: - type: Transform pos: 28.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8468 components: - type: Transform pos: 28.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8469 components: - type: Transform pos: 30.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8470 components: - type: Transform pos: 30.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8479 components: - type: Transform @@ -128575,7 +128784,7 @@ entities: pos: 38.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8480 components: - type: Transform @@ -128583,7 +128792,7 @@ entities: pos: 26.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8481 components: - type: Transform @@ -128591,91 +128800,91 @@ entities: pos: 27.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8484 components: - type: Transform pos: 28.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8485 components: - type: Transform pos: 28.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8486 components: - type: Transform pos: 28.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8488 components: - type: Transform pos: 28.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8489 components: - type: Transform pos: 28.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8490 components: - type: Transform pos: 28.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8492 components: - type: Transform pos: 28.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8493 components: - type: Transform pos: 28.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8494 components: - type: Transform pos: 28.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8495 components: - type: Transform pos: 28.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8496 components: - type: Transform pos: 28.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8497 components: - type: Transform pos: 28.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8500 components: - type: Transform @@ -128683,7 +128892,7 @@ entities: pos: 29.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8501 components: - type: Transform @@ -128691,7 +128900,7 @@ entities: pos: 29.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8502 components: - type: Transform @@ -128699,7 +128908,7 @@ entities: pos: 29.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8503 components: - type: Transform @@ -128707,7 +128916,7 @@ entities: pos: 29.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8504 components: - type: Transform @@ -128715,7 +128924,7 @@ entities: pos: 29.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8505 components: - type: Transform @@ -128723,7 +128932,7 @@ entities: pos: 29.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8506 components: - type: Transform @@ -128731,7 +128940,7 @@ entities: pos: 29.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8510 components: - type: Transform @@ -128739,7 +128948,7 @@ entities: pos: 25.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8511 components: - type: Transform @@ -128747,7 +128956,7 @@ entities: pos: 26.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8512 components: - type: Transform @@ -128755,7 +128964,7 @@ entities: pos: 27.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8513 components: - type: Transform @@ -128763,7 +128972,7 @@ entities: pos: 28.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8515 components: - type: Transform @@ -128771,7 +128980,7 @@ entities: pos: 32.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8516 components: - type: Transform @@ -128779,7 +128988,7 @@ entities: pos: 33.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8517 components: - type: Transform @@ -128787,7 +128996,7 @@ entities: pos: 34.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8518 components: - type: Transform @@ -128795,7 +129004,7 @@ entities: pos: 35.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8519 components: - type: Transform @@ -128803,84 +129012,84 @@ entities: pos: 36.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8520 components: - type: Transform pos: 30.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8521 components: - type: Transform pos: 30.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8522 components: - type: Transform pos: 30.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8523 components: - type: Transform pos: 30.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8524 components: - type: Transform pos: 30.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8525 components: - type: Transform pos: 30.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8526 components: - type: Transform pos: 30.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8527 components: - type: Transform pos: 30.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8528 components: - type: Transform pos: 30.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8529 components: - type: Transform pos: 30.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8530 components: - type: Transform pos: 30.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8535 components: - type: Transform @@ -128888,7 +129097,7 @@ entities: pos: 29.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8536 components: - type: Transform @@ -128896,7 +129105,7 @@ entities: pos: 30.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8537 components: - type: Transform @@ -128904,7 +129113,7 @@ entities: pos: 31.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8538 components: - type: Transform @@ -128912,7 +129121,7 @@ entities: pos: 32.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8539 components: - type: Transform @@ -128920,7 +129129,7 @@ entities: pos: 33.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8540 components: - type: Transform @@ -128928,7 +129137,7 @@ entities: pos: 34.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8544 components: - type: Transform @@ -128936,7 +129145,7 @@ entities: pos: 29.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8545 components: - type: Transform @@ -128944,7 +129153,7 @@ entities: pos: 30.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8546 components: - type: Transform @@ -128952,7 +129161,7 @@ entities: pos: 31.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8547 components: - type: Transform @@ -128960,7 +129169,7 @@ entities: pos: 31.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8548 components: - type: Transform @@ -128968,7 +129177,7 @@ entities: pos: 31.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8549 components: - type: Transform @@ -128976,7 +129185,7 @@ entities: pos: 31.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8550 components: - type: Transform @@ -128984,7 +129193,7 @@ entities: pos: 31.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8554 components: - type: Transform @@ -128992,7 +129201,7 @@ entities: pos: 22.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8555 components: - type: Transform @@ -129000,7 +129209,7 @@ entities: pos: 21.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8559 components: - type: Transform @@ -129008,7 +129217,7 @@ entities: pos: 23.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8560 components: - type: Transform @@ -129016,7 +129225,7 @@ entities: pos: 22.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8561 components: - type: Transform @@ -129024,7 +129233,7 @@ entities: pos: 21.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8562 components: - type: Transform @@ -129032,7 +129241,7 @@ entities: pos: 20.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8563 components: - type: Transform @@ -129040,7 +129249,7 @@ entities: pos: 19.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8566 components: - type: Transform @@ -129048,7 +129257,7 @@ entities: pos: 29.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8568 components: - type: Transform @@ -129056,7 +129265,7 @@ entities: pos: 24.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8569 components: - type: Transform @@ -129064,7 +129273,7 @@ entities: pos: 23.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8570 components: - type: Transform @@ -129072,28 +129281,28 @@ entities: pos: 22.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8574 components: - type: Transform pos: 19.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8575 components: - type: Transform pos: 19.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8576 components: - type: Transform pos: 19.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8578 components: - type: Transform @@ -129101,7 +129310,7 @@ entities: pos: 20.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8579 components: - type: Transform @@ -129109,7 +129318,7 @@ entities: pos: 21.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8581 components: - type: Transform @@ -129117,7 +129326,7 @@ entities: pos: 24.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8582 components: - type: Transform @@ -129125,7 +129334,7 @@ entities: pos: 24.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8585 components: - type: Transform @@ -129133,7 +129342,7 @@ entities: pos: 23.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8586 components: - type: Transform @@ -129141,7 +129350,7 @@ entities: pos: 22.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8587 components: - type: Transform @@ -129149,7 +129358,7 @@ entities: pos: 21.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8589 components: - type: Transform @@ -129157,7 +129366,7 @@ entities: pos: 20.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8590 components: - type: Transform @@ -129165,7 +129374,7 @@ entities: pos: 20.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8591 components: - type: Transform @@ -129173,7 +129382,7 @@ entities: pos: 22.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8592 components: - type: Transform @@ -129181,21 +129390,21 @@ entities: pos: 21.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8601 components: - type: Transform pos: 18.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8602 components: - type: Transform pos: 18.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8604 components: - type: Transform @@ -129203,7 +129412,7 @@ entities: pos: 24.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8605 components: - type: Transform @@ -129211,7 +129420,7 @@ entities: pos: 23.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8606 components: - type: Transform @@ -129219,7 +129428,7 @@ entities: pos: 22.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8607 components: - type: Transform @@ -129227,7 +129436,7 @@ entities: pos: 21.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8608 components: - type: Transform @@ -129235,7 +129444,7 @@ entities: pos: 20.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8609 components: - type: Transform @@ -129243,7 +129452,7 @@ entities: pos: 19.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8610 components: - type: Transform @@ -129251,7 +129460,7 @@ entities: pos: 18.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8611 components: - type: Transform @@ -129259,7 +129468,7 @@ entities: pos: 17.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8612 components: - type: Transform @@ -129267,7 +129476,7 @@ entities: pos: 16.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9255 components: - type: Transform @@ -129275,7 +129484,7 @@ entities: pos: 2.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9256 components: - type: Transform @@ -129283,7 +129492,7 @@ entities: pos: 3.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9257 components: - type: Transform @@ -129291,7 +129500,7 @@ entities: pos: 4.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9258 components: - type: Transform @@ -129299,7 +129508,7 @@ entities: pos: 5.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9259 components: - type: Transform @@ -129307,7 +129516,7 @@ entities: pos: 6.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9260 components: - type: Transform @@ -129315,7 +129524,7 @@ entities: pos: 7.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9261 components: - type: Transform @@ -129323,7 +129532,7 @@ entities: pos: 8.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9266 components: - type: Transform @@ -129331,7 +129540,7 @@ entities: pos: 10.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9267 components: - type: Transform @@ -129339,7 +129548,7 @@ entities: pos: 11.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9268 components: - type: Transform @@ -129347,7 +129556,7 @@ entities: pos: 12.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9269 components: - type: Transform @@ -129355,7 +129564,7 @@ entities: pos: 13.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9270 components: - type: Transform @@ -129363,7 +129572,7 @@ entities: pos: 14.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9271 components: - type: Transform @@ -129371,7 +129580,7 @@ entities: pos: 15.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9272 components: - type: Transform @@ -129379,7 +129588,7 @@ entities: pos: 17.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9273 components: - type: Transform @@ -129387,7 +129596,7 @@ entities: pos: 18.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9274 components: - type: Transform @@ -129395,7 +129604,7 @@ entities: pos: 9.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9275 components: - type: Transform @@ -129403,7 +129612,7 @@ entities: pos: 9.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9276 components: - type: Transform @@ -129411,7 +129620,7 @@ entities: pos: 9.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9277 components: - type: Transform @@ -129419,7 +129628,7 @@ entities: pos: 9.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9278 components: - type: Transform @@ -129427,7 +129636,7 @@ entities: pos: 9.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9279 components: - type: Transform @@ -129435,7 +129644,7 @@ entities: pos: 9.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9280 components: - type: Transform @@ -129443,7 +129652,7 @@ entities: pos: 9.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9281 components: - type: Transform @@ -129451,7 +129660,7 @@ entities: pos: 16.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9282 components: - type: Transform @@ -129459,7 +129668,7 @@ entities: pos: 16.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9283 components: - type: Transform @@ -129467,7 +129676,7 @@ entities: pos: 16.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9284 components: - type: Transform @@ -129475,7 +129684,7 @@ entities: pos: 16.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9285 components: - type: Transform @@ -129483,7 +129692,7 @@ entities: pos: 16.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9286 components: - type: Transform @@ -129491,7 +129700,7 @@ entities: pos: 16.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9287 components: - type: Transform @@ -129499,7 +129708,7 @@ entities: pos: 16.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9288 components: - type: Transform @@ -129507,7 +129716,7 @@ entities: pos: 16.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9291 components: - type: Transform @@ -129515,7 +129724,7 @@ entities: pos: 15.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9296 components: - type: Transform @@ -129523,7 +129732,7 @@ entities: pos: 15.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9301 components: - type: Transform @@ -129531,7 +129740,7 @@ entities: pos: 8.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9302 components: - type: Transform @@ -129539,7 +129748,7 @@ entities: pos: 7.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9303 components: - type: Transform @@ -129547,7 +129756,7 @@ entities: pos: 6.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9304 components: - type: Transform @@ -129555,7 +129764,7 @@ entities: pos: 5.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9305 components: - type: Transform @@ -129563,7 +129772,7 @@ entities: pos: 4.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9306 components: - type: Transform @@ -129571,7 +129780,7 @@ entities: pos: 4.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9307 components: - type: Transform @@ -129579,7 +129788,7 @@ entities: pos: 5.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9308 components: - type: Transform @@ -129587,7 +129796,7 @@ entities: pos: 6.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9309 components: - type: Transform @@ -129595,14 +129804,14 @@ entities: pos: 7.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9310 components: - type: Transform pos: 8.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9311 components: - type: Transform @@ -129610,7 +129819,7 @@ entities: pos: 7.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9312 components: - type: Transform @@ -129618,7 +129827,7 @@ entities: pos: 8.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9313 components: - type: Transform @@ -129626,7 +129835,7 @@ entities: pos: 9.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9322 components: - type: Transform @@ -129634,7 +129843,7 @@ entities: pos: 11.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9323 components: - type: Transform @@ -129642,7 +129851,7 @@ entities: pos: 12.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9324 components: - type: Transform @@ -129650,7 +129859,7 @@ entities: pos: 6.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9325 components: - type: Transform @@ -129658,7 +129867,7 @@ entities: pos: 7.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9326 components: - type: Transform @@ -129666,7 +129875,7 @@ entities: pos: 8.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9327 components: - type: Transform @@ -129674,7 +129883,7 @@ entities: pos: 9.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9328 components: - type: Transform @@ -129682,105 +129891,105 @@ entities: pos: 12.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9872 components: - type: Transform pos: 8.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9873 components: - type: Transform pos: 8.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9874 components: - type: Transform pos: 8.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9875 components: - type: Transform pos: 8.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9876 components: - type: Transform pos: 8.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9877 components: - type: Transform pos: 8.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9879 components: - type: Transform pos: 8.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9880 components: - type: Transform pos: 8.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9881 components: - type: Transform pos: 8.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9882 components: - type: Transform pos: 8.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9883 components: - type: Transform pos: 8.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9885 components: - type: Transform pos: 8.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9886 components: - type: Transform pos: 8.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9887 components: - type: Transform pos: 8.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9889 components: - type: Transform @@ -129788,7 +129997,7 @@ entities: pos: 6.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9890 components: - type: Transform @@ -129796,7 +130005,7 @@ entities: pos: 6.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9891 components: - type: Transform @@ -129804,7 +130013,7 @@ entities: pos: 6.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9893 components: - type: Transform @@ -129812,7 +130021,7 @@ entities: pos: 5.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9894 components: - type: Transform @@ -129820,7 +130029,7 @@ entities: pos: 5.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9895 components: - type: Transform @@ -129828,7 +130037,7 @@ entities: pos: 5.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9897 components: - type: Transform @@ -129836,7 +130045,7 @@ entities: pos: 5.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9898 components: - type: Transform @@ -129844,7 +130053,7 @@ entities: pos: 5.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9899 components: - type: Transform @@ -129852,7 +130061,7 @@ entities: pos: 5.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9900 components: - type: Transform @@ -129860,7 +130069,7 @@ entities: pos: 5.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9904 components: - type: Transform @@ -129868,7 +130077,7 @@ entities: pos: -4.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9905 components: - type: Transform @@ -129876,7 +130085,7 @@ entities: pos: -3.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9906 components: - type: Transform @@ -129884,7 +130093,7 @@ entities: pos: -2.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9908 components: - type: Transform @@ -129892,7 +130101,7 @@ entities: pos: -0.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9909 components: - type: Transform @@ -129900,7 +130109,7 @@ entities: pos: 0.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9910 components: - type: Transform @@ -129908,7 +130117,7 @@ entities: pos: 1.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9911 components: - type: Transform @@ -129916,7 +130125,7 @@ entities: pos: 2.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9912 components: - type: Transform @@ -129924,7 +130133,7 @@ entities: pos: 3.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9913 components: - type: Transform @@ -129932,7 +130141,7 @@ entities: pos: 4.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9914 components: - type: Transform @@ -129940,70 +130149,70 @@ entities: pos: 5.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9915 components: - type: Transform pos: -5.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9916 components: - type: Transform pos: -5.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9917 components: - type: Transform pos: -5.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9918 components: - type: Transform pos: -5.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9919 components: - type: Transform pos: -5.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9920 components: - type: Transform pos: -5.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9921 components: - type: Transform pos: -5.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9922 components: - type: Transform pos: -3.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9923 components: - type: Transform pos: -3.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9925 components: - type: Transform @@ -130011,7 +130220,7 @@ entities: pos: -2.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9926 components: - type: Transform @@ -130019,7 +130228,7 @@ entities: pos: -1.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9927 components: - type: Transform @@ -130027,7 +130236,7 @@ entities: pos: 7.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9928 components: - type: Transform @@ -130035,7 +130244,7 @@ entities: pos: 6.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9929 components: - type: Transform @@ -130043,7 +130252,7 @@ entities: pos: 5.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9930 components: - type: Transform @@ -130051,7 +130260,7 @@ entities: pos: 4.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9931 components: - type: Transform @@ -130059,7 +130268,7 @@ entities: pos: 3.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9932 components: - type: Transform @@ -130067,7 +130276,7 @@ entities: pos: 2.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9933 components: - type: Transform @@ -130075,7 +130284,7 @@ entities: pos: 1.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9934 components: - type: Transform @@ -130083,7 +130292,7 @@ entities: pos: 0.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9936 components: - type: Transform @@ -130091,49 +130300,49 @@ entities: pos: -1.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9937 components: - type: Transform pos: -2.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9938 components: - type: Transform pos: -2.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9939 components: - type: Transform pos: -2.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9940 components: - type: Transform pos: -2.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9941 components: - type: Transform pos: -2.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9942 components: - type: Transform pos: -2.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9943 components: - type: Transform @@ -130141,7 +130350,7 @@ entities: pos: -1.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9944 components: - type: Transform @@ -130149,7 +130358,7 @@ entities: pos: -0.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9952 components: - type: Transform @@ -130157,7 +130366,7 @@ entities: pos: 4.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9953 components: - type: Transform @@ -130165,7 +130374,7 @@ entities: pos: 7.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9954 components: - type: Transform @@ -130173,7 +130382,7 @@ entities: pos: 8.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9955 components: - type: Transform @@ -130181,7 +130390,7 @@ entities: pos: 9.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9958 components: - type: Transform @@ -130189,7 +130398,7 @@ entities: pos: 9.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9959 components: - type: Transform @@ -130197,7 +130406,7 @@ entities: pos: 10.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9960 components: - type: Transform @@ -130205,7 +130414,7 @@ entities: pos: 11.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9961 components: - type: Transform @@ -130213,7 +130422,7 @@ entities: pos: 6.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9962 components: - type: Transform @@ -130221,7 +130430,7 @@ entities: pos: 6.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9963 components: - type: Transform @@ -130229,7 +130438,7 @@ entities: pos: 6.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9965 components: - type: Transform @@ -130237,7 +130446,7 @@ entities: pos: 6.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9966 components: - type: Transform @@ -130245,7 +130454,7 @@ entities: pos: 8.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9968 components: - type: Transform @@ -130253,7 +130462,7 @@ entities: pos: 8.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9969 components: - type: Transform @@ -130261,7 +130470,7 @@ entities: pos: 8.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9970 components: - type: Transform @@ -130269,7 +130478,7 @@ entities: pos: 23.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9971 components: - type: Transform @@ -130277,7 +130486,7 @@ entities: pos: 23.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9972 components: - type: Transform @@ -130285,7 +130494,7 @@ entities: pos: 23.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9973 components: - type: Transform @@ -130293,7 +130502,7 @@ entities: pos: 23.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9974 components: - type: Transform @@ -130301,7 +130510,7 @@ entities: pos: 23.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9975 components: - type: Transform @@ -130309,7 +130518,7 @@ entities: pos: 23.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9976 components: - type: Transform @@ -130317,7 +130526,7 @@ entities: pos: 23.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9978 components: - type: Transform @@ -130325,7 +130534,7 @@ entities: pos: 23.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9979 components: - type: Transform @@ -130333,7 +130542,7 @@ entities: pos: 23.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9980 components: - type: Transform @@ -130341,7 +130550,7 @@ entities: pos: 23.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9981 components: - type: Transform @@ -130349,7 +130558,7 @@ entities: pos: 25.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9982 components: - type: Transform @@ -130357,7 +130566,7 @@ entities: pos: 25.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9983 components: - type: Transform @@ -130365,7 +130574,7 @@ entities: pos: 25.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9984 components: - type: Transform @@ -130373,7 +130582,7 @@ entities: pos: 25.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9985 components: - type: Transform @@ -130381,7 +130590,7 @@ entities: pos: 25.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9986 components: - type: Transform @@ -130389,7 +130598,7 @@ entities: pos: 25.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9987 components: - type: Transform @@ -130397,7 +130606,7 @@ entities: pos: 25.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9988 components: - type: Transform @@ -130405,7 +130614,7 @@ entities: pos: 25.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9989 components: - type: Transform @@ -130413,7 +130622,7 @@ entities: pos: 25.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10061 components: - type: Transform @@ -130421,7 +130630,7 @@ entities: pos: 2.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10062 components: - type: Transform @@ -130429,7 +130638,7 @@ entities: pos: 3.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10063 components: - type: Transform @@ -130437,7 +130646,7 @@ entities: pos: 4.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10064 components: - type: Transform @@ -130445,7 +130654,7 @@ entities: pos: 5.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10065 components: - type: Transform @@ -130453,7 +130662,7 @@ entities: pos: 6.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10066 components: - type: Transform @@ -130461,7 +130670,7 @@ entities: pos: 7.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10067 components: - type: Transform @@ -130469,7 +130678,7 @@ entities: pos: 5.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10068 components: - type: Transform @@ -130477,7 +130686,7 @@ entities: pos: 4.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10069 components: - type: Transform @@ -130485,7 +130694,7 @@ entities: pos: 3.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10070 components: - type: Transform @@ -130493,7 +130702,7 @@ entities: pos: 2.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10071 components: - type: Transform @@ -130501,7 +130710,7 @@ entities: pos: 0.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10072 components: - type: Transform @@ -130509,7 +130718,7 @@ entities: pos: -0.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10073 components: - type: Transform @@ -130517,7 +130726,7 @@ entities: pos: -1.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10074 components: - type: Transform @@ -130525,7 +130734,7 @@ entities: pos: -2.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10075 components: - type: Transform @@ -130533,7 +130742,7 @@ entities: pos: -3.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10076 components: - type: Transform @@ -130541,7 +130750,7 @@ entities: pos: 0.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10077 components: - type: Transform @@ -130549,7 +130758,7 @@ entities: pos: -0.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10078 components: - type: Transform @@ -130557,7 +130766,7 @@ entities: pos: -1.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10079 components: - type: Transform @@ -130565,7 +130774,7 @@ entities: pos: -2.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10080 components: - type: Transform @@ -130573,7 +130782,7 @@ entities: pos: -3.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11011 components: - type: Transform @@ -130581,112 +130790,112 @@ entities: pos: 17.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11025 components: - type: Transform pos: 6.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11026 components: - type: Transform pos: 6.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11027 components: - type: Transform pos: 6.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11028 components: - type: Transform pos: 6.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11029 components: - type: Transform pos: 6.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11030 components: - type: Transform pos: 6.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11031 components: - type: Transform pos: 8.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11032 components: - type: Transform pos: 8.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11033 components: - type: Transform pos: 8.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11034 components: - type: Transform pos: 8.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11035 components: - type: Transform pos: 8.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11036 components: - type: Transform pos: 6.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11037 components: - type: Transform pos: 6.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11038 components: - type: Transform pos: 6.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11039 components: - type: Transform pos: 6.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11044 components: - type: Transform @@ -130694,7 +130903,7 @@ entities: pos: -0.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11050 components: - type: Transform @@ -130702,7 +130911,7 @@ entities: pos: 10.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11051 components: - type: Transform @@ -130710,7 +130919,7 @@ entities: pos: 10.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11053 components: - type: Transform @@ -130718,7 +130927,7 @@ entities: pos: 12.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11056 components: - type: Transform @@ -130726,7 +130935,7 @@ entities: pos: 24.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11058 components: - type: Transform @@ -130734,7 +130943,7 @@ entities: pos: 14.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11059 components: - type: Transform @@ -130742,7 +130951,7 @@ entities: pos: 14.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11060 components: - type: Transform @@ -130750,7 +130959,7 @@ entities: pos: 14.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11061 components: - type: Transform @@ -130758,7 +130967,7 @@ entities: pos: 14.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11062 components: - type: Transform @@ -130766,7 +130975,7 @@ entities: pos: 14.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11063 components: - type: Transform @@ -130774,7 +130983,7 @@ entities: pos: 15.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11064 components: - type: Transform @@ -130782,7 +130991,7 @@ entities: pos: 15.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11065 components: - type: Transform @@ -130790,7 +130999,7 @@ entities: pos: 15.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11066 components: - type: Transform @@ -130798,7 +131007,7 @@ entities: pos: 15.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11067 components: - type: Transform @@ -130806,7 +131015,7 @@ entities: pos: 15.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11068 components: - type: Transform @@ -130814,7 +131023,7 @@ entities: pos: 15.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11069 components: - type: Transform @@ -130822,7 +131031,7 @@ entities: pos: 16.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11070 components: - type: Transform @@ -130830,7 +131039,7 @@ entities: pos: 17.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11071 components: - type: Transform @@ -130838,7 +131047,7 @@ entities: pos: 16.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11072 components: - type: Transform @@ -130846,7 +131055,7 @@ entities: pos: 17.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11073 components: - type: Transform @@ -130854,7 +131063,7 @@ entities: pos: 14.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11074 components: - type: Transform @@ -130862,7 +131071,7 @@ entities: pos: 13.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11075 components: - type: Transform @@ -130870,112 +131079,112 @@ entities: pos: 12.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11076 components: - type: Transform pos: 11.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11077 components: - type: Transform pos: 11.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11078 components: - type: Transform pos: 11.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11079 components: - type: Transform pos: 11.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11080 components: - type: Transform pos: 11.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11081 components: - type: Transform pos: 13.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11082 components: - type: Transform pos: 13.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11083 components: - type: Transform pos: 13.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11085 components: - type: Transform pos: 13.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11089 components: - type: Transform pos: 12.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11090 components: - type: Transform pos: 12.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11091 components: - type: Transform pos: 12.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11092 components: - type: Transform pos: 12.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11093 components: - type: Transform pos: 12.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11094 components: - type: Transform pos: 12.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11099 components: - type: Transform @@ -130983,7 +131192,7 @@ entities: pos: 14.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11100 components: - type: Transform @@ -130991,7 +131200,7 @@ entities: pos: 15.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11101 components: - type: Transform @@ -130999,7 +131208,7 @@ entities: pos: 16.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11102 components: - type: Transform @@ -131007,28 +131216,28 @@ entities: pos: 17.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11104 components: - type: Transform pos: 16.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11105 components: - type: Transform pos: 16.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11106 components: - type: Transform pos: 16.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11113 components: - type: Transform @@ -131036,7 +131245,7 @@ entities: pos: 18.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11114 components: - type: Transform @@ -131044,7 +131253,7 @@ entities: pos: 20.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11115 components: - type: Transform @@ -131052,7 +131261,7 @@ entities: pos: 20.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11116 components: - type: Transform @@ -131060,7 +131269,7 @@ entities: pos: 20.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11117 components: - type: Transform @@ -131068,7 +131277,7 @@ entities: pos: 18.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11118 components: - type: Transform @@ -131076,7 +131285,7 @@ entities: pos: 18.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11121 components: - type: Transform @@ -131084,7 +131293,7 @@ entities: pos: 20.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11122 components: - type: Transform @@ -131092,7 +131301,7 @@ entities: pos: 19.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11123 components: - type: Transform @@ -131100,7 +131309,7 @@ entities: pos: 18.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11124 components: - type: Transform @@ -131108,7 +131317,7 @@ entities: pos: 17.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11125 components: - type: Transform @@ -131116,7 +131325,7 @@ entities: pos: 16.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11132 components: - type: Transform @@ -131124,7 +131333,7 @@ entities: pos: 12.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11133 components: - type: Transform @@ -131132,7 +131341,7 @@ entities: pos: 13.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11134 components: - type: Transform @@ -131140,7 +131349,7 @@ entities: pos: 14.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11135 components: - type: Transform @@ -131148,21 +131357,21 @@ entities: pos: 37.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11139 components: - type: Transform pos: 25.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11140 components: - type: Transform pos: 25.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11141 components: - type: Transform @@ -131170,7 +131379,7 @@ entities: pos: 38.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11142 components: - type: Transform @@ -131178,7 +131387,7 @@ entities: pos: 23.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11145 components: - type: Transform @@ -131186,7 +131395,7 @@ entities: pos: 22.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11146 components: - type: Transform @@ -131194,7 +131403,7 @@ entities: pos: 21.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11147 components: - type: Transform @@ -131202,7 +131411,7 @@ entities: pos: 20.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11152 components: - type: Transform @@ -131210,7 +131419,7 @@ entities: pos: 19.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11153 components: - type: Transform @@ -131218,7 +131427,7 @@ entities: pos: 18.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11866 components: - type: Transform @@ -131226,245 +131435,245 @@ entities: pos: 90.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11926 components: - type: Transform pos: -23.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11927 components: - type: Transform pos: -23.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11928 components: - type: Transform pos: -23.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11929 components: - type: Transform pos: -23.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11930 components: - type: Transform pos: -23.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11931 components: - type: Transform pos: -23.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11933 components: - type: Transform pos: -23.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11934 components: - type: Transform pos: -23.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11935 components: - type: Transform pos: -23.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11936 components: - type: Transform pos: -23.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11937 components: - type: Transform pos: -23.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11938 components: - type: Transform pos: -23.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11939 components: - type: Transform pos: -23.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11941 components: - type: Transform pos: -23.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11942 components: - type: Transform pos: -23.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11943 components: - type: Transform pos: -23.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11944 components: - type: Transform pos: -23.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11945 components: - type: Transform pos: -21.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11946 components: - type: Transform pos: -21.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11947 components: - type: Transform pos: -21.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11948 components: - type: Transform pos: -21.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11949 components: - type: Transform pos: -21.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11951 components: - type: Transform pos: -21.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11952 components: - type: Transform pos: -21.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11953 components: - type: Transform pos: -21.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11954 components: - type: Transform pos: -21.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11955 components: - type: Transform pos: -21.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11957 components: - type: Transform pos: -21.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11958 components: - type: Transform pos: -21.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11959 components: - type: Transform pos: -21.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11960 components: - type: Transform pos: -21.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11961 components: - type: Transform pos: -21.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11962 components: - type: Transform pos: -21.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11963 components: - type: Transform pos: -21.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11966 components: - type: Transform @@ -131472,7 +131681,7 @@ entities: pos: -22.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11967 components: - type: Transform @@ -131480,7 +131689,7 @@ entities: pos: -21.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11968 components: - type: Transform @@ -131488,7 +131697,7 @@ entities: pos: -20.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11969 components: - type: Transform @@ -131496,7 +131705,7 @@ entities: pos: -19.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11970 components: - type: Transform @@ -131504,7 +131713,7 @@ entities: pos: -18.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11971 components: - type: Transform @@ -131512,7 +131721,7 @@ entities: pos: -20.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11972 components: - type: Transform @@ -131520,7 +131729,7 @@ entities: pos: -19.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11973 components: - type: Transform @@ -131528,7 +131737,7 @@ entities: pos: -18.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11974 components: - type: Transform @@ -131536,7 +131745,7 @@ entities: pos: -22.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11975 components: - type: Transform @@ -131544,7 +131753,7 @@ entities: pos: -23.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11976 components: - type: Transform @@ -131552,7 +131761,7 @@ entities: pos: -24.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11977 components: - type: Transform @@ -131560,7 +131769,7 @@ entities: pos: -25.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11978 components: - type: Transform @@ -131568,7 +131777,7 @@ entities: pos: -26.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11979 components: - type: Transform @@ -131576,7 +131785,7 @@ entities: pos: -27.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11980 components: - type: Transform @@ -131584,7 +131793,7 @@ entities: pos: -28.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11981 components: - type: Transform @@ -131592,7 +131801,7 @@ entities: pos: -29.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11982 components: - type: Transform @@ -131600,7 +131809,7 @@ entities: pos: -30.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11983 components: - type: Transform @@ -131608,7 +131817,7 @@ entities: pos: -31.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11984 components: - type: Transform @@ -131616,7 +131825,7 @@ entities: pos: -32.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11986 components: - type: Transform @@ -131624,7 +131833,7 @@ entities: pos: -34.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11987 components: - type: Transform @@ -131632,7 +131841,7 @@ entities: pos: -35.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11988 components: - type: Transform @@ -131640,7 +131849,7 @@ entities: pos: -36.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11989 components: - type: Transform @@ -131648,7 +131857,7 @@ entities: pos: -37.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11990 components: - type: Transform @@ -131656,7 +131865,7 @@ entities: pos: -24.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11991 components: - type: Transform @@ -131664,7 +131873,7 @@ entities: pos: -25.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11992 components: - type: Transform @@ -131672,7 +131881,7 @@ entities: pos: -26.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11993 components: - type: Transform @@ -131680,7 +131889,7 @@ entities: pos: -27.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11994 components: - type: Transform @@ -131688,7 +131897,7 @@ entities: pos: -28.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11995 components: - type: Transform @@ -131696,7 +131905,7 @@ entities: pos: -29.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11996 components: - type: Transform @@ -131704,7 +131913,7 @@ entities: pos: -30.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11997 components: - type: Transform @@ -131712,7 +131921,7 @@ entities: pos: -31.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11998 components: - type: Transform @@ -131720,7 +131929,7 @@ entities: pos: -32.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11999 components: - type: Transform @@ -131728,7 +131937,7 @@ entities: pos: -33.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12000 components: - type: Transform @@ -131736,7 +131945,7 @@ entities: pos: -34.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12002 components: - type: Transform @@ -131744,7 +131953,7 @@ entities: pos: -36.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12003 components: - type: Transform @@ -131752,266 +131961,266 @@ entities: pos: -37.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12672 components: - type: Transform pos: -40.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12673 components: - type: Transform pos: -40.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12674 components: - type: Transform pos: -40.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12675 components: - type: Transform pos: -40.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12676 components: - type: Transform pos: -40.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12678 components: - type: Transform pos: -40.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12679 components: - type: Transform pos: -40.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12680 components: - type: Transform pos: -40.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12681 components: - type: Transform pos: -40.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12682 components: - type: Transform pos: -40.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12683 components: - type: Transform pos: -40.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12684 components: - type: Transform pos: -40.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12685 components: - type: Transform pos: -40.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12687 components: - type: Transform pos: -40.5,-40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12688 components: - type: Transform pos: -40.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12689 components: - type: Transform pos: -40.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12690 components: - type: Transform pos: -40.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12691 components: - type: Transform pos: -40.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12692 components: - type: Transform pos: -40.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12693 components: - type: Transform pos: -40.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12695 components: - type: Transform pos: -38.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12696 components: - type: Transform pos: -38.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12697 components: - type: Transform pos: -38.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12698 components: - type: Transform pos: -38.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12700 components: - type: Transform pos: -38.5,-40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12701 components: - type: Transform pos: -38.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12702 components: - type: Transform pos: -38.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12703 components: - type: Transform pos: -38.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12704 components: - type: Transform pos: -38.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12705 components: - type: Transform pos: -38.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12706 components: - type: Transform pos: -38.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12707 components: - type: Transform pos: -38.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12708 components: - type: Transform pos: -38.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12710 components: - type: Transform pos: -38.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12711 components: - type: Transform pos: -38.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12712 components: - type: Transform pos: -38.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12713 components: - type: Transform pos: -38.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12714 components: - type: Transform @@ -132019,7 +132228,7 @@ entities: pos: -38.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12715 components: - type: Transform @@ -132027,7 +132236,7 @@ entities: pos: -39.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12719 components: - type: Transform @@ -132035,7 +132244,7 @@ entities: pos: -39.5,-60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12720 components: - type: Transform @@ -132043,7 +132252,7 @@ entities: pos: -38.5,-60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12721 components: - type: Transform @@ -132051,7 +132260,7 @@ entities: pos: -37.5,-60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12722 components: - type: Transform @@ -132059,7 +132268,7 @@ entities: pos: -36.5,-60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12723 components: - type: Transform @@ -132067,7 +132276,7 @@ entities: pos: -35.5,-60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12724 components: - type: Transform @@ -132075,7 +132284,7 @@ entities: pos: -37.5,-59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12725 components: - type: Transform @@ -132083,7 +132292,7 @@ entities: pos: -36.5,-59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12726 components: - type: Transform @@ -132091,7 +132300,7 @@ entities: pos: -35.5,-59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12727 components: - type: Transform @@ -132099,7 +132308,7 @@ entities: pos: -37.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12728 components: - type: Transform @@ -132107,7 +132316,7 @@ entities: pos: -36.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12729 components: - type: Transform @@ -132115,7 +132324,7 @@ entities: pos: -35.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12730 components: - type: Transform @@ -132123,7 +132332,7 @@ entities: pos: -39.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12731 components: - type: Transform @@ -132131,7 +132340,7 @@ entities: pos: -38.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12732 components: - type: Transform @@ -132139,7 +132348,7 @@ entities: pos: -37.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12733 components: - type: Transform @@ -132147,7 +132356,7 @@ entities: pos: -36.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12734 components: - type: Transform @@ -132155,7 +132364,7 @@ entities: pos: -35.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12735 components: - type: Transform @@ -132163,7 +132372,7 @@ entities: pos: -34.5,-59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12736 components: - type: Transform @@ -132171,161 +132380,161 @@ entities: pos: -34.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12737 components: - type: Transform pos: -40.5,-48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12738 components: - type: Transform pos: -40.5,-49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12739 components: - type: Transform pos: -40.5,-50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12741 components: - type: Transform pos: -40.5,-52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12742 components: - type: Transform pos: -40.5,-53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12743 components: - type: Transform pos: -40.5,-54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12744 components: - type: Transform pos: -40.5,-55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12745 components: - type: Transform pos: -40.5,-56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12746 components: - type: Transform pos: -40.5,-57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12747 components: - type: Transform pos: -40.5,-58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12748 components: - type: Transform pos: -40.5,-59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12749 components: - type: Transform pos: -38.5,-58.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12750 components: - type: Transform pos: -38.5,-57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12751 components: - type: Transform pos: -38.5,-56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12753 components: - type: Transform pos: -38.5,-54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12754 components: - type: Transform pos: -38.5,-53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12755 components: - type: Transform pos: -38.5,-52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12756 components: - type: Transform pos: -38.5,-51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12757 components: - type: Transform pos: -38.5,-50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12758 components: - type: Transform pos: -38.5,-49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12759 components: - type: Transform pos: -38.5,-48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12760 components: - type: Transform pos: -38.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13095 components: - type: Transform @@ -132333,7 +132542,7 @@ entities: pos: -38.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13096 components: - type: Transform @@ -132341,7 +132550,7 @@ entities: pos: -37.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13097 components: - type: Transform @@ -132349,7 +132558,7 @@ entities: pos: -36.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13098 components: - type: Transform @@ -132357,7 +132566,7 @@ entities: pos: -35.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13099 components: - type: Transform @@ -132365,7 +132574,7 @@ entities: pos: -37.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13100 components: - type: Transform @@ -132373,7 +132582,7 @@ entities: pos: -36.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13101 components: - type: Transform @@ -132381,7 +132590,7 @@ entities: pos: -35.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13544 components: - type: Transform @@ -132389,7 +132598,7 @@ entities: pos: -28.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13545 components: - type: Transform @@ -132397,7 +132606,7 @@ entities: pos: -29.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13546 components: - type: Transform @@ -132405,7 +132614,7 @@ entities: pos: -30.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13547 components: - type: Transform @@ -132413,7 +132622,7 @@ entities: pos: -31.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13548 components: - type: Transform @@ -132421,7 +132630,7 @@ entities: pos: -32.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13549 components: - type: Transform @@ -132429,7 +132638,7 @@ entities: pos: -28.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13550 components: - type: Transform @@ -132437,7 +132646,7 @@ entities: pos: -29.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13551 components: - type: Transform @@ -132445,7 +132654,7 @@ entities: pos: -30.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13552 components: - type: Transform @@ -132453,7 +132662,7 @@ entities: pos: -31.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13553 components: - type: Transform @@ -132461,7 +132670,7 @@ entities: pos: -32.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13554 components: - type: Transform @@ -132469,7 +132678,7 @@ entities: pos: -33.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13555 components: - type: Transform @@ -132477,7 +132686,7 @@ entities: pos: -34.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13569 components: - type: Transform @@ -132485,7 +132694,7 @@ entities: pos: 23.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13570 components: - type: Transform @@ -132493,7 +132702,7 @@ entities: pos: 24.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13571 components: - type: Transform @@ -132501,7 +132710,7 @@ entities: pos: 25.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14008 components: - type: Transform @@ -132509,7 +132718,7 @@ entities: pos: 26.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14009 components: - type: Transform @@ -132517,7 +132726,7 @@ entities: pos: 27.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14010 components: - type: Transform @@ -132525,7 +132734,7 @@ entities: pos: 28.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14011 components: - type: Transform @@ -132533,7 +132742,7 @@ entities: pos: 29.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14012 components: - type: Transform @@ -132541,7 +132750,7 @@ entities: pos: 30.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14013 components: - type: Transform @@ -132549,7 +132758,7 @@ entities: pos: 31.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14015 components: - type: Transform @@ -132557,7 +132766,7 @@ entities: pos: 33.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14016 components: - type: Transform @@ -132565,7 +132774,7 @@ entities: pos: 34.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14017 components: - type: Transform @@ -132573,7 +132782,7 @@ entities: pos: 35.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14018 components: - type: Transform @@ -132581,7 +132790,7 @@ entities: pos: 36.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14019 components: - type: Transform @@ -132589,7 +132798,7 @@ entities: pos: 37.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14020 components: - type: Transform @@ -132597,7 +132806,7 @@ entities: pos: 38.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14021 components: - type: Transform @@ -132605,7 +132814,7 @@ entities: pos: 39.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14022 components: - type: Transform @@ -132613,7 +132822,7 @@ entities: pos: 40.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14023 components: - type: Transform @@ -132621,7 +132830,7 @@ entities: pos: 41.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14026 components: - type: Transform @@ -132629,7 +132838,7 @@ entities: pos: 44.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14027 components: - type: Transform @@ -132637,7 +132846,7 @@ entities: pos: 45.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14029 components: - type: Transform @@ -132645,7 +132854,7 @@ entities: pos: 25.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14030 components: - type: Transform @@ -132653,7 +132862,7 @@ entities: pos: 26.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14031 components: - type: Transform @@ -132661,7 +132870,7 @@ entities: pos: 27.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14032 components: - type: Transform @@ -132669,7 +132878,7 @@ entities: pos: 28.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14034 components: - type: Transform @@ -132677,7 +132886,7 @@ entities: pos: 30.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14035 components: - type: Transform @@ -132685,7 +132894,7 @@ entities: pos: 31.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14036 components: - type: Transform @@ -132693,7 +132902,7 @@ entities: pos: 32.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14037 components: - type: Transform @@ -132701,7 +132910,7 @@ entities: pos: 33.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14038 components: - type: Transform @@ -132709,7 +132918,7 @@ entities: pos: 34.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14039 components: - type: Transform @@ -132717,7 +132926,7 @@ entities: pos: 35.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14040 components: - type: Transform @@ -132725,7 +132934,7 @@ entities: pos: 36.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14041 components: - type: Transform @@ -132733,7 +132942,7 @@ entities: pos: 37.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14042 components: - type: Transform @@ -132741,7 +132950,7 @@ entities: pos: 38.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14043 components: - type: Transform @@ -132749,7 +132958,7 @@ entities: pos: 39.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14044 components: - type: Transform @@ -132757,7 +132966,7 @@ entities: pos: 40.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14046 components: - type: Transform @@ -132765,7 +132974,7 @@ entities: pos: 42.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14047 components: - type: Transform @@ -132773,7 +132982,7 @@ entities: pos: 43.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14048 components: - type: Transform @@ -132781,7 +132990,7 @@ entities: pos: 44.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14049 components: - type: Transform @@ -132789,7 +132998,7 @@ entities: pos: 46.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14054 components: - type: Transform @@ -132797,7 +133006,7 @@ entities: pos: 41.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14056 components: - type: Transform @@ -132805,7 +133014,7 @@ entities: pos: 41.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14057 components: - type: Transform @@ -132813,7 +133022,7 @@ entities: pos: 41.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14058 components: - type: Transform @@ -132821,7 +133030,7 @@ entities: pos: 41.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14059 components: - type: Transform @@ -132829,7 +133038,7 @@ entities: pos: 41.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14060 components: - type: Transform @@ -132837,7 +133046,7 @@ entities: pos: 41.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14061 components: - type: Transform @@ -132845,7 +133054,7 @@ entities: pos: 41.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14062 components: - type: Transform @@ -132853,7 +133062,7 @@ entities: pos: 43.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14064 components: - type: Transform @@ -132861,7 +133070,7 @@ entities: pos: 43.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14065 components: - type: Transform @@ -132869,7 +133078,7 @@ entities: pos: 43.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14066 components: - type: Transform @@ -132877,7 +133086,7 @@ entities: pos: 43.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14067 components: - type: Transform @@ -132885,7 +133094,7 @@ entities: pos: 43.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14068 components: - type: Transform @@ -132893,7 +133102,7 @@ entities: pos: 43.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14069 components: - type: Transform @@ -132901,7 +133110,7 @@ entities: pos: 43.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14070 components: - type: Transform @@ -132909,7 +133118,7 @@ entities: pos: 42.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14071 components: - type: Transform @@ -132917,7 +133126,7 @@ entities: pos: 43.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14072 components: - type: Transform @@ -132925,7 +133134,7 @@ entities: pos: 44.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14073 components: - type: Transform @@ -132933,7 +133142,7 @@ entities: pos: 45.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14074 components: - type: Transform @@ -132941,7 +133150,7 @@ entities: pos: 46.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14076 components: - type: Transform @@ -132949,7 +133158,7 @@ entities: pos: 48.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14077 components: - type: Transform @@ -132957,7 +133166,7 @@ entities: pos: 49.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14078 components: - type: Transform @@ -132965,7 +133174,7 @@ entities: pos: 50.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14079 components: - type: Transform @@ -132973,7 +133182,7 @@ entities: pos: 51.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14080 components: - type: Transform @@ -132981,7 +133190,7 @@ entities: pos: 52.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14081 components: - type: Transform @@ -132989,105 +133198,105 @@ entities: pos: 53.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14082 components: - type: Transform pos: 54.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14083 components: - type: Transform pos: 54.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14084 components: - type: Transform pos: 54.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14085 components: - type: Transform pos: 54.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14087 components: - type: Transform pos: 54.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14088 components: - type: Transform pos: 54.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14089 components: - type: Transform pos: 54.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14090 components: - type: Transform pos: 56.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14091 components: - type: Transform pos: 56.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14092 components: - type: Transform pos: 56.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14093 components: - type: Transform pos: 56.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14095 components: - type: Transform pos: 56.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14096 components: - type: Transform pos: 56.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14097 components: - type: Transform pos: 56.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14098 components: - type: Transform @@ -133095,7 +133304,7 @@ entities: pos: 55.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14099 components: - type: Transform @@ -133103,7 +133312,7 @@ entities: pos: 54.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14100 components: - type: Transform @@ -133111,7 +133320,7 @@ entities: pos: 53.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14101 components: - type: Transform @@ -133119,7 +133328,7 @@ entities: pos: 52.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14102 components: - type: Transform @@ -133127,7 +133336,7 @@ entities: pos: 51.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14104 components: - type: Transform @@ -133135,7 +133344,7 @@ entities: pos: 49.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14105 components: - type: Transform @@ -133143,7 +133352,7 @@ entities: pos: 48.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14106 components: - type: Transform @@ -133151,7 +133360,7 @@ entities: pos: 47.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14107 components: - type: Transform @@ -133159,7 +133368,7 @@ entities: pos: 46.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14108 components: - type: Transform @@ -133167,7 +133376,7 @@ entities: pos: 45.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14109 components: - type: Transform @@ -133175,7 +133384,7 @@ entities: pos: 44.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14110 components: - type: Transform @@ -133183,7 +133392,7 @@ entities: pos: 41.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14111 components: - type: Transform @@ -133191,7 +133400,7 @@ entities: pos: 41.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14112 components: - type: Transform @@ -133199,7 +133408,7 @@ entities: pos: 41.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14113 components: - type: Transform @@ -133207,7 +133416,7 @@ entities: pos: 41.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14114 components: - type: Transform @@ -133215,7 +133424,7 @@ entities: pos: 41.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14115 components: - type: Transform @@ -133223,7 +133432,7 @@ entities: pos: 43.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14116 components: - type: Transform @@ -133231,7 +133440,7 @@ entities: pos: 43.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14117 components: - type: Transform @@ -133239,7 +133448,7 @@ entities: pos: 43.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14118 components: - type: Transform @@ -133247,7 +133456,7 @@ entities: pos: 43.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14119 components: - type: Transform @@ -133255,7 +133464,7 @@ entities: pos: 43.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14128 components: - type: Transform @@ -133263,7 +133472,7 @@ entities: pos: 47.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14129 components: - type: Transform @@ -133271,7 +133480,7 @@ entities: pos: 47.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14130 components: - type: Transform @@ -133279,7 +133488,7 @@ entities: pos: 47.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14132 components: - type: Transform @@ -133287,7 +133496,7 @@ entities: pos: 47.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14133 components: - type: Transform @@ -133295,7 +133504,7 @@ entities: pos: 47.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14134 components: - type: Transform @@ -133303,7 +133512,7 @@ entities: pos: 47.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14135 components: - type: Transform @@ -133311,7 +133520,7 @@ entities: pos: 47.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14136 components: - type: Transform @@ -133319,7 +133528,7 @@ entities: pos: 47.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14138 components: - type: Transform @@ -133327,7 +133536,7 @@ entities: pos: 45.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14139 components: - type: Transform @@ -133335,7 +133544,7 @@ entities: pos: 45.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14140 components: - type: Transform @@ -133343,7 +133552,7 @@ entities: pos: 45.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14141 components: - type: Transform @@ -133351,7 +133560,7 @@ entities: pos: 45.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14143 components: - type: Transform @@ -133359,7 +133568,7 @@ entities: pos: 45.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14144 components: - type: Transform @@ -133367,7 +133576,7 @@ entities: pos: 45.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14145 components: - type: Transform @@ -133375,7 +133584,7 @@ entities: pos: 45.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14146 components: - type: Transform @@ -133383,7 +133592,7 @@ entities: pos: 46.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14147 components: - type: Transform @@ -133391,7 +133600,7 @@ entities: pos: 47.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14148 components: - type: Transform @@ -133399,70 +133608,70 @@ entities: pos: 48.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14150 components: - type: Transform pos: 50.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14151 components: - type: Transform pos: 50.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14152 components: - type: Transform pos: 50.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14153 components: - type: Transform pos: 50.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14154 components: - type: Transform pos: 50.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14155 components: - type: Transform pos: 50.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14156 components: - type: Transform pos: 50.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14157 components: - type: Transform pos: 50.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14158 components: - type: Transform pos: 50.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14159 components: - type: Transform @@ -133470,7 +133679,7 @@ entities: pos: 49.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14160 components: - type: Transform @@ -133478,7 +133687,7 @@ entities: pos: 48.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14161 components: - type: Transform @@ -133486,7 +133695,7 @@ entities: pos: 47.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14162 components: - type: Transform @@ -133494,7 +133703,7 @@ entities: pos: 46.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14163 components: - type: Transform @@ -133502,7 +133711,7 @@ entities: pos: 48.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14164 components: - type: Transform @@ -133510,7 +133719,7 @@ entities: pos: 49.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14165 components: - type: Transform @@ -133518,7 +133727,7 @@ entities: pos: 50.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14166 components: - type: Transform @@ -133526,7 +133735,7 @@ entities: pos: 51.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14167 components: - type: Transform @@ -133534,7 +133743,7 @@ entities: pos: 52.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14168 components: - type: Transform @@ -133542,7 +133751,7 @@ entities: pos: 52.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14169 components: - type: Transform @@ -133550,7 +133759,7 @@ entities: pos: 52.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14170 components: - type: Transform @@ -133558,7 +133767,7 @@ entities: pos: 52.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14171 components: - type: Transform @@ -133566,7 +133775,7 @@ entities: pos: 52.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14172 components: - type: Transform @@ -133574,7 +133783,7 @@ entities: pos: 52.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14173 components: - type: Transform @@ -133582,7 +133791,7 @@ entities: pos: 52.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14174 components: - type: Transform @@ -133590,7 +133799,7 @@ entities: pos: 52.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14175 components: - type: Transform @@ -133598,7 +133807,7 @@ entities: pos: 52.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14176 components: - type: Transform @@ -133606,7 +133815,7 @@ entities: pos: 51.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14177 components: - type: Transform @@ -133614,7 +133823,7 @@ entities: pos: 50.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14178 components: - type: Transform @@ -133622,7 +133831,7 @@ entities: pos: 49.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14179 components: - type: Transform @@ -133630,7 +133839,7 @@ entities: pos: 48.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14180 components: - type: Transform @@ -133638,7 +133847,7 @@ entities: pos: 46.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14181 components: - type: Transform @@ -133646,7 +133855,7 @@ entities: pos: 45.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14182 components: - type: Transform @@ -133654,7 +133863,7 @@ entities: pos: 44.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14184 components: - type: Transform @@ -133662,7 +133871,7 @@ entities: pos: 42.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14185 components: - type: Transform @@ -133670,7 +133879,7 @@ entities: pos: 41.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14186 components: - type: Transform @@ -133678,7 +133887,7 @@ entities: pos: 40.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14187 components: - type: Transform @@ -133686,7 +133895,7 @@ entities: pos: 44.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14188 components: - type: Transform @@ -133694,7 +133903,7 @@ entities: pos: 43.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14191 components: - type: Transform @@ -133702,7 +133911,7 @@ entities: pos: 40.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14192 components: - type: Transform @@ -133710,7 +133919,7 @@ entities: pos: 39.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14193 components: - type: Transform @@ -133718,133 +133927,133 @@ entities: pos: 38.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14194 components: - type: Transform pos: 47.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14195 components: - type: Transform pos: 47.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14196 components: - type: Transform pos: 47.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14197 components: - type: Transform pos: 47.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14199 components: - type: Transform pos: 47.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14201 components: - type: Transform pos: 47.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14202 components: - type: Transform pos: 47.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14203 components: - type: Transform pos: 47.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14204 components: - type: Transform pos: 47.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14205 components: - type: Transform pos: 47.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14208 components: - type: Transform pos: 39.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14209 components: - type: Transform pos: 39.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14210 components: - type: Transform pos: 39.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14211 components: - type: Transform pos: 39.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14212 components: - type: Transform pos: 39.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14213 components: - type: Transform pos: 39.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14214 components: - type: Transform pos: 37.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14215 components: - type: Transform pos: 37.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14216 components: - type: Transform @@ -133852,7 +134061,7 @@ entities: pos: 36.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14217 components: - type: Transform @@ -133860,7 +134069,7 @@ entities: pos: 35.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14218 components: - type: Transform @@ -133868,7 +134077,7 @@ entities: pos: 34.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14219 components: - type: Transform @@ -133876,7 +134085,7 @@ entities: pos: 33.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14221 components: - type: Transform @@ -133884,7 +134093,7 @@ entities: pos: 31.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14223 components: - type: Transform @@ -133892,7 +134101,7 @@ entities: pos: 29.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14224 components: - type: Transform @@ -133900,7 +134109,7 @@ entities: pos: 28.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14225 components: - type: Transform @@ -133908,7 +134117,7 @@ entities: pos: 27.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14226 components: - type: Transform @@ -133916,7 +134125,7 @@ entities: pos: 26.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14227 components: - type: Transform @@ -133924,7 +134133,7 @@ entities: pos: 24.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14228 components: - type: Transform @@ -133932,7 +134141,7 @@ entities: pos: 25.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14229 components: - type: Transform @@ -133940,7 +134149,7 @@ entities: pos: 26.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14230 components: - type: Transform @@ -133948,7 +134157,7 @@ entities: pos: 27.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14232 components: - type: Transform @@ -133956,7 +134165,7 @@ entities: pos: 29.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14233 components: - type: Transform @@ -133964,7 +134173,7 @@ entities: pos: 30.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14234 components: - type: Transform @@ -133972,7 +134181,7 @@ entities: pos: 31.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14235 components: - type: Transform @@ -133980,7 +134189,7 @@ entities: pos: 32.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14236 components: - type: Transform @@ -133988,7 +134197,7 @@ entities: pos: 33.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14237 components: - type: Transform @@ -133996,7 +134205,7 @@ entities: pos: 34.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14238 components: - type: Transform @@ -134004,7 +134213,7 @@ entities: pos: 35.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14239 components: - type: Transform @@ -134012,7 +134221,7 @@ entities: pos: 36.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14240 components: - type: Transform @@ -134020,7 +134229,7 @@ entities: pos: 37.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14242 components: - type: Transform @@ -134028,7 +134237,7 @@ entities: pos: 37.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14243 components: - type: Transform @@ -134036,7 +134245,7 @@ entities: pos: 37.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14244 components: - type: Transform @@ -134044,7 +134253,7 @@ entities: pos: 37.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14245 components: - type: Transform @@ -134052,7 +134261,7 @@ entities: pos: 37.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14246 components: - type: Transform @@ -134060,7 +134269,7 @@ entities: pos: 37.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14249 components: - type: Transform @@ -134068,7 +134277,7 @@ entities: pos: 37.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14251 components: - type: Transform @@ -134076,7 +134285,7 @@ entities: pos: 37.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14252 components: - type: Transform @@ -134084,7 +134293,7 @@ entities: pos: 37.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14253 components: - type: Transform @@ -134092,7 +134301,7 @@ entities: pos: 37.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14256 components: - type: Transform @@ -134100,7 +134309,7 @@ entities: pos: 39.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14258 components: - type: Transform @@ -134108,7 +134317,7 @@ entities: pos: 39.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14259 components: - type: Transform @@ -134116,7 +134325,7 @@ entities: pos: 39.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14260 components: - type: Transform @@ -134124,7 +134333,7 @@ entities: pos: 39.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14261 components: - type: Transform @@ -134132,7 +134341,7 @@ entities: pos: 39.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14262 components: - type: Transform @@ -134140,7 +134349,7 @@ entities: pos: 39.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14264 components: - type: Transform @@ -134148,7 +134357,7 @@ entities: pos: 39.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14266 components: - type: Transform @@ -134156,91 +134365,91 @@ entities: pos: 42.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14267 components: - type: Transform pos: 49.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14268 components: - type: Transform pos: 49.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14269 components: - type: Transform pos: 49.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14270 components: - type: Transform pos: 49.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14271 components: - type: Transform pos: 49.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14272 components: - type: Transform pos: 49.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14273 components: - type: Transform pos: 49.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14275 components: - type: Transform pos: 49.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14276 components: - type: Transform pos: 49.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14277 components: - type: Transform pos: 49.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14278 components: - type: Transform pos: 49.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14279 components: - type: Transform pos: 49.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14284 components: - type: Transform @@ -134248,7 +134457,7 @@ entities: pos: 50.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14285 components: - type: Transform @@ -134256,7 +134465,7 @@ entities: pos: 51.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14286 components: - type: Transform @@ -134264,7 +134473,7 @@ entities: pos: 52.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14287 components: - type: Transform @@ -134272,7 +134481,7 @@ entities: pos: 53.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14288 components: - type: Transform @@ -134280,7 +134489,7 @@ entities: pos: 54.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14289 components: - type: Transform @@ -134288,7 +134497,7 @@ entities: pos: 49.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14290 components: - type: Transform @@ -134296,7 +134505,7 @@ entities: pos: 50.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14291 components: - type: Transform @@ -134304,7 +134513,7 @@ entities: pos: 51.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14292 components: - type: Transform @@ -134312,7 +134521,7 @@ entities: pos: 52.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14293 components: - type: Transform @@ -134320,7 +134529,7 @@ entities: pos: 53.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14294 components: - type: Transform @@ -134328,14 +134537,14 @@ entities: pos: 54.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14296 components: - type: Transform pos: 56.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14298 components: - type: Transform @@ -134343,7 +134552,7 @@ entities: pos: 55.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14301 components: - type: Transform @@ -134351,7 +134560,7 @@ entities: pos: 41.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14302 components: - type: Transform @@ -134359,7 +134568,7 @@ entities: pos: 41.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14303 components: - type: Transform @@ -134367,7 +134576,7 @@ entities: pos: 43.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14304 components: - type: Transform @@ -134375,35 +134584,35 @@ entities: pos: 43.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14306 components: - type: Transform pos: 42.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14308 components: - type: Transform pos: 42.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14309 components: - type: Transform pos: 42.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14311 components: - type: Transform pos: 42.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14319 components: - type: Transform @@ -134411,7 +134620,7 @@ entities: pos: 34.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14320 components: - type: Transform @@ -134419,7 +134628,7 @@ entities: pos: 33.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14325 components: - type: Transform @@ -134427,7 +134636,7 @@ entities: pos: 36.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14327 components: - type: Transform @@ -134435,7 +134644,7 @@ entities: pos: 37.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14328 components: - type: Transform @@ -134443,21 +134652,21 @@ entities: pos: 36.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14335 components: - type: Transform pos: 44.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14336 components: - type: Transform pos: 44.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14337 components: - type: Transform @@ -134465,7 +134674,7 @@ entities: pos: 46.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14338 components: - type: Transform @@ -134473,7 +134682,7 @@ entities: pos: 42.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14339 components: - type: Transform @@ -134481,7 +134690,7 @@ entities: pos: 40.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14340 components: - type: Transform @@ -134489,7 +134698,7 @@ entities: pos: 39.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14341 components: - type: Transform @@ -134497,7 +134706,7 @@ entities: pos: 38.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14344 components: - type: Transform @@ -134505,7 +134714,7 @@ entities: pos: 41.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14348 components: - type: Transform @@ -134513,7 +134722,7 @@ entities: pos: 37.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14349 components: - type: Transform @@ -134521,7 +134730,7 @@ entities: pos: 36.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14350 components: - type: Transform @@ -134529,7 +134738,7 @@ entities: pos: 35.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14351 components: - type: Transform @@ -134537,7 +134746,7 @@ entities: pos: 36.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14352 components: - type: Transform @@ -134545,7 +134754,7 @@ entities: pos: 35.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14353 components: - type: Transform @@ -134553,7 +134762,7 @@ entities: pos: 39.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14354 components: - type: Transform @@ -134561,7 +134770,7 @@ entities: pos: 39.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14355 components: - type: Transform @@ -134569,7 +134778,7 @@ entities: pos: 38.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14356 components: - type: Transform @@ -134577,7 +134786,7 @@ entities: pos: 37.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14357 components: - type: Transform @@ -134585,7 +134794,7 @@ entities: pos: 36.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14358 components: - type: Transform @@ -134593,7 +134802,7 @@ entities: pos: 36.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14481 components: - type: Transform @@ -134601,7 +134810,7 @@ entities: pos: 28.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14482 components: - type: Transform @@ -134609,7 +134818,7 @@ entities: pos: 28.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14483 components: - type: Transform @@ -134617,7 +134826,7 @@ entities: pos: 28.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14484 components: - type: Transform @@ -134625,7 +134834,7 @@ entities: pos: 28.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14485 components: - type: Transform @@ -134633,7 +134842,7 @@ entities: pos: 28.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14492 components: - type: Transform @@ -134641,7 +134850,7 @@ entities: pos: 48.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14493 components: - type: Transform @@ -134649,7 +134858,7 @@ entities: pos: 49.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14494 components: - type: Transform @@ -134657,7 +134866,7 @@ entities: pos: 50.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14495 components: - type: Transform @@ -134665,119 +134874,119 @@ entities: pos: 51.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14496 components: - type: Transform pos: 47.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14497 components: - type: Transform pos: 47.5,-40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14529 components: - type: Transform pos: 50.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14530 components: - type: Transform pos: 50.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14531 components: - type: Transform pos: 50.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14532 components: - type: Transform pos: 50.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14533 components: - type: Transform pos: 50.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14534 components: - type: Transform pos: 50.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14535 components: - type: Transform pos: 50.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14536 components: - type: Transform pos: 47.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14537 components: - type: Transform pos: 47.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14538 components: - type: Transform pos: 47.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14539 components: - type: Transform pos: 47.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14540 components: - type: Transform pos: 47.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14541 components: - type: Transform pos: 47.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14542 components: - type: Transform pos: 47.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14546 components: - type: Transform @@ -134785,7 +134994,7 @@ entities: pos: 55.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14547 components: - type: Transform @@ -134793,7 +135002,7 @@ entities: pos: 56.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14548 components: - type: Transform @@ -134801,7 +135010,7 @@ entities: pos: 57.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14549 components: - type: Transform @@ -134809,7 +135018,7 @@ entities: pos: 58.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14551 components: - type: Transform @@ -134817,7 +135026,7 @@ entities: pos: 60.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14552 components: - type: Transform @@ -134825,7 +135034,7 @@ entities: pos: 61.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14553 components: - type: Transform @@ -134833,7 +135042,7 @@ entities: pos: 62.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14554 components: - type: Transform @@ -134841,7 +135050,7 @@ entities: pos: 63.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14555 components: - type: Transform @@ -134849,7 +135058,7 @@ entities: pos: 57.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14556 components: - type: Transform @@ -134857,7 +135066,7 @@ entities: pos: 58.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14557 components: - type: Transform @@ -134865,7 +135074,7 @@ entities: pos: 59.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14560 components: - type: Transform @@ -134873,7 +135082,7 @@ entities: pos: 62.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14561 components: - type: Transform @@ -134881,7 +135090,7 @@ entities: pos: 63.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15383 components: - type: Transform @@ -134988,56 +135197,56 @@ entities: pos: 54.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16677 components: - type: Transform pos: 54.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16678 components: - type: Transform pos: 54.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16679 components: - type: Transform pos: 54.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16680 components: - type: Transform pos: 54.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16681 components: - type: Transform pos: 54.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16682 components: - type: Transform pos: 56.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16683 components: - type: Transform pos: 56.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16685 components: - type: Transform @@ -135045,7 +135254,7 @@ entities: pos: 54.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16686 components: - type: Transform @@ -135053,7 +135262,7 @@ entities: pos: 53.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16687 components: - type: Transform @@ -135061,7 +135270,7 @@ entities: pos: 52.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16688 components: - type: Transform @@ -135069,7 +135278,7 @@ entities: pos: 51.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16689 components: - type: Transform @@ -135077,7 +135286,7 @@ entities: pos: 50.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16690 components: - type: Transform @@ -135085,7 +135294,7 @@ entities: pos: 50.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16691 components: - type: Transform @@ -135093,7 +135302,7 @@ entities: pos: 50.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16692 components: - type: Transform @@ -135101,7 +135310,7 @@ entities: pos: 50.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16693 components: - type: Transform @@ -135109,7 +135318,7 @@ entities: pos: 50.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16694 components: - type: Transform @@ -135117,7 +135326,7 @@ entities: pos: 49.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16695 components: - type: Transform @@ -135125,7 +135334,7 @@ entities: pos: 49.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16696 components: - type: Transform @@ -135133,7 +135342,7 @@ entities: pos: 49.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16697 components: - type: Transform @@ -135141,7 +135350,7 @@ entities: pos: 50.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16698 components: - type: Transform @@ -135149,7 +135358,7 @@ entities: pos: 51.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16699 components: - type: Transform @@ -135157,7 +135366,7 @@ entities: pos: 52.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16700 components: - type: Transform @@ -135165,7 +135374,7 @@ entities: pos: 53.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16701 components: - type: Transform @@ -135173,7 +135382,7 @@ entities: pos: 55.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16702 components: - type: Transform @@ -135181,7 +135390,7 @@ entities: pos: 56.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16703 components: - type: Transform @@ -135189,7 +135398,7 @@ entities: pos: 57.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16704 components: - type: Transform @@ -135197,7 +135406,7 @@ entities: pos: 58.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16705 components: - type: Transform @@ -135205,7 +135414,7 @@ entities: pos: 57.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16706 components: - type: Transform @@ -135213,7 +135422,7 @@ entities: pos: 58.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16707 components: - type: Transform @@ -135221,7 +135430,7 @@ entities: pos: 59.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16709 components: - type: Transform @@ -135229,7 +135438,7 @@ entities: pos: 61.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16710 components: - type: Transform @@ -135237,7 +135446,7 @@ entities: pos: 62.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16711 components: - type: Transform @@ -135245,7 +135454,7 @@ entities: pos: 63.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16712 components: - type: Transform @@ -135253,7 +135462,7 @@ entities: pos: 64.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16713 components: - type: Transform @@ -135261,7 +135470,7 @@ entities: pos: 65.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16714 components: - type: Transform @@ -135269,7 +135478,7 @@ entities: pos: 66.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16715 components: - type: Transform @@ -135277,7 +135486,7 @@ entities: pos: 67.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16716 components: - type: Transform @@ -135285,7 +135494,7 @@ entities: pos: 68.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16717 components: - type: Transform @@ -135293,7 +135502,7 @@ entities: pos: 69.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16720 components: - type: Transform @@ -135301,7 +135510,7 @@ entities: pos: 73.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16721 components: - type: Transform @@ -135309,7 +135518,7 @@ entities: pos: 74.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16722 components: - type: Transform @@ -135317,7 +135526,7 @@ entities: pos: 75.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16723 components: - type: Transform @@ -135325,7 +135534,7 @@ entities: pos: 76.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16724 components: - type: Transform @@ -135333,7 +135542,7 @@ entities: pos: 77.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16725 components: - type: Transform @@ -135341,7 +135550,7 @@ entities: pos: 78.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16726 components: - type: Transform @@ -135349,7 +135558,7 @@ entities: pos: 79.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16727 components: - type: Transform @@ -135357,7 +135566,7 @@ entities: pos: 80.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16728 components: - type: Transform @@ -135365,7 +135574,7 @@ entities: pos: 72.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16729 components: - type: Transform @@ -135373,7 +135582,7 @@ entities: pos: 71.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16730 components: - type: Transform @@ -135381,7 +135590,7 @@ entities: pos: 70.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16731 components: - type: Transform @@ -135389,7 +135598,7 @@ entities: pos: 69.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16732 components: - type: Transform @@ -135397,7 +135606,7 @@ entities: pos: 68.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16733 components: - type: Transform @@ -135405,7 +135614,7 @@ entities: pos: 67.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16734 components: - type: Transform @@ -135413,7 +135622,7 @@ entities: pos: 66.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16735 components: - type: Transform @@ -135421,7 +135630,7 @@ entities: pos: 65.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16736 components: - type: Transform @@ -135429,7 +135638,7 @@ entities: pos: 64.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16737 components: - type: Transform @@ -135437,7 +135646,7 @@ entities: pos: 63.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16738 components: - type: Transform @@ -135445,7 +135654,7 @@ entities: pos: 62.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16739 components: - type: Transform @@ -135453,7 +135662,7 @@ entities: pos: 61.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16740 components: - type: Transform @@ -135461,42 +135670,42 @@ entities: pos: 60.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16743 components: - type: Transform pos: 73.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16744 components: - type: Transform pos: 73.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16745 components: - type: Transform pos: 73.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16746 components: - type: Transform pos: 72.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16747 components: - type: Transform pos: 72.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16755 components: - type: Transform @@ -135504,7 +135713,7 @@ entities: pos: 72.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16757 components: - type: Transform @@ -135512,7 +135721,7 @@ entities: pos: 73.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16762 components: - type: Transform @@ -135520,7 +135729,7 @@ entities: pos: 74.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16763 components: - type: Transform @@ -135528,7 +135737,7 @@ entities: pos: 75.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16764 components: - type: Transform @@ -135536,7 +135745,7 @@ entities: pos: 76.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16766 components: - type: Transform @@ -135544,7 +135753,7 @@ entities: pos: 78.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16767 components: - type: Transform @@ -135552,7 +135761,7 @@ entities: pos: 79.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16768 components: - type: Transform @@ -135560,7 +135769,7 @@ entities: pos: 80.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16769 components: - type: Transform @@ -135568,7 +135777,7 @@ entities: pos: 81.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16770 components: - type: Transform @@ -135576,7 +135785,7 @@ entities: pos: 82.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16771 components: - type: Transform @@ -135584,7 +135793,7 @@ entities: pos: 81.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16772 components: - type: Transform @@ -135592,7 +135801,7 @@ entities: pos: 81.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16773 components: - type: Transform @@ -135600,7 +135809,7 @@ entities: pos: 81.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16774 components: - type: Transform @@ -135608,7 +135817,7 @@ entities: pos: 81.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16776 components: - type: Transform @@ -135616,7 +135825,7 @@ entities: pos: 81.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16778 components: - type: Transform @@ -135624,7 +135833,7 @@ entities: pos: 81.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16779 components: - type: Transform @@ -135632,7 +135841,7 @@ entities: pos: 81.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16780 components: - type: Transform @@ -135640,7 +135849,7 @@ entities: pos: 81.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16781 components: - type: Transform @@ -135648,7 +135857,7 @@ entities: pos: 81.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16782 components: - type: Transform @@ -135656,7 +135865,7 @@ entities: pos: 81.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16783 components: - type: Transform @@ -135664,7 +135873,7 @@ entities: pos: 81.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16784 components: - type: Transform @@ -135672,7 +135881,7 @@ entities: pos: 81.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16785 components: - type: Transform @@ -135680,7 +135889,7 @@ entities: pos: 81.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16786 components: - type: Transform @@ -135688,7 +135897,7 @@ entities: pos: 79.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16787 components: - type: Transform @@ -135696,7 +135905,7 @@ entities: pos: 81.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16788 components: - type: Transform @@ -135704,7 +135913,7 @@ entities: pos: 81.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16789 components: - type: Transform @@ -135712,7 +135921,7 @@ entities: pos: 81.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16790 components: - type: Transform @@ -135720,7 +135929,7 @@ entities: pos: 81.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16791 components: - type: Transform @@ -135728,7 +135937,7 @@ entities: pos: 81.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16792 components: - type: Transform @@ -135736,7 +135945,7 @@ entities: pos: 79.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16793 components: - type: Transform @@ -135744,7 +135953,7 @@ entities: pos: 81.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16794 components: - type: Transform @@ -135752,7 +135961,7 @@ entities: pos: 81.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16795 components: - type: Transform @@ -135760,7 +135969,7 @@ entities: pos: 83.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16796 components: - type: Transform @@ -135768,7 +135977,7 @@ entities: pos: 83.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16797 components: - type: Transform @@ -135776,7 +135985,7 @@ entities: pos: 83.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16798 components: - type: Transform @@ -135784,7 +135993,7 @@ entities: pos: 83.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16799 components: - type: Transform @@ -135792,7 +136001,7 @@ entities: pos: 83.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16800 components: - type: Transform @@ -135800,7 +136009,7 @@ entities: pos: 80.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16801 components: - type: Transform @@ -135808,7 +136017,7 @@ entities: pos: 83.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16802 components: - type: Transform @@ -135816,7 +136025,7 @@ entities: pos: 83.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16803 components: - type: Transform @@ -135824,7 +136033,7 @@ entities: pos: 82.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16804 components: - type: Transform @@ -135832,7 +136041,7 @@ entities: pos: 83.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16805 components: - type: Transform @@ -135840,7 +136049,7 @@ entities: pos: 83.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16806 components: - type: Transform @@ -135848,7 +136057,7 @@ entities: pos: 80.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16807 components: - type: Transform @@ -135856,7 +136065,7 @@ entities: pos: 83.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16808 components: - type: Transform @@ -135864,7 +136073,7 @@ entities: pos: 83.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16809 components: - type: Transform @@ -135872,7 +136081,7 @@ entities: pos: 83.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16810 components: - type: Transform @@ -135880,7 +136089,7 @@ entities: pos: 83.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16811 components: - type: Transform @@ -135888,7 +136097,7 @@ entities: pos: 83.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16812 components: - type: Transform @@ -135896,7 +136105,7 @@ entities: pos: 83.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16814 components: - type: Transform @@ -135904,7 +136113,7 @@ entities: pos: 83.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16815 components: - type: Transform @@ -135912,7 +136121,7 @@ entities: pos: 83.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16816 components: - type: Transform @@ -135920,7 +136129,7 @@ entities: pos: 83.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16817 components: - type: Transform @@ -135928,7 +136137,7 @@ entities: pos: 83.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16818 components: - type: Transform @@ -135936,7 +136145,7 @@ entities: pos: 83.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16819 components: - type: Transform @@ -135944,7 +136153,7 @@ entities: pos: 82.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16820 components: - type: Transform @@ -135952,7 +136161,7 @@ entities: pos: 83.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16821 components: - type: Transform @@ -135960,7 +136169,7 @@ entities: pos: 84.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16822 components: - type: Transform @@ -135968,7 +136177,7 @@ entities: pos: 85.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16823 components: - type: Transform @@ -135976,7 +136185,7 @@ entities: pos: 86.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16825 components: - type: Transform @@ -135984,7 +136193,7 @@ entities: pos: 88.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16826 components: - type: Transform @@ -135992,7 +136201,7 @@ entities: pos: 89.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16827 components: - type: Transform @@ -136000,7 +136209,7 @@ entities: pos: 90.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16828 components: - type: Transform @@ -136008,7 +136217,7 @@ entities: pos: 91.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16829 components: - type: Transform @@ -136016,7 +136225,7 @@ entities: pos: 92.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16830 components: - type: Transform @@ -136024,7 +136233,7 @@ entities: pos: 93.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16833 components: - type: Transform @@ -136032,7 +136241,7 @@ entities: pos: 96.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16834 components: - type: Transform @@ -136040,7 +136249,7 @@ entities: pos: 84.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16835 components: - type: Transform @@ -136048,7 +136257,7 @@ entities: pos: 85.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16836 components: - type: Transform @@ -136056,7 +136265,7 @@ entities: pos: 86.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16837 components: - type: Transform @@ -136064,7 +136273,7 @@ entities: pos: 87.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16838 components: - type: Transform @@ -136072,7 +136281,7 @@ entities: pos: 88.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16839 components: - type: Transform @@ -136080,7 +136289,7 @@ entities: pos: 89.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16840 components: - type: Transform @@ -136088,7 +136297,7 @@ entities: pos: 90.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16841 components: - type: Transform @@ -136096,7 +136305,7 @@ entities: pos: 91.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16842 components: - type: Transform @@ -136104,7 +136313,7 @@ entities: pos: 92.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16843 components: - type: Transform @@ -136112,7 +136321,7 @@ entities: pos: 93.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16844 components: - type: Transform @@ -136120,7 +136329,7 @@ entities: pos: 94.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16845 components: - type: Transform @@ -136128,7 +136337,7 @@ entities: pos: 95.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16846 components: - type: Transform @@ -136136,7 +136345,7 @@ entities: pos: 96.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16849 components: - type: Transform @@ -136144,7 +136353,7 @@ entities: pos: 80.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16850 components: - type: Transform @@ -136152,7 +136361,7 @@ entities: pos: 79.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16851 components: - type: Transform @@ -136160,7 +136369,7 @@ entities: pos: 78.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16853 components: - type: Transform @@ -136168,7 +136377,7 @@ entities: pos: 76.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16854 components: - type: Transform @@ -136176,7 +136385,7 @@ entities: pos: 75.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16855 components: - type: Transform @@ -136184,14 +136393,14 @@ entities: pos: 74.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16856 components: - type: Transform pos: 73.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16857 components: - type: Transform @@ -136199,7 +136408,7 @@ entities: pos: 72.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16859 components: - type: Transform @@ -136207,7 +136416,7 @@ entities: pos: 70.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16860 components: - type: Transform @@ -136215,7 +136424,7 @@ entities: pos: 69.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16861 components: - type: Transform @@ -136223,7 +136432,7 @@ entities: pos: 68.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16862 components: - type: Transform @@ -136231,7 +136440,7 @@ entities: pos: 67.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16863 components: - type: Transform @@ -136239,35 +136448,35 @@ entities: pos: 66.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16868 components: - type: Transform pos: 66.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16869 components: - type: Transform pos: 66.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16870 components: - type: Transform pos: 65.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16871 components: - type: Transform pos: 65.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16872 components: - type: Transform @@ -136275,7 +136484,7 @@ entities: pos: 67.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16873 components: - type: Transform @@ -136283,7 +136492,7 @@ entities: pos: 68.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16874 components: - type: Transform @@ -136291,7 +136500,7 @@ entities: pos: 69.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16875 components: - type: Transform @@ -136299,7 +136508,7 @@ entities: pos: 70.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16877 components: - type: Transform @@ -136307,7 +136516,7 @@ entities: pos: 72.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16878 components: - type: Transform @@ -136315,7 +136524,7 @@ entities: pos: 73.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16879 components: - type: Transform @@ -136323,7 +136532,7 @@ entities: pos: 74.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16880 components: - type: Transform @@ -136331,7 +136540,7 @@ entities: pos: 75.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16881 components: - type: Transform @@ -136339,7 +136548,7 @@ entities: pos: 76.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16882 components: - type: Transform @@ -136347,7 +136556,7 @@ entities: pos: 77.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16883 components: - type: Transform @@ -136355,7 +136564,7 @@ entities: pos: 78.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16884 components: - type: Transform @@ -136363,7 +136572,7 @@ entities: pos: 79.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16885 components: - type: Transform @@ -136371,7 +136580,7 @@ entities: pos: 80.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16886 components: - type: Transform @@ -136379,7 +136588,7 @@ entities: pos: 81.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16887 components: - type: Transform @@ -136387,7 +136596,7 @@ entities: pos: 82.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16888 components: - type: Transform @@ -136395,7 +136604,7 @@ entities: pos: 82.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16889 components: - type: Transform @@ -136403,7 +136612,7 @@ entities: pos: 83.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16890 components: - type: Transform @@ -136411,7 +136620,7 @@ entities: pos: 71.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16891 components: - type: Transform @@ -136419,7 +136628,7 @@ entities: pos: 64.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16892 components: - type: Transform @@ -136427,7 +136636,7 @@ entities: pos: 63.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16893 components: - type: Transform @@ -136435,7 +136644,7 @@ entities: pos: 62.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16894 components: - type: Transform @@ -136443,7 +136652,7 @@ entities: pos: 61.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16895 components: - type: Transform @@ -136451,7 +136660,7 @@ entities: pos: 60.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16897 components: - type: Transform @@ -136459,7 +136668,7 @@ entities: pos: 58.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16898 components: - type: Transform @@ -136467,7 +136676,7 @@ entities: pos: 57.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16899 components: - type: Transform @@ -136475,7 +136684,7 @@ entities: pos: 64.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16901 components: - type: Transform @@ -136483,7 +136692,7 @@ entities: pos: 62.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16903 components: - type: Transform @@ -136491,7 +136700,7 @@ entities: pos: 60.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16904 components: - type: Transform @@ -136499,7 +136708,7 @@ entities: pos: 59.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16905 components: - type: Transform @@ -136507,7 +136716,7 @@ entities: pos: 58.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16906 components: - type: Transform @@ -136515,7 +136724,7 @@ entities: pos: 57.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16907 components: - type: Transform @@ -136523,7 +136732,7 @@ entities: pos: 56.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16908 components: - type: Transform @@ -136531,91 +136740,91 @@ entities: pos: 55.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17139 components: - type: Transform pos: 11.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17140 components: - type: Transform pos: 11.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17141 components: - type: Transform pos: 11.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17142 components: - type: Transform pos: 11.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17143 components: - type: Transform pos: 11.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17144 components: - type: Transform pos: 12.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17145 components: - type: Transform pos: 12.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17146 components: - type: Transform pos: 12.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17147 components: - type: Transform pos: 12.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17148 components: - type: Transform pos: 11.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17149 components: - type: Transform pos: 11.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17150 components: - type: Transform pos: 11.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17152 components: - type: Transform @@ -136623,7 +136832,7 @@ entities: pos: 14.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17153 components: - type: Transform @@ -136631,7 +136840,7 @@ entities: pos: 14.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17155 components: - type: Transform @@ -136639,7 +136848,7 @@ entities: pos: 12.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17156 components: - type: Transform @@ -136647,7 +136856,7 @@ entities: pos: 12.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17158 components: - type: Transform @@ -136655,7 +136864,7 @@ entities: pos: 14.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17180 components: - type: Transform @@ -136663,7 +136872,7 @@ entities: pos: 13.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17181 components: - type: Transform @@ -136671,7 +136880,7 @@ entities: pos: 14.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17182 components: - type: Transform @@ -136679,7 +136888,7 @@ entities: pos: 15.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17183 components: - type: Transform @@ -136687,7 +136896,7 @@ entities: pos: 16.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17184 components: - type: Transform @@ -136695,7 +136904,7 @@ entities: pos: 17.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17187 components: - type: Transform @@ -136703,7 +136912,7 @@ entities: pos: 15.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17189 components: - type: Transform @@ -136711,7 +136920,7 @@ entities: pos: 13.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17190 components: - type: Transform @@ -136719,7 +136928,7 @@ entities: pos: 12.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17191 components: - type: Transform @@ -136727,7 +136936,7 @@ entities: pos: 10.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17192 components: - type: Transform @@ -136735,7 +136944,7 @@ entities: pos: 9.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17193 components: - type: Transform @@ -136743,7 +136952,7 @@ entities: pos: 8.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17194 components: - type: Transform @@ -136751,7 +136960,7 @@ entities: pos: 7.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17195 components: - type: Transform @@ -136759,7 +136968,7 @@ entities: pos: 6.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17196 components: - type: Transform @@ -136767,7 +136976,7 @@ entities: pos: 11.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17197 components: - type: Transform @@ -136775,7 +136984,7 @@ entities: pos: 10.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17198 components: - type: Transform @@ -136783,7 +136992,7 @@ entities: pos: 9.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17199 components: - type: Transform @@ -136791,7 +137000,7 @@ entities: pos: 8.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17200 components: - type: Transform @@ -136799,7 +137008,7 @@ entities: pos: 7.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17201 components: - type: Transform @@ -136807,189 +137016,189 @@ entities: pos: 6.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17202 components: - type: Transform pos: 17.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17203 components: - type: Transform pos: 17.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17204 components: - type: Transform pos: 17.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17206 components: - type: Transform pos: 17.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17207 components: - type: Transform pos: 17.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17208 components: - type: Transform pos: 17.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17209 components: - type: Transform pos: 17.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17210 components: - type: Transform pos: 17.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17212 components: - type: Transform pos: 17.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17213 components: - type: Transform pos: 17.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17214 components: - type: Transform pos: 17.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17216 components: - type: Transform pos: 17.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17217 components: - type: Transform pos: 17.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17220 components: - type: Transform pos: 19.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17221 components: - type: Transform pos: 19.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17222 components: - type: Transform pos: 19.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17224 components: - type: Transform pos: 19.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17225 components: - type: Transform pos: 19.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17226 components: - type: Transform pos: 19.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17227 components: - type: Transform pos: 19.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17229 components: - type: Transform pos: 19.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17230 components: - type: Transform pos: 19.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17231 components: - type: Transform pos: 19.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17233 components: - type: Transform pos: 19.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17234 components: - type: Transform pos: 19.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17235 components: - type: Transform pos: 19.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17238 components: - type: Transform @@ -136997,7 +137206,7 @@ entities: pos: 16.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17240 components: - type: Transform @@ -137005,7 +137214,7 @@ entities: pos: 14.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17241 components: - type: Transform @@ -137013,7 +137222,7 @@ entities: pos: 13.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17242 components: - type: Transform @@ -137021,7 +137230,7 @@ entities: pos: 12.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17243 components: - type: Transform @@ -137029,7 +137238,7 @@ entities: pos: 11.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17244 components: - type: Transform @@ -137037,7 +137246,7 @@ entities: pos: 10.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17245 components: - type: Transform @@ -137045,7 +137254,7 @@ entities: pos: 9.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17247 components: - type: Transform @@ -137053,7 +137262,7 @@ entities: pos: 7.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17248 components: - type: Transform @@ -137061,7 +137270,7 @@ entities: pos: 6.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17249 components: - type: Transform @@ -137069,7 +137278,7 @@ entities: pos: 5.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17250 components: - type: Transform @@ -137077,7 +137286,7 @@ entities: pos: 4.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17251 components: - type: Transform @@ -137085,7 +137294,7 @@ entities: pos: 3.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17253 components: - type: Transform @@ -137093,7 +137302,7 @@ entities: pos: 1.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17254 components: - type: Transform @@ -137101,7 +137310,7 @@ entities: pos: 0.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17256 components: - type: Transform @@ -137109,7 +137318,7 @@ entities: pos: -1.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17257 components: - type: Transform @@ -137117,7 +137326,7 @@ entities: pos: -2.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17258 components: - type: Transform @@ -137125,7 +137334,7 @@ entities: pos: -3.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17259 components: - type: Transform @@ -137133,7 +137342,7 @@ entities: pos: -4.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17260 components: - type: Transform @@ -137141,7 +137350,7 @@ entities: pos: -2.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17261 components: - type: Transform @@ -137149,7 +137358,7 @@ entities: pos: -1.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17263 components: - type: Transform @@ -137157,7 +137366,7 @@ entities: pos: 0.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17264 components: - type: Transform @@ -137165,7 +137374,7 @@ entities: pos: 1.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17265 components: - type: Transform @@ -137173,7 +137382,7 @@ entities: pos: 2.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17266 components: - type: Transform @@ -137181,7 +137390,7 @@ entities: pos: 3.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17268 components: - type: Transform @@ -137189,7 +137398,7 @@ entities: pos: 5.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17270 components: - type: Transform @@ -137197,7 +137406,7 @@ entities: pos: 7.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17271 components: - type: Transform @@ -137205,7 +137414,7 @@ entities: pos: 8.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17272 components: - type: Transform @@ -137213,7 +137422,7 @@ entities: pos: 9.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17277 components: - type: Transform @@ -137221,7 +137430,7 @@ entities: pos: 14.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17278 components: - type: Transform @@ -137229,7 +137438,7 @@ entities: pos: 15.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17279 components: - type: Transform @@ -137237,7 +137446,7 @@ entities: pos: 16.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17280 components: - type: Transform @@ -137245,42 +137454,42 @@ entities: pos: 17.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17284 components: - type: Transform pos: -5.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17285 components: - type: Transform pos: -5.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17286 components: - type: Transform pos: -3.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17287 components: - type: Transform pos: -3.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17288 components: - type: Transform pos: -5.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17293 components: - type: Transform @@ -137288,7 +137497,7 @@ entities: pos: 16.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17294 components: - type: Transform @@ -137296,7 +137505,7 @@ entities: pos: 15.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17295 components: - type: Transform @@ -137304,7 +137513,7 @@ entities: pos: 14.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17296 components: - type: Transform @@ -137312,7 +137521,7 @@ entities: pos: 13.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17298 components: - type: Transform @@ -137320,7 +137529,7 @@ entities: pos: 11.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17299 components: - type: Transform @@ -137328,7 +137537,7 @@ entities: pos: 18.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17300 components: - type: Transform @@ -137336,7 +137545,7 @@ entities: pos: 17.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17301 components: - type: Transform @@ -137344,7 +137553,7 @@ entities: pos: 16.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17302 components: - type: Transform @@ -137352,7 +137561,7 @@ entities: pos: 15.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17304 components: - type: Transform @@ -137360,7 +137569,7 @@ entities: pos: 13.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17305 components: - type: Transform @@ -137368,7 +137577,7 @@ entities: pos: 12.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17306 components: - type: Transform @@ -137376,7 +137585,7 @@ entities: pos: 11.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17307 components: - type: Transform @@ -137384,7 +137593,7 @@ entities: pos: 10.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17308 components: - type: Transform @@ -137392,7 +137601,7 @@ entities: pos: 9.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17309 components: - type: Transform @@ -137400,7 +137609,7 @@ entities: pos: 8.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17310 components: - type: Transform @@ -137408,7 +137617,7 @@ entities: pos: 7.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17311 components: - type: Transform @@ -137416,7 +137625,7 @@ entities: pos: 6.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17312 components: - type: Transform @@ -137424,7 +137633,7 @@ entities: pos: 5.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17314 components: - type: Transform @@ -137432,7 +137641,7 @@ entities: pos: 9.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17315 components: - type: Transform @@ -137440,7 +137649,7 @@ entities: pos: 8.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17316 components: - type: Transform @@ -137448,7 +137657,7 @@ entities: pos: 7.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17317 components: - type: Transform @@ -137456,7 +137665,7 @@ entities: pos: 6.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17319 components: - type: Transform @@ -137464,7 +137673,7 @@ entities: pos: -0.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17320 components: - type: Transform @@ -137472,7 +137681,7 @@ entities: pos: -0.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17322 components: - type: Transform @@ -137480,7 +137689,7 @@ entities: pos: 0.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17323 components: - type: Transform @@ -137488,7 +137697,7 @@ entities: pos: 1.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17324 components: - type: Transform @@ -137496,7 +137705,7 @@ entities: pos: 2.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17326 components: - type: Transform @@ -137504,7 +137713,7 @@ entities: pos: 4.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17327 components: - type: Transform @@ -137512,7 +137721,7 @@ entities: pos: 3.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17328 components: - type: Transform @@ -137520,7 +137729,7 @@ entities: pos: 3.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17329 components: - type: Transform @@ -137528,7 +137737,7 @@ entities: pos: 19.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17332 components: - type: Transform @@ -137536,7 +137745,7 @@ entities: pos: 3.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17333 components: - type: Transform @@ -137544,7 +137753,7 @@ entities: pos: 3.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17334 components: - type: Transform @@ -137552,7 +137761,7 @@ entities: pos: 3.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17335 components: - type: Transform @@ -137560,7 +137769,7 @@ entities: pos: 3.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17336 components: - type: Transform @@ -137568,7 +137777,7 @@ entities: pos: 18.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17338 components: - type: Transform @@ -137576,28 +137785,28 @@ entities: pos: 4.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17339 components: - type: Transform pos: 3.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17340 components: - type: Transform pos: 3.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17341 components: - type: Transform pos: 3.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17342 components: - type: Transform @@ -137605,7 +137814,7 @@ entities: pos: 20.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17344 components: - type: Transform @@ -137613,7 +137822,7 @@ entities: pos: 20.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17345 components: - type: Transform @@ -137621,7 +137830,7 @@ entities: pos: 21.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17346 components: - type: Transform @@ -137629,7 +137838,7 @@ entities: pos: 22.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17347 components: - type: Transform @@ -137637,7 +137846,7 @@ entities: pos: 23.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17350 components: - type: Transform @@ -137645,7 +137854,7 @@ entities: pos: 24.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17351 components: - type: Transform @@ -137653,7 +137862,7 @@ entities: pos: 24.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17352 components: - type: Transform @@ -137661,7 +137870,7 @@ entities: pos: 24.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17353 components: - type: Transform @@ -137669,7 +137878,7 @@ entities: pos: 24.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17354 components: - type: Transform @@ -137677,7 +137886,7 @@ entities: pos: 22.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17355 components: - type: Transform @@ -137685,7 +137894,7 @@ entities: pos: 22.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17356 components: - type: Transform @@ -137693,7 +137902,7 @@ entities: pos: 22.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17365 components: - type: Transform @@ -137701,7 +137910,7 @@ entities: pos: 26.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17366 components: - type: Transform @@ -137709,7 +137918,7 @@ entities: pos: 25.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17369 components: - type: Transform @@ -137717,7 +137926,7 @@ entities: pos: 17.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17370 components: - type: Transform @@ -137725,7 +137934,7 @@ entities: pos: 16.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17371 components: - type: Transform @@ -137733,7 +137942,7 @@ entities: pos: 15.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17372 components: - type: Transform @@ -137741,7 +137950,7 @@ entities: pos: 16.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17373 components: - type: Transform @@ -137749,7 +137958,7 @@ entities: pos: 15.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17374 components: - type: Transform @@ -137757,7 +137966,7 @@ entities: pos: 20.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17375 components: - type: Transform @@ -137765,7 +137974,7 @@ entities: pos: 21.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17376 components: - type: Transform @@ -137773,7 +137982,7 @@ entities: pos: 22.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17377 components: - type: Transform @@ -137781,7 +137990,7 @@ entities: pos: 19.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17378 components: - type: Transform @@ -137789,7 +137998,7 @@ entities: pos: 20.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17379 components: - type: Transform @@ -137797,7 +138006,7 @@ entities: pos: 21.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17380 components: - type: Transform @@ -137805,7 +138014,7 @@ entities: pos: 22.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17381 components: - type: Transform @@ -137813,7 +138022,7 @@ entities: pos: 18.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17382 components: - type: Transform @@ -137821,7 +138030,7 @@ entities: pos: 17.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17383 components: - type: Transform @@ -137829,7 +138038,7 @@ entities: pos: 16.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17384 components: - type: Transform @@ -137837,7 +138046,7 @@ entities: pos: 15.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17385 components: - type: Transform @@ -137845,7 +138054,7 @@ entities: pos: 16.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17386 components: - type: Transform @@ -137853,7 +138062,7 @@ entities: pos: 15.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17400 components: - type: Transform @@ -137861,7 +138070,7 @@ entities: pos: 12.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17407 components: - type: Transform @@ -137869,7 +138078,7 @@ entities: pos: 23.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17408 components: - type: Transform @@ -137877,7 +138086,7 @@ entities: pos: 24.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17409 components: - type: Transform @@ -137885,7 +138094,7 @@ entities: pos: 25.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17410 components: - type: Transform @@ -137893,7 +138102,7 @@ entities: pos: 26.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17411 components: - type: Transform @@ -137901,7 +138110,7 @@ entities: pos: 27.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17413 components: - type: Transform @@ -137909,7 +138118,7 @@ entities: pos: 29.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17414 components: - type: Transform @@ -137917,7 +138126,7 @@ entities: pos: 30.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17415 components: - type: Transform @@ -137925,7 +138134,7 @@ entities: pos: 31.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17416 components: - type: Transform @@ -137933,7 +138142,7 @@ entities: pos: 25.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17417 components: - type: Transform @@ -137941,7 +138150,7 @@ entities: pos: 26.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17418 components: - type: Transform @@ -137949,7 +138158,7 @@ entities: pos: 27.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17419 components: - type: Transform @@ -137957,7 +138166,7 @@ entities: pos: 28.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17421 components: - type: Transform @@ -137965,7 +138174,7 @@ entities: pos: 30.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17422 components: - type: Transform @@ -137973,7 +138182,7 @@ entities: pos: 31.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17423 components: - type: Transform @@ -137981,7 +138190,7 @@ entities: pos: 32.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17429 components: - type: Transform @@ -137989,7 +138198,7 @@ entities: pos: 34.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17430 components: - type: Transform @@ -137997,112 +138206,112 @@ entities: pos: 35.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17431 components: - type: Transform pos: 36.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17432 components: - type: Transform pos: 36.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17433 components: - type: Transform pos: 36.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17434 components: - type: Transform pos: 36.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17435 components: - type: Transform pos: 36.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17436 components: - type: Transform pos: 35.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17437 components: - type: Transform pos: 35.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17438 components: - type: Transform pos: 35.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17439 components: - type: Transform pos: 33.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17440 components: - type: Transform pos: 33.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17441 components: - type: Transform pos: 33.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17442 components: - type: Transform pos: 33.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17443 components: - type: Transform pos: 32.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17444 components: - type: Transform pos: 32.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17445 components: - type: Transform pos: 32.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17446 components: - type: Transform @@ -138110,7 +138319,7 @@ entities: pos: 33.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17447 components: - type: Transform @@ -138118,7 +138327,7 @@ entities: pos: 34.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17454 components: - type: Transform @@ -138126,7 +138335,7 @@ entities: pos: 28.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17455 components: - type: Transform @@ -138134,49 +138343,49 @@ entities: pos: 29.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17462 components: - type: Transform pos: 14.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17463 components: - type: Transform pos: 14.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17464 components: - type: Transform pos: 14.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17465 components: - type: Transform pos: 18.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17468 components: - type: Transform pos: 10.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17469 components: - type: Transform pos: 10.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17470 components: - type: Transform @@ -138184,84 +138393,84 @@ entities: pos: 12.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17471 components: - type: Transform pos: 8.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17472 components: - type: Transform pos: 8.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17475 components: - type: Transform pos: 4.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17476 components: - type: Transform pos: 4.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17477 components: - type: Transform pos: 4.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17478 components: - type: Transform pos: 2.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17479 components: - type: Transform pos: 2.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17480 components: - type: Transform pos: 2.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17481 components: - type: Transform pos: 2.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17482 components: - type: Transform pos: 2.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17483 components: - type: Transform pos: 2.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17488 components: - type: Transform @@ -138269,7 +138478,7 @@ entities: pos: 2.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17489 components: - type: Transform @@ -138277,7 +138486,7 @@ entities: pos: 4.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17490 components: - type: Transform @@ -138285,7 +138494,7 @@ entities: pos: 3.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17491 components: - type: Transform @@ -138293,7 +138502,7 @@ entities: pos: 4.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17492 components: - type: Transform @@ -138301,7 +138510,7 @@ entities: pos: 5.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17493 components: - type: Transform @@ -138309,7 +138518,7 @@ entities: pos: 6.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17494 components: - type: Transform @@ -138317,7 +138526,7 @@ entities: pos: 7.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17495 components: - type: Transform @@ -138325,7 +138534,7 @@ entities: pos: 5.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17496 components: - type: Transform @@ -138333,7 +138542,7 @@ entities: pos: 6.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17497 components: - type: Transform @@ -138341,7 +138550,7 @@ entities: pos: 7.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17498 components: - type: Transform @@ -138349,83 +138558,77 @@ entities: pos: 8.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17597 components: - type: Transform pos: 24.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17598 components: - type: Transform pos: 24.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17599 components: - type: Transform pos: 24.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17600 components: - type: Transform pos: 24.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17601 components: - type: Transform pos: 21.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17602 components: - type: Transform pos: 21.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17603 components: - type: Transform pos: 21.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17604 components: - type: Transform pos: 21.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17605 components: - type: Transform pos: 21.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17606 components: - type: Transform pos: 21.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 17626 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,49.5 - parent: 13329 + color: '#0055CCFF' - uid: 17714 components: - type: Transform @@ -138433,7 +138636,7 @@ entities: pos: 13.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17715 components: - type: Transform @@ -138441,7 +138644,7 @@ entities: pos: 13.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17717 components: - type: Transform @@ -138449,7 +138652,7 @@ entities: pos: 13.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17723 components: - type: Transform @@ -138457,7 +138660,7 @@ entities: pos: 22.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17724 components: - type: Transform @@ -138465,7 +138668,7 @@ entities: pos: 22.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17725 components: - type: Transform @@ -138473,7 +138676,7 @@ entities: pos: 18.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17726 components: - type: Transform @@ -138481,7 +138684,7 @@ entities: pos: 19.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17727 components: - type: Transform @@ -138489,7 +138692,7 @@ entities: pos: 20.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17728 components: - type: Transform @@ -138497,7 +138700,7 @@ entities: pos: 21.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17729 components: - type: Transform @@ -138505,7 +138708,7 @@ entities: pos: 20.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17730 components: - type: Transform @@ -138513,7 +138716,7 @@ entities: pos: 21.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17731 components: - type: Transform @@ -138521,7 +138724,7 @@ entities: pos: 22.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17734 components: - type: Transform @@ -138529,7 +138732,7 @@ entities: pos: 20.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17739 components: - type: Transform @@ -138537,7 +138740,7 @@ entities: pos: 6.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17740 components: - type: Transform @@ -138545,7 +138748,7 @@ entities: pos: 6.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17741 components: - type: Transform @@ -138553,7 +138756,7 @@ entities: pos: 6.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17742 components: - type: Transform @@ -138561,7 +138764,7 @@ entities: pos: 6.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17743 components: - type: Transform @@ -138569,7 +138772,7 @@ entities: pos: 8.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17744 components: - type: Transform @@ -138577,7 +138780,7 @@ entities: pos: 8.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17749 components: - type: Transform @@ -138585,7 +138788,7 @@ entities: pos: 13.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17750 components: - type: Transform @@ -138593,7 +138796,7 @@ entities: pos: 15.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17751 components: - type: Transform @@ -138601,7 +138804,7 @@ entities: pos: 15.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19427 components: - type: Transform @@ -138609,7 +138812,7 @@ entities: pos: 23.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19428 components: - type: Transform @@ -138617,7 +138820,7 @@ entities: pos: 23.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19429 components: - type: Transform @@ -138625,175 +138828,175 @@ entities: pos: 23.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19431 components: - type: Transform pos: 24.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19432 components: - type: Transform pos: 24.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19433 components: - type: Transform pos: 24.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19434 components: - type: Transform pos: 24.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19435 components: - type: Transform pos: 24.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19436 components: - type: Transform pos: 24.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19437 components: - type: Transform pos: 24.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19438 components: - type: Transform pos: 24.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19439 components: - type: Transform pos: 24.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19440 components: - type: Transform pos: 24.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19441 components: - type: Transform pos: 24.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19442 components: - type: Transform pos: 24.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19443 components: - type: Transform pos: 24.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19444 components: - type: Transform pos: 24.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19445 components: - type: Transform pos: 24.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19446 components: - type: Transform pos: 24.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19447 components: - type: Transform pos: 24.5,-40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19448 components: - type: Transform pos: 24.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19450 components: - type: Transform pos: 24.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19451 components: - type: Transform pos: 24.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19452 components: - type: Transform pos: 24.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19453 components: - type: Transform pos: 24.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19454 components: - type: Transform pos: 24.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19455 components: - type: Transform pos: 24.5,-48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19457 components: - type: Transform @@ -138801,7 +139004,7 @@ entities: pos: 25.5,-49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19458 components: - type: Transform @@ -138809,7 +139012,7 @@ entities: pos: 26.5,-49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19459 components: - type: Transform @@ -138817,7 +139020,7 @@ entities: pos: 27.5,-49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19460 components: - type: Transform @@ -138825,42 +139028,42 @@ entities: pos: 28.5,-49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19461 components: - type: Transform pos: 24.5,-50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19462 components: - type: Transform pos: 24.5,-51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19464 components: - type: Transform pos: 24.5,-53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19465 components: - type: Transform pos: 24.5,-54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19466 components: - type: Transform pos: 24.5,-55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19470 components: - type: Transform @@ -138868,7 +139071,7 @@ entities: pos: 25.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19471 components: - type: Transform @@ -138876,7 +139079,7 @@ entities: pos: 26.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19472 components: - type: Transform @@ -138884,7 +139087,7 @@ entities: pos: 27.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19473 components: - type: Transform @@ -138892,7 +139095,7 @@ entities: pos: 28.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19474 components: - type: Transform @@ -138900,7 +139103,7 @@ entities: pos: 29.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19475 components: - type: Transform @@ -138908,7 +139111,7 @@ entities: pos: 30.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19476 components: - type: Transform @@ -138916,7 +139119,7 @@ entities: pos: 31.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19477 components: - type: Transform @@ -138924,7 +139127,7 @@ entities: pos: 32.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19478 components: - type: Transform @@ -138932,7 +139135,7 @@ entities: pos: 33.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19479 components: - type: Transform @@ -138940,7 +139143,7 @@ entities: pos: 34.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19480 components: - type: Transform @@ -138948,7 +139151,7 @@ entities: pos: 35.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19481 components: - type: Transform @@ -138956,7 +139159,7 @@ entities: pos: 36.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19483 components: - type: Transform @@ -138964,7 +139167,7 @@ entities: pos: 38.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19484 components: - type: Transform @@ -138972,7 +139175,7 @@ entities: pos: 39.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19485 components: - type: Transform @@ -138980,7 +139183,7 @@ entities: pos: 40.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19486 components: - type: Transform @@ -138988,7 +139191,7 @@ entities: pos: 41.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19487 components: - type: Transform @@ -138996,28 +139199,28 @@ entities: pos: 42.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19488 components: - type: Transform pos: 43.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19489 components: - type: Transform pos: 43.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19490 components: - type: Transform pos: 43.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19492 components: - type: Transform @@ -139025,7 +139228,7 @@ entities: pos: 44.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19493 components: - type: Transform @@ -139033,7 +139236,7 @@ entities: pos: 45.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19494 components: - type: Transform @@ -139041,7 +139244,7 @@ entities: pos: 46.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19497 components: - type: Transform @@ -139049,7 +139252,7 @@ entities: pos: 38.5,-40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19498 components: - type: Transform @@ -139057,7 +139260,7 @@ entities: pos: 37.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19500 components: - type: Transform @@ -139065,7 +139268,7 @@ entities: pos: 35.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19501 components: - type: Transform @@ -139073,7 +139276,7 @@ entities: pos: 34.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19502 components: - type: Transform @@ -139081,7 +139284,7 @@ entities: pos: 33.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19503 components: - type: Transform @@ -139089,7 +139292,7 @@ entities: pos: 32.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19504 components: - type: Transform @@ -139097,7 +139300,7 @@ entities: pos: 31.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19506 components: - type: Transform @@ -139105,7 +139308,7 @@ entities: pos: 29.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19507 components: - type: Transform @@ -139113,7 +139316,7 @@ entities: pos: 28.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19508 components: - type: Transform @@ -139121,7 +139324,7 @@ entities: pos: 27.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19509 components: - type: Transform @@ -139129,98 +139332,98 @@ entities: pos: 26.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19511 components: - type: Transform pos: 25.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19512 components: - type: Transform pos: 25.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19513 components: - type: Transform pos: 25.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19514 components: - type: Transform pos: 25.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19515 components: - type: Transform pos: 25.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19517 components: - type: Transform pos: 25.5,-48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19518 components: - type: Transform pos: 25.5,-49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19519 components: - type: Transform pos: 25.5,-50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19520 components: - type: Transform pos: 25.5,-51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19521 components: - type: Transform pos: 25.5,-52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19522 components: - type: Transform pos: 25.5,-53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19523 components: - type: Transform pos: 25.5,-54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19524 components: - type: Transform pos: 25.5,-55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19525 components: - type: Transform @@ -139228,7 +139431,7 @@ entities: pos: 26.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19526 components: - type: Transform @@ -139236,7 +139439,7 @@ entities: pos: 27.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19527 components: - type: Transform @@ -139244,84 +139447,84 @@ entities: pos: 28.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19528 components: - type: Transform pos: 30.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19532 components: - type: Transform pos: 36.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19534 components: - type: Transform pos: 39.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19535 components: - type: Transform pos: 39.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19536 components: - type: Transform pos: 39.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19537 components: - type: Transform pos: 39.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19538 components: - type: Transform pos: 39.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19539 components: - type: Transform pos: 37.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19540 components: - type: Transform pos: 37.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19541 components: - type: Transform pos: 37.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19542 components: - type: Transform pos: 37.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19816 components: - type: Transform @@ -139329,7 +139532,7 @@ entities: pos: 40.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19817 components: - type: Transform @@ -139337,7 +139540,7 @@ entities: pos: 41.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19818 components: - type: Transform @@ -139345,7 +139548,7 @@ entities: pos: 42.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19819 components: - type: Transform @@ -139353,28 +139556,28 @@ entities: pos: 43.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19820 components: - type: Transform pos: 44.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19821 components: - type: Transform pos: 44.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19822 components: - type: Transform pos: 44.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19823 components: - type: Transform @@ -139382,7 +139585,7 @@ entities: pos: 45.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19824 components: - type: Transform @@ -139390,7 +139593,7 @@ entities: pos: 46.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19825 components: - type: Transform @@ -139398,7 +139601,7 @@ entities: pos: 47.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19826 components: - type: Transform @@ -139406,7 +139609,7 @@ entities: pos: 48.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19827 components: - type: Transform @@ -139414,7 +139617,7 @@ entities: pos: 49.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19828 components: - type: Transform @@ -139422,7 +139625,7 @@ entities: pos: 50.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19829 components: - type: Transform @@ -139430,7 +139633,7 @@ entities: pos: 51.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19830 components: - type: Transform @@ -139438,7 +139641,7 @@ entities: pos: 52.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19831 components: - type: Transform @@ -139446,14 +139649,14 @@ entities: pos: 53.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19833 components: - type: Transform pos: 54.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19835 components: - type: Transform @@ -139461,84 +139664,84 @@ entities: pos: 55.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19836 components: - type: Transform pos: 56.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19837 components: - type: Transform pos: 56.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19838 components: - type: Transform pos: 56.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19839 components: - type: Transform pos: 56.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19840 components: - type: Transform pos: 56.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19841 components: - type: Transform pos: 56.5,-40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19842 components: - type: Transform pos: 56.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19843 components: - type: Transform pos: 56.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19844 components: - type: Transform pos: 56.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19845 components: - type: Transform pos: 56.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19846 components: - type: Transform pos: 56.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19847 components: - type: Transform @@ -139546,7 +139749,7 @@ entities: pos: 47.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19848 components: - type: Transform @@ -139554,7 +139757,7 @@ entities: pos: 48.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19849 components: - type: Transform @@ -139562,7 +139765,7 @@ entities: pos: 49.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19850 components: - type: Transform @@ -139570,7 +139773,7 @@ entities: pos: 50.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19851 components: - type: Transform @@ -139578,7 +139781,7 @@ entities: pos: 51.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19854 components: - type: Transform @@ -139586,7 +139789,7 @@ entities: pos: 52.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 20655 components: - type: Transform @@ -139601,49 +139804,49 @@ entities: pos: 67.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22626 components: - type: Transform pos: 67.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22627 components: - type: Transform pos: 67.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22628 components: - type: Transform pos: 67.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22629 components: - type: Transform pos: 67.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22630 components: - type: Transform pos: 67.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22631 components: - type: Transform pos: 67.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22632 components: - type: Transform @@ -139651,161 +139854,161 @@ entities: pos: 79.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22633 components: - type: Transform pos: 67.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22634 components: - type: Transform pos: 67.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22635 components: - type: Transform pos: 67.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22636 components: - type: Transform pos: 67.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22639 components: - type: Transform pos: 67.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22640 components: - type: Transform pos: 67.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22641 components: - type: Transform pos: 69.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22642 components: - type: Transform pos: 69.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22643 components: - type: Transform pos: 69.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22644 components: - type: Transform pos: 69.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22645 components: - type: Transform pos: 69.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22646 components: - type: Transform pos: 69.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22647 components: - type: Transform pos: 69.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22649 components: - type: Transform pos: 69.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22650 components: - type: Transform pos: 69.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22651 components: - type: Transform pos: 69.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22652 components: - type: Transform pos: 69.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22654 components: - type: Transform pos: 69.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22655 components: - type: Transform pos: 69.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22656 components: - type: Transform pos: 69.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22657 components: - type: Transform pos: 69.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22658 components: - type: Transform pos: 69.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22662 components: - type: Transform @@ -139813,7 +140016,7 @@ entities: pos: 66.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22663 components: - type: Transform @@ -139821,7 +140024,7 @@ entities: pos: 65.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22665 components: - type: Transform @@ -139829,7 +140032,7 @@ entities: pos: 64.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22668 components: - type: Transform @@ -139837,7 +140040,7 @@ entities: pos: 67.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22671 components: - type: Transform @@ -139845,7 +140048,7 @@ entities: pos: 61.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22672 components: - type: Transform @@ -139853,7 +140056,7 @@ entities: pos: 61.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22673 components: - type: Transform @@ -139861,7 +140064,7 @@ entities: pos: 61.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22674 components: - type: Transform @@ -139869,7 +140072,7 @@ entities: pos: 61.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22675 components: - type: Transform @@ -139877,7 +140080,7 @@ entities: pos: 61.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22676 components: - type: Transform @@ -139885,7 +140088,7 @@ entities: pos: 61.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22677 components: - type: Transform @@ -139893,7 +140096,7 @@ entities: pos: 61.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22678 components: - type: Transform @@ -139901,7 +140104,7 @@ entities: pos: 59.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22679 components: - type: Transform @@ -139909,7 +140112,7 @@ entities: pos: 59.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22680 components: - type: Transform @@ -139917,7 +140120,7 @@ entities: pos: 59.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22681 components: - type: Transform @@ -139925,7 +140128,7 @@ entities: pos: 59.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22682 components: - type: Transform @@ -139933,7 +140136,23 @@ entities: pos: 59.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 22727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,-37.5 + parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 22735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,-37.5 + parent: 13329 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 23585 components: - type: Transform @@ -140014,14 +140233,6 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 23637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 101.5,-34.5 - parent: 13329 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 23638 components: - type: Transform @@ -140036,14 +140247,6 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-33.5 parent: 13329 - - uid: 23645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 101.5,-37.5 - parent: 13329 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 23646 components: - type: Transform @@ -140056,7 +140259,7 @@ entities: pos: 68.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23656 components: - type: Transform @@ -140064,7 +140267,7 @@ entities: pos: 69.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23657 components: - type: Transform @@ -140072,7 +140275,7 @@ entities: pos: 70.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23658 components: - type: Transform @@ -140080,36 +140283,28 @@ entities: pos: 71.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-37.5 - parent: 13329 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23667 components: - type: Transform pos: 80.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23668 components: - type: Transform pos: 80.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23673 components: - type: Transform pos: 80.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23682 components: - type: Transform @@ -140147,7 +140342,7 @@ entities: pos: 85.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23723 components: - type: Transform @@ -140155,35 +140350,28 @@ entities: pos: 84.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 23724 - components: - - type: Transform - pos: 83.5,-24.5 - parent: 13329 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23725 components: - type: Transform pos: 83.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23726 components: - type: Transform pos: 83.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23727 components: - type: Transform pos: 83.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23744 components: - type: Transform @@ -140191,7 +140379,7 @@ entities: pos: 79.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23745 components: - type: Transform @@ -140199,7 +140387,7 @@ entities: pos: 78.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23746 components: - type: Transform @@ -140207,7 +140395,7 @@ entities: pos: 77.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23747 components: - type: Transform @@ -140215,7 +140403,7 @@ entities: pos: 76.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23748 components: - type: Transform @@ -140223,7 +140411,7 @@ entities: pos: 75.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23749 components: - type: Transform @@ -140231,7 +140419,7 @@ entities: pos: 74.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23750 components: - type: Transform @@ -140239,7 +140427,7 @@ entities: pos: 73.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23751 components: - type: Transform @@ -140247,7 +140435,7 @@ entities: pos: 72.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23752 components: - type: Transform @@ -140255,7 +140443,7 @@ entities: pos: 71.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23753 components: - type: Transform @@ -140263,28 +140451,21 @@ entities: pos: 70.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 23756 - components: - - type: Transform - pos: 68.5,-31.5 - parent: 13329 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 23761 components: - type: Transform pos: 86.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23762 components: - type: Transform pos: 86.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23763 components: - type: Transform @@ -140292,7 +140473,7 @@ entities: pos: 85.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23764 components: - type: Transform @@ -140300,7 +140481,7 @@ entities: pos: 84.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23765 components: - type: Transform @@ -140308,7 +140489,7 @@ entities: pos: 83.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23766 components: - type: Transform @@ -140316,7 +140497,7 @@ entities: pos: 82.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23767 components: - type: Transform @@ -140324,7 +140505,7 @@ entities: pos: 81.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23768 components: - type: Transform @@ -140332,7 +140513,7 @@ entities: pos: 80.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23769 components: - type: Transform @@ -140340,7 +140521,7 @@ entities: pos: 79.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23770 components: - type: Transform @@ -140348,7 +140529,7 @@ entities: pos: 78.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23772 components: - type: Transform @@ -140356,7 +140537,7 @@ entities: pos: 76.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23773 components: - type: Transform @@ -140364,7 +140545,7 @@ entities: pos: 76.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23774 components: - type: Transform @@ -140372,7 +140553,7 @@ entities: pos: 76.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23775 components: - type: Transform @@ -140380,28 +140561,28 @@ entities: pos: 76.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23777 components: - type: Transform pos: 76.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23778 components: - type: Transform pos: 76.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23779 components: - type: Transform pos: 76.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23780 components: - type: Transform @@ -140409,7 +140590,7 @@ entities: pos: 68.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23781 components: - type: Transform @@ -140417,7 +140598,7 @@ entities: pos: 69.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23782 components: - type: Transform @@ -140425,7 +140606,7 @@ entities: pos: 70.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23783 components: - type: Transform @@ -140433,7 +140614,7 @@ entities: pos: 71.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23784 components: - type: Transform @@ -140441,7 +140622,7 @@ entities: pos: 72.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23785 components: - type: Transform @@ -140449,7 +140630,7 @@ entities: pos: 73.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23786 components: - type: Transform @@ -140457,15 +140638,7 @@ entities: pos: 74.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 102.5,-39.5 - parent: 13329 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 23826 components: - type: Transform @@ -140749,7 +140922,7 @@ entities: pos: 78.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23921 components: - type: Transform @@ -140757,7 +140930,7 @@ entities: pos: 77.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23922 components: - type: Transform @@ -140765,7 +140938,7 @@ entities: pos: 76.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23923 components: - type: Transform @@ -140773,7 +140946,7 @@ entities: pos: 75.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23924 components: - type: Transform @@ -140781,7 +140954,7 @@ entities: pos: 74.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23925 components: - type: Transform @@ -140789,7 +140962,7 @@ entities: pos: 73.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23926 components: - type: Transform @@ -140797,7 +140970,7 @@ entities: pos: 72.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23927 components: - type: Transform @@ -140805,7 +140978,7 @@ entities: pos: 71.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23928 components: - type: Transform @@ -140813,7 +140986,7 @@ entities: pos: 70.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23929 components: - type: Transform @@ -140821,7 +140994,7 @@ entities: pos: 69.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23932 components: - type: Transform @@ -140905,7 +141078,7 @@ entities: pos: 66.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24026 components: - type: Transform @@ -140913,7 +141086,7 @@ entities: pos: 65.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24045 components: - type: Transform @@ -140921,7 +141094,7 @@ entities: pos: 64.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24046 components: - type: Transform @@ -140929,7 +141102,7 @@ entities: pos: 64.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24864 components: - type: Transform @@ -140937,7 +141110,7 @@ entities: pos: 70.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24865 components: - type: Transform @@ -140945,7 +141118,7 @@ entities: pos: 71.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24866 components: - type: Transform @@ -140953,7 +141126,7 @@ entities: pos: 72.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24867 components: - type: Transform @@ -140961,7 +141134,7 @@ entities: pos: 73.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24868 components: - type: Transform @@ -140969,7 +141142,7 @@ entities: pos: 74.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24869 components: - type: Transform @@ -140977,35 +141150,35 @@ entities: pos: 75.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24872 components: - type: Transform pos: 75.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24873 components: - type: Transform pos: 75.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24874 components: - type: Transform pos: 75.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24875 components: - type: Transform pos: 75.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24876 components: - type: Transform @@ -141013,7 +141186,7 @@ entities: pos: 74.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24877 components: - type: Transform @@ -141021,7 +141194,7 @@ entities: pos: 73.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24878 components: - type: Transform @@ -141029,7 +141202,7 @@ entities: pos: 72.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24879 components: - type: Transform @@ -141037,7 +141210,7 @@ entities: pos: 71.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24880 components: - type: Transform @@ -141045,7 +141218,7 @@ entities: pos: 70.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24881 components: - type: Transform @@ -141053,7 +141226,7 @@ entities: pos: 69.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24882 components: - type: Transform @@ -141061,7 +141234,7 @@ entities: pos: 68.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24883 components: - type: Transform @@ -141069,7 +141242,7 @@ entities: pos: 75.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24884 components: - type: Transform @@ -141077,7 +141250,7 @@ entities: pos: 75.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24885 components: - type: Transform @@ -141085,7 +141258,7 @@ entities: pos: 75.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24886 components: - type: Transform @@ -141093,7 +141266,7 @@ entities: pos: 75.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24887 components: - type: Transform @@ -141101,7 +141274,7 @@ entities: pos: 75.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24888 components: - type: Transform @@ -141109,7 +141282,7 @@ entities: pos: 75.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24890 components: - type: Transform @@ -141117,7 +141290,7 @@ entities: pos: 75.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24891 components: - type: Transform @@ -141125,7 +141298,7 @@ entities: pos: 75.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25085 components: - type: Transform @@ -141133,7 +141306,7 @@ entities: pos: 87.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25086 components: - type: Transform @@ -141141,7 +141314,7 @@ entities: pos: 88.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25088 components: - type: Transform @@ -141149,7 +141322,7 @@ entities: pos: 90.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25089 components: - type: Transform @@ -141157,7 +141330,7 @@ entities: pos: 91.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25090 components: - type: Transform @@ -141165,49 +141338,49 @@ entities: pos: 92.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25093 components: - type: Transform pos: 97.5,-40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25094 components: - type: Transform pos: 97.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25095 components: - type: Transform pos: 97.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25096 components: - type: Transform pos: 97.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25097 components: - type: Transform pos: 97.5,-44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25098 components: - type: Transform pos: 97.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25100 components: - type: Transform @@ -141215,7 +141388,7 @@ entities: pos: 96.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25101 components: - type: Transform @@ -141223,7 +141396,7 @@ entities: pos: 95.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25102 components: - type: Transform @@ -141231,7 +141404,7 @@ entities: pos: 94.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25103 components: - type: Transform @@ -141239,7 +141412,7 @@ entities: pos: 93.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25104 components: - type: Transform @@ -141247,7 +141420,7 @@ entities: pos: 92.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25105 components: - type: Transform @@ -141255,7 +141428,7 @@ entities: pos: 91.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25106 components: - type: Transform @@ -141263,7 +141436,7 @@ entities: pos: 90.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25107 components: - type: Transform @@ -141271,7 +141444,7 @@ entities: pos: 89.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25108 components: - type: Transform @@ -141279,7 +141452,7 @@ entities: pos: 88.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25109 components: - type: Transform @@ -141287,7 +141460,7 @@ entities: pos: 87.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25110 components: - type: Transform @@ -141295,7 +141468,7 @@ entities: pos: 86.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25111 components: - type: Transform @@ -141303,7 +141476,7 @@ entities: pos: 85.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25112 components: - type: Transform @@ -141311,7 +141484,7 @@ entities: pos: 84.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25113 components: - type: Transform @@ -141319,7 +141492,7 @@ entities: pos: 83.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25114 components: - type: Transform @@ -141327,7 +141500,7 @@ entities: pos: 82.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25115 components: - type: Transform @@ -141335,7 +141508,7 @@ entities: pos: 81.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25116 components: - type: Transform @@ -141343,7 +141516,7 @@ entities: pos: 80.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25117 components: - type: Transform @@ -141351,7 +141524,7 @@ entities: pos: 79.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25118 components: - type: Transform @@ -141359,7 +141532,7 @@ entities: pos: 78.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25119 components: - type: Transform @@ -141367,7 +141540,7 @@ entities: pos: 77.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25120 components: - type: Transform @@ -141375,7 +141548,7 @@ entities: pos: 76.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25121 components: - type: Transform @@ -141383,7 +141556,7 @@ entities: pos: 75.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25122 components: - type: Transform @@ -141391,7 +141564,7 @@ entities: pos: 74.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25123 components: - type: Transform @@ -141399,7 +141572,7 @@ entities: pos: 73.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25124 components: - type: Transform @@ -141407,7 +141580,7 @@ entities: pos: 72.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25125 components: - type: Transform @@ -141415,7 +141588,7 @@ entities: pos: 71.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25126 components: - type: Transform @@ -141423,7 +141596,7 @@ entities: pos: 70.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25127 components: - type: Transform @@ -141431,7 +141604,7 @@ entities: pos: 69.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25128 components: - type: Transform @@ -141439,7 +141612,7 @@ entities: pos: 68.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25129 components: - type: Transform @@ -141447,7 +141620,7 @@ entities: pos: 67.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25130 components: - type: Transform @@ -141455,7 +141628,7 @@ entities: pos: 66.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25140 components: - type: Transform @@ -141463,7 +141636,7 @@ entities: pos: 54.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25141 components: - type: Transform @@ -141471,7 +141644,7 @@ entities: pos: 55.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25142 components: - type: Transform @@ -141479,7 +141652,7 @@ entities: pos: 56.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25143 components: - type: Transform @@ -141487,7 +141660,7 @@ entities: pos: 57.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25144 components: - type: Transform @@ -141495,7 +141668,7 @@ entities: pos: 58.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25145 components: - type: Transform @@ -141503,7 +141676,7 @@ entities: pos: 59.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25146 components: - type: Transform @@ -141511,7 +141684,7 @@ entities: pos: 60.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25147 components: - type: Transform @@ -141519,7 +141692,7 @@ entities: pos: 61.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25148 components: - type: Transform @@ -141527,7 +141700,7 @@ entities: pos: 62.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25149 components: - type: Transform @@ -141535,7 +141708,7 @@ entities: pos: 63.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25150 components: - type: Transform @@ -141543,7 +141716,7 @@ entities: pos: 64.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25151 components: - type: Transform @@ -141551,7 +141724,7 @@ entities: pos: 65.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25234 components: - type: Transform @@ -141559,7 +141732,7 @@ entities: pos: 91.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25235 components: - type: Transform @@ -141567,7 +141740,7 @@ entities: pos: 92.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25236 components: - type: Transform @@ -141575,7 +141748,7 @@ entities: pos: 91.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25237 components: - type: Transform @@ -141583,7 +141756,7 @@ entities: pos: 90.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25238 components: - type: Transform @@ -141591,7 +141764,7 @@ entities: pos: 92.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25241 components: - type: Transform @@ -141599,7 +141772,7 @@ entities: pos: 77.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25242 components: - type: Transform @@ -141607,7 +141780,7 @@ entities: pos: 78.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25244 components: - type: Transform @@ -141615,7 +141788,7 @@ entities: pos: 80.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25245 components: - type: Transform @@ -141623,56 +141796,56 @@ entities: pos: 81.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25246 components: - type: Transform pos: 79.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25247 components: - type: Transform pos: 79.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25248 components: - type: Transform pos: 79.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25249 components: - type: Transform pos: 79.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25250 components: - type: Transform pos: 79.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25251 components: - type: Transform pos: 79.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25252 components: - type: Transform pos: 79.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25253 components: - type: Transform @@ -141680,7 +141853,7 @@ entities: pos: 80.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25254 components: - type: Transform @@ -141688,7 +141861,7 @@ entities: pos: 81.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25255 components: - type: Transform @@ -141696,7 +141869,7 @@ entities: pos: 82.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25257 components: - type: Transform @@ -141704,7 +141877,7 @@ entities: pos: 84.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25258 components: - type: Transform @@ -141712,7 +141885,7 @@ entities: pos: 85.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25260 components: - type: Transform @@ -141720,7 +141893,7 @@ entities: pos: 87.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25261 components: - type: Transform @@ -141728,7 +141901,7 @@ entities: pos: 88.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25263 components: - type: Transform @@ -141736,7 +141909,7 @@ entities: pos: 89.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25264 components: - type: Transform @@ -141744,7 +141917,7 @@ entities: pos: 89.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25265 components: - type: Transform @@ -141752,7 +141925,7 @@ entities: pos: 89.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25266 components: - type: Transform @@ -141760,7 +141933,7 @@ entities: pos: 89.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25267 components: - type: Transform @@ -141768,7 +141941,7 @@ entities: pos: 89.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25268 components: - type: Transform @@ -141776,7 +141949,7 @@ entities: pos: 89.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25269 components: - type: Transform @@ -141784,7 +141957,7 @@ entities: pos: 89.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25271 components: - type: Transform @@ -141792,7 +141965,7 @@ entities: pos: 89.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25272 components: - type: Transform @@ -141800,7 +141973,7 @@ entities: pos: 89.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25273 components: - type: Transform @@ -141808,7 +141981,7 @@ entities: pos: 89.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25274 components: - type: Transform @@ -141816,7 +141989,7 @@ entities: pos: 89.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25276 components: - type: Transform @@ -141824,7 +141997,7 @@ entities: pos: 93.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25277 components: - type: Transform @@ -141832,7 +142005,7 @@ entities: pos: 94.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25278 components: - type: Transform @@ -141840,7 +142013,7 @@ entities: pos: 95.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25279 components: - type: Transform @@ -141848,7 +142021,7 @@ entities: pos: 96.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25281 components: - type: Transform @@ -141856,7 +142029,7 @@ entities: pos: 98.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25282 components: - type: Transform @@ -141864,7 +142037,7 @@ entities: pos: 99.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25283 components: - type: Transform @@ -141872,7 +142045,7 @@ entities: pos: 100.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25284 components: - type: Transform @@ -141880,7 +142053,7 @@ entities: pos: 101.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25285 components: - type: Transform @@ -141888,7 +142061,7 @@ entities: pos: 102.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25291 components: - type: Transform @@ -141896,14 +142069,14 @@ entities: pos: 114.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25292 components: - type: Transform pos: 113.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25293 components: - type: Transform @@ -141911,7 +142084,7 @@ entities: pos: 112.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25294 components: - type: Transform @@ -141919,7 +142092,7 @@ entities: pos: 111.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25295 components: - type: Transform @@ -141927,7 +142100,7 @@ entities: pos: 110.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25296 components: - type: Transform @@ -141935,7 +142108,7 @@ entities: pos: 109.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25297 components: - type: Transform @@ -141943,7 +142116,7 @@ entities: pos: 108.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25298 components: - type: Transform @@ -141951,7 +142124,7 @@ entities: pos: 107.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25299 components: - type: Transform @@ -141959,7 +142132,7 @@ entities: pos: 106.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25300 components: - type: Transform @@ -141967,7 +142140,7 @@ entities: pos: 105.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25301 components: - type: Transform @@ -141975,28 +142148,28 @@ entities: pos: 104.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25302 components: - type: Transform pos: 103.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25303 components: - type: Transform pos: 103.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25304 components: - type: Transform pos: 103.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25307 components: - type: Transform @@ -142004,7 +142177,7 @@ entities: pos: 105.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25308 components: - type: Transform @@ -142012,7 +142185,7 @@ entities: pos: 106.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25309 components: - type: Transform @@ -142020,7 +142193,7 @@ entities: pos: 107.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25310 components: - type: Transform @@ -142028,7 +142201,7 @@ entities: pos: 102.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25311 components: - type: Transform @@ -142036,7 +142209,7 @@ entities: pos: 101.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25312 components: - type: Transform @@ -142044,7 +142217,7 @@ entities: pos: 100.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25313 components: - type: Transform @@ -142052,7 +142225,7 @@ entities: pos: 99.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25314 components: - type: Transform @@ -142060,7 +142233,7 @@ entities: pos: 98.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25315 components: - type: Transform @@ -142068,7 +142241,7 @@ entities: pos: 97.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25317 components: - type: Transform @@ -142076,7 +142249,7 @@ entities: pos: 97.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25318 components: - type: Transform @@ -142084,7 +142257,7 @@ entities: pos: 96.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25319 components: - type: Transform @@ -142092,7 +142265,7 @@ entities: pos: 95.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25322 components: - type: Transform @@ -142100,7 +142273,7 @@ entities: pos: 92.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25323 components: - type: Transform @@ -142108,7 +142281,7 @@ entities: pos: 91.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25324 components: - type: Transform @@ -142116,7 +142289,7 @@ entities: pos: 90.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25327 components: - type: Transform @@ -142124,7 +142297,7 @@ entities: pos: 93.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25328 components: - type: Transform @@ -142132,7 +142305,7 @@ entities: pos: 93.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25329 components: - type: Transform @@ -142140,7 +142313,7 @@ entities: pos: 93.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25338 components: - type: Transform @@ -142148,7 +142321,7 @@ entities: pos: 74.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25339 components: - type: Transform @@ -142156,14 +142329,14 @@ entities: pos: 73.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25340 components: - type: Transform pos: 72.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25341 components: - type: Transform @@ -142171,7 +142344,7 @@ entities: pos: 70.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25345 components: - type: Transform @@ -142179,7 +142352,7 @@ entities: pos: 77.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25346 components: - type: Transform @@ -142187,7 +142360,7 @@ entities: pos: 78.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25347 components: - type: Transform @@ -142195,7 +142368,7 @@ entities: pos: 79.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25348 components: - type: Transform @@ -142203,7 +142376,7 @@ entities: pos: 80.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25349 components: - type: Transform @@ -142211,7 +142384,7 @@ entities: pos: 81.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25357 components: - type: Transform @@ -142219,7 +142392,7 @@ entities: pos: 76.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25358 components: - type: Transform @@ -142227,7 +142400,7 @@ entities: pos: 77.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25359 components: - type: Transform @@ -142235,7 +142408,7 @@ entities: pos: 78.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25360 components: - type: Transform @@ -142243,7 +142416,7 @@ entities: pos: 75.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25364 components: - type: Transform @@ -142251,7 +142424,7 @@ entities: pos: 78.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25365 components: - type: Transform @@ -142259,7 +142432,7 @@ entities: pos: 79.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25366 components: - type: Transform @@ -142267,7 +142440,7 @@ entities: pos: 80.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25367 components: - type: Transform @@ -142275,7 +142448,7 @@ entities: pos: 81.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25368 components: - type: Transform @@ -142283,7 +142456,7 @@ entities: pos: 82.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25369 components: - type: Transform @@ -142291,7 +142464,7 @@ entities: pos: 83.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25370 components: - type: Transform @@ -142299,7 +142472,7 @@ entities: pos: 84.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25371 components: - type: Transform @@ -142307,7 +142480,7 @@ entities: pos: 85.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25373 components: - type: Transform @@ -142315,7 +142488,7 @@ entities: pos: 87.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25374 components: - type: Transform @@ -142323,7 +142496,7 @@ entities: pos: 88.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25375 components: - type: Transform @@ -142331,7 +142504,7 @@ entities: pos: 89.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25376 components: - type: Transform @@ -142339,7 +142512,7 @@ entities: pos: 76.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25377 components: - type: Transform @@ -142347,7 +142520,7 @@ entities: pos: 75.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25378 components: - type: Transform @@ -142355,7 +142528,7 @@ entities: pos: 74.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25379 components: - type: Transform @@ -142363,56 +142536,56 @@ entities: pos: 73.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25381 components: - type: Transform pos: 77.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25382 components: - type: Transform pos: 77.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25383 components: - type: Transform pos: 77.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25385 components: - type: Transform pos: 83.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25386 components: - type: Transform pos: 83.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25387 components: - type: Transform pos: 83.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25388 components: - type: Transform pos: 83.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25389 components: - type: Transform @@ -142420,7 +142593,7 @@ entities: pos: 83.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25392 components: - type: Transform @@ -142428,7 +142601,7 @@ entities: pos: 81.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25393 components: - type: Transform @@ -142436,7 +142609,7 @@ entities: pos: 80.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25394 components: - type: Transform @@ -142444,7 +142617,7 @@ entities: pos: 79.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25395 components: - type: Transform @@ -142452,7 +142625,7 @@ entities: pos: 78.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25396 components: - type: Transform @@ -142460,7 +142633,7 @@ entities: pos: 77.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25397 components: - type: Transform @@ -142468,7 +142641,7 @@ entities: pos: 76.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25398 components: - type: Transform @@ -142476,7 +142649,7 @@ entities: pos: 75.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25399 components: - type: Transform @@ -142484,7 +142657,7 @@ entities: pos: 74.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25400 components: - type: Transform @@ -142492,56 +142665,56 @@ entities: pos: 73.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25408 components: - type: Transform pos: 88.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25409 components: - type: Transform pos: 88.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25410 components: - type: Transform pos: 88.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25411 components: - type: Transform pos: 88.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25412 components: - type: Transform pos: 88.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25413 components: - type: Transform pos: 88.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25414 components: - type: Transform pos: 88.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25416 components: - type: Transform @@ -142549,42 +142722,42 @@ entities: pos: 89.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25417 components: - type: Transform pos: 90.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25418 components: - type: Transform pos: 90.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25419 components: - type: Transform pos: 90.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25420 components: - type: Transform pos: 90.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25421 components: - type: Transform pos: 90.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25423 components: - type: Transform @@ -142592,7 +142765,7 @@ entities: pos: 94.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25424 components: - type: Transform @@ -142600,7 +142773,7 @@ entities: pos: 94.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25425 components: - type: Transform @@ -142608,7 +142781,7 @@ entities: pos: 94.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25428 components: - type: Transform @@ -142616,7 +142789,7 @@ entities: pos: 89.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25429 components: - type: Transform @@ -142624,7 +142797,7 @@ entities: pos: 89.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25430 components: - type: Transform @@ -142632,7 +142805,7 @@ entities: pos: 89.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25431 components: - type: Transform @@ -142640,7 +142813,7 @@ entities: pos: 89.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25432 components: - type: Transform @@ -142648,7 +142821,7 @@ entities: pos: 89.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25433 components: - type: Transform @@ -142656,7 +142829,7 @@ entities: pos: 89.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25434 components: - type: Transform @@ -142664,7 +142837,7 @@ entities: pos: 89.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25435 components: - type: Transform @@ -142672,7 +142845,7 @@ entities: pos: 89.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25438 components: - type: Transform @@ -142680,7 +142853,7 @@ entities: pos: 90.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25439 components: - type: Transform @@ -142688,14 +142861,14 @@ entities: pos: 90.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25441 components: - type: Transform pos: 94.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25442 components: - type: Transform @@ -142703,7 +142876,7 @@ entities: pos: 93.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25443 components: - type: Transform @@ -142711,7 +142884,7 @@ entities: pos: 92.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25444 components: - type: Transform @@ -142719,7 +142892,7 @@ entities: pos: 91.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25448 components: - type: Transform @@ -142727,7 +142900,7 @@ entities: pos: 91.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25449 components: - type: Transform @@ -142735,7 +142908,7 @@ entities: pos: 92.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25450 components: - type: Transform @@ -142743,7 +142916,7 @@ entities: pos: 93.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25451 components: - type: Transform @@ -142751,7 +142924,7 @@ entities: pos: 94.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25452 components: - type: Transform @@ -142759,7 +142932,7 @@ entities: pos: 95.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25453 components: - type: Transform @@ -142767,7 +142940,7 @@ entities: pos: 96.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25454 components: - type: Transform @@ -142775,7 +142948,7 @@ entities: pos: 97.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25457 components: - type: Transform @@ -142783,7 +142956,7 @@ entities: pos: 90.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25464 components: - type: Transform @@ -142791,7 +142964,7 @@ entities: pos: 91.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25470 components: - type: Transform @@ -142799,7 +142972,7 @@ entities: pos: 94.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25472 components: - type: Transform @@ -142807,7 +142980,7 @@ entities: pos: 91.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25473 components: - type: Transform @@ -142815,7 +142988,7 @@ entities: pos: 91.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25499 components: - type: Transform @@ -142823,7 +142996,7 @@ entities: pos: 90.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25868 components: - type: Transform @@ -142831,7 +143004,7 @@ entities: pos: 89.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25869 components: - type: Transform @@ -142839,7 +143012,7 @@ entities: pos: 89.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25870 components: - type: Transform @@ -142847,7 +143020,7 @@ entities: pos: 95.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25871 components: - type: Transform @@ -142855,7 +143028,7 @@ entities: pos: 95.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25872 components: - type: Transform @@ -142863,7 +143036,7 @@ entities: pos: 95.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25873 components: - type: Transform @@ -142871,7 +143044,7 @@ entities: pos: 93.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25879 components: - type: Transform @@ -142997,7 +143170,7 @@ entities: pos: 102.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27638 components: - type: Transform @@ -143005,7 +143178,7 @@ entities: pos: 102.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27639 components: - type: Transform @@ -143013,7 +143186,7 @@ entities: pos: 102.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27640 components: - type: Transform @@ -143021,7 +143194,7 @@ entities: pos: 102.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27641 components: - type: Transform @@ -143029,7 +143202,7 @@ entities: pos: 101.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27642 components: - type: Transform @@ -143037,7 +143210,7 @@ entities: pos: 100.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27643 components: - type: Transform @@ -143045,7 +143218,7 @@ entities: pos: 99.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27644 components: - type: Transform @@ -143053,7 +143226,7 @@ entities: pos: 101.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27645 components: - type: Transform @@ -143061,7 +143234,7 @@ entities: pos: 100.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27646 components: - type: Transform @@ -143069,7 +143242,7 @@ entities: pos: 99.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27647 components: - type: Transform @@ -143077,7 +143250,7 @@ entities: pos: 98.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27648 components: - type: Transform @@ -143085,49 +143258,49 @@ entities: pos: 97.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27650 components: - type: Transform pos: 87.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27651 components: - type: Transform pos: 87.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27652 components: - type: Transform pos: 87.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27653 components: - type: Transform pos: 87.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27654 components: - type: Transform pos: 87.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27655 components: - type: Transform pos: 87.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27657 components: - type: Transform @@ -143135,7 +143308,7 @@ entities: pos: 87.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27658 components: - type: Transform @@ -143143,7 +143316,7 @@ entities: pos: 87.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27661 components: - type: Transform @@ -143151,7 +143324,7 @@ entities: pos: 84.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27662 components: - type: Transform @@ -143159,7 +143332,7 @@ entities: pos: 85.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27663 components: - type: Transform @@ -143167,7 +143340,7 @@ entities: pos: 86.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27664 components: - type: Transform @@ -143175,21 +143348,21 @@ entities: pos: 87.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27667 components: - type: Transform pos: 88.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27668 components: - type: Transform pos: 88.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27669 components: - type: Transform @@ -143197,7 +143370,7 @@ entities: pos: 89.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27670 components: - type: Transform @@ -143205,7 +143378,7 @@ entities: pos: 90.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27671 components: - type: Transform @@ -143213,7 +143386,7 @@ entities: pos: 91.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27672 components: - type: Transform @@ -143221,7 +143394,7 @@ entities: pos: 92.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27673 components: - type: Transform @@ -143229,7 +143402,7 @@ entities: pos: 93.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27674 components: - type: Transform @@ -143237,7 +143410,7 @@ entities: pos: 94.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27675 components: - type: Transform @@ -143245,7 +143418,7 @@ entities: pos: 95.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27678 components: - type: Transform @@ -143253,7 +143426,7 @@ entities: pos: 88.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27832 components: - type: Transform @@ -143309,7 +143482,7 @@ entities: pos: 88.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27845 components: - type: Transform @@ -143317,7 +143490,7 @@ entities: pos: 89.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27846 components: - type: Transform @@ -143325,7 +143498,7 @@ entities: pos: 90.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27847 components: - type: Transform @@ -143333,7 +143506,7 @@ entities: pos: 91.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27850 components: - type: Transform @@ -143341,7 +143514,7 @@ entities: pos: 92.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27851 components: - type: Transform @@ -143349,7 +143522,7 @@ entities: pos: 92.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27852 components: - type: Transform @@ -143357,7 +143530,7 @@ entities: pos: 92.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27853 components: - type: Transform @@ -143365,7 +143538,7 @@ entities: pos: 93.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27854 components: - type: Transform @@ -143373,7 +143546,7 @@ entities: pos: 94.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27855 components: - type: Transform @@ -143381,7 +143554,7 @@ entities: pos: 95.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27856 components: - type: Transform @@ -143389,7 +143562,7 @@ entities: pos: 96.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27857 components: - type: Transform @@ -143397,14 +143570,14 @@ entities: pos: 97.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28061 components: - type: Transform pos: 93.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28066 components: - type: Transform @@ -143412,7 +143585,7 @@ entities: pos: 94.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28067 components: - type: Transform @@ -143420,7 +143593,7 @@ entities: pos: 95.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28068 components: - type: Transform @@ -143428,7 +143601,7 @@ entities: pos: 96.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28069 components: - type: Transform @@ -143436,7 +143609,7 @@ entities: pos: 99.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28070 components: - type: Transform @@ -143444,7 +143617,7 @@ entities: pos: 100.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28071 components: - type: Transform @@ -143452,7 +143625,7 @@ entities: pos: 101.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28072 components: - type: Transform @@ -143460,7 +143633,7 @@ entities: pos: 102.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28073 components: - type: Transform @@ -143468,7 +143641,7 @@ entities: pos: 103.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28074 components: - type: Transform @@ -143476,7 +143649,7 @@ entities: pos: 104.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28075 components: - type: Transform @@ -143484,7 +143657,7 @@ entities: pos: 105.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28076 components: - type: Transform @@ -143492,7 +143665,7 @@ entities: pos: 106.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28077 components: - type: Transform @@ -143500,7 +143673,7 @@ entities: pos: 107.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28078 components: - type: Transform @@ -143508,7 +143681,7 @@ entities: pos: 108.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28079 components: - type: Transform @@ -143516,7 +143689,7 @@ entities: pos: 109.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28080 components: - type: Transform @@ -143524,7 +143697,7 @@ entities: pos: 110.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28081 components: - type: Transform @@ -143532,7 +143705,7 @@ entities: pos: 111.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28082 components: - type: Transform @@ -143540,7 +143713,7 @@ entities: pos: 112.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28083 components: - type: Transform @@ -143548,7 +143721,7 @@ entities: pos: 113.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28084 components: - type: Transform @@ -143556,7 +143729,7 @@ entities: pos: 114.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28085 components: - type: Transform @@ -143564,7 +143737,7 @@ entities: pos: 115.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28086 components: - type: Transform @@ -143572,7 +143745,7 @@ entities: pos: 116.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28087 components: - type: Transform @@ -143580,7 +143753,7 @@ entities: pos: 117.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28088 components: - type: Transform @@ -143588,7 +143761,7 @@ entities: pos: 118.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28091 components: - type: Transform @@ -143596,7 +143769,7 @@ entities: pos: 120.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28092 components: - type: Transform @@ -143604,7 +143777,7 @@ entities: pos: 121.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28093 components: - type: Transform @@ -143612,7 +143785,7 @@ entities: pos: 122.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28094 components: - type: Transform @@ -143620,7 +143793,7 @@ entities: pos: 123.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28095 components: - type: Transform @@ -143628,84 +143801,84 @@ entities: pos: 124.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28098 components: - type: Transform pos: 119.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28099 components: - type: Transform pos: 119.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28100 components: - type: Transform pos: 119.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28101 components: - type: Transform pos: 119.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28102 components: - type: Transform pos: 119.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28103 components: - type: Transform pos: 119.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28104 components: - type: Transform pos: 119.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28105 components: - type: Transform pos: 119.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28106 components: - type: Transform pos: 119.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28107 components: - type: Transform pos: 119.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28108 components: - type: Transform pos: 119.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28112 components: - type: Transform @@ -143713,7 +143886,7 @@ entities: pos: 122.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28113 components: - type: Transform @@ -143721,14 +143894,14 @@ entities: pos: 123.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28114 components: - type: Transform pos: 121.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28115 components: - type: Transform @@ -143736,7 +143909,7 @@ entities: pos: 120.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28117 components: - type: Transform @@ -143744,7 +143917,7 @@ entities: pos: 119.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28118 components: - type: Transform @@ -143752,7 +143925,7 @@ entities: pos: 119.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28119 components: - type: Transform @@ -143760,7 +143933,7 @@ entities: pos: 119.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28120 components: - type: Transform @@ -143768,7 +143941,7 @@ entities: pos: 119.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28121 components: - type: Transform @@ -143776,21 +143949,21 @@ entities: pos: 119.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28124 components: - type: Transform pos: 118.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28125 components: - type: Transform pos: 118.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28127 components: - type: Transform @@ -143798,7 +143971,7 @@ entities: pos: 112.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28128 components: - type: Transform @@ -143806,7 +143979,7 @@ entities: pos: 114.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28129 components: - type: Transform @@ -143814,7 +143987,7 @@ entities: pos: 115.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28130 components: - type: Transform @@ -143822,7 +143995,7 @@ entities: pos: 116.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28131 components: - type: Transform @@ -143830,7 +144003,7 @@ entities: pos: 117.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28132 components: - type: Transform @@ -143838,7 +144011,7 @@ entities: pos: 119.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28133 components: - type: Transform @@ -143846,21 +144019,21 @@ entities: pos: 120.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28134 components: - type: Transform pos: 121.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28135 components: - type: Transform pos: 121.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28137 components: - type: Transform @@ -143868,28 +144041,28 @@ entities: pos: 119.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28141 components: - type: Transform pos: 118.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28142 components: - type: Transform pos: 118.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28143 components: - type: Transform pos: 118.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28181 components: - type: Transform @@ -143897,7 +144070,7 @@ entities: pos: 61.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28182 components: - type: Transform @@ -143905,7 +144078,7 @@ entities: pos: 61.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28183 components: - type: Transform @@ -143913,7 +144086,7 @@ entities: pos: 61.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28184 components: - type: Transform @@ -143921,7 +144094,7 @@ entities: pos: 61.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28185 components: - type: Transform @@ -143929,7 +144102,7 @@ entities: pos: 66.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28186 components: - type: Transform @@ -143937,7 +144110,7 @@ entities: pos: 66.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28187 components: - type: Transform @@ -143945,7 +144118,7 @@ entities: pos: 66.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28188 components: - type: Transform @@ -143953,7 +144126,7 @@ entities: pos: 66.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28192 components: - type: Transform @@ -143961,7 +144134,7 @@ entities: pos: 59.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28193 components: - type: Transform @@ -143969,7 +144142,7 @@ entities: pos: 59.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28194 components: - type: Transform @@ -143977,7 +144150,7 @@ entities: pos: 59.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28195 components: - type: Transform @@ -143985,7 +144158,7 @@ entities: pos: 55.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28237 components: - type: Transform @@ -143993,77 +144166,77 @@ entities: pos: 92.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28239 components: - type: Transform pos: 92.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28240 components: - type: Transform pos: 92.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28241 components: - type: Transform pos: 92.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28242 components: - type: Transform pos: 92.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28243 components: - type: Transform pos: 92.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28244 components: - type: Transform pos: 92.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28245 components: - type: Transform pos: 91.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28246 components: - type: Transform pos: 91.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28247 components: - type: Transform pos: 91.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28248 components: - type: Transform pos: 91.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28249 components: - type: Transform @@ -144071,7 +144244,7 @@ entities: pos: 90.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28250 components: - type: Transform @@ -144079,7 +144252,7 @@ entities: pos: 89.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28251 components: - type: Transform @@ -144087,7 +144260,7 @@ entities: pos: 88.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28252 components: - type: Transform @@ -144095,7 +144268,7 @@ entities: pos: 87.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28253 components: - type: Transform @@ -144103,7 +144276,7 @@ entities: pos: 86.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28254 components: - type: Transform @@ -144111,7 +144284,7 @@ entities: pos: 85.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28255 components: - type: Transform @@ -144119,7 +144292,7 @@ entities: pos: 84.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28256 components: - type: Transform @@ -144127,7 +144300,7 @@ entities: pos: 84.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28257 components: - type: Transform @@ -144135,7 +144308,7 @@ entities: pos: 85.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28258 components: - type: Transform @@ -144143,7 +144316,7 @@ entities: pos: 86.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28260 components: - type: Transform @@ -144151,7 +144324,7 @@ entities: pos: 88.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28261 components: - type: Transform @@ -144159,7 +144332,7 @@ entities: pos: 89.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28262 components: - type: Transform @@ -144167,7 +144340,7 @@ entities: pos: 90.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28263 components: - type: Transform @@ -144175,7 +144348,7 @@ entities: pos: 91.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28291 components: - type: Transform @@ -144183,7 +144356,7 @@ entities: pos: 81.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28292 components: - type: Transform @@ -144191,7 +144364,7 @@ entities: pos: 80.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28293 components: - type: Transform @@ -144199,7 +144372,7 @@ entities: pos: 79.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28294 components: - type: Transform @@ -144207,7 +144380,7 @@ entities: pos: 80.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28295 components: - type: Transform @@ -144215,7 +144388,7 @@ entities: pos: 79.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28296 components: - type: Transform @@ -144223,7 +144396,7 @@ entities: pos: 80.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28297 components: - type: Transform @@ -144231,7 +144404,7 @@ entities: pos: 79.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28298 components: - type: Transform @@ -144239,7 +144412,7 @@ entities: pos: 82.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28299 components: - type: Transform @@ -144247,7 +144420,7 @@ entities: pos: 81.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28300 components: - type: Transform @@ -144255,7 +144428,7 @@ entities: pos: 80.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28301 components: - type: Transform @@ -144263,7 +144436,7 @@ entities: pos: 79.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28302 components: - type: Transform @@ -144271,7 +144444,7 @@ entities: pos: 82.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28303 components: - type: Transform @@ -144279,7 +144452,7 @@ entities: pos: 83.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28304 components: - type: Transform @@ -144287,7 +144460,7 @@ entities: pos: 84.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28305 components: - type: Transform @@ -144295,7 +144468,7 @@ entities: pos: 85.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28306 components: - type: Transform @@ -144303,7 +144476,7 @@ entities: pos: 85.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28307 components: - type: Transform @@ -144311,7 +144484,7 @@ entities: pos: 84.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28309 components: - type: Transform @@ -144319,7 +144492,7 @@ entities: pos: 83.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28310 components: - type: Transform @@ -144327,7 +144500,7 @@ entities: pos: 84.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28311 components: - type: Transform @@ -144335,7 +144508,7 @@ entities: pos: 85.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28312 components: - type: Transform @@ -144343,7 +144516,7 @@ entities: pos: 85.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28313 components: - type: Transform @@ -144351,7 +144524,7 @@ entities: pos: 84.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28314 components: - type: Transform @@ -144359,7 +144532,7 @@ entities: pos: 82.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28315 components: - type: Transform @@ -144367,7 +144540,7 @@ entities: pos: 83.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28316 components: - type: Transform @@ -144375,7 +144548,7 @@ entities: pos: 84.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28317 components: - type: Transform @@ -144383,7 +144556,7 @@ entities: pos: 85.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28318 components: - type: Transform @@ -144391,7 +144564,7 @@ entities: pos: 85.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28319 components: - type: Transform @@ -144399,21 +144572,21 @@ entities: pos: 84.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28788 components: - type: Transform pos: 77.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28789 components: - type: Transform pos: 77.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28790 components: - type: Transform @@ -144421,7 +144594,7 @@ entities: pos: 80.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28791 components: - type: Transform @@ -144429,7 +144602,7 @@ entities: pos: 79.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28846 components: - type: Transform @@ -144437,7 +144610,7 @@ entities: pos: 60.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28847 components: - type: Transform @@ -144445,7 +144618,7 @@ entities: pos: 61.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28848 components: - type: Transform @@ -144453,7 +144626,7 @@ entities: pos: 62.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28849 components: - type: Transform @@ -144461,7 +144634,7 @@ entities: pos: 63.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28850 components: - type: Transform @@ -144469,7 +144642,7 @@ entities: pos: 60.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28851 components: - type: Transform @@ -144477,7 +144650,7 @@ entities: pos: 61.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28852 components: - type: Transform @@ -144485,7 +144658,7 @@ entities: pos: 62.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28853 components: - type: Transform @@ -144493,7 +144666,7 @@ entities: pos: 63.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28854 components: - type: Transform @@ -144501,7 +144674,7 @@ entities: pos: 58.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28855 components: - type: Transform @@ -144509,7 +144682,7 @@ entities: pos: 57.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28856 components: - type: Transform @@ -144517,7 +144690,7 @@ entities: pos: 56.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28857 components: - type: Transform @@ -144525,7 +144698,7 @@ entities: pos: 55.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28858 components: - type: Transform @@ -144533,7 +144706,7 @@ entities: pos: 57.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28859 components: - type: Transform @@ -144541,7 +144714,7 @@ entities: pos: 58.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28864 components: - type: Transform @@ -144549,7 +144722,7 @@ entities: pos: 65.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28865 components: - type: Transform @@ -144557,7 +144730,7 @@ entities: pos: 66.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28866 components: - type: Transform @@ -144565,7 +144738,7 @@ entities: pos: 67.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28867 components: - type: Transform @@ -144573,7 +144746,7 @@ entities: pos: 68.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28868 components: - type: Transform @@ -144581,7 +144754,7 @@ entities: pos: 65.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28869 components: - type: Transform @@ -144589,7 +144762,7 @@ entities: pos: 67.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28870 components: - type: Transform @@ -144597,7 +144770,7 @@ entities: pos: 68.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28872 components: - type: Transform @@ -144605,7 +144778,7 @@ entities: pos: 69.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28873 components: - type: Transform @@ -144613,7 +144786,7 @@ entities: pos: 69.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28874 components: - type: Transform @@ -144621,77 +144794,77 @@ entities: pos: 69.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28882 components: - type: Transform pos: 70.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28883 components: - type: Transform pos: 70.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28884 components: - type: Transform pos: 70.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28885 components: - type: Transform pos: 70.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28886 components: - type: Transform pos: 70.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29297 components: - type: Transform pos: 73.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29298 components: - type: Transform pos: 73.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29299 components: - type: Transform pos: 73.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29300 components: - type: Transform pos: 73.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29301 components: - type: Transform pos: 73.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29318 components: - type: Transform @@ -144699,7 +144872,7 @@ entities: pos: 67.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29319 components: - type: Transform @@ -144707,7 +144880,7 @@ entities: pos: 66.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29320 components: - type: Transform @@ -144715,7 +144888,7 @@ entities: pos: 66.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29646 components: - type: Transform @@ -144723,7 +144896,7 @@ entities: pos: 72.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29647 components: - type: Transform @@ -144731,7 +144904,7 @@ entities: pos: 72.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29648 components: - type: Transform @@ -144739,7 +144912,7 @@ entities: pos: 72.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29649 components: - type: Transform @@ -144747,7 +144920,7 @@ entities: pos: 72.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29650 components: - type: Transform @@ -144755,7 +144928,7 @@ entities: pos: 72.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29651 components: - type: Transform @@ -144763,7 +144936,7 @@ entities: pos: 72.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29652 components: - type: Transform @@ -144771,7 +144944,7 @@ entities: pos: 72.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29654 components: - type: Transform @@ -144779,7 +144952,7 @@ entities: pos: 72.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29655 components: - type: Transform @@ -144787,7 +144960,7 @@ entities: pos: 73.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29656 components: - type: Transform @@ -144795,7 +144968,7 @@ entities: pos: 74.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29657 components: - type: Transform @@ -144803,7 +144976,7 @@ entities: pos: 75.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29658 components: - type: Transform @@ -144811,7 +144984,7 @@ entities: pos: 76.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29659 components: - type: Transform @@ -144819,7 +144992,7 @@ entities: pos: 77.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29661 components: - type: Transform @@ -144827,7 +145000,7 @@ entities: pos: 80.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29663 components: - type: Transform @@ -144835,7 +145008,7 @@ entities: pos: 81.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29664 components: - type: Transform @@ -144843,7 +145016,7 @@ entities: pos: 82.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29665 components: - type: Transform @@ -144851,7 +145024,7 @@ entities: pos: 83.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29666 components: - type: Transform @@ -144859,7 +145032,7 @@ entities: pos: 84.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29667 components: - type: Transform @@ -144867,7 +145040,7 @@ entities: pos: 85.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29668 components: - type: Transform @@ -144875,7 +145048,7 @@ entities: pos: 86.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29669 components: - type: Transform @@ -144883,7 +145056,7 @@ entities: pos: 87.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29670 components: - type: Transform @@ -144891,7 +145064,7 @@ entities: pos: 88.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29671 components: - type: Transform @@ -144899,7 +145072,7 @@ entities: pos: 89.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29672 components: - type: Transform @@ -144907,7 +145080,7 @@ entities: pos: 90.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29673 components: - type: Transform @@ -144915,7 +145088,7 @@ entities: pos: 91.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29674 components: - type: Transform @@ -144923,7 +145096,7 @@ entities: pos: 92.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29675 components: - type: Transform @@ -144931,7 +145104,7 @@ entities: pos: 93.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29676 components: - type: Transform @@ -144939,196 +145112,196 @@ entities: pos: 94.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29677 components: - type: Transform pos: 95.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29678 components: - type: Transform pos: 95.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29679 components: - type: Transform pos: 95.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29680 components: - type: Transform pos: 95.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29681 components: - type: Transform pos: 95.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29682 components: - type: Transform pos: 95.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29683 components: - type: Transform pos: 95.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29686 components: - type: Transform pos: 95.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29687 components: - type: Transform pos: 95.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29688 components: - type: Transform pos: 95.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29689 components: - type: Transform pos: 95.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29690 components: - type: Transform pos: 95.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29691 components: - type: Transform pos: 95.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29692 components: - type: Transform pos: 97.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29693 components: - type: Transform pos: 97.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29694 components: - type: Transform pos: 97.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29695 components: - type: Transform pos: 97.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29696 components: - type: Transform pos: 97.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29697 components: - type: Transform pos: 97.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29698 components: - type: Transform pos: 97.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29699 components: - type: Transform pos: 97.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29700 components: - type: Transform pos: 97.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29701 components: - type: Transform pos: 97.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29702 components: - type: Transform pos: 97.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29705 components: - type: Transform pos: 97.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29706 components: - type: Transform pos: 97.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29707 components: - type: Transform pos: 97.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29708 components: - type: Transform @@ -145136,7 +145309,7 @@ entities: pos: 96.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29709 components: - type: Transform @@ -145144,7 +145317,7 @@ entities: pos: 95.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29710 components: - type: Transform @@ -145152,7 +145325,7 @@ entities: pos: 94.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29711 components: - type: Transform @@ -145160,7 +145333,7 @@ entities: pos: 93.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29712 components: - type: Transform @@ -145168,7 +145341,7 @@ entities: pos: 92.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29713 components: - type: Transform @@ -145176,7 +145349,7 @@ entities: pos: 91.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29714 components: - type: Transform @@ -145184,7 +145357,7 @@ entities: pos: 90.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29715 components: - type: Transform @@ -145192,7 +145365,7 @@ entities: pos: 89.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29716 components: - type: Transform @@ -145200,7 +145373,7 @@ entities: pos: 88.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29717 components: - type: Transform @@ -145208,7 +145381,7 @@ entities: pos: 87.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29718 components: - type: Transform @@ -145216,7 +145389,7 @@ entities: pos: 86.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29719 components: - type: Transform @@ -145224,7 +145397,7 @@ entities: pos: 85.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29720 components: - type: Transform @@ -145232,7 +145405,7 @@ entities: pos: 84.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29721 components: - type: Transform @@ -145240,7 +145413,7 @@ entities: pos: 83.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29722 components: - type: Transform @@ -145248,7 +145421,7 @@ entities: pos: 82.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29723 components: - type: Transform @@ -145256,7 +145429,7 @@ entities: pos: 81.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29725 components: - type: Transform @@ -145264,7 +145437,7 @@ entities: pos: 79.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29726 components: - type: Transform @@ -145272,7 +145445,7 @@ entities: pos: 78.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29727 components: - type: Transform @@ -145280,7 +145453,7 @@ entities: pos: 77.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29728 components: - type: Transform @@ -145288,7 +145461,7 @@ entities: pos: 76.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29729 components: - type: Transform @@ -145296,7 +145469,7 @@ entities: pos: 75.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29730 components: - type: Transform @@ -145304,7 +145477,7 @@ entities: pos: 74.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29731 components: - type: Transform @@ -145312,7 +145485,7 @@ entities: pos: 73.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29732 components: - type: Transform @@ -145320,7 +145493,7 @@ entities: pos: 73.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29733 components: - type: Transform @@ -145328,7 +145501,7 @@ entities: pos: 73.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29734 components: - type: Transform @@ -145336,7 +145509,7 @@ entities: pos: 73.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29735 components: - type: Transform @@ -145344,7 +145517,7 @@ entities: pos: 73.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29736 components: - type: Transform @@ -145352,7 +145525,7 @@ entities: pos: 73.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29737 components: - type: Transform @@ -145360,7 +145533,7 @@ entities: pos: 73.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29738 components: - type: Transform @@ -145368,7 +145541,7 @@ entities: pos: 73.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29753 components: - type: Transform @@ -145376,7 +145549,7 @@ entities: pos: 96.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29754 components: - type: Transform @@ -145384,7 +145557,7 @@ entities: pos: 97.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29755 components: - type: Transform @@ -145392,7 +145565,7 @@ entities: pos: 98.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29756 components: - type: Transform @@ -145400,7 +145573,7 @@ entities: pos: 99.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29757 components: - type: Transform @@ -145408,7 +145581,7 @@ entities: pos: 100.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29759 components: - type: Transform @@ -145416,7 +145589,7 @@ entities: pos: 102.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29760 components: - type: Transform @@ -145424,7 +145597,7 @@ entities: pos: 103.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29761 components: - type: Transform @@ -145432,7 +145605,7 @@ entities: pos: 104.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29762 components: - type: Transform @@ -145440,7 +145613,7 @@ entities: pos: 105.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29763 components: - type: Transform @@ -145448,7 +145621,7 @@ entities: pos: 106.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29764 components: - type: Transform @@ -145456,7 +145629,7 @@ entities: pos: 107.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29765 components: - type: Transform @@ -145464,7 +145637,7 @@ entities: pos: 108.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29766 components: - type: Transform @@ -145472,7 +145645,7 @@ entities: pos: 109.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29768 components: - type: Transform @@ -145480,7 +145653,7 @@ entities: pos: 111.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29769 components: - type: Transform @@ -145488,7 +145661,7 @@ entities: pos: 112.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29770 components: - type: Transform @@ -145496,7 +145669,7 @@ entities: pos: 113.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29771 components: - type: Transform @@ -145504,7 +145677,7 @@ entities: pos: 114.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29773 components: - type: Transform @@ -145512,7 +145685,7 @@ entities: pos: 115.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29774 components: - type: Transform @@ -145520,7 +145693,7 @@ entities: pos: 117.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29775 components: - type: Transform @@ -145528,7 +145701,7 @@ entities: pos: 118.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29781 components: - type: Transform @@ -145536,7 +145709,7 @@ entities: pos: 118.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29782 components: - type: Transform @@ -145544,7 +145717,7 @@ entities: pos: 117.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29783 components: - type: Transform @@ -145552,7 +145725,7 @@ entities: pos: 116.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29784 components: - type: Transform @@ -145560,7 +145733,7 @@ entities: pos: 115.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29785 components: - type: Transform @@ -145568,7 +145741,7 @@ entities: pos: 114.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29787 components: - type: Transform @@ -145576,7 +145749,7 @@ entities: pos: 113.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29788 components: - type: Transform @@ -145584,7 +145757,7 @@ entities: pos: 111.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29790 components: - type: Transform @@ -145592,7 +145765,7 @@ entities: pos: 109.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29791 components: - type: Transform @@ -145600,7 +145773,7 @@ entities: pos: 108.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29792 components: - type: Transform @@ -145608,7 +145781,7 @@ entities: pos: 107.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29793 components: - type: Transform @@ -145616,7 +145789,7 @@ entities: pos: 106.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29794 components: - type: Transform @@ -145624,7 +145797,7 @@ entities: pos: 105.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29795 components: - type: Transform @@ -145632,7 +145805,7 @@ entities: pos: 104.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29796 components: - type: Transform @@ -145640,7 +145813,7 @@ entities: pos: 103.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29797 components: - type: Transform @@ -145648,7 +145821,7 @@ entities: pos: 102.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29798 components: - type: Transform @@ -145656,7 +145829,7 @@ entities: pos: 101.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29800 components: - type: Transform @@ -145664,7 +145837,7 @@ entities: pos: 99.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29801 components: - type: Transform @@ -145672,77 +145845,77 @@ entities: pos: 98.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29804 components: - type: Transform pos: 101.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29805 components: - type: Transform pos: 101.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29806 components: - type: Transform pos: 101.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29807 components: - type: Transform pos: 101.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29808 components: - type: Transform pos: 101.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29809 components: - type: Transform pos: 100.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29810 components: - type: Transform pos: 100.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29811 components: - type: Transform pos: 100.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29812 components: - type: Transform pos: 100.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29813 components: - type: Transform pos: 100.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29815 components: - type: Transform @@ -145750,7 +145923,7 @@ entities: pos: 102.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29816 components: - type: Transform @@ -145758,7 +145931,7 @@ entities: pos: 103.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29817 components: - type: Transform @@ -145766,7 +145939,7 @@ entities: pos: 104.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29818 components: - type: Transform @@ -145774,7 +145947,7 @@ entities: pos: 105.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29819 components: - type: Transform @@ -145782,7 +145955,7 @@ entities: pos: 106.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29823 components: - type: Transform @@ -145790,7 +145963,7 @@ entities: pos: 101.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29824 components: - type: Transform @@ -145798,7 +145971,7 @@ entities: pos: 101.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29825 components: - type: Transform @@ -145806,7 +145979,7 @@ entities: pos: 101.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29826 components: - type: Transform @@ -145814,7 +145987,7 @@ entities: pos: 101.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29827 components: - type: Transform @@ -145822,7 +145995,7 @@ entities: pos: 102.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29828 components: - type: Transform @@ -145830,7 +146003,7 @@ entities: pos: 103.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29829 components: - type: Transform @@ -145838,7 +146011,7 @@ entities: pos: 104.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29830 components: - type: Transform @@ -145846,7 +146019,7 @@ entities: pos: 105.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29831 components: - type: Transform @@ -145854,56 +146027,56 @@ entities: pos: 106.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29832 components: - type: Transform pos: 100.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29833 components: - type: Transform pos: 100.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29834 components: - type: Transform pos: 100.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29835 components: - type: Transform pos: 100.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29836 components: - type: Transform pos: 100.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29837 components: - type: Transform pos: 100.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29849 components: - type: Transform pos: 119.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29850 components: - type: Transform @@ -145911,7 +146084,7 @@ entities: pos: 120.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29851 components: - type: Transform @@ -145919,7 +146092,7 @@ entities: pos: 121.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29852 components: - type: Transform @@ -145927,7 +146100,7 @@ entities: pos: 122.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29853 components: - type: Transform @@ -145935,7 +146108,7 @@ entities: pos: 123.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29854 components: - type: Transform @@ -145943,7 +146116,7 @@ entities: pos: 124.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29855 components: - type: Transform @@ -145951,7 +146124,7 @@ entities: pos: 125.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29856 components: - type: Transform @@ -145959,7 +146132,7 @@ entities: pos: 119.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29857 components: - type: Transform @@ -145967,7 +146140,7 @@ entities: pos: 120.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29858 components: - type: Transform @@ -145975,7 +146148,7 @@ entities: pos: 121.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29859 components: - type: Transform @@ -145983,7 +146156,7 @@ entities: pos: 122.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29860 components: - type: Transform @@ -145991,7 +146164,7 @@ entities: pos: 123.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29861 components: - type: Transform @@ -145999,7 +146172,7 @@ entities: pos: 124.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29862 components: - type: Transform @@ -146007,56 +146180,56 @@ entities: pos: 125.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30294 components: - type: Transform pos: 78.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30295 components: - type: Transform pos: 78.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30296 components: - type: Transform pos: 79.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30297 components: - type: Transform pos: 79.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30298 components: - type: Transform pos: 79.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30299 components: - type: Transform pos: 79.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30300 components: - type: Transform pos: 79.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30305 components: - type: Transform @@ -146064,7 +146237,7 @@ entities: pos: 74.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30306 components: - type: Transform @@ -146072,7 +146245,7 @@ entities: pos: 75.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30307 components: - type: Transform @@ -146080,7 +146253,7 @@ entities: pos: 76.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30308 components: - type: Transform @@ -146088,7 +146261,7 @@ entities: pos: 77.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30309 components: - type: Transform @@ -146096,7 +146269,7 @@ entities: pos: 78.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30310 components: - type: Transform @@ -146104,7 +146277,7 @@ entities: pos: 79.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30312 components: - type: Transform @@ -146112,7 +146285,7 @@ entities: pos: 80.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30313 components: - type: Transform @@ -146120,7 +146293,7 @@ entities: pos: 80.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30314 components: - type: Transform @@ -146128,14 +146301,14 @@ entities: pos: 80.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31133 components: - type: Transform pos: 80.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31137 components: - type: Transform @@ -146143,7 +146316,7 @@ entities: pos: 71.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31138 components: - type: Transform @@ -146151,7 +146324,7 @@ entities: pos: 70.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31139 components: - type: Transform @@ -146159,7 +146332,7 @@ entities: pos: 69.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31140 components: - type: Transform @@ -146167,7 +146340,7 @@ entities: pos: 68.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31141 components: - type: Transform @@ -146175,7 +146348,7 @@ entities: pos: 67.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31142 components: - type: Transform @@ -146183,7 +146356,7 @@ entities: pos: 66.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31143 components: - type: Transform @@ -146191,7 +146364,7 @@ entities: pos: 65.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31144 components: - type: Transform @@ -146199,7 +146372,7 @@ entities: pos: 64.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31145 components: - type: Transform @@ -146207,7 +146380,7 @@ entities: pos: 63.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31146 components: - type: Transform @@ -146215,7 +146388,7 @@ entities: pos: 62.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31149 components: - type: Transform @@ -146223,7 +146396,7 @@ entities: pos: 61.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31150 components: - type: Transform @@ -146231,7 +146404,7 @@ entities: pos: 61.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31151 components: - type: Transform @@ -146239,7 +146412,7 @@ entities: pos: 61.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31152 components: - type: Transform @@ -146247,7 +146420,7 @@ entities: pos: 61.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31153 components: - type: Transform @@ -146255,7 +146428,7 @@ entities: pos: 61.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31154 components: - type: Transform @@ -146263,7 +146436,7 @@ entities: pos: 61.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31155 components: - type: Transform @@ -146271,7 +146444,7 @@ entities: pos: 61.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31156 components: - type: Transform @@ -146279,7 +146452,7 @@ entities: pos: 61.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31159 components: - type: Transform @@ -146287,35 +146460,35 @@ entities: pos: 60.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31160 components: - type: Transform pos: 59.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31161 components: - type: Transform pos: 59.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31162 components: - type: Transform pos: 59.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31163 components: - type: Transform pos: 59.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31167 components: - type: Transform @@ -146323,7 +146496,7 @@ entities: pos: 55.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31168 components: - type: Transform @@ -146331,7 +146504,7 @@ entities: pos: 55.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31169 components: - type: Transform @@ -146339,7 +146512,7 @@ entities: pos: 55.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31170 components: - type: Transform @@ -146347,7 +146520,7 @@ entities: pos: 55.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31171 components: - type: Transform @@ -146355,7 +146528,7 @@ entities: pos: 55.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31172 components: - type: Transform @@ -146363,7 +146536,7 @@ entities: pos: 55.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31173 components: - type: Transform @@ -146371,7 +146544,7 @@ entities: pos: 55.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31174 components: - type: Transform @@ -146379,7 +146552,7 @@ entities: pos: 55.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31175 components: - type: Transform @@ -146387,7 +146560,7 @@ entities: pos: 55.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31176 components: - type: Transform @@ -146395,7 +146568,7 @@ entities: pos: 55.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31177 components: - type: Transform @@ -146403,7 +146576,7 @@ entities: pos: 55.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31178 components: - type: Transform @@ -146411,7 +146584,7 @@ entities: pos: 55.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31179 components: - type: Transform @@ -146419,7 +146592,7 @@ entities: pos: 55.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31180 components: - type: Transform @@ -146427,7 +146600,7 @@ entities: pos: 55.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31181 components: - type: Transform @@ -146435,7 +146608,7 @@ entities: pos: 55.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31182 components: - type: Transform @@ -146443,7 +146616,7 @@ entities: pos: 55.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31183 components: - type: Transform @@ -146451,7 +146624,7 @@ entities: pos: 55.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31184 components: - type: Transform @@ -146459,7 +146632,7 @@ entities: pos: 55.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31185 components: - type: Transform @@ -146467,7 +146640,7 @@ entities: pos: 56.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31186 components: - type: Transform @@ -146475,7 +146648,7 @@ entities: pos: 57.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31187 components: - type: Transform @@ -146483,7 +146656,7 @@ entities: pos: 58.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31188 components: - type: Transform @@ -146491,7 +146664,7 @@ entities: pos: 59.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31190 components: - type: Transform @@ -146499,7 +146672,7 @@ entities: pos: 61.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31191 components: - type: Transform @@ -146507,7 +146680,7 @@ entities: pos: 62.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31192 components: - type: Transform @@ -146515,7 +146688,7 @@ entities: pos: 63.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31193 components: - type: Transform @@ -146523,21 +146696,21 @@ entities: pos: 64.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31194 components: - type: Transform pos: 65.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31195 components: - type: Transform pos: 65.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31200 components: - type: Transform @@ -146545,7 +146718,7 @@ entities: pos: 58.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31201 components: - type: Transform @@ -146553,56 +146726,56 @@ entities: pos: 59.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31202 components: - type: Transform pos: 60.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31203 components: - type: Transform pos: 60.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31204 components: - type: Transform pos: 60.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31205 components: - type: Transform pos: 60.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31206 components: - type: Transform pos: 60.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31207 components: - type: Transform pos: 60.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31208 components: - type: Transform pos: 60.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 322 @@ -146612,7 +146785,7 @@ entities: pos: -0.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 323 components: - type: Transform @@ -146620,35 +146793,35 @@ entities: pos: 0.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 328 components: - type: Transform pos: -5.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 338 components: - type: Transform pos: -6.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 359 components: - type: Transform pos: -4.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 365 components: - type: Transform pos: -10.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 369 components: - type: Transform @@ -146656,7 +146829,7 @@ entities: pos: -14.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 380 components: - type: Transform @@ -146664,21 +146837,21 @@ entities: pos: -11.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 381 components: - type: Transform pos: -12.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 390 components: - type: Transform pos: -11.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 406 components: - type: Transform @@ -146686,14 +146859,14 @@ entities: pos: -8.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 410 components: - type: Transform pos: -8.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 411 components: - type: Transform @@ -146701,7 +146874,7 @@ entities: pos: -6.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 416 components: - type: Transform @@ -146709,7 +146882,7 @@ entities: pos: -10.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 448 components: - type: Transform @@ -146717,7 +146890,7 @@ entities: pos: -20.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 460 components: - type: Transform @@ -146725,7 +146898,7 @@ entities: pos: -18.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 462 components: - type: Transform @@ -146733,7 +146906,7 @@ entities: pos: 0.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 476 components: - type: Transform @@ -146741,14 +146914,14 @@ entities: pos: 0.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 479 components: - type: Transform pos: 23.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 480 components: - type: Transform @@ -146756,7 +146929,7 @@ entities: pos: -1.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 488 components: - type: Transform @@ -146764,7 +146937,7 @@ entities: pos: -8.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 489 components: - type: Transform @@ -146772,14 +146945,14 @@ entities: pos: -10.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 496 components: - type: Transform pos: -9.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 504 components: - type: Transform @@ -146787,14 +146960,14 @@ entities: pos: -1.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 505 components: - type: Transform pos: -0.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 512 components: - type: Transform @@ -146802,7 +146975,7 @@ entities: pos: -1.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 523 components: - type: Transform @@ -146810,7 +146983,7 @@ entities: pos: 0.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 531 components: - type: Transform @@ -146818,7 +146991,7 @@ entities: pos: -10.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 532 components: - type: Transform @@ -146826,7 +146999,7 @@ entities: pos: -15.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 545 components: - type: Transform @@ -146834,14 +147007,14 @@ entities: pos: -8.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 553 components: - type: Transform pos: -9.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 561 components: - type: Transform @@ -146849,7 +147022,7 @@ entities: pos: -16.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 573 components: - type: Transform @@ -146857,7 +147030,7 @@ entities: pos: -8.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 575 components: - type: Transform @@ -146865,7 +147038,7 @@ entities: pos: -11.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 589 components: - type: Transform @@ -146873,7 +147046,7 @@ entities: pos: -10.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 602 components: - type: Transform @@ -146881,7 +147054,7 @@ entities: pos: -15.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1516 components: - type: Transform @@ -146889,14 +147062,14 @@ entities: pos: -1.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1525 components: - type: Transform pos: 5.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1527 components: - type: Transform @@ -146904,7 +147077,7 @@ entities: pos: 4.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1551 components: - type: Transform @@ -146912,7 +147085,7 @@ entities: pos: -1.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1608 components: - type: Transform @@ -146920,14 +147093,14 @@ entities: pos: -6.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1672 components: - type: Transform pos: -14.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1673 components: - type: Transform @@ -146935,7 +147108,7 @@ entities: pos: 5.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1682 components: - type: Transform @@ -146943,14 +147116,14 @@ entities: pos: 3.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1687 components: - type: Transform pos: 8.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1692 components: - type: Transform @@ -146958,7 +147131,7 @@ entities: pos: 3.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1694 components: - type: Transform @@ -146966,14 +147139,14 @@ entities: pos: 3.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1705 components: - type: Transform pos: -5.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1716 components: - type: Transform @@ -146981,14 +147154,14 @@ entities: pos: -4.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1718 components: - type: Transform pos: -3.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1730 components: - type: Transform @@ -146996,7 +147169,7 @@ entities: pos: -5.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1737 components: - type: Transform @@ -147004,14 +147177,14 @@ entities: pos: -10.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2108 components: - type: Transform pos: -5.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2139 components: - type: Transform @@ -147019,14 +147192,14 @@ entities: pos: -8.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2148 components: - type: Transform pos: -23.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2157 components: - type: Transform @@ -147034,35 +147207,35 @@ entities: pos: -17.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2158 components: - type: Transform pos: -18.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2163 components: - type: Transform pos: -21.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2174 components: - type: Transform pos: 13.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2178 components: - type: Transform pos: 12.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2179 components: - type: Transform @@ -147070,7 +147243,7 @@ entities: pos: 15.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2183 components: - type: Transform @@ -147078,7 +147251,7 @@ entities: pos: -12.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2287 components: - type: Transform @@ -147086,14 +147259,14 @@ entities: pos: -5.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4038 components: - type: Transform pos: 25.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4064 components: - type: Transform @@ -147101,21 +147274,21 @@ entities: pos: -3.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4072 components: - type: Transform pos: -12.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4083 components: - type: Transform pos: -23.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4085 components: - type: Transform @@ -147123,7 +147296,7 @@ entities: pos: -19.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4092 components: - type: Transform @@ -147131,7 +147304,7 @@ entities: pos: -0.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4097 components: - type: Transform @@ -147139,7 +147312,7 @@ entities: pos: -5.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4104 components: - type: Transform @@ -147147,14 +147320,14 @@ entities: pos: -11.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4111 components: - type: Transform pos: -19.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4115 components: - type: Transform @@ -147162,7 +147335,7 @@ entities: pos: -22.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4124 components: - type: Transform @@ -147170,7 +147343,7 @@ entities: pos: -32.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4125 components: - type: Transform @@ -147178,7 +147351,7 @@ entities: pos: -31.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4131 components: - type: Transform @@ -147186,7 +147359,7 @@ entities: pos: -32.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4138 components: - type: Transform @@ -147194,7 +147367,7 @@ entities: pos: -32.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4141 components: - type: Transform @@ -147202,7 +147375,7 @@ entities: pos: -31.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4188 components: - type: Transform @@ -147210,7 +147383,7 @@ entities: pos: -37.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4350 components: - type: Transform @@ -147218,7 +147391,7 @@ entities: pos: -31.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4358 components: - type: Transform @@ -147226,14 +147399,14 @@ entities: pos: -28.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4365 components: - type: Transform pos: -30.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4370 components: - type: Transform @@ -147241,7 +147414,7 @@ entities: pos: -36.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4395 components: - type: Transform @@ -147249,7 +147422,7 @@ entities: pos: -27.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4408 components: - type: Transform @@ -147257,7 +147430,7 @@ entities: pos: -28.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4413 components: - type: Transform @@ -147265,28 +147438,28 @@ entities: pos: -27.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4419 components: - type: Transform pos: -34.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4428 components: - type: Transform pos: -24.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4448 components: - type: Transform pos: -29.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4454 components: - type: Transform @@ -147294,7 +147467,7 @@ entities: pos: -30.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4695 components: - type: Transform @@ -147307,7 +147480,7 @@ entities: pos: -4.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5133 components: - type: Transform @@ -147315,14 +147488,14 @@ entities: pos: -3.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5488 components: - type: Transform pos: -9.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5491 components: - type: Transform @@ -147330,14 +147503,14 @@ entities: pos: -11.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5508 components: - type: Transform pos: -8.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5512 components: - type: Transform @@ -147345,7 +147518,7 @@ entities: pos: -13.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5529 components: - type: Transform @@ -147353,7 +147526,7 @@ entities: pos: -33.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5552 components: - type: Transform @@ -147361,7 +147534,7 @@ entities: pos: -27.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5574 components: - type: Transform @@ -147369,7 +147542,7 @@ entities: pos: -30.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5581 components: - type: Transform @@ -147377,14 +147550,14 @@ entities: pos: -25.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5590 components: - type: Transform pos: -27.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5618 components: - type: Transform @@ -147392,14 +147565,14 @@ entities: pos: -25.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5657 components: - type: Transform pos: -15.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5675 components: - type: Transform @@ -147407,7 +147580,7 @@ entities: pos: -13.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5679 components: - type: Transform @@ -147415,7 +147588,7 @@ entities: pos: -16.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5689 components: - type: Transform @@ -147423,21 +147596,21 @@ entities: pos: -17.5,71.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5690 components: - type: Transform pos: -17.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5695 components: - type: Transform pos: -20.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5724 components: - type: Transform @@ -147445,7 +147618,7 @@ entities: pos: -11.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5725 components: - type: Transform @@ -147453,7 +147626,7 @@ entities: pos: -11.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7882 components: - type: Transform @@ -147461,14 +147634,14 @@ entities: pos: 16.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7888 components: - type: Transform pos: 16.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7899 components: - type: Transform @@ -147476,7 +147649,7 @@ entities: pos: 25.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7905 components: - type: Transform @@ -147484,7 +147657,7 @@ entities: pos: 23.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7906 components: - type: Transform @@ -147492,7 +147665,7 @@ entities: pos: 23.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7907 components: - type: Transform @@ -147500,7 +147673,7 @@ entities: pos: 25.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7912 components: - type: Transform @@ -147508,7 +147681,7 @@ entities: pos: 25.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7915 components: - type: Transform @@ -147516,7 +147689,7 @@ entities: pos: 25.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7927 components: - type: Transform @@ -147524,7 +147697,7 @@ entities: pos: 25.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7932 components: - type: Transform @@ -147532,7 +147705,7 @@ entities: pos: 25.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7934 components: - type: Transform @@ -147540,7 +147713,7 @@ entities: pos: 23.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7935 components: - type: Transform @@ -147548,7 +147721,7 @@ entities: pos: 25.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7965 components: - type: Transform @@ -147556,7 +147729,7 @@ entities: pos: 25.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7967 components: - type: Transform @@ -147564,7 +147737,7 @@ entities: pos: 23.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7988 components: - type: Transform @@ -147572,14 +147745,14 @@ entities: pos: 12.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7991 components: - type: Transform pos: 9.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8001 components: - type: Transform @@ -147587,7 +147760,7 @@ entities: pos: -1.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8006 components: - type: Transform @@ -147595,7 +147768,7 @@ entities: pos: 3.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8017 components: - type: Transform @@ -147603,7 +147776,7 @@ entities: pos: 14.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8018 components: - type: Transform @@ -147611,7 +147784,7 @@ entities: pos: 12.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8028 components: - type: Transform @@ -147619,35 +147792,35 @@ entities: pos: 18.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8072 components: - type: Transform pos: 38.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8075 components: - type: Transform pos: 34.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8076 components: - type: Transform pos: 22.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8078 components: - type: Transform pos: 31.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8080 components: - type: Transform @@ -147655,14 +147828,14 @@ entities: pos: 36.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8090 components: - type: Transform pos: 37.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8093 components: - type: Transform @@ -147670,21 +147843,21 @@ entities: pos: 35.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8096 components: - type: Transform pos: 33.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8100 components: - type: Transform pos: 27.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8105 components: - type: Transform @@ -147692,7 +147865,7 @@ entities: pos: 42.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8108 components: - type: Transform @@ -147700,7 +147873,7 @@ entities: pos: 50.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8111 components: - type: Transform @@ -147708,7 +147881,7 @@ entities: pos: 50.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8123 components: - type: Transform @@ -147716,7 +147889,7 @@ entities: pos: 42.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8138 components: - type: Transform @@ -147724,7 +147897,7 @@ entities: pos: 42.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8139 components: - type: Transform @@ -147732,7 +147905,7 @@ entities: pos: 50.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8176 components: - type: Transform @@ -147740,14 +147913,14 @@ entities: pos: 35.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8188 components: - type: Transform pos: 43.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8194 components: - type: Transform @@ -147755,7 +147928,7 @@ entities: pos: 47.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8213 components: - type: Transform @@ -147763,7 +147936,7 @@ entities: pos: 54.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8220 components: - type: Transform @@ -147771,7 +147944,7 @@ entities: pos: 56.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8229 components: - type: Transform @@ -147779,7 +147952,7 @@ entities: pos: 54.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8230 components: - type: Transform @@ -147787,7 +147960,7 @@ entities: pos: 54.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8240 components: - type: Transform @@ -147795,14 +147968,14 @@ entities: pos: 30.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8279 components: - type: Transform pos: 28.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8292 components: - type: Transform @@ -147810,7 +147983,7 @@ entities: pos: 56.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8293 components: - type: Transform @@ -147818,7 +147991,7 @@ entities: pos: 56.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8309 components: - type: Transform @@ -147826,7 +147999,7 @@ entities: pos: 54.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8314 components: - type: Transform @@ -147834,7 +148007,7 @@ entities: pos: 56.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8319 components: - type: Transform @@ -147842,14 +148015,14 @@ entities: pos: 56.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8332 components: - type: Transform pos: 50.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8339 components: - type: Transform @@ -147857,21 +148030,21 @@ entities: pos: 54.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8347 components: - type: Transform pos: 29.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8357 components: - type: Transform pos: 41.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8358 components: - type: Transform @@ -147879,7 +148052,7 @@ entities: pos: 56.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8359 components: - type: Transform @@ -147887,7 +148060,7 @@ entities: pos: 54.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8360 components: - type: Transform @@ -147895,7 +148068,7 @@ entities: pos: 56.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8409 components: - type: Transform @@ -147903,7 +148076,7 @@ entities: pos: 51.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8415 components: - type: Transform @@ -147911,14 +148084,14 @@ entities: pos: 54.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8483 components: - type: Transform pos: 28.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8487 components: - type: Transform @@ -147926,7 +148099,7 @@ entities: pos: 28.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8491 components: - type: Transform @@ -147934,7 +148107,7 @@ entities: pos: 28.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8498 components: - type: Transform @@ -147942,7 +148115,7 @@ entities: pos: 28.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8499 components: - type: Transform @@ -147950,14 +148123,14 @@ entities: pos: 29.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8507 components: - type: Transform pos: 29.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8508 components: - type: Transform @@ -147965,7 +148138,7 @@ entities: pos: 30.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8509 components: - type: Transform @@ -147973,7 +148146,7 @@ entities: pos: 24.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8514 components: - type: Transform @@ -147981,14 +148154,14 @@ entities: pos: 31.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8558 components: - type: Transform pos: 24.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8577 components: - type: Transform @@ -147996,7 +148169,7 @@ entities: pos: 19.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8580 components: - type: Transform @@ -148004,7 +148177,7 @@ entities: pos: 32.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8583 components: - type: Transform @@ -148012,14 +148185,14 @@ entities: pos: 25.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8584 components: - type: Transform pos: 24.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9265 components: - type: Transform @@ -148027,7 +148200,7 @@ entities: pos: 16.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9289 components: - type: Transform @@ -148035,7 +148208,7 @@ entities: pos: 16.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9290 components: - type: Transform @@ -148043,7 +148216,7 @@ entities: pos: 16.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9314 components: - type: Transform @@ -148051,14 +148224,14 @@ entities: pos: 10.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9315 components: - type: Transform pos: 10.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9316 components: - type: Transform @@ -148066,7 +148239,7 @@ entities: pos: 5.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9878 components: - type: Transform @@ -148074,7 +148247,7 @@ entities: pos: 5.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9884 components: - type: Transform @@ -148082,7 +148255,7 @@ entities: pos: 6.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9892 components: - type: Transform @@ -148090,7 +148263,7 @@ entities: pos: 8.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9896 components: - type: Transform @@ -148098,7 +148271,7 @@ entities: pos: 8.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9907 components: - type: Transform @@ -148106,7 +148279,7 @@ entities: pos: -0.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9935 components: - type: Transform @@ -148114,7 +148287,7 @@ entities: pos: -1.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9956 components: - type: Transform @@ -148122,7 +148295,7 @@ entities: pos: 8.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9957 components: - type: Transform @@ -148130,7 +148303,7 @@ entities: pos: 11.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9964 components: - type: Transform @@ -148138,21 +148311,21 @@ entities: pos: 6.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9967 components: - type: Transform pos: 10.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9977 components: - type: Transform pos: 24.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9990 components: - type: Transform @@ -148160,7 +148333,7 @@ entities: pos: 23.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10059 components: - type: Transform @@ -148168,14 +148341,14 @@ entities: pos: 1.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10060 components: - type: Transform pos: 1.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11052 components: - type: Transform @@ -148183,7 +148356,7 @@ entities: pos: 13.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11084 components: - type: Transform @@ -148191,7 +148364,7 @@ entities: pos: 12.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11087 components: - type: Transform @@ -148199,7 +148372,7 @@ entities: pos: 13.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11110 components: - type: Transform @@ -148207,14 +148380,14 @@ entities: pos: 19.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11111 components: - type: Transform pos: 18.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11131 components: - type: Transform @@ -148222,7 +148395,7 @@ entities: pos: 15.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11136 components: - type: Transform @@ -148230,7 +148403,7 @@ entities: pos: 25.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11137 components: - type: Transform @@ -148238,14 +148411,14 @@ entities: pos: 23.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11151 components: - type: Transform pos: 15.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11932 components: - type: Transform @@ -148253,7 +148426,7 @@ entities: pos: -23.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11940 components: - type: Transform @@ -148261,7 +148434,7 @@ entities: pos: -21.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11950 components: - type: Transform @@ -148269,7 +148442,7 @@ entities: pos: -23.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11956 components: - type: Transform @@ -148277,7 +148450,7 @@ entities: pos: -21.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11964 components: - type: Transform @@ -148285,7 +148458,7 @@ entities: pos: -21.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11965 components: - type: Transform @@ -148293,7 +148466,7 @@ entities: pos: -23.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11985 components: - type: Transform @@ -148301,14 +148474,14 @@ entities: pos: -33.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12001 components: - type: Transform pos: -35.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12677 components: - type: Transform @@ -148316,14 +148489,14 @@ entities: pos: -38.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12686 components: - type: Transform pos: -39.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12694 components: - type: Transform @@ -148331,7 +148504,7 @@ entities: pos: -38.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12699 components: - type: Transform @@ -148339,7 +148512,7 @@ entities: pos: -40.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12709 components: - type: Transform @@ -148347,7 +148520,7 @@ entities: pos: -40.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12716 components: - type: Transform @@ -148355,7 +148528,7 @@ entities: pos: -40.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12740 components: - type: Transform @@ -148363,7 +148536,7 @@ entities: pos: -38.5,-55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12752 components: - type: Transform @@ -148371,13 +148544,15 @@ entities: pos: -40.5,-51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13466 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,50.5 parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13472 components: - type: Transform @@ -148385,14 +148560,14 @@ entities: pos: 22.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14014 components: - type: Transform pos: 29.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14024 components: - type: Transform @@ -148400,7 +148575,7 @@ entities: pos: 45.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14025 components: - type: Transform @@ -148408,7 +148583,7 @@ entities: pos: 43.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14033 components: - type: Transform @@ -148416,7 +148591,7 @@ entities: pos: 32.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14045 components: - type: Transform @@ -148424,7 +148599,7 @@ entities: pos: 41.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14050 components: - type: Transform @@ -148432,7 +148607,7 @@ entities: pos: 43.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14051 components: - type: Transform @@ -148440,7 +148615,7 @@ entities: pos: 41.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14052 components: - type: Transform @@ -148448,7 +148623,7 @@ entities: pos: 56.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14053 components: - type: Transform @@ -148456,7 +148631,7 @@ entities: pos: 54.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14055 components: - type: Transform @@ -148464,7 +148639,7 @@ entities: pos: 54.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14063 components: - type: Transform @@ -148472,7 +148647,7 @@ entities: pos: 56.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14075 components: - type: Transform @@ -148480,7 +148655,7 @@ entities: pos: 47.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14086 components: - type: Transform @@ -148488,7 +148663,7 @@ entities: pos: 41.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14094 components: - type: Transform @@ -148496,7 +148671,7 @@ entities: pos: 43.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14103 components: - type: Transform @@ -148504,21 +148679,21 @@ entities: pos: 50.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14120 components: - type: Transform pos: 47.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14121 components: - type: Transform pos: 45.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14122 components: - type: Transform @@ -148526,21 +148701,21 @@ entities: pos: 45.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14124 components: - type: Transform pos: 50.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14125 components: - type: Transform pos: 52.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14131 components: - type: Transform @@ -148548,7 +148723,7 @@ entities: pos: 47.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14142 components: - type: Transform @@ -148556,14 +148731,14 @@ entities: pos: 45.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14149 components: - type: Transform pos: 49.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14183 components: - type: Transform @@ -148571,7 +148746,7 @@ entities: pos: 43.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14189 components: - type: Transform @@ -148579,14 +148754,14 @@ entities: pos: 41.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14190 components: - type: Transform pos: 42.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14200 components: - type: Transform @@ -148594,7 +148769,7 @@ entities: pos: 47.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14206 components: - type: Transform @@ -148602,7 +148777,7 @@ entities: pos: 37.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14207 components: - type: Transform @@ -148610,14 +148785,14 @@ entities: pos: 39.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14220 components: - type: Transform pos: 32.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14222 components: - type: Transform @@ -148625,14 +148800,14 @@ entities: pos: 30.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14231 components: - type: Transform pos: 28.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14241 components: - type: Transform @@ -148640,7 +148815,7 @@ entities: pos: 37.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14247 components: - type: Transform @@ -148648,7 +148823,7 @@ entities: pos: 37.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14248 components: - type: Transform @@ -148656,7 +148831,7 @@ entities: pos: 37.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14250 components: - type: Transform @@ -148664,7 +148839,7 @@ entities: pos: 39.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14254 components: - type: Transform @@ -148672,7 +148847,7 @@ entities: pos: 37.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14257 components: - type: Transform @@ -148680,7 +148855,7 @@ entities: pos: 39.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14263 components: - type: Transform @@ -148688,7 +148863,7 @@ entities: pos: 37.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14265 components: - type: Transform @@ -148696,7 +148871,7 @@ entities: pos: 44.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14274 components: - type: Transform @@ -148704,7 +148879,7 @@ entities: pos: 47.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14282 components: - type: Transform @@ -148712,7 +148887,7 @@ entities: pos: 48.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14297 components: - type: Transform @@ -148720,7 +148895,7 @@ entities: pos: 56.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14300 components: - type: Transform @@ -148728,7 +148903,7 @@ entities: pos: 43.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14310 components: - type: Transform @@ -148736,21 +148911,21 @@ entities: pos: 42.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14318 components: - type: Transform pos: 35.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14326 components: - type: Transform pos: 38.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14334 components: - type: Transform @@ -148758,14 +148933,14 @@ entities: pos: 42.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14347 components: - type: Transform pos: 38.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14528 components: - type: Transform @@ -148773,14 +148948,14 @@ entities: pos: 50.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14543 components: - type: Transform pos: 47.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14550 components: - type: Transform @@ -148788,7 +148963,7 @@ entities: pos: 61.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14559 components: - type: Transform @@ -148796,7 +148971,7 @@ entities: pos: 60.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15403 components: - type: Transform @@ -148814,7 +148989,7 @@ entities: pos: 54.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16666 components: - type: Transform @@ -148822,7 +148997,7 @@ entities: pos: 72.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16667 components: - type: Transform @@ -148830,7 +149005,7 @@ entities: pos: 73.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16669 components: - type: Transform @@ -148838,7 +149013,7 @@ entities: pos: 56.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16670 components: - type: Transform @@ -148846,7 +149021,7 @@ entities: pos: 50.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16671 components: - type: Transform @@ -148854,7 +149029,7 @@ entities: pos: 49.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16684 components: - type: Transform @@ -148862,28 +149037,28 @@ entities: pos: 55.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16708 components: - type: Transform pos: 60.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16718 components: - type: Transform pos: 70.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16719 components: - type: Transform pos: 71.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16741 components: - type: Transform @@ -148891,7 +149066,7 @@ entities: pos: 59.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16748 components: - type: Transform @@ -148899,7 +149074,7 @@ entities: pos: 72.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16749 components: - type: Transform @@ -148907,7 +149082,7 @@ entities: pos: 73.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16754 components: - type: Transform @@ -148915,7 +149090,7 @@ entities: pos: 72.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16756 components: - type: Transform @@ -148923,7 +149098,7 @@ entities: pos: 72.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16759 components: - type: Transform @@ -148931,21 +149106,21 @@ entities: pos: 73.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16760 components: - type: Transform pos: 81.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16761 components: - type: Transform pos: 83.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16765 components: - type: Transform @@ -148953,14 +149128,14 @@ entities: pos: 81.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16775 components: - type: Transform pos: 77.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16777 components: - type: Transform @@ -148968,21 +149143,21 @@ entities: pos: 81.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16824 components: - type: Transform pos: 87.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16831 components: - type: Transform pos: 94.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16832 components: - type: Transform @@ -148990,7 +149165,7 @@ entities: pos: 95.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16847 components: - type: Transform @@ -148998,7 +149173,7 @@ entities: pos: 81.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16848 components: - type: Transform @@ -149006,7 +149181,7 @@ entities: pos: 83.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16852 components: - type: Transform @@ -149014,14 +149189,14 @@ entities: pos: 87.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16858 components: - type: Transform pos: 65.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16866 components: - type: Transform @@ -149029,7 +149204,7 @@ entities: pos: 66.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16867 components: - type: Transform @@ -149037,21 +149212,21 @@ entities: pos: 66.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16876 components: - type: Transform pos: 63.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16896 components: - type: Transform pos: 55.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16900 components: - type: Transform @@ -149059,7 +149234,7 @@ entities: pos: 71.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16902 components: - type: Transform @@ -149067,14 +149242,14 @@ entities: pos: 61.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17151 components: - type: Transform pos: 13.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17154 components: - type: Transform @@ -149082,28 +149257,28 @@ entities: pos: 12.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17157 components: - type: Transform pos: 15.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17176 components: - type: Transform pos: 11.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17177 components: - type: Transform pos: 12.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17178 components: - type: Transform @@ -149111,7 +149286,7 @@ entities: pos: 17.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17179 components: - type: Transform @@ -149119,14 +149294,14 @@ entities: pos: 19.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17185 components: - type: Transform pos: 18.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17186 components: - type: Transform @@ -149134,14 +149309,14 @@ entities: pos: 19.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17188 components: - type: Transform pos: 14.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17205 components: - type: Transform @@ -149149,21 +149324,21 @@ entities: pos: 17.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17218 components: - type: Transform pos: 18.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17219 components: - type: Transform pos: 16.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17223 components: - type: Transform @@ -149171,7 +149346,7 @@ entities: pos: 19.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17236 components: - type: Transform @@ -149179,7 +149354,7 @@ entities: pos: 19.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17239 components: - type: Transform @@ -149187,42 +149362,42 @@ entities: pos: 15.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17246 components: - type: Transform pos: 10.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17252 components: - type: Transform pos: 2.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17255 components: - type: Transform pos: -0.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17262 components: - type: Transform pos: -0.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17267 components: - type: Transform pos: 4.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17273 components: - type: Transform @@ -149230,7 +149405,7 @@ entities: pos: 6.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17274 components: - type: Transform @@ -149238,7 +149413,7 @@ entities: pos: 11.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17275 components: - type: Transform @@ -149246,7 +149421,7 @@ entities: pos: 8.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17276 components: - type: Transform @@ -149254,7 +149429,7 @@ entities: pos: 13.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17281 components: - type: Transform @@ -149262,7 +149437,7 @@ entities: pos: 17.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17282 components: - type: Transform @@ -149270,7 +149445,7 @@ entities: pos: -5.5,63.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17283 components: - type: Transform @@ -149278,7 +149453,7 @@ entities: pos: -3.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17303 components: - type: Transform @@ -149286,28 +149461,28 @@ entities: pos: 10.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17313 components: - type: Transform pos: 14.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17318 components: - type: Transform pos: 5.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17325 components: - type: Transform pos: 3.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17331 components: - type: Transform @@ -149315,21 +149490,21 @@ entities: pos: 3.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17337 components: - type: Transform pos: 5.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17348 components: - type: Transform pos: 21.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17349 components: - type: Transform @@ -149337,7 +149512,7 @@ entities: pos: 22.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17359 components: - type: Transform @@ -149345,27 +149520,29 @@ entities: pos: 24.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17364 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,50.5 parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17367 components: - type: Transform pos: 18.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17368 components: - type: Transform pos: 18.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17424 components: - type: Transform @@ -149373,7 +149550,7 @@ entities: pos: 32.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17425 components: - type: Transform @@ -149381,7 +149558,7 @@ entities: pos: 33.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17426 components: - type: Transform @@ -149389,7 +149566,7 @@ entities: pos: 35.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17428 components: - type: Transform @@ -149397,7 +149574,7 @@ entities: pos: 33.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17484 components: - type: Transform @@ -149405,7 +149582,7 @@ entities: pos: 4.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17485 components: - type: Transform @@ -149413,19 +149590,21 @@ entities: pos: 2.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17621 components: - type: Transform pos: 27.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17623 components: - type: Transform pos: 28.5,50.5 parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17722 components: - type: Transform @@ -149433,7 +149612,7 @@ entities: pos: 22.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19449 components: - type: Transform @@ -149441,7 +149620,7 @@ entities: pos: 24.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19456 components: - type: Transform @@ -149449,7 +149628,7 @@ entities: pos: 24.5,-49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19463 components: - type: Transform @@ -149457,14 +149636,14 @@ entities: pos: 24.5,-52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19482 components: - type: Transform pos: 39.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19491 components: - type: Transform @@ -149472,7 +149651,7 @@ entities: pos: 43.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19496 components: - type: Transform @@ -149480,21 +149659,21 @@ entities: pos: 38.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19499 components: - type: Transform pos: 36.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19505 components: - type: Transform pos: 30.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19516 components: - type: Transform @@ -149502,28 +149681,28 @@ entities: pos: 25.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19543 components: - type: Transform pos: 37.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19832 components: - type: Transform pos: 54.5,-45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19853 components: - type: Transform pos: 53.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22637 components: - type: Transform @@ -149531,7 +149710,7 @@ entities: pos: 67.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22638 components: - type: Transform @@ -149539,7 +149718,7 @@ entities: pos: 67.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22653 components: - type: Transform @@ -149547,28 +149726,28 @@ entities: pos: 69.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22659 components: - type: Transform pos: 69.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22660 components: - type: Transform pos: 67.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22661 components: - type: Transform pos: 68.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22666 components: - type: Transform @@ -149576,7 +149755,7 @@ entities: pos: 65.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23626 components: - type: Transform @@ -149630,7 +149809,7 @@ entities: pos: 68.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23648 components: - type: Transform @@ -149638,7 +149817,7 @@ entities: pos: 68.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23649 components: - type: Transform @@ -149646,7 +149825,7 @@ entities: pos: 68.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23652 components: - type: Transform @@ -149654,7 +149833,7 @@ entities: pos: 68.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23654 components: - type: Transform @@ -149662,14 +149841,14 @@ entities: pos: 68.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23670 components: - type: Transform pos: 80.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23681 components: - type: Transform @@ -149693,7 +149872,7 @@ entities: pos: 83.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23741 components: - type: Transform @@ -149701,7 +149880,7 @@ entities: pos: 82.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23742 components: - type: Transform @@ -149709,7 +149888,7 @@ entities: pos: 81.5,-28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23757 components: - type: Transform @@ -149717,7 +149896,7 @@ entities: pos: 68.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23758 components: - type: Transform @@ -149725,7 +149904,7 @@ entities: pos: 68.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23771 components: - type: Transform @@ -149733,7 +149912,7 @@ entities: pos: 77.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23776 components: - type: Transform @@ -149741,7 +149920,7 @@ entities: pos: 76.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23819 components: - type: Transform @@ -149794,7 +149973,7 @@ entities: pos: 79.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24023 components: - type: Transform @@ -149802,7 +149981,7 @@ entities: pos: 67.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24025 components: - type: Transform @@ -149810,14 +149989,14 @@ entities: pos: 69.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24034 components: - type: Transform pos: 64.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24041 components: - type: Transform @@ -149825,7 +150004,7 @@ entities: pos: 66.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24042 components: - type: Transform @@ -149833,7 +150012,7 @@ entities: pos: 64.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24044 components: - type: Transform @@ -149841,7 +150020,7 @@ entities: pos: 64.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24253 components: - type: Transform @@ -149864,7 +150043,7 @@ entities: pos: 75.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25087 components: - type: Transform @@ -149872,7 +150051,7 @@ entities: pos: 89.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25243 components: - type: Transform @@ -149880,7 +150059,7 @@ entities: pos: 79.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25256 components: - type: Transform @@ -149888,7 +150067,7 @@ entities: pos: 83.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25259 components: - type: Transform @@ -149896,7 +150075,7 @@ entities: pos: 86.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25262 components: - type: Transform @@ -149904,7 +150083,7 @@ entities: pos: 89.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25270 components: - type: Transform @@ -149912,7 +150091,7 @@ entities: pos: 89.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25275 components: - type: Transform @@ -149920,14 +150099,14 @@ entities: pos: 89.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25280 components: - type: Transform pos: 97.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25286 components: - type: Transform @@ -149935,28 +150114,28 @@ entities: pos: 103.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25287 components: - type: Transform pos: 111.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25305 components: - type: Transform pos: 103.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25306 components: - type: Transform pos: 104.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25316 components: - type: Transform @@ -149964,7 +150143,7 @@ entities: pos: 97.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25320 components: - type: Transform @@ -149972,7 +150151,7 @@ entities: pos: 94.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25334 components: - type: Transform @@ -149980,14 +150159,14 @@ entities: pos: 113.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25344 components: - type: Transform pos: 76.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25355 components: - type: Transform @@ -149995,7 +150174,7 @@ entities: pos: 77.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25356 components: - type: Transform @@ -150003,7 +150182,7 @@ entities: pos: 83.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25372 components: - type: Transform @@ -150011,7 +150190,7 @@ entities: pos: 86.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25391 components: - type: Transform @@ -150019,7 +150198,7 @@ entities: pos: 82.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25405 components: - type: Transform @@ -150027,7 +150206,7 @@ entities: pos: 90.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25407 components: - type: Transform @@ -150035,7 +150214,7 @@ entities: pos: 88.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25422 components: - type: Transform @@ -150043,7 +150222,7 @@ entities: pos: 90.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25436 components: - type: Transform @@ -150051,7 +150230,7 @@ entities: pos: 89.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25437 components: - type: Transform @@ -150059,7 +150238,7 @@ entities: pos: 90.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25440 components: - type: Transform @@ -150067,7 +150246,7 @@ entities: pos: 90.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25475 components: - type: Transform @@ -150075,7 +150254,7 @@ entities: pos: 93.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25496 components: - type: Transform @@ -150083,7 +150262,7 @@ entities: pos: 89.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25497 components: - type: Transform @@ -150091,7 +150270,7 @@ entities: pos: 91.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25894 components: - type: Transform @@ -150114,7 +150293,7 @@ entities: pos: 91.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27665 components: - type: Transform @@ -150122,7 +150301,7 @@ entities: pos: 88.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27666 components: - type: Transform @@ -150130,7 +150309,7 @@ entities: pos: 88.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27838 components: - type: Transform @@ -150143,7 +150322,7 @@ entities: pos: 97.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28090 components: - type: Transform @@ -150151,7 +150330,7 @@ entities: pos: 119.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28109 components: - type: Transform @@ -150159,7 +150338,7 @@ entities: pos: 119.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28126 components: - type: Transform @@ -150167,7 +150346,7 @@ entities: pos: 118.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28140 components: - type: Transform @@ -150175,7 +150354,7 @@ entities: pos: 118.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28145 components: - type: Transform @@ -150188,7 +150367,7 @@ entities: pos: 59.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28238 components: - type: Transform @@ -150196,21 +150375,21 @@ entities: pos: 92.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28259 components: - type: Transform pos: 77.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28290 components: - type: Transform pos: 82.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28308 components: - type: Transform @@ -150218,14 +150397,14 @@ entities: pos: 82.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28844 components: - type: Transform pos: 59.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28845 components: - type: Transform @@ -150233,7 +150412,7 @@ entities: pos: 59.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28860 components: - type: Transform @@ -150241,14 +150420,14 @@ entities: pos: 64.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28861 components: - type: Transform pos: 64.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28871 components: - type: Transform @@ -150256,14 +150435,14 @@ entities: pos: 69.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28892 components: - type: Transform pos: 44.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28893 components: - type: Transform @@ -150271,21 +150450,21 @@ entities: pos: 46.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29296 components: - type: Transform pos: 73.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29317 components: - type: Transform pos: 68.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29323 components: - type: Transform @@ -150293,7 +150472,7 @@ entities: pos: 73.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29653 components: - type: Transform @@ -150301,14 +150480,14 @@ entities: pos: 72.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29660 components: - type: Transform pos: 78.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29662 components: - type: Transform @@ -150316,7 +150495,7 @@ entities: pos: 80.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29684 components: - type: Transform @@ -150324,7 +150503,7 @@ entities: pos: 97.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29685 components: - type: Transform @@ -150332,7 +150511,7 @@ entities: pos: 97.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29703 components: - type: Transform @@ -150340,7 +150519,7 @@ entities: pos: 95.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29704 components: - type: Transform @@ -150348,7 +150527,7 @@ entities: pos: 95.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29724 components: - type: Transform @@ -150356,7 +150535,7 @@ entities: pos: 79.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29743 components: - type: Transform @@ -150364,7 +150543,7 @@ entities: pos: 97.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29747 components: - type: Transform @@ -150372,21 +150551,21 @@ entities: pos: 73.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29767 components: - type: Transform pos: 110.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29772 components: - type: Transform pos: 112.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29777 components: - type: Transform @@ -150394,7 +150573,7 @@ entities: pos: 119.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29786 components: - type: Transform @@ -150402,7 +150581,7 @@ entities: pos: 116.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29789 components: - type: Transform @@ -150410,7 +150589,7 @@ entities: pos: 110.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29802 components: - type: Transform @@ -150418,7 +150597,7 @@ entities: pos: 100.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29803 components: - type: Transform @@ -150426,7 +150605,7 @@ entities: pos: 101.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29848 components: - type: Transform @@ -150434,7 +150613,7 @@ entities: pos: 119.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30301 components: - type: Transform @@ -150442,7 +150621,7 @@ entities: pos: 79.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30304 components: - type: Transform @@ -150450,7 +150629,7 @@ entities: pos: 73.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30311 components: - type: Transform @@ -150458,7 +150637,7 @@ entities: pos: 80.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31147 components: - type: Transform @@ -150466,14 +150645,14 @@ entities: pos: 61.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31189 components: - type: Transform pos: 60.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPort entities: - uid: 4697 @@ -150617,14 +150796,14 @@ entities: pos: 79.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24006 components: - type: Transform pos: 80.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24007 components: - type: Transform @@ -150642,7 +150821,7 @@ entities: pos: 62.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24032 components: - type: Transform @@ -150650,7 +150829,7 @@ entities: pos: 62.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24033 components: - type: Transform @@ -150658,21 +150837,21 @@ entities: pos: 62.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24037 components: - type: Transform pos: 63.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24038 components: - type: Transform pos: 64.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24039 components: - type: Transform @@ -150707,7 +150886,7 @@ entities: pos: 68.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29322 components: - type: Transform @@ -150715,7 +150894,7 @@ entities: pos: 69.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29327 components: - type: Transform @@ -150737,7 +150916,7 @@ entities: pos: -29.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5625 components: - type: Transform @@ -150745,7 +150924,7 @@ entities: pos: -29.5,72.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13465 components: - type: MetaData @@ -150755,7 +150934,7 @@ entities: pos: 26.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' - uid: 15382 components: - type: Transform @@ -150768,6 +150947,8 @@ entities: rot: 3.141592653589793 rad pos: 30.5,49.5 parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 22664 components: - type: Transform @@ -150775,7 +150956,7 @@ entities: pos: 65.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22667 components: - type: Transform @@ -150783,7 +150964,7 @@ entities: pos: 66.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23642 components: - type: Transform @@ -150810,7 +150991,7 @@ entities: pos: 83.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23669 components: - type: Transform @@ -150849,7 +151030,7 @@ entities: pos: 69.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23709 components: - type: MetaData @@ -150893,7 +151074,7 @@ entities: pos: 69.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23838 components: - type: Transform @@ -150901,7 +151082,7 @@ entities: pos: 69.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23861 components: - type: MetaData @@ -150925,7 +151106,7 @@ entities: pos: 81.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24004 components: - type: Transform @@ -150933,13 +151114,15 @@ entities: pos: 82.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24257 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-33.5 parent: 13329 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 28136 components: - type: Transform @@ -150947,7 +151130,7 @@ entities: pos: 121.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28138 components: - type: Transform @@ -150955,21 +151138,21 @@ entities: pos: 120.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29325 components: - type: Transform pos: 72.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29326 components: - type: Transform pos: 73.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasThermoMachineFreezer entities: - uid: 1205 @@ -150992,6 +151175,8 @@ entities: - type: Transform pos: 30.5,51.5 parent: 13329 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 23655 components: - type: MetaData @@ -151001,7 +151186,7 @@ entities: pos: 67.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23687 components: - type: Transform @@ -151041,7 +151226,7 @@ entities: pos: 67.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23688 components: - type: Transform @@ -151091,7 +151276,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23834 components: - type: MetaData @@ -151113,7 +151298,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 24256 components: - type: Transform @@ -151133,7 +151318,7 @@ entities: pos: -5.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 451 components: - type: Transform @@ -151141,7 +151326,7 @@ entities: pos: -6.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 452 components: - type: Transform @@ -151149,14 +151334,14 @@ entities: pos: -20.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 453 components: - type: Transform pos: -10.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 461 components: - type: Transform @@ -151164,7 +151349,7 @@ entities: pos: -18.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 552 components: - type: Transform @@ -151172,7 +151357,7 @@ entities: pos: -4.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 565 components: - type: Transform @@ -151180,7 +151365,7 @@ entities: pos: -15.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 567 components: - type: Transform @@ -151188,7 +151373,7 @@ entities: pos: -18.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 568 components: - type: Transform @@ -151196,7 +151381,7 @@ entities: pos: -9.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 569 components: - type: Transform @@ -151204,14 +151389,14 @@ entities: pos: -14.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 571 components: - type: Transform pos: -11.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 572 components: - type: Transform @@ -151219,21 +151404,21 @@ entities: pos: -4.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 610 components: - type: Transform pos: -15.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 624 components: - type: Transform pos: -13.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1541 components: - type: Transform @@ -151241,7 +151426,7 @@ entities: pos: 3.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1552 components: - type: Transform @@ -151249,21 +151434,21 @@ entities: pos: 1.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1554 components: - type: Transform pos: -0.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1616 components: - type: Transform pos: -10.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2077 components: - type: Transform @@ -151271,7 +151456,7 @@ entities: pos: -5.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2191 components: - type: Transform @@ -151279,7 +151464,7 @@ entities: pos: -14.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2192 components: - type: Transform @@ -151287,7 +151472,7 @@ entities: pos: -10.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2193 components: - type: Transform @@ -151295,7 +151480,7 @@ entities: pos: -11.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2300 components: - type: Transform @@ -151303,14 +151488,14 @@ entities: pos: -18.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2550 components: - type: Transform pos: -17.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4459 components: - type: Transform @@ -151318,7 +151503,7 @@ entities: pos: -33.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4468 components: - type: Transform @@ -151326,7 +151511,7 @@ entities: pos: -22.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4585 components: - type: Transform @@ -151334,7 +151519,7 @@ entities: pos: -23.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4666 components: - type: Transform @@ -151342,7 +151527,7 @@ entities: pos: -36.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4667 components: - type: Transform @@ -151350,7 +151535,7 @@ entities: pos: -28.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5524 components: - type: Transform @@ -151358,7 +151543,7 @@ entities: pos: -4.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5550 components: - type: Transform @@ -151366,14 +151551,14 @@ entities: pos: -31.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5642 components: - type: Transform pos: -30.5,68.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5643 components: - type: Transform @@ -151381,14 +151566,14 @@ entities: pos: -28.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5658 components: - type: Transform pos: -22.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5659 components: - type: Transform @@ -151396,7 +151581,7 @@ entities: pos: -21.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5668 components: - type: Transform @@ -151404,7 +151589,7 @@ entities: pos: -10.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5704 components: - type: Transform @@ -151412,7 +151597,7 @@ entities: pos: -11.5,71.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5705 components: - type: Transform @@ -151420,7 +151605,7 @@ entities: pos: -16.5,71.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5720 components: - type: Transform @@ -151428,7 +151613,7 @@ entities: pos: -21.5,70.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5723 components: - type: Transform @@ -151436,7 +151621,7 @@ entities: pos: -16.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6223 components: - type: Transform @@ -151444,7 +151629,7 @@ entities: pos: -12.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6228 components: - type: Transform @@ -151452,7 +151637,7 @@ entities: pos: -33.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6904 components: - type: Transform @@ -151460,7 +151645,7 @@ entities: pos: 5.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6907 components: - type: Transform @@ -151468,7 +151653,7 @@ entities: pos: -0.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8136 components: - type: Transform @@ -151476,7 +151661,7 @@ entities: pos: 43.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8140 components: - type: Transform @@ -151484,7 +151669,7 @@ entities: pos: 43.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8165 components: - type: Transform @@ -151492,7 +151677,7 @@ entities: pos: 44.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8256 components: - type: Transform @@ -151500,7 +151685,7 @@ entities: pos: 11.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8421 components: - type: Transform @@ -151508,7 +151693,7 @@ entities: pos: 42.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8452 components: - type: Transform @@ -151516,7 +151701,7 @@ entities: pos: 33.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8471 components: - type: Transform @@ -151524,7 +151709,7 @@ entities: pos: 27.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8472 components: - type: Transform @@ -151532,7 +151717,7 @@ entities: pos: 30.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8473 components: - type: Transform @@ -151540,7 +151725,7 @@ entities: pos: 33.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8474 components: - type: Transform @@ -151548,14 +151733,14 @@ entities: pos: 37.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8531 components: - type: Transform pos: 30.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8532 components: - type: Transform @@ -151563,14 +151748,14 @@ entities: pos: 37.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8542 components: - type: Transform pos: 31.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8552 components: - type: Transform @@ -151578,7 +151763,7 @@ entities: pos: 24.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8556 components: - type: Transform @@ -151586,7 +151771,7 @@ entities: pos: 20.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8557 components: - type: Transform @@ -151594,7 +151779,7 @@ entities: pos: 28.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8572 components: - type: Transform @@ -151602,7 +151787,7 @@ entities: pos: 19.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8593 components: - type: Transform @@ -151610,7 +151795,7 @@ entities: pos: 20.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8595 components: - type: Transform @@ -151618,7 +151803,7 @@ entities: pos: 24.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8597 components: - type: Transform @@ -151626,14 +151811,14 @@ entities: pos: 22.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8599 components: - type: Transform pos: 24.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8603 components: - type: Transform @@ -151641,21 +151826,21 @@ entities: pos: 18.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9294 components: - type: Transform pos: 14.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9295 components: - type: Transform pos: 8.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9297 components: - type: Transform @@ -151663,7 +151848,7 @@ entities: pos: 8.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9298 components: - type: Transform @@ -151671,7 +151856,7 @@ entities: pos: 14.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9948 components: - type: Transform @@ -151679,7 +151864,7 @@ entities: pos: 0.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9950 components: - type: Transform @@ -151687,7 +151872,7 @@ entities: pos: 9.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10058 components: - type: Transform @@ -151695,7 +151880,7 @@ entities: pos: 9.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10083 components: - type: Transform @@ -151703,7 +151888,7 @@ entities: pos: -4.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10084 components: - type: Transform @@ -151711,7 +151896,7 @@ entities: pos: 1.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11041 components: - type: Transform @@ -151719,14 +151904,14 @@ entities: pos: 7.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11045 components: - type: Transform pos: -0.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11047 components: - type: Transform @@ -151734,7 +151919,7 @@ entities: pos: 9.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11095 components: - type: Transform @@ -151742,7 +151927,7 @@ entities: pos: 12.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11098 components: - type: Transform @@ -151750,14 +151935,14 @@ entities: pos: 12.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11109 components: - type: Transform pos: 18.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11128 components: - type: Transform @@ -151765,7 +151950,7 @@ entities: pos: 17.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11129 components: - type: Transform @@ -151773,7 +151958,7 @@ entities: pos: 19.5,-27.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11154 components: - type: Transform @@ -151781,7 +151966,7 @@ entities: pos: 7.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12761 components: - type: Transform @@ -151789,7 +151974,7 @@ entities: pos: -34.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12762 components: - type: Transform @@ -151797,7 +151982,7 @@ entities: pos: -34.5,-60.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12766 components: - type: Transform @@ -151805,7 +151990,7 @@ entities: pos: -39.5,-51.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13102 components: - type: Transform @@ -151813,7 +151998,7 @@ entities: pos: -34.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13106 components: - type: Transform @@ -151821,7 +152006,7 @@ entities: pos: -39.5,-40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13108 components: - type: Transform @@ -151829,7 +152014,7 @@ entities: pos: -39.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13542 components: - type: Transform @@ -151837,7 +152022,7 @@ entities: pos: -35.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13556 components: - type: Transform @@ -151845,7 +152030,7 @@ entities: pos: -35.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13560 components: - type: Transform @@ -151853,7 +152038,7 @@ entities: pos: -22.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13561 components: - type: Transform @@ -151861,7 +152046,7 @@ entities: pos: -22.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13564 components: - type: Transform @@ -151869,7 +152054,7 @@ entities: pos: -17.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14281 components: - type: Transform @@ -151877,7 +152062,7 @@ entities: pos: 48.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14295 components: - type: Transform @@ -151885,7 +152070,7 @@ entities: pos: 55.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14312 components: - type: Transform @@ -151893,14 +152078,14 @@ entities: pos: 42.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14313 components: - type: Transform pos: 41.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14316 components: - type: Transform @@ -151908,7 +152093,7 @@ entities: pos: 46.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14321 components: - type: Transform @@ -151916,7 +152101,7 @@ entities: pos: 32.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14322 components: - type: Transform @@ -151924,7 +152109,7 @@ entities: pos: 35.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14330 components: - type: Transform @@ -151932,7 +152117,7 @@ entities: pos: 38.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14333 components: - type: Transform @@ -151940,14 +152125,14 @@ entities: pos: 42.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14342 components: - type: Transform pos: 42.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14359 components: - type: Transform @@ -151955,7 +152140,7 @@ entities: pos: 35.5,-33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14360 components: - type: Transform @@ -151963,7 +152148,7 @@ entities: pos: 34.5,-37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14452 components: - type: Transform @@ -151971,7 +152156,7 @@ entities: pos: 51.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14486 components: - type: Transform @@ -151979,7 +152164,7 @@ entities: pos: 28.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14489 components: - type: Transform @@ -151987,7 +152172,7 @@ entities: pos: 38.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14490 components: - type: Transform @@ -151995,7 +152180,7 @@ entities: pos: 48.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14522 components: - type: Transform @@ -152003,7 +152188,7 @@ entities: pos: 46.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14524 components: - type: Transform @@ -152011,7 +152196,7 @@ entities: pos: 29.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14526 components: - type: Transform @@ -152019,7 +152204,7 @@ entities: pos: 24.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14545 components: - type: Transform @@ -152027,7 +152212,7 @@ entities: pos: 46.5,-6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14562 components: - type: Transform @@ -152035,7 +152220,7 @@ entities: pos: 42.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14563 components: - type: Transform @@ -152043,7 +152228,7 @@ entities: pos: 55.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14584 components: - type: Transform @@ -152051,7 +152236,7 @@ entities: pos: 13.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14590 components: - type: Transform @@ -152059,7 +152244,7 @@ entities: pos: 29.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16672 components: - type: Transform @@ -152067,14 +152252,14 @@ entities: pos: 49.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16673 components: - type: Transform pos: 49.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16742 components: - type: Transform @@ -152082,7 +152267,7 @@ entities: pos: 71.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16752 components: - type: Transform @@ -152090,7 +152275,7 @@ entities: pos: 71.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17291 components: - type: Transform @@ -152098,21 +152283,21 @@ entities: pos: -4.5,65.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17297 components: - type: Transform pos: 10.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17387 components: - type: Transform pos: 12.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17388 components: - type: Transform @@ -152120,7 +152305,7 @@ entities: pos: 3.5,40.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17392 components: - type: Transform @@ -152128,7 +152313,7 @@ entities: pos: 5.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17393 components: - type: Transform @@ -152136,7 +152321,7 @@ entities: pos: 18.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17401 components: - type: Transform @@ -152144,7 +152329,7 @@ entities: pos: 23.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17403 components: - type: Transform @@ -152152,7 +152337,7 @@ entities: pos: 14.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17404 components: - type: Transform @@ -152160,7 +152345,7 @@ entities: pos: 23.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17406 components: - type: Transform @@ -152168,21 +152353,21 @@ entities: pos: 5.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17451 components: - type: Transform pos: 32.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17452 components: - type: Transform pos: 35.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17453 components: - type: Transform @@ -152190,14 +152375,14 @@ entities: pos: 36.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17456 components: - type: Transform pos: 28.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17457 components: - type: Transform @@ -152205,7 +152390,7 @@ entities: pos: 28.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17460 components: - type: Transform @@ -152213,7 +152398,7 @@ entities: pos: 16.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17466 components: - type: Transform @@ -152221,7 +152406,7 @@ entities: pos: 14.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17473 components: - type: Transform @@ -152229,7 +152414,7 @@ entities: pos: 8.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17501 components: - type: Transform @@ -152237,7 +152422,7 @@ entities: pos: 3.5,56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17502 components: - type: Transform @@ -152245,7 +152430,7 @@ entities: pos: 8.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17543 components: - type: Transform @@ -152253,7 +152438,7 @@ entities: pos: 7.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17607 components: - type: Transform @@ -152261,7 +152446,7 @@ entities: pos: 21.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17721 components: - type: Transform @@ -152269,7 +152454,7 @@ entities: pos: 16.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17737 components: - type: Transform @@ -152277,7 +152462,7 @@ entities: pos: 23.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17738 components: - type: Transform @@ -152285,14 +152470,14 @@ entities: pos: 23.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17746 components: - type: Transform pos: 8.5,66.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17747 components: - type: Transform @@ -152300,14 +152485,14 @@ entities: pos: -0.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17752 components: - type: Transform pos: 15.5,66.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18796 components: - type: Transform @@ -152315,7 +152500,7 @@ entities: pos: 14.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19467 components: - type: Transform @@ -152323,7 +152508,7 @@ entities: pos: 23.5,-52.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19468 components: - type: Transform @@ -152331,7 +152516,7 @@ entities: pos: 24.5,-56.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19469 components: - type: Transform @@ -152339,7 +152524,7 @@ entities: pos: 29.5,-49.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19495 components: - type: Transform @@ -152347,7 +152532,7 @@ entities: pos: 42.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19544 components: - type: Transform @@ -152355,7 +152540,7 @@ entities: pos: 37.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19852 components: - type: Transform @@ -152363,14 +152548,14 @@ entities: pos: 53.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 20227 components: - type: Transform pos: 76.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22669 components: - type: Transform @@ -152378,14 +152563,14 @@ entities: pos: 68.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22683 components: - type: Transform pos: 59.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22685 components: - type: Transform @@ -152393,7 +152578,7 @@ entities: pos: 59.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23671 components: - type: Transform @@ -152401,7 +152586,7 @@ entities: pos: 79.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23801 components: - type: Transform @@ -152409,7 +152594,7 @@ entities: pos: 76.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24035 components: - type: Transform @@ -152417,28 +152602,28 @@ entities: pos: 68.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24893 components: - type: Transform pos: 77.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25091 components: - type: Transform pos: 86.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25330 components: - type: Transform pos: 93.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25331 components: - type: Transform @@ -152446,7 +152631,7 @@ entities: pos: 93.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25332 components: - type: Transform @@ -152454,7 +152639,7 @@ entities: pos: 104.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25333 components: - type: Transform @@ -152462,7 +152647,7 @@ entities: pos: 108.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25335 components: - type: Transform @@ -152470,7 +152655,7 @@ entities: pos: 115.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25336 components: - type: Transform @@ -152478,7 +152663,7 @@ entities: pos: 82.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25343 components: - type: Transform @@ -152486,7 +152671,7 @@ entities: pos: 71.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25362 components: - type: Transform @@ -152494,7 +152679,7 @@ entities: pos: 82.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25401 components: - type: Transform @@ -152502,28 +152687,28 @@ entities: pos: 72.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25402 components: - type: Transform pos: 82.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25403 components: - type: Transform pos: 86.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25426 components: - type: Transform pos: 94.5,-8.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25455 components: - type: Transform @@ -152531,7 +152716,7 @@ entities: pos: 98.5,-14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25458 components: - type: Transform @@ -152539,14 +152724,14 @@ entities: pos: 91.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25875 components: - type: Transform pos: 89.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25900 components: - type: Transform @@ -152554,7 +152739,7 @@ entities: pos: 97.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25954 components: - type: Transform @@ -152562,7 +152747,7 @@ entities: pos: 96.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27649 components: - type: Transform @@ -152570,7 +152755,7 @@ entities: pos: 98.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27659 components: - type: Transform @@ -152578,7 +152763,7 @@ entities: pos: 86.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27660 components: - type: Transform @@ -152586,7 +152771,7 @@ entities: pos: 87.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 27858 components: - type: Transform @@ -152594,14 +152779,14 @@ entities: pos: 98.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28097 components: - type: Transform pos: 125.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28116 components: - type: Transform @@ -152609,28 +152794,28 @@ entities: pos: 124.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28139 components: - type: Transform pos: 113.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28189 components: - type: Transform pos: 61.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28196 components: - type: Transform pos: 55.5,7.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28214 components: - type: Transform @@ -152638,7 +152823,7 @@ entities: pos: 97.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28264 components: - type: Transform @@ -152646,14 +152831,14 @@ entities: pos: 93.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28265 components: - type: Transform pos: 91.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28268 components: - type: Transform @@ -152661,7 +152846,7 @@ entities: pos: 55.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28320 components: - type: Transform @@ -152669,7 +152854,7 @@ entities: pos: 82.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28321 components: - type: Transform @@ -152677,7 +152862,7 @@ entities: pos: 78.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28322 components: - type: Transform @@ -152685,7 +152870,7 @@ entities: pos: 78.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28323 components: - type: Transform @@ -152693,7 +152878,7 @@ entities: pos: 78.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28324 components: - type: Transform @@ -152701,7 +152886,7 @@ entities: pos: 86.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28325 components: - type: Transform @@ -152709,7 +152894,7 @@ entities: pos: 86.5,21.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28326 components: - type: Transform @@ -152717,7 +152902,7 @@ entities: pos: 86.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28787 components: - type: Transform @@ -152725,7 +152910,7 @@ entities: pos: 82.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28792 components: - type: Transform @@ -152733,7 +152918,7 @@ entities: pos: 78.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28794 components: - type: Transform @@ -152741,7 +152926,7 @@ entities: pos: 77.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28830 components: - type: Transform @@ -152749,14 +152934,14 @@ entities: pos: 63.5,11.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28831 components: - type: Transform pos: 71.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28842 components: - type: Transform @@ -152764,7 +152949,7 @@ entities: pos: 55.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28879 components: - type: Transform @@ -152772,21 +152957,21 @@ entities: pos: 69.5,28.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28880 components: - type: Transform pos: 64.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28881 components: - type: Transform pos: 59.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28887 components: - type: Transform @@ -152794,21 +152979,21 @@ entities: pos: 70.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28888 components: - type: Transform pos: 30.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 28891 components: - type: Transform pos: 46.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29745 components: - type: Transform @@ -152816,7 +153001,7 @@ entities: pos: 94.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29749 components: - type: Transform @@ -152824,7 +153009,7 @@ entities: pos: 60.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29751 components: - type: Transform @@ -152835,7 +153020,7 @@ entities: deviceLists: - 35620 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29841 components: - type: Transform @@ -152846,7 +153031,7 @@ entities: deviceLists: - 35618 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29842 components: - type: Transform @@ -152856,7 +153041,7 @@ entities: deviceLists: - 35621 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29843 components: - type: Transform @@ -152867,7 +153052,7 @@ entities: deviceLists: - 35619 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29844 components: - type: Transform @@ -152878,7 +153063,7 @@ entities: deviceLists: - 35623 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29847 components: - type: Transform @@ -152888,7 +153073,7 @@ entities: deviceLists: - 35622 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29865 components: - type: Transform @@ -152899,7 +153084,7 @@ entities: deviceLists: - 35624 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 29866 components: - type: Transform @@ -152910,7 +153095,7 @@ entities: deviceLists: - 35624 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30302 components: - type: Transform @@ -152918,7 +153103,7 @@ entities: pos: 79.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 30303 components: - type: Transform @@ -152926,7 +153111,7 @@ entities: pos: 80.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31134 components: - type: Transform @@ -152934,14 +153119,14 @@ entities: pos: 73.5,54.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31136 components: - type: Transform pos: 79.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31148 components: - type: Transform @@ -152949,14 +153134,14 @@ entities: pos: 61.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 31164 components: - type: Transform pos: 59.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 34610 components: - type: Transform @@ -152964,7 +153149,7 @@ entities: pos: 91.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 377 @@ -152973,7 +153158,7 @@ entities: pos: -10.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 378 components: - type: Transform @@ -152981,7 +153166,7 @@ entities: pos: -6.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 387 components: - type: Transform @@ -152989,7 +153174,7 @@ entities: pos: -16.5,12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 388 components: - type: Transform @@ -152997,7 +153182,7 @@ entities: pos: -12.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 389 components: - type: Transform @@ -153005,7 +153190,7 @@ entities: pos: -20.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 420 components: - type: Transform @@ -153013,7 +153198,7 @@ entities: pos: -4.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 421 components: - type: Transform @@ -153021,14 +153206,14 @@ entities: pos: -13.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 422 components: - type: Transform pos: -6.5,26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 423 components: - type: Transform @@ -153036,7 +153221,7 @@ entities: pos: -8.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 530 components: - type: Transform @@ -153044,14 +153229,14 @@ entities: pos: -9.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 537 components: - type: Transform pos: -16.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 538 components: - type: Transform @@ -153059,7 +153244,7 @@ entities: pos: -15.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 587 components: - type: Transform @@ -153067,7 +153252,7 @@ entities: pos: -11.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 588 components: - type: Transform @@ -153075,14 +153260,14 @@ entities: pos: -4.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1544 components: - type: Transform pos: 4.5,8.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1553 components: - type: Transform @@ -153090,7 +153275,7 @@ entities: pos: -2.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1555 components: - type: Transform @@ -153098,7 +153283,7 @@ entities: pos: -0.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1617 components: - type: Transform @@ -153106,7 +153291,7 @@ entities: pos: -10.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2075 components: - type: Transform @@ -153114,14 +153299,14 @@ entities: pos: 4.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2189 components: - type: Transform pos: -8.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2190 components: - type: Transform @@ -153129,21 +153314,21 @@ entities: pos: -14.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2194 components: - type: Transform pos: -12.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2307 components: - type: Transform pos: -18.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2549 components: - type: Transform @@ -153151,7 +153336,7 @@ entities: pos: -17.5,0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4463 components: - type: Transform @@ -153159,7 +153344,7 @@ entities: pos: -34.5,27.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4469 components: - type: Transform @@ -153167,14 +153352,14 @@ entities: pos: -24.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4586 components: - type: Transform pos: -22.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4668 components: - type: Transform @@ -153182,7 +153367,7 @@ entities: pos: -37.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4669 components: - type: Transform @@ -153190,7 +153375,7 @@ entities: pos: -27.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4759 components: - type: Transform @@ -153198,7 +153383,7 @@ entities: pos: -23.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4760 components: - type: Transform @@ -153206,7 +153391,7 @@ entities: pos: -23.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5525 components: - type: Transform @@ -153214,14 +153399,14 @@ entities: pos: -4.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5533 components: - type: Transform pos: -31.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5644 components: - type: Transform @@ -153229,7 +153414,7 @@ entities: pos: -28.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5660 components: - type: Transform @@ -153237,7 +153422,7 @@ entities: pos: -15.5,50.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5669 components: - type: Transform @@ -153245,7 +153430,7 @@ entities: pos: -7.5,51.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5721 components: - type: Transform @@ -153253,7 +153438,7 @@ entities: pos: -21.5,67.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5722 components: - type: Transform @@ -153261,21 +153446,21 @@ entities: pos: -8.5,61.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5753 components: - type: Transform pos: -7.5,71.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6224 components: - type: Transform pos: -11.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6229 components: - type: Transform @@ -153283,7 +153468,7 @@ entities: pos: -30.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6905 components: - type: Transform @@ -153291,7 +153476,7 @@ entities: pos: 5.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6908 components: - type: Transform @@ -153299,7 +153484,7 @@ entities: pos: -0.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8137 components: - type: Transform @@ -153307,7 +153492,7 @@ entities: pos: 49.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8141 components: - type: Transform @@ -153315,7 +153500,7 @@ entities: pos: 49.5,17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8166 components: - type: Transform @@ -153323,7 +153508,7 @@ entities: pos: 47.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8263 components: - type: Transform @@ -153331,14 +153516,14 @@ entities: pos: 15.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8416 components: - type: Transform pos: 51.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8453 components: - type: Transform @@ -153346,7 +153531,7 @@ entities: pos: 33.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8475 components: - type: Transform @@ -153354,7 +153539,7 @@ entities: pos: 28.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8476 components: - type: Transform @@ -153362,7 +153547,7 @@ entities: pos: 31.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8477 components: - type: Transform @@ -153370,7 +153555,7 @@ entities: pos: 34.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8478 components: - type: Transform @@ -153378,14 +153563,14 @@ entities: pos: 38.5,1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8533 components: - type: Transform pos: 35.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8541 components: - type: Transform @@ -153393,14 +153578,14 @@ entities: pos: 29.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8551 components: - type: Transform pos: 31.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8553 components: - type: Transform @@ -153408,14 +153593,14 @@ entities: pos: 24.5,24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8565 components: - type: Transform pos: 18.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8567 components: - type: Transform @@ -153423,7 +153608,7 @@ entities: pos: 30.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8571 components: - type: Transform @@ -153431,7 +153616,7 @@ entities: pos: 21.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8594 components: - type: Transform @@ -153439,7 +153624,7 @@ entities: pos: 20.5,10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8596 components: - type: Transform @@ -153447,14 +153632,14 @@ entities: pos: 24.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8598 components: - type: Transform pos: 32.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8600 components: - type: Transform @@ -153462,7 +153647,7 @@ entities: pos: 24.5,16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8613 components: - type: Transform @@ -153470,7 +153655,7 @@ entities: pos: 15.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9329 components: - type: Transform @@ -153478,7 +153663,7 @@ entities: pos: 10.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9330 components: - type: Transform @@ -153486,7 +153671,7 @@ entities: pos: 13.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9331 components: - type: Transform @@ -153494,14 +153679,14 @@ entities: pos: 11.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9332 components: - type: Transform pos: 13.5,4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9949 components: - type: Transform @@ -153509,7 +153694,7 @@ entities: pos: -0.5,-9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9951 components: - type: Transform @@ -153517,14 +153702,14 @@ entities: pos: 3.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10081 components: - type: Transform pos: 1.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10082 components: - type: Transform @@ -153532,7 +153717,7 @@ entities: pos: -4.5,-24.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11040 components: - type: Transform @@ -153540,14 +153725,14 @@ entities: pos: 7.5,-36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11046 components: - type: Transform pos: -1.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11048 components: - type: Transform @@ -153555,14 +153740,14 @@ entities: pos: 11.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11096 components: - type: Transform pos: 12.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11097 components: - type: Transform @@ -153570,7 +153755,7 @@ entities: pos: 12.5,-15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11108 components: - type: Transform @@ -153578,14 +153763,14 @@ entities: pos: 17.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11126 components: - type: Transform pos: 19.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11127 components: - type: Transform @@ -153593,7 +153778,7 @@ entities: pos: 15.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11130 components: - type: Transform @@ -153601,7 +153786,7 @@ entities: pos: 11.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11155 components: - type: Transform @@ -153609,7 +153794,7 @@ entities: pos: 5.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12763 components: - type: Transform @@ -153617,7 +153802,7 @@ entities: pos: -33.5,-59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12764 components: - type: Transform @@ -153625,7 +153810,7 @@ entities: pos: -33.5,-46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12765 components: - type: Transform @@ -153633,7 +153818,7 @@ entities: pos: -39.5,-55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13103 components: - type: Transform @@ -153641,7 +153826,7 @@ entities: pos: -34.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13107 components: - type: Transform @@ -153649,7 +153834,7 @@ entities: pos: -39.5,-41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13109 components: - type: Transform @@ -153657,21 +153842,21 @@ entities: pos: -39.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13543 components: - type: Transform pos: -33.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13559 components: - type: Transform pos: -33.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13562 components: - type: Transform @@ -153679,7 +153864,7 @@ entities: pos: -22.5,-18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13563 components: - type: Transform @@ -153687,7 +153872,7 @@ entities: pos: -22.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13565 components: - type: Transform @@ -153695,21 +153880,21 @@ entities: pos: -17.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14283 components: - type: Transform pos: 48.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14299 components: - type: Transform pos: 56.5,-31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14314 components: - type: Transform @@ -153717,7 +153902,7 @@ entities: pos: 43.5,-22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14315 components: - type: Transform @@ -153725,7 +153910,7 @@ entities: pos: 44.5,-26.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14317 components: - type: Transform @@ -153733,7 +153918,7 @@ entities: pos: 46.5,-23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14329 components: - type: Transform @@ -153741,7 +153926,7 @@ entities: pos: 35.5,-29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14331 components: - type: Transform @@ -153749,14 +153934,14 @@ entities: pos: 38.5,-30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14343 components: - type: Transform pos: 44.5,-34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14345 components: - type: Transform @@ -153764,7 +153949,7 @@ entities: pos: 44.5,-38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14361 components: - type: Transform @@ -153772,7 +153957,7 @@ entities: pos: 35.5,-35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14362 components: - type: Transform @@ -153780,7 +153965,7 @@ entities: pos: 34.5,-39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14453 components: - type: Transform @@ -153788,14 +153973,14 @@ entities: pos: 53.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14487 components: - type: Transform pos: 30.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14488 components: - type: Transform @@ -153803,7 +153988,7 @@ entities: pos: 32.5,-21.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14498 components: - type: Transform @@ -153811,21 +153996,21 @@ entities: pos: 52.5,-42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14523 components: - type: Transform pos: 42.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14525 components: - type: Transform pos: 32.5,-16.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14527 components: - type: Transform @@ -153833,7 +154018,7 @@ entities: pos: 24.5,-17.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14544 components: - type: Transform @@ -153841,7 +154026,7 @@ entities: pos: 51.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14564 components: - type: Transform @@ -153849,7 +154034,7 @@ entities: pos: 42.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14565 components: - type: Transform @@ -153857,28 +154042,28 @@ entities: pos: 55.5,-7.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14585 components: - type: Transform pos: 15.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14591 components: - type: Transform pos: 35.5,-1.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16674 components: - type: Transform pos: 50.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16675 components: - type: Transform @@ -153886,7 +154071,7 @@ entities: pos: 49.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16753 components: - type: Transform @@ -153894,7 +154079,7 @@ entities: pos: 74.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17290 components: - type: Transform @@ -153902,7 +154087,7 @@ entities: pos: -4.5,64.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17360 components: - type: Transform @@ -153910,7 +154095,7 @@ entities: pos: 27.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17389 components: - type: Transform @@ -153918,14 +154103,14 @@ entities: pos: 13.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17390 components: - type: Transform pos: 3.5,37.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17391 components: - type: Transform @@ -153933,7 +154118,7 @@ entities: pos: 5.5,43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17394 components: - type: Transform @@ -153941,7 +154126,7 @@ entities: pos: 18.5,52.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17395 components: - type: Transform @@ -153949,7 +154134,7 @@ entities: pos: 14.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17396 components: - type: Transform @@ -153957,7 +154142,7 @@ entities: pos: 23.5,53.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17397 components: - type: Transform @@ -153965,7 +154150,7 @@ entities: pos: 14.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17398 components: - type: Transform @@ -153973,7 +154158,7 @@ entities: pos: 23.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17399 components: - type: Transform @@ -153981,7 +154166,7 @@ entities: pos: 14.5,47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17405 components: - type: Transform @@ -153989,7 +154174,7 @@ entities: pos: 4.5,48.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17448 components: - type: Transform @@ -153997,28 +154182,28 @@ entities: pos: 34.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17449 components: - type: Transform pos: 33.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17450 components: - type: Transform pos: 36.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17458 components: - type: Transform pos: 29.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17459 components: - type: Transform @@ -154026,7 +154211,7 @@ entities: pos: 29.5,42.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17461 components: - type: Transform @@ -154034,7 +154219,7 @@ entities: pos: 20.5,44.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17467 components: - type: Transform @@ -154042,7 +154227,7 @@ entities: pos: 18.5,41.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17474 components: - type: Transform @@ -154050,7 +154235,7 @@ entities: pos: 10.5,58.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17499 components: - type: Transform @@ -154058,7 +154243,7 @@ entities: pos: 3.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17500 components: - type: Transform @@ -154066,14 +154251,14 @@ entities: pos: 9.5,55.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17544 components: - type: Transform pos: 11.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17608 components: - type: Transform @@ -154081,7 +154266,7 @@ entities: pos: 24.5,38.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17720 components: - type: Transform @@ -154089,7 +154274,7 @@ entities: pos: 18.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17735 components: - type: Transform @@ -154097,7 +154282,7 @@ entities: pos: 21.5,62.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17736 components: - type: Transform @@ -154105,14 +154290,14 @@ entities: pos: 23.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17745 components: - type: Transform pos: 6.5,66.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17748 components: - type: Transform @@ -154120,14 +154305,14 @@ entities: pos: -0.5,60.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17753 components: - type: Transform pos: 13.5,66.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19529 components: - type: Transform @@ -154135,7 +154320,7 @@ entities: pos: 25.5,-56.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19530 components: - type: Transform @@ -154143,7 +154328,7 @@ entities: pos: 29.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19531 components: - type: Transform @@ -154151,7 +154336,7 @@ entities: pos: 30.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19533 components: - type: Transform @@ -154159,7 +154344,7 @@ entities: pos: 36.5,-43.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19545 components: - type: Transform @@ -154167,7 +154352,7 @@ entities: pos: 39.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19855 components: - type: Transform @@ -154175,7 +154360,7 @@ entities: pos: 54.5,-47.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22670 components: - type: Transform @@ -154183,21 +154368,21 @@ entities: pos: 68.5,-11.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22684 components: - type: Transform pos: 61.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22686 components: - type: Transform pos: 60.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23661 components: - type: Transform @@ -154205,7 +154390,7 @@ entities: pos: 72.5,-32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23802 components: - type: Transform @@ -154213,7 +154398,7 @@ entities: pos: 75.5,-25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24027 components: - type: Transform @@ -154221,7 +154406,7 @@ entities: pos: 64.5,-20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24892 components: - type: Transform @@ -154229,14 +154414,14 @@ entities: pos: 76.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25342 components: - type: Transform pos: 72.5,-10.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25350 components: - type: Transform @@ -154244,7 +154429,7 @@ entities: pos: 82.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25361 components: - type: Transform @@ -154252,7 +154437,7 @@ entities: pos: 78.5,-5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25380 components: - type: Transform @@ -154260,21 +154445,21 @@ entities: pos: 72.5,-4.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25384 components: - type: Transform pos: 77.5,-0.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25404 components: - type: Transform pos: 86.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25415 components: - type: Transform @@ -154282,7 +154467,7 @@ entities: pos: 88.5,-19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25427 components: - type: Transform @@ -154290,7 +154475,7 @@ entities: pos: 94.5,-2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25456 components: - type: Transform @@ -154298,7 +154483,7 @@ entities: pos: 98.5,-12.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25459 components: - type: Transform @@ -154306,15 +154491,16 @@ entities: pos: 91.5,-3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25498 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-11.5 parent: 13329 + - type: DeviceNetwork - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25505 components: - type: Transform @@ -154322,21 +154508,21 @@ entities: pos: 76.5,-13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25876 components: - type: Transform pos: 91.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25877 components: - type: Transform pos: 93.5,2.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25897 components: - type: Transform @@ -154367,14 +154553,14 @@ entities: pos: 96.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27677 components: - type: Transform pos: 88.5,36.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27679 components: - type: Transform @@ -154382,21 +154568,21 @@ entities: pos: 88.5,30.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28060 components: - type: Transform pos: 95.5,5.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28190 components: - type: Transform pos: 66.5,18.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28197 components: - type: Transform @@ -154404,7 +154590,7 @@ entities: pos: 59.5,6.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28198 components: - type: Transform @@ -154412,14 +154598,14 @@ entities: pos: 55.5,3.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28266 components: - type: Transform pos: 92.5,20.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28267 components: - type: Transform @@ -154427,7 +154613,7 @@ entities: pos: 93.5,13.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28269 components: - type: Transform @@ -154435,7 +154621,7 @@ entities: pos: 55.5,15.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28327 components: - type: Transform @@ -154443,7 +154629,7 @@ entities: pos: 86.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28328 components: - type: Transform @@ -154451,7 +154637,7 @@ entities: pos: 86.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28329 components: - type: Transform @@ -154459,7 +154645,7 @@ entities: pos: 86.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28330 components: - type: Transform @@ -154467,7 +154653,7 @@ entities: pos: 78.5,19.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28331 components: - type: Transform @@ -154475,7 +154661,7 @@ entities: pos: 78.5,22.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28332 components: - type: Transform @@ -154483,14 +154669,14 @@ entities: pos: 78.5,25.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28333 components: - type: Transform pos: 82.5,23.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28786 components: - type: Transform @@ -154498,7 +154684,7 @@ entities: pos: 82.5,32.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28793 components: - type: Transform @@ -154506,14 +154692,14 @@ entities: pos: 77.5,35.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28795 components: - type: Transform pos: 87.5,14.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28843 components: - type: Transform @@ -154521,7 +154707,7 @@ entities: pos: 55.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28875 components: - type: Transform @@ -154529,7 +154715,7 @@ entities: pos: 59.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28876 components: - type: Transform @@ -154537,14 +154723,14 @@ entities: pos: 64.5,31.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28877 components: - type: Transform pos: 69.5,34.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28878 components: - type: Transform @@ -154552,7 +154738,7 @@ entities: pos: 69.5,29.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28889 components: - type: Transform @@ -154560,7 +154746,7 @@ entities: pos: 28.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28890 components: - type: Transform @@ -154568,7 +154754,7 @@ entities: pos: 44.5,33.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29280 components: - type: Transform @@ -154576,14 +154762,14 @@ entities: pos: 65.5,9.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29746 components: - type: Transform pos: 98.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29748 components: - type: Transform @@ -154591,14 +154777,14 @@ entities: pos: 74.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29750 components: - type: Transform pos: 59.5,39.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29752 components: - type: Transform @@ -154609,7 +154795,7 @@ entities: deviceLists: - 35620 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29838 components: - type: Transform @@ -154620,7 +154806,7 @@ entities: deviceLists: - 35619 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29839 components: - type: Transform @@ -154630,7 +154816,7 @@ entities: deviceLists: - 35621 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29840 components: - type: Transform @@ -154641,7 +154827,7 @@ entities: deviceLists: - 35618 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29845 components: - type: Transform @@ -154651,7 +154837,7 @@ entities: deviceLists: - 35623 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29846 components: - type: Transform @@ -154662,7 +154848,7 @@ entities: deviceLists: - 35622 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29863 components: - type: Transform @@ -154672,7 +154858,7 @@ entities: deviceLists: - 35624 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29864 components: - type: Transform @@ -154682,14 +154868,14 @@ entities: deviceLists: - 35624 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30315 components: - type: Transform pos: 80.5,49.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 30316 components: - type: Transform @@ -154697,14 +154883,14 @@ entities: pos: 81.5,45.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31132 components: - type: Transform pos: 80.5,57.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31135 components: - type: Transform @@ -154712,14 +154898,14 @@ entities: pos: 72.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31165 components: - type: Transform pos: 65.5,59.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 31166 components: - type: Transform @@ -154727,7 +154913,7 @@ entities: pos: 58.5,46.5 parent: 13329 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - uid: 23693 @@ -158288,11 +158474,6 @@ entities: - type: Transform pos: 72.5,-51.5 parent: 13329 - - uid: 20233 - components: - - type: Transform - pos: 88.5,-0.5 - parent: 13329 - uid: 20368 components: - type: Transform @@ -158879,21 +159060,18 @@ entities: - type: Transform pos: 94.5,-74.5 parent: 13329 - - uid: 22718 - components: - - type: Transform - pos: 88.5,1.5 - parent: 13329 - - uid: 22719 - components: - - type: Transform - pos: 88.5,0.5 - parent: 13329 - - uid: 22726 + - uid: 22729 components: - type: Transform + rot: 3.141592653589793 rad pos: 88.5,2.5 parent: 13329 + - uid: 22731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-0.5 + parent: 13329 - uid: 23367 components: - type: Transform @@ -167611,65 +167789,6 @@ entities: parent: 13329 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 22716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,2.5 - parent: 13329 - - uid: 22720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-0.5 - parent: 13329 - - uid: 22721 - components: - - type: Transform - pos: 88.5,-0.5 - parent: 13329 - - uid: 22722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,2.5 - parent: 13329 - - uid: 22723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-0.5 - parent: 13329 - - uid: 22725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,0.5 - parent: 13329 - - uid: 22729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,1.5 - parent: 13329 - - uid: 22736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,2.5 - parent: 13329 - - uid: 25544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,0.5 - parent: 13329 - - uid: 25545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,1.5 - parent: 13329 - uid: 26745 components: - type: Transform @@ -167895,22 +168014,17 @@ entities: - type: Transform pos: 113.5,43.5 parent: 13329 + - uid: 35826 + components: + - type: Transform + pos: 86.5,2.5 + parent: 13329 - proto: PortableGeneratorSuperPacman entities: - - uid: 11859 + - uid: 35825 components: - type: Transform - pos: 92.5,1.5 - parent: 13329 - - uid: 11862 - components: - - type: Transform - pos: 94.5,1.5 - parent: 13329 - - uid: 25874 - components: - - type: Transform - pos: 90.5,1.5 + pos: 86.5,-0.5 parent: 13329 - proto: PortableScrubber entities: @@ -174894,6 +175008,11 @@ entities: - type: Transform pos: 99.5,54.5 parent: 13329 + - uid: 25713 + components: + - type: Transform + pos: 91.5,8.5 + parent: 13329 - uid: 26106 components: - type: Transform @@ -174999,11 +175118,6 @@ entities: - type: Transform pos: 78.5,3.5 parent: 13329 - - uid: 27878 - components: - - type: Transform - pos: 84.5,5.5 - parent: 13329 - uid: 28147 components: - type: Transform @@ -177390,6 +177504,11 @@ entities: - type: Transform pos: -12.5,2.5 parent: 13329 + - uid: 25988 + components: + - type: Transform + pos: 86.5,4.5 + parent: 13329 - uid: 29615 components: - type: Transform @@ -178297,6 +178416,18 @@ entities: rot: 1.5707963267948966 rad pos: 108.5,-35.5 parent: 13329 + - uid: 22716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,2.5 + parent: 13329 + - uid: 22721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-0.5 + parent: 13329 - uid: 22806 components: - type: Transform @@ -186087,6 +186218,38 @@ entities: - type: Transform pos: 32.5,42.5 parent: 13329 +- proto: SMESAdvanced + entities: + - uid: 22714 + components: + - type: Transform + pos: 93.5,0.5 + parent: 13329 + - uid: 22717 + components: + - type: Transform + pos: 92.5,2.5 + parent: 13329 + - uid: 22718 + components: + - type: Transform + pos: 91.5,2.5 + parent: 13329 + - uid: 22722 + components: + - type: Transform + pos: 93.5,2.5 + parent: 13329 + - uid: 23301 + components: + - type: Transform + pos: 92.5,0.5 + parent: 13329 + - uid: 35828 + components: + - type: Transform + pos: 91.5,0.5 + parent: 13329 - proto: SMESBasic entities: - uid: 3711 @@ -186096,13 +186259,6 @@ entities: - type: Transform pos: -45.5,2.5 parent: 13329 - - uid: 20332 - components: - - type: MetaData - name: SMES Bank 2 - - type: Transform - pos: 87.5,0.5 - parent: 13329 - uid: 22190 components: - type: MetaData @@ -186117,27 +186273,6 @@ entities: - type: Transform pos: 114.5,32.5 parent: 13329 - - uid: 22713 - components: - - type: MetaData - name: SMES Bank 1 - - type: Transform - pos: 87.5,-0.5 - parent: 13329 - - uid: 22727 - components: - - type: MetaData - name: SMES Bank 4 - - type: Transform - pos: 87.5,2.5 - parent: 13329 - - uid: 22735 - components: - - type: MetaData - name: SMES Bank 3 - - type: Transform - pos: 87.5,1.5 - parent: 13329 - uid: 23129 components: - type: MetaData @@ -196701,11 +196836,6 @@ entities: - type: Transform pos: 81.5,-10.5 parent: 13329 - - uid: 26239 - components: - - type: Transform - pos: 84.5,-12.5 - parent: 13329 - uid: 26240 components: - type: Transform From 6c925d2c829b5f35d12409fa836679a39b521e26 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:26:19 +0100 Subject: [PATCH 133/263] Make safes craftable (#32694) * Made the Armory Gun Safe craftable with 10 steel, 10 plasteel, and 5 LV cables. * Changed gun safe price to 335, to match the cost of its material components. Changed gun safe to start with no accesses when constructed. * adress the review * yeah * wrah * test fail is not real --------- Co-authored-by: Ty Ashley <42426760+TyAshley@users.noreply.github.com> --- .../Catalog/Fills/Lockers/security.yml | 16 ++++---- .../Storage/Closets/Lockers/lockers.yml | 14 +++++++ .../Crafting/Graphs/storage/tallbox.yml | 41 +++++++++++++++++++ .../Prototypes/Recipes/Crafting/tallbox.yml | 11 +++++ 4 files changed, 74 insertions(+), 8 deletions(-) diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 0c4f04fa12..4e5251c27e 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -154,7 +154,7 @@ prob: 0.5 - type: entity - parent: [GunSafe, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseRestrictedContraband] id: GunSafeDisabler name: disabler safe components: @@ -164,7 +164,7 @@ amount: 5 - type: entity - parent: [GunSafe, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseRestrictedContraband] id: GunSafePistolMk58 name: mk58 safe components: @@ -176,7 +176,7 @@ amount: 8 - type: entity - parent: [GunSafe, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseRestrictedContraband] id: GunSafeRifleLecter name: lecter safe components: @@ -188,7 +188,7 @@ amount: 4 - type: entity - parent: [GunSafe, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseRestrictedContraband] id: GunSafeSubMachineGunDrozd name: drozd safe components: @@ -200,7 +200,7 @@ amount: 4 - type: entity - parent: [GunSafe, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseRestrictedContraband] id: GunSafeShotgunEnforcer name: enforcer safe components: @@ -212,7 +212,7 @@ amount: 4 - type: entity - parent: [GunSafe, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseRestrictedContraband] id: GunSafeShotgunKammerer name: kammerer safe components: @@ -226,7 +226,7 @@ - type: entity id: GunSafeSubMachineGunWt550 suffix: Wt550 - parent: [GunSafe, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseRestrictedContraband] name: wt550 safe components: - type: StorageFill @@ -237,7 +237,7 @@ amount: 4 - type: entity - parent: GunSafe + parent: GunSafeBaseSecure id: GunSafeLaserCarbine name: laser safe components: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 244ccf2e30..0ab9e03fd1 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -364,6 +364,20 @@ stateBaseClosed: shotguncase stateDoorOpen: shotguncase_open stateDoorClosed: shotguncase_door + - type: AccessReader + - type: Construction + graph: GunSafe + node: done + containers: + - entity_storage + - type: StaticPrice + price: 660 + +- type: entity + id: GunSafeBaseSecure + parent: GunSafe + suffix: Armory, Locked + components: - type: AccessReader access: [["Armory"]] diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml index 17696eaaff..c465d74db7 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml @@ -104,6 +104,47 @@ - !type:EmptyAllContainers - !type:DeleteEntity +- type: constructionGraph + id: GunSafe + start: start + graph: + - node: start + edges: + - to: done + steps: + - material: Steel + amount: 10 + - material: Cable + amount: 5 + doAfter: 5 + - material: Plasteel + amount: 10 + doAfter: 10 + - node: done + entity: GunSafe + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + conditions: + - !type:StorageWelded + welded: false + - !type:Locked + locked: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 10 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetPlasteel1 + amount: 10 + - !type:EmptyAllContainers + - !type:DeleteEntity + - type: constructionGraph id: ClosetWall start: start diff --git a/Resources/Prototypes/Recipes/Crafting/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/tallbox.yml index c90142de44..7de80870af 100644 --- a/Resources/Prototypes/Recipes/Crafting/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/tallbox.yml @@ -31,6 +31,17 @@ icon: { sprite: Structures/Storage/closet.rsi, state: freezer_icon } objectType: Structure +- type: construction + id: GunSafe + name: gun safe + graph: GunSafe + startNode: start + targetNode: done + category: construction-category-storage + description: A durable gun safe that can be locked. + icon: { sprite: Structures/Storage/closet.rsi, state: shotguncase } + objectType: Structure + - type: construction id: ClosetWall name: wall closet From 94594debf39e33cb522a78ce1a503dc8c549b9b3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Dec 2024 11:27:28 +0000 Subject: [PATCH 134/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b498fb8a99..63908f158f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Nukie plushie is now not a contraband item. - type: Fix - id: 7227 - time: '2024-08-27T16:49:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31516 - author: Winkarst-cpu changes: - message: Now AKMS is restricted to the security department. @@ -3929,3 +3922,10 @@ id: 7726 time: '2024-12-17T23:58:54.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33757 +- author: Allen, lzk228 + changes: + - message: Made Gun Safes a craftable object (10 steel, 5 lv cable, 10 plasteel) + type: Add + id: 7727 + time: '2024-12-18T11:26:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32694 From 87f39af1cfa25c067e59b5e4eed647aa4ece843f Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:38:00 +0100 Subject: [PATCH 135/263] Holopad prototypes for mapping (#33931) * Init * fix * Atmosn't * ID fixes * locale --- Resources/Locale/en-US/holopad/holopad.ftl | 107 ++- .../Entities/Structures/Machines/holopad.yml | 680 +++++++++++++++++- 2 files changed, 781 insertions(+), 6 deletions(-) diff --git a/Resources/Locale/en-US/holopad/holopad.ftl b/Resources/Locale/en-US/holopad/holopad.ftl index 01a1e13dcb..214919d3dd 100644 --- a/Resources/Locale/en-US/holopad/holopad.ftl +++ b/Resources/Locale/en-US/holopad/holopad.ftl @@ -37,4 +37,109 @@ holopad-window-flavor-right = v3.0.9 holopad-hologram-name = hologram of {THE($name)} # Holopad actions -activate-holopad-projector-verb = Activate holopad projector \ No newline at end of file +activate-holopad-projector-verb = Activate holopad projector + +# Mapping prototypes +# General +holopad-general-tools = General - Tools +holopad-general-cryosleep = General - Cryosleep +holopad-general-theater = General - Theater +holopad-general-disposals = General - Disposals +holopad-general-eva = General - EVA Storage +holopad-general-lounge = General - Lounge +holopad-general-arcade = General - Arcade +holopad-general-evac = General - Evac +holopad-general-arrivals = General - Arrivals + +# Command +holopad-command-bridge = Command - Bridge +holopad-command-vault = Command - Vault +holopad-command-bridge-hallway = Command - Bridge Hallway +holopad-command-meeting-room = Command - Meeting Room +holopad-command-lounge = Command - Lounge +holopad-command-captain = Command - Captain +holopad-command-hop = Command - HoP +holopad-command-cmo = Command - CMO +holopad-command-qm = Command - QM +holopad-command-ce = Command - CE +holopad-command-rd = Command - RD +holopad-command-hos = Command - HoS + +# Science +holopad-science-anomaly = Science - Anomaly +holopad-science-artifact = Science - Artifact +holopad-science-robotics = Science - Robotics +holopad-science-rnd = Science - R&D +holopad-science-front = Science - Front +holopad-science-breakroom = Science - Breakroom + +# Medical +holopad-medical-medbay = Medical - Medbay +holopad-medical-chemistry = Medical - Chemistry +holopad-medical-cryopods = Medical - Cryopods +holopad-medical-morgue = Medical - Morgue +holopad-medical-surgery = Medical - Surgery +holopad-medical-paramedic = Medical - Paramedic +holopad-medical-virology = Medical - Virology +holopad-medical-front = Medical - Front +holopad-medical-breakroom = Medical - Breakroom + +# Cargo +holopad-cargo-front = Cargo - Front +holopad-cargo-bay = Cargo - Cargo Bay +holopad-cargo-salvage-bay = Cargo - Salvage Bay +holopad-cargo-breakroom = Cargo - Breakroom +holopad-cargo-ats = Cargo - ATS +holopad-cargo-shuttle = Cargo - Shuttle + +# Engineering +holopad-engineering-atmos-front = Atmos - Front +holopad-engineering-atmos-main = Atmos - Main +holopad-engineering-atmos-teg = Atmos - TEG +holopad-engineering-storage = Engineering - Storage +holopad-engineering-breakroom = Engineering - Breakroom +holopad-engineering-front = Engineering - Front +holopad-engineering-telecoms = Engineering - Telecoms +holopad-engineering-tech-vault = Engineering - Tech Vault + +# Security +holopad-security-front = Security - Front +holopad-security-brig = Security - Brig +holopad-security-warden = Security - Warden +holopad-security-interrogation = Security - Interrogation +holopad-security-breakroom = Security - Breakroom +holopad-security-detective = Security - Detective +holopad-security-perma = Security - Perma +holopad-security-courtroom = Security - Courtroom +holopad-security-lawyer = Security - Lawyer +holopad-security-armory = Security - Armory + +# Service +holopad-service-janitor = Service - Janitor +holopad-service-bar = Service - Bar +holopad-service-kitchen = Service - Kitchen +holopad-service-botany = Service - Botany +holopad-service-chapel = Service - Chapel +holopad-service-library = Service - Library +holopad-service-newsroom = Service - Newsroom +holopad-service-zookeeper = Service - Zookeeper +holopad-service-boxer = Service - Boxer +holopad-service-clown = Service - Clown +holopad-service-musician = Service - Musician +holopad-service-mime = Service - Mime +holopad-service-clown-mime = Service - Clown/Mime + +# AI +holopad-ai-core = AI - Core +holopad-ai-main = AI - Main +holopad-ai-upload = AI - Upload +holopad-ai-backup-power = AI - Backup Power +holopad-ai-entrance = AI - Entrance +holopad-ai-chute = AI - Chute + +# Long Range +holopad-station-bridge = Station - Bridge +holopad-station-cargo-bay = Station - Cargo Bay + +# CentComm +holopad-centcomm-evac = CentComm - Evacuation Shuttle \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index f59120fd4b..dc0106c7e9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -90,7 +90,7 @@ - type: WiresVisuals - type: Wires boardName: wires-board-name-holopad - layoutId: Holopad + layoutId: Holopad - type: Destructible thresholds: - trigger: @@ -104,7 +104,7 @@ node: machineFrame - !type:DoActsBehavior acts: ["Destruction"] - + - type: entity name: long-range holopad description: "A floor-mounted device for projecting holographic images to other devices that are far away." @@ -114,7 +114,7 @@ components: - type: Telephone transmissionRange: Long - + - type: entity name: quantum entangling holopad description: "An experimental floor-mounted device for projecting holographic images at extreme distances." @@ -131,7 +131,7 @@ - type: entity id: HolopadHologram categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + suffix: DO NOT MAP components: - type: Transform anchored: true @@ -155,4 +155,674 @@ scrollRate: 0.125 - type: Tag tags: - - HideContextMenu \ No newline at end of file + - HideContextMenu + +## Mapping prototypes +# General +- type: entity + parent: Holopad + id: HolopadGeneralTools + suffix: Tools + components: + - type: Label + currentLabel: holopad-general-tools + +- type: entity + parent: Holopad + id: HolopadGeneralCryosleep + suffix: Cryosleep + components: + - type: Label + currentLabel: holopad-general-cryosleep + +- type: entity + parent: Holopad + id: HolopadGeneralTheater + suffix: Theater + components: + - type: Label + currentLabel: holopad-general-theater + +- type: entity + parent: Holopad + id: HolopadGeneralDisposals + suffix: Disposals + components: + - type: Label + currentLabel: holopad-general-disposals + +- type: entity + parent: Holopad + id: HolopadGeneralEVAStorage + suffix: EVA Storage + components: + - type: Label + currentLabel: holopad-general-eva + +- type: entity + parent: Holopad + id: HolopadGeneralLounge + suffix: Lounge + components: + - type: Label + currentLabel: holopad-general-lounge + +- type: entity + parent: Holopad + id: HolopadGeneralArcade + suffix: Arcade + components: + - type: Label + currentLabel: holopad-general-arcade + +- type: entity + parent: Holopad + id: HolopadGeneralEvac + suffix: Evac + components: + - type: Label + currentLabel: holopad-general-evac + +- type: entity + parent: Holopad + id: HolopadGeneralArrivals + suffix: Arrivals + components: + - type: Label + currentLabel: holopad-general-arrivals + +# Command +- type: entity + parent: Holopad + id: HolopadCommandBridge + suffix: Bridge + components: + - type: Label + currentLabel: holopad-command-bridge + +- type: entity + parent: Holopad + id: HolopadCommandVault + suffix: Vault + components: + - type: Label + currentLabel: holopad-command-vault + +- type: entity + parent: Holopad + id: HolopadCommandBridgeHallway + suffix: Bridge Hallway + components: + - type: Label + currentLabel: holopad-command-bridge-hallway + +- type: entity + parent: Holopad + id: HolopadCommandMeetingRoom + suffix: Command Meeting + components: + - type: Label + currentLabel: holopad-command-meeting-room + +- type: entity + parent: Holopad + id: HolopadCommandLounge + suffix: Command Lounge + components: + - type: Label + currentLabel: holopad-command-lounge + +- type: entity + parent: Holopad + id: HolopadCommandCaptain + suffix: Captain + components: + - type: Label + currentLabel: holopad-command-captain + +- type: entity + parent: Holopad + id: HolopadCommandHop + suffix: HoP + components: + - type: Label + currentLabel: holopad-command-hop + +- type: entity + parent: Holopad + id: HolopadCommandCmo + suffix: CMO + components: + - type: Label + currentLabel: holopad-command-cmo + +- type: entity + parent: Holopad + id: HolopadCommandQm + suffix: QM + components: + - type: Label + currentLabel: holopad-command-qm + +- type: entity + parent: Holopad + id: HolopadCommandCe + suffix: CE + components: + - type: Label + currentLabel: holopad-command-ce + +- type: entity + parent: Holopad + id: HolopadCommandRd + suffix: RD + components: + - type: Label + currentLabel: holopad-command-rd + +- type: entity + parent: Holopad + id: HolopadCommandHos + suffix: HoS + components: + - type: Label + currentLabel: holopad-command-hos + +# Science +- type: entity + parent: Holopad + id: HolopadScienceAnomaly + suffix: Anomaly + components: + - type: Label + currentLabel: holopad-science-anomaly + +- type: entity + parent: Holopad + id: HolopadScienceArtifact + suffix: Artifact + components: + - type: Label + currentLabel: holopad-science-artifact + +- type: entity + parent: Holopad + id: HolopadScienceRobotics + suffix: Robotics + components: + - type: Label + currentLabel: holopad-science-robotics + +- type: entity + parent: Holopad + id: HolopadScienceRnd + suffix: R&D + components: + - type: Label + currentLabel: holopad-science-rnd + +- type: entity + parent: Holopad + id: HolopadScienceFront + suffix: Sci Front + components: + - type: Label + currentLabel: holopad-science-front + +- type: entity + parent: Holopad + id: HolopadScienceBreakroom + suffix: Sci Breakroom + components: + - type: Label + currentLabel: holopad-science-breakroom + +# Medical +- type: entity + parent: Holopad + id: HolopadMedicalMedbay + suffix: Medbay + components: + - type: Label + currentLabel: holopad-medical-medbay + +- type: entity + parent: Holopad + id: HolopadMedicalChemistry + suffix: Chemistry + components: + - type: Label + currentLabel: holopad-medical-chemistry + +- type: entity + parent: Holopad + id: HolopadMedicalCryopods + suffix: Cryopods + components: + - type: Label + currentLabel: holopad-medical-cryopods + +- type: entity + parent: Holopad + id: HolopadMedicalMorgue + suffix: Morgue + components: + - type: Label + currentLabel: holopad-medical-morgue + +- type: entity + parent: Holopad + id: HolopadMedicalSurgery + suffix: Surgery + components: + - type: Label + currentLabel: holopad-medical-surgery + +- type: entity + parent: Holopad + id: HolopadMedicalParamed + suffix: Paramedic + components: + - type: Label + currentLabel: holopad-medical-paramedic + +- type: entity + parent: Holopad + id: HolopadMedicalVirology + suffix: Virology + components: + - type: Label + currentLabel: holopad-medical-virology + +- type: entity + parent: Holopad + id: HolopadMedicalFront + suffix: Med Front + components: + - type: Label + currentLabel: holopad-medical-front + +- type: entity + parent: Holopad + id: HolopadMedicalBreakroom + suffix: Med Breakroom + components: + - type: Label + currentLabel: holopad-medical-breakroom + +# Cargo +- type: entity + parent: Holopad + id: HolopadCargoFront + suffix: Cargo Front + components: + - type: Label + currentLabel: holopad-cargo-front + +- type: entity + parent: Holopad + id: HolopadCargoBay + suffix: Cargo Bay + components: + - type: Label + currentLabel: holopad-cargo-bay + +- type: entity + parent: Holopad + id: HolopadCargoSalvageBay + suffix: Salvage Bay + components: + - type: Label + currentLabel: holopad-cargo-salvage-bay + +- type: entity + parent: Holopad + id: HolopadCargoBreakroom + suffix: Cargo Breakroom + components: + - type: Label + currentLabel: holopad-cargo-breakroom + +# Engineering +- type: entity + parent: Holopad + id: HolopadEngineeringAtmosFront + suffix: Atmos Front + components: + - type: Label + currentLabel: holopad-engineering-atmos-front + +- type: entity + parent: Holopad + id: HolopadEngineeringAtmosMain + suffix: Atmos Main + components: + - type: Label + currentLabel: holopad-engineering-atmos-main + +- type: entity + parent: Holopad + id: HolopadEngineeringAtmosTeg + suffix: TEG + components: + - type: Label + currentLabel: holopad-engineering-atmos-teg + +- type: entity + parent: Holopad + id: HolopadEngineeringStorage + suffix: Engi Storage + components: + - type: Label + currentLabel: holopad-engineering-storage + +- type: entity + parent: Holopad + id: HolopadEngineeringBreakroom + suffix: Engi Breakroom + components: + - type: Label + currentLabel: holopad-engineering-breakroom + +- type: entity + parent: Holopad + id: HolopadEngineeringFront + suffix: Engi Front + components: + - type: Label + currentLabel: holopad-engineering-front + +- type: entity + parent: Holopad + id: HolopadEngineeringTelecoms + suffix: Telecoms + components: + - type: Label + currentLabel: holopad-engineering-telecoms + +- type: entity + parent: Holopad + id: HolopadEngineeringTechVault + suffix: Tech Vault + components: + - type: Label + currentLabel: holopad-engineering-tech-vault + +# Security +- type: entity + parent: Holopad + id: HolopadSecurityFront + suffix: Sec Front + components: + - type: Label + currentLabel: holopad-security-front + +- type: entity + parent: Holopad + id: HolopadSecurityBrig + suffix: Brig + components: + - type: Label + currentLabel: holopad-security-brig + +- type: entity + parent: Holopad + id: HolopadSecurityWarden + suffix: Warden + components: + - type: Label + currentLabel: holopad-security-warden + +- type: entity + parent: Holopad + id: HolopadSecurityInterrogation + suffix: Interrogation + components: + - type: Label + currentLabel: holopad-security-interrogation + +- type: entity + parent: Holopad + id: HolopadSecurityBreakroom + suffix: Breakroom + components: + - type: Label + currentLabel: holopad-security-breakroom + +- type: entity + parent: Holopad + id: HolopadSecurityDetective + suffix: Detective + components: + - type: Label + currentLabel: holopad-security-detective + +- type: entity + parent: Holopad + id: HolopadSecurityPerma + suffix: Perma + components: + - type: Label + currentLabel: holopad-security-perma + +- type: entity + parent: Holopad + id: HolopadSecurityCourtroom + suffix: Courtroom + components: + - type: Label + currentLabel: holopad-security-courtroom + +- type: entity + parent: Holopad + id: HolopadSecurityLawyer + suffix: Lawyer + components: + - type: Label + currentLabel: holopad-security-lawyer + +- type: entity + parent: Holopad + id: HolopadSecurityArmory + suffix: Armory + components: + - type: Label + currentLabel: holopad-security-armory + +# Service +- type: entity + parent: Holopad + id: HolopadServiceJanitor + suffix: Janitor + components: + - type: Label + currentLabel: holopad-service-janitor + +- type: entity + parent: Holopad + id: HolopadServiceBar + suffix: Bar + components: + - type: Label + currentLabel: holopad-service-bar + +- type: entity + parent: Holopad + id: HolopadServiceKitchen + suffix: Kitchen + components: + - type: Label + currentLabel: holopad-service-kitchen + +- type: entity + parent: Holopad + id: HolopadServiceBotany + suffix: Botany + components: + - type: Label + currentLabel: holopad-service-botany + +- type: entity + parent: Holopad + id: HolopadServiceChapel + suffix: Chapel + components: + - type: Label + currentLabel: holopad-service-chapel + +- type: entity + parent: Holopad + id: HolopadServiceLibrary + suffix: Library + components: + - type: Label + currentLabel: holopad-service-library + +- type: entity + parent: Holopad + id: HolopadServiceNewsroom + suffix: Newsroom + components: + - type: Label + currentLabel: holopad-service-newsroom + +- type: entity + parent: Holopad + id: HolopadServiceZookeeper + suffix: Zookeeper + components: + - type: Label + currentLabel: holopad-service-zookeeper + +- type: entity + parent: Holopad + id: HolopadServiceBoxer + suffix: Boxer + components: + - type: Label + currentLabel: holopad-service-boxer + +- type: entity + parent: Holopad + id: HolopadServiceClown + suffix: Clown + components: + - type: Label + currentLabel: holopad-service-clown + +- type: entity + parent: Holopad + id: HolopadServiceMusician + suffix: Musician + components: + - type: Label + currentLabel: holopad-service-musician + +- type: entity + parent: Holopad + id: HolopadServiceMime + suffix: Mime + components: + - type: Label + currentLabel: holopad-service-mime + +# AI +- type: entity + parent: Holopad + id: HolopadAiCore + suffix: AI Core + components: + - type: Label + currentLabel: holopad-ai-core + +- type: entity + parent: Holopad + id: HolopadAiMain + suffix: AI Main + components: + - type: Label + currentLabel: holopad-ai-main + +- type: entity + parent: Holopad + id: HolopadAiUpload + suffix: AI Upload + components: + - type: Label + currentLabel: holopad-ai-upload + +- type: entity + parent: Holopad + id: HolopadAiBackupPower + suffix: AI Backup Power + components: + - type: Label + currentLabel: holopad-ai-backup-power + +- type: entity + parent: Holopad + id: HolopadAiEntrance + suffix: AI Entrance + components: + - type: Label + currentLabel: holopad-ai-entrance + +- type: entity + parent: Holopad + id: HolopadAiChute + suffix: AI Chute + components: + - type: Label + currentLabel: holopad-ai-chute + +# Long Range +- type: entity + parent: HolopadLongRange + id: HolopadCargoAts + suffix: ATS + components: + - type: Label + currentLabel: holopad-cargo-ats + +- type: entity + parent: HolopadLongRange + id: HolopadCommandBridgeLongRange + suffix: Station Bridge + components: + - type: Label + currentLabel: holopad-station-bridge + +- type: entity + parent: HolopadLongRange + id: HolopadCargoBayLongRange + suffix: Station Cargo Bay + components: + - type: Label + currentLabel: holopad-station-cargo-bay + +- type: entity + parent: HolopadLongRange + id: HolopadCargoShuttle + suffix: Cargo Shuttle + components: + - type: Label + currentLabel: holopad-cargo-shuttle + +- type: entity + parent: HolopadLongRange + id: HolopadCentCommEvacShuttle + suffix: Evac Shuttle + components: + - type: Label + currentLabel: holopad-centcomm-evac + + +# Map Specific +# For holopads that only fit specific maps. For example: Bagel has Clown, Mime and Musician merged into one. +- type: entity + parent: Holopad + id: HolopadServiceClownMime + suffix: Clown/Mime + components: + - type: Label + currentLabel: holopad-service-clown-mime From 6b99493e80440511e242733a90732f909c77e137 Mon Sep 17 00:00:00 2001 From: Centronias Date: Wed, 18 Dec 2024 05:06:02 -0800 Subject: [PATCH 136/263] Reduce network burden of the hunger system (#32986) * reduce network burden of the hunger system * explicit start + last updated * remove auto reformat changes to otherwise untouched code add clamp helper * imagine making breaking changes, documenting them, and then not thinking to check the yaml * comments * Remove unused net manager in hunger system Remove lastAuthoritativeHungerValue from prototypes --- .../Animals/Systems/EggLayerSystem.cs | 2 +- .../EffectConditions/TotalHunger.cs | 4 +- .../EntitySystems/FatExtractorSystem.cs | 2 +- Content.Server/RatKing/RatKingSystem.cs | 4 +- .../Nutrition/Components/HungerComponent.cs | 32 ++++++++---- .../Nutrition/EntitySystems/HungerSystem.cs | 52 +++++++++++++++---- .../Sericulture/SericultureSystem.cs | 13 +++-- .../Prototypes/Entities/Mobs/NPCs/animals.yml | 1 - .../Prototypes/Entities/Mobs/NPCs/space.yml | 1 - 9 files changed, 79 insertions(+), 32 deletions(-) diff --git a/Content.Server/Animals/Systems/EggLayerSystem.cs b/Content.Server/Animals/Systems/EggLayerSystem.cs index 3e552f1b38..accbda281b 100644 --- a/Content.Server/Animals/Systems/EggLayerSystem.cs +++ b/Content.Server/Animals/Systems/EggLayerSystem.cs @@ -84,7 +84,7 @@ public sealed class EggLayerSystem : EntitySystem // Allow infinitely laying eggs if they can't get hungry. if (TryComp(uid, out var hunger)) { - if (hunger.CurrentHunger < egglayer.HungerUsage) + if (_hunger.GetHunger(hunger) < egglayer.HungerUsage) { _popup.PopupEntity(Loc.GetString("action-popup-lay-egg-too-hungry"), uid, uid); return false; diff --git a/Content.Server/EntityEffects/EffectConditions/TotalHunger.cs b/Content.Server/EntityEffects/EffectConditions/TotalHunger.cs index 84ad4c2240..c4f69b60de 100644 --- a/Content.Server/EntityEffects/EffectConditions/TotalHunger.cs +++ b/Content.Server/EntityEffects/EffectConditions/TotalHunger.cs @@ -1,6 +1,6 @@ using Content.Shared.EntityEffects; using Content.Shared.Nutrition.Components; -using Content.Shared.FixedPoint; +using Content.Shared.Nutrition.EntitySystems; using Robust.Shared.Prototypes; namespace Content.Server.EntityEffects.EffectConditions; @@ -17,7 +17,7 @@ public sealed partial class Hunger : EntityEffectCondition { if (args.EntityManager.TryGetComponent(args.TargetEntity, out HungerComponent? hunger)) { - var total = hunger.CurrentHunger; + var total = args.EntityManager.System().GetHunger(hunger); if (total > Min && total < Max) return true; } diff --git a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs index c91a6f795b..6e9856a61d 100644 --- a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs @@ -100,7 +100,7 @@ public sealed class FatExtractorSystem : EntitySystem if (!TryComp(occupant, out var hunger)) return false; - if (hunger.CurrentHunger < component.NutritionPerSecond) + if (_hunger.GetHunger(hunger) < component.NutritionPerSecond) return false; if (hunger.CurrentThreshold < component.MinHungerThreshold && !HasComp(uid)) diff --git a/Content.Server/RatKing/RatKingSystem.cs b/Content.Server/RatKing/RatKingSystem.cs index 4b82dba335..01c213d540 100644 --- a/Content.Server/RatKing/RatKingSystem.cs +++ b/Content.Server/RatKing/RatKingSystem.cs @@ -47,7 +47,7 @@ namespace Content.Server.RatKing return; //make sure the hunger doesn't go into the negatives - if (hunger.CurrentHunger < component.HungerPerArmyUse) + if (_hunger.GetHunger(hunger) < component.HungerPerArmyUse) { _popup.PopupEntity(Loc.GetString("rat-king-too-hungry"), uid, uid); return; @@ -77,7 +77,7 @@ namespace Content.Server.RatKing return; //make sure the hunger doesn't go into the negatives - if (hunger.CurrentHunger < component.HungerPerDomainUse) + if (_hunger.GetHunger(hunger) < component.HungerPerDomainUse) { _popup.PopupEntity(Loc.GetString("rat-king-too-hungry"), uid, uid); return; diff --git a/Content.Shared/Nutrition/Components/HungerComponent.cs b/Content.Shared/Nutrition/Components/HungerComponent.cs index 79d895ddae..33abb257dd 100644 --- a/Content.Shared/Nutrition/Components/HungerComponent.cs +++ b/Content.Shared/Nutrition/Components/HungerComponent.cs @@ -14,22 +14,33 @@ namespace Content.Shared.Nutrition.Components; public sealed partial class HungerComponent : Component { /// - /// The current hunger amount of the entity + /// The hunger value as authoritatively set by the server as of . + /// This value should be updated relatively infrequently. To get the current hunger, which changes with each update, + /// use . /// - [DataField("currentHunger"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadOnly)] [AutoNetworkedField] - public float CurrentHunger; + public float LastAuthoritativeHungerValue; /// - /// The base amount at which decays. + /// The time at which was last updated. /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public TimeSpan LastAuthoritativeHungerChangeTime; + + /// + /// The base amount at which decays. + /// + /// Any time this is modified, should be called. [DataField("baseDecayRate"), ViewVariables(VVAccess.ReadWrite)] public float BaseDecayRate = 0.01666666666f; /// - /// The actual amount at which decays. + /// The actual amount at which decays. /// Affected by /// + /// Any time this is modified, should be called. [DataField("actualDecayRate"), ViewVariables(VVAccess.ReadWrite)] [AutoNetworkedField] public float ActualDecayRate; @@ -45,12 +56,13 @@ public sealed partial class HungerComponent : Component /// /// The current hunger threshold the entity is at /// + /// Any time this is modified, should be called. [DataField("currentThreshold"), ViewVariables(VVAccess.ReadWrite)] [AutoNetworkedField] public HungerThreshold CurrentThreshold; /// - /// A dictionary relating HungerThreshold to the amount of needed for each one + /// A dictionary relating HungerThreshold to the amount of current hunger needed for each one /// [DataField("thresholds", customTypeSerializer: typeof(DictionarySerializer))] [AutoNetworkedField] @@ -106,19 +118,19 @@ public sealed partial class HungerComponent : Component public DamageSpecifier? StarvationDamage; /// - /// The time when the hunger will update next. + /// The time when the hunger threshold will update next. /// [DataField("nextUpdateTime", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] [AutoNetworkedField] [AutoPausedField] - public TimeSpan NextUpdateTime; + public TimeSpan NextThresholdUpdateTime; /// - /// The time between each update. + /// The time between each hunger threshold update. /// [ViewVariables(VVAccess.ReadWrite)] [AutoNetworkedField] - public TimeSpan UpdateRate = TimeSpan.FromSeconds(1); + public TimeSpan ThresholdUpdateRate = TimeSpan.FromSeconds(1); } [Serializable, NetSerializable] diff --git a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs index 6a6dd7af78..063c1f6bb1 100644 --- a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Rejuvenate; using Content.Shared.StatusIcon; +using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -72,6 +73,16 @@ public sealed class HungerSystem : EntitySystem SetHunger(uid, component.Thresholds[HungerThreshold.Okay], component); } + /// + /// Gets the current hunger value of the given . + /// + public float GetHunger(HungerComponent component) + { + var dt = _timing.CurTime - component.LastAuthoritativeHungerChangeTime; + var value = component.LastAuthoritativeHungerValue - (float)dt.TotalSeconds * component.ActualDecayRate; + return ClampHungerWithinThresholds(component, value); + } + /// /// Adds to the current hunger of an entity by the specified value /// @@ -82,7 +93,7 @@ public sealed class HungerSystem : EntitySystem { if (!Resolve(uid, ref component)) return; - SetHunger(uid, component.CurrentHunger + amount, component); + SetHunger(uid, GetHunger(component) + amount, component); } /// @@ -95,11 +106,23 @@ public sealed class HungerSystem : EntitySystem { if (!Resolve(uid, ref component)) return; - component.CurrentHunger = Math.Clamp(amount, - component.Thresholds[HungerThreshold.Dead], - component.Thresholds[HungerThreshold.Overfed]); + + SetAuthoritativeHungerValue((uid, component), amount); UpdateCurrentThreshold(uid, component); - Dirty(uid, component); + } + + /// + /// Sets and + /// , and dirties this entity. This "resets" the + /// starting point for 's calculation. + /// + /// The entity whose hunger will be set. + /// The value to set the entity's hunger to. + private void SetAuthoritativeHungerValue(Entity entity, float value) + { + entity.Comp.LastAuthoritativeHungerChangeTime = _timing.CurTime; + entity.Comp.LastAuthoritativeHungerValue = ClampHungerWithinThresholds(entity.Comp, value); + Dirty(entity); } private void UpdateCurrentThreshold(EntityUid uid, HungerComponent? component = null) @@ -112,7 +135,6 @@ public sealed class HungerSystem : EntitySystem return; component.CurrentThreshold = calculatedHungerThreshold; DoHungerThresholdEffects(uid, component); - Dirty(uid, component); } private void DoHungerThresholdEffects(EntityUid uid, HungerComponent? component = null, bool force = false) @@ -140,6 +162,7 @@ public sealed class HungerSystem : EntitySystem if (component.HungerThresholdDecayModifiers.TryGetValue(component.CurrentThreshold, out var modifier)) { component.ActualDecayRate = component.BaseDecayRate * modifier; + SetAuthoritativeHungerValue((uid, component), GetHunger(component)); } component.LastThreshold = component.CurrentThreshold; @@ -167,7 +190,7 @@ public sealed class HungerSystem : EntitySystem /// public HungerThreshold GetHungerThreshold(HungerComponent component, float? food = null) { - food ??= component.CurrentHunger; + food ??= GetHunger(component); var result = HungerThreshold.Dead; var value = component.Thresholds[HungerThreshold.Overfed]; foreach (var threshold in component.Thresholds) @@ -178,6 +201,7 @@ public sealed class HungerSystem : EntitySystem value = threshold.Value; } } + return result; } @@ -229,6 +253,13 @@ public sealed class HungerSystem : EntitySystem return prototype != null; } + private static float ClampHungerWithinThresholds(HungerComponent component, float hungerValue) + { + return Math.Clamp(hungerValue, + component.Thresholds[HungerThreshold.Dead], + component.Thresholds[HungerThreshold.Overfed]); + } + public override void Update(float frameTime) { base.Update(frameTime); @@ -236,13 +267,12 @@ public sealed class HungerSystem : EntitySystem var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var hunger)) { - if (_timing.CurTime < hunger.NextUpdateTime) + if (_timing.CurTime < hunger.NextThresholdUpdateTime) continue; - hunger.NextUpdateTime = _timing.CurTime + hunger.UpdateRate; + hunger.NextThresholdUpdateTime = _timing.CurTime + hunger.ThresholdUpdateRate; - ModifyHunger(uid, -hunger.ActualDecayRate, hunger); + UpdateCurrentThreshold(uid, hunger); DoContinuousHungerEffects(uid, hunger); } } } - diff --git a/Content.Shared/Sericulture/SericultureSystem.cs b/Content.Shared/Sericulture/SericultureSystem.cs index f7586cc1ec..8c10d0f3d0 100644 --- a/Content.Shared/Sericulture/SericultureSystem.cs +++ b/Content.Shared/Sericulture/SericultureSystem.cs @@ -53,7 +53,10 @@ public abstract partial class SharedSericultureSystem : EntitySystem private void OnSericultureStart(EntityUid uid, SericultureComponent comp, SericultureActionEvent args) { if (TryComp(uid, out var hungerComp) - && _hungerSystem.IsHungerBelowState(uid, comp.MinHungerThreshold, hungerComp.CurrentHunger - comp.HungerCost, hungerComp)) + && _hungerSystem.IsHungerBelowState(uid, + comp.MinHungerThreshold, + _hungerSystem.GetHunger(hungerComp) - comp.HungerCost, + hungerComp)) { _popupSystem.PopupClient(Loc.GetString(comp.PopupText), uid, uid); return; @@ -76,8 +79,12 @@ public abstract partial class SharedSericultureSystem : EntitySystem if (args.Cancelled || args.Handled || comp.Deleted) return; - if (TryComp(uid, out var hungerComp) // A check, just incase the doafter is somehow performed when the entity is not in the right hunger state. - && _hungerSystem.IsHungerBelowState(uid, comp.MinHungerThreshold, hungerComp.CurrentHunger - comp.HungerCost, hungerComp)) + if (TryComp(uid, + out var hungerComp) // A check, just incase the doafter is somehow performed when the entity is not in the right hunger state. + && _hungerSystem.IsHungerBelowState(uid, + comp.MinHungerThreshold, + _hungerSystem.GetHunger(hungerComp) - comp.HungerCost, + hungerComp)) { _popupSystem.PopupClient(Loc.GetString(comp.PopupText), uid, uid); return; diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index f8fb3e34ce..d801530c6b 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1686,7 +1686,6 @@ Dead: 0 baseDecayRate: 0.04 - type: Hunger - currentHunger: 25 # spawn with Okay hunger state thresholds: Overfed: 35 Okay: 25 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index a51fe52238..0dc96ba6f3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -448,7 +448,6 @@ Dead: 0 baseDecayRate: 0.04 - type: Hunger - currentHunger: 25 # spawn with Okay hunger state thresholds: Overfed: 35 Okay: 25 From e7294bdf4f84c85110e81b3c0433f7a1725842a2 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:15:04 +0100 Subject: [PATCH 137/263] Only disable panicbunker for admins with AdminFlags.Admin (#33879) * Only disable panicbunker for admins with AdminFlags.Admin * nicer curly braces --- .../Administration/Systems/AdminSystem.cs | 13 ++++++---- Content.Shared/Administration/AdminData.cs | 5 ++-- .../Managers/ISharedAdminManager.cs | 24 ++++++++++++------- Content.Shared/CCVar/CCVars.Game.cs | 1 + 4 files changed, 28 insertions(+), 15 deletions(-) diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index ce18a1e4f7..6208803603 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -337,10 +337,15 @@ public sealed class AdminSystem : EntitySystem private void UpdatePanicBunker() { - var admins = PanicBunker.CountDeadminnedAdmins - ? _adminManager.AllAdmins - : _adminManager.ActiveAdmins; - var hasAdmins = admins.Any(); + var hasAdmins = false; + foreach (var admin in _adminManager.AllAdmins) + { + if (_adminManager.HasAdminFlag(admin, AdminFlags.Admin, includeDeAdmin: PanicBunker.CountDeadminnedAdmins)) + { + hasAdmins = true; + break; + } + } // TODO Fix order dependent Cvars // Please for the sake of my sanity don't make cvars & order dependent. diff --git a/Content.Shared/Administration/AdminData.cs b/Content.Shared/Administration/AdminData.cs index 229edbcd4c..bad36f78c5 100644 --- a/Content.Shared/Administration/AdminData.cs +++ b/Content.Shared/Administration/AdminData.cs @@ -31,10 +31,11 @@ namespace Content.Shared.Administration /// Checks whether this admin has an admin flag. /// /// The flags to check. Multiple flags can be specified, they must all be held. + /// If true then also count flags even if the admin has de-adminned. /// False if this admin is not or does not have all the flags specified. - public bool HasFlag(AdminFlags flag) + public bool HasFlag(AdminFlags flag, bool includeDeAdmin = false) { - return Active && (Flags & flag) == flag; + return (includeDeAdmin || Active) && (Flags & flag) == flag; } /// diff --git a/Content.Shared/Administration/Managers/ISharedAdminManager.cs b/Content.Shared/Administration/Managers/ISharedAdminManager.cs index 22d918d4a3..f24d7f37d9 100644 --- a/Content.Shared/Administration/Managers/ISharedAdminManager.cs +++ b/Content.Shared/Administration/Managers/ISharedAdminManager.cs @@ -18,7 +18,7 @@ public interface ISharedAdminManager /// /// if the player is not an admin. AdminData? GetAdminData(EntityUid uid, bool includeDeAdmin = false); - + /// /// Gets the admin data for a player, if they are an admin. /// @@ -37,24 +37,30 @@ public interface ISharedAdminManager /// /// When used by the client, this only returns accurate results for the player's own entity. /// + /// + /// Whether to check flags even for admins that are current de-adminned. + /// /// True if the player is and admin and has the specified flags. - bool HasAdminFlag(EntityUid player, AdminFlags flag) + bool HasAdminFlag(EntityUid player, AdminFlags flag, bool includeDeAdmin = false) { - var data = GetAdminData(player); - return data != null && data.HasFlag(flag); + var data = GetAdminData(player, includeDeAdmin); + return data != null && data.HasFlag(flag, includeDeAdmin); } - + /// /// See if a player has an admin flag. /// /// /// When used by the client, this only returns accurate results for the player's own session. /// + /// + /// Whether to check flags even for admins that are current de-adminned. + /// /// True if the player is and admin and has the specified flags. - bool HasAdminFlag(ICommonSession player, AdminFlags flag) + bool HasAdminFlag(ICommonSession player, AdminFlags flag, bool includeDeAdmin = false) { - var data = GetAdminData(player); - return data != null && data.HasFlag(flag); + var data = GetAdminData(player, includeDeAdmin); + return data != null && data.HasFlag(flag, includeDeAdmin); } /// @@ -71,7 +77,7 @@ public interface ISharedAdminManager { return GetAdminData(uid, includeDeAdmin) != null; } - + /// /// Checks if a player is an admin. /// diff --git a/Content.Shared/CCVar/CCVars.Game.cs b/Content.Shared/CCVar/CCVars.Game.cs index 19092055e3..d74b46c7cc 100644 --- a/Content.Shared/CCVar/CCVars.Game.cs +++ b/Content.Shared/CCVar/CCVars.Game.cs @@ -154,6 +154,7 @@ public sealed partial class CCVars /// /// Whether or not the panic bunker will enable when no admins are online. + /// This counts everyone with the 'Admin' AdminFlag. /// public static readonly CVarDef PanicBunkerEnableWithoutAdmins = CVarDef.Create("game.panic_bunker.enable_without_admins", false, CVar.SERVERONLY); From 337ef6c5aa2e2dd807ef485034244da04ecacd85 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Dec 2024 13:16:13 +0000 Subject: [PATCH 138/263] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index cd66c6e974..3854878cef 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -635,5 +635,13 @@ Entries: id: 79 time: '2024-12-18T00:12:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33884 +- author: slarticodefast + changes: + - message: The panic bunker now only automatically disables when an admin with the + 'Admin' permission is online instead of any permission. + type: Tweak + id: 80 + time: '2024-12-18T13:15:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33879 Name: Admin Order: 1 From 83595417069579924ea2135c961184544c5aa76a Mon Sep 17 00:00:00 2001 From: MilenVolf <63782763+MilenVolf@users.noreply.github.com> Date: Wed, 18 Dec 2024 17:26:58 +0300 Subject: [PATCH 139/263] Fix hugging buckled mobs instead of unbuckling (#33635) * Check buckle.BuckledTo value before hugging interaction * Make InteractHandEvent to be used by BuckleSystem before InteractionPopupSystem instead of after --- Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs index 4a4da176f6..2dba18c96e 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs @@ -15,11 +15,11 @@ public abstract partial class SharedBuckleSystem private void InitializeInteraction() { SubscribeLocalEvent>(AddStrapVerbs); - SubscribeLocalEvent(OnStrapInteractHand, after: [typeof(InteractionPopupSystem)]); + SubscribeLocalEvent(OnStrapInteractHand, before: [typeof(InteractionPopupSystem)]); SubscribeLocalEvent(OnStrapDragDropTarget); SubscribeLocalEvent(OnCanDropTarget); - SubscribeLocalEvent(OnBuckleInteractHand, after: [typeof(InteractionPopupSystem)]); + SubscribeLocalEvent(OnBuckleInteractHand, before: [typeof(InteractionPopupSystem)]); SubscribeLocalEvent>(AddUnbuckleVerb); } From d01839a9901f1fe29238aedeb5ebdba613a74277 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Dec 2024 14:28:05 +0000 Subject: [PATCH 140/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 63908f158f..1f1dee3d0b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now AKMS is restricted to the security department. - type: Fix - id: 7228 - time: '2024-08-27T16:54:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31519 - author: metalgearsloth changes: - message: Added warp points for AI. @@ -3929,3 +3922,11 @@ id: 7727 time: '2024-12-18T11:26:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32694 +- author: MilenVolf + changes: + - message: Clicking on a buckled mob now unbuckles it, rather than hugging/petting + it. + type: Fix + id: 7728 + time: '2024-12-18T14:26:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33635 From 659bc8f2de5f17348b8c3e604f7a83ad3042f9cf Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:05:15 +0100 Subject: [PATCH 141/263] Replace Cellular Slime mob damage with Caustic (#33104) Cellular gone --- Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index 9d8a851551..0a866b5b94 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -228,8 +228,7 @@ types: Blunt: 6 Structural: 4 - Caustic: 1 - Cellular: 3 + Caustic: 4 - type: entity name: yellow slime From 97a2e0deef482dce6b5c2b67074bcb8c69ba9002 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Dec 2024 15:06:22 +0000 Subject: [PATCH 142/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1f1dee3d0b..45798506cc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Added warp points for AI. - type: Add - id: 7229 - time: '2024-08-28T05:58:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31559 - author: metalgearsloth changes: - message: Fix AI being ejectable. @@ -3930,3 +3923,10 @@ id: 7728 time: '2024-12-18T14:26:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33635 +- author: SlamBamActionman + changes: + - message: Slimes no longer deal Cellular damage. + type: Tweak + id: 7729 + time: '2024-12-18T15:05:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33104 From c1558f689f5ab7648f80305a2b8d842c0fa10373 Mon Sep 17 00:00:00 2001 From: RedBookcase Date: Wed, 18 Dec 2024 07:13:40 -0800 Subject: [PATCH 143/263] Mercenary gear contraband tweaks. (#33647) * Mercenary gear contraband tweaks. * Fixed Mercenary Combat Gloves to have basic Combat Gloves as a parent again. * Update Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml --------- Co-authored-by: RedBookcase Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Prototypes/Entities/Clothing/Back/backpacks.yml | 2 +- Resources/Prototypes/Entities/Clothing/Hands/gloves.yml | 2 +- Resources/Prototypes/Entities/Clothing/Head/hats.yml | 2 +- Resources/Prototypes/Entities/Clothing/Head/helmets.yml | 2 +- Resources/Prototypes/Entities/Clothing/Masks/masks.yml | 2 +- .../Prototypes/Entities/Clothing/OuterClothing/vests.yml | 4 ++-- Resources/Prototypes/Entities/Clothing/Shoes/boots.yml | 2 +- Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml | 2 +- Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index b589b2bbc0..679e1e2a7b 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -184,7 +184,7 @@ - type: entity parent: ClothingBackpack id: ClothingBackpackMerc - name: merc bag + name: mercenary bag description: A backpack that has been in many dangerous places, a reliable combat backpack. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index 1dd1e0ba04..cb4f8689b3 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -285,7 +285,7 @@ fiberColor: fibers-black - type: entity - parent: ClothingHandsGlovesCombat + parent: [ BaseSecurityCargoContraband, ClothingHandsGlovesCombat ] id: ClothingHandsMercGlovesCombat name: mercenary combat gloves description: High-quality combat gloves to protect hands from mechanical damage during combat. diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 97145a0f00..6c0d405b4d 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -182,7 +182,7 @@ sprite: Clothing/Head/Hats/beret_brigmedic.rsi - type: entity - parent: [ ClothingHeadBase, BaseRestrictedContraband ] + parent: [ ClothingHeadBase ] id: ClothingHeadHatBeretMerc name: mercenary beret description: Olive beret, the badge depicts a jackal on a rock. diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index f06f20249b..65ad2d523e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -39,7 +39,7 @@ #Mercenary Helmet - type: entity - parent: [ ClothingHeadHelmetBase, BaseRestrictedContraband ] + parent: [ ClothingHeadHelmetBase, BaseMajorContraband ] id: ClothingHeadHelmetMerc name: mercenary helmet description: The combat helmet is commonly used by mercenaries, is strong, light and smells like gunpowder and the jungle. diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 0dd16dceb1..8317f8af89 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -385,7 +385,7 @@ Heat: 0.95 - type: entity - parent: [ ClothingMaskGas, BaseRestrictedContraband ] + parent: [ ClothingMaskGas, BaseSecurityCargoContraband ] id: ClothingMaskGasMerc name: mercenary gas mask description: Slightly outdated, but reliable military-style gas mask. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml index 545f46cc8c..994e86b548 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml @@ -21,9 +21,9 @@ #Mercenary web vest - type: entity - parent: [ClothingOuterVestWeb, BaseMinorContraband] #web vest so it should have some pockets for ammo + parent: [ BaseMajorContraband, ClothingOuterVestWeb] #web vest so it should have some pockets for ammo id: ClothingOuterVestWebMerc - name: merc web vest + name: mercenary web vest description: A high-quality armored vest made from a hard synthetic material. It's surprisingly flexible and light, despite formidable armor plating. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index e5ef7e23bb..3358176cc2 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -73,7 +73,7 @@ sprite: Clothing/Shoes/Boots/highheelboots.rsi - type: entity - parent: [ ClothingShoesMilitaryBase, BaseRestrictedContraband ] + parent: [ ClothingShoesMilitaryBase ] id: ClothingShoesBootsMerc name: mercenary boots description: Boots that have gone through many conflicts and that have proven their combat reliability. diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index ef5c1164cf..aed199d9c7 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -860,7 +860,7 @@ mode: SensorOff - type: entity - parent: [ ClothingUniformBase, BaseRestrictedContraband ] + parent: [ ClothingUniformBase ] id: ClothingUniformJumpsuitMercenary name: mercenary jumpsuit description: Clothing for real mercenaries who have gone through fire, water and the jungle of planets flooded with dangerous monsters or targets for which a reward has been assigned. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index b62f9047b9..c307d0ffbe 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -129,7 +129,7 @@ - type: entity name: kukri knife - parent: [CombatKnife, BaseMinorContraband] + parent: [CombatKnife, BaseSecurityCargoContraband] id: KukriKnife description: Professionals have standards. Be polite. Be efficient. Have a plan to kill everyone you meet. components: From b649517a1783d2de4637e3eaccdd0159fc144a2b Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Dec 2024 15:14:46 +0000 Subject: [PATCH 144/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 45798506cc..f0db92d901 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix AI being ejectable. - type: Fix - id: 7230 - time: '2024-08-28T07:09:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31561 - author: metalgearsloth changes: - message: Fix whitelist @@ -3930,3 +3923,10 @@ id: 7729 time: '2024-12-18T15:05:16.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33104 +- author: Redbookcase + changes: + - message: Standardized Mercenary gear's contraband status. + type: Tweak + id: 7730 + time: '2024-12-18T15:13:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33647 From 18fe8b9df078c80c4ceab1703ca867b867665467 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Wed, 18 Dec 2024 19:15:34 +0300 Subject: [PATCH 145/263] Sprite Movement working with AI movement (#33494) * FINALLY * Update animals.yml --- .../Systems/ClientSpriteMovementSystem.cs | 46 +++++++ .../Movement/Systems/SpriteMovementSystem.cs | 51 -------- .../Movement/Systems/SpriteMovementSystem.cs | 7 ++ .../NPC/Systems/NPCSteeringSystem.Context.cs | 4 +- .../NPC/Systems/NPCSteeringSystem.cs | 21 ++-- .../Components/SpriteMovementComponent.cs | 5 +- .../Movement/Events/SpriteMoveEvent.cs | 15 +++ .../Systems/SharedMoverController.Input.cs | 6 + .../Systems/SharedSpriteMovementSystem.cs | 23 ++++ .../Prototypes/Entities/Mobs/NPCs/animals.yml | 119 ++++++++++-------- 10 files changed, 182 insertions(+), 115 deletions(-) create mode 100644 Content.Client/Movement/Systems/ClientSpriteMovementSystem.cs delete mode 100644 Content.Client/Movement/Systems/SpriteMovementSystem.cs create mode 100644 Content.Server/Movement/Systems/SpriteMovementSystem.cs create mode 100644 Content.Shared/Movement/Events/SpriteMoveEvent.cs create mode 100644 Content.Shared/Movement/Systems/SharedSpriteMovementSystem.cs diff --git a/Content.Client/Movement/Systems/ClientSpriteMovementSystem.cs b/Content.Client/Movement/Systems/ClientSpriteMovementSystem.cs new file mode 100644 index 0000000000..1700796ede --- /dev/null +++ b/Content.Client/Movement/Systems/ClientSpriteMovementSystem.cs @@ -0,0 +1,46 @@ +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; +using Robust.Client.GameObjects; +using Robust.Shared.Timing; + +namespace Content.Client.Movement.Systems; + +/// +/// Controls the switching of motion and standing still animation +/// +public sealed class ClientSpriteMovementSystem : SharedSpriteMovementSystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + + private EntityQuery _spriteQuery; + + public override void Initialize() + { + base.Initialize(); + + _spriteQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnAfterAutoHandleState); + } + + private void OnAfterAutoHandleState(Entity ent, ref AfterAutoHandleStateEvent args) + { + if (!_spriteQuery.TryGetComponent(ent, out var sprite)) + return; + + if (ent.Comp.IsMoving) + { + foreach (var (layer, state) in ent.Comp.MovementLayers) + { + sprite.LayerSetData(layer, state); + } + } + else + { + foreach (var (layer, state) in ent.Comp.NoMovementLayers) + { + sprite.LayerSetData(layer, state); + } + } + } +} diff --git a/Content.Client/Movement/Systems/SpriteMovementSystem.cs b/Content.Client/Movement/Systems/SpriteMovementSystem.cs deleted file mode 100644 index b620353689..0000000000 --- a/Content.Client/Movement/Systems/SpriteMovementSystem.cs +++ /dev/null @@ -1,51 +0,0 @@ -using Content.Shared.Movement.Components; -using Content.Shared.Movement.Events; -using Content.Shared.Movement.Systems; -using Robust.Client.GameObjects; -using Robust.Shared.Timing; - -namespace Content.Client.Movement.Systems; - -/// -/// Handles setting sprite states based on whether an entity has movement input. -/// -public sealed class SpriteMovementSystem : EntitySystem -{ - [Dependency] private readonly IGameTiming _timing = default!; - - private EntityQuery _spriteQuery; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnSpriteMoveInput); - _spriteQuery = GetEntityQuery(); - } - - private void OnSpriteMoveInput(EntityUid uid, SpriteMovementComponent component, ref MoveInputEvent args) - { - if (!_timing.IsFirstTimePredicted) - return; - - var oldMoving = (SharedMoverController.GetNormalizedMovement(args.OldMovement) & MoveButtons.AnyDirection) != MoveButtons.None; - var moving = (SharedMoverController.GetNormalizedMovement(args.Entity.Comp.HeldMoveButtons) & MoveButtons.AnyDirection) != MoveButtons.None; - - if (oldMoving == moving || !_spriteQuery.TryGetComponent(uid, out var sprite)) - return; - - if (moving) - { - foreach (var (layer, state) in component.MovementLayers) - { - sprite.LayerSetData(layer, state); - } - } - else - { - foreach (var (layer, state) in component.NoMovementLayers) - { - sprite.LayerSetData(layer, state); - } - } - } -} diff --git a/Content.Server/Movement/Systems/SpriteMovementSystem.cs b/Content.Server/Movement/Systems/SpriteMovementSystem.cs new file mode 100644 index 0000000000..9fc4d82859 --- /dev/null +++ b/Content.Server/Movement/Systems/SpriteMovementSystem.cs @@ -0,0 +1,7 @@ +using Content.Shared.Movement.Systems; + +namespace Content.Server.Movement.Systems; + +public sealed class SpriteMovementSystem : SharedSpriteMovementSystem +{ +} diff --git a/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs b/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs index fa43b3e752..6a295198c2 100644 --- a/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs +++ b/Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs @@ -253,7 +253,7 @@ public sealed partial class NPCSteeringSystem if (!targetCoordinates.IsValid(EntityManager)) { - SetDirection(mover, steering, Vector2.Zero); + SetDirection(uid, mover, steering, Vector2.Zero); steering.Status = SteeringStatus.NoPath; return false; } @@ -263,7 +263,7 @@ public sealed partial class NPCSteeringSystem // Can't make it again. if (ourMap.MapId != targetMap.MapId) { - SetDirection(mover, steering, Vector2.Zero); + SetDirection(uid, mover, steering, Vector2.Zero); steering.Status = SteeringStatus.NoPath; return false; } diff --git a/Content.Server/NPC/Systems/NPCSteeringSystem.cs b/Content.Server/NPC/Systems/NPCSteeringSystem.cs index fc63d1e615..a8124c0249 100644 --- a/Content.Server/NPC/Systems/NPCSteeringSystem.cs +++ b/Content.Server/NPC/Systems/NPCSteeringSystem.cs @@ -11,6 +11,7 @@ using Content.Shared.Climbing.Systems; using Content.Shared.CombatMode; using Content.Shared.Interaction; using Content.Shared.Movement.Components; +using Content.Shared.Movement.Events; using Content.Shared.Movement.Systems; using Content.Shared.NPC; using Content.Shared.NPC.Components; @@ -207,6 +208,9 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem if (EntityManager.TryGetComponent(uid, out InputMoverComponent? controller)) { controller.CurTickSprintMovement = Vector2.Zero; + + var ev = new SpriteMoveEvent(false); + RaiseLocalEvent(uid, ref ev); } component.PathfindToken?.Cancel(); @@ -270,7 +274,7 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem } } - private void SetDirection(InputMoverComponent component, NPCSteeringComponent steering, Vector2 value, bool clear = true) + private void SetDirection(EntityUid uid, InputMoverComponent component, NPCSteeringComponent steering, Vector2 value, bool clear = true) { if (clear && value.Equals(Vector2.Zero)) { @@ -282,6 +286,9 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem component.CurTickSprintMovement = value; component.LastInputTick = _timing.CurTick; component.LastInputSubTick = ushort.MaxValue; + + var ev = new SpriteMoveEvent(true); + RaiseLocalEvent(uid, ref ev); } /// @@ -297,7 +304,7 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem { if (Deleted(steering.Coordinates.EntityId)) { - SetDirection(mover, steering, Vector2.Zero); + SetDirection(uid, mover, steering, Vector2.Zero); steering.Status = SteeringStatus.NoPath; return; } @@ -305,14 +312,14 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem // No path set from pathfinding or the likes. if (steering.Status == SteeringStatus.NoPath) { - SetDirection(mover, steering, Vector2.Zero); + SetDirection(uid, mover, steering, Vector2.Zero); return; } // Can't move at all, just noop input. if (!mover.CanMove) { - SetDirection(mover, steering, Vector2.Zero); + SetDirection(uid, mover, steering, Vector2.Zero); steering.Status = SteeringStatus.NoPath; return; } @@ -341,7 +348,7 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem if (steering.CanSeek && !TrySeek(uid, mover, steering, body, xform, offsetRot, moveSpeed, interest, frameTime, ref forceSteer)) { - SetDirection(mover, steering, Vector2.Zero); + SetDirection(uid, mover, steering, Vector2.Zero); return; } @@ -354,7 +361,7 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem if (!forceSteer) { - SetDirection(mover, steering, steering.LastSteerDirection, false); + SetDirection(uid, mover, steering, steering.LastSteerDirection, false); return; } @@ -391,7 +398,7 @@ public sealed partial class NPCSteeringSystem : SharedNPCSteeringSystem steering.LastSteerDirection = resultDirection; DebugTools.Assert(!float.IsNaN(resultDirection.X)); - SetDirection(mover, steering, resultDirection, false); + SetDirection(uid, mover, steering, resultDirection, false); } private EntityCoordinates GetCoordinates(PathPoly poly) diff --git a/Content.Shared/Movement/Components/SpriteMovementComponent.cs b/Content.Shared/Movement/Components/SpriteMovementComponent.cs index 8dd058f154..b5a9e37352 100644 --- a/Content.Shared/Movement/Components/SpriteMovementComponent.cs +++ b/Content.Shared/Movement/Components/SpriteMovementComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Movement.Components; /// /// Updates a sprite layer based on whether an entity is moving via input or not. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] public sealed partial class SpriteMovementComponent : Component { /// @@ -19,4 +19,7 @@ public sealed partial class SpriteMovementComponent : Component /// [DataField] public Dictionary NoMovementLayers = new(); + + [DataField, AutoNetworkedField] + public bool IsMoving; } diff --git a/Content.Shared/Movement/Events/SpriteMoveEvent.cs b/Content.Shared/Movement/Events/SpriteMoveEvent.cs new file mode 100644 index 0000000000..25ebffe2df --- /dev/null +++ b/Content.Shared/Movement/Events/SpriteMoveEvent.cs @@ -0,0 +1,15 @@ +namespace Content.Shared.Movement.Events; + +/// +/// Raised on an entity whenever it should change movement sprite +/// +[ByRefEvent] +public readonly struct SpriteMoveEvent +{ + public readonly bool IsMoving = false; + + public SpriteMoveEvent(bool isMoving) + { + IsMoving = isMoving; + } +} diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index 1fe38b6cdf..6f508d9038 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -96,6 +96,9 @@ namespace Content.Shared.Movement.Systems entity.Comp.HeldMoveButtons = buttons; RaiseLocalEvent(entity, ref moveEvent); Dirty(entity, entity.Comp); + + var ev = new SpriteMoveEvent(entity.Comp.HeldMoveButtons != MoveButtons.None); + RaiseLocalEvent(entity, ref ev); } private void OnMoverHandleState(Entity entity, ref ComponentHandleState args) @@ -119,6 +122,9 @@ namespace Content.Shared.Movement.Systems var moveEvent = new MoveInputEvent(entity, entity.Comp.HeldMoveButtons); entity.Comp.HeldMoveButtons = state.HeldMoveButtons; RaiseLocalEvent(entity.Owner, ref moveEvent); + + var ev = new SpriteMoveEvent(entity.Comp.HeldMoveButtons != MoveButtons.None); + RaiseLocalEvent(entity, ref ev); } } diff --git a/Content.Shared/Movement/Systems/SharedSpriteMovementSystem.cs b/Content.Shared/Movement/Systems/SharedSpriteMovementSystem.cs new file mode 100644 index 0000000000..eb4bbc1be6 --- /dev/null +++ b/Content.Shared/Movement/Systems/SharedSpriteMovementSystem.cs @@ -0,0 +1,23 @@ +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Events; + +namespace Content.Shared.Movement.Systems; + +public abstract class SharedSpriteMovementSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSpriteMoveInput); + } + + private void OnSpriteMoveInput(Entity ent, ref SpriteMoveEvent args) + { + if (ent.Comp.IsMoving == args.IsMoving) + return; + + ent.Comp.IsMoving = args.IsMoving; + Dirty(ent); + } +} diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index d801530c6b..b776a156fe 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -2283,24 +2283,10 @@ # Code unique spider prototypes or combine them all into one spider and get a # random sprite state when you spawn it. - type: entity - name: tarantula parent: [ SimpleMobBase, MobCombat ] - id: MobGiantSpider - description: Widely recognized to be the literal worst thing in existence. + id: MobSpiderBase + abstract: true components: - - type: Sprite - drawdepth: Mobs - layers: - - map: ["enum.DamageStateVisualLayers.Base", "movement"] - state: tarantula - sprite: Mobs/Animals/spider.rsi - - type: SpriteMovement - movementLayers: - movement: - state: tarantula-moving - noMovementLayers: - movement: - state: tarantula - type: Physics - type: Fixtures fixtures: @@ -2313,14 +2299,6 @@ - MobMask layer: - MobLayer - - type: DamageStateVisuals - states: - Alive: - Base: tarantula - Critical: - Base: tarantula_dead - Dead: - Base: tarantula_dead - type: Butcherable spawned: - id: FoodMeatSpider @@ -2332,15 +2310,6 @@ thresholds: 0: Alive 90: Dead - - type: MeleeWeapon - altDisarm: false - angle: 0 - animation: WeaponArcBite - soundHit: - path: /Audio/Effects/bite.ogg - damage: - types: - Piercing: 6 - type: SolutionContainerManager solutions: melee: @@ -2402,31 +2371,73 @@ Burn: -0.07 - type: entity - name: tarantula - parent: MobGiantSpider - id: MobGiantSpiderAngry - suffix: Angry + parent: MobSpiderBase + id: MobSpiderAngryBase + abstract: true components: - - type: NpcFactionMember - factions: - - Xeno - - type: InputMover - - type: MobMover - - type: HTN - rootTask: - task: SimpleHostileCompound - - type: GhostRole - makeSentient: true - name: ghost-role-information-giant-spider-name - description: ghost-role-information-giant-spider-description - rules: ghost-role-information-giant-spider-rules - raffle: - settings: short - - type: GhostTakeoverAvailable + - type: NpcFactionMember + factions: + - Xeno + - type: InputMover + - type: MobMover + - type: HTN + rootTask: + task: SimpleHostileCompound + - type: GhostRole + makeSentient: true + name: ghost-role-information-giant-spider-name + description: ghost-role-information-giant-spider-description + rules: ghost-role-information-giant-spider-rules + raffle: + settings: short + - type: GhostTakeoverAvailable + +- type: entity + name: tarantula + parent: MobSpiderBase + id: MobGiantSpider + description: Widely recognized to be the literal worst thing in existence. + components: + - type: Sprite + drawdepth: Mobs + layers: + - map: ["enum.DamageStateVisualLayers.Base", "movement"] + state: tarantula + sprite: Mobs/Animals/spider.rsi + - type: SpriteMovement + movementLayers: + movement: + state: tarantula-moving + noMovementLayers: + movement: + state: tarantula + - type: DamageStateVisuals + states: + Alive: + Base: tarantula + Critical: + Base: tarantula_dead + Dead: + Base: tarantula_dead + - type: MeleeWeapon + altDisarm: false + angle: 0 + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg + damage: + types: + Piercing: 6 + +- type: entity + parent: + - MobGiantSpider + - MobSpiderAngryBase + id: MobGiantSpiderAngry - type: entity name: clown spider - parent: MobGiantSpiderAngry + parent: MobSpiderAngryBase id: MobClownSpider description: Combines the two most terrifying things in existence, spiders and clowns. components: From 345adcd5d007efa8b51ba9503117075f806f17a5 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Wed, 18 Dec 2024 08:31:55 -0800 Subject: [PATCH 146/263] New Drazil plushie (inverse lizard plushie) (#33776) * Hew * properly attribute hew.ogg * add to maints locker plushie pool with low chance, clear up grammar * shhhh nobody saw that linter failure * adds localization support for Weh and Hew emotes * fix capitalization error present since circa 2/25/2024 * resolve conflicts, fix sprite, add reversed inhands * clear up cursed formatting --- Resources/Audio/Items/Toys/attributions.yml | 5 ++ Resources/Audio/Items/Toys/hew.ogg | Bin 0 -> 8167 bytes Resources/Locale/en-US/chat/emotes.ftl | 3 + .../Locale/en-US/flavors/flavor-profiles.ftl | 1 + Resources/Locale/en-US/reagents/meta/fun.ftl | 3 + .../en-US/reagents/meta/physical-desc.ftl | 1 + .../Prototypes/Catalog/Fills/Crates/fun.yml | 2 + .../Prototypes/Entities/Objects/Fun/toys.yml | 53 +++++++++++++++++- Resources/Prototypes/Flavors/flavors.yml | 5 ++ Resources/Prototypes/Reagents/fun.yml | 32 +++++++++++ .../Prototypes/SoundCollections/emotes.yml | 5 ++ .../Prototypes/Voice/speech_emote_sounds.yml | 24 +++++++- Resources/Prototypes/Voice/speech_emotes.yml | 9 ++- .../Interface/Emotes/attributions.yml | 5 ++ Resources/Textures/Interface/Emotes/hew.png | Bin 0 -> 473 bytes .../lizard-inversed-equipped-HELMET.png | Bin 0 -> 682 bytes .../Textures/Objects/Fun/toys.rsi/meta.json | 17 +++++- .../Fun/toys.rsi/plushie_lizard_inversed.png | Bin 0 -> 495 bytes .../plushielizardinversed-inhand-left.png | Bin 0 -> 1246 bytes .../plushielizardinversed-inhand-right.png | Bin 0 -> 1218 bytes 20 files changed, 161 insertions(+), 4 deletions(-) create mode 100644 Resources/Audio/Items/Toys/hew.ogg create mode 100644 Resources/Textures/Interface/Emotes/hew.png create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/lizard-inversed-equipped-HELMET.png create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/plushie_lizard_inversed.png create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/plushielizardinversed-inhand-left.png create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/plushielizardinversed-inhand-right.png diff --git a/Resources/Audio/Items/Toys/attributions.yml b/Resources/Audio/Items/Toys/attributions.yml index 162ee8c1c3..cd767ff3d6 100644 --- a/Resources/Audio/Items/Toys/attributions.yml +++ b/Resources/Audio/Items/Toys/attributions.yml @@ -58,6 +58,11 @@ copyright: "Created by BlackMajor (github) for ss14, muffled_weh.ogg modified from weh.ogg by Slorkito (ss14 discord)" source: "https://github.com/space-wizards/space-station-14/blob/master/Resources/Audio/Items/Toys/weh.ogg" +- files: ["hew.ogg"] + license: "CC0-1.0" + copyright: "Modified from weh.ogg by ArtisticRoomba" + source: "https://github.com/space-wizards/space-station-14/blob/master/Resources/Audio/Items/Toys/weh.ogg" + - files: ["skub.ogg", "skub3.ogg"] license: "CC0-1.0" copyright: "Created by BlackMajor (github) for ss14" diff --git a/Resources/Audio/Items/Toys/hew.ogg b/Resources/Audio/Items/Toys/hew.ogg new file mode 100644 index 0000000000000000000000000000000000000000..63ba80877081ad52d8d922b50a2a90f152579c8a GIT binary patch literal 8167 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 P00000NkvXXu0mjfU`p|HaSW-5 zdpm2R7qg>4+w%Y)#RwLioGT*N#5P_$)o@bLaQxl&Jk>>zXJ(X=Rj3_+)Wt-WjRr*qm zFF!opxj5{!zWY=21N=2*4|W(Xd_3EBB46MHhvE$rKK&?6(rkIcknpeY#nR}qo03=TpfPFXGehnrCsKj>q~UXg2jr2Tm{W5mSYdg>|yKblysecmzaLN>n#)51;65)Ajb zI~W-loZQzkr0ov7!*3D0{Fd3#%6Gri`;V+PycWdGAkxfTpwH0%KFuxZ|4oUwX^#%I zq`2zIG0MN%*Z%Csr`Uy2G68yAhLaBM6L5MdV9ii`-gpIX!&Z-y5ViyF8Djh|{`xol zZnOWQCm&8Ivo$1~^ge$5*Z!l)GE1sl7;dl{GET@6Wd70Zm-WPiLF!8Ks!YC)mC{mC fXBbK6>|=;&<_g%O{we^N_!vB0{an^LB{Ts5_SG;) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index b4db18defc..4d86adeded 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github). Lizard hat sprite made by Cinder, rubber_chicken by xprospero, in-hand lizard plushie sprites by KieueCaprie", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github), lizard hat sprite made by Cinder, rubber_chicken by xprospero, in-hand lizard plushie sprites by KieueCaprie, plushie_lizard_inversed and inhand sprites modified from plushie_lizard_mirrored and plushielizard-inhand-left, plushielizard-inhand-right by ArtisticRoomba", "size": { "x": 32, "y": 32 @@ -103,6 +103,21 @@ { "name": "plushie_lizard_mirrored" }, + { + "name": "plushie_lizard_inversed" + }, + { + "name": "lizard-inversed-equipped-HELMET", + "directions": 4 + }, + { + "name": "plushielizardinversed-inhand-left", + "directions": 4 + }, + { + "name": "plushielizardinversed-inhand-right", + "directions": 4 + }, { "name": "plushie_lamp" }, diff --git a/Resources/Textures/Objects/Fun/toys.rsi/plushie_lizard_inversed.png b/Resources/Textures/Objects/Fun/toys.rsi/plushie_lizard_inversed.png new file mode 100644 index 0000000000000000000000000000000000000000..06ac083f54f7501f2092a6931a998a808bf57538 GIT binary patch literal 495 zcmVPx$sYygZR9Hu2WEfz;IKcKZj5=U61V%%EtPq%Cy#GJ8?3;1ck!15o*6{!Tf4Jo{ zO%9;A<0t!HhPJo(OSS4vPkwH~?fQ$PvW& zoMsLH8C)s1{J*@Y1lSJb;0E#YJJ=W)WMvs9M&D(iI1Q}yKk+|&qXkM-&C@^q|1qr`vvqezIlLx=u@9KfKcNHB^CD%c)&^Z%!x?-^i@fLRW*=h&^244?mgg*$?m znVVtdn`(%e_wWCwngd`qfE@DT^%pP~-Ex>36h{!z+#)Iju$i-9-x?I(BRjxd+KmAe zMTFuXTx1jBNQSlXC;oGN7X&N4_2e-F?^k{>`}X@g4EMg>gF6J|dnGO<1_>Eausqcq z05S~Z2oU|`HY5r_0OSymBanfrpbFUcRCfT(66AsinPx(m`OxIRCr$PT4_vFR}?;PR)!f6X{0f+C6O+~(om6tq`*>7O=Dx)=+n>B1PW()LH;PeBP%7MXN_YHM7gtuatSTQy2pXJh6x=QfZGMFt*R zLf+i>XJ%gRz2|)2`OZ0$+#^ANKT?3>2SI>PK!7tKQXs$uAc~+!0g(a$&VWdP02hGh z0wM)O3IsROkmK&@88fah=6Z+o7r-G!){n6``G?6(~54l8;Gc(p&@wZQh{_dsRd`Q zTL`%MtmQ@k8Lxh&6(_H&VNb6aPNnvM)9C~vWv4X>BuSdKT@~AcCX)}MgC-F^qzTd`V-FTq{PH(#h4@HGSc3qT@?dqa-blvc> z$PeQ;p!vT!wK}K&z`}ae|}{xuyAcIBjPW(%9tc%cv(X(vqO0v92^Wq)d@a!Ejv1pS|ky0v-TbH9N- z$(4ZFltW;P>&y?dd!cp!sa>X*`*w-NsBo^m%T53LDUp`uQ&o~UhTr+ zTTaG}VV%UtSP)Px(d`Uz>RCr$PT5D_+RTMrm+kN$!N&uB$2>~TOf>2tPtWdBvi1-Km!$W9nQF)X? z07(e^G4UB8nn)=zwZRa9#Dt1%w9wM+mTGCGRYD;JU6KL`0b(g-x9vU;Ij6R`iFWoT zr0&e#`LoIFxik0s&Ud~u$vp}r_@yK`evkx61td5FvIG)b0MZ0y3CI#ia0X-vB)9-% z7my_&OCZ4+kR_1d0+3xGssuiFoWjYbCmSghCFgS`*=&%SnhNUp0I1y-7#tjg zKp?=$^?JQfa=t)`B7hjFn0p3PRfVD!C;KCj@b0;Vx&l9J?BA?uMnzHJZpVE{NlD?` zlwi6S3>yiM<_y;dkA%VqvL9kdXKt9lu zaT_+DcrDrk>Q;I1FHaw={%#yB&8}d%%+GSbd*_A%^?L2i`H9UP(@c<|q_7e!&!|v* zbf~POy1;EBsDaIN(&Y&<^nT@wZFXmK0%_xF#~N7=Gk`aFP=@AY2> z`)1T2nfkP~h&qyj|P zGGeS$fDyAQf=O5b2eVzczI~DKI+0C{Wo%49$`&*tovqWAnw13MKNYY)YlgSJT@cgy zu>>UgE=>TR&G``@OG@V>rQzWM--LTm`omJqwW6E(KjJk(1OfpbGN8Euy6DW1&JH*I z9)A-fm5W=k=;T~YO#dWWGdL27@bMTOC6&Ec&jipZ>znQz&9!5l(XSoNSbX*+p?zrv zo6TlEU8NE@mj4@1SI`l2>4o?kni?L65+Pob0D9Pg0hJOo?fo$VMJT z?CISeY_IKto$ayvlO~X+@-FPEyv3tslznAt7$SEpaXB_qv#k@acl0oq8yaKlP@@uX z=HO-QKHI~y0@MZvZXiEAW2zMj4~x~>qsXwWy8MY?uMtGlc3<^>6!`t&w%Pr zTJdIwmorbUPqTvrng%F{5PH$NWAXPvRJZF7B*Uh0I4aw`_p?SN;a~r3__C9kTvYO$ gCWBg8iTD2>094AV_o&&S#Q*>R07*qoM6N<$f=!b)1poj5 literal 0 HcmV?d00001 From 4fe69f2383c9daff0258740f37d6d8578018e902 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Dec 2024 16:33:03 +0000 Subject: [PATCH 147/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f0db92d901..1a92e1237a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix whitelist - type: Fix - id: 7231 - time: '2024-08-28T07:11:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31563 - author: metalgearsloth changes: - message: Add shutters, windoors, etc to AI interaction whitelist. @@ -3930,3 +3923,14 @@ id: 7730 time: '2024-12-18T15:13:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33647 +- author: ArtisticRoomba + changes: + - message: New plushie, named "drazil plushie". Based on an inverted lizard plushie. + It can be rarely found in maints lockers. Hew! + type: Add + - message: New reagent, Juice that makes you Hew. It can be made from juicing inverted + lizard plushies. Hew! + type: Add + id: 7731 + time: '2024-12-18T16:31:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33776 From 8a0edad8866c493fb8141258a8829c1a11c32682 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Wed, 18 Dec 2024 21:54:09 +0100 Subject: [PATCH 148/263] Localized holopads for Cog (#33937) * coggers * Requested changes --- Resources/Maps/cog.yml | 444 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 439 insertions(+), 5 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 7d8d68e516..66b19ac3b3 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -9516,15 +9516,15 @@ entities: 2,-5: 0: 62079 3,-4: - 0: 61559 + 0: 61695 3,-3: 0: 65535 3,-2: 0: 65535 3,-5: - 0: 63247 + 0: 65295 4,-4: - 0: 63239 + 0: 62982 4,-3: 0: 65535 4,-2: @@ -9612,7 +9612,7 @@ entities: 4,-6: 0: 30583 4,-5: - 0: 65411 + 0: 65155 -8,-4: 0: 64440 -8,-5: @@ -15493,7 +15493,7 @@ entities: pos: 26.5,17.5 parent: 12 - type: Door - secondsUntilStateChange: -4516.5117 + secondsUntilStateChange: -9377.86 state: Opening - type: DeviceLinkSink invokeCounter: 1 @@ -147296,6 +147296,440 @@ entities: - type: Transform pos: 36.5,-13.5 parent: 12 +- proto: HolopadAiCore + entities: + - uid: 32118 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 12 +- proto: HolopadAiEntrance + entities: + - uid: 32120 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 12 +- proto: HolopadAiUpload + entities: + - uid: 32119 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 12 +- proto: HolopadCargoBayLongRange + entities: + - uid: 31905 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 12 +- proto: HolopadCargoFront + entities: + - uid: 31903 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 12 +- proto: HolopadCargoSalvageBay + entities: + - uid: 31904 + components: + - type: Transform + pos: 57.5,-30.5 + parent: 12 +- proto: HolopadCommandBridge + entities: + - uid: 31879 + components: + - type: Transform + pos: -55.5,30.5 + parent: 12 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 31889 + components: + - type: Transform + pos: -55.5,27.5 + parent: 12 +- proto: HolopadCommandCaptain + entities: + - uid: 31880 + components: + - type: Transform + pos: -51.5,19.5 + parent: 12 +- proto: HolopadCommandCe + entities: + - uid: 31883 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 12 +- proto: HolopadCommandCmo + entities: + - uid: 31884 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 12 +- proto: HolopadCommandHop + entities: + - uid: 31881 + components: + - type: Transform + pos: -34.5,22.5 + parent: 12 +- proto: HolopadCommandHos + entities: + - uid: 31882 + components: + - type: Transform + pos: -42.5,34.5 + parent: 12 +- proto: HolopadCommandQm + entities: + - uid: 31885 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 12 +- proto: HolopadCommandRd + entities: + - uid: 31886 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 12 +- proto: HolopadCommandVault + entities: + - uid: 31887 + components: + - type: Transform + pos: -29.5,9.5 + parent: 12 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 31906 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 12 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 31908 + components: + - type: Transform + pos: 11.5,17.5 + parent: 12 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 32019 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 12 +- proto: HolopadEngineeringFront + entities: + - uid: 31907 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 12 +- proto: HolopadEngineeringStorage + entities: + - uid: 31911 + components: + - type: Transform + pos: 59.5,10.5 + parent: 12 +- proto: HolopadEngineeringTechVault + entities: + - uid: 32020 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 12 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 31909 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 12 +- proto: HolopadGeneralArcade + entities: + - uid: 32121 + components: + - type: Transform + pos: 3.5,51.5 + parent: 12 +- proto: HolopadGeneralArrivals + entities: + - uid: 32129 + components: + - type: Transform + pos: 18.5,66.5 + parent: 12 +- proto: HolopadGeneralCryosleep + entities: + - uid: 32122 + components: + - type: Transform + pos: -7.5,48.5 + parent: 12 +- proto: HolopadGeneralDisposals + entities: + - uid: 32123 + components: + - type: Transform + pos: 38.5,18.5 + parent: 12 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 32124 + components: + - type: Transform + pos: -10.5,9.5 + parent: 12 +- proto: HolopadGeneralLounge + entities: + - uid: 32125 + components: + - type: Transform + pos: 13.5,58.5 + parent: 12 +- proto: HolopadGeneralTools + entities: + - uid: 32126 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 12 +- proto: HolopadMedicalChemistry + entities: + - uid: 31895 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 12 +- proto: HolopadMedicalCryopods + entities: + - uid: 31896 + components: + - type: Transform + pos: -11.5,-55.5 + parent: 12 +- proto: HolopadMedicalFront + entities: + - uid: 31897 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 12 +- proto: HolopadMedicalMedbay + entities: + - uid: 31898 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 12 +- proto: HolopadMedicalMorgue + entities: + - uid: 31899 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 12 +- proto: HolopadMedicalSurgery + entities: + - uid: 31900 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 12 +- proto: HolopadMedicalVirology + entities: + - uid: 31901 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 12 +- proto: HolopadScienceAnomaly + entities: + - uid: 31893 + components: + - type: Transform + pos: -42.5,-36.5 + parent: 12 +- proto: HolopadScienceArtifact + entities: + - uid: 31892 + components: + - type: Transform + pos: -46.5,-24.5 + parent: 12 +- proto: HolopadScienceFront + entities: + - uid: 31894 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 12 +- proto: HolopadScienceRobotics + entities: + - uid: 31890 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 12 +- proto: HolopadSecurityArmory + entities: + - uid: 32021 + components: + - type: Transform + pos: -35.5,66.5 + parent: 12 +- proto: HolopadSecurityBreakroom + entities: + - uid: 32022 + components: + - type: Transform + pos: -33.5,39.5 + parent: 12 +- proto: HolopadSecurityBrig + entities: + - uid: 32026 + components: + - type: Transform + pos: -43.5,57.5 + parent: 12 +- proto: HolopadSecurityCourtroom + entities: + - uid: 32023 + components: + - type: Transform + pos: -34.5,30.5 + parent: 12 +- proto: HolopadSecurityDetective + entities: + - uid: 32030 + components: + - type: Transform + pos: 29.5,29.5 + parent: 12 +- proto: HolopadSecurityFront + entities: + - uid: 32029 + components: + - type: Transform + pos: -21.5,39.5 + parent: 12 +- proto: HolopadSecurityInterrogation + entities: + - uid: 32024 + components: + - type: Transform + pos: -40.5,44.5 + parent: 12 +- proto: HolopadSecurityLawyer + entities: + - uid: 32025 + components: + - type: Transform + pos: -23.5,0.5 + parent: 12 +- proto: HolopadSecurityPerma + entities: + - uid: 32028 + components: + - type: Transform + pos: -29.5,46.5 + parent: 12 +- proto: HolopadSecurityWarden + entities: + - uid: 32027 + components: + - type: Transform + pos: -39.5,53.5 + parent: 12 +- proto: HolopadServiceBar + entities: + - uid: 32057 + components: + - type: Transform + pos: 30.5,50.5 + parent: 12 +- proto: HolopadServiceBotany + entities: + - uid: 32073 + components: + - type: Transform + pos: 68.5,48.5 + parent: 12 +- proto: HolopadServiceBoxer + entities: + - uid: 32105 + components: + - type: Transform + pos: 13.5,49.5 + parent: 12 +- proto: HolopadServiceChapel + entities: + - uid: 32107 + components: + - type: Transform + pos: 53.5,37.5 + parent: 12 +- proto: HolopadServiceClownMime + entities: + - uid: 32109 + components: + - type: Transform + pos: 4.5,56.5 + parent: 12 +- proto: HolopadServiceJanitor + entities: + - uid: 32112 + components: + - type: Transform + pos: 45.5,17.5 + parent: 12 +- proto: HolopadServiceKitchen + entities: + - uid: 32116 + components: + - type: Transform + pos: 29.5,57.5 + parent: 12 +- proto: HolopadServiceLibrary + entities: + - uid: 32117 + components: + - type: Transform + pos: -6.5,76.5 + parent: 12 +- proto: HolopadServiceMusician + entities: + - uid: 32113 + components: + - type: Transform + pos: 21.5,29.5 + parent: 12 +- proto: HolopadServiceNewsroom + entities: + - uid: 32114 + components: + - type: Transform + pos: 11.5,36.5 + parent: 12 +- proto: HolopadServiceZookeeper + entities: + - uid: 32128 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 12 - proto: HospitalCurtainsOpen entities: - uid: 2637 From 52117fdc132addcd1582879e50391baadfbf7856 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:28:46 -0800 Subject: [PATCH 149/263] Marathon Power Rebalance + Gas Pipe Sensors, Holopads (#33938) * fix marathon power * add holopads * add requested changes --- Resources/Maps/marathon.yml | 7684 +++++++++++++++++++---------------- 1 file changed, 4257 insertions(+), 3427 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index e68f0a6a71..92647154a6 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -118,7 +118,7 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: fgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAHwAAAAACLwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAALwAAAAACHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADcAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACcAAAAAABAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAHwAAAAACLwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAALwAAAAACHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADcAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACcAAAAAABAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -234,7 +234,7 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: XQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA + tiles: XQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA version: 6 -2,-3: ind: -2,-3 @@ -665,6 +665,7 @@ entities: 2976: 4,-49 2977: 4,-50 3113: 20,-3 + 3148: -13,-50 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1019,11 +1020,11 @@ entities: 2432: -40,19 2914: -25,-45 2915: -26,-43 - 2916: -20,-45 2924: -14,-46 2926: -20,-49 2933: -21,-57 2958: -1,-42 + 3130: -20,-45 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -1056,7 +1057,6 @@ entities: 2227: 5,-24 2232: 9,-23 2436: -44,19 - 2913: -23,-45 2922: -16,-45 2923: -11,-46 2928: -16,-49 @@ -1064,6 +1064,7 @@ entities: 2947: -10,-42 2956: 3,-40 2957: 1,-42 + 3129: -23,-45 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw @@ -1385,7 +1386,6 @@ entities: 2434: -42,19 2435: -43,19 2919: -22,-45 - 2920: -21,-45 2959: -9,-42 2960: -8,-42 2961: -6,-42 @@ -1395,6 +1395,7 @@ entities: 2965: -3,-42 2966: -2,-42 2967: 2,-42 + 3131: -21,-45 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -4479,6 +4480,13 @@ entities: 3081: 10,19 3104: -2,-22 3105: 13,-13 + 3133: -15,-41 + 3134: -15,-42 + 3135: -15,-43 + 3136: -15,-44 + 3144: -1,-40 + 3145: -1,-41 + 3146: -1,-42 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -4569,8 +4577,8 @@ entities: 2202: -44,42 2203: -48,42 2650: -32,-11 - 2651: -33,-11 2653: -34,-11 + 3149: -33,-11 - node: color: '#334E6DC8' id: WarnLineGreyscaleW @@ -4657,6 +4665,7 @@ entities: 3070: -1,-4 3071: 7,1 3108: 10,-21 + 3132: -1,-47 - node: color: '#FFFFFFFF' id: WarnLineS @@ -4699,6 +4708,13 @@ entities: 3106: 11,-13 3107: -4,-22 3112: -6,-13 + 3137: -15,-41 + 3138: -15,-42 + 3139: -15,-43 + 3140: -15,-44 + 3141: -1,-40 + 3142: -1,-41 + 3143: -1,-42 - node: color: '#FFFFFFFF' id: WarnLineW @@ -7553,6 +7569,15 @@ entities: - type: Transform pos: -0.39634466,12.638008 parent: 30 +- proto: ActionToggleLight + entities: + - uid: 11287 + components: + - type: Transform + parent: 20092 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 20092 - proto: AirAlarm entities: - uid: 2454 @@ -7690,12 +7715,33 @@ entities: devices: - 8100 - 7567 + - uid: 9409 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 30 + - type: DeviceList + devices: + - 8609 + - 8454 + - 19771 + - 19770 - uid: 9477 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-40.5 parent: 30 + - uid: 9483 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 30 + - type: DeviceList + devices: + - 7443 + - 7098 + - 11281 - uid: 9671 components: - type: Transform @@ -9293,29 +9339,6 @@ entities: - 8335 - 11280 - 9839 - - uid: 22823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-49.5 - parent: 30 - - type: DeviceList - devices: - - 8609 - - 8454 - - 19770 - - 19771 - - uid: 22824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-46.5 - parent: 30 - - type: DeviceList - devices: - - 7443 - - 7098 - - 11281 - uid: 22825 components: - type: Transform @@ -31874,7 +31897,7 @@ entities: - uid: 18733 components: - type: Transform - pos: -9.605841,-33.273434 + pos: -8.064703,-35.559856 parent: 30 - uid: 18792 components: @@ -32123,11 +32146,6 @@ entities: - type: Transform pos: -44.5,18.5 parent: 30 - - uid: 4406 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 30 - uid: 4412 components: - type: Transform @@ -33238,11 +33256,6 @@ entities: - type: Transform pos: -24.5,-41.5 parent: 30 - - uid: 7097 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 30 - uid: 7101 components: - type: Transform @@ -33863,6 +33876,16 @@ entities: - type: Transform pos: -10.5,-39.5 parent: 30 + - uid: 8840 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 30 + - uid: 8841 + components: + - type: Transform + pos: -2.5,-51.5 + parent: 30 - uid: 9400 components: - type: Transform @@ -33943,6 +33966,11 @@ entities: - type: Transform pos: -13.5,-43.5 parent: 30 + - uid: 9486 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 30 - uid: 9493 components: - type: Transform @@ -33968,6 +33996,11 @@ entities: - type: Transform pos: -16.5,-34.5 parent: 30 + - uid: 9524 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 30 - uid: 9534 components: - type: Transform @@ -34123,21 +34156,31 @@ entities: - type: Transform pos: -7.5,-42.5 parent: 30 + - uid: 9571 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 30 - uid: 9576 components: - type: Transform pos: -25.5,-41.5 parent: 30 - - uid: 9577 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 30 - uid: 9578 components: - type: Transform pos: -21.5,-41.5 parent: 30 + - uid: 9581 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 30 + - uid: 9583 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 30 - uid: 9594 components: - type: Transform @@ -34188,6 +34231,11 @@ entities: - type: Transform pos: -7.5,-39.5 parent: 30 + - uid: 9821 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 30 - uid: 9830 components: - type: Transform @@ -34283,16 +34331,6 @@ entities: - type: Transform pos: -54.5,-62.5 parent: 30 - - uid: 10204 - components: - - type: Transform - pos: -0.5,-47.5 - parent: 30 - - uid: 10211 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 30 - uid: 10271 components: - type: Transform @@ -34353,11 +34391,6 @@ entities: - type: Transform pos: -16.5,-36.5 parent: 30 - - uid: 10547 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 30 - uid: 10586 components: - type: Transform @@ -34428,11 +34461,6 @@ entities: - type: Transform pos: -19.5,-41.5 parent: 30 - - uid: 11070 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 30 - uid: 11078 components: - type: Transform @@ -34473,11 +34501,6 @@ entities: - type: Transform pos: -13.5,-40.5 parent: 30 - - uid: 11124 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 30 - uid: 11142 components: - type: Transform @@ -34493,11 +34516,6 @@ entities: - type: Transform pos: -6.5,-42.5 parent: 30 - - uid: 11291 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 30 - uid: 11307 components: - type: Transform @@ -37983,11 +38001,6 @@ entities: - type: Transform pos: -13.5,-31.5 parent: 30 - - uid: 19424 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 30 - uid: 19785 components: - type: Transform @@ -38428,6 +38441,106 @@ entities: - type: Transform pos: 0.5,84.5 parent: 30 + - uid: 22876 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 30 + - uid: 22882 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 30 + - uid: 22883 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 30 + - uid: 22884 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 30 + - uid: 22885 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 30 + - uid: 22888 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 30 + - uid: 22889 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 30 + - uid: 22890 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 30 + - uid: 22891 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 30 + - uid: 22892 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 30 + - uid: 22893 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 30 + - uid: 22894 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 30 + - uid: 22895 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 30 + - uid: 22896 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 30 + - uid: 22900 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 30 + - uid: 22901 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 30 + - uid: 22902 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 30 + - uid: 22980 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 30 + - uid: 22981 + components: + - type: Transform + pos: -2.5,-47.5 + parent: 30 + - uid: 22982 + components: + - type: Transform + pos: -1.5,-47.5 + parent: 30 - proto: CableHVStack entities: - uid: 1639 @@ -38463,7 +38576,7 @@ entities: - uid: 18859 components: - type: Transform - pos: -9.418341,-33.47656 + pos: -7.8928285,-35.622356 parent: 30 - proto: CableMV entities: @@ -44042,7 +44155,7 @@ entities: - uid: 18734 components: - type: Transform - pos: -9.512091,-33.38281 + pos: -8.314703,-35.54423 parent: 30 - proto: CableMVStack10 entities: @@ -44083,12 +44196,27 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-44.5 parent: 30 + - uid: 9482 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 30 - uid: 9499 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-34.5 parent: 30 + - uid: 9527 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 30 + - uid: 10135 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 30 - uid: 10503 components: - type: Transform @@ -46120,6 +46248,12 @@ entities: - type: Transform pos: 27.5,-18.5 parent: 30 + - uid: 7225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-45.5 + parent: 30 - uid: 7975 components: - type: Transform @@ -46239,12 +46373,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-44.5 parent: 30 - - uid: 9571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-44.5 - parent: 30 - uid: 9613 components: - type: Transform @@ -46275,12 +46403,6 @@ entities: - type: Transform pos: -40.5,-24.5 parent: 30 - - uid: 9821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-46.5 - parent: 30 - uid: 9831 components: - type: Transform @@ -46316,6 +46438,12 @@ entities: - type: Transform pos: -55.5,-8.5 parent: 30 + - uid: 10201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-45.5 + parent: 30 - uid: 10205 components: - type: Transform @@ -46326,6 +46454,12 @@ entities: - type: Transform pos: -48.5,-8.5 parent: 30 + - uid: 10589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-45.5 + parent: 30 - uid: 10659 components: - type: Transform @@ -46351,18 +46485,6 @@ entities: - type: Transform pos: -11.5,-56.5 parent: 30 - - uid: 11093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-45.5 - parent: 30 - - uid: 11094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-44.5 - parent: 30 - uid: 11121 components: - type: Transform @@ -46415,18 +46537,6 @@ entities: - type: Transform pos: -9.5,-56.5 parent: 30 - - uid: 11287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-44.5 - parent: 30 - - uid: 11288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-44.5 - parent: 30 - uid: 11314 components: - type: Transform @@ -48921,6 +49031,11 @@ entities: - type: Transform pos: 21.5,-38.5 parent: 30 + - uid: 22979 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 30 - proto: Chair entities: - uid: 586 @@ -49385,6 +49500,12 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-41.5 parent: 30 + - uid: 10400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,1.5 + parent: 30 - uid: 11360 components: - type: Transform @@ -49411,12 +49532,6 @@ entities: - type: Transform pos: 7.5,-0.5 parent: 30 - - uid: 11613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,1.5 - parent: 30 - uid: 11708 components: - type: Transform @@ -54064,6 +54179,25 @@ entities: linkedPorts: 22233: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 11291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-44.5 + parent: 30 + - uid: 20571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-27.5 + parent: 30 + - uid: 22899 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 30 - proto: computerBodyScanner entities: - uid: 7584 @@ -54289,10 +54423,10 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-44.5 parent: 30 - - uid: 10589 + - uid: 10204 components: - type: Transform - rot: 1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -8.5,-45.5 parent: 30 - uid: 20886 @@ -54372,11 +54506,10 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 30 - - uid: 7225 + - uid: 7097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-45.5 + pos: -10.5,-38.5 parent: 30 - uid: 15966 components: @@ -54823,18 +54956,23 @@ entities: parent: 30 - proto: CrateEngineeringAMEJar entities: - - uid: 18993 + - uid: 22897 components: - type: Transform - pos: -13.5,-48.5 + pos: -7.5,-49.5 parent: 30 - proto: CrateEngineeringAMEShielding entities: - - uid: 19186 + - uid: 10213 components: - type: Transform pos: -13.5,-49.5 parent: 30 + - uid: 10547 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 30 - proto: CrateEngineeringCableBulk entities: - uid: 3520 @@ -54923,10 +55061,10 @@ entities: - 0 - proto: CrateEngineeringCableHV entities: - - uid: 10201 + - uid: 10211 components: - type: Transform - pos: -5.5,-45.5 + pos: -2.5,-41.5 parent: 30 - proto: CrateEngineeringCableLV entities: @@ -55826,7 +55964,7 @@ entities: parent: 30 - proto: DefaultStationBeaconTechVault entities: - - uid: 20571 + - uid: 22953 components: - type: Transform pos: 4.5,22.5 @@ -61719,13 +61857,6 @@ entities: - type: Transform pos: 24.571924,11.2297535 parent: 30 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 21609 - components: - - type: Transform - pos: -3.6880527,63.936996 - parent: 30 - proto: ElectricGuitarInstrument entities: - uid: 742 @@ -64897,7 +65028,7 @@ entities: - type: DeviceNetwork deviceLists: - 13959 - - 22824 + - 9483 - 13957 - uid: 11282 components: @@ -65229,7 +65360,7 @@ entities: deviceLists: - 13957 - 13959 - - 22823 + - 9409 - uid: 19771 components: - type: Transform @@ -65239,7 +65370,7 @@ entities: deviceLists: - 13957 - 13959 - - 22823 + - 9409 - uid: 19806 components: - type: Transform @@ -65716,20 +65847,18 @@ entities: - type: Transform pos: 36.58802,28.504393 parent: 30 -- proto: FloraTree03 - entities: - - uid: 22214 - components: - - type: Transform - pos: -63.548233,-52.495842 - parent: 30 -- proto: FloraTree06 +- proto: FloraTree entities: - uid: 17962 components: - type: Transform pos: -72.29823,-43.406895 parent: 30 + - uid: 22214 + components: + - type: Transform + pos: -63.548233,-52.495842 + parent: 30 - proto: FloraTreeChristmas01 entities: - uid: 22603 @@ -65745,7 +65874,7 @@ entities: rot: 3.141592653589793 rad pos: -2.5,8.5 parent: 30 -- proto: FloraTreeLarge03 +- proto: FloraTreeLarge entities: - uid: 22215 components: @@ -66139,6 +66268,13 @@ entities: - type: Transform pos: -15.331403,8.303028 parent: 30 +- proto: GameMasterCircuitBoard + entities: + - uid: 21609 + components: + - type: Transform + pos: -3.6880527,63.936996 + parent: 30 - proto: GasAnalyzer entities: - uid: 9369 @@ -66172,7 +66308,7 @@ entities: pos: -32.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - proto: GasMinerCarbonDioxide entities: - uid: 8691 @@ -66383,7 +66519,7 @@ entities: pos: -48.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 941 components: - type: Transform @@ -66391,21 +66527,21 @@ entities: pos: -53.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 943 components: - type: Transform pos: -47.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 946 components: - type: Transform pos: -48.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2474 components: - type: Transform @@ -66413,7 +66549,7 @@ entities: pos: -50.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2475 components: - type: Transform @@ -66421,14 +66557,14 @@ entities: pos: -49.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2576 components: - type: Transform pos: -33.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2577 components: - type: Transform @@ -66436,7 +66572,7 @@ entities: pos: -31.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2578 components: - type: Transform @@ -66444,7 +66580,7 @@ entities: pos: -29.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2579 components: - type: Transform @@ -66452,7 +66588,7 @@ entities: pos: -35.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2681 components: - type: Transform @@ -66460,7 +66596,7 @@ entities: pos: -50.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2700 components: - type: Transform @@ -66468,14 +66604,14 @@ entities: pos: -50.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2701 components: - type: Transform pos: -46.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2711 components: - type: Transform @@ -66483,7 +66619,7 @@ entities: pos: -47.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2712 components: - type: Transform @@ -66491,7 +66627,7 @@ entities: pos: -51.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2725 components: - type: Transform @@ -66499,21 +66635,21 @@ entities: pos: -51.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2726 components: - type: Transform pos: -47.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2741 components: - type: Transform pos: -28.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2774 components: - type: Transform @@ -66521,7 +66657,7 @@ entities: pos: -36.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3039 components: - type: Transform @@ -66529,14 +66665,14 @@ entities: pos: -31.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3040 components: - type: Transform pos: -25.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3078 components: - type: Transform @@ -66544,7 +66680,7 @@ entities: pos: -40.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3114 components: - type: Transform @@ -66552,14 +66688,14 @@ entities: pos: -47.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3116 components: - type: Transform pos: -44.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3271 components: - type: Transform @@ -66567,7 +66703,7 @@ entities: pos: -49.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3272 components: - type: Transform @@ -66575,21 +66711,21 @@ entities: pos: -51.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3286 components: - type: Transform pos: -57.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3307 components: - type: Transform pos: -49.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3336 components: - type: Transform @@ -66597,7 +66733,7 @@ entities: pos: -16.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3356 components: - type: Transform @@ -66605,21 +66741,21 @@ entities: pos: -23.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3368 components: - type: Transform pos: -24.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3372 components: - type: Transform pos: -23.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3373 components: - type: Transform @@ -66627,7 +66763,7 @@ entities: pos: -26.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3375 components: - type: Transform @@ -66635,7 +66771,7 @@ entities: pos: -24.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4141 components: - type: Transform @@ -66643,14 +66779,14 @@ entities: pos: -63.5,-62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4424 components: - type: Transform pos: -24.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6148 components: - type: Transform @@ -66658,28 +66794,28 @@ entities: pos: -14.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6158 components: - type: Transform pos: -4.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6198 components: - type: Transform pos: -3.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6200 components: - type: Transform pos: -7.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6201 components: - type: Transform @@ -66687,7 +66823,7 @@ entities: pos: -11.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6202 components: - type: Transform @@ -66695,7 +66831,7 @@ entities: pos: -11.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6203 components: - type: Transform @@ -66703,7 +66839,7 @@ entities: pos: -15.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6250 components: - type: Transform @@ -66711,7 +66847,7 @@ entities: pos: -18.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6251 components: - type: Transform @@ -66719,14 +66855,14 @@ entities: pos: -18.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6255 components: - type: Transform pos: -21.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6260 components: - type: Transform @@ -66734,33 +66870,35 @@ entities: pos: -26.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6262 components: - type: Transform pos: -26.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6789 components: - type: Transform pos: -37.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 6934 components: - type: Transform pos: -17.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6936 components: - type: Transform pos: -18.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6961 components: - type: Transform @@ -66768,25 +66906,31 @@ entities: pos: -18.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7001 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-11.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7003 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-10.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7066 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-11.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7113 components: - type: Transform @@ -66794,14 +66938,14 @@ entities: pos: -30.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7154 components: - type: Transform pos: -30.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7204 components: - type: Transform @@ -66809,7 +66953,7 @@ entities: pos: -34.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7353 components: - type: Transform @@ -66817,14 +66961,14 @@ entities: pos: -19.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7376 components: - type: Transform pos: -5.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7408 components: - type: Transform @@ -66832,13 +66976,15 @@ entities: pos: -19.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7564 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-12.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7762 components: - type: Transform @@ -66846,13 +66992,15 @@ entities: pos: -29.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7887 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-12.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7918 components: - type: Transform @@ -66860,7 +67008,7 @@ entities: pos: -32.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8063 components: - type: Transform @@ -66868,7 +67016,7 @@ entities: pos: -28.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8076 components: - type: Transform @@ -66876,7 +67024,7 @@ entities: pos: -20.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8219 components: - type: Transform @@ -66884,7 +67032,7 @@ entities: pos: -24.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8220 components: - type: Transform @@ -66892,7 +67040,7 @@ entities: pos: -22.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8576 components: - type: Transform @@ -66948,7 +67096,7 @@ entities: pos: 16.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8786 components: - type: Transform @@ -66956,14 +67104,14 @@ entities: pos: 16.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8868 components: - type: Transform pos: 7.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8869 components: - type: Transform @@ -66971,7 +67119,7 @@ entities: pos: 7.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8871 components: - type: Transform @@ -66979,14 +67127,14 @@ entities: pos: 11.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8911 components: - type: Transform pos: 11.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8933 components: - type: Transform @@ -67002,21 +67150,21 @@ entities: pos: 13.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8966 components: - type: Transform pos: 13.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8978 components: - type: Transform pos: 9.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9023 components: - type: Transform @@ -67031,7 +67179,7 @@ entities: pos: -13.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9063 components: - type: Transform @@ -67039,21 +67187,21 @@ entities: pos: 6.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9262 components: - type: Transform pos: 21.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9428 components: - type: Transform pos: -11.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9436 components: - type: Transform @@ -67061,14 +67209,14 @@ entities: pos: -13.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9653 components: - type: Transform pos: 8.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9681 components: - type: Transform @@ -67076,7 +67224,7 @@ entities: pos: 6.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9750 components: - type: Transform @@ -67084,7 +67232,7 @@ entities: pos: -3.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9751 components: - type: Transform @@ -67092,7 +67240,7 @@ entities: pos: -3.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9752 components: - type: Transform @@ -67100,14 +67248,14 @@ entities: pos: -1.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9770 components: - type: Transform pos: 0.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9783 components: - type: Transform @@ -67115,7 +67263,7 @@ entities: pos: 6.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9790 components: - type: Transform @@ -67131,7 +67279,7 @@ entities: pos: 8.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9892 components: - type: Transform @@ -67139,7 +67287,7 @@ entities: pos: -24.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9898 components: - type: Transform @@ -67147,14 +67295,14 @@ entities: pos: -22.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9919 components: - type: Transform pos: -11.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9983 components: - type: Transform @@ -67162,7 +67310,7 @@ entities: pos: 7.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10604 components: - type: Transform @@ -67170,7 +67318,7 @@ entities: pos: -1.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10606 components: - type: Transform @@ -67178,7 +67326,7 @@ entities: pos: -12.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11130 components: - type: Transform @@ -67186,7 +67334,7 @@ entities: pos: -1.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11167 components: - type: Transform @@ -67209,7 +67357,7 @@ entities: pos: 34.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11778 components: - type: Transform @@ -67217,14 +67365,14 @@ entities: pos: 30.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11873 components: - type: Transform pos: 33.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11874 components: - type: Transform @@ -67232,14 +67380,14 @@ entities: pos: 5.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11982 components: - type: Transform pos: 21.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12002 components: - type: Transform @@ -67247,14 +67395,14 @@ entities: pos: 33.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12488 components: - type: Transform pos: 20.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12514 components: - type: Transform @@ -67262,7 +67410,7 @@ entities: pos: 21.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12515 components: - type: Transform @@ -67270,14 +67418,14 @@ entities: pos: 23.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12588 components: - type: Transform pos: 26.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12589 components: - type: Transform @@ -67285,7 +67433,7 @@ entities: pos: 26.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12610 components: - type: Transform @@ -67293,7 +67441,7 @@ entities: pos: 27.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12618 components: - type: Transform @@ -67301,7 +67449,7 @@ entities: pos: 26.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12639 components: - type: Transform @@ -67309,14 +67457,14 @@ entities: pos: -24.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12659 components: - type: Transform pos: -52.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12750 components: - type: Transform @@ -67336,7 +67484,7 @@ entities: pos: -62.5,-62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12883 components: - type: Transform @@ -67344,7 +67492,7 @@ entities: pos: 21.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12903 components: - type: Transform @@ -67352,7 +67500,7 @@ entities: pos: 43.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12909 components: - type: Transform @@ -67360,7 +67508,7 @@ entities: pos: 42.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12926 components: - type: Transform @@ -67374,14 +67522,14 @@ entities: pos: 23.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12995 components: - type: Transform pos: 18.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12996 components: - type: Transform @@ -67389,7 +67537,7 @@ entities: pos: 18.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13016 components: - type: Transform @@ -67397,7 +67545,7 @@ entities: pos: 12.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13024 components: - type: Transform @@ -67405,7 +67553,7 @@ entities: pos: 12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13036 components: - type: Transform @@ -67413,7 +67561,7 @@ entities: pos: 21.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13038 components: - type: Transform @@ -67421,14 +67569,14 @@ entities: pos: 17.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13039 components: - type: Transform pos: 17.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13341 components: - type: Transform @@ -67436,7 +67584,7 @@ entities: pos: 40.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13791 components: - type: Transform @@ -67444,7 +67592,7 @@ entities: pos: 29.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14450 components: - type: Transform @@ -67452,7 +67600,7 @@ entities: pos: -25.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14451 components: - type: Transform @@ -67460,7 +67608,7 @@ entities: pos: -25.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14978 components: - type: Transform @@ -67468,7 +67616,7 @@ entities: pos: 16.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15452 components: - type: Transform @@ -67476,7 +67624,7 @@ entities: pos: 52.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15888 components: - type: Transform @@ -67484,7 +67632,7 @@ entities: pos: 42.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15890 components: - type: Transform @@ -67492,7 +67640,7 @@ entities: pos: 32.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15963 components: - type: Transform @@ -67500,7 +67648,7 @@ entities: pos: 42.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16099 components: - type: Transform @@ -67508,7 +67656,7 @@ entities: pos: 32.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17723 components: - type: Transform @@ -67527,7 +67675,7 @@ entities: pos: 16.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18075 components: - type: Transform @@ -67535,7 +67683,7 @@ entities: pos: 16.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18385 components: - type: Transform @@ -67543,7 +67691,7 @@ entities: pos: -45.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18386 components: - type: Transform @@ -67551,7 +67699,7 @@ entities: pos: -62.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18415 components: - type: Transform @@ -67559,7 +67707,7 @@ entities: pos: -44.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18447 components: - type: Transform @@ -67567,7 +67715,7 @@ entities: pos: -63.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18478 components: - type: Transform @@ -67575,7 +67723,7 @@ entities: pos: -62.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18479 components: - type: Transform @@ -67583,7 +67731,7 @@ entities: pos: -61.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18484 components: - type: Transform @@ -67591,21 +67739,21 @@ entities: pos: -65.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18485 components: - type: Transform pos: -58.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18498 components: - type: Transform pos: -62.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18513 components: - type: Transform @@ -67613,7 +67761,7 @@ entities: pos: -78.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18608 components: - type: Transform @@ -67621,7 +67769,7 @@ entities: pos: -56.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18612 components: - type: Transform @@ -67629,7 +67777,7 @@ entities: pos: -68.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18613 components: - type: Transform @@ -67637,7 +67785,7 @@ entities: pos: -67.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18621 components: - type: Transform @@ -67645,7 +67793,7 @@ entities: pos: -58.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18648 components: - type: Transform @@ -67653,7 +67801,7 @@ entities: pos: -79.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18661 components: - type: Transform @@ -67661,7 +67809,7 @@ entities: pos: -77.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18743 components: - type: Transform @@ -67669,7 +67817,7 @@ entities: pos: -76.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20642 components: - type: Transform @@ -67692,7 +67840,7 @@ entities: pos: -4.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 20663 components: - type: Transform @@ -67708,14 +67856,14 @@ entities: pos: -2.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 20671 components: - type: Transform pos: -1.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 20672 components: - type: Transform @@ -67729,7 +67877,7 @@ entities: pos: -2.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 21262 components: - type: Transform @@ -67737,14 +67885,14 @@ entities: pos: 21.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21269 components: - type: Transform pos: 27.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21270 components: - type: Transform @@ -67752,7 +67900,7 @@ entities: pos: 27.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21986 components: - type: Transform @@ -67760,7 +67908,7 @@ entities: pos: -0.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22264 components: - type: Transform @@ -67768,14 +67916,14 @@ entities: pos: 42.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22266 components: - type: Transform pos: 43.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22681 components: - type: Transform @@ -67783,7 +67931,7 @@ entities: pos: 6.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22690 components: - type: Transform @@ -67791,14 +67939,14 @@ entities: pos: 5.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22692 components: - type: Transform pos: 5.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22693 components: - type: Transform @@ -67806,35 +67954,35 @@ entities: pos: 4.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22781 components: - type: Transform pos: -39.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22788 components: - type: Transform pos: -37.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22799 components: - type: Transform pos: -35.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22811 components: - type: Transform pos: -29.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 2101 @@ -67843,269 +67991,342 @@ entities: pos: 32.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2430 components: - type: Transform pos: -36.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2702 components: - type: Transform pos: -48.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2770 components: - type: Transform pos: -36.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2805 components: - type: Transform pos: -10.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2807 components: - type: Transform pos: -3.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2843 components: - type: Transform pos: 8.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2883 components: - type: Transform pos: -31.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2888 components: - type: Transform pos: 29.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2909 components: - type: Transform pos: -36.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2910 components: - type: Transform pos: -34.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2950 components: - type: Transform pos: -1.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2957 components: - type: Transform pos: 5.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2986 components: - type: Transform pos: 10.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7002 components: - type: Transform pos: -37.5,-10.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7071 components: - type: Transform pos: -29.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7086 components: - type: Transform pos: -34.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7603 components: - type: Transform pos: -33.5,-11.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7946 components: - type: Transform pos: -34.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8021 components: - type: Transform pos: -28.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8779 components: - type: Transform pos: 10.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8845 components: - type: Transform pos: 11.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8866 components: - type: Transform pos: 5.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8870 components: - type: Transform pos: 13.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8955 components: - type: Transform pos: 11.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9049 components: - type: Transform pos: 3.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9050 components: - type: Transform pos: -34.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10136 components: - type: Transform pos: -12.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10439 components: - type: Transform pos: -6.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11188 components: - type: Transform pos: -18.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11189 components: - type: Transform pos: 0.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11190 components: - type: Transform pos: -16.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11876 components: - type: Transform pos: 21.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11937 components: - type: Transform pos: 20.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12001 components: - type: Transform pos: 30.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12541 components: - type: Transform pos: 21.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12872 components: - type: Transform pos: 23.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12886 components: - type: Transform pos: 21.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14462 components: - type: Transform pos: 21.5,11.5 parent: 30 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeSensor + entities: + - uid: 10653 + components: + - type: MetaData + name: gas pipe sensor (Cryogenics) + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: Label + currentLabel: Cryogenics + - type: NameModifier + baseName: gas pipe sensor + - uid: 11093 + components: + - type: MetaData + name: gas pipe sensor (TEG Mix) + - type: Transform + pos: 6.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - type: Label + currentLabel: TEG Mix + - type: NameModifier + baseName: gas pipe sensor +- proto: GasPipeSensorDistribution + entities: + - uid: 11070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 11124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 11094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 + parent: 30 - type: AtmosPipeColor color: '#FF1212FF' +- proto: GasPipeSensorWaste + entities: + - uid: 11060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 239 @@ -68115,7 +68336,7 @@ entities: pos: -50.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 475 components: - type: Transform @@ -68123,7 +68344,7 @@ entities: pos: -16.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 874 components: - type: Transform @@ -68131,7 +68352,7 @@ entities: pos: -52.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 875 components: - type: Transform @@ -68139,7 +68360,7 @@ entities: pos: -50.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 877 components: - type: Transform @@ -68147,7 +68368,7 @@ entities: pos: -51.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 909 components: - type: Transform @@ -68155,7 +68376,7 @@ entities: pos: -48.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 935 components: - type: Transform @@ -68163,7 +68384,7 @@ entities: pos: -47.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 940 components: - type: Transform @@ -68171,7 +68392,7 @@ entities: pos: -46.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 942 components: - type: Transform @@ -68179,28 +68400,28 @@ entities: pos: -49.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 944 components: - type: Transform pos: -48.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 947 components: - type: Transform pos: -45.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 964 components: - type: Transform pos: -44.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1076 components: - type: Transform @@ -68208,7 +68429,7 @@ entities: pos: -47.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1307 components: - type: Transform @@ -68216,7 +68437,7 @@ entities: pos: -52.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1308 components: - type: Transform @@ -68224,14 +68445,14 @@ entities: pos: -51.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1415 components: - type: Transform pos: -47.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1929 components: - type: Transform @@ -68239,14 +68460,14 @@ entities: pos: -31.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2100 components: - type: Transform pos: 32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2432 components: - type: Transform @@ -68254,7 +68475,7 @@ entities: pos: -36.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2433 components: - type: Transform @@ -68262,7 +68483,7 @@ entities: pos: -36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2434 components: - type: Transform @@ -68270,7 +68491,7 @@ entities: pos: -36.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2435 components: - type: Transform @@ -68278,7 +68499,7 @@ entities: pos: -36.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2436 components: - type: Transform @@ -68286,7 +68507,7 @@ entities: pos: -34.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2437 components: - type: Transform @@ -68294,7 +68515,7 @@ entities: pos: -34.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2438 components: - type: Transform @@ -68302,7 +68523,7 @@ entities: pos: -36.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2439 components: - type: Transform @@ -68310,7 +68531,7 @@ entities: pos: -34.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2443 components: - type: Transform @@ -68318,7 +68539,7 @@ entities: pos: -35.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2444 components: - type: Transform @@ -68326,7 +68547,7 @@ entities: pos: -36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2445 components: - type: Transform @@ -68334,7 +68555,7 @@ entities: pos: -37.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2446 components: - type: Transform @@ -68342,7 +68563,7 @@ entities: pos: -38.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2447 components: - type: Transform @@ -68350,7 +68571,7 @@ entities: pos: -39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2448 components: - type: Transform @@ -68358,7 +68579,7 @@ entities: pos: -37.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2449 components: - type: Transform @@ -68366,7 +68587,7 @@ entities: pos: -38.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2450 components: - type: Transform @@ -68374,7 +68595,7 @@ entities: pos: -39.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2455 components: - type: Transform @@ -68382,7 +68603,7 @@ entities: pos: -40.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2457 components: - type: Transform @@ -68390,7 +68611,7 @@ entities: pos: -40.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2460 components: - type: Transform @@ -68398,7 +68619,7 @@ entities: pos: -42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2461 components: - type: Transform @@ -68406,7 +68627,7 @@ entities: pos: -44.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2462 components: - type: Transform @@ -68414,7 +68635,7 @@ entities: pos: -43.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2464 components: - type: Transform @@ -68422,7 +68643,7 @@ entities: pos: -46.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2465 components: - type: Transform @@ -68430,7 +68651,7 @@ entities: pos: -47.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2466 components: - type: Transform @@ -68438,7 +68659,7 @@ entities: pos: -48.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2467 components: - type: Transform @@ -68446,7 +68667,7 @@ entities: pos: -43.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2468 components: - type: Transform @@ -68454,7 +68675,7 @@ entities: pos: -44.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2469 components: - type: Transform @@ -68462,7 +68683,7 @@ entities: pos: -45.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2470 components: - type: Transform @@ -68470,7 +68691,7 @@ entities: pos: -46.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2471 components: - type: Transform @@ -68478,7 +68699,7 @@ entities: pos: -47.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2472 components: - type: Transform @@ -68486,7 +68707,7 @@ entities: pos: -48.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2473 components: - type: Transform @@ -68494,105 +68715,105 @@ entities: pos: -49.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2476 components: - type: Transform pos: -49.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2477 components: - type: Transform pos: -49.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2478 components: - type: Transform pos: -50.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2479 components: - type: Transform pos: -50.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2480 components: - type: Transform pos: -50.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2481 components: - type: Transform pos: -50.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2484 components: - type: Transform pos: -41.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2485 components: - type: Transform pos: -41.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2486 components: - type: Transform pos: -42.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2487 components: - type: Transform pos: -42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2488 components: - type: Transform pos: -42.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2489 components: - type: Transform pos: -42.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2494 components: - type: Transform pos: -36.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2495 components: - type: Transform pos: -36.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2498 components: - type: Transform @@ -68600,7 +68821,7 @@ entities: pos: -34.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2499 components: - type: Transform @@ -68608,7 +68829,7 @@ entities: pos: -34.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2500 components: - type: Transform @@ -68616,7 +68837,7 @@ entities: pos: -34.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2501 components: - type: Transform @@ -68624,7 +68845,7 @@ entities: pos: -34.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2502 components: - type: Transform @@ -68632,7 +68853,7 @@ entities: pos: -36.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2505 components: - type: Transform @@ -68640,7 +68861,7 @@ entities: pos: -36.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2506 components: - type: Transform @@ -68648,7 +68869,7 @@ entities: pos: -36.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2511 components: - type: Transform @@ -68656,7 +68877,7 @@ entities: pos: -34.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2514 components: - type: Transform @@ -68664,7 +68885,7 @@ entities: pos: -32.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2515 components: - type: Transform @@ -68672,7 +68893,7 @@ entities: pos: -31.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2516 components: - type: Transform @@ -68680,7 +68901,7 @@ entities: pos: -31.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2517 components: - type: Transform @@ -68688,7 +68909,7 @@ entities: pos: -31.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2518 components: - type: Transform @@ -68696,7 +68917,7 @@ entities: pos: -33.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2522 components: - type: Transform @@ -68704,7 +68925,7 @@ entities: pos: -31.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2528 components: - type: Transform @@ -68712,7 +68933,7 @@ entities: pos: -34.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2529 components: - type: Transform @@ -68720,7 +68941,7 @@ entities: pos: -35.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2530 components: - type: Transform @@ -68728,7 +68949,7 @@ entities: pos: -36.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2533 components: - type: Transform @@ -68736,7 +68957,7 @@ entities: pos: -39.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2534 components: - type: Transform @@ -68744,7 +68965,7 @@ entities: pos: -32.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2535 components: - type: Transform @@ -68752,7 +68973,7 @@ entities: pos: -33.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2536 components: - type: Transform @@ -68760,7 +68981,7 @@ entities: pos: -34.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2537 components: - type: Transform @@ -68768,7 +68989,7 @@ entities: pos: -35.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2538 components: - type: Transform @@ -68776,7 +68997,7 @@ entities: pos: -36.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2539 components: - type: Transform @@ -68784,7 +69005,7 @@ entities: pos: -37.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2540 components: - type: Transform @@ -68792,7 +69013,7 @@ entities: pos: -38.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2542 components: - type: Transform @@ -68800,7 +69021,7 @@ entities: pos: -40.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2543 components: - type: Transform @@ -68808,49 +69029,49 @@ entities: pos: -40.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2555 components: - type: Transform pos: -33.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2556 components: - type: Transform pos: -33.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2557 components: - type: Transform pos: -33.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2558 components: - type: Transform pos: -31.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2559 components: - type: Transform pos: -31.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2560 components: - type: Transform pos: -31.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2561 components: - type: Transform @@ -68858,7 +69079,7 @@ entities: pos: -32.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2562 components: - type: Transform @@ -68866,7 +69087,7 @@ entities: pos: -31.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2563 components: - type: Transform @@ -68874,7 +69095,7 @@ entities: pos: -30.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2564 components: - type: Transform @@ -68882,7 +69103,7 @@ entities: pos: -29.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2565 components: - type: Transform @@ -68890,7 +69111,7 @@ entities: pos: -28.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2566 components: - type: Transform @@ -68898,7 +69119,7 @@ entities: pos: -27.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2567 components: - type: Transform @@ -68906,7 +69127,7 @@ entities: pos: -26.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2568 components: - type: Transform @@ -68914,7 +69135,7 @@ entities: pos: -30.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2569 components: - type: Transform @@ -68922,7 +69143,7 @@ entities: pos: -29.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2570 components: - type: Transform @@ -68930,7 +69151,7 @@ entities: pos: -28.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2571 components: - type: Transform @@ -68938,7 +69159,7 @@ entities: pos: -27.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2572 components: - type: Transform @@ -68946,7 +69167,7 @@ entities: pos: -26.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2575 components: - type: Transform @@ -68954,7 +69175,7 @@ entities: pos: -33.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2584 components: - type: Transform @@ -68962,7 +69183,7 @@ entities: pos: -29.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2585 components: - type: Transform @@ -68970,7 +69191,7 @@ entities: pos: -35.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2586 components: - type: Transform @@ -68978,7 +69199,7 @@ entities: pos: -35.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2587 components: - type: Transform @@ -68986,7 +69207,7 @@ entities: pos: -35.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2588 components: - type: Transform @@ -68994,7 +69215,7 @@ entities: pos: -29.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2589 components: - type: Transform @@ -69002,7 +69223,7 @@ entities: pos: -29.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2590 components: - type: Transform @@ -69010,7 +69231,7 @@ entities: pos: -30.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2591 components: - type: Transform @@ -69018,91 +69239,91 @@ entities: pos: -34.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2602 components: - type: Transform pos: -46.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2603 components: - type: Transform pos: -48.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2604 components: - type: Transform pos: -48.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2605 components: - type: Transform pos: -48.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2606 components: - type: Transform pos: -44.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2607 components: - type: Transform pos: -44.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2608 components: - type: Transform pos: -44.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2609 components: - type: Transform pos: -42.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2610 components: - type: Transform pos: -40.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2611 components: - type: Transform pos: -40.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2612 components: - type: Transform pos: -40.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2613 components: - type: Transform pos: -38.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2614 components: - type: Transform @@ -69110,7 +69331,7 @@ entities: pos: -35.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2615 components: - type: Transform @@ -69118,7 +69339,7 @@ entities: pos: -36.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2616 components: - type: Transform @@ -69126,7 +69347,7 @@ entities: pos: -37.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2617 components: - type: Transform @@ -69134,7 +69355,7 @@ entities: pos: -39.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2618 components: - type: Transform @@ -69142,7 +69363,7 @@ entities: pos: -40.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2620 components: - type: Transform @@ -69150,7 +69371,7 @@ entities: pos: -43.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2621 components: - type: Transform @@ -69158,7 +69379,7 @@ entities: pos: -44.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2622 components: - type: Transform @@ -69166,7 +69387,7 @@ entities: pos: -45.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2623 components: - type: Transform @@ -69174,7 +69395,7 @@ entities: pos: -37.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2624 components: - type: Transform @@ -69182,7 +69403,7 @@ entities: pos: -38.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2625 components: - type: Transform @@ -69190,7 +69411,7 @@ entities: pos: -39.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2626 components: - type: Transform @@ -69198,7 +69419,7 @@ entities: pos: -41.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2627 components: - type: Transform @@ -69206,7 +69427,7 @@ entities: pos: -42.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2629 components: - type: Transform @@ -69214,7 +69435,7 @@ entities: pos: -45.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2630 components: - type: Transform @@ -69222,7 +69443,7 @@ entities: pos: -46.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2631 components: - type: Transform @@ -69230,7 +69451,7 @@ entities: pos: -47.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2632 components: - type: Transform @@ -69238,7 +69459,7 @@ entities: pos: -46.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2633 components: - type: Transform @@ -69246,7 +69467,7 @@ entities: pos: -46.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2634 components: - type: Transform @@ -69254,7 +69475,7 @@ entities: pos: -46.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2635 components: - type: Transform @@ -69262,7 +69483,7 @@ entities: pos: -46.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2636 components: - type: Transform @@ -69270,7 +69491,7 @@ entities: pos: -48.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2637 components: - type: Transform @@ -69278,7 +69499,7 @@ entities: pos: -48.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2649 components: - type: Transform @@ -69286,7 +69507,7 @@ entities: pos: -48.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2650 components: - type: Transform @@ -69294,7 +69515,7 @@ entities: pos: -48.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2651 components: - type: Transform @@ -69302,7 +69523,7 @@ entities: pos: -46.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2652 components: - type: Transform @@ -69310,7 +69531,7 @@ entities: pos: -46.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2653 components: - type: Transform @@ -69318,7 +69539,7 @@ entities: pos: -48.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2655 components: - type: Transform @@ -69326,7 +69547,7 @@ entities: pos: -46.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2656 components: - type: Transform @@ -69334,7 +69555,7 @@ entities: pos: -46.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2657 components: - type: Transform @@ -69342,7 +69563,7 @@ entities: pos: -46.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2660 components: - type: Transform @@ -69350,7 +69571,7 @@ entities: pos: -48.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2661 components: - type: Transform @@ -69358,7 +69579,7 @@ entities: pos: -48.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2663 components: - type: Transform @@ -69366,7 +69587,7 @@ entities: pos: -48.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2664 components: - type: Transform @@ -69374,7 +69595,7 @@ entities: pos: -46.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2665 components: - type: Transform @@ -69382,7 +69603,7 @@ entities: pos: -46.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2666 components: - type: Transform @@ -69390,7 +69611,7 @@ entities: pos: -48.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2671 components: - type: Transform @@ -69398,7 +69619,7 @@ entities: pos: -49.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2672 components: - type: Transform @@ -69406,7 +69627,7 @@ entities: pos: -47.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2673 components: - type: Transform @@ -69414,7 +69635,7 @@ entities: pos: -48.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2674 components: - type: Transform @@ -69422,7 +69643,7 @@ entities: pos: -49.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2678 components: - type: Transform @@ -69430,7 +69651,7 @@ entities: pos: -47.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2679 components: - type: Transform @@ -69438,7 +69659,7 @@ entities: pos: -48.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2680 components: - type: Transform @@ -69446,7 +69667,7 @@ entities: pos: -49.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2682 components: - type: Transform @@ -69454,7 +69675,7 @@ entities: pos: -50.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2683 components: - type: Transform @@ -69462,7 +69683,7 @@ entities: pos: -46.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2684 components: - type: Transform @@ -69470,7 +69691,7 @@ entities: pos: -46.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2685 components: - type: Transform @@ -69478,7 +69699,7 @@ entities: pos: -46.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2686 components: - type: Transform @@ -69486,7 +69707,7 @@ entities: pos: -50.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2687 components: - type: Transform @@ -69494,77 +69715,77 @@ entities: pos: -50.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2690 components: - type: Transform pos: -50.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2691 components: - type: Transform pos: -46.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2692 components: - type: Transform pos: -46.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2693 components: - type: Transform pos: -46.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2694 components: - type: Transform pos: -46.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2695 components: - type: Transform pos: -46.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2696 components: - type: Transform pos: -50.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2697 components: - type: Transform pos: -50.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2698 components: - type: Transform pos: -50.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2699 components: - type: Transform pos: -50.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2703 components: - type: Transform @@ -69572,7 +69793,7 @@ entities: pos: -49.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2704 components: - type: Transform @@ -69580,7 +69801,7 @@ entities: pos: -47.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2710 components: - type: Transform @@ -69588,7 +69809,7 @@ entities: pos: -48.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2713 components: - type: Transform @@ -69596,7 +69817,7 @@ entities: pos: -49.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2714 components: - type: Transform @@ -69604,63 +69825,63 @@ entities: pos: -50.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2715 components: - type: Transform pos: -47.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2716 components: - type: Transform pos: -51.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2719 components: - type: Transform pos: -47.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2720 components: - type: Transform pos: -51.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2721 components: - type: Transform pos: -51.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2722 components: - type: Transform pos: -51.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2723 components: - type: Transform pos: -47.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2724 components: - type: Transform pos: -47.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2727 components: - type: Transform @@ -69668,7 +69889,7 @@ entities: pos: -50.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2728 components: - type: Transform @@ -69676,7 +69897,7 @@ entities: pos: -49.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2735 components: - type: Transform @@ -69684,7 +69905,7 @@ entities: pos: -32.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2736 components: - type: Transform @@ -69692,7 +69913,7 @@ entities: pos: -31.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2737 components: - type: Transform @@ -69700,7 +69921,7 @@ entities: pos: -30.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2738 components: - type: Transform @@ -69708,7 +69929,7 @@ entities: pos: -29.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2739 components: - type: Transform @@ -69716,7 +69937,7 @@ entities: pos: -30.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2740 components: - type: Transform @@ -69724,147 +69945,147 @@ entities: pos: -29.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2747 components: - type: Transform pos: -36.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2748 components: - type: Transform pos: -36.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2749 components: - type: Transform pos: -36.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2752 components: - type: Transform pos: -36.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2754 components: - type: Transform pos: -36.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2755 components: - type: Transform pos: -36.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2756 components: - type: Transform pos: -36.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2757 components: - type: Transform pos: -36.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2758 components: - type: Transform pos: -36.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2759 components: - type: Transform pos: -36.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2761 components: - type: Transform pos: -36.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2763 components: - type: Transform pos: -36.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2764 components: - type: Transform pos: -36.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2765 components: - type: Transform pos: -36.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2766 components: - type: Transform pos: -36.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2768 components: - type: Transform pos: -36.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2769 components: - type: Transform pos: -36.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2771 components: - type: Transform pos: -36.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2772 components: - type: Transform pos: -36.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2773 components: - type: Transform pos: -36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2775 components: - type: Transform @@ -69872,7 +70093,7 @@ entities: pos: -35.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2776 components: - type: Transform @@ -69880,7 +70101,7 @@ entities: pos: -34.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2778 components: - type: Transform @@ -69888,7 +70109,7 @@ entities: pos: -32.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2780 components: - type: Transform @@ -69896,7 +70117,7 @@ entities: pos: -30.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2781 components: - type: Transform @@ -69904,7 +70125,7 @@ entities: pos: -29.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2782 components: - type: Transform @@ -69912,7 +70133,7 @@ entities: pos: -28.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2783 components: - type: Transform @@ -69920,7 +70141,7 @@ entities: pos: -27.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2784 components: - type: Transform @@ -69928,7 +70149,7 @@ entities: pos: -26.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2785 components: - type: Transform @@ -69936,7 +70157,7 @@ entities: pos: -25.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2787 components: - type: Transform @@ -69944,7 +70165,7 @@ entities: pos: -23.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2789 components: - type: Transform @@ -69952,7 +70173,7 @@ entities: pos: -22.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2790 components: - type: Transform @@ -69960,7 +70181,7 @@ entities: pos: -20.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2791 components: - type: Transform @@ -69968,7 +70189,7 @@ entities: pos: -19.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2792 components: - type: Transform @@ -69976,7 +70197,7 @@ entities: pos: -18.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2793 components: - type: Transform @@ -69984,7 +70205,7 @@ entities: pos: -17.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2794 components: - type: Transform @@ -69992,7 +70213,7 @@ entities: pos: -16.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2795 components: - type: Transform @@ -70000,7 +70221,7 @@ entities: pos: -15.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2797 components: - type: Transform @@ -70008,7 +70229,7 @@ entities: pos: -13.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2798 components: - type: Transform @@ -70016,7 +70237,7 @@ entities: pos: -12.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2799 components: - type: Transform @@ -70024,7 +70245,7 @@ entities: pos: -11.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2800 components: - type: Transform @@ -70032,7 +70253,7 @@ entities: pos: -10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2801 components: - type: Transform @@ -70040,7 +70261,7 @@ entities: pos: -9.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2803 components: - type: Transform @@ -70048,7 +70269,7 @@ entities: pos: -7.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2804 components: - type: Transform @@ -70056,7 +70277,7 @@ entities: pos: -5.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2806 components: - type: Transform @@ -70064,7 +70285,7 @@ entities: pos: -4.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2808 components: - type: Transform @@ -70072,7 +70293,7 @@ entities: pos: -1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2809 components: - type: Transform @@ -70080,7 +70301,7 @@ entities: pos: -2.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2810 components: - type: Transform @@ -70088,7 +70309,7 @@ entities: pos: -0.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2811 components: - type: Transform @@ -70096,7 +70317,7 @@ entities: pos: 0.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2813 components: - type: Transform @@ -70104,7 +70325,7 @@ entities: pos: 2.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2815 components: - type: Transform @@ -70112,7 +70333,7 @@ entities: pos: 4.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2816 components: - type: Transform @@ -70120,7 +70341,7 @@ entities: pos: 5.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2817 components: - type: Transform @@ -70128,7 +70349,7 @@ entities: pos: 6.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2818 components: - type: Transform @@ -70136,7 +70357,7 @@ entities: pos: 7.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2820 components: - type: Transform @@ -70144,7 +70365,7 @@ entities: pos: 8.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2821 components: - type: Transform @@ -70152,7 +70373,7 @@ entities: pos: 8.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2822 components: - type: Transform @@ -70160,7 +70381,7 @@ entities: pos: 8.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2823 components: - type: Transform @@ -70168,7 +70389,7 @@ entities: pos: 8.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2824 components: - type: Transform @@ -70176,7 +70397,7 @@ entities: pos: 8.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2825 components: - type: Transform @@ -70184,7 +70405,7 @@ entities: pos: 8.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2826 components: - type: Transform @@ -70192,7 +70413,7 @@ entities: pos: 8.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2827 components: - type: Transform @@ -70200,7 +70421,7 @@ entities: pos: 8.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2828 components: - type: Transform @@ -70208,7 +70429,7 @@ entities: pos: 8.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2829 components: - type: Transform @@ -70216,7 +70437,7 @@ entities: pos: 8.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2830 components: - type: Transform @@ -70224,7 +70445,7 @@ entities: pos: 8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2832 components: - type: Transform @@ -70232,7 +70453,7 @@ entities: pos: 8.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2834 components: - type: Transform @@ -70240,7 +70461,7 @@ entities: pos: 8.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2835 components: - type: Transform @@ -70248,7 +70469,7 @@ entities: pos: 8.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2836 components: - type: Transform @@ -70256,7 +70477,7 @@ entities: pos: 8.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2837 components: - type: Transform @@ -70264,7 +70485,7 @@ entities: pos: 8.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2838 components: - type: Transform @@ -70272,7 +70493,7 @@ entities: pos: 8.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2839 components: - type: Transform @@ -70280,7 +70501,7 @@ entities: pos: 8.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2840 components: - type: Transform @@ -70288,7 +70509,7 @@ entities: pos: 8.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2841 components: - type: Transform @@ -70296,7 +70517,7 @@ entities: pos: 8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2844 components: - type: Transform @@ -70304,7 +70525,7 @@ entities: pos: 7.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2845 components: - type: Transform @@ -70312,7 +70533,7 @@ entities: pos: 6.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2847 components: - type: Transform @@ -70320,7 +70541,7 @@ entities: pos: 4.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2848 components: - type: Transform @@ -70328,7 +70549,7 @@ entities: pos: 3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2849 components: - type: Transform @@ -70336,7 +70557,7 @@ entities: pos: 2.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2850 components: - type: Transform @@ -70344,7 +70565,7 @@ entities: pos: 1.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2852 components: - type: Transform @@ -70352,7 +70573,7 @@ entities: pos: -0.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2853 components: - type: Transform @@ -70360,7 +70581,7 @@ entities: pos: -1.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2855 components: - type: Transform @@ -70368,7 +70589,7 @@ entities: pos: -3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2856 components: - type: Transform @@ -70376,7 +70597,7 @@ entities: pos: -5.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2858 components: - type: Transform @@ -70384,7 +70605,7 @@ entities: pos: -6.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2859 components: - type: Transform @@ -70392,7 +70613,7 @@ entities: pos: -7.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2860 components: - type: Transform @@ -70400,7 +70621,7 @@ entities: pos: -8.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2861 components: - type: Transform @@ -70408,7 +70629,7 @@ entities: pos: -9.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2863 components: - type: Transform @@ -70416,7 +70637,7 @@ entities: pos: -12.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2864 components: - type: Transform @@ -70424,7 +70645,7 @@ entities: pos: -11.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2865 components: - type: Transform @@ -70432,7 +70653,7 @@ entities: pos: -13.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2867 components: - type: Transform @@ -70440,7 +70661,7 @@ entities: pos: -15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2868 components: - type: Transform @@ -70448,7 +70669,7 @@ entities: pos: -16.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2869 components: - type: Transform @@ -70456,7 +70677,7 @@ entities: pos: -17.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2870 components: - type: Transform @@ -70464,7 +70685,7 @@ entities: pos: -18.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2872 components: - type: Transform @@ -70472,7 +70693,7 @@ entities: pos: -20.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2874 components: - type: Transform @@ -70480,7 +70701,7 @@ entities: pos: -22.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2875 components: - type: Transform @@ -70488,7 +70709,7 @@ entities: pos: -23.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2876 components: - type: Transform @@ -70496,7 +70717,7 @@ entities: pos: -24.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2877 components: - type: Transform @@ -70504,7 +70725,7 @@ entities: pos: -25.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2878 components: - type: Transform @@ -70512,7 +70733,7 @@ entities: pos: -26.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2880 components: - type: Transform @@ -70520,7 +70741,7 @@ entities: pos: -28.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2881 components: - type: Transform @@ -70528,7 +70749,7 @@ entities: pos: -29.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2882 components: - type: Transform @@ -70536,7 +70757,7 @@ entities: pos: -30.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2884 components: - type: Transform @@ -70544,7 +70765,7 @@ entities: pos: -33.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2885 components: - type: Transform @@ -70552,7 +70773,7 @@ entities: pos: -32.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2886 components: - type: Transform @@ -70560,7 +70781,7 @@ entities: pos: -34.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2887 components: - type: Transform @@ -70568,161 +70789,161 @@ entities: pos: -35.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2889 components: - type: Transform pos: -34.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2890 components: - type: Transform pos: -34.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2891 components: - type: Transform pos: -34.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2892 components: - type: Transform pos: -34.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2894 components: - type: Transform pos: -34.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2895 components: - type: Transform pos: -34.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2896 components: - type: Transform pos: -34.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2897 components: - type: Transform pos: -34.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2898 components: - type: Transform pos: -34.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2900 components: - type: Transform pos: -34.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2901 components: - type: Transform pos: -34.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2902 components: - type: Transform pos: -34.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2903 components: - type: Transform pos: -34.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2904 components: - type: Transform pos: -34.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2906 components: - type: Transform pos: -34.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2907 components: - type: Transform pos: -34.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2908 components: - type: Transform pos: -34.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2911 components: - type: Transform pos: -34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2912 components: - type: Transform pos: -34.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2914 components: - type: Transform pos: -34.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2915 components: - type: Transform pos: -34.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2916 components: - type: Transform pos: -34.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2918 components: - type: Transform @@ -70730,7 +70951,7 @@ entities: pos: -33.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2920 components: - type: Transform @@ -70738,7 +70959,7 @@ entities: pos: -31.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2921 components: - type: Transform @@ -70746,7 +70967,7 @@ entities: pos: -30.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2922 components: - type: Transform @@ -70754,7 +70975,7 @@ entities: pos: -29.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2923 components: - type: Transform @@ -70762,7 +70983,7 @@ entities: pos: -28.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2925 components: - type: Transform @@ -70770,7 +70991,7 @@ entities: pos: -26.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2926 components: - type: Transform @@ -70778,7 +70999,7 @@ entities: pos: -25.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2927 components: - type: Transform @@ -70786,7 +71007,7 @@ entities: pos: -24.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2928 components: - type: Transform @@ -70794,7 +71015,7 @@ entities: pos: -23.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2929 components: - type: Transform @@ -70802,7 +71023,7 @@ entities: pos: -22.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2930 components: - type: Transform @@ -70810,7 +71031,7 @@ entities: pos: -21.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2931 components: - type: Transform @@ -70818,7 +71039,7 @@ entities: pos: -20.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2934 components: - type: Transform @@ -70826,7 +71047,7 @@ entities: pos: -16.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2936 components: - type: Transform @@ -70834,7 +71055,7 @@ entities: pos: -15.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2937 components: - type: Transform @@ -70842,7 +71063,7 @@ entities: pos: -14.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2938 components: - type: Transform @@ -70850,7 +71071,7 @@ entities: pos: -13.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2939 components: - type: Transform @@ -70858,7 +71079,7 @@ entities: pos: -12.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2940 components: - type: Transform @@ -70866,7 +71087,7 @@ entities: pos: -11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2942 components: - type: Transform @@ -70874,7 +71095,7 @@ entities: pos: -9.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2943 components: - type: Transform @@ -70882,7 +71103,7 @@ entities: pos: -8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2944 components: - type: Transform @@ -70890,7 +71111,7 @@ entities: pos: -7.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2945 components: - type: Transform @@ -70898,7 +71119,7 @@ entities: pos: -6.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2946 components: - type: Transform @@ -70906,7 +71127,7 @@ entities: pos: -5.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2947 components: - type: Transform @@ -70914,7 +71135,7 @@ entities: pos: -4.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2948 components: - type: Transform @@ -70922,7 +71143,7 @@ entities: pos: -3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2949 components: - type: Transform @@ -70930,7 +71151,7 @@ entities: pos: -2.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2951 components: - type: Transform @@ -70938,7 +71159,7 @@ entities: pos: -0.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2952 components: - type: Transform @@ -70946,7 +71167,7 @@ entities: pos: 0.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2953 components: - type: Transform @@ -70954,7 +71175,7 @@ entities: pos: 2.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2954 components: - type: Transform @@ -70962,7 +71183,7 @@ entities: pos: 1.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2955 components: - type: Transform @@ -70970,7 +71191,7 @@ entities: pos: 3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2956 components: - type: Transform @@ -70978,7 +71199,7 @@ entities: pos: 4.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2958 components: - type: Transform @@ -70986,7 +71207,7 @@ entities: pos: 6.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2959 components: - type: Transform @@ -70994,7 +71215,7 @@ entities: pos: 7.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2960 components: - type: Transform @@ -71002,7 +71223,7 @@ entities: pos: 9.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2961 components: - type: Transform @@ -71010,7 +71231,7 @@ entities: pos: 8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2963 components: - type: Transform @@ -71018,7 +71239,7 @@ entities: pos: 10.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2964 components: - type: Transform @@ -71026,7 +71247,7 @@ entities: pos: 10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2965 components: - type: Transform @@ -71034,7 +71255,7 @@ entities: pos: 10.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2966 components: - type: Transform @@ -71042,7 +71263,7 @@ entities: pos: 10.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2967 components: - type: Transform @@ -71050,7 +71271,7 @@ entities: pos: 10.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2968 components: - type: Transform @@ -71058,7 +71279,7 @@ entities: pos: 10.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2969 components: - type: Transform @@ -71066,7 +71287,7 @@ entities: pos: 10.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2970 components: - type: Transform @@ -71074,7 +71295,7 @@ entities: pos: 10.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2971 components: - type: Transform @@ -71082,7 +71303,7 @@ entities: pos: 10.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2972 components: - type: Transform @@ -71090,7 +71311,7 @@ entities: pos: 10.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2973 components: - type: Transform @@ -71098,7 +71319,7 @@ entities: pos: 10.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2974 components: - type: Transform @@ -71106,7 +71327,7 @@ entities: pos: 10.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2976 components: - type: Transform @@ -71114,7 +71335,7 @@ entities: pos: 11.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2977 components: - type: Transform @@ -71122,7 +71343,7 @@ entities: pos: 10.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2978 components: - type: Transform @@ -71130,7 +71351,7 @@ entities: pos: 10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2979 components: - type: Transform @@ -71138,7 +71359,7 @@ entities: pos: 10.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2980 components: - type: Transform @@ -71146,7 +71367,7 @@ entities: pos: 10.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2981 components: - type: Transform @@ -71154,7 +71375,7 @@ entities: pos: 10.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2982 components: - type: Transform @@ -71162,7 +71383,7 @@ entities: pos: 10.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2983 components: - type: Transform @@ -71170,7 +71391,7 @@ entities: pos: 10.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2984 components: - type: Transform @@ -71178,7 +71399,7 @@ entities: pos: 10.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2987 components: - type: Transform @@ -71186,7 +71407,7 @@ entities: pos: 9.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2988 components: - type: Transform @@ -71194,7 +71415,7 @@ entities: pos: 8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2989 components: - type: Transform @@ -71202,7 +71423,7 @@ entities: pos: 7.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2990 components: - type: Transform @@ -71210,7 +71431,7 @@ entities: pos: 6.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2991 components: - type: Transform @@ -71218,7 +71439,7 @@ entities: pos: 5.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2992 components: - type: Transform @@ -71226,7 +71447,7 @@ entities: pos: 4.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2993 components: - type: Transform @@ -71234,7 +71455,7 @@ entities: pos: 2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2995 components: - type: Transform @@ -71242,7 +71463,7 @@ entities: pos: 0.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2996 components: - type: Transform @@ -71250,7 +71471,7 @@ entities: pos: 1.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2998 components: - type: Transform @@ -71258,7 +71479,7 @@ entities: pos: -2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2999 components: - type: Transform @@ -71266,7 +71487,7 @@ entities: pos: -1.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3001 components: - type: Transform @@ -71274,7 +71495,7 @@ entities: pos: -4.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3002 components: - type: Transform @@ -71282,7 +71503,7 @@ entities: pos: -5.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3003 components: - type: Transform @@ -71290,7 +71511,7 @@ entities: pos: -6.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3004 components: - type: Transform @@ -71298,7 +71519,7 @@ entities: pos: -7.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3005 components: - type: Transform @@ -71306,7 +71527,7 @@ entities: pos: -9.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3007 components: - type: Transform @@ -71314,7 +71535,7 @@ entities: pos: -10.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3008 components: - type: Transform @@ -71322,7 +71543,7 @@ entities: pos: -11.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3009 components: - type: Transform @@ -71330,7 +71551,7 @@ entities: pos: -12.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3010 components: - type: Transform @@ -71338,7 +71559,7 @@ entities: pos: -13.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3011 components: - type: Transform @@ -71346,7 +71567,7 @@ entities: pos: -14.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3013 components: - type: Transform @@ -71354,7 +71575,7 @@ entities: pos: -16.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3014 components: - type: Transform @@ -71362,7 +71583,7 @@ entities: pos: -17.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3015 components: - type: Transform @@ -71370,7 +71591,7 @@ entities: pos: -18.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3016 components: - type: Transform @@ -71378,7 +71599,7 @@ entities: pos: -19.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3017 components: - type: Transform @@ -71386,7 +71607,7 @@ entities: pos: -20.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3018 components: - type: Transform @@ -71394,7 +71615,7 @@ entities: pos: -21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3021 components: - type: Transform @@ -71402,7 +71623,7 @@ entities: pos: -24.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3024 components: - type: Transform @@ -71410,7 +71631,7 @@ entities: pos: -27.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3025 components: - type: Transform @@ -71418,7 +71639,7 @@ entities: pos: -29.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3026 components: - type: Transform @@ -71426,7 +71647,7 @@ entities: pos: -28.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3028 components: - type: Transform @@ -71434,7 +71655,7 @@ entities: pos: -31.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3029 components: - type: Transform @@ -71442,7 +71663,7 @@ entities: pos: -32.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3030 components: - type: Transform @@ -71450,7 +71671,7 @@ entities: pos: -33.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3031 components: - type: Transform @@ -71458,7 +71679,7 @@ entities: pos: -31.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3032 components: - type: Transform @@ -71466,7 +71687,7 @@ entities: pos: -31.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3033 components: - type: Transform @@ -71474,7 +71695,7 @@ entities: pos: -31.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3034 components: - type: Transform @@ -71482,7 +71703,7 @@ entities: pos: -25.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3035 components: - type: Transform @@ -71490,7 +71711,7 @@ entities: pos: -25.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3036 components: - type: Transform @@ -71498,7 +71719,7 @@ entities: pos: -25.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3037 components: - type: Transform @@ -71506,7 +71727,7 @@ entities: pos: -25.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3038 components: - type: Transform @@ -71514,112 +71735,112 @@ entities: pos: -25.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3043 components: - type: Transform pos: -30.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3044 components: - type: Transform pos: -30.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3045 components: - type: Transform pos: -31.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3046 components: - type: Transform pos: -31.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3047 components: - type: Transform pos: -31.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3048 components: - type: Transform pos: -31.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3051 components: - type: Transform pos: -26.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3052 components: - type: Transform pos: -27.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3053 components: - type: Transform pos: -27.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3054 components: - type: Transform pos: -27.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3057 components: - type: Transform pos: -22.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3058 components: - type: Transform pos: -21.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3059 components: - type: Transform pos: -21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3060 components: - type: Transform pos: -21.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3061 components: - type: Transform pos: -21.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3070 components: - type: Transform @@ -71627,7 +71848,7 @@ entities: pos: -35.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3071 components: - type: Transform @@ -71635,7 +71856,7 @@ entities: pos: -36.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3072 components: - type: Transform @@ -71643,7 +71864,7 @@ entities: pos: -37.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3073 components: - type: Transform @@ -71651,7 +71872,7 @@ entities: pos: -38.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3074 components: - type: Transform @@ -71659,7 +71880,7 @@ entities: pos: -37.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3075 components: - type: Transform @@ -71667,7 +71888,7 @@ entities: pos: -38.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3079 components: - type: Transform @@ -71675,7 +71896,7 @@ entities: pos: -39.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3080 components: - type: Transform @@ -71683,7 +71904,7 @@ entities: pos: -35.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3081 components: - type: Transform @@ -71691,7 +71912,7 @@ entities: pos: -36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3082 components: - type: Transform @@ -71699,7 +71920,7 @@ entities: pos: -37.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3083 components: - type: Transform @@ -71707,7 +71928,7 @@ entities: pos: -38.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3085 components: - type: Transform @@ -71715,7 +71936,7 @@ entities: pos: -40.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3086 components: - type: Transform @@ -71723,7 +71944,7 @@ entities: pos: -41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3088 components: - type: Transform @@ -71731,7 +71952,7 @@ entities: pos: -43.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3089 components: - type: Transform @@ -71739,7 +71960,7 @@ entities: pos: -37.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3090 components: - type: Transform @@ -71747,7 +71968,7 @@ entities: pos: -38.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3092 components: - type: Transform @@ -71755,7 +71976,7 @@ entities: pos: -40.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3094 components: - type: Transform @@ -71763,7 +71984,7 @@ entities: pos: -42.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3095 components: - type: Transform @@ -71771,7 +71992,7 @@ entities: pos: -43.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3096 components: - type: Transform @@ -71779,7 +72000,7 @@ entities: pos: -44.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3101 components: - type: Transform @@ -71787,7 +72008,7 @@ entities: pos: -41.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3102 components: - type: Transform @@ -71795,7 +72016,7 @@ entities: pos: -41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3103 components: - type: Transform @@ -71803,7 +72024,7 @@ entities: pos: -41.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3104 components: - type: Transform @@ -71811,7 +72032,7 @@ entities: pos: -41.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3105 components: - type: Transform @@ -71819,7 +72040,7 @@ entities: pos: -41.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3106 components: - type: Transform @@ -71827,7 +72048,7 @@ entities: pos: -41.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3107 components: - type: Transform @@ -71835,7 +72056,7 @@ entities: pos: -39.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3108 components: - type: Transform @@ -71843,7 +72064,7 @@ entities: pos: -39.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3109 components: - type: Transform @@ -71851,7 +72072,7 @@ entities: pos: -39.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3110 components: - type: Transform @@ -71859,7 +72080,7 @@ entities: pos: -39.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3113 components: - type: Transform @@ -71867,7 +72088,7 @@ entities: pos: -46.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3121 components: - type: Transform @@ -71875,7 +72096,7 @@ entities: pos: -51.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3122 components: - type: Transform @@ -71883,7 +72104,7 @@ entities: pos: -50.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3124 components: - type: Transform @@ -71891,7 +72112,7 @@ entities: pos: -48.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3127 components: - type: Transform @@ -71899,7 +72120,7 @@ entities: pos: -45.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3128 components: - type: Transform @@ -71907,7 +72128,7 @@ entities: pos: -44.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3129 components: - type: Transform @@ -71915,7 +72136,7 @@ entities: pos: -44.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3132 components: - type: Transform @@ -71923,7 +72144,7 @@ entities: pos: -49.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3133 components: - type: Transform @@ -71931,119 +72152,119 @@ entities: pos: -50.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3139 components: - type: Transform pos: -45.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3140 components: - type: Transform pos: -45.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3141 components: - type: Transform pos: -45.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3142 components: - type: Transform pos: -45.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3143 components: - type: Transform pos: -44.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3144 components: - type: Transform pos: -44.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3145 components: - type: Transform pos: -44.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3146 components: - type: Transform pos: -45.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3149 components: - type: Transform pos: -45.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3150 components: - type: Transform pos: -45.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3151 components: - type: Transform pos: -45.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3156 components: - type: Transform pos: -44.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3157 components: - type: Transform pos: -44.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3158 components: - type: Transform pos: -44.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3159 components: - type: Transform pos: -44.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3160 components: - type: Transform pos: -44.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3164 components: - type: Transform @@ -72051,7 +72272,7 @@ entities: pos: -45.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3165 components: - type: Transform @@ -72059,7 +72280,7 @@ entities: pos: -45.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3178 components: - type: Transform @@ -72067,7 +72288,7 @@ entities: pos: -49.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3179 components: - type: Transform @@ -72075,28 +72296,28 @@ entities: pos: -48.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3190 components: - type: Transform pos: -51.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3191 components: - type: Transform pos: -51.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3192 components: - type: Transform pos: -52.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3205 components: - type: Transform @@ -72104,7 +72325,7 @@ entities: pos: -45.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3206 components: - type: Transform @@ -72112,7 +72333,7 @@ entities: pos: -45.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3207 components: - type: Transform @@ -72120,7 +72341,7 @@ entities: pos: -45.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3209 components: - type: Transform @@ -72128,7 +72349,7 @@ entities: pos: -45.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3210 components: - type: Transform @@ -72136,7 +72357,7 @@ entities: pos: -45.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3211 components: - type: Transform @@ -72144,7 +72365,7 @@ entities: pos: -44.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3212 components: - type: Transform @@ -72152,7 +72373,7 @@ entities: pos: -44.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3214 components: - type: Transform @@ -72160,7 +72381,7 @@ entities: pos: -44.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3215 components: - type: Transform @@ -72168,7 +72389,7 @@ entities: pos: -44.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3216 components: - type: Transform @@ -72176,21 +72397,21 @@ entities: pos: -44.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3217 components: - type: Transform pos: -45.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3218 components: - type: Transform pos: -45.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3219 components: - type: Transform @@ -72198,7 +72419,7 @@ entities: pos: -45.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3220 components: - type: Transform @@ -72206,7 +72427,7 @@ entities: pos: -46.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3222 components: - type: Transform @@ -72214,7 +72435,7 @@ entities: pos: -33.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3223 components: - type: Transform @@ -72222,7 +72443,7 @@ entities: pos: -32.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3224 components: - type: Transform @@ -72230,7 +72451,7 @@ entities: pos: -35.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3225 components: - type: Transform @@ -72238,7 +72459,7 @@ entities: pos: -34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3226 components: - type: Transform @@ -72246,7 +72467,7 @@ entities: pos: -33.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3227 components: - type: Transform @@ -72254,7 +72475,7 @@ entities: pos: -32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3232 components: - type: Transform @@ -72262,7 +72483,7 @@ entities: pos: -35.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3233 components: - type: Transform @@ -72270,7 +72491,7 @@ entities: pos: -36.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3234 components: - type: Transform @@ -72278,7 +72499,7 @@ entities: pos: -37.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3235 components: - type: Transform @@ -72286,7 +72507,7 @@ entities: pos: -38.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3236 components: - type: Transform @@ -72294,7 +72515,7 @@ entities: pos: -39.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3237 components: - type: Transform @@ -72302,7 +72523,7 @@ entities: pos: -37.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3238 components: - type: Transform @@ -72310,7 +72531,7 @@ entities: pos: -38.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3239 components: - type: Transform @@ -72318,7 +72539,7 @@ entities: pos: -39.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3240 components: - type: Transform @@ -72326,7 +72547,7 @@ entities: pos: -40.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3242 components: - type: Transform @@ -72334,7 +72555,7 @@ entities: pos: -40.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3243 components: - type: Transform @@ -72342,7 +72563,7 @@ entities: pos: -41.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3244 components: - type: Transform @@ -72350,7 +72571,7 @@ entities: pos: -42.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3247 components: - type: Transform @@ -72358,7 +72579,7 @@ entities: pos: -43.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3248 components: - type: Transform @@ -72366,7 +72587,7 @@ entities: pos: -43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3249 components: - type: Transform @@ -72374,7 +72595,7 @@ entities: pos: -42.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3250 components: - type: Transform @@ -72382,7 +72603,7 @@ entities: pos: -43.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3251 components: - type: Transform @@ -72390,7 +72611,7 @@ entities: pos: -43.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3252 components: - type: Transform @@ -72398,7 +72619,7 @@ entities: pos: -42.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3256 components: - type: Transform @@ -72406,7 +72627,7 @@ entities: pos: -43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3257 components: - type: Transform @@ -72414,7 +72635,7 @@ entities: pos: -44.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3258 components: - type: Transform @@ -72422,7 +72643,7 @@ entities: pos: -45.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3259 components: - type: Transform @@ -72430,7 +72651,7 @@ entities: pos: -46.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3260 components: - type: Transform @@ -72438,7 +72659,7 @@ entities: pos: -47.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3261 components: - type: Transform @@ -72446,7 +72667,7 @@ entities: pos: -45.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3262 components: - type: Transform @@ -72454,7 +72675,7 @@ entities: pos: -46.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3263 components: - type: Transform @@ -72462,7 +72683,7 @@ entities: pos: -47.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3264 components: - type: Transform @@ -72470,7 +72691,7 @@ entities: pos: -48.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3265 components: - type: Transform @@ -72478,21 +72699,21 @@ entities: pos: -48.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3269 components: - type: Transform pos: -49.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3270 components: - type: Transform pos: -49.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3273 components: - type: Transform @@ -72500,7 +72721,7 @@ entities: pos: -50.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3274 components: - type: Transform @@ -72508,7 +72729,7 @@ entities: pos: -49.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3276 components: - type: Transform @@ -72516,14 +72737,14 @@ entities: pos: -51.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3277 components: - type: Transform pos: -52.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3279 components: - type: Transform @@ -72531,7 +72752,7 @@ entities: pos: -53.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3280 components: - type: Transform @@ -72539,7 +72760,7 @@ entities: pos: -54.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3281 components: - type: Transform @@ -72547,7 +72768,7 @@ entities: pos: -55.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3282 components: - type: Transform @@ -72555,7 +72776,7 @@ entities: pos: -56.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3287 components: - type: Transform @@ -72563,7 +72784,7 @@ entities: pos: -58.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3288 components: - type: Transform @@ -72571,7 +72792,7 @@ entities: pos: -59.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3289 components: - type: Transform @@ -72579,7 +72800,7 @@ entities: pos: -58.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3290 components: - type: Transform @@ -72587,7 +72808,7 @@ entities: pos: -59.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3291 components: - type: Transform @@ -72595,7 +72816,7 @@ entities: pos: -57.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3292 components: - type: Transform @@ -72603,7 +72824,7 @@ entities: pos: -57.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3293 components: - type: Transform @@ -72611,7 +72832,7 @@ entities: pos: -57.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3295 components: - type: Transform @@ -72619,7 +72840,7 @@ entities: pos: -57.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3296 components: - type: Transform @@ -72627,7 +72848,7 @@ entities: pos: -57.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3297 components: - type: Transform @@ -72635,7 +72856,7 @@ entities: pos: -58.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3298 components: - type: Transform @@ -72643,7 +72864,7 @@ entities: pos: -59.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3299 components: - type: Transform @@ -72651,7 +72872,7 @@ entities: pos: -58.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3300 components: - type: Transform @@ -72659,35 +72880,35 @@ entities: pos: -59.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3301 components: - type: Transform pos: -57.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3308 components: - type: Transform pos: -49.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3309 components: - type: Transform pos: -49.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3310 components: - type: Transform pos: -49.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3311 components: - type: Transform @@ -72695,7 +72916,7 @@ entities: pos: -50.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3312 components: - type: Transform @@ -72703,7 +72924,7 @@ entities: pos: -51.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3313 components: - type: Transform @@ -72711,7 +72932,7 @@ entities: pos: -52.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3314 components: - type: Transform @@ -72719,7 +72940,7 @@ entities: pos: -50.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3315 components: - type: Transform @@ -72727,7 +72948,7 @@ entities: pos: -51.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3316 components: - type: Transform @@ -72735,7 +72956,7 @@ entities: pos: -52.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3319 components: - type: Transform @@ -72743,7 +72964,7 @@ entities: pos: -50.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3320 components: - type: Transform @@ -72751,7 +72972,7 @@ entities: pos: -50.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3321 components: - type: Transform @@ -72759,7 +72980,7 @@ entities: pos: -50.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3322 components: - type: Transform @@ -72767,7 +72988,7 @@ entities: pos: -50.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3329 components: - type: Transform @@ -72775,7 +72996,7 @@ entities: pos: -19.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3330 components: - type: Transform @@ -72783,7 +73004,7 @@ entities: pos: -19.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3331 components: - type: Transform @@ -72791,7 +73012,7 @@ entities: pos: -19.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3332 components: - type: Transform @@ -72799,7 +73020,7 @@ entities: pos: -19.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3334 components: - type: Transform @@ -72807,7 +73028,7 @@ entities: pos: -18.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3335 components: - type: Transform @@ -72815,7 +73036,7 @@ entities: pos: -17.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3337 components: - type: Transform @@ -72823,7 +73044,7 @@ entities: pos: -20.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3338 components: - type: Transform @@ -72831,7 +73052,7 @@ entities: pos: -21.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3339 components: - type: Transform @@ -72839,7 +73060,7 @@ entities: pos: -22.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3340 components: - type: Transform @@ -72847,7 +73068,7 @@ entities: pos: -23.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3350 components: - type: Transform @@ -72855,7 +73076,7 @@ entities: pos: -21.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3351 components: - type: Transform @@ -72863,7 +73084,7 @@ entities: pos: -21.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3352 components: - type: Transform @@ -72871,7 +73092,7 @@ entities: pos: -21.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3354 components: - type: Transform @@ -72879,7 +73100,7 @@ entities: pos: -22.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3355 components: - type: Transform @@ -72887,28 +73108,28 @@ entities: pos: -23.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3362 components: - type: Transform pos: -23.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3363 components: - type: Transform pos: -23.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3364 components: - type: Transform pos: -23.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3365 components: - type: Transform @@ -72916,7 +73137,7 @@ entities: pos: -62.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3366 components: - type: Transform @@ -72924,7 +73145,7 @@ entities: pos: -24.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3367 components: - type: Transform @@ -72932,7 +73153,7 @@ entities: pos: -24.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3369 components: - type: Transform @@ -72940,7 +73161,7 @@ entities: pos: -23.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3370 components: - type: Transform @@ -72948,7 +73169,7 @@ entities: pos: -23.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3371 components: - type: Transform @@ -72956,7 +73177,7 @@ entities: pos: -23.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3374 components: - type: Transform @@ -72964,7 +73185,7 @@ entities: pos: -25.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3378 components: - type: Transform @@ -72972,7 +73193,7 @@ entities: pos: -20.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3379 components: - type: Transform @@ -72980,7 +73201,7 @@ entities: pos: -19.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3380 components: - type: Transform @@ -72988,7 +73209,7 @@ entities: pos: -18.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3382 components: - type: Transform @@ -72996,7 +73217,7 @@ entities: pos: -16.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3383 components: - type: Transform @@ -73004,7 +73225,7 @@ entities: pos: -15.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3384 components: - type: Transform @@ -73012,84 +73233,84 @@ entities: pos: -14.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3385 components: - type: Transform pos: -16.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3386 components: - type: Transform pos: -16.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3387 components: - type: Transform pos: -16.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3389 components: - type: Transform pos: -17.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3390 components: - type: Transform pos: -17.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3391 components: - type: Transform pos: -17.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3392 components: - type: Transform pos: -17.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3393 components: - type: Transform pos: -16.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3394 components: - type: Transform pos: -16.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3395 components: - type: Transform pos: -16.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3396 components: - type: Transform pos: -17.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3402 components: - type: Transform @@ -73097,7 +73318,7 @@ entities: pos: -14.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3403 components: - type: Transform @@ -73105,63 +73326,63 @@ entities: pos: -15.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3411 components: - type: Transform pos: -1.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3412 components: - type: Transform pos: -1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3413 components: - type: Transform pos: -1.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3414 components: - type: Transform pos: -1.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3415 components: - type: Transform pos: -1.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3416 components: - type: Transform pos: -3.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3417 components: - type: Transform pos: -3.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3418 components: - type: Transform pos: -3.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3425 components: - type: Transform @@ -73169,7 +73390,7 @@ entities: pos: -3.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3426 components: - type: Transform @@ -73177,7 +73398,7 @@ entities: pos: -3.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3427 components: - type: Transform @@ -73185,7 +73406,7 @@ entities: pos: -3.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3428 components: - type: Transform @@ -73193,7 +73414,7 @@ entities: pos: -3.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3429 components: - type: Transform @@ -73201,7 +73422,7 @@ entities: pos: -3.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3430 components: - type: Transform @@ -73209,7 +73430,7 @@ entities: pos: -1.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3431 components: - type: Transform @@ -73217,7 +73438,7 @@ entities: pos: -1.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3432 components: - type: Transform @@ -73225,7 +73446,7 @@ entities: pos: -1.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3433 components: - type: Transform @@ -73233,7 +73454,7 @@ entities: pos: -1.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3434 components: - type: Transform @@ -73241,7 +73462,7 @@ entities: pos: -1.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3435 components: - type: Transform @@ -73249,7 +73470,7 @@ entities: pos: -1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3436 components: - type: Transform @@ -73257,7 +73478,7 @@ entities: pos: -2.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3437 components: - type: Transform @@ -73265,7 +73486,7 @@ entities: pos: -1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3438 components: - type: Transform @@ -73273,7 +73494,7 @@ entities: pos: -0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3439 components: - type: Transform @@ -73281,7 +73502,7 @@ entities: pos: 0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3440 components: - type: Transform @@ -73289,7 +73510,7 @@ entities: pos: 1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3441 components: - type: Transform @@ -73297,7 +73518,7 @@ entities: pos: 2.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3443 components: - type: Transform @@ -73305,7 +73526,7 @@ entities: pos: 0.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3444 components: - type: Transform @@ -73313,7 +73534,7 @@ entities: pos: 1.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3445 components: - type: Transform @@ -73321,7 +73542,7 @@ entities: pos: 2.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3446 components: - type: Transform @@ -73329,7 +73550,7 @@ entities: pos: -2.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3447 components: - type: Transform @@ -73337,7 +73558,7 @@ entities: pos: -3.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3448 components: - type: Transform @@ -73345,7 +73566,7 @@ entities: pos: -4.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3449 components: - type: Transform @@ -73353,7 +73574,7 @@ entities: pos: -5.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3450 components: - type: Transform @@ -73361,7 +73582,7 @@ entities: pos: -6.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3451 components: - type: Transform @@ -73369,7 +73590,7 @@ entities: pos: -7.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3453 components: - type: Transform @@ -73377,7 +73598,7 @@ entities: pos: -5.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3454 components: - type: Transform @@ -73385,7 +73606,7 @@ entities: pos: -6.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3455 components: - type: Transform @@ -73393,7 +73614,7 @@ entities: pos: -7.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3456 components: - type: Transform @@ -73401,7 +73622,7 @@ entities: pos: -8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3457 components: - type: Transform @@ -73409,7 +73630,7 @@ entities: pos: -9.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3462 components: - type: Transform @@ -73417,7 +73638,7 @@ entities: pos: -11.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3463 components: - type: Transform @@ -73425,7 +73646,7 @@ entities: pos: -10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3464 components: - type: Transform @@ -73433,7 +73654,7 @@ entities: pos: -11.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3465 components: - type: Transform @@ -73441,7 +73662,7 @@ entities: pos: -12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3466 components: - type: Transform @@ -73449,7 +73670,7 @@ entities: pos: -13.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3467 components: - type: Transform @@ -73457,7 +73678,7 @@ entities: pos: -14.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3468 components: - type: Transform @@ -73465,7 +73686,7 @@ entities: pos: -15.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3470 components: - type: Transform @@ -73473,7 +73694,7 @@ entities: pos: -15.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3471 components: - type: Transform @@ -73481,7 +73702,7 @@ entities: pos: -14.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3472 components: - type: Transform @@ -73489,133 +73710,133 @@ entities: pos: -13.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3473 components: - type: Transform pos: -10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3474 components: - type: Transform pos: -10.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3475 components: - type: Transform pos: -10.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3476 components: - type: Transform pos: -9.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3477 components: - type: Transform pos: -9.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3478 components: - type: Transform pos: -9.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3487 components: - type: Transform pos: -3.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3488 components: - type: Transform pos: -3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3489 components: - type: Transform pos: -3.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3490 components: - type: Transform pos: -1.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3491 components: - type: Transform pos: -8.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3492 components: - type: Transform pos: -8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3493 components: - type: Transform pos: 3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3494 components: - type: Transform pos: 3.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3531 components: - type: Transform pos: -13.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3583 components: - type: Transform pos: -13.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3598 components: - type: Transform pos: -18.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4371 components: - type: Transform pos: -25.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4894 components: - type: Transform @@ -73623,7 +73844,7 @@ entities: pos: -1.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4908 components: - type: Transform @@ -73631,21 +73852,21 @@ entities: pos: -26.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5006 components: - type: Transform pos: -19.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5014 components: - type: Transform pos: -19.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5418 components: - type: Transform @@ -73653,7 +73874,7 @@ entities: pos: -47.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5427 components: - type: Transform @@ -73661,7 +73882,7 @@ entities: pos: -53.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5428 components: - type: Transform @@ -73669,7 +73890,7 @@ entities: pos: -46.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5494 components: - type: Transform @@ -73677,7 +73898,7 @@ entities: pos: -53.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5625 components: - type: Transform @@ -73685,7 +73906,7 @@ entities: pos: -27.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5668 components: - type: Transform @@ -73693,13 +73914,7 @@ entities: pos: -30.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-10.5 - parent: 30 + color: '#0055CCFF' - uid: 5892 components: - type: Transform @@ -73707,63 +73922,63 @@ entities: pos: -2.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6114 components: - type: Transform pos: -2.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6115 components: - type: Transform pos: -2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6116 components: - type: Transform pos: -2.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6117 components: - type: Transform pos: -2.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6118 components: - type: Transform pos: -2.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6119 components: - type: Transform pos: -0.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6120 components: - type: Transform pos: -0.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6121 components: - type: Transform pos: -0.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6124 components: - type: Transform @@ -73771,7 +73986,7 @@ entities: pos: -14.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6125 components: - type: Transform @@ -73779,7 +73994,7 @@ entities: pos: -14.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6126 components: - type: Transform @@ -73787,7 +74002,7 @@ entities: pos: -14.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6127 components: - type: Transform @@ -73795,7 +74010,7 @@ entities: pos: -14.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6128 components: - type: Transform @@ -73803,7 +74018,7 @@ entities: pos: -14.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6129 components: - type: Transform @@ -73811,7 +74026,7 @@ entities: pos: -14.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6130 components: - type: Transform @@ -73819,7 +74034,7 @@ entities: pos: -14.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6131 components: - type: Transform @@ -73827,7 +74042,7 @@ entities: pos: -14.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6133 components: - type: Transform @@ -73835,7 +74050,7 @@ entities: pos: -14.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6134 components: - type: Transform @@ -73843,7 +74058,7 @@ entities: pos: -14.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6135 components: - type: Transform @@ -73851,7 +74066,7 @@ entities: pos: -14.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6136 components: - type: Transform @@ -73859,7 +74074,7 @@ entities: pos: -4.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6137 components: - type: Transform @@ -73867,7 +74082,7 @@ entities: pos: -4.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6138 components: - type: Transform @@ -73875,7 +74090,7 @@ entities: pos: -4.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6139 components: - type: Transform @@ -73883,7 +74098,7 @@ entities: pos: -4.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6141 components: - type: Transform @@ -73891,7 +74106,7 @@ entities: pos: -4.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6142 components: - type: Transform @@ -73899,7 +74114,7 @@ entities: pos: -4.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6143 components: - type: Transform @@ -73907,7 +74122,7 @@ entities: pos: -4.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6144 components: - type: Transform @@ -73915,7 +74130,7 @@ entities: pos: -4.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6145 components: - type: Transform @@ -73923,7 +74138,7 @@ entities: pos: -4.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6146 components: - type: Transform @@ -73931,7 +74146,7 @@ entities: pos: -4.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6147 components: - type: Transform @@ -73939,7 +74154,7 @@ entities: pos: -4.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6149 components: - type: Transform @@ -73947,7 +74162,7 @@ entities: pos: -13.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6150 components: - type: Transform @@ -73955,7 +74170,7 @@ entities: pos: -12.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6152 components: - type: Transform @@ -73963,7 +74178,7 @@ entities: pos: -10.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6154 components: - type: Transform @@ -73971,7 +74186,7 @@ entities: pos: -8.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6155 components: - type: Transform @@ -73979,7 +74194,7 @@ entities: pos: -7.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6156 components: - type: Transform @@ -73987,7 +74202,7 @@ entities: pos: -6.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6157 components: - type: Transform @@ -73995,189 +74210,189 @@ entities: pos: -5.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6159 components: - type: Transform pos: -15.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6160 components: - type: Transform pos: -15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6161 components: - type: Transform pos: -15.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6162 components: - type: Transform pos: -15.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6163 components: - type: Transform pos: -15.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6164 components: - type: Transform pos: -15.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6165 components: - type: Transform pos: -15.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6166 components: - type: Transform pos: -15.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6167 components: - type: Transform pos: -15.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6168 components: - type: Transform pos: -15.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6169 components: - type: Transform pos: -15.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6171 components: - type: Transform pos: -15.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6173 components: - type: Transform pos: -15.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6174 components: - type: Transform pos: -3.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6175 components: - type: Transform pos: -3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6176 components: - type: Transform pos: -3.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6177 components: - type: Transform pos: -3.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6178 components: - type: Transform pos: -3.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6180 components: - type: Transform pos: -3.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6181 components: - type: Transform pos: -3.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6182 components: - type: Transform pos: -3.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6183 components: - type: Transform pos: -3.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6184 components: - type: Transform pos: -3.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6186 components: - type: Transform pos: -3.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6187 components: - type: Transform pos: -3.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6188 components: - type: Transform pos: -3.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6189 components: - type: Transform @@ -74185,7 +74400,7 @@ entities: pos: -4.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6190 components: - type: Transform @@ -74193,7 +74408,7 @@ entities: pos: -5.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6191 components: - type: Transform @@ -74201,7 +74416,7 @@ entities: pos: -6.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6192 components: - type: Transform @@ -74209,7 +74424,7 @@ entities: pos: -8.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6194 components: - type: Transform @@ -74217,7 +74432,7 @@ entities: pos: -10.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6195 components: - type: Transform @@ -74225,7 +74440,7 @@ entities: pos: -14.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6196 components: - type: Transform @@ -74233,7 +74448,7 @@ entities: pos: -13.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6197 components: - type: Transform @@ -74241,56 +74456,56 @@ entities: pos: -12.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6206 components: - type: Transform pos: -11.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6207 components: - type: Transform pos: -11.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6208 components: - type: Transform pos: -11.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6209 components: - type: Transform pos: -7.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6210 components: - type: Transform pos: -7.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6211 components: - type: Transform pos: -7.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6212 components: - type: Transform pos: -7.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6215 components: - type: Transform @@ -74298,7 +74513,7 @@ entities: pos: -3.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6216 components: - type: Transform @@ -74306,7 +74521,7 @@ entities: pos: -2.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6217 components: - type: Transform @@ -74314,7 +74529,7 @@ entities: pos: -1.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6218 components: - type: Transform @@ -74322,7 +74537,7 @@ entities: pos: -0.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6219 components: - type: Transform @@ -74330,7 +74545,7 @@ entities: pos: -2.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6220 components: - type: Transform @@ -74338,7 +74553,7 @@ entities: pos: -1.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6221 components: - type: Transform @@ -74346,7 +74561,7 @@ entities: pos: -0.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6226 components: - type: Transform @@ -74354,7 +74569,7 @@ entities: pos: -16.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6227 components: - type: Transform @@ -74362,7 +74577,7 @@ entities: pos: -17.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6228 components: - type: Transform @@ -74370,7 +74585,7 @@ entities: pos: -18.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6230 components: - type: Transform @@ -74378,7 +74593,7 @@ entities: pos: -16.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6231 components: - type: Transform @@ -74386,7 +74601,7 @@ entities: pos: -17.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6232 components: - type: Transform @@ -74394,7 +74609,7 @@ entities: pos: -18.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6233 components: - type: Transform @@ -74402,7 +74617,7 @@ entities: pos: -19.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6235 components: - type: Transform @@ -74410,7 +74625,7 @@ entities: pos: -21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6236 components: - type: Transform @@ -74418,7 +74633,7 @@ entities: pos: -22.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6237 components: - type: Transform @@ -74426,7 +74641,7 @@ entities: pos: -23.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6238 components: - type: Transform @@ -74434,35 +74649,35 @@ entities: pos: -24.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6241 components: - type: Transform pos: -20.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6242 components: - type: Transform pos: -20.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6243 components: - type: Transform pos: -20.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6244 components: - type: Transform pos: -20.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6247 components: - type: Transform @@ -74470,7 +74685,7 @@ entities: pos: -15.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6248 components: - type: Transform @@ -74478,7 +74693,7 @@ entities: pos: -16.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6249 components: - type: Transform @@ -74486,7 +74701,7 @@ entities: pos: -17.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6253 components: - type: Transform @@ -74494,7 +74709,7 @@ entities: pos: -20.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6256 components: - type: Transform @@ -74502,7 +74717,7 @@ entities: pos: -22.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6257 components: - type: Transform @@ -74510,7 +74725,7 @@ entities: pos: -23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6258 components: - type: Transform @@ -74518,7 +74733,7 @@ entities: pos: -24.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6259 components: - type: Transform @@ -74526,14 +74741,14 @@ entities: pos: -25.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6263 components: - type: Transform pos: -26.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6264 components: - type: Transform @@ -74541,14 +74756,14 @@ entities: pos: -27.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6267 components: - type: Transform pos: -19.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6681 components: - type: Transform @@ -74556,7 +74771,7 @@ entities: pos: -11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6685 components: - type: Transform @@ -74564,7 +74779,7 @@ entities: pos: -17.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6686 components: - type: Transform @@ -74572,14 +74787,14 @@ entities: pos: -14.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6724 components: - type: Transform pos: -12.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6729 components: - type: Transform @@ -74587,7 +74802,7 @@ entities: pos: -15.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6812 components: - type: Transform @@ -74595,7 +74810,7 @@ entities: pos: -16.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6813 components: - type: Transform @@ -74603,7 +74818,7 @@ entities: pos: -17.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6814 components: - type: Transform @@ -74611,7 +74826,7 @@ entities: pos: -17.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6816 components: - type: Transform @@ -74619,7 +74834,7 @@ entities: pos: -30.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6820 components: - type: Transform @@ -74627,7 +74842,7 @@ entities: pos: -15.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6822 components: - type: Transform @@ -74635,7 +74850,7 @@ entities: pos: -16.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6825 components: - type: Transform @@ -74643,7 +74858,7 @@ entities: pos: -17.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6893 components: - type: Transform @@ -74651,7 +74866,7 @@ entities: pos: -17.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6896 components: - type: Transform @@ -74659,7 +74874,7 @@ entities: pos: -33.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6897 components: - type: Transform @@ -74667,7 +74882,7 @@ entities: pos: -18.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6898 components: - type: Transform @@ -74675,7 +74890,7 @@ entities: pos: -32.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6901 components: - type: Transform @@ -74683,7 +74898,7 @@ entities: pos: -29.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6902 components: - type: Transform @@ -74691,7 +74906,7 @@ entities: pos: -31.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6909 components: - type: Transform @@ -74699,14 +74914,14 @@ entities: pos: -30.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6910 components: - type: Transform pos: -28.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6922 components: - type: Transform @@ -74714,7 +74929,7 @@ entities: pos: -31.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6925 components: - type: Transform @@ -74722,7 +74937,7 @@ entities: pos: -32.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6930 components: - type: Transform @@ -74730,48 +74945,50 @@ entities: pos: -32.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6931 components: - type: Transform pos: -18.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6932 components: - type: Transform pos: -18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6937 components: - type: Transform pos: -18.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6938 components: - type: Transform pos: -18.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6957 components: - type: Transform pos: -18.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7004 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-11.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7043 components: - type: Transform @@ -74779,7 +74996,7 @@ entities: pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7059 components: - type: Transform @@ -74787,7 +75004,7 @@ entities: pos: -28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7060 components: - type: Transform @@ -74795,7 +75012,7 @@ entities: pos: -26.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7069 components: - type: Transform @@ -74803,7 +75020,7 @@ entities: pos: -25.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7070 components: - type: Transform @@ -74811,7 +75028,7 @@ entities: pos: -27.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7073 components: - type: Transform @@ -74819,7 +75036,7 @@ entities: pos: -24.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7091 components: - type: Transform @@ -74827,7 +75044,7 @@ entities: pos: -12.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7095 components: - type: Transform @@ -74835,7 +75052,7 @@ entities: pos: -15.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7117 components: - type: Transform @@ -74843,7 +75060,7 @@ entities: pos: -26.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7118 components: - type: Transform @@ -74851,7 +75068,7 @@ entities: pos: -27.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7150 components: - type: Transform @@ -74859,7 +75076,7 @@ entities: pos: -31.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7152 components: - type: Transform @@ -74867,7 +75084,7 @@ entities: pos: -30.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7153 components: - type: Transform @@ -74875,7 +75092,7 @@ entities: pos: -33.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7157 components: - type: Transform @@ -74883,21 +75100,21 @@ entities: pos: -27.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7203 components: - type: Transform pos: -34.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7205 components: - type: Transform pos: -34.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7212 components: - type: Transform @@ -74905,7 +75122,7 @@ entities: pos: -30.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7213 components: - type: Transform @@ -74913,21 +75130,21 @@ entities: pos: -29.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7216 components: - type: Transform pos: -11.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7223 components: - type: Transform pos: -22.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7257 components: - type: Transform @@ -74935,7 +75152,7 @@ entities: pos: -18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7303 components: - type: Transform @@ -74943,35 +75160,35 @@ entities: pos: -21.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7306 components: - type: Transform pos: -8.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7307 components: - type: Transform pos: -8.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7308 components: - type: Transform pos: -8.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7309 components: - type: Transform pos: -8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7312 components: - type: Transform @@ -74979,7 +75196,7 @@ entities: pos: -7.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7313 components: - type: Transform @@ -74987,7 +75204,7 @@ entities: pos: -6.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7314 components: - type: Transform @@ -74995,7 +75212,7 @@ entities: pos: -5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7315 components: - type: Transform @@ -75003,42 +75220,42 @@ entities: pos: -4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7316 components: - type: Transform pos: -3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7317 components: - type: Transform pos: -3.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7318 components: - type: Transform pos: -3.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7319 components: - type: Transform pos: -1.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7320 components: - type: Transform pos: -1.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7324 components: - type: Transform @@ -75046,7 +75263,7 @@ entities: pos: -3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7325 components: - type: Transform @@ -75054,7 +75271,7 @@ entities: pos: -4.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7326 components: - type: Transform @@ -75062,7 +75279,7 @@ entities: pos: -5.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7327 components: - type: Transform @@ -75070,7 +75287,7 @@ entities: pos: -6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7328 components: - type: Transform @@ -75078,7 +75295,7 @@ entities: pos: -7.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7329 components: - type: Transform @@ -75086,7 +75303,7 @@ entities: pos: -8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7330 components: - type: Transform @@ -75094,28 +75311,28 @@ entities: pos: -9.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7331 components: - type: Transform pos: -10.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7332 components: - type: Transform pos: -10.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7333 components: - type: Transform pos: -10.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7334 components: - type: Transform @@ -75123,7 +75340,7 @@ entities: pos: -11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7335 components: - type: Transform @@ -75131,7 +75348,7 @@ entities: pos: -9.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7336 components: - type: Transform @@ -75139,56 +75356,56 @@ entities: pos: -10.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7341 components: - type: Transform pos: -12.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7343 components: - type: Transform pos: -12.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7344 components: - type: Transform pos: -12.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7345 components: - type: Transform pos: -12.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7347 components: - type: Transform pos: -11.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7348 components: - type: Transform pos: -11.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7350 components: - type: Transform pos: -11.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7357 components: - type: Transform @@ -75196,7 +75413,7 @@ entities: pos: -10.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7358 components: - type: Transform @@ -75204,7 +75421,7 @@ entities: pos: -9.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7359 components: - type: Transform @@ -75212,7 +75429,7 @@ entities: pos: -8.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7361 components: - type: Transform @@ -75220,7 +75437,7 @@ entities: pos: -10.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7362 components: - type: Transform @@ -75228,7 +75445,7 @@ entities: pos: -8.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7363 components: - type: Transform @@ -75236,7 +75453,7 @@ entities: pos: -9.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7375 components: - type: Transform @@ -75244,28 +75461,28 @@ entities: pos: -6.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7400 components: - type: Transform pos: -19.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7401 components: - type: Transform pos: -19.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7405 components: - type: Transform pos: -17.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7406 components: - type: Transform @@ -75273,27 +75490,29 @@ entities: pos: -24.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7409 components: - type: Transform pos: -34.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7410 components: - type: Transform pos: -34.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7480 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-11.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7488 components: - type: Transform @@ -75301,7 +75520,7 @@ entities: pos: -20.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7495 components: - type: Transform @@ -75309,7 +75528,7 @@ entities: pos: -21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7505 components: - type: Transform @@ -75317,14 +75536,14 @@ entities: pos: -25.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7526 components: - type: Transform pos: -34.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7531 components: - type: Transform @@ -75332,7 +75551,7 @@ entities: pos: -16.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7551 components: - type: Transform @@ -75340,7 +75559,7 @@ entities: pos: -26.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7566 components: - type: Transform @@ -75348,7 +75567,7 @@ entities: pos: -19.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7568 components: - type: Transform @@ -75356,7 +75575,7 @@ entities: pos: -21.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7570 components: - type: Transform @@ -75364,7 +75583,7 @@ entities: pos: -20.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7573 components: - type: Transform @@ -75372,7 +75591,7 @@ entities: pos: -22.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7599 components: - type: Transform @@ -75380,7 +75599,7 @@ entities: pos: -22.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7604 components: - type: Transform @@ -75388,7 +75607,7 @@ entities: pos: -27.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7661 components: - type: Transform @@ -75396,7 +75615,7 @@ entities: pos: -19.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7662 components: - type: Transform @@ -75404,7 +75623,7 @@ entities: pos: -30.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7664 components: - type: Transform @@ -75412,7 +75631,7 @@ entities: pos: -30.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7665 components: - type: Transform @@ -75420,7 +75639,7 @@ entities: pos: -28.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7668 components: - type: Transform @@ -75428,7 +75647,7 @@ entities: pos: -30.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7755 components: - type: Transform @@ -75436,7 +75655,7 @@ entities: pos: -29.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7756 components: - type: Transform @@ -75444,7 +75663,7 @@ entities: pos: -29.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7761 components: - type: Transform @@ -75452,7 +75671,7 @@ entities: pos: -26.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7763 components: - type: Transform @@ -75460,7 +75679,7 @@ entities: pos: -29.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7764 components: - type: Transform @@ -75468,7 +75687,7 @@ entities: pos: -28.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7816 components: - type: Transform @@ -75476,7 +75695,7 @@ entities: pos: -29.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7817 components: - type: Transform @@ -75484,7 +75703,7 @@ entities: pos: -26.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7818 components: - type: Transform @@ -75492,7 +75711,7 @@ entities: pos: -27.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7821 components: - type: Transform @@ -75500,7 +75719,7 @@ entities: pos: -32.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7832 components: - type: Transform @@ -75508,7 +75727,7 @@ entities: pos: -17.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7884 components: - type: Transform @@ -75516,7 +75735,7 @@ entities: pos: -31.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7925 components: - type: Transform @@ -75524,7 +75743,7 @@ entities: pos: -18.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7928 components: - type: Transform @@ -75532,7 +75751,7 @@ entities: pos: -19.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7929 components: - type: Transform @@ -75540,21 +75759,21 @@ entities: pos: -13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7950 components: - type: Transform pos: -28.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7951 components: - type: Transform pos: -28.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7958 components: - type: Transform @@ -75562,7 +75781,7 @@ entities: pos: -22.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7999 components: - type: Transform @@ -75570,7 +75789,7 @@ entities: pos: -34.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8029 components: - type: Transform @@ -75578,7 +75797,7 @@ entities: pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8030 components: - type: Transform @@ -75586,7 +75805,7 @@ entities: pos: -22.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8031 components: - type: Transform @@ -75594,7 +75813,7 @@ entities: pos: -22.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8032 components: - type: Transform @@ -75602,7 +75821,7 @@ entities: pos: -22.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8037 components: - type: Transform @@ -75610,7 +75829,7 @@ entities: pos: -22.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8041 components: - type: Transform @@ -75618,7 +75837,7 @@ entities: pos: -20.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8042 components: - type: Transform @@ -75626,7 +75845,7 @@ entities: pos: -37.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8049 components: - type: Transform @@ -75634,7 +75853,7 @@ entities: pos: -27.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8050 components: - type: Transform @@ -75642,7 +75861,7 @@ entities: pos: -29.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8057 components: - type: Transform @@ -75650,7 +75869,7 @@ entities: pos: -20.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8060 components: - type: Transform @@ -75658,21 +75877,21 @@ entities: pos: -38.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8061 components: - type: Transform pos: -11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8065 components: - type: Transform pos: -28.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8066 components: - type: Transform @@ -75680,7 +75899,7 @@ entities: pos: -20.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8067 components: - type: Transform @@ -75688,7 +75907,7 @@ entities: pos: -18.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8068 components: - type: Transform @@ -75696,7 +75915,7 @@ entities: pos: -20.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8072 components: - type: Transform @@ -75704,14 +75923,14 @@ entities: pos: -22.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8077 components: - type: Transform pos: -28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8088 components: - type: Transform @@ -75719,7 +75938,7 @@ entities: pos: -20.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8091 components: - type: Transform @@ -75727,14 +75946,14 @@ entities: pos: -22.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8094 components: - type: Transform pos: -13.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8095 components: - type: Transform @@ -75742,7 +75961,7 @@ entities: pos: -15.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8097 components: - type: Transform @@ -75750,14 +75969,14 @@ entities: pos: -24.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8098 components: - type: Transform pos: -13.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8099 components: - type: Transform @@ -75765,7 +75984,7 @@ entities: pos: -21.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8105 components: - type: Transform @@ -75773,7 +75992,7 @@ entities: pos: -23.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8106 components: - type: Transform @@ -75781,7 +76000,7 @@ entities: pos: -20.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8141 components: - type: Transform @@ -75789,7 +76008,7 @@ entities: pos: -20.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8142 components: - type: Transform @@ -75797,7 +76016,7 @@ entities: pos: -20.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8213 components: - type: Transform @@ -75805,7 +76024,7 @@ entities: pos: -26.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8214 components: - type: Transform @@ -75813,7 +76032,7 @@ entities: pos: -25.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8217 components: - type: Transform @@ -75821,7 +76040,7 @@ entities: pos: -20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8218 components: - type: Transform @@ -75829,7 +76048,7 @@ entities: pos: -21.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8221 components: - type: Transform @@ -75837,7 +76056,7 @@ entities: pos: -24.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8222 components: - type: Transform @@ -75845,7 +76064,7 @@ entities: pos: -22.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8264 components: - type: Transform @@ -75853,7 +76072,7 @@ entities: pos: -17.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8269 components: - type: Transform @@ -75861,7 +76080,7 @@ entities: pos: -14.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8359 components: - type: Transform @@ -75869,7 +76088,7 @@ entities: pos: -18.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8361 components: - type: Transform @@ -75877,21 +76096,21 @@ entities: pos: -12.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8384 components: - type: Transform pos: -13.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8393 components: - type: Transform pos: -13.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8422 components: - type: Transform @@ -75899,7 +76118,7 @@ entities: pos: -11.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8543 components: - type: Transform @@ -75913,7 +76132,7 @@ entities: pos: -33.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8575 components: - type: Transform @@ -76263,7 +76482,7 @@ entities: pos: 9.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8778 components: - type: Transform @@ -76271,7 +76490,7 @@ entities: pos: 11.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8780 components: - type: Transform @@ -76279,7 +76498,7 @@ entities: pos: 12.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8782 components: - type: Transform @@ -76287,7 +76506,7 @@ entities: pos: 14.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8783 components: - type: Transform @@ -76295,7 +76514,7 @@ entities: pos: 15.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8785 components: - type: Transform @@ -76303,7 +76522,7 @@ entities: pos: 16.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8787 components: - type: Transform @@ -76311,7 +76530,7 @@ entities: pos: 17.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8788 components: - type: Transform @@ -76319,7 +76538,7 @@ entities: pos: 18.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8789 components: - type: Transform @@ -76327,7 +76546,7 @@ entities: pos: 19.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8839 components: - type: Transform @@ -76335,23 +76554,7 @@ entities: pos: 14.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 8842 components: - type: Transform @@ -76359,7 +76562,7 @@ entities: pos: 15.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8843 components: - type: Transform @@ -76367,7 +76570,7 @@ entities: pos: 12.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8844 components: - type: Transform @@ -76375,7 +76578,7 @@ entities: pos: 10.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8846 components: - type: Transform @@ -76383,7 +76586,7 @@ entities: pos: 9.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8854 components: - type: Transform @@ -76391,7 +76594,7 @@ entities: pos: -1.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8855 components: - type: Transform @@ -76399,7 +76602,7 @@ entities: pos: -0.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8856 components: - type: Transform @@ -76407,7 +76610,7 @@ entities: pos: 0.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8857 components: - type: Transform @@ -76415,7 +76618,7 @@ entities: pos: 1.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8858 components: - type: Transform @@ -76423,7 +76626,7 @@ entities: pos: 2.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8859 components: - type: Transform @@ -76431,7 +76634,7 @@ entities: pos: 3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8860 components: - type: Transform @@ -76439,7 +76642,7 @@ entities: pos: 3.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8861 components: - type: Transform @@ -76447,7 +76650,7 @@ entities: pos: 3.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8862 components: - type: Transform @@ -76455,7 +76658,7 @@ entities: pos: 3.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8864 components: - type: Transform @@ -76463,7 +76666,7 @@ entities: pos: 4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8865 components: - type: Transform @@ -76471,21 +76674,21 @@ entities: pos: 5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8867 components: - type: Transform pos: 7.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8873 components: - type: Transform pos: 7.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8874 components: - type: Transform @@ -76493,14 +76696,14 @@ entities: pos: 8.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8875 components: - type: Transform pos: 7.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8878 components: - type: Transform @@ -76508,7 +76711,7 @@ entities: pos: 5.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8879 components: - type: Transform @@ -76516,7 +76719,7 @@ entities: pos: 8.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8880 components: - type: Transform @@ -76524,7 +76727,7 @@ entities: pos: 9.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8881 components: - type: Transform @@ -76532,7 +76735,7 @@ entities: pos: 10.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8882 components: - type: Transform @@ -76540,7 +76743,7 @@ entities: pos: 11.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8883 components: - type: Transform @@ -76548,7 +76751,7 @@ entities: pos: 11.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8885 components: - type: Transform @@ -76556,7 +76759,7 @@ entities: pos: 11.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8886 components: - type: Transform @@ -76564,7 +76767,7 @@ entities: pos: 11.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8887 components: - type: Transform @@ -76572,7 +76775,7 @@ entities: pos: 11.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8888 components: - type: Transform @@ -76580,7 +76783,7 @@ entities: pos: 10.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8889 components: - type: Transform @@ -76588,7 +76791,7 @@ entities: pos: 9.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8890 components: - type: Transform @@ -76596,42 +76799,42 @@ entities: pos: 8.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8891 components: - type: Transform pos: 7.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8892 components: - type: Transform pos: 7.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8894 components: - type: Transform pos: 7.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8895 components: - type: Transform pos: 7.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8896 components: - type: Transform pos: 7.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8897 components: - type: Transform @@ -76639,7 +76842,7 @@ entities: pos: 11.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8898 components: - type: Transform @@ -76647,7 +76850,7 @@ entities: pos: 11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8899 components: - type: Transform @@ -76655,7 +76858,7 @@ entities: pos: 11.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8900 components: - type: Transform @@ -76663,7 +76866,7 @@ entities: pos: 11.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8902 components: - type: Transform @@ -76671,7 +76874,7 @@ entities: pos: 11.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8904 components: - type: Transform @@ -76679,7 +76882,7 @@ entities: pos: 11.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8905 components: - type: Transform @@ -76687,7 +76890,7 @@ entities: pos: 11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8906 components: - type: Transform @@ -76695,7 +76898,7 @@ entities: pos: 11.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8907 components: - type: Transform @@ -76703,7 +76906,7 @@ entities: pos: 11.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8908 components: - type: Transform @@ -76711,7 +76914,7 @@ entities: pos: 11.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8909 components: - type: Transform @@ -76719,7 +76922,7 @@ entities: pos: 11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8910 components: - type: Transform @@ -76727,7 +76930,7 @@ entities: pos: 11.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8913 components: - type: Transform @@ -76735,7 +76938,7 @@ entities: pos: 10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8914 components: - type: Transform @@ -76743,7 +76946,7 @@ entities: pos: -0.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8915 components: - type: Transform @@ -76751,7 +76954,7 @@ entities: pos: 0.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8916 components: - type: Transform @@ -76759,7 +76962,7 @@ entities: pos: 1.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8917 components: - type: Transform @@ -76767,7 +76970,7 @@ entities: pos: 2.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8918 components: - type: Transform @@ -76775,7 +76978,7 @@ entities: pos: 3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8921 components: - type: Transform @@ -76783,7 +76986,7 @@ entities: pos: 6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8922 components: - type: Transform @@ -76791,7 +76994,7 @@ entities: pos: 7.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8923 components: - type: Transform @@ -76799,7 +77002,7 @@ entities: pos: 8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8924 components: - type: Transform @@ -76807,7 +77010,7 @@ entities: pos: 5.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8925 components: - type: Transform @@ -76815,7 +77018,7 @@ entities: pos: 5.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8926 components: - type: Transform @@ -76823,7 +77026,7 @@ entities: pos: 5.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8927 components: - type: Transform @@ -76831,7 +77034,7 @@ entities: pos: 8.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8928 components: - type: Transform @@ -76839,7 +77042,7 @@ entities: pos: 5.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8929 components: - type: Transform @@ -76847,14 +77050,14 @@ entities: pos: 4.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8930 components: - type: Transform pos: 7.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8931 components: - type: Transform @@ -76862,7 +77065,7 @@ entities: pos: 3.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8932 components: - type: Transform @@ -76870,14 +77073,14 @@ entities: pos: 5.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8934 components: - type: Transform pos: 7.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8935 components: - type: Transform @@ -76885,7 +77088,7 @@ entities: pos: 6.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8937 components: - type: Transform @@ -76893,7 +77096,7 @@ entities: pos: 6.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8938 components: - type: Transform @@ -76901,7 +77104,7 @@ entities: pos: 8.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8941 components: - type: Transform @@ -76909,7 +77112,7 @@ entities: pos: 10.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8942 components: - type: Transform @@ -76917,7 +77120,7 @@ entities: pos: 11.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8943 components: - type: Transform @@ -76925,7 +77128,7 @@ entities: pos: 12.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8945 components: - type: Transform @@ -76933,7 +77136,7 @@ entities: pos: 13.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8946 components: - type: Transform @@ -76941,7 +77144,7 @@ entities: pos: 13.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8948 components: - type: Transform @@ -76949,7 +77152,7 @@ entities: pos: 13.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8949 components: - type: Transform @@ -76957,7 +77160,7 @@ entities: pos: 13.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8950 components: - type: Transform @@ -76965,7 +77168,7 @@ entities: pos: 13.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8951 components: - type: Transform @@ -76973,7 +77176,7 @@ entities: pos: 13.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8952 components: - type: Transform @@ -76981,7 +77184,7 @@ entities: pos: 13.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8953 components: - type: Transform @@ -76989,7 +77192,7 @@ entities: pos: 13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8954 components: - type: Transform @@ -76997,7 +77200,7 @@ entities: pos: 13.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8956 components: - type: Transform @@ -77005,7 +77208,7 @@ entities: pos: 13.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8958 components: - type: Transform @@ -77013,7 +77216,7 @@ entities: pos: 13.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8959 components: - type: Transform @@ -77021,7 +77224,7 @@ entities: pos: 13.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8961 components: - type: Transform @@ -77029,7 +77232,7 @@ entities: pos: 13.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8962 components: - type: Transform @@ -77037,7 +77240,7 @@ entities: pos: 13.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8963 components: - type: Transform @@ -77045,7 +77248,7 @@ entities: pos: 13.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8964 components: - type: Transform @@ -77053,7 +77256,7 @@ entities: pos: 13.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8965 components: - type: Transform @@ -77061,7 +77264,7 @@ entities: pos: 13.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8967 components: - type: Transform @@ -77069,7 +77272,7 @@ entities: pos: 11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8969 components: - type: Transform @@ -77077,7 +77280,7 @@ entities: pos: 12.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8970 components: - type: Transform @@ -77085,7 +77288,7 @@ entities: pos: 11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8971 components: - type: Transform @@ -77093,7 +77296,7 @@ entities: pos: 10.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8972 components: - type: Transform @@ -77101,7 +77304,7 @@ entities: pos: 9.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8973 components: - type: Transform @@ -77109,7 +77312,7 @@ entities: pos: 9.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8974 components: - type: Transform @@ -77117,7 +77320,7 @@ entities: pos: 9.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8975 components: - type: Transform @@ -77125,7 +77328,7 @@ entities: pos: 9.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8976 components: - type: Transform @@ -77133,7 +77336,7 @@ entities: pos: 9.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8977 components: - type: Transform @@ -77141,7 +77344,7 @@ entities: pos: 9.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9015 components: - type: Transform @@ -77191,7 +77394,7 @@ entities: pos: -22.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9036 components: - type: Transform @@ -77199,7 +77402,7 @@ entities: pos: -29.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9039 components: - type: Transform @@ -77207,14 +77410,14 @@ entities: pos: -29.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9052 components: - type: Transform pos: -13.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9053 components: - type: Transform @@ -77222,14 +77425,14 @@ entities: pos: -14.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9075 components: - type: Transform pos: 6.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9217 components: - type: Transform @@ -77244,7 +77447,7 @@ entities: pos: 7.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9294 components: - type: Transform @@ -77260,7 +77463,7 @@ entities: pos: 5.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9341 components: - type: Transform @@ -77268,63 +77471,63 @@ entities: pos: -49.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9416 components: - type: Transform pos: -24.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9417 components: - type: Transform pos: -24.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9424 components: - type: Transform pos: -18.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9425 components: - type: Transform pos: -18.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9426 components: - type: Transform pos: -18.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9431 components: - type: Transform pos: -12.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9432 components: - type: Transform pos: -24.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9433 components: - type: Transform pos: -22.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9435 components: - type: Transform @@ -77332,7 +77535,7 @@ entities: pos: -9.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9445 components: - type: Transform @@ -77340,35 +77543,35 @@ entities: pos: -14.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9447 components: - type: Transform pos: -13.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9449 components: - type: Transform pos: -13.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9450 components: - type: Transform pos: -13.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9564 components: - type: Transform pos: -22.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9565 components: - type: Transform @@ -77376,7 +77579,7 @@ entities: pos: -19.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9566 components: - type: Transform @@ -77384,7 +77587,7 @@ entities: pos: -20.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9589 components: - type: Transform @@ -77392,7 +77595,7 @@ entities: pos: -6.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9590 components: - type: Transform @@ -77400,7 +77603,7 @@ entities: pos: -7.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9608 components: - type: Transform @@ -77408,14 +77611,14 @@ entities: pos: -8.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9638 components: - type: Transform pos: 2.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9639 components: - type: Transform @@ -77423,7 +77626,7 @@ entities: pos: 11.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9640 components: - type: Transform @@ -77431,7 +77634,7 @@ entities: pos: 1.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9670 components: - type: Transform @@ -77439,7 +77642,7 @@ entities: pos: -29.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9683 components: - type: Transform @@ -77447,7 +77650,7 @@ entities: pos: 6.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9685 components: - type: Transform @@ -77455,7 +77658,7 @@ entities: pos: -23.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9687 components: - type: Transform @@ -77463,7 +77666,7 @@ entities: pos: -24.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9688 components: - type: Transform @@ -77471,7 +77674,7 @@ entities: pos: -24.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9701 components: - type: Transform @@ -77479,7 +77682,7 @@ entities: pos: 7.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9729 components: - type: Transform @@ -77487,7 +77690,7 @@ entities: pos: 3.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9730 components: - type: Transform @@ -77495,7 +77698,7 @@ entities: pos: 2.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9731 components: - type: Transform @@ -77503,7 +77706,7 @@ entities: pos: 1.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9732 components: - type: Transform @@ -77511,7 +77714,7 @@ entities: pos: 0.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9733 components: - type: Transform @@ -77519,7 +77722,7 @@ entities: pos: -0.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9734 components: - type: Transform @@ -77527,7 +77730,7 @@ entities: pos: -1.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9735 components: - type: Transform @@ -77535,70 +77738,70 @@ entities: pos: -2.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9736 components: - type: Transform pos: -3.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9737 components: - type: Transform pos: -3.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9738 components: - type: Transform pos: -3.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9739 components: - type: Transform pos: -3.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9740 components: - type: Transform pos: -3.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9741 components: - type: Transform pos: -3.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9742 components: - type: Transform pos: -3.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9743 components: - type: Transform pos: -3.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9745 components: - type: Transform pos: -3.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9747 components: - type: Transform @@ -77606,7 +77809,7 @@ entities: pos: -2.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9748 components: - type: Transform @@ -77614,7 +77817,7 @@ entities: pos: -1.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9749 components: - type: Transform @@ -77622,7 +77825,7 @@ entities: pos: -0.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9755 components: - type: Transform @@ -77630,7 +77833,7 @@ entities: pos: -1.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9756 components: - type: Transform @@ -77638,7 +77841,7 @@ entities: pos: -1.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9757 components: - type: Transform @@ -77646,7 +77849,7 @@ entities: pos: -1.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9758 components: - type: Transform @@ -77654,7 +77857,7 @@ entities: pos: -1.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9759 components: - type: Transform @@ -77662,7 +77865,7 @@ entities: pos: -1.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9760 components: - type: Transform @@ -77670,7 +77873,7 @@ entities: pos: -0.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9761 components: - type: Transform @@ -77678,7 +77881,7 @@ entities: pos: 0.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9762 components: - type: Transform @@ -77686,7 +77889,7 @@ entities: pos: 1.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9764 components: - type: Transform @@ -77694,7 +77897,7 @@ entities: pos: 3.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9765 components: - type: Transform @@ -77702,7 +77905,7 @@ entities: pos: 4.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9766 components: - type: Transform @@ -77710,7 +77913,7 @@ entities: pos: -0.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9767 components: - type: Transform @@ -77718,7 +77921,7 @@ entities: pos: 0.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9768 components: - type: Transform @@ -77726,91 +77929,91 @@ entities: pos: 1.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9771 components: - type: Transform pos: 2.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9772 components: - type: Transform pos: 2.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9773 components: - type: Transform pos: 2.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9775 components: - type: Transform pos: 2.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9776 components: - type: Transform pos: 0.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9777 components: - type: Transform pos: 0.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9778 components: - type: Transform pos: 0.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9780 components: - type: Transform pos: 0.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9781 components: - type: Transform pos: 0.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9785 components: - type: Transform pos: 2.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9786 components: - type: Transform pos: 2.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9787 components: - type: Transform pos: 2.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9788 components: - type: Transform @@ -77818,7 +78021,7 @@ entities: pos: 8.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9794 components: - type: Transform @@ -77826,7 +78029,7 @@ entities: pos: 2.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9795 components: - type: Transform @@ -77834,7 +78037,7 @@ entities: pos: 2.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9806 components: - type: Transform @@ -77842,7 +78045,7 @@ entities: pos: 2.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9807 components: - type: Transform @@ -77850,7 +78053,7 @@ entities: pos: -8.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9810 components: - type: Transform @@ -77858,7 +78061,7 @@ entities: pos: -54.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9818 components: - type: Transform @@ -77873,7 +78076,7 @@ entities: pos: -34.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9853 components: - type: Transform @@ -77881,7 +78084,7 @@ entities: pos: -23.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9860 components: - type: Transform @@ -77889,7 +78092,7 @@ entities: pos: -23.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9861 components: - type: Transform @@ -77897,7 +78100,7 @@ entities: pos: -24.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9865 components: - type: Transform @@ -77905,14 +78108,14 @@ entities: pos: -18.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9886 components: - type: Transform pos: -22.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9887 components: - type: Transform @@ -77920,7 +78123,7 @@ entities: pos: -0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9893 components: - type: Transform @@ -77928,7 +78131,7 @@ entities: pos: -15.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9900 components: - type: Transform @@ -77936,7 +78139,7 @@ entities: pos: -10.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9901 components: - type: Transform @@ -77944,7 +78147,7 @@ entities: pos: -9.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9904 components: - type: Transform @@ -77952,7 +78155,7 @@ entities: pos: -4.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9906 components: - type: Transform @@ -77960,7 +78163,7 @@ entities: pos: -3.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9907 components: - type: Transform @@ -77968,7 +78171,7 @@ entities: pos: -5.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9920 components: - type: Transform @@ -77976,14 +78179,14 @@ entities: pos: -13.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9921 components: - type: Transform pos: -11.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9922 components: - type: Transform @@ -77991,28 +78194,28 @@ entities: pos: -12.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9923 components: - type: Transform pos: -11.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9924 components: - type: Transform pos: -11.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9925 components: - type: Transform pos: -11.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9936 components: - type: Transform @@ -78020,7 +78223,7 @@ entities: pos: -1.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9966 components: - type: Transform @@ -78035,63 +78238,63 @@ entities: pos: -22.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9982 components: - type: Transform pos: 5.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9984 components: - type: Transform pos: 5.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9988 components: - type: Transform pos: -16.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10019 components: - type: Transform pos: -11.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10020 components: - type: Transform pos: -11.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10021 components: - type: Transform pos: -11.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10091 components: - type: Transform pos: 5.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10120 components: - type: Transform pos: -18.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10128 components: - type: Transform @@ -78099,14 +78302,14 @@ entities: pos: 8.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 10129 components: - type: Transform pos: 6.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 10130 components: - type: Transform @@ -78114,7 +78317,7 @@ entities: pos: 0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10131 components: - type: Transform @@ -78122,7 +78325,7 @@ entities: pos: -2.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10132 components: - type: Transform @@ -78130,7 +78333,7 @@ entities: pos: -22.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10133 components: - type: Transform @@ -78138,7 +78341,7 @@ entities: pos: -14.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10167 components: - type: Transform @@ -78146,56 +78349,49 @@ entities: pos: 0.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10171 components: - type: Transform pos: -16.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10172 components: - type: Transform pos: -16.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10173 components: - type: Transform pos: -16.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10174 components: - type: Transform pos: -16.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10175 components: - type: Transform pos: -18.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10212 components: - type: Transform pos: 6.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 10213 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 10215 components: - type: Transform @@ -78203,7 +78399,7 @@ entities: pos: -2.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10216 components: - type: Transform @@ -78211,7 +78407,7 @@ entities: pos: -9.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10217 components: - type: Transform @@ -78219,7 +78415,7 @@ entities: pos: -19.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10218 components: - type: Transform @@ -78227,7 +78423,7 @@ entities: pos: -14.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10219 components: - type: Transform @@ -78235,35 +78431,35 @@ entities: pos: -17.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10220 components: - type: Transform pos: -12.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10262 components: - type: Transform pos: -13.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10263 components: - type: Transform pos: -12.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10264 components: - type: Transform pos: -12.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10267 components: - type: Transform @@ -78271,7 +78467,7 @@ entities: pos: -12.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10272 components: - type: Transform @@ -78279,7 +78475,7 @@ entities: pos: -10.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10273 components: - type: Transform @@ -78287,28 +78483,28 @@ entities: pos: -11.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10275 components: - type: Transform pos: -18.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10276 components: - type: Transform pos: -16.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10277 components: - type: Transform pos: -16.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10278 components: - type: Transform @@ -78316,7 +78512,7 @@ entities: pos: -0.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10280 components: - type: Transform @@ -78324,7 +78520,7 @@ entities: pos: 0.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10281 components: - type: Transform @@ -78332,7 +78528,7 @@ entities: pos: -4.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10282 components: - type: Transform @@ -78340,7 +78536,7 @@ entities: pos: -13.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10290 components: - type: Transform @@ -78348,7 +78544,7 @@ entities: pos: -15.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10397 components: - type: Transform @@ -78356,35 +78552,35 @@ entities: pos: -16.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10435 components: - type: Transform pos: -12.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10436 components: - type: Transform pos: -13.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10437 components: - type: Transform pos: -12.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10438 components: - type: Transform pos: -11.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10535 components: - type: Transform @@ -78392,7 +78588,7 @@ entities: pos: -21.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10536 components: - type: Transform @@ -78400,7 +78596,7 @@ entities: pos: -20.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10557 components: - type: Transform @@ -78408,7 +78604,7 @@ entities: pos: 8.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 10603 components: - type: Transform @@ -78416,7 +78612,7 @@ entities: pos: -3.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10607 components: - type: Transform @@ -78424,7 +78620,7 @@ entities: pos: -3.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10608 components: - type: Transform @@ -78432,7 +78628,7 @@ entities: pos: -10.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10609 components: - type: Transform @@ -78440,14 +78636,14 @@ entities: pos: 0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10610 components: - type: Transform pos: -13.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10635 components: - type: Transform @@ -78455,7 +78651,7 @@ entities: pos: -7.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10642 components: - type: Transform @@ -78463,7 +78659,7 @@ entities: pos: -6.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10643 components: - type: Transform @@ -78471,14 +78667,14 @@ entities: pos: -8.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10793 components: - type: Transform pos: 6.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 11088 components: - type: Transform @@ -78494,21 +78690,21 @@ entities: pos: 2.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11102 components: - type: Transform pos: -16.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11109 components: - type: Transform pos: -8.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11118 components: - type: Transform @@ -78516,7 +78712,7 @@ entities: pos: -10.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11119 components: - type: Transform @@ -78524,7 +78720,7 @@ entities: pos: -9.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11131 components: - type: Transform @@ -78532,7 +78728,7 @@ entities: pos: 7.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 11132 components: - type: Transform @@ -78540,7 +78736,7 @@ entities: pos: -1.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11133 components: - type: Transform @@ -78548,7 +78744,7 @@ entities: pos: 2.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11135 components: - type: Transform @@ -78556,14 +78752,14 @@ entities: pos: -1.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11160 components: - type: Transform pos: -6.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11168 components: - type: Transform @@ -78587,7 +78783,7 @@ entities: pos: 10.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11182 components: - type: Transform @@ -78595,7 +78791,7 @@ entities: pos: 10.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11184 components: - type: Transform @@ -78603,7 +78799,7 @@ entities: pos: 11.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11185 components: - type: Transform @@ -78611,7 +78807,7 @@ entities: pos: 11.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11186 components: - type: Transform @@ -78619,7 +78815,7 @@ entities: pos: 11.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11187 components: - type: Transform @@ -78627,14 +78823,14 @@ entities: pos: 11.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11191 components: - type: Transform pos: 10.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11202 components: - type: Transform @@ -78642,7 +78838,7 @@ entities: pos: 9.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11203 components: - type: Transform @@ -78650,7 +78846,7 @@ entities: pos: 9.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11204 components: - type: Transform @@ -78658,7 +78854,7 @@ entities: pos: 9.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11205 components: - type: Transform @@ -78666,7 +78862,7 @@ entities: pos: 9.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11206 components: - type: Transform @@ -78674,7 +78870,7 @@ entities: pos: 7.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11207 components: - type: Transform @@ -78682,7 +78878,7 @@ entities: pos: 7.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11212 components: - type: Transform @@ -78690,7 +78886,7 @@ entities: pos: 20.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11338 components: - type: Transform @@ -78698,7 +78894,7 @@ entities: pos: 29.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11640 components: - type: Transform @@ -78706,7 +78902,7 @@ entities: pos: 28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11641 components: - type: Transform @@ -78714,7 +78910,7 @@ entities: pos: 34.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11665 components: - type: Transform @@ -78722,7 +78918,7 @@ entities: pos: 26.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11672 components: - type: Transform @@ -78730,7 +78926,7 @@ entities: pos: 30.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11686 components: - type: Transform @@ -78738,7 +78934,7 @@ entities: pos: 27.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11696 components: - type: Transform @@ -78746,28 +78942,28 @@ entities: pos: 25.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11701 components: - type: Transform pos: -16.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11711 components: - type: Transform pos: 33.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11713 components: - type: Transform pos: 29.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11745 components: - type: Transform @@ -78775,7 +78971,7 @@ entities: pos: 27.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11781 components: - type: Transform @@ -78783,7 +78979,7 @@ entities: pos: 28.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11802 components: - type: Transform @@ -78791,7 +78987,7 @@ entities: pos: 29.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11858 components: - type: Transform @@ -78799,7 +78995,7 @@ entities: pos: 30.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11862 components: - type: Transform @@ -78807,7 +79003,7 @@ entities: pos: 35.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11870 components: - type: Transform @@ -78815,7 +79011,7 @@ entities: pos: 28.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11875 components: - type: Transform @@ -78823,14 +79019,14 @@ entities: pos: 34.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11878 components: - type: Transform pos: 21.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11880 components: - type: Transform @@ -78838,14 +79034,14 @@ entities: pos: 22.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11881 components: - type: Transform pos: 29.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11897 components: - type: Transform @@ -78853,7 +79049,7 @@ entities: pos: 12.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11898 components: - type: Transform @@ -78861,7 +79057,7 @@ entities: pos: 13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11899 components: - type: Transform @@ -78869,7 +79065,7 @@ entities: pos: 14.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11900 components: - type: Transform @@ -78877,7 +79073,7 @@ entities: pos: 26.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11901 components: - type: Transform @@ -78885,7 +79081,7 @@ entities: pos: 15.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11902 components: - type: Transform @@ -78893,7 +79089,7 @@ entities: pos: 17.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11903 components: - type: Transform @@ -78901,7 +79097,7 @@ entities: pos: 18.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11905 components: - type: Transform @@ -78909,7 +79105,7 @@ entities: pos: 20.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11906 components: - type: Transform @@ -78917,7 +79113,7 @@ entities: pos: 14.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11907 components: - type: Transform @@ -78925,7 +79121,7 @@ entities: pos: 15.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11908 components: - type: Transform @@ -78933,7 +79129,7 @@ entities: pos: 16.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11909 components: - type: Transform @@ -78941,7 +79137,7 @@ entities: pos: 29.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11910 components: - type: Transform @@ -78949,7 +79145,7 @@ entities: pos: 18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11911 components: - type: Transform @@ -78957,7 +79153,7 @@ entities: pos: 19.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11912 components: - type: Transform @@ -78965,7 +79161,7 @@ entities: pos: 22.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11913 components: - type: Transform @@ -78973,7 +79169,7 @@ entities: pos: 21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11914 components: - type: Transform @@ -78981,7 +79177,7 @@ entities: pos: 22.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11915 components: - type: Transform @@ -78989,7 +79185,7 @@ entities: pos: 23.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11916 components: - type: Transform @@ -78997,14 +79193,14 @@ entities: pos: 23.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11917 components: - type: Transform pos: 29.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11918 components: - type: Transform @@ -79012,7 +79208,7 @@ entities: pos: 26.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11919 components: - type: Transform @@ -79020,7 +79216,7 @@ entities: pos: 35.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11921 components: - type: Transform @@ -79028,7 +79224,7 @@ entities: pos: 27.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11927 components: - type: Transform @@ -79036,7 +79232,7 @@ entities: pos: 22.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11928 components: - type: Transform @@ -79044,42 +79240,42 @@ entities: pos: 23.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11943 components: - type: Transform pos: 21.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11946 components: - type: Transform pos: 21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11947 components: - type: Transform pos: 21.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11948 components: - type: Transform pos: 21.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11949 components: - type: Transform pos: 20.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11951 components: - type: Transform @@ -79087,7 +79283,7 @@ entities: pos: 14.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11952 components: - type: Transform @@ -79095,7 +79291,7 @@ entities: pos: 15.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11953 components: - type: Transform @@ -79103,7 +79299,7 @@ entities: pos: 16.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11954 components: - type: Transform @@ -79111,7 +79307,7 @@ entities: pos: 17.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11955 components: - type: Transform @@ -79119,7 +79315,7 @@ entities: pos: 18.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11956 components: - type: Transform @@ -79127,7 +79323,7 @@ entities: pos: 19.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11957 components: - type: Transform @@ -79135,7 +79331,7 @@ entities: pos: 12.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11958 components: - type: Transform @@ -79143,7 +79339,7 @@ entities: pos: 13.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11959 components: - type: Transform @@ -79151,7 +79347,7 @@ entities: pos: 15.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11960 components: - type: Transform @@ -79159,7 +79355,7 @@ entities: pos: 14.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11961 components: - type: Transform @@ -79167,7 +79363,7 @@ entities: pos: 16.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11962 components: - type: Transform @@ -79175,7 +79371,7 @@ entities: pos: 17.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11963 components: - type: Transform @@ -79183,7 +79379,7 @@ entities: pos: 18.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11964 components: - type: Transform @@ -79191,7 +79387,7 @@ entities: pos: 19.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11965 components: - type: Transform @@ -79199,77 +79395,77 @@ entities: pos: 20.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11969 components: - type: Transform pos: 21.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11970 components: - type: Transform pos: 21.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11971 components: - type: Transform pos: 21.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11972 components: - type: Transform pos: 21.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11973 components: - type: Transform pos: 21.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11974 components: - type: Transform pos: 20.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11975 components: - type: Transform pos: 20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11976 components: - type: Transform pos: 20.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11977 components: - type: Transform pos: 20.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11980 components: - type: Transform pos: 20.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11983 components: - type: Transform @@ -79277,7 +79473,7 @@ entities: pos: 20.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11984 components: - type: Transform @@ -79285,7 +79481,7 @@ entities: pos: 19.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11986 components: - type: Transform @@ -79293,7 +79489,7 @@ entities: pos: 21.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11988 components: - type: Transform @@ -79301,7 +79497,7 @@ entities: pos: 23.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11989 components: - type: Transform @@ -79309,7 +79505,7 @@ entities: pos: 27.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11990 components: - type: Transform @@ -79317,7 +79513,7 @@ entities: pos: 26.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11992 components: - type: Transform @@ -79325,7 +79521,7 @@ entities: pos: 28.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11993 components: - type: Transform @@ -79333,7 +79529,7 @@ entities: pos: 31.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12000 components: - type: Transform @@ -79341,7 +79537,7 @@ entities: pos: 25.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12004 components: - type: Transform @@ -79349,7 +79545,7 @@ entities: pos: 30.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12005 components: - type: Transform @@ -79357,7 +79553,7 @@ entities: pos: 30.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12006 components: - type: Transform @@ -79365,7 +79561,7 @@ entities: pos: 30.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12008 components: - type: Transform @@ -79373,7 +79569,7 @@ entities: pos: 25.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12009 components: - type: Transform @@ -79381,7 +79577,7 @@ entities: pos: 25.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12016 components: - type: Transform @@ -79389,14 +79585,14 @@ entities: pos: 31.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12021 components: - type: Transform pos: 29.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12022 components: - type: Transform @@ -79404,7 +79600,7 @@ entities: pos: 26.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12023 components: - type: Transform @@ -79412,7 +79608,7 @@ entities: pos: 26.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12024 components: - type: Transform @@ -79420,7 +79616,7 @@ entities: pos: 36.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12036 components: - type: Transform @@ -79428,7 +79624,7 @@ entities: pos: 26.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12037 components: - type: Transform @@ -79436,7 +79632,7 @@ entities: pos: 26.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12040 components: - type: Transform @@ -79444,7 +79640,7 @@ entities: pos: 29.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12041 components: - type: Transform @@ -79452,7 +79648,7 @@ entities: pos: 29.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12042 components: - type: Transform @@ -79460,7 +79656,7 @@ entities: pos: 29.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12061 components: - type: Transform @@ -79468,7 +79664,7 @@ entities: pos: 32.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12065 components: - type: Transform @@ -79476,7 +79672,7 @@ entities: pos: 34.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12066 components: - type: Transform @@ -79484,7 +79680,7 @@ entities: pos: 36.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12082 components: - type: Transform @@ -79492,7 +79688,7 @@ entities: pos: 7.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12101 components: - type: Transform @@ -79500,7 +79696,7 @@ entities: pos: 34.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12127 components: - type: Transform @@ -79508,7 +79704,7 @@ entities: pos: 31.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12130 components: - type: Transform @@ -79516,7 +79712,7 @@ entities: pos: 34.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12236 components: - type: Transform @@ -79524,63 +79720,63 @@ entities: pos: 32.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12464 components: - type: Transform pos: 10.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12465 components: - type: Transform pos: 10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12466 components: - type: Transform pos: 10.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12467 components: - type: Transform pos: 10.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12468 components: - type: Transform pos: 10.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12469 components: - type: Transform pos: 10.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12470 components: - type: Transform pos: 8.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12471 components: - type: Transform pos: 8.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12474 components: - type: Transform @@ -79588,7 +79784,7 @@ entities: pos: 8.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12475 components: - type: Transform @@ -79596,7 +79792,7 @@ entities: pos: 10.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12476 components: - type: Transform @@ -79604,7 +79800,7 @@ entities: pos: 8.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12477 components: - type: Transform @@ -79612,7 +79808,7 @@ entities: pos: 8.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12478 components: - type: Transform @@ -79620,7 +79816,7 @@ entities: pos: 8.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12479 components: - type: Transform @@ -79628,7 +79824,7 @@ entities: pos: 8.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12480 components: - type: Transform @@ -79636,7 +79832,7 @@ entities: pos: 8.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12481 components: - type: Transform @@ -79644,7 +79840,7 @@ entities: pos: 8.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12483 components: - type: Transform @@ -79652,7 +79848,7 @@ entities: pos: 10.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12484 components: - type: Transform @@ -79660,7 +79856,7 @@ entities: pos: 10.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12485 components: - type: Transform @@ -79668,7 +79864,7 @@ entities: pos: 10.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12486 components: - type: Transform @@ -79676,7 +79872,7 @@ entities: pos: 10.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12487 components: - type: Transform @@ -79684,7 +79880,7 @@ entities: pos: 10.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12489 components: - type: Transform @@ -79692,7 +79888,7 @@ entities: pos: 31.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12492 components: - type: Transform @@ -79700,7 +79896,7 @@ entities: pos: 30.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12493 components: - type: Transform @@ -79708,7 +79904,7 @@ entities: pos: 31.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12494 components: - type: Transform @@ -79716,7 +79912,7 @@ entities: pos: 9.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12496 components: - type: Transform @@ -79724,7 +79920,7 @@ entities: pos: 9.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12497 components: - type: Transform @@ -79732,7 +79928,7 @@ entities: pos: 10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12498 components: - type: Transform @@ -79740,7 +79936,7 @@ entities: pos: 11.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12499 components: - type: Transform @@ -79748,7 +79944,7 @@ entities: pos: 12.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12500 components: - type: Transform @@ -79756,7 +79952,7 @@ entities: pos: 13.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12501 components: - type: Transform @@ -79764,7 +79960,7 @@ entities: pos: 14.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12502 components: - type: Transform @@ -79772,7 +79968,7 @@ entities: pos: 15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12504 components: - type: Transform @@ -79780,7 +79976,7 @@ entities: pos: 17.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12505 components: - type: Transform @@ -79788,7 +79984,7 @@ entities: pos: 19.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12506 components: - type: Transform @@ -79796,7 +79992,7 @@ entities: pos: 20.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12507 components: - type: Transform @@ -79804,7 +80000,7 @@ entities: pos: 18.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12508 components: - type: Transform @@ -79812,7 +80008,7 @@ entities: pos: 21.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12509 components: - type: Transform @@ -79820,7 +80016,7 @@ entities: pos: 21.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12510 components: - type: Transform @@ -79828,7 +80024,7 @@ entities: pos: 21.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12511 components: - type: Transform @@ -79836,7 +80032,7 @@ entities: pos: 21.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12512 components: - type: Transform @@ -79844,7 +80040,7 @@ entities: pos: 21.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12516 components: - type: Transform @@ -79852,7 +80048,7 @@ entities: pos: 11.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12517 components: - type: Transform @@ -79860,7 +80056,7 @@ entities: pos: 12.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12518 components: - type: Transform @@ -79868,7 +80064,7 @@ entities: pos: 13.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12519 components: - type: Transform @@ -79876,7 +80072,7 @@ entities: pos: 14.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12520 components: - type: Transform @@ -79884,7 +80080,7 @@ entities: pos: 15.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12521 components: - type: Transform @@ -79892,7 +80088,7 @@ entities: pos: 16.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12522 components: - type: Transform @@ -79900,7 +80096,7 @@ entities: pos: 17.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12524 components: - type: Transform @@ -79908,7 +80104,7 @@ entities: pos: 19.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12525 components: - type: Transform @@ -79916,7 +80112,7 @@ entities: pos: 20.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12526 components: - type: Transform @@ -79924,7 +80120,7 @@ entities: pos: 21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12527 components: - type: Transform @@ -79932,7 +80128,7 @@ entities: pos: 22.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12529 components: - type: Transform @@ -79940,7 +80136,7 @@ entities: pos: 23.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12530 components: - type: Transform @@ -79948,7 +80144,7 @@ entities: pos: 23.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12531 components: - type: Transform @@ -79956,7 +80152,7 @@ entities: pos: 23.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12532 components: - type: Transform @@ -79964,7 +80160,7 @@ entities: pos: 23.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12533 components: - type: Transform @@ -79972,7 +80168,7 @@ entities: pos: 23.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12534 components: - type: Transform @@ -79980,7 +80176,7 @@ entities: pos: 23.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12535 components: - type: Transform @@ -79988,7 +80184,7 @@ entities: pos: 23.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12546 components: - type: Transform @@ -79996,7 +80192,7 @@ entities: pos: 21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12547 components: - type: Transform @@ -80004,7 +80200,7 @@ entities: pos: 21.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12548 components: - type: Transform @@ -80012,7 +80208,7 @@ entities: pos: 21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12549 components: - type: Transform @@ -80020,7 +80216,7 @@ entities: pos: 21.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12550 components: - type: Transform @@ -80028,7 +80224,7 @@ entities: pos: 23.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12551 components: - type: Transform @@ -80036,7 +80232,7 @@ entities: pos: 23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12552 components: - type: Transform @@ -80044,7 +80240,7 @@ entities: pos: 21.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12553 components: - type: Transform @@ -80052,7 +80248,7 @@ entities: pos: 21.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12554 components: - type: Transform @@ -80060,7 +80256,7 @@ entities: pos: 21.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12555 components: - type: Transform @@ -80068,7 +80264,7 @@ entities: pos: 20.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12556 components: - type: Transform @@ -80076,7 +80272,7 @@ entities: pos: 20.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12557 components: - type: Transform @@ -80084,7 +80280,7 @@ entities: pos: 21.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12558 components: - type: Transform @@ -80092,14 +80288,14 @@ entities: pos: 22.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12560 components: - type: Transform pos: 23.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12561 components: - type: Transform @@ -80107,7 +80303,7 @@ entities: pos: 22.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12562 components: - type: Transform @@ -80115,7 +80311,7 @@ entities: pos: 21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12563 components: - type: Transform @@ -80123,7 +80319,7 @@ entities: pos: 20.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12564 components: - type: Transform @@ -80131,7 +80327,7 @@ entities: pos: 19.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12565 components: - type: Transform @@ -80139,7 +80335,7 @@ entities: pos: 20.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12566 components: - type: Transform @@ -80147,7 +80343,7 @@ entities: pos: 19.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12567 components: - type: Transform @@ -80155,7 +80351,7 @@ entities: pos: 20.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12568 components: - type: Transform @@ -80163,7 +80359,7 @@ entities: pos: 19.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12569 components: - type: Transform @@ -80171,7 +80367,7 @@ entities: pos: 22.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12570 components: - type: Transform @@ -80179,7 +80375,7 @@ entities: pos: 21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12571 components: - type: Transform @@ -80187,7 +80383,7 @@ entities: pos: 20.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12572 components: - type: Transform @@ -80195,7 +80391,7 @@ entities: pos: 19.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12573 components: - type: Transform @@ -80203,7 +80399,7 @@ entities: pos: 20.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12574 components: - type: Transform @@ -80211,7 +80407,7 @@ entities: pos: 19.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12575 components: - type: Transform @@ -80219,7 +80415,7 @@ entities: pos: 19.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12585 components: - type: Transform @@ -80227,14 +80423,14 @@ entities: pos: 24.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12586 components: - type: Transform pos: 25.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12590 components: - type: Transform @@ -80242,7 +80438,7 @@ entities: pos: 26.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12591 components: - type: Transform @@ -80250,7 +80446,7 @@ entities: pos: 26.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12592 components: - type: Transform @@ -80258,7 +80454,7 @@ entities: pos: 27.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12593 components: - type: Transform @@ -80266,7 +80462,7 @@ entities: pos: 28.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12594 components: - type: Transform @@ -80274,7 +80470,7 @@ entities: pos: 29.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12596 components: - type: Transform @@ -80282,7 +80478,7 @@ entities: pos: 22.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12597 components: - type: Transform @@ -80290,7 +80486,7 @@ entities: pos: 23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12598 components: - type: Transform @@ -80298,7 +80494,7 @@ entities: pos: 25.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12601 components: - type: Transform @@ -80306,7 +80502,7 @@ entities: pos: 27.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12602 components: - type: Transform @@ -80314,7 +80510,7 @@ entities: pos: 28.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12605 components: - type: Transform @@ -80322,7 +80518,7 @@ entities: pos: 24.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12607 components: - type: Transform @@ -80330,7 +80526,7 @@ entities: pos: 24.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12608 components: - type: Transform @@ -80338,7 +80534,7 @@ entities: pos: 25.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12609 components: - type: Transform @@ -80346,56 +80542,56 @@ entities: pos: 26.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12613 components: - type: Transform pos: 26.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12614 components: - type: Transform pos: 26.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12615 components: - type: Transform pos: 26.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12616 components: - type: Transform pos: 26.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12617 components: - type: Transform pos: 26.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12655 components: - type: Transform pos: 28.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12658 components: - type: Transform pos: 28.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12677 components: - type: Transform @@ -80403,14 +80599,14 @@ entities: pos: 26.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12745 components: - type: Transform pos: 16.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12752 components: - type: Transform @@ -80430,7 +80626,7 @@ entities: pos: 27.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12812 components: - type: Transform @@ -80438,14 +80634,14 @@ entities: pos: 26.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12825 components: - type: Transform pos: 28.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12873 components: - type: Transform @@ -80453,7 +80649,7 @@ entities: pos: 23.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12876 components: - type: Transform @@ -80461,7 +80657,7 @@ entities: pos: 24.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12879 components: - type: Transform @@ -80469,7 +80665,7 @@ entities: pos: 22.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12880 components: - type: Transform @@ -80477,7 +80673,7 @@ entities: pos: 21.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12884 components: - type: Transform @@ -80485,7 +80681,7 @@ entities: pos: 24.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12887 components: - type: Transform @@ -80493,7 +80689,7 @@ entities: pos: 25.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12888 components: - type: Transform @@ -80501,7 +80697,7 @@ entities: pos: 27.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12907 components: - type: Transform @@ -80514,7 +80710,7 @@ entities: pos: 26.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12924 components: - type: Transform @@ -80527,7 +80723,7 @@ entities: pos: 12.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12939 components: - type: Transform @@ -80535,7 +80731,7 @@ entities: pos: 13.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12941 components: - type: Transform @@ -80543,7 +80739,7 @@ entities: pos: 15.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12942 components: - type: Transform @@ -80551,7 +80747,7 @@ entities: pos: 16.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12945 components: - type: Transform @@ -80559,7 +80755,7 @@ entities: pos: 19.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12946 components: - type: Transform @@ -80567,7 +80763,7 @@ entities: pos: 20.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12947 components: - type: Transform @@ -80575,7 +80771,7 @@ entities: pos: 21.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12948 components: - type: Transform @@ -80583,7 +80779,7 @@ entities: pos: 22.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12950 components: - type: Transform @@ -80591,7 +80787,7 @@ entities: pos: 23.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12952 components: - type: Transform @@ -80599,7 +80795,7 @@ entities: pos: 23.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12953 components: - type: Transform @@ -80607,7 +80803,7 @@ entities: pos: 23.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12955 components: - type: Transform @@ -80615,7 +80811,7 @@ entities: pos: 23.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12957 components: - type: Transform @@ -80623,7 +80819,7 @@ entities: pos: 25.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12958 components: - type: Transform @@ -80631,7 +80827,7 @@ entities: pos: 24.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12962 components: - type: Transform @@ -80639,7 +80835,7 @@ entities: pos: 27.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12964 components: - type: Transform @@ -80647,7 +80843,7 @@ entities: pos: 29.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12965 components: - type: Transform @@ -80655,28 +80851,28 @@ entities: pos: 30.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12966 components: - type: Transform pos: 10.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12967 components: - type: Transform pos: 32.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12968 components: - type: Transform pos: 32.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12969 components: - type: Transform @@ -80684,7 +80880,7 @@ entities: pos: 33.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12970 components: - type: Transform @@ -80692,7 +80888,7 @@ entities: pos: 34.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12971 components: - type: Transform @@ -80700,7 +80896,7 @@ entities: pos: 35.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12972 components: - type: Transform @@ -80708,7 +80904,7 @@ entities: pos: 36.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12977 components: - type: Transform @@ -80716,7 +80912,7 @@ entities: pos: 22.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12978 components: - type: Transform @@ -80724,7 +80920,7 @@ entities: pos: 21.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12979 components: - type: Transform @@ -80732,7 +80928,7 @@ entities: pos: 20.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12980 components: - type: Transform @@ -80740,7 +80936,7 @@ entities: pos: 19.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12981 components: - type: Transform @@ -80748,7 +80944,7 @@ entities: pos: 18.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12982 components: - type: Transform @@ -80756,21 +80952,21 @@ entities: pos: 17.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12984 components: - type: Transform pos: 23.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12985 components: - type: Transform pos: 23.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12987 components: - type: Transform @@ -80778,7 +80974,7 @@ entities: pos: 14.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12988 components: - type: Transform @@ -80786,7 +80982,7 @@ entities: pos: 14.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12990 components: - type: Transform @@ -80794,7 +80990,7 @@ entities: pos: 14.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12992 components: - type: Transform @@ -80802,7 +80998,7 @@ entities: pos: 15.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12993 components: - type: Transform @@ -80810,7 +81006,7 @@ entities: pos: 16.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12994 components: - type: Transform @@ -80818,7 +81014,7 @@ entities: pos: 17.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12998 components: - type: Transform @@ -80826,7 +81022,7 @@ entities: pos: 22.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12999 components: - type: Transform @@ -80834,7 +81030,7 @@ entities: pos: 21.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13000 components: - type: Transform @@ -80842,7 +81038,7 @@ entities: pos: 20.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13001 components: - type: Transform @@ -80850,7 +81046,7 @@ entities: pos: 19.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13008 components: - type: Transform @@ -80858,7 +81054,7 @@ entities: pos: 9.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13009 components: - type: Transform @@ -80866,7 +81062,7 @@ entities: pos: 10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13010 components: - type: Transform @@ -80874,7 +81070,7 @@ entities: pos: 11.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13012 components: - type: Transform @@ -80882,7 +81078,7 @@ entities: pos: 12.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13013 components: - type: Transform @@ -80890,7 +81086,7 @@ entities: pos: 12.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13014 components: - type: Transform @@ -80898,7 +81094,7 @@ entities: pos: 12.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13015 components: - type: Transform @@ -80906,7 +81102,7 @@ entities: pos: 12.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13018 components: - type: Transform @@ -80914,7 +81110,7 @@ entities: pos: 14.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13019 components: - type: Transform @@ -80922,7 +81118,7 @@ entities: pos: 15.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13020 components: - type: Transform @@ -80930,14 +81126,14 @@ entities: pos: 16.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13021 components: - type: Transform pos: 17.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13023 components: - type: Transform @@ -80945,7 +81141,7 @@ entities: pos: 12.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13025 components: - type: Transform @@ -80953,7 +81149,7 @@ entities: pos: 13.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13026 components: - type: Transform @@ -80961,7 +81157,7 @@ entities: pos: 14.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13027 components: - type: Transform @@ -80969,7 +81165,7 @@ entities: pos: 15.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13028 components: - type: Transform @@ -80977,7 +81173,7 @@ entities: pos: 16.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13029 components: - type: Transform @@ -80985,7 +81181,7 @@ entities: pos: 17.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13031 components: - type: Transform @@ -80993,7 +81189,7 @@ entities: pos: 19.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13032 components: - type: Transform @@ -81001,21 +81197,21 @@ entities: pos: 20.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13040 components: - type: Transform pos: 17.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13041 components: - type: Transform pos: 17.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13042 components: - type: Transform @@ -81023,7 +81219,7 @@ entities: pos: 18.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13043 components: - type: Transform @@ -81031,7 +81227,7 @@ entities: pos: 19.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13044 components: - type: Transform @@ -81039,7 +81235,7 @@ entities: pos: 20.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13045 components: - type: Transform @@ -81047,7 +81243,7 @@ entities: pos: 21.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13046 components: - type: Transform @@ -81055,7 +81251,7 @@ entities: pos: 21.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13047 components: - type: Transform @@ -81063,7 +81259,7 @@ entities: pos: 21.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13050 components: - type: Transform @@ -81071,7 +81267,7 @@ entities: pos: 20.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13051 components: - type: Transform @@ -81079,7 +81275,7 @@ entities: pos: 19.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13052 components: - type: Transform @@ -81087,7 +81283,7 @@ entities: pos: 18.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13053 components: - type: Transform @@ -81095,28 +81291,28 @@ entities: pos: 17.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13054 components: - type: Transform pos: 21.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13055 components: - type: Transform pos: 21.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13056 components: - type: Transform pos: 21.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13057 components: - type: Transform @@ -81124,7 +81320,7 @@ entities: pos: 22.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13058 components: - type: Transform @@ -81132,7 +81328,7 @@ entities: pos: 23.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13060 components: - type: Transform @@ -81140,7 +81336,7 @@ entities: pos: 24.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13061 components: - type: Transform @@ -81148,7 +81344,7 @@ entities: pos: 26.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13062 components: - type: Transform @@ -81156,7 +81352,7 @@ entities: pos: 28.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13063 components: - type: Transform @@ -81164,7 +81360,7 @@ entities: pos: 29.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13064 components: - type: Transform @@ -81172,7 +81368,7 @@ entities: pos: 30.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13065 components: - type: Transform @@ -81180,7 +81376,7 @@ entities: pos: 31.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13066 components: - type: Transform @@ -81188,7 +81384,7 @@ entities: pos: 32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13068 components: - type: Transform @@ -81196,7 +81392,7 @@ entities: pos: 34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13069 components: - type: Transform @@ -81204,7 +81400,7 @@ entities: pos: 35.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13070 components: - type: Transform @@ -81212,7 +81408,7 @@ entities: pos: 36.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13071 components: - type: Transform @@ -81220,7 +81416,7 @@ entities: pos: 37.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13089 components: - type: Transform @@ -81228,7 +81424,7 @@ entities: pos: 24.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13090 components: - type: Transform @@ -81236,14 +81432,14 @@ entities: pos: 25.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13152 components: - type: Transform pos: 28.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13337 components: - type: Transform @@ -81251,7 +81447,7 @@ entities: pos: 25.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13339 components: - type: Transform @@ -81259,7 +81455,7 @@ entities: pos: 39.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13348 components: - type: Transform @@ -81267,7 +81463,7 @@ entities: pos: 40.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13349 components: - type: Transform @@ -81275,7 +81471,7 @@ entities: pos: 40.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13350 components: - type: Transform @@ -81283,7 +81479,7 @@ entities: pos: 40.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13351 components: - type: Transform @@ -81291,7 +81487,7 @@ entities: pos: 40.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13352 components: - type: Transform @@ -81299,14 +81495,14 @@ entities: pos: 40.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13468 components: - type: Transform pos: 16.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13635 components: - type: Transform @@ -81314,7 +81510,7 @@ entities: pos: 51.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13636 components: - type: Transform @@ -81322,7 +81518,7 @@ entities: pos: 49.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13637 components: - type: Transform @@ -81330,7 +81526,7 @@ entities: pos: 47.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13638 components: - type: Transform @@ -81338,7 +81534,7 @@ entities: pos: 45.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13639 components: - type: Transform @@ -81346,7 +81542,7 @@ entities: pos: 43.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13640 components: - type: Transform @@ -81354,7 +81550,7 @@ entities: pos: 34.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13641 components: - type: Transform @@ -81362,7 +81558,7 @@ entities: pos: 36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13754 components: - type: Transform @@ -81370,7 +81566,7 @@ entities: pos: 32.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13755 components: - type: Transform @@ -81378,7 +81574,7 @@ entities: pos: 33.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13756 components: - type: Transform @@ -81386,7 +81582,7 @@ entities: pos: 34.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13758 components: - type: Transform @@ -81394,7 +81590,7 @@ entities: pos: 36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13759 components: - type: Transform @@ -81402,7 +81598,7 @@ entities: pos: 37.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13760 components: - type: Transform @@ -81410,7 +81606,7 @@ entities: pos: 38.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13761 components: - type: Transform @@ -81418,7 +81614,7 @@ entities: pos: 39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13762 components: - type: Transform @@ -81426,7 +81622,7 @@ entities: pos: 40.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13763 components: - type: Transform @@ -81434,7 +81630,7 @@ entities: pos: 41.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13764 components: - type: Transform @@ -81442,7 +81638,7 @@ entities: pos: 42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13766 components: - type: Transform @@ -81450,7 +81646,7 @@ entities: pos: 44.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13768 components: - type: Transform @@ -81458,7 +81654,7 @@ entities: pos: -50.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13769 components: - type: Transform @@ -81466,7 +81662,7 @@ entities: pos: 32.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13770 components: - type: Transform @@ -81474,7 +81670,7 @@ entities: pos: 33.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13771 components: - type: Transform @@ -81482,7 +81678,7 @@ entities: pos: 34.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13773 components: - type: Transform @@ -81490,7 +81686,7 @@ entities: pos: 36.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13774 components: - type: Transform @@ -81498,7 +81694,7 @@ entities: pos: 37.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13775 components: - type: Transform @@ -81506,7 +81702,7 @@ entities: pos: 38.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13777 components: - type: Transform @@ -81514,7 +81710,7 @@ entities: pos: 40.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13778 components: - type: Transform @@ -81522,7 +81718,7 @@ entities: pos: 41.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13779 components: - type: Transform @@ -81530,7 +81726,7 @@ entities: pos: 42.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13780 components: - type: Transform @@ -81538,7 +81734,7 @@ entities: pos: 43.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13781 components: - type: Transform @@ -81546,28 +81742,28 @@ entities: pos: 44.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13785 components: - type: Transform pos: 30.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13786 components: - type: Transform pos: 30.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13787 components: - type: Transform pos: 30.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13788 components: - type: Transform @@ -81575,7 +81771,7 @@ entities: pos: -46.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13792 components: - type: Transform @@ -81583,7 +81779,7 @@ entities: pos: -34.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13793 components: - type: Transform @@ -81591,7 +81787,7 @@ entities: pos: 29.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13794 components: - type: Transform @@ -81599,7 +81795,7 @@ entities: pos: 29.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13795 components: - type: Transform @@ -81607,7 +81803,7 @@ entities: pos: 29.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13796 components: - type: Transform @@ -81615,7 +81811,7 @@ entities: pos: 29.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13797 components: - type: Transform @@ -81623,7 +81819,7 @@ entities: pos: 29.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13799 components: - type: Transform @@ -81631,7 +81827,7 @@ entities: pos: 9.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13955 components: - type: Transform @@ -81647,7 +81843,7 @@ entities: pos: -1.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14362 components: - type: Transform @@ -81655,28 +81851,28 @@ entities: pos: -53.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14448 components: - type: Transform pos: 21.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14454 components: - type: Transform pos: -25.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14461 components: - type: Transform pos: 21.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14466 components: - type: Transform @@ -81684,7 +81880,7 @@ entities: pos: -61.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14472 components: - type: Transform @@ -81692,7 +81888,7 @@ entities: pos: -61.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14475 components: - type: Transform @@ -81700,14 +81896,14 @@ entities: pos: -58.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14498 components: - type: Transform pos: -25.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14500 components: - type: Transform @@ -81715,7 +81911,7 @@ entities: pos: 18.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14501 components: - type: Transform @@ -81723,7 +81919,7 @@ entities: pos: -61.5,-62.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14502 components: - type: Transform @@ -81731,7 +81927,7 @@ entities: pos: -64.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14503 components: - type: Transform @@ -81739,7 +81935,7 @@ entities: pos: -59.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14511 components: - type: Transform @@ -81747,7 +81943,7 @@ entities: pos: 15.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14517 components: - type: Transform @@ -81755,28 +81951,28 @@ entities: pos: 16.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14974 components: - type: Transform pos: 16.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14975 components: - type: Transform pos: 16.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14977 components: - type: Transform pos: 16.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14980 components: - type: Transform @@ -81784,7 +81980,7 @@ entities: pos: 30.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14981 components: - type: Transform @@ -81792,63 +81988,63 @@ entities: pos: 18.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14988 components: - type: Transform pos: 16.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14990 components: - type: Transform pos: 16.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15018 components: - type: Transform pos: 16.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15049 components: - type: Transform pos: 16.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15053 components: - type: Transform pos: 16.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15054 components: - type: Transform pos: 16.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15055 components: - type: Transform pos: 16.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15061 components: - type: Transform pos: 16.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15453 components: - type: Transform @@ -81856,7 +82052,7 @@ entities: pos: 50.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15454 components: - type: Transform @@ -81864,7 +82060,7 @@ entities: pos: 48.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15455 components: - type: Transform @@ -81872,7 +82068,7 @@ entities: pos: 46.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15456 components: - type: Transform @@ -81880,7 +82076,7 @@ entities: pos: 44.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15457 components: - type: Transform @@ -81888,7 +82084,7 @@ entities: pos: 33.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15458 components: - type: Transform @@ -81896,7 +82092,7 @@ entities: pos: 35.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15459 components: - type: Transform @@ -81904,7 +82100,7 @@ entities: pos: 37.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15618 components: - type: Transform @@ -81912,7 +82108,7 @@ entities: pos: 52.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15624 components: - type: Transform @@ -81920,21 +82116,21 @@ entities: pos: 38.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15734 components: - type: Transform pos: 42.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15735 components: - type: Transform pos: 42.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15740 components: - type: Transform @@ -81942,7 +82138,7 @@ entities: pos: 39.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15741 components: - type: Transform @@ -81950,7 +82146,7 @@ entities: pos: 40.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15743 components: - type: Transform @@ -81958,35 +82154,35 @@ entities: pos: 41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15744 components: - type: Transform pos: 42.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15745 components: - type: Transform pos: 42.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15746 components: - type: Transform pos: 42.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15747 components: - type: Transform pos: 42.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15748 components: - type: Transform @@ -81994,14 +82190,14 @@ entities: pos: 52.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15994 components: - type: Transform pos: 32.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16101 components: - type: Transform @@ -82009,7 +82205,7 @@ entities: pos: 34.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16102 components: - type: Transform @@ -82017,7 +82213,7 @@ entities: pos: 26.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16122 components: - type: Transform @@ -82025,7 +82221,7 @@ entities: pos: 24.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16783 components: - type: Transform @@ -82033,7 +82229,7 @@ entities: pos: 17.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17715 components: - type: Transform @@ -82041,14 +82237,14 @@ entities: pos: -54.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18077 components: - type: Transform pos: 16.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18211 components: - type: Transform @@ -82056,56 +82252,56 @@ entities: pos: 15.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18377 components: - type: Transform pos: -45.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18378 components: - type: Transform pos: -45.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18379 components: - type: Transform pos: -45.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18381 components: - type: Transform pos: -45.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18382 components: - type: Transform pos: -45.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18383 components: - type: Transform pos: -45.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18384 components: - type: Transform pos: -45.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18388 components: - type: Transform @@ -82113,7 +82309,7 @@ entities: pos: -60.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18389 components: - type: Transform @@ -82121,7 +82317,7 @@ entities: pos: -59.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18390 components: - type: Transform @@ -82129,7 +82325,7 @@ entities: pos: -58.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18392 components: - type: Transform @@ -82137,7 +82333,7 @@ entities: pos: -56.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18393 components: - type: Transform @@ -82145,7 +82341,7 @@ entities: pos: -55.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18394 components: - type: Transform @@ -82153,7 +82349,7 @@ entities: pos: -54.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18395 components: - type: Transform @@ -82161,7 +82357,7 @@ entities: pos: -53.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18396 components: - type: Transform @@ -82169,7 +82365,7 @@ entities: pos: -52.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18398 components: - type: Transform @@ -82177,7 +82373,7 @@ entities: pos: -50.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18399 components: - type: Transform @@ -82185,7 +82381,7 @@ entities: pos: -51.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18400 components: - type: Transform @@ -82193,7 +82389,7 @@ entities: pos: -48.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18401 components: - type: Transform @@ -82201,7 +82397,7 @@ entities: pos: -47.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18402 components: - type: Transform @@ -82209,91 +82405,91 @@ entities: pos: -46.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18404 components: - type: Transform pos: -44.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18405 components: - type: Transform pos: -44.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18406 components: - type: Transform pos: -44.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18407 components: - type: Transform pos: -44.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18408 components: - type: Transform pos: -44.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18409 components: - type: Transform pos: -44.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18410 components: - type: Transform pos: -44.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18411 components: - type: Transform pos: -44.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18413 components: - type: Transform pos: -44.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18414 components: - type: Transform pos: -44.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18417 components: - type: Transform pos: -62.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18418 components: - type: Transform pos: -62.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18419 components: - type: Transform @@ -82301,7 +82497,7 @@ entities: pos: -60.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18420 components: - type: Transform @@ -82309,7 +82505,7 @@ entities: pos: -59.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18422 components: - type: Transform @@ -82317,7 +82513,7 @@ entities: pos: -57.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18423 components: - type: Transform @@ -82325,7 +82521,7 @@ entities: pos: -56.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18424 components: - type: Transform @@ -82333,7 +82529,7 @@ entities: pos: -55.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18425 components: - type: Transform @@ -82341,7 +82537,7 @@ entities: pos: -54.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18427 components: - type: Transform @@ -82349,7 +82545,7 @@ entities: pos: -52.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18428 components: - type: Transform @@ -82357,7 +82553,7 @@ entities: pos: -49.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18429 components: - type: Transform @@ -82365,7 +82561,7 @@ entities: pos: -50.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18431 components: - type: Transform @@ -82373,7 +82569,7 @@ entities: pos: -48.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18432 components: - type: Transform @@ -82381,7 +82577,7 @@ entities: pos: -47.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18433 components: - type: Transform @@ -82389,7 +82585,7 @@ entities: pos: -46.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18434 components: - type: Transform @@ -82397,7 +82593,7 @@ entities: pos: -45.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18443 components: - type: Transform @@ -82405,21 +82601,21 @@ entities: pos: -62.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18444 components: - type: Transform pos: -63.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18445 components: - type: Transform pos: -63.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18448 components: - type: Transform @@ -82427,189 +82623,189 @@ entities: pos: -63.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18452 components: - type: Transform pos: -62.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18453 components: - type: Transform pos: -62.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18454 components: - type: Transform pos: -62.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18455 components: - type: Transform pos: -62.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18456 components: - type: Transform pos: -62.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18457 components: - type: Transform pos: -62.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18458 components: - type: Transform pos: -62.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18459 components: - type: Transform pos: -62.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18460 components: - type: Transform pos: -62.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18461 components: - type: Transform pos: -62.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18462 components: - type: Transform pos: -62.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18463 components: - type: Transform pos: -62.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18464 components: - type: Transform pos: -62.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18465 components: - type: Transform pos: -61.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18466 components: - type: Transform pos: -61.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18467 components: - type: Transform pos: -61.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18468 components: - type: Transform pos: -61.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18469 components: - type: Transform pos: -61.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18470 components: - type: Transform pos: -61.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18471 components: - type: Transform pos: -61.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18472 components: - type: Transform pos: -61.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18473 components: - type: Transform pos: -61.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18474 components: - type: Transform pos: -61.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18475 components: - type: Transform pos: -61.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18476 components: - type: Transform pos: -61.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18477 components: - type: Transform pos: -61.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18480 components: - type: Transform @@ -82617,7 +82813,7 @@ entities: pos: -63.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18481 components: - type: Transform @@ -82625,7 +82821,7 @@ entities: pos: -60.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18482 components: - type: Transform @@ -82633,7 +82829,7 @@ entities: pos: -59.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18483 components: - type: Transform @@ -82641,49 +82837,49 @@ entities: pos: -64.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18486 components: - type: Transform pos: -65.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18487 components: - type: Transform pos: -65.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18488 components: - type: Transform pos: -65.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18489 components: - type: Transform pos: -65.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18490 components: - type: Transform pos: -65.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18491 components: - type: Transform pos: -65.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18494 components: - type: Transform @@ -82691,28 +82887,28 @@ entities: pos: -63.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18495 components: - type: Transform pos: -62.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18496 components: - type: Transform pos: -62.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18497 components: - type: Transform pos: -62.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18499 components: - type: Transform @@ -82720,7 +82916,7 @@ entities: pos: -66.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18500 components: - type: Transform @@ -82728,7 +82924,7 @@ entities: pos: -67.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18502 components: - type: Transform @@ -82736,7 +82932,7 @@ entities: pos: -69.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18503 components: - type: Transform @@ -82744,7 +82940,7 @@ entities: pos: -70.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18504 components: - type: Transform @@ -82752,7 +82948,7 @@ entities: pos: -71.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18505 components: - type: Transform @@ -82760,7 +82956,7 @@ entities: pos: -72.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18506 components: - type: Transform @@ -82768,7 +82964,7 @@ entities: pos: -73.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18507 components: - type: Transform @@ -82776,7 +82972,7 @@ entities: pos: -74.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18508 components: - type: Transform @@ -82784,7 +82980,7 @@ entities: pos: -75.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18509 components: - type: Transform @@ -82792,21 +82988,21 @@ entities: pos: -76.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18511 components: - type: Transform pos: -77.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18512 components: - type: Transform pos: -77.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18514 components: - type: Transform @@ -82814,7 +83010,7 @@ entities: pos: -78.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18515 components: - type: Transform @@ -82822,7 +83018,7 @@ entities: pos: -78.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18516 components: - type: Transform @@ -82830,7 +83026,7 @@ entities: pos: -78.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18517 components: - type: Transform @@ -82838,7 +83034,7 @@ entities: pos: -78.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18518 components: - type: Transform @@ -82846,7 +83042,7 @@ entities: pos: -78.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18522 components: - type: Transform @@ -82854,7 +83050,7 @@ entities: pos: -68.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18527 components: - type: Transform @@ -82862,7 +83058,7 @@ entities: pos: -64.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18528 components: - type: Transform @@ -82870,7 +83066,7 @@ entities: pos: -65.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18529 components: - type: Transform @@ -82878,63 +83074,63 @@ entities: pos: -66.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18530 components: - type: Transform pos: -67.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18531 components: - type: Transform pos: -67.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18532 components: - type: Transform pos: -67.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18533 components: - type: Transform pos: -67.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18535 components: - type: Transform pos: -67.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18536 components: - type: Transform pos: -67.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18537 components: - type: Transform pos: -67.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18538 components: - type: Transform pos: -67.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18539 components: - type: Transform @@ -82942,7 +83138,7 @@ entities: pos: -66.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18540 components: - type: Transform @@ -82950,7 +83146,7 @@ entities: pos: -65.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18541 components: - type: Transform @@ -82958,7 +83154,7 @@ entities: pos: -64.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18543 components: - type: Transform @@ -82966,7 +83162,7 @@ entities: pos: -62.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18545 components: - type: Transform @@ -82974,7 +83170,7 @@ entities: pos: -60.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18546 components: - type: Transform @@ -82982,7 +83178,7 @@ entities: pos: -59.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18548 components: - type: Transform @@ -82990,7 +83186,7 @@ entities: pos: -57.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18549 components: - type: Transform @@ -82998,7 +83194,7 @@ entities: pos: -56.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18551 components: - type: Transform @@ -83006,7 +83202,7 @@ entities: pos: -56.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18552 components: - type: Transform @@ -83014,7 +83210,7 @@ entities: pos: -56.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18553 components: - type: Transform @@ -83022,7 +83218,7 @@ entities: pos: -56.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18555 components: - type: Transform @@ -83030,7 +83226,7 @@ entities: pos: -56.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18556 components: - type: Transform @@ -83038,7 +83234,7 @@ entities: pos: -56.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18557 components: - type: Transform @@ -83046,7 +83242,7 @@ entities: pos: -56.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18558 components: - type: Transform @@ -83054,7 +83250,7 @@ entities: pos: -57.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18559 components: - type: Transform @@ -83062,7 +83258,7 @@ entities: pos: -58.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18560 components: - type: Transform @@ -83070,7 +83266,7 @@ entities: pos: -59.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18561 components: - type: Transform @@ -83078,7 +83274,7 @@ entities: pos: -60.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18562 components: - type: Transform @@ -83086,63 +83282,63 @@ entities: pos: -61.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18563 components: - type: Transform pos: -55.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18564 components: - type: Transform pos: -55.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18565 components: - type: Transform pos: -55.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18567 components: - type: Transform pos: -55.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18569 components: - type: Transform pos: -55.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18571 components: - type: Transform pos: -55.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18572 components: - type: Transform pos: -55.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18573 components: - type: Transform pos: -55.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18574 components: - type: Transform @@ -83150,7 +83346,7 @@ entities: pos: -56.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18575 components: - type: Transform @@ -83158,7 +83354,7 @@ entities: pos: -57.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18576 components: - type: Transform @@ -83166,7 +83362,7 @@ entities: pos: -58.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18577 components: - type: Transform @@ -83174,7 +83370,7 @@ entities: pos: -59.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18579 components: - type: Transform @@ -83182,7 +83378,7 @@ entities: pos: -62.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18580 components: - type: Transform @@ -83190,7 +83386,7 @@ entities: pos: -63.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18581 components: - type: Transform @@ -83198,7 +83394,7 @@ entities: pos: -64.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18582 components: - type: Transform @@ -83206,7 +83402,7 @@ entities: pos: -65.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18583 components: - type: Transform @@ -83214,7 +83410,7 @@ entities: pos: -66.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18584 components: - type: Transform @@ -83222,7 +83418,7 @@ entities: pos: -67.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18585 components: - type: Transform @@ -83230,7 +83426,7 @@ entities: pos: -68.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18586 components: - type: Transform @@ -83238,7 +83434,7 @@ entities: pos: -68.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18587 components: - type: Transform @@ -83246,7 +83442,7 @@ entities: pos: -68.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18588 components: - type: Transform @@ -83254,7 +83450,7 @@ entities: pos: -68.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18589 components: - type: Transform @@ -83262,7 +83458,7 @@ entities: pos: -68.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18590 components: - type: Transform @@ -83270,7 +83466,7 @@ entities: pos: -68.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18592 components: - type: Transform @@ -83278,7 +83474,7 @@ entities: pos: -68.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18593 components: - type: Transform @@ -83286,7 +83482,7 @@ entities: pos: -68.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18594 components: - type: Transform @@ -83294,7 +83490,7 @@ entities: pos: -68.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18595 components: - type: Transform @@ -83302,7 +83498,7 @@ entities: pos: -68.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18596 components: - type: Transform @@ -83310,7 +83506,7 @@ entities: pos: -67.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18597 components: - type: Transform @@ -83318,7 +83514,7 @@ entities: pos: -66.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18598 components: - type: Transform @@ -83326,7 +83522,7 @@ entities: pos: -65.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18600 components: - type: Transform @@ -83334,7 +83530,7 @@ entities: pos: -63.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18602 components: - type: Transform @@ -83342,7 +83538,7 @@ entities: pos: -61.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18605 components: - type: Transform @@ -83350,7 +83546,7 @@ entities: pos: -58.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18606 components: - type: Transform @@ -83358,7 +83554,7 @@ entities: pos: -57.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18607 components: - type: Transform @@ -83366,7 +83562,7 @@ entities: pos: -56.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18617 components: - type: Transform @@ -83374,7 +83570,7 @@ entities: pos: -61.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18619 components: - type: Transform @@ -83382,7 +83578,7 @@ entities: pos: -60.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18620 components: - type: Transform @@ -83390,7 +83586,7 @@ entities: pos: -59.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18622 components: - type: Transform @@ -83398,7 +83594,7 @@ entities: pos: -58.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18624 components: - type: Transform @@ -83406,7 +83602,7 @@ entities: pos: -58.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18625 components: - type: Transform @@ -83414,7 +83610,7 @@ entities: pos: -58.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18626 components: - type: Transform @@ -83422,7 +83618,7 @@ entities: pos: -58.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18627 components: - type: Transform @@ -83430,7 +83626,7 @@ entities: pos: -58.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18628 components: - type: Transform @@ -83438,7 +83634,7 @@ entities: pos: -58.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18631 components: - type: Transform @@ -83446,7 +83642,7 @@ entities: pos: -62.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18632 components: - type: Transform @@ -83454,7 +83650,7 @@ entities: pos: -63.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18633 components: - type: Transform @@ -83462,7 +83658,7 @@ entities: pos: -64.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18634 components: - type: Transform @@ -83470,7 +83666,7 @@ entities: pos: -65.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18635 components: - type: Transform @@ -83478,7 +83674,7 @@ entities: pos: -66.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18638 components: - type: Transform @@ -83486,7 +83682,7 @@ entities: pos: -69.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18639 components: - type: Transform @@ -83494,7 +83690,7 @@ entities: pos: -70.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18640 components: - type: Transform @@ -83502,7 +83698,7 @@ entities: pos: -71.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18641 components: - type: Transform @@ -83510,7 +83706,7 @@ entities: pos: -72.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18642 components: - type: Transform @@ -83518,7 +83714,7 @@ entities: pos: -73.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18643 components: - type: Transform @@ -83526,7 +83722,7 @@ entities: pos: -74.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18645 components: - type: Transform @@ -83534,7 +83730,7 @@ entities: pos: -76.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18646 components: - type: Transform @@ -83542,7 +83738,7 @@ entities: pos: -77.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18647 components: - type: Transform @@ -83550,7 +83746,7 @@ entities: pos: -78.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18649 components: - type: Transform @@ -83558,7 +83754,7 @@ entities: pos: -79.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18650 components: - type: Transform @@ -83566,7 +83762,7 @@ entities: pos: -79.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18651 components: - type: Transform @@ -83574,7 +83770,7 @@ entities: pos: -79.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18652 components: - type: Transform @@ -83582,7 +83778,7 @@ entities: pos: -79.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18653 components: - type: Transform @@ -83590,7 +83786,7 @@ entities: pos: -79.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18654 components: - type: Transform @@ -83598,28 +83794,28 @@ entities: pos: -79.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18656 components: - type: Transform pos: -75.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18657 components: - type: Transform pos: -75.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18659 components: - type: Transform pos: -75.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18660 components: - type: Transform @@ -83627,7 +83823,7 @@ entities: pos: -76.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18664 components: - type: Transform @@ -83635,7 +83831,7 @@ entities: pos: -67.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18665 components: - type: Transform @@ -83643,7 +83839,7 @@ entities: pos: -67.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18666 components: - type: Transform @@ -83651,7 +83847,7 @@ entities: pos: -67.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18669 components: - type: Transform @@ -83659,7 +83855,7 @@ entities: pos: -56.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18670 components: - type: Transform @@ -83667,7 +83863,7 @@ entities: pos: -56.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18671 components: - type: Transform @@ -83675,7 +83871,7 @@ entities: pos: -56.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18672 components: - type: Transform @@ -83683,7 +83879,7 @@ entities: pos: -55.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18673 components: - type: Transform @@ -83691,7 +83887,7 @@ entities: pos: -55.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18680 components: - type: Transform @@ -83699,7 +83895,7 @@ entities: pos: -54.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18681 components: - type: Transform @@ -83707,7 +83903,7 @@ entities: pos: -53.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18682 components: - type: Transform @@ -83715,7 +83911,7 @@ entities: pos: -55.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18683 components: - type: Transform @@ -83723,7 +83919,7 @@ entities: pos: -54.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18684 components: - type: Transform @@ -83731,7 +83927,7 @@ entities: pos: -53.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18685 components: - type: Transform @@ -83739,7 +83935,7 @@ entities: pos: -54.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18686 components: - type: Transform @@ -83747,7 +83943,7 @@ entities: pos: -53.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18687 components: - type: Transform @@ -83755,7 +83951,7 @@ entities: pos: -54.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18688 components: - type: Transform @@ -83763,7 +83959,7 @@ entities: pos: -53.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18689 components: - type: Transform @@ -83771,7 +83967,7 @@ entities: pos: -55.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18690 components: - type: Transform @@ -83779,7 +83975,7 @@ entities: pos: -55.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18701 components: - type: Transform @@ -83787,7 +83983,7 @@ entities: pos: -69.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18702 components: - type: Transform @@ -83795,7 +83991,7 @@ entities: pos: -70.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18703 components: - type: Transform @@ -83803,7 +83999,7 @@ entities: pos: -71.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18705 components: - type: Transform @@ -83811,7 +84007,7 @@ entities: pos: -68.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18706 components: - type: Transform @@ -83819,7 +84015,7 @@ entities: pos: -69.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18707 components: - type: Transform @@ -83827,7 +84023,7 @@ entities: pos: -70.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18708 components: - type: Transform @@ -83835,7 +84031,7 @@ entities: pos: -71.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18709 components: - type: Transform @@ -83843,7 +84039,7 @@ entities: pos: -72.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18710 components: - type: Transform @@ -83851,7 +84047,7 @@ entities: pos: -73.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18712 components: - type: Transform @@ -83859,7 +84055,7 @@ entities: pos: -75.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18713 components: - type: Transform @@ -83867,7 +84063,7 @@ entities: pos: -76.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18714 components: - type: Transform @@ -83875,7 +84071,7 @@ entities: pos: -77.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18715 components: - type: Transform @@ -83883,7 +84079,7 @@ entities: pos: -78.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18716 components: - type: Transform @@ -83891,7 +84087,7 @@ entities: pos: -79.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18718 components: - type: Transform @@ -83899,7 +84095,7 @@ entities: pos: -81.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18719 components: - type: Transform @@ -83907,7 +84103,7 @@ entities: pos: -82.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18721 components: - type: Transform @@ -83915,7 +84111,7 @@ entities: pos: -76.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18722 components: - type: Transform @@ -83923,7 +84119,7 @@ entities: pos: -74.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18723 components: - type: Transform @@ -83931,7 +84127,7 @@ entities: pos: -73.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18724 components: - type: Transform @@ -83939,7 +84135,7 @@ entities: pos: -72.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18725 components: - type: Transform @@ -83947,7 +84143,7 @@ entities: pos: -77.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18726 components: - type: Transform @@ -83955,7 +84151,7 @@ entities: pos: -78.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18727 components: - type: Transform @@ -83963,7 +84159,7 @@ entities: pos: -79.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18728 components: - type: Transform @@ -83971,7 +84167,7 @@ entities: pos: -75.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18735 components: - type: Transform @@ -83979,7 +84175,7 @@ entities: pos: -68.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18736 components: - type: Transform @@ -83987,7 +84183,7 @@ entities: pos: -69.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18737 components: - type: Transform @@ -83995,7 +84191,7 @@ entities: pos: -70.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18738 components: - type: Transform @@ -84003,7 +84199,7 @@ entities: pos: -71.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18740 components: - type: Transform @@ -84011,7 +84207,7 @@ entities: pos: -73.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18741 components: - type: Transform @@ -84019,7 +84215,7 @@ entities: pos: -74.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18742 components: - type: Transform @@ -84027,7 +84223,7 @@ entities: pos: -75.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18746 components: - type: Transform @@ -84035,7 +84231,7 @@ entities: pos: -69.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18747 components: - type: Transform @@ -84043,7 +84239,7 @@ entities: pos: -70.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18749 components: - type: Transform @@ -84051,7 +84247,7 @@ entities: pos: -72.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18750 components: - type: Transform @@ -84059,7 +84255,7 @@ entities: pos: -73.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18751 components: - type: Transform @@ -84067,7 +84263,7 @@ entities: pos: -74.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18752 components: - type: Transform @@ -84075,7 +84271,7 @@ entities: pos: -75.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18755 components: - type: Transform @@ -84083,7 +84279,7 @@ entities: pos: -71.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18760 components: - type: Transform @@ -84097,35 +84293,35 @@ entities: pos: 4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 20330 components: - type: Transform pos: 4.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 20331 components: - type: Transform pos: 4.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 20332 components: - type: Transform pos: 4.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 20333 components: - type: Transform pos: 4.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 20640 components: - type: Transform @@ -84133,15 +84329,7 @@ entities: pos: -2.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 20643 components: - type: Transform @@ -84165,7 +84353,7 @@ entities: pos: -3.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 20651 components: - type: Transform @@ -84192,14 +84380,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 20661 components: - type: Transform @@ -84222,7 +84402,7 @@ entities: pos: -3.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 21264 components: - type: Transform @@ -84230,7 +84410,7 @@ entities: pos: 22.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21265 components: - type: Transform @@ -84238,7 +84418,7 @@ entities: pos: 23.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21266 components: - type: Transform @@ -84246,7 +84426,7 @@ entities: pos: 24.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21267 components: - type: Transform @@ -84254,7 +84434,7 @@ entities: pos: 25.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21268 components: - type: Transform @@ -84262,7 +84442,7 @@ entities: pos: 26.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21271 components: - type: Transform @@ -84270,7 +84450,7 @@ entities: pos: 27.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21272 components: - type: Transform @@ -84278,7 +84458,7 @@ entities: pos: 26.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21273 components: - type: Transform @@ -84286,28 +84466,28 @@ entities: pos: 25.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21546 components: - type: Transform pos: 39.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21547 components: - type: Transform pos: 39.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21548 components: - type: Transform pos: 39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21550 components: - type: Transform @@ -84315,7 +84495,7 @@ entities: pos: 43.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21551 components: - type: Transform @@ -84323,7 +84503,7 @@ entities: pos: 43.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21552 components: - type: Transform @@ -84331,7 +84511,7 @@ entities: pos: 43.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21987 components: - type: Transform @@ -84339,7 +84519,7 @@ entities: pos: -0.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21988 components: - type: Transform @@ -84347,7 +84527,7 @@ entities: pos: -0.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21989 components: - type: Transform @@ -84355,7 +84535,7 @@ entities: pos: -0.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21990 components: - type: Transform @@ -84363,7 +84543,7 @@ entities: pos: -0.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21991 components: - type: Transform @@ -84371,7 +84551,7 @@ entities: pos: -0.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21992 components: - type: Transform @@ -84379,7 +84559,7 @@ entities: pos: -0.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21993 components: - type: Transform @@ -84387,7 +84567,7 @@ entities: pos: -0.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21994 components: - type: Transform @@ -84395,7 +84575,7 @@ entities: pos: -0.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21995 components: - type: Transform @@ -84403,7 +84583,7 @@ entities: pos: -0.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21996 components: - type: Transform @@ -84411,7 +84591,7 @@ entities: pos: -0.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21997 components: - type: Transform @@ -84419,7 +84599,7 @@ entities: pos: -0.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21998 components: - type: Transform @@ -84427,7 +84607,7 @@ entities: pos: -0.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21999 components: - type: Transform @@ -84435,7 +84615,7 @@ entities: pos: -0.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22000 components: - type: Transform @@ -84443,7 +84623,7 @@ entities: pos: -0.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22001 components: - type: Transform @@ -84451,7 +84631,7 @@ entities: pos: -0.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22002 components: - type: Transform @@ -84459,7 +84639,7 @@ entities: pos: -0.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22003 components: - type: Transform @@ -84467,7 +84647,7 @@ entities: pos: -0.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22004 components: - type: Transform @@ -84475,7 +84655,7 @@ entities: pos: -0.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22005 components: - type: Transform @@ -84483,7 +84663,7 @@ entities: pos: -0.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22006 components: - type: Transform @@ -84491,7 +84671,7 @@ entities: pos: -0.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22007 components: - type: Transform @@ -84499,7 +84679,7 @@ entities: pos: -0.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22008 components: - type: Transform @@ -84507,7 +84687,7 @@ entities: pos: -0.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22009 components: - type: Transform @@ -84515,7 +84695,7 @@ entities: pos: -0.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22010 components: - type: Transform @@ -84523,7 +84703,7 @@ entities: pos: -0.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22011 components: - type: Transform @@ -84531,7 +84711,7 @@ entities: pos: -0.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22012 components: - type: Transform @@ -84539,7 +84719,7 @@ entities: pos: -0.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22013 components: - type: Transform @@ -84547,112 +84727,112 @@ entities: pos: -0.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22015 components: - type: Transform pos: -0.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22016 components: - type: Transform pos: -0.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22017 components: - type: Transform pos: -0.5,68.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22018 components: - type: Transform pos: -0.5,69.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22019 components: - type: Transform pos: -0.5,70.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22020 components: - type: Transform pos: -0.5,71.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22021 components: - type: Transform pos: -0.5,72.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22022 components: - type: Transform pos: -0.5,73.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22267 components: - type: Transform pos: 43.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22268 components: - type: Transform pos: 43.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22269 components: - type: Transform pos: 43.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22270 components: - type: Transform pos: 43.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22271 components: - type: Transform pos: 43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22677 components: - type: Transform pos: 11.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22678 components: - type: Transform pos: 11.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22679 components: - type: Transform @@ -84660,7 +84840,7 @@ entities: pos: 10.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22680 components: - type: Transform @@ -84668,7 +84848,7 @@ entities: pos: 7.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22682 components: - type: Transform @@ -84676,7 +84856,7 @@ entities: pos: 6.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22683 components: - type: Transform @@ -84684,7 +84864,7 @@ entities: pos: 6.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22684 components: - type: Transform @@ -84692,7 +84872,7 @@ entities: pos: 6.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22686 components: - type: Transform @@ -84700,7 +84880,7 @@ entities: pos: 11.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22687 components: - type: Transform @@ -84708,7 +84888,7 @@ entities: pos: 8.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22688 components: - type: Transform @@ -84716,7 +84896,7 @@ entities: pos: 7.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22689 components: - type: Transform @@ -84724,7 +84904,7 @@ entities: pos: 6.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22691 components: - type: Transform @@ -84732,49 +84912,49 @@ entities: pos: 5.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22708 components: - type: Transform pos: 5.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22709 components: - type: Transform pos: 5.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22710 components: - type: Transform pos: 5.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22711 components: - type: Transform pos: 5.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22712 components: - type: Transform pos: 3.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22713 components: - type: Transform pos: 3.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22720 components: - type: Transform @@ -84782,7 +84962,7 @@ entities: pos: -33.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22721 components: - type: Transform @@ -84790,7 +84970,7 @@ entities: pos: -32.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22722 components: - type: Transform @@ -84798,7 +84978,7 @@ entities: pos: -31.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22723 components: - type: Transform @@ -84806,7 +84986,7 @@ entities: pos: -30.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22724 components: - type: Transform @@ -84814,7 +84994,7 @@ entities: pos: -29.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22728 components: - type: Transform @@ -84822,7 +85002,7 @@ entities: pos: -19.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22729 components: - type: Transform @@ -84830,42 +85010,42 @@ entities: pos: -18.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22733 components: - type: Transform pos: -14.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22734 components: - type: Transform pos: -14.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22735 components: - type: Transform pos: -14.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22736 components: - type: Transform pos: -14.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22737 components: - type: Transform pos: -14.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22741 components: - type: Transform @@ -84873,7 +85053,7 @@ entities: pos: -13.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22742 components: - type: Transform @@ -84881,7 +85061,7 @@ entities: pos: -12.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22743 components: - type: Transform @@ -84889,7 +85069,7 @@ entities: pos: -13.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22749 components: - type: Transform @@ -84897,7 +85077,7 @@ entities: pos: -39.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22750 components: - type: Transform @@ -84905,7 +85085,7 @@ entities: pos: -38.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22751 components: - type: Transform @@ -84913,7 +85093,7 @@ entities: pos: -37.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22752 components: - type: Transform @@ -84921,7 +85101,7 @@ entities: pos: -36.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22753 components: - type: Transform @@ -84929,7 +85109,7 @@ entities: pos: -35.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22754 components: - type: Transform @@ -84937,7 +85117,7 @@ entities: pos: -39.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22755 components: - type: Transform @@ -84945,7 +85125,7 @@ entities: pos: -38.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22756 components: - type: Transform @@ -84953,7 +85133,7 @@ entities: pos: -37.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22765 components: - type: Transform @@ -84961,7 +85141,7 @@ entities: pos: -35.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22766 components: - type: Transform @@ -84969,7 +85149,7 @@ entities: pos: -34.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22767 components: - type: Transform @@ -84977,7 +85157,7 @@ entities: pos: -33.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22768 components: - type: Transform @@ -84985,35 +85165,35 @@ entities: pos: -31.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22769 components: - type: Transform pos: -32.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22770 components: - type: Transform pos: -31.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22771 components: - type: Transform pos: -31.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22772 components: - type: Transform pos: -31.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22773 components: - type: Transform @@ -85021,7 +85201,7 @@ entities: pos: -32.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22774 components: - type: Transform @@ -85029,7 +85209,7 @@ entities: pos: -33.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22777 components: - type: Transform @@ -85037,7 +85217,7 @@ entities: pos: -39.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22778 components: - type: Transform @@ -85045,7 +85225,7 @@ entities: pos: -39.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22780 components: - type: Transform @@ -85053,7 +85233,7 @@ entities: pos: -39.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22784 components: - type: Transform @@ -85061,7 +85241,7 @@ entities: pos: -37.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22785 components: - type: Transform @@ -85069,7 +85249,7 @@ entities: pos: -37.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22787 components: - type: Transform @@ -85077,7 +85257,7 @@ entities: pos: -37.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22800 components: - type: Transform @@ -85085,7 +85265,7 @@ entities: pos: -37.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22801 components: - type: Transform @@ -85093,7 +85273,7 @@ entities: pos: -36.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22802 components: - type: Transform @@ -85101,7 +85281,7 @@ entities: pos: -37.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22803 components: - type: Transform @@ -85109,7 +85289,7 @@ entities: pos: -36.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22804 components: - type: Transform @@ -85117,7 +85297,7 @@ entities: pos: -35.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22805 components: - type: Transform @@ -85125,7 +85305,7 @@ entities: pos: -34.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22806 components: - type: Transform @@ -85133,7 +85313,7 @@ entities: pos: -33.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22807 components: - type: Transform @@ -85141,7 +85321,7 @@ entities: pos: -32.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22808 components: - type: Transform @@ -85149,7 +85329,7 @@ entities: pos: -31.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22809 components: - type: Transform @@ -85157,7 +85337,7 @@ entities: pos: -30.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22810 components: - type: Transform @@ -85165,7 +85345,7 @@ entities: pos: -29.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22832 components: - type: Transform @@ -85173,7 +85353,7 @@ entities: pos: -1.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22833 components: - type: Transform @@ -85181,7 +85361,7 @@ entities: pos: -0.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22834 components: - type: Transform @@ -85189,7 +85369,7 @@ entities: pos: -1.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22835 components: - type: Transform @@ -85197,7 +85377,7 @@ entities: pos: -0.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22836 components: - type: Transform @@ -85205,7 +85385,7 @@ entities: pos: 0.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22837 components: - type: Transform @@ -85213,105 +85393,105 @@ entities: pos: 1.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22843 components: - type: Transform pos: -16.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22844 components: - type: Transform pos: -16.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22845 components: - type: Transform pos: -16.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22846 components: - type: Transform pos: -16.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22847 components: - type: Transform pos: -18.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22848 components: - type: Transform pos: -18.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22849 components: - type: Transform pos: -18.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22850 components: - type: Transform pos: -18.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22851 components: - type: Transform pos: -18.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22852 components: - type: Transform pos: -18.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22858 components: - type: Transform pos: 11.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22859 components: - type: Transform pos: 10.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22860 components: - type: Transform pos: 10.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22861 components: - type: Transform pos: 11.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22867 components: - type: Transform @@ -85319,7 +85499,7 @@ entities: pos: 33.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 336 @@ -85335,7 +85515,7 @@ entities: pos: -45.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 962 components: - type: Transform @@ -85343,7 +85523,7 @@ entities: pos: -45.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2324 components: - type: Transform @@ -85351,7 +85531,7 @@ entities: pos: -35.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2431 components: - type: Transform @@ -85359,7 +85539,7 @@ entities: pos: -29.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2440 components: - type: Transform @@ -85367,7 +85547,7 @@ entities: pos: -34.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2441 components: - type: Transform @@ -85375,7 +85555,7 @@ entities: pos: -36.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2442 components: - type: Transform @@ -85383,28 +85563,28 @@ entities: pos: 9.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2456 components: - type: Transform pos: -42.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2458 components: - type: Transform pos: -41.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2459 components: - type: Transform pos: -41.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2463 components: - type: Transform @@ -85412,7 +85592,7 @@ entities: pos: -45.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2496 components: - type: Transform @@ -85420,7 +85600,7 @@ entities: pos: -36.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2497 components: - type: Transform @@ -85428,28 +85608,28 @@ entities: pos: -34.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2507 components: - type: Transform pos: -36.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2508 components: - type: Transform pos: -34.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2509 components: - type: Transform pos: -35.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2510 components: - type: Transform @@ -85457,7 +85637,7 @@ entities: pos: -33.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2512 components: - type: Transform @@ -85465,7 +85645,7 @@ entities: pos: -33.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2513 components: - type: Transform @@ -85473,7 +85653,7 @@ entities: pos: -31.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2519 components: - type: Transform @@ -85481,7 +85661,7 @@ entities: pos: -33.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2520 components: - type: Transform @@ -85489,7 +85669,7 @@ entities: pos: -31.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2521 components: - type: Transform @@ -85497,7 +85677,7 @@ entities: pos: -31.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2527 components: - type: Transform @@ -85505,7 +85685,7 @@ entities: pos: -33.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2531 components: - type: Transform @@ -85513,7 +85693,7 @@ entities: pos: -37.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2532 components: - type: Transform @@ -85521,7 +85701,7 @@ entities: pos: -39.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2549 components: - type: Transform @@ -85529,21 +85709,21 @@ entities: pos: -36.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2550 components: - type: Transform pos: 5.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2551 components: - type: Transform pos: -14.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2552 components: - type: Transform @@ -85551,7 +85731,7 @@ entities: pos: -12.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2553 components: - type: Transform @@ -85559,7 +85739,7 @@ entities: pos: -31.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2554 components: - type: Transform @@ -85567,7 +85747,7 @@ entities: pos: -33.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2580 components: - type: Transform @@ -85575,7 +85755,7 @@ entities: pos: -11.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2581 components: - type: Transform @@ -85583,49 +85763,49 @@ entities: pos: -20.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2582 components: - type: Transform pos: -34.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2583 components: - type: Transform pos: -30.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2596 components: - type: Transform pos: -38.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2597 components: - type: Transform pos: -40.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2598 components: - type: Transform pos: -42.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2599 components: - type: Transform pos: -44.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2600 components: - type: Transform @@ -85633,7 +85813,7 @@ entities: pos: -46.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2601 components: - type: Transform @@ -85641,7 +85821,7 @@ entities: pos: -48.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2619 components: - type: Transform @@ -85649,14 +85829,14 @@ entities: pos: -41.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2628 components: - type: Transform pos: -43.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2654 components: - type: Transform @@ -85664,7 +85844,7 @@ entities: pos: -48.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2658 components: - type: Transform @@ -85672,7 +85852,7 @@ entities: pos: -48.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2659 components: - type: Transform @@ -85680,7 +85860,7 @@ entities: pos: -46.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2662 components: - type: Transform @@ -85688,7 +85868,7 @@ entities: pos: -46.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2667 components: - type: Transform @@ -85696,7 +85876,7 @@ entities: pos: -48.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2668 components: - type: Transform @@ -85704,7 +85884,7 @@ entities: pos: -46.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2677 components: - type: Transform @@ -85712,7 +85892,7 @@ entities: pos: -46.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2688 components: - type: Transform @@ -85720,7 +85900,7 @@ entities: pos: -50.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2689 components: - type: Transform @@ -85728,14 +85908,14 @@ entities: pos: -46.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2709 components: - type: Transform pos: -48.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2717 components: - type: Transform @@ -85743,7 +85923,7 @@ entities: pos: -51.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2718 components: - type: Transform @@ -85751,14 +85931,14 @@ entities: pos: -47.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2729 components: - type: Transform pos: -48.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2731 components: - type: Transform @@ -85766,7 +85946,7 @@ entities: pos: -17.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2732 components: - type: Transform @@ -85774,7 +85954,7 @@ entities: pos: -28.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2750 components: - type: Transform @@ -85782,7 +85962,7 @@ entities: pos: -36.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2751 components: - type: Transform @@ -85790,7 +85970,7 @@ entities: pos: -13.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2753 components: - type: Transform @@ -85798,7 +85978,7 @@ entities: pos: -36.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2760 components: - type: Transform @@ -85806,7 +85986,7 @@ entities: pos: -36.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2762 components: - type: Transform @@ -85814,7 +85994,7 @@ entities: pos: -36.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2767 components: - type: Transform @@ -85822,7 +86002,7 @@ entities: pos: -34.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2777 components: - type: Transform @@ -85830,7 +86010,7 @@ entities: pos: -34.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2779 components: - type: Transform @@ -85838,7 +86018,7 @@ entities: pos: -32.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2786 components: - type: Transform @@ -85846,7 +86026,7 @@ entities: pos: -27.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2788 components: - type: Transform @@ -85854,7 +86034,7 @@ entities: pos: -21.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2796 components: - type: Transform @@ -85862,28 +86042,28 @@ entities: pos: -17.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2802 components: - type: Transform pos: -8.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2812 components: - type: Transform pos: 1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2814 components: - type: Transform pos: 3.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2819 components: - type: Transform @@ -85891,7 +86071,7 @@ entities: pos: 8.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2831 components: - type: Transform @@ -85899,7 +86079,7 @@ entities: pos: 10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2833 components: - type: Transform @@ -85907,7 +86087,7 @@ entities: pos: 10.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2842 components: - type: Transform @@ -85915,21 +86095,21 @@ entities: pos: 8.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2846 components: - type: Transform pos: 8.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2854 components: - type: Transform pos: -2.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2857 components: - type: Transform @@ -85937,7 +86117,7 @@ entities: pos: -4.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2866 components: - type: Transform @@ -85945,7 +86125,7 @@ entities: pos: -14.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2871 components: - type: Transform @@ -85953,21 +86133,21 @@ entities: pos: -23.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2873 components: - type: Transform pos: -21.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2879 components: - type: Transform pos: -27.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2893 components: - type: Transform @@ -85975,7 +86155,7 @@ entities: pos: -34.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2899 components: - type: Transform @@ -85983,7 +86163,7 @@ entities: pos: -34.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2905 components: - type: Transform @@ -85991,7 +86171,7 @@ entities: pos: -34.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2913 components: - type: Transform @@ -85999,21 +86179,21 @@ entities: pos: -34.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2919 components: - type: Transform pos: -31.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2924 components: - type: Transform pos: -24.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2932 components: - type: Transform @@ -86021,21 +86201,21 @@ entities: pos: -19.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2935 components: - type: Transform pos: -14.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2941 components: - type: Transform pos: -6.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2962 components: - type: Transform @@ -86043,7 +86223,7 @@ entities: pos: 10.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2975 components: - type: Transform @@ -86051,7 +86231,7 @@ entities: pos: 8.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2985 components: - type: Transform @@ -86059,21 +86239,21 @@ entities: pos: 10.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2994 components: - type: Transform pos: 0.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2997 components: - type: Transform pos: -0.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3000 components: - type: Transform @@ -86081,7 +86261,7 @@ entities: pos: -3.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3012 components: - type: Transform @@ -86089,28 +86269,28 @@ entities: pos: -15.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3019 components: - type: Transform pos: -22.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3020 components: - type: Transform pos: -19.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3022 components: - type: Transform pos: -26.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3023 components: - type: Transform @@ -86118,14 +86298,14 @@ entities: pos: -25.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3027 components: - type: Transform pos: -30.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3084 components: - type: Transform @@ -86133,28 +86313,28 @@ entities: pos: -42.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3087 components: - type: Transform pos: -41.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3091 components: - type: Transform pos: -39.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3093 components: - type: Transform pos: -39.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3097 components: - type: Transform @@ -86162,14 +86342,14 @@ entities: pos: -44.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3098 components: - type: Transform pos: -45.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3120 components: - type: Transform @@ -86177,7 +86357,7 @@ entities: pos: -51.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3134 components: - type: Transform @@ -86185,7 +86365,7 @@ entities: pos: -52.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3137 components: - type: Transform @@ -86193,7 +86373,7 @@ entities: pos: -44.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3138 components: - type: Transform @@ -86201,7 +86381,7 @@ entities: pos: -45.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3154 components: - type: Transform @@ -86209,7 +86389,7 @@ entities: pos: -44.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3213 components: - type: Transform @@ -86217,7 +86397,7 @@ entities: pos: -44.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3241 components: - type: Transform @@ -86225,7 +86405,7 @@ entities: pos: -44.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3245 components: - type: Transform @@ -86233,7 +86413,7 @@ entities: pos: -43.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3246 components: - type: Transform @@ -86241,14 +86421,14 @@ entities: pos: -42.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3255 components: - type: Transform pos: -41.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3268 components: - type: Transform @@ -86256,7 +86436,7 @@ entities: pos: -49.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3275 components: - type: Transform @@ -86264,14 +86444,14 @@ entities: pos: -50.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3278 components: - type: Transform pos: -52.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3283 components: - type: Transform @@ -86279,7 +86459,7 @@ entities: pos: -57.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3284 components: - type: Transform @@ -86287,7 +86467,7 @@ entities: pos: -57.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3285 components: - type: Transform @@ -86295,7 +86475,7 @@ entities: pos: -57.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3294 components: - type: Transform @@ -86303,7 +86483,7 @@ entities: pos: -57.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3306 components: - type: Transform @@ -86311,14 +86491,14 @@ entities: pos: -49.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3333 components: - type: Transform pos: -19.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3349 components: - type: Transform @@ -86326,14 +86506,14 @@ entities: pos: -23.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3353 components: - type: Transform pos: -21.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3381 components: - type: Transform @@ -86341,7 +86521,7 @@ entities: pos: -17.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3388 components: - type: Transform @@ -86349,7 +86529,7 @@ entities: pos: -16.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3397 components: - type: Transform @@ -86357,7 +86537,7 @@ entities: pos: -17.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3399 components: - type: Transform @@ -86365,7 +86545,7 @@ entities: pos: -16.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3404 components: - type: Transform @@ -86379,7 +86559,7 @@ entities: pos: -3.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3420 components: - type: Transform @@ -86387,21 +86567,21 @@ entities: pos: -1.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3423 components: - type: Transform pos: -3.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3424 components: - type: Transform pos: -1.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3442 components: - type: Transform @@ -86409,21 +86589,21 @@ entities: pos: -4.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3452 components: - type: Transform pos: -0.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3458 components: - type: Transform pos: -8.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3459 components: - type: Transform @@ -86431,7 +86611,7 @@ entities: pos: -10.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3460 components: - type: Transform @@ -86439,7 +86619,7 @@ entities: pos: -9.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3461 components: - type: Transform @@ -86447,19 +86627,23 @@ entities: pos: -12.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5857 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-11.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 5859 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 6110 components: - type: Transform @@ -86467,14 +86651,14 @@ entities: pos: -8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6111 components: - type: Transform pos: -10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6132 components: - type: Transform @@ -86482,7 +86666,7 @@ entities: pos: -14.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6140 components: - type: Transform @@ -86490,21 +86674,21 @@ entities: pos: -4.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6151 components: - type: Transform pos: -11.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6153 components: - type: Transform pos: -9.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6170 components: - type: Transform @@ -86512,7 +86696,7 @@ entities: pos: -15.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6172 components: - type: Transform @@ -86520,7 +86704,7 @@ entities: pos: -15.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6179 components: - type: Transform @@ -86528,7 +86712,7 @@ entities: pos: -3.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6185 components: - type: Transform @@ -86536,7 +86720,7 @@ entities: pos: -3.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6193 components: - type: Transform @@ -86544,7 +86728,7 @@ entities: pos: -9.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6199 components: - type: Transform @@ -86552,14 +86736,14 @@ entities: pos: -7.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6234 components: - type: Transform pos: -20.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6240 components: - type: Transform @@ -86567,14 +86751,14 @@ entities: pos: -20.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6252 components: - type: Transform pos: -19.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6254 components: - type: Transform @@ -86582,7 +86766,7 @@ entities: pos: -21.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6261 components: - type: Transform @@ -86590,14 +86774,14 @@ entities: pos: -26.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6666 components: - type: Transform pos: -30.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6687 components: - type: Transform @@ -86605,7 +86789,7 @@ entities: pos: -17.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6713 components: - type: Transform @@ -86613,7 +86797,7 @@ entities: pos: -13.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6819 components: - type: Transform @@ -86621,7 +86805,7 @@ entities: pos: 30.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6834 components: - type: Transform @@ -86629,7 +86813,7 @@ entities: pos: 26.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6933 components: - type: Transform @@ -86637,7 +86821,7 @@ entities: pos: -18.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7014 components: - type: Transform @@ -86645,7 +86829,7 @@ entities: pos: -23.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7044 components: - type: Transform @@ -86653,14 +86837,14 @@ entities: pos: -19.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7045 components: - type: Transform pos: -22.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7058 components: - type: Transform @@ -86668,28 +86852,28 @@ entities: pos: -30.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7061 components: - type: Transform pos: -19.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7074 components: - type: Transform pos: -20.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7147 components: - type: Transform pos: -28.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7310 components: - type: Transform @@ -86697,7 +86881,7 @@ entities: pos: -8.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7311 components: - type: Transform @@ -86705,7 +86889,7 @@ entities: pos: -3.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7321 components: - type: Transform @@ -86713,7 +86897,7 @@ entities: pos: -1.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7322 components: - type: Transform @@ -86721,7 +86905,7 @@ entities: pos: -10.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7323 components: - type: Transform @@ -86729,7 +86913,7 @@ entities: pos: -2.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7337 components: - type: Transform @@ -86737,7 +86921,7 @@ entities: pos: -11.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7338 components: - type: Transform @@ -86745,21 +86929,21 @@ entities: pos: -12.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7351 components: - type: Transform pos: -18.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7374 components: - type: Transform pos: -7.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7534 components: - type: Transform @@ -86767,20 +86951,22 @@ entities: pos: -17.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7545 components: - type: Transform pos: -23.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7593 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-10.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7757 components: - type: Transform @@ -86788,7 +86974,7 @@ entities: pos: -29.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7819 components: - type: Transform @@ -86796,14 +86982,14 @@ entities: pos: -28.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7878 components: - type: Transform pos: -13.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7886 components: - type: Transform @@ -86811,7 +86997,7 @@ entities: pos: -12.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7924 components: - type: Transform @@ -86819,7 +87005,7 @@ entities: pos: -22.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7926 components: - type: Transform @@ -86827,14 +87013,14 @@ entities: pos: -22.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7948 components: - type: Transform pos: -29.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7949 components: - type: Transform @@ -86842,7 +87028,7 @@ entities: pos: -28.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7961 components: - type: Transform @@ -86850,7 +87036,7 @@ entities: pos: -17.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8018 components: - type: Transform @@ -86858,7 +87044,7 @@ entities: pos: -20.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8028 components: - type: Transform @@ -86866,7 +87052,7 @@ entities: pos: -22.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8089 components: - type: Transform @@ -86874,14 +87060,14 @@ entities: pos: -30.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8104 components: - type: Transform pos: -21.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8107 components: - type: Transform @@ -86889,7 +87075,7 @@ entities: pos: -20.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8299 components: - type: Transform @@ -86897,7 +87083,7 @@ entities: pos: 20.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8360 components: - type: Transform @@ -86905,7 +87091,7 @@ entities: pos: 0.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8376 components: - type: Transform @@ -86913,7 +87099,7 @@ entities: pos: -1.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8408 components: - type: Transform @@ -86921,7 +87107,7 @@ entities: pos: -13.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8427 components: - type: Transform @@ -86929,7 +87115,7 @@ entities: pos: -13.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8790 components: - type: Transform @@ -86937,21 +87123,21 @@ entities: pos: 20.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8820 components: - type: Transform pos: -21.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8853 components: - type: Transform pos: -2.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8872 components: - type: Transform @@ -86959,7 +87145,7 @@ entities: pos: 9.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8876 components: - type: Transform @@ -86967,14 +87153,14 @@ entities: pos: 7.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8877 components: - type: Transform pos: 2.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8884 components: - type: Transform @@ -86982,7 +87168,7 @@ entities: pos: 11.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8893 components: - type: Transform @@ -86990,7 +87176,7 @@ entities: pos: 9.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8901 components: - type: Transform @@ -86998,7 +87184,7 @@ entities: pos: 11.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8903 components: - type: Transform @@ -87006,7 +87192,7 @@ entities: pos: 11.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8912 components: - type: Transform @@ -87014,14 +87200,14 @@ entities: pos: 12.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8919 components: - type: Transform pos: 4.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8920 components: - type: Transform @@ -87029,21 +87215,21 @@ entities: pos: 6.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8936 components: - type: Transform pos: 5.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8939 components: - type: Transform pos: 7.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8940 components: - type: Transform @@ -87051,7 +87237,7 @@ entities: pos: 7.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8947 components: - type: Transform @@ -87059,7 +87245,7 @@ entities: pos: 13.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8957 components: - type: Transform @@ -87067,7 +87253,7 @@ entities: pos: 20.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8960 components: - type: Transform @@ -87075,14 +87261,14 @@ entities: pos: 13.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8968 components: - type: Transform pos: 9.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8979 components: - type: Transform @@ -87090,7 +87276,7 @@ entities: pos: 7.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9085 components: - type: Transform @@ -87098,7 +87284,7 @@ entities: pos: 3.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9213 components: - type: Transform @@ -87134,7 +87320,7 @@ entities: pos: -13.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9446 components: - type: Transform @@ -87142,21 +87328,21 @@ entities: pos: -13.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9689 components: - type: Transform pos: -25.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9694 components: - type: Transform pos: -25.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9697 components: - type: Transform @@ -87164,7 +87350,7 @@ entities: pos: -25.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9728 components: - type: Transform @@ -87172,7 +87358,7 @@ entities: pos: 2.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9744 components: - type: Transform @@ -87180,7 +87366,7 @@ entities: pos: -1.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9754 components: - type: Transform @@ -87188,14 +87374,14 @@ entities: pos: -3.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9763 components: - type: Transform pos: 4.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9779 components: - type: Transform @@ -87203,7 +87389,7 @@ entities: pos: 2.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9784 components: - type: Transform @@ -87211,7 +87397,7 @@ entities: pos: 2.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9846 components: - type: Transform @@ -87219,7 +87405,7 @@ entities: pos: -25.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9847 components: - type: Transform @@ -87227,7 +87413,7 @@ entities: pos: -11.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9850 components: - type: Transform @@ -87235,7 +87421,7 @@ entities: pos: -29.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9885 components: - type: Transform @@ -87243,7 +87429,7 @@ entities: pos: -18.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9896 components: - type: Transform @@ -87251,7 +87437,7 @@ entities: pos: -16.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9918 components: - type: Transform @@ -87259,14 +87445,14 @@ entities: pos: -11.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9981 components: - type: Transform pos: 6.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9992 components: - type: Transform @@ -87274,7 +87460,7 @@ entities: pos: -8.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10137 components: - type: Transform @@ -87282,7 +87468,7 @@ entities: pos: -11.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10160 components: - type: Transform @@ -87290,7 +87476,7 @@ entities: pos: -5.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10214 components: - type: Transform @@ -87298,7 +87484,7 @@ entities: pos: 2.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10265 components: - type: Transform @@ -87306,7 +87492,7 @@ entities: pos: -23.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10266 components: - type: Transform @@ -87314,14 +87500,14 @@ entities: pos: -11.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10279 components: - type: Transform pos: -1.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10388 components: - type: Transform @@ -87329,7 +87515,7 @@ entities: pos: 21.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10402 components: - type: Transform @@ -87337,7 +87523,7 @@ entities: pos: 21.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10430 components: - type: Transform @@ -87345,7 +87531,7 @@ entities: pos: 2.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10440 components: - type: Transform @@ -87353,7 +87539,7 @@ entities: pos: -11.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10636 components: - type: Transform @@ -87361,7 +87547,7 @@ entities: pos: 10.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11180 components: - type: Transform @@ -87369,7 +87555,7 @@ entities: pos: 31.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11183 components: - type: Transform @@ -87377,14 +87563,14 @@ entities: pos: 33.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11193 components: - type: Transform pos: 6.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11694 components: - type: Transform @@ -87392,7 +87578,7 @@ entities: pos: 25.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11746 components: - type: Transform @@ -87400,14 +87586,14 @@ entities: pos: 33.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11763 components: - type: Transform pos: 24.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11776 components: - type: Transform @@ -87415,7 +87601,7 @@ entities: pos: 6.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11859 components: - type: Transform @@ -87423,7 +87609,7 @@ entities: pos: 24.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11860 components: - type: Transform @@ -87431,7 +87617,7 @@ entities: pos: 26.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11861 components: - type: Transform @@ -87439,7 +87625,7 @@ entities: pos: 25.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11877 components: - type: Transform @@ -87447,7 +87633,7 @@ entities: pos: 21.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11879 components: - type: Transform @@ -87455,7 +87641,7 @@ entities: pos: 20.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11904 components: - type: Transform @@ -87463,7 +87649,7 @@ entities: pos: 19.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11934 components: - type: Transform @@ -87471,14 +87657,14 @@ entities: pos: 16.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11935 components: - type: Transform pos: 17.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11936 components: - type: Transform @@ -87486,7 +87672,7 @@ entities: pos: 21.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11950 components: - type: Transform @@ -87494,7 +87680,7 @@ entities: pos: 13.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11968 components: - type: Transform @@ -87502,7 +87688,7 @@ entities: pos: 20.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11999 components: - type: Transform @@ -87510,21 +87696,21 @@ entities: pos: 6.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12018 components: - type: Transform pos: 24.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12020 components: - type: Transform pos: 33.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12062 components: - type: Transform @@ -87532,7 +87718,7 @@ entities: pos: 29.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12472 components: - type: Transform @@ -87540,7 +87726,7 @@ entities: pos: 8.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12473 components: - type: Transform @@ -87548,14 +87734,14 @@ entities: pos: 10.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12503 components: - type: Transform pos: 16.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12513 components: - type: Transform @@ -87563,7 +87749,7 @@ entities: pos: 21.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12523 components: - type: Transform @@ -87571,7 +87757,7 @@ entities: pos: 18.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12528 components: - type: Transform @@ -87579,7 +87765,7 @@ entities: pos: 23.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12540 components: - type: Transform @@ -87587,7 +87773,7 @@ entities: pos: 23.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12542 components: - type: Transform @@ -87595,7 +87781,7 @@ entities: pos: 23.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12543 components: - type: Transform @@ -87603,14 +87789,14 @@ entities: pos: 21.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12544 components: - type: Transform pos: 23.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12545 components: - type: Transform @@ -87618,7 +87804,7 @@ entities: pos: 20.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12559 components: - type: Transform @@ -87626,7 +87812,7 @@ entities: pos: 24.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12582 components: - type: Transform @@ -87634,7 +87820,7 @@ entities: pos: -31.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12584 components: - type: Transform @@ -87642,7 +87828,7 @@ entities: pos: 25.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12599 components: - type: Transform @@ -87650,21 +87836,21 @@ entities: pos: 23.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12600 components: - type: Transform pos: 26.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12612 components: - type: Transform pos: 19.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12754 components: - type: Transform @@ -87676,7 +87862,7 @@ entities: pos: -61.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12882 components: - type: Transform @@ -87684,14 +87870,14 @@ entities: pos: 23.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12885 components: - type: Transform pos: 28.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12940 components: - type: Transform @@ -87699,7 +87885,7 @@ entities: pos: 14.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12951 components: - type: Transform @@ -87707,7 +87893,7 @@ entities: pos: 23.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12954 components: - type: Transform @@ -87715,14 +87901,14 @@ entities: pos: 23.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12963 components: - type: Transform pos: 28.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12989 components: - type: Transform @@ -87730,7 +87916,7 @@ entities: pos: 14.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12991 components: - type: Transform @@ -87738,14 +87924,14 @@ entities: pos: 14.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12997 components: - type: Transform pos: 23.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13007 components: - type: Transform @@ -87753,7 +87939,7 @@ entities: pos: 8.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13011 components: - type: Transform @@ -87761,14 +87947,14 @@ entities: pos: 12.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13017 components: - type: Transform pos: 13.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13022 components: - type: Transform @@ -87776,7 +87962,7 @@ entities: pos: 12.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13030 components: - type: Transform @@ -87784,7 +87970,7 @@ entities: pos: 18.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13033 components: - type: Transform @@ -87792,7 +87978,7 @@ entities: pos: 21.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13059 components: - type: Transform @@ -87800,7 +87986,7 @@ entities: pos: 25.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13067 components: - type: Transform @@ -87808,7 +87994,7 @@ entities: pos: 11.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13076 components: - type: Transform @@ -87816,7 +88002,7 @@ entities: pos: 38.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13634 components: - type: Transform @@ -87824,7 +88010,7 @@ entities: pos: 52.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13753 components: - type: Transform @@ -87832,14 +88018,14 @@ entities: pos: -32.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13757 components: - type: Transform pos: 35.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13765 components: - type: Transform @@ -87847,7 +88033,7 @@ entities: pos: 43.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13772 components: - type: Transform @@ -87855,14 +88041,14 @@ entities: pos: 35.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13776 components: - type: Transform pos: 39.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13784 components: - type: Transform @@ -87870,7 +88056,7 @@ entities: pos: 30.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14440 components: - type: Transform @@ -87878,7 +88064,7 @@ entities: pos: -55.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14455 components: - type: Transform @@ -87886,21 +88072,21 @@ entities: pos: -25.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14512 components: - type: Transform pos: 17.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16802 components: - type: Transform pos: -62.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17718 components: - type: Transform @@ -87914,7 +88100,7 @@ entities: pos: -45.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18387 components: - type: Transform @@ -87922,14 +88108,14 @@ entities: pos: -61.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18391 components: - type: Transform pos: -57.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18397 components: - type: Transform @@ -87937,7 +88123,7 @@ entities: pos: -53.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18403 components: - type: Transform @@ -87945,7 +88131,7 @@ entities: pos: -44.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18412 components: - type: Transform @@ -87953,14 +88139,14 @@ entities: pos: -44.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18416 components: - type: Transform pos: -61.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18421 components: - type: Transform @@ -87968,14 +88154,14 @@ entities: pos: -58.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18426 components: - type: Transform pos: -51.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18430 components: - type: Transform @@ -87983,7 +88169,7 @@ entities: pos: -49.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18446 components: - type: Transform @@ -87991,7 +88177,7 @@ entities: pos: -63.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18492 components: - type: Transform @@ -87999,7 +88185,7 @@ entities: pos: -65.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18493 components: - type: Transform @@ -88007,7 +88193,7 @@ entities: pos: -64.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18501 components: - type: Transform @@ -88015,14 +88201,14 @@ entities: pos: -68.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18510 components: - type: Transform pos: -77.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18521 components: - type: Transform @@ -88030,7 +88216,7 @@ entities: pos: -68.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18525 components: - type: Transform @@ -88038,14 +88224,14 @@ entities: pos: -62.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18526 components: - type: Transform pos: -60.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18542 components: - type: Transform @@ -88053,7 +88239,7 @@ entities: pos: -60.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18550 components: - type: Transform @@ -88061,7 +88247,7 @@ entities: pos: -56.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18554 components: - type: Transform @@ -88069,7 +88255,7 @@ entities: pos: -56.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18566 components: - type: Transform @@ -88077,7 +88263,7 @@ entities: pos: -55.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18568 components: - type: Transform @@ -88085,7 +88271,7 @@ entities: pos: -67.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18570 components: - type: Transform @@ -88093,7 +88279,7 @@ entities: pos: -55.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18578 components: - type: Transform @@ -88101,7 +88287,7 @@ entities: pos: -63.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18591 components: - type: Transform @@ -88109,14 +88295,14 @@ entities: pos: -68.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18603 components: - type: Transform pos: -63.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18610 components: - type: Transform @@ -88124,7 +88310,7 @@ entities: pos: -67.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18611 components: - type: Transform @@ -88132,7 +88318,7 @@ entities: pos: -68.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18614 components: - type: Transform @@ -88140,7 +88326,7 @@ entities: pos: -56.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18615 components: - type: Transform @@ -88148,7 +88334,7 @@ entities: pos: -55.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18616 components: - type: Transform @@ -88156,14 +88342,14 @@ entities: pos: -61.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18618 components: - type: Transform pos: -61.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18623 components: - type: Transform @@ -88171,7 +88357,7 @@ entities: pos: -58.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18636 components: - type: Transform @@ -88179,7 +88365,7 @@ entities: pos: -67.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18637 components: - type: Transform @@ -88187,7 +88373,7 @@ entities: pos: -68.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18644 components: - type: Transform @@ -88195,7 +88381,7 @@ entities: pos: -75.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18658 components: - type: Transform @@ -88203,28 +88389,28 @@ entities: pos: -75.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18704 components: - type: Transform pos: -74.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18711 components: - type: Transform pos: -75.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18717 components: - type: Transform pos: -80.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18739 components: - type: Transform @@ -88232,7 +88418,7 @@ entities: pos: -72.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18748 components: - type: Transform @@ -88240,7 +88426,7 @@ entities: pos: -71.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 20668 components: - type: Transform @@ -88248,7 +88434,7 @@ entities: pos: -3.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22014 components: - type: Transform @@ -88256,7 +88442,7 @@ entities: pos: -0.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22675 components: - type: Transform @@ -88264,14 +88450,14 @@ entities: pos: 11.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22685 components: - type: Transform pos: 10.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22779 components: - type: Transform @@ -88279,7 +88465,7 @@ entities: pos: -39.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22786 components: - type: Transform @@ -88287,7 +88473,7 @@ entities: pos: -37.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPort entities: - uid: 6757 @@ -88296,12 +88482,16 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 6799 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-10.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10390 components: - type: Transform @@ -88309,7 +88499,7 @@ entities: pos: 20.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10392 components: - type: Transform @@ -88317,7 +88507,7 @@ entities: pos: 20.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11744 components: - type: Transform @@ -88325,7 +88515,7 @@ entities: pos: 5.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11869 components: - type: Transform @@ -88333,7 +88523,7 @@ entities: pos: 5.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12699 components: - type: Transform @@ -88413,7 +88603,7 @@ entities: pos: -52.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7140 components: - type: MetaData @@ -88422,6 +88612,8 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-11.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7911 components: - type: Transform @@ -88442,7 +88634,7 @@ entities: pos: -30.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' - uid: 8781 components: - type: Transform @@ -88450,7 +88642,7 @@ entities: pos: 16.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8792 components: - type: Transform @@ -88497,13 +88689,15 @@ entities: pos: 6.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#947507FF' - uid: 9182 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-48.5 parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12922 components: - type: Transform @@ -88521,7 +88715,7 @@ entities: pos: -3.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - proto: GasThermoMachineFreezer entities: - uid: 482 @@ -88534,6 +88728,8 @@ entities: - type: Transform pos: -36.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 905 components: - type: Transform @@ -88546,6 +88742,8 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-13.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11013 components: - type: Transform @@ -88614,7 +88812,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 21274 components: - type: MetaData @@ -88626,7 +88824,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVentPump entities: - uid: 2451 @@ -88639,7 +88837,7 @@ entities: deviceLists: - 21888 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2482 components: - type: Transform @@ -88647,7 +88845,7 @@ entities: pos: -49.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2491 components: - type: Transform @@ -88655,14 +88853,14 @@ entities: pos: -41.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2493 components: - type: Transform pos: -45.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2503 components: - type: Transform @@ -88673,14 +88871,14 @@ entities: deviceLists: - 22775 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2523 components: - type: Transform pos: -33.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2524 components: - type: Transform @@ -88688,7 +88886,7 @@ entities: pos: -30.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2544 components: - type: Transform @@ -88699,7 +88897,7 @@ entities: deviceLists: - 21906 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2573 components: - type: Transform @@ -88707,7 +88905,7 @@ entities: pos: -25.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2592 components: - type: Transform @@ -88715,7 +88913,7 @@ entities: pos: -31.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2594 components: - type: Transform @@ -88723,7 +88921,7 @@ entities: pos: -30.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2638 components: - type: Transform @@ -88734,7 +88932,7 @@ entities: deviceLists: - 22285 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2639 components: - type: Transform @@ -88745,7 +88943,7 @@ entities: deviceLists: - 22285 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2640 components: - type: Transform @@ -88756,7 +88954,7 @@ entities: deviceLists: - 22285 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2644 components: - type: Transform @@ -88766,7 +88964,7 @@ entities: deviceLists: - 22285 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2669 components: - type: Transform @@ -88777,7 +88975,7 @@ entities: deviceLists: - 21913 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2676 components: - type: Transform @@ -88788,7 +88986,7 @@ entities: deviceLists: - 22790 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2705 components: - type: Transform @@ -88798,7 +88996,7 @@ entities: deviceLists: - 22794 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2706 components: - type: Transform @@ -88806,7 +89004,7 @@ entities: pos: -48.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2707 components: - type: Transform @@ -88817,7 +89015,7 @@ entities: deviceLists: - 22794 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2708 components: - type: Transform @@ -88828,7 +89026,7 @@ entities: deviceLists: - 22794 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2734 components: - type: Transform @@ -88839,7 +89037,7 @@ entities: deviceLists: - 22791 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2743 components: - type: Transform @@ -88850,14 +89048,14 @@ entities: deviceLists: - 22760 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2862 components: - type: Transform pos: -8.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3042 components: - type: Transform @@ -88865,7 +89063,7 @@ entities: pos: -26.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3050 components: - type: Transform @@ -88873,7 +89071,7 @@ entities: pos: -30.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3056 components: - type: Transform @@ -88881,7 +89079,7 @@ entities: pos: -26.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3062 components: - type: Transform @@ -88889,7 +89087,7 @@ entities: pos: -22.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3064 components: - type: Transform @@ -88897,7 +89095,7 @@ entities: pos: -35.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3066 components: - type: Transform @@ -88905,7 +89103,7 @@ entities: pos: -35.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3069 components: - type: Transform @@ -88913,7 +89111,7 @@ entities: pos: -35.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3077 components: - type: Transform @@ -88923,14 +89121,14 @@ entities: deviceLists: - 18082 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3099 components: - type: Transform pos: -42.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3111 components: - type: Transform @@ -88938,7 +89136,7 @@ entities: pos: -39.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3135 components: - type: Transform @@ -88946,7 +89144,7 @@ entities: pos: -53.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3148 components: - type: Transform @@ -88954,7 +89152,7 @@ entities: pos: -45.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3171 components: - type: Transform @@ -88962,7 +89160,7 @@ entities: pos: -45.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3228 components: - type: Transform @@ -88973,14 +89171,14 @@ entities: deviceLists: - 2454 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3230 components: - type: Transform pos: -32.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3253 components: - type: Transform @@ -88990,14 +89188,14 @@ entities: deviceLists: - 22746 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3266 components: - type: Transform pos: -44.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3302 components: - type: Transform @@ -89005,7 +89203,7 @@ entities: pos: -60.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3303 components: - type: Transform @@ -89013,7 +89211,7 @@ entities: pos: -60.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3304 components: - type: Transform @@ -89021,7 +89219,7 @@ entities: pos: -60.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3305 components: - type: Transform @@ -89029,7 +89227,7 @@ entities: pos: -60.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3323 components: - type: Transform @@ -89037,28 +89235,28 @@ entities: pos: -56.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3324 components: - type: Transform pos: -50.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3325 components: - type: Transform pos: -27.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3327 components: - type: Transform pos: -17.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3376 components: - type: Transform @@ -89068,7 +89266,7 @@ entities: deviceLists: - 22745 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3401 components: - type: Transform @@ -89076,21 +89274,21 @@ entities: pos: -13.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3407 components: - type: Transform pos: -10.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3410 components: - type: Transform pos: 5.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3422 components: - type: Transform @@ -89098,7 +89296,7 @@ entities: pos: -0.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3469 components: - type: Transform @@ -89108,7 +89306,7 @@ entities: deviceLists: - 22705 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3479 components: - type: Transform @@ -89116,7 +89314,7 @@ entities: pos: -8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3480 components: - type: Transform @@ -89126,7 +89324,7 @@ entities: deviceLists: - 22704 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3481 components: - type: Transform @@ -89134,7 +89332,7 @@ entities: pos: 3.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3485 components: - type: Transform @@ -89142,21 +89340,21 @@ entities: pos: -0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6109 components: - type: Transform pos: -23.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6113 components: - type: Transform pos: 3.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6123 components: - type: Transform @@ -89164,14 +89362,14 @@ entities: pos: -0.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6205 components: - type: Transform pos: -9.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6214 components: - type: Transform @@ -89179,7 +89377,7 @@ entities: pos: -7.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6223 components: - type: Transform @@ -89187,7 +89385,7 @@ entities: pos: 0.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6229 components: - type: Transform @@ -89195,7 +89393,7 @@ entities: pos: -19.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6239 components: - type: Transform @@ -89206,7 +89404,7 @@ entities: deviceLists: - 22758 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6245 components: - type: Transform @@ -89217,7 +89415,7 @@ entities: deviceLists: - 22759 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6246 components: - type: Transform @@ -89228,7 +89426,7 @@ entities: deviceLists: - 21946 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6900 components: - type: Transform @@ -89236,7 +89434,7 @@ entities: pos: -28.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6920 components: - type: Transform @@ -89247,7 +89445,7 @@ entities: deviceLists: - 19145 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6939 components: - type: Transform @@ -89258,7 +89456,7 @@ entities: deviceLists: - 22717 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7099 components: - type: Transform @@ -89269,7 +89467,7 @@ entities: deviceLists: - 13957 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7115 components: - type: Transform @@ -89279,7 +89477,7 @@ entities: deviceLists: - 22555 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7136 components: - type: Transform @@ -89289,7 +89487,7 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7137 components: - type: Transform @@ -89299,14 +89497,14 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7340 components: - type: Transform pos: -12.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7342 components: - type: Transform @@ -89317,7 +89515,7 @@ entities: deviceLists: - 22043 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7373 components: - type: Transform @@ -89328,7 +89526,7 @@ entities: deviceLists: - 22716 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7424 components: - type: Transform @@ -89339,7 +89537,7 @@ entities: deviceLists: - 8252 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7443 components: - type: Transform @@ -89348,9 +89546,9 @@ entities: parent: 30 - type: DeviceNetwork deviceLists: - - 22824 + - 9483 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7569 components: - type: Transform @@ -89361,7 +89559,7 @@ entities: deviceLists: - 8254 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8033 components: - type: Transform @@ -89371,7 +89569,7 @@ entities: deviceLists: - 7927 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8100 components: - type: Transform @@ -89382,14 +89580,14 @@ entities: deviceLists: - 9029 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8224 components: - type: Transform pos: -22.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8297 components: - type: Transform @@ -89400,7 +89598,7 @@ entities: deviceLists: - 22821 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8311 components: - type: Transform @@ -89411,7 +89609,7 @@ entities: deviceLists: - 19570 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8316 components: - type: Transform @@ -89422,7 +89620,7 @@ entities: deviceLists: - 22725 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8335 components: - type: Transform @@ -89433,7 +89631,7 @@ entities: deviceLists: - 22822 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8454 components: - type: Transform @@ -89442,9 +89640,9 @@ entities: parent: 30 - type: DeviceNetwork deviceLists: - - 22823 + - 9409 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9046 components: - type: Transform @@ -89454,7 +89652,7 @@ entities: deviceLists: - 3167 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9686 components: - type: Transform @@ -89465,7 +89663,7 @@ entities: deviceLists: - 9671 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9811 components: - type: Transform @@ -89473,7 +89671,7 @@ entities: pos: -54.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9884 components: - type: Transform @@ -89483,7 +89681,7 @@ entities: deviceLists: - 13958 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9903 components: - type: Transform @@ -89494,7 +89692,7 @@ entities: deviceLists: - 13966 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9908 components: - type: Transform @@ -89505,7 +89703,7 @@ entities: deviceLists: - 22827 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10022 components: - type: Transform @@ -89516,7 +89714,7 @@ entities: deviceLists: - 22826 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10233 components: - type: Transform @@ -89527,7 +89725,7 @@ entities: deviceLists: - 22817 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11026 components: - type: Transform @@ -89537,7 +89735,7 @@ entities: deviceLists: - 22825 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11134 components: - type: Transform @@ -89548,7 +89746,7 @@ entities: deviceLists: - 9996 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11165 components: - type: Transform @@ -89559,7 +89757,7 @@ entities: deviceLists: - 22838 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11178 components: - type: Transform @@ -89567,7 +89765,7 @@ entities: pos: -2.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11192 components: - type: Transform @@ -89577,14 +89775,14 @@ entities: deviceLists: - 10010 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11200 components: - type: Transform pos: 2.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11208 components: - type: Transform @@ -89594,7 +89792,7 @@ entities: deviceLists: - 22715 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11211 components: - type: Transform @@ -89602,14 +89800,14 @@ entities: pos: 12.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11216 components: - type: Transform pos: -2.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11217 components: - type: Transform @@ -89617,7 +89815,7 @@ entities: pos: 5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11220 components: - type: Transform @@ -89625,7 +89823,7 @@ entities: pos: 8.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11222 components: - type: Transform @@ -89633,14 +89831,14 @@ entities: pos: 14.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11224 components: - type: Transform pos: 12.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11664 components: - type: Transform @@ -89651,7 +89849,7 @@ entities: deviceLists: - 22813 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11868 components: - type: Transform @@ -89662,7 +89860,7 @@ entities: deviceLists: - 22813 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11872 components: - type: Transform @@ -89670,7 +89868,7 @@ entities: pos: 24.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11922 components: - type: Transform @@ -89681,7 +89879,7 @@ entities: deviceLists: - 21785 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11938 components: - type: Transform @@ -89689,7 +89887,7 @@ entities: pos: 17.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11939 components: - type: Transform @@ -89697,14 +89895,14 @@ entities: pos: 20.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11981 components: - type: Transform pos: 20.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11991 components: - type: Transform @@ -89712,21 +89910,21 @@ entities: pos: 19.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12007 components: - type: Transform pos: 30.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12010 components: - type: Transform pos: 25.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12060 components: - type: Transform @@ -89737,7 +89935,7 @@ entities: deviceLists: - 21785 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12081 components: - type: Transform @@ -89745,7 +89943,7 @@ entities: pos: 30.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12230 components: - type: Transform @@ -89756,7 +89954,7 @@ entities: deviceLists: - 22813 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12482 components: - type: Transform @@ -89767,7 +89965,7 @@ entities: deviceLists: - 22035 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12491 components: - type: Transform @@ -89778,7 +89976,7 @@ entities: deviceLists: - 22035 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12495 components: - type: Transform @@ -89788,7 +89986,7 @@ entities: deviceLists: - 22672 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12537 components: - type: Transform @@ -89796,14 +89994,14 @@ entities: pos: 9.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12538 components: - type: Transform pos: 18.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12579 components: - type: Transform @@ -89814,7 +90012,7 @@ entities: deviceLists: - 22028 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12580 components: - type: Transform @@ -89825,7 +90023,7 @@ entities: deviceLists: - 22028 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12581 components: - type: Transform @@ -89836,7 +90034,7 @@ entities: deviceLists: - 22028 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12587 components: - type: Transform @@ -89846,7 +90044,7 @@ entities: deviceLists: - 22028 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12595 components: - type: Transform @@ -89857,7 +90055,7 @@ entities: deviceLists: - 2541 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12611 components: - type: Transform @@ -89867,7 +90065,7 @@ entities: deviceLists: - 2851 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12756 components: - type: Transform @@ -89880,7 +90078,7 @@ entities: pos: 32.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12959 components: - type: Transform @@ -89888,7 +90086,7 @@ entities: pos: 27.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12976 components: - type: Transform @@ -89899,7 +90097,7 @@ entities: deviceLists: - 22062 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13002 components: - type: Transform @@ -89910,7 +90108,7 @@ entities: deviceLists: - 14365 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13003 components: - type: Transform @@ -89921,7 +90119,7 @@ entities: deviceLists: - 13470 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13004 components: - type: Transform @@ -89932,7 +90130,7 @@ entities: deviceLists: - 22048 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13005 components: - type: Transform @@ -89942,7 +90140,7 @@ entities: deviceLists: - 22703 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13006 components: - type: Transform @@ -89950,7 +90148,7 @@ entities: pos: 13.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13085 components: - type: Transform @@ -89961,7 +90159,7 @@ entities: deviceLists: - 14365 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13335 components: - type: Transform @@ -89969,7 +90167,7 @@ entities: pos: 9.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13360 components: - type: Transform @@ -89977,7 +90175,7 @@ entities: pos: 26.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13469 components: - type: Transform @@ -89987,7 +90185,7 @@ entities: deviceLists: - 22872 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13593 components: - type: Transform @@ -89997,7 +90195,7 @@ entities: deviceLists: - 22045 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13783 components: - type: Transform @@ -90005,7 +90203,7 @@ entities: pos: 45.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13789 components: - type: Transform @@ -90015,7 +90213,7 @@ entities: deviceLists: - 22043 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14510 components: - type: Transform @@ -90026,7 +90224,7 @@ entities: deviceLists: - 22073 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15441 components: - type: Transform @@ -90037,7 +90235,7 @@ entities: deviceLists: - 22862 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15619 components: - type: Transform @@ -90047,7 +90245,7 @@ entities: deviceLists: - 22862 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16096 components: - type: Transform @@ -90055,7 +90253,7 @@ entities: pos: 6.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18074 components: - type: Transform @@ -90066,7 +90264,7 @@ entities: deviceLists: - 14365 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18436 components: - type: Transform @@ -90074,7 +90272,7 @@ entities: pos: -45.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18437 components: - type: Transform @@ -90082,35 +90280,35 @@ entities: pos: -45.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18438 components: - type: Transform pos: -58.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18439 components: - type: Transform pos: -49.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18440 components: - type: Transform pos: -53.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18449 components: - type: Transform pos: -63.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18450 components: - type: Transform @@ -90118,7 +90316,7 @@ entities: pos: -62.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18629 components: - type: Transform @@ -90126,28 +90324,28 @@ entities: pos: -59.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18655 components: - type: Transform pos: -79.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18662 components: - type: Transform pos: -77.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18663 components: - type: Transform pos: -75.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18667 components: - type: Transform @@ -90157,7 +90355,7 @@ entities: deviceLists: - 22820 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18668 components: - type: Transform @@ -90167,14 +90365,14 @@ entities: deviceLists: - 22820 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18674 components: - type: Transform pos: -55.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18678 components: - type: Transform @@ -90182,7 +90380,7 @@ entities: pos: -52.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18679 components: - type: Transform @@ -90190,7 +90388,7 @@ entities: pos: -52.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18720 components: - type: Transform @@ -90198,7 +90396,7 @@ entities: pos: -83.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18731 components: - type: Transform @@ -90206,7 +90404,7 @@ entities: pos: -80.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18732 components: - type: Transform @@ -90214,7 +90412,7 @@ entities: pos: -74.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18753 components: - type: Transform @@ -90225,7 +90423,7 @@ entities: deviceLists: - 22818 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18754 components: - type: Transform @@ -90235,14 +90433,14 @@ entities: deviceLists: - 22819 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18757 components: - type: Transform pos: -60.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18758 components: - type: Transform @@ -90250,7 +90448,7 @@ entities: pos: -60.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 20335 components: - type: Transform @@ -90258,7 +90456,7 @@ entities: pos: 4.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21549 components: - type: Transform @@ -90269,7 +90467,7 @@ entities: deviceLists: - 22045 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22023 components: - type: Transform @@ -90279,7 +90477,7 @@ entities: deviceLists: - 22874 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22024 components: - type: Transform @@ -90290,14 +90488,14 @@ entities: deviceLists: - 22873 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22025 components: - type: Transform pos: -1.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22673 components: - type: Transform @@ -90307,7 +90505,7 @@ entities: deviceLists: - 22672 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22697 components: - type: Transform @@ -90318,7 +90516,7 @@ entities: deviceLists: - 22696 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22700 components: - type: Transform @@ -90329,7 +90527,7 @@ entities: deviceLists: - 22028 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22706 components: - type: Transform @@ -90340,7 +90538,7 @@ entities: deviceLists: - 22714 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22726 components: - type: Transform @@ -90350,7 +90548,7 @@ entities: deviceLists: - 22553 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22727 components: - type: Transform @@ -90360,7 +90558,7 @@ entities: deviceLists: - 22730 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22732 components: - type: Transform @@ -90371,7 +90569,7 @@ entities: deviceLists: - 22738 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22739 components: - type: Transform @@ -90382,7 +90580,7 @@ entities: deviceLists: - 21801 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22747 components: - type: Transform @@ -90393,7 +90591,7 @@ entities: deviceLists: - 22757 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22761 components: - type: Transform @@ -90403,7 +90601,7 @@ entities: deviceLists: - 22775 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22764 components: - type: Transform @@ -90414,7 +90612,7 @@ entities: deviceLists: - 21888 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22782 components: - type: Transform @@ -90425,7 +90623,7 @@ entities: deviceLists: - 2541 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22797 components: - type: Transform @@ -90436,7 +90634,7 @@ entities: deviceLists: - 22812 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22829 components: - type: Transform @@ -90447,7 +90645,7 @@ entities: deviceLists: - 22840 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22831 components: - type: Transform @@ -90458,7 +90656,7 @@ entities: deviceLists: - 22839 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22841 components: - type: Transform @@ -90468,7 +90666,7 @@ entities: deviceLists: - 22853 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22854 components: - type: Transform @@ -90479,7 +90677,7 @@ entities: deviceLists: - 21755 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22856 components: - type: Transform @@ -90490,7 +90688,7 @@ entities: deviceLists: - 10010 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22865 components: - type: Transform @@ -90500,7 +90698,7 @@ entities: deviceLists: - 22868 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 2452 @@ -90513,7 +90711,7 @@ entities: deviceLists: - 21888 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2453 components: - type: Transform @@ -90524,7 +90722,7 @@ entities: deviceLists: - 22043 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2483 components: - type: Transform @@ -90532,7 +90730,7 @@ entities: pos: -50.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2490 components: - type: Transform @@ -90540,7 +90738,7 @@ entities: pos: -42.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2492 components: - type: Transform @@ -90548,7 +90746,7 @@ entities: pos: -41.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2504 components: - type: Transform @@ -90559,7 +90757,7 @@ entities: deviceLists: - 22775 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2525 components: - type: Transform @@ -90567,7 +90765,7 @@ entities: pos: -35.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2526 components: - type: Transform @@ -90575,7 +90773,7 @@ entities: pos: -34.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2545 components: - type: Transform @@ -90586,7 +90784,7 @@ entities: deviceLists: - 21906 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2574 components: - type: Transform @@ -90594,7 +90792,7 @@ entities: pos: -25.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2593 components: - type: Transform @@ -90602,7 +90800,7 @@ entities: pos: -33.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2595 components: - type: Transform @@ -90610,7 +90808,7 @@ entities: pos: -34.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2641 components: - type: Transform @@ -90621,7 +90819,7 @@ entities: deviceLists: - 22285 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2642 components: - type: Transform @@ -90632,7 +90830,7 @@ entities: deviceLists: - 22285 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2643 components: - type: Transform @@ -90643,7 +90841,7 @@ entities: deviceLists: - 22285 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2645 components: - type: Transform @@ -90654,7 +90852,7 @@ entities: deviceLists: - 22285 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2670 components: - type: Transform @@ -90665,7 +90863,7 @@ entities: deviceLists: - 21913 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2675 components: - type: Transform @@ -90676,7 +90874,7 @@ entities: deviceLists: - 22790 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2730 components: - type: Transform @@ -90687,7 +90885,7 @@ entities: deviceLists: - 22794 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2733 components: - type: Transform @@ -90698,7 +90896,7 @@ entities: deviceLists: - 22791 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2742 components: - type: Transform @@ -90709,7 +90907,7 @@ entities: deviceLists: - 22760 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3006 components: - type: Transform @@ -90717,7 +90915,7 @@ entities: pos: -10.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3041 components: - type: Transform @@ -90725,7 +90923,7 @@ entities: pos: -30.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3049 components: - type: Transform @@ -90733,7 +90931,7 @@ entities: pos: -31.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3055 components: - type: Transform @@ -90741,7 +90939,7 @@ entities: pos: -27.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3063 components: - type: Transform @@ -90749,7 +90947,7 @@ entities: pos: -21.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3065 components: - type: Transform @@ -90757,7 +90955,7 @@ entities: pos: -35.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3067 components: - type: Transform @@ -90765,7 +90963,7 @@ entities: pos: -35.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3068 components: - type: Transform @@ -90773,7 +90971,7 @@ entities: pos: -35.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3076 components: - type: Transform @@ -90784,7 +90982,7 @@ entities: deviceLists: - 18082 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3100 components: - type: Transform @@ -90792,7 +90990,7 @@ entities: pos: -39.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3112 components: - type: Transform @@ -90800,7 +90998,7 @@ entities: pos: -41.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3136 components: - type: Transform @@ -90808,7 +91006,7 @@ entities: pos: -52.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3147 components: - type: Transform @@ -90816,7 +91014,7 @@ entities: pos: -44.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3170 components: - type: Transform @@ -90824,7 +91022,7 @@ entities: pos: -44.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3229 components: - type: Transform @@ -90835,7 +91033,7 @@ entities: deviceLists: - 2454 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3231 components: - type: Transform @@ -90843,7 +91041,7 @@ entities: pos: -31.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3254 components: - type: Transform @@ -90853,7 +91051,7 @@ entities: deviceLists: - 22746 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3267 components: - type: Transform @@ -90861,7 +91059,7 @@ entities: pos: -41.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3317 components: - type: Transform @@ -90869,7 +91067,7 @@ entities: pos: -53.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3318 components: - type: Transform @@ -90877,7 +91075,7 @@ entities: pos: -53.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3326 components: - type: Transform @@ -90885,7 +91083,7 @@ entities: pos: -24.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3328 components: - type: Transform @@ -90893,7 +91091,7 @@ entities: pos: -14.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3358 components: - type: Transform @@ -90901,7 +91099,7 @@ entities: pos: -24.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3377 components: - type: Transform @@ -90912,7 +91110,7 @@ entities: deviceLists: - 22745 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3398 components: - type: Transform @@ -90922,7 +91120,7 @@ entities: deviceLists: - 22705 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3400 components: - type: Transform @@ -90930,7 +91128,7 @@ entities: pos: -13.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3408 components: - type: Transform @@ -90938,7 +91136,7 @@ entities: pos: -6.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3409 components: - type: Transform @@ -90946,7 +91144,7 @@ entities: pos: 1.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3421 components: - type: Transform @@ -90954,14 +91152,14 @@ entities: pos: -4.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3482 components: - type: Transform pos: -12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3483 components: - type: Transform @@ -90971,7 +91169,7 @@ entities: deviceLists: - 22704 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3484 components: - type: Transform @@ -90979,14 +91177,14 @@ entities: pos: 3.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3486 components: - type: Transform pos: -4.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5029 components: - type: Transform @@ -90994,7 +91192,7 @@ entities: pos: -28.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6108 components: - type: Transform @@ -91002,7 +91200,7 @@ entities: pos: -19.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6112 components: - type: Transform @@ -91010,7 +91208,7 @@ entities: pos: 0.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6122 components: - type: Transform @@ -91018,7 +91216,7 @@ entities: pos: -2.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6204 components: - type: Transform @@ -91026,7 +91224,7 @@ entities: pos: -9.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6213 components: - type: Transform @@ -91034,7 +91232,7 @@ entities: pos: -11.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6222 components: - type: Transform @@ -91042,7 +91240,7 @@ entities: pos: 0.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6265 components: - type: Transform @@ -91053,7 +91251,7 @@ entities: deviceLists: - 22758 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6266 components: - type: Transform @@ -91064,7 +91262,7 @@ entities: deviceLists: - 21946 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6268 components: - type: Transform @@ -91075,14 +91273,14 @@ entities: deviceLists: - 22759 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6911 components: - type: Transform pos: -28.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6935 components: - type: Transform @@ -91093,7 +91291,7 @@ entities: deviceLists: - 19145 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7098 components: - type: Transform @@ -91102,9 +91300,9 @@ entities: parent: 30 - type: DeviceNetwork deviceLists: - - 22824 + - 9483 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7100 components: - type: Transform @@ -91114,7 +91312,7 @@ entities: deviceLists: - 13957 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7119 components: - type: Transform @@ -91125,7 +91323,7 @@ entities: deviceLists: - 22555 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7130 components: - type: Transform @@ -91136,7 +91334,7 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7131 components: - type: Transform @@ -91147,7 +91345,7 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7222 components: - type: Transform @@ -91158,7 +91356,7 @@ entities: deviceLists: - 22822 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7224 components: - type: Transform @@ -91169,7 +91367,7 @@ entities: deviceLists: - 19570 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7226 components: - type: Transform @@ -91180,14 +91378,14 @@ entities: deviceLists: - 13958 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7339 components: - type: Transform pos: -11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7377 components: - type: Transform @@ -91198,7 +91396,7 @@ entities: deviceLists: - 22716 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7378 components: - type: Transform @@ -91209,7 +91407,7 @@ entities: deviceLists: - 22716 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7407 components: - type: Transform @@ -91220,7 +91418,7 @@ entities: deviceLists: - 22717 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7567 components: - type: Transform @@ -91231,7 +91429,7 @@ entities: deviceLists: - 9029 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7571 components: - type: Transform @@ -91241,7 +91439,7 @@ entities: deviceLists: - 8254 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7572 components: - type: Transform @@ -91252,14 +91450,14 @@ entities: deviceLists: - 7927 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8223 components: - type: Transform pos: -24.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8609 components: - type: Transform @@ -91268,9 +91466,9 @@ entities: parent: 30 - type: DeviceNetwork deviceLists: - - 22823 + - 9409 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9713 components: - type: Transform @@ -91281,7 +91479,7 @@ entities: deviceLists: - 22553 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9774 components: - type: Transform @@ -91291,7 +91489,7 @@ entities: deviceLists: - 10010 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9793 components: - type: Transform @@ -91302,7 +91500,7 @@ entities: deviceLists: - 9996 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9864 components: - type: Transform @@ -91313,7 +91511,7 @@ entities: deviceLists: - 9671 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9897 components: - type: Transform @@ -91324,7 +91522,7 @@ entities: deviceLists: - 22821 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9899 components: - type: Transform @@ -91335,7 +91533,7 @@ entities: deviceLists: - 22827 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10039 components: - type: Transform @@ -91343,7 +91541,7 @@ entities: pos: -55.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10042 components: - type: Transform @@ -91354,7 +91552,7 @@ entities: deviceLists: - 13966 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10043 components: - type: Transform @@ -91365,7 +91563,7 @@ entities: deviceLists: - 22826 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10752 components: - type: Transform @@ -91375,7 +91573,7 @@ entities: deviceLists: - 22825 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11166 components: - type: Transform @@ -91386,7 +91584,7 @@ entities: deviceLists: - 22838 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11179 components: - type: Transform @@ -91394,7 +91592,7 @@ entities: pos: -2.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11201 components: - type: Transform @@ -91402,7 +91600,7 @@ entities: pos: 4.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11209 components: - type: Transform @@ -91412,7 +91610,7 @@ entities: deviceLists: - 22715 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11210 components: - type: Transform @@ -91420,14 +91618,14 @@ entities: pos: 12.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11214 components: - type: Transform pos: 20.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11215 components: - type: Transform @@ -91435,14 +91633,14 @@ entities: pos: -2.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11218 components: - type: Transform pos: 6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11219 components: - type: Transform @@ -91450,7 +91648,7 @@ entities: pos: 8.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11221 components: - type: Transform @@ -91458,7 +91656,7 @@ entities: pos: 12.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11223 components: - type: Transform @@ -91466,7 +91664,7 @@ entities: pos: 9.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11681 components: - type: Transform @@ -91476,7 +91674,7 @@ entities: deviceLists: - 22813 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11714 components: - type: Transform @@ -91484,14 +91682,14 @@ entities: pos: 6.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11764 components: - type: Transform pos: 24.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11797 components: - type: Transform @@ -91501,21 +91699,21 @@ entities: deviceLists: - 22813 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11944 components: - type: Transform pos: 19.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11945 components: - type: Transform pos: 16.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11985 components: - type: Transform @@ -91523,21 +91721,21 @@ entities: pos: 18.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12043 components: - type: Transform pos: 29.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12044 components: - type: Transform pos: 26.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12490 components: - type: Transform @@ -91548,7 +91746,7 @@ entities: deviceLists: - 22035 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12536 components: - type: Transform @@ -91556,7 +91754,7 @@ entities: pos: 9.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12539 components: - type: Transform @@ -91564,7 +91762,7 @@ entities: pos: 16.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12576 components: - type: Transform @@ -91575,7 +91773,7 @@ entities: deviceLists: - 22028 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12577 components: - type: Transform @@ -91586,7 +91784,7 @@ entities: deviceLists: - 22028 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12578 components: - type: Transform @@ -91597,7 +91795,7 @@ entities: deviceLists: - 22028 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12583 components: - type: Transform @@ -91607,7 +91805,7 @@ entities: deviceLists: - 22696 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12603 components: - type: Transform @@ -91618,7 +91816,7 @@ entities: deviceLists: - 3167 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12604 components: - type: Transform @@ -91628,14 +91826,14 @@ entities: deviceLists: - 22672 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12606 components: - type: Transform pos: 24.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12619 components: - type: Transform @@ -91646,7 +91844,7 @@ entities: deviceLists: - 2851 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12755 components: - type: Transform @@ -91660,7 +91858,7 @@ entities: pos: 29.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12824 components: - type: Transform @@ -91668,7 +91866,7 @@ entities: pos: 28.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13079 components: - type: Transform @@ -91679,7 +91877,7 @@ entities: deviceLists: - 22703 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13080 components: - type: Transform @@ -91687,7 +91885,7 @@ entities: pos: 13.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13082 components: - type: Transform @@ -91697,7 +91895,7 @@ entities: deviceLists: - 14365 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13084 components: - type: Transform @@ -91708,7 +91906,7 @@ entities: deviceLists: - 22048 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13086 components: - type: Transform @@ -91718,7 +91916,7 @@ entities: deviceLists: - 13470 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13336 components: - type: Transform @@ -91726,7 +91924,7 @@ entities: pos: 9.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13353 components: - type: Transform @@ -91736,7 +91934,7 @@ entities: deviceLists: - 22062 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13355 components: - type: Transform @@ -91746,7 +91944,7 @@ entities: deviceLists: - 22062 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13767 components: - type: Transform @@ -91757,7 +91955,7 @@ entities: deviceLists: - 2541 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13782 components: - type: Transform @@ -91765,7 +91963,7 @@ entities: pos: 45.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13790 components: - type: Transform @@ -91776,7 +91974,7 @@ entities: deviceLists: - 22730 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13798 components: - type: Transform @@ -91786,7 +91984,7 @@ entities: deviceLists: - 22043 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14522 components: - type: Transform @@ -91797,7 +91995,7 @@ entities: deviceLists: - 14365 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14540 components: - type: Transform @@ -91805,14 +92003,14 @@ entities: pos: 20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18060 components: - type: Transform pos: 30.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18214 components: - type: Transform @@ -91823,7 +92021,7 @@ entities: deviceLists: - 14365 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18435 components: - type: Transform @@ -91831,7 +92029,7 @@ entities: pos: -44.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18441 components: - type: Transform @@ -91839,7 +92037,7 @@ entities: pos: -57.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18442 components: - type: Transform @@ -91847,14 +92045,14 @@ entities: pos: -51.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18451 components: - type: Transform pos: -61.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18519 components: - type: Transform @@ -91862,14 +92060,14 @@ entities: pos: -77.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18520 components: - type: Transform pos: -78.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18523 components: - type: Transform @@ -91879,14 +92077,14 @@ entities: deviceLists: - 22820 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18524 components: - type: Transform pos: -64.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18547 components: - type: Transform @@ -91897,7 +92095,7 @@ entities: deviceLists: - 22817 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18630 components: - type: Transform @@ -91908,14 +92106,14 @@ entities: deviceLists: - 22820 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18675 components: - type: Transform pos: -56.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18676 components: - type: Transform @@ -91923,7 +92121,7 @@ entities: pos: -52.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18677 components: - type: Transform @@ -91931,7 +92129,7 @@ entities: pos: -52.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18729 components: - type: Transform @@ -91939,7 +92137,7 @@ entities: pos: -80.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18730 components: - type: Transform @@ -91947,7 +92145,7 @@ entities: pos: -75.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18744 components: - type: Transform @@ -91957,7 +92155,7 @@ entities: deviceLists: - 22818 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18745 components: - type: Transform @@ -91967,7 +92165,7 @@ entities: deviceLists: - 22819 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18756 components: - type: Transform @@ -91975,14 +92173,14 @@ entities: pos: -63.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18759 components: - type: Transform pos: -63.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21545 components: - type: Transform @@ -91993,7 +92191,7 @@ entities: deviceLists: - 22045 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21553 components: - type: Transform @@ -92003,7 +92201,7 @@ entities: deviceLists: - 22045 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22674 components: - type: Transform @@ -92013,7 +92211,7 @@ entities: deviceLists: - 22672 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22676 components: - type: Transform @@ -92024,7 +92222,7 @@ entities: deviceLists: - 22035 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22701 components: - type: Transform @@ -92035,7 +92233,7 @@ entities: deviceLists: - 22028 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22707 components: - type: Transform @@ -92046,7 +92244,7 @@ entities: deviceLists: - 22714 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22718 components: - type: Transform @@ -92057,7 +92255,7 @@ entities: deviceLists: - 8252 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22719 components: - type: Transform @@ -92068,7 +92266,7 @@ entities: deviceLists: - 22725 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22731 components: - type: Transform @@ -92079,7 +92277,7 @@ entities: deviceLists: - 22738 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22740 components: - type: Transform @@ -92090,7 +92288,7 @@ entities: deviceLists: - 21801 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22748 components: - type: Transform @@ -92101,7 +92299,7 @@ entities: deviceLists: - 22757 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22762 components: - type: Transform @@ -92111,7 +92309,7 @@ entities: deviceLists: - 22775 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22763 components: - type: Transform @@ -92122,7 +92320,7 @@ entities: deviceLists: - 21888 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22783 components: - type: Transform @@ -92133,7 +92331,7 @@ entities: deviceLists: - 2541 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22792 components: - type: Transform @@ -92144,7 +92342,7 @@ entities: deviceLists: - 22794 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22793 components: - type: Transform @@ -92155,7 +92353,7 @@ entities: deviceLists: - 22794 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22798 components: - type: Transform @@ -92166,7 +92364,7 @@ entities: deviceLists: - 22812 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22828 components: - type: Transform @@ -92177,7 +92375,7 @@ entities: deviceLists: - 22840 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22830 components: - type: Transform @@ -92188,7 +92386,7 @@ entities: deviceLists: - 22839 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22842 components: - type: Transform @@ -92198,7 +92396,7 @@ entities: deviceLists: - 22853 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22855 components: - type: Transform @@ -92209,7 +92407,7 @@ entities: deviceLists: - 21755 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22857 components: - type: Transform @@ -92220,7 +92418,7 @@ entities: deviceLists: - 10010 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22866 components: - type: Transform @@ -92230,7 +92428,7 @@ entities: deviceLists: - 22868 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - uid: 9373 @@ -92248,7 +92446,7 @@ entities: pos: -1.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 20653 components: - type: Transform @@ -93895,6 +94093,11 @@ entities: - type: Transform pos: -4.5,50.5 parent: 30 + - uid: 5841 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 30 - uid: 6292 components: - type: Transform @@ -94905,12 +95108,6 @@ entities: - type: Transform pos: 8.5,-54.5 parent: 30 - - uid: 9409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-44.5 - parent: 30 - uid: 9504 components: - type: Transform @@ -95067,6 +95264,16 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-57.5 parent: 30 + - uid: 9959 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 30 + - uid: 9961 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 30 - uid: 9973 components: - type: Transform @@ -95155,6 +95362,11 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 30 + - uid: 10548 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 30 - uid: 10553 components: - type: Transform @@ -95401,6 +95613,11 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-76.5 parent: 30 + - uid: 11278 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 30 - uid: 11279 components: - type: Transform @@ -98016,6 +98233,16 @@ entities: - type: Transform pos: -36.5,-36.5 parent: 30 + - uid: 20637 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 30 + - uid: 20641 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 30 - uid: 20664 components: - type: Transform @@ -98906,6 +99133,21 @@ entities: - type: Transform pos: -11.5,54.5 parent: 30 + - uid: 22823 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 30 + - uid: 22824 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 30 + - uid: 22875 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 30 - proto: GrilleBroken entities: - uid: 695 @@ -99416,6 +99658,569 @@ entities: - type: Transform pos: 13.829771,-25.622192 parent: 30 +- proto: Holopad + entities: + - uid: 22958 + components: + - type: MetaData + name: holopad (Medical - Psychology) + - type: Transform + pos: -29.5,-1.5 + parent: 30 + - type: Label + currentLabel: Medical - Psychology + - type: NameModifier + baseName: holopad + - uid: 22970 + components: + - type: MetaData + name: holopad (General - Arrivals Lounge) + - type: Transform + pos: -40.5,1.5 + parent: 30 + - type: Label + currentLabel: General - Arrivals Lounge + - type: NameModifier + baseName: holopad + - uid: 22971 + components: + - type: MetaData + name: holopad (Security - Perma Processing) + - type: Transform + pos: -47.5,52.5 + parent: 30 + - type: Label + currentLabel: Security - Perma Processing + - type: NameModifier + baseName: holopad +- proto: HolopadAiChute + entities: + - uid: 22945 + components: + - type: Transform + pos: -19.5,42.5 + parent: 30 +- proto: HolopadAiCore + entities: + - uid: 22948 + components: + - type: Transform + pos: -0.5,78.5 + parent: 30 +- proto: HolopadAiEntrance + entities: + - uid: 22946 + components: + - type: Transform + pos: -0.5,64.5 + parent: 30 +- proto: HolopadAiUpload + entities: + - uid: 22947 + components: + - type: Transform + pos: -0.5,75.5 + parent: 30 +- proto: HolopadCargoBay + entities: + - uid: 22910 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 30 +- proto: HolopadCargoBayLongRange + entities: + - uid: 22911 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 30 +- proto: HolopadCargoFront + entities: + - uid: 22912 + components: + - type: Transform + pos: 17.5,1.5 + parent: 30 +- proto: HolopadCargoSalvageBay + entities: + - uid: 22913 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 30 +- proto: HolopadCommandBridge + entities: + - uid: 22951 + components: + - type: Transform + pos: -10.5,42.5 + parent: 30 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 22950 + components: + - type: Transform + pos: -8.5,42.5 + parent: 30 +- proto: HolopadCommandCaptain + entities: + - uid: 22930 + components: + - type: Transform + pos: -19.5,32.5 + parent: 30 + - uid: 22933 + components: + - type: MetaData + name: holopad (Command - Captain Meeting) + - type: Transform + pos: -20.5,36.5 + parent: 30 + - type: Label + currentLabel: Command - Captain Meeting + - type: NameModifier + baseName: holopad +- proto: HolopadCommandCe + entities: + - uid: 22974 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 30 +- proto: HolopadCommandCmo + entities: + - uid: 22973 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 30 +- proto: HolopadCommandHop + entities: + - uid: 22932 + components: + - type: Transform + pos: 2.5,33.5 + parent: 30 +- proto: HolopadCommandHos + entities: + - uid: 22934 + components: + - type: Transform + pos: -25.5,50.5 + parent: 30 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 22931 + components: + - type: Transform + pos: -9.5,34.5 + parent: 30 +- proto: HolopadCommandQm + entities: + - uid: 22975 + components: + - type: Transform + pos: 26.5,1.5 + parent: 30 +- proto: HolopadCommandRd + entities: + - uid: 22972 + components: + - type: Transform + pos: 26.5,14.5 + parent: 30 +- proto: HolopadCommandVault + entities: + - uid: 22949 + components: + - type: Transform + pos: 5.5,42.5 + parent: 30 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 22905 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 30 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 22906 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 30 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 22904 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 30 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 22903 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 30 +- proto: HolopadEngineeringFront + entities: + - uid: 22909 + components: + - type: MetaData + name: holopad (Engineering - Main) + - type: Transform + pos: -4.5,-40.5 + parent: 30 + - type: Label + currentLabel: Engineering - Main + - type: NameModifier + baseName: holopad +- proto: HolopadEngineeringStorage + entities: + - uid: 22908 + components: + - type: MetaData + name: holopad (Engineering - Gearroom) + - type: Transform + pos: -23.5,-48.5 + parent: 30 + - type: Label + currentLabel: Engineering - Gearroom + - type: NameModifier + baseName: holopad +- proto: HolopadEngineeringTechVault + entities: + - uid: 22952 + components: + - type: Transform + pos: 4.5,22.5 + parent: 30 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 22907 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 30 +- proto: HolopadGeneralArrivals + entities: + - uid: 22965 + components: + - type: Transform + pos: -49.5,8.5 + parent: 30 +- proto: HolopadGeneralCryosleep + entities: + - uid: 22966 + components: + - type: Transform + pos: 30.5,41.5 + parent: 30 +- proto: HolopadGeneralDisposals + entities: + - uid: 22969 + components: + - type: Transform + pos: 51.5,22.5 + parent: 30 +- proto: HolopadGeneralEvac + entities: + - uid: 22963 + components: + - type: Transform + pos: -57.5,18.5 + parent: 30 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 22929 + components: + - type: Transform + pos: -1.5,20.5 + parent: 30 +- proto: HolopadGeneralLounge + entities: + - uid: 22968 + components: + - type: Transform + pos: 22.5,38.5 + parent: 30 +- proto: HolopadGeneralTools + entities: + - uid: 22964 + components: + - type: Transform + pos: -28.5,31.5 + parent: 30 +- proto: HolopadMedicalBreakroom + entities: + - uid: 22916 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 30 +- proto: HolopadMedicalChemistry + entities: + - uid: 22914 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 30 +- proto: HolopadMedicalCryopods + entities: + - uid: 22915 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 30 +- proto: HolopadMedicalFront + entities: + - uid: 22920 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 30 +- proto: HolopadMedicalMedbay + entities: + - uid: 22921 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 30 +- proto: HolopadMedicalMorgue + entities: + - uid: 22919 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 30 +- proto: HolopadMedicalParamed + entities: + - uid: 22922 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 30 +- proto: HolopadMedicalSurgery + entities: + - uid: 22917 + components: + - type: MetaData + name: holopad (Medical - Surgery 1) + - type: Transform + pos: -25.5,-16.5 + parent: 30 + - type: Label + currentLabel: Medical - Surgery 1 + - type: NameModifier + baseName: holopad + - uid: 22918 + components: + - type: MetaData + name: holopad (Medical - Surgery 2) + - type: Transform + pos: -25.5,-22.5 + parent: 30 + - type: Label + currentLabel: Medical - Surgery 2 + - type: NameModifier + baseName: holopad +- proto: HolopadScienceAnomaly + entities: + - uid: 22957 + components: + - type: Transform + pos: 30.5,19.5 + parent: 30 +- proto: HolopadScienceArtifact + entities: + - uid: 22956 + components: + - type: Transform + pos: 36.5,8.5 + parent: 30 +- proto: HolopadScienceFront + entities: + - uid: 22954 + components: + - type: Transform + pos: 19.5,15.5 + parent: 30 +- proto: HolopadScienceRnd + entities: + - uid: 22955 + components: + - type: Transform + pos: 27.5,9.5 + parent: 30 +- proto: HolopadScienceRobotics + entities: + - uid: 11613 + components: + - type: Transform + pos: 20.5,21.5 + parent: 30 +- proto: HolopadSecurityArmory + entities: + - uid: 22935 + components: + - type: Transform + pos: -39.5,53.5 + parent: 30 + - uid: 22944 + components: + - type: MetaData + name: holopad (Security - Gearroom) + - type: Transform + pos: -34.5,58.5 + parent: 30 + - type: Label + currentLabel: Security - Gearroom + - type: NameModifier + baseName: holopad +- proto: HolopadSecurityBreakroom + entities: + - uid: 22943 + components: + - type: Transform + pos: -32.5,50.5 + parent: 30 +- proto: HolopadSecurityBrig + entities: + - uid: 22936 + components: + - type: Transform + pos: -42.5,43.5 + parent: 30 +- proto: HolopadSecurityCourtroom + entities: + - uid: 22967 + components: + - type: Transform + pos: 39.5,38.5 + parent: 30 +- proto: HolopadSecurityDetective + entities: + - uid: 22942 + components: + - type: Transform + pos: -43.5,32.5 + parent: 30 +- proto: HolopadSecurityFront + entities: + - uid: 22939 + components: + - type: Transform + pos: -31.5,40.5 + parent: 30 +- proto: HolopadSecurityInterrogation + entities: + - uid: 22940 + components: + - type: Transform + pos: -27.5,42.5 + parent: 30 +- proto: HolopadSecurityLawyer + entities: + - uid: 22941 + components: + - type: Transform + pos: -51.5,31.5 + parent: 30 +- proto: HolopadSecurityPerma + entities: + - uid: 22938 + components: + - type: Transform + pos: -48.5,67.5 + parent: 30 +- proto: HolopadSecurityWarden + entities: + - uid: 22937 + components: + - type: Transform + pos: -40.5,47.5 + parent: 30 +- proto: HolopadServiceBar + entities: + - uid: 22924 + components: + - type: Transform + pos: -2.5,13.5 + parent: 30 +- proto: HolopadServiceBotany + entities: + - uid: 22923 + components: + - type: Transform + pos: -24.5,10.5 + parent: 30 +- proto: HolopadServiceChapel + entities: + - uid: 22959 + components: + - type: Transform + pos: -62.5,-41.5 + parent: 30 + - uid: 22962 + components: + - type: MetaData + name: holopad (Service - Chaplain) + - type: Transform + pos: -79.5,-45.5 + parent: 30 + - type: Label + currentLabel: Service - Chaplain + - type: NameModifier + baseName: holopad +- proto: HolopadServiceClownMime + entities: + - uid: 22925 + components: + - type: Transform + pos: 4.5,13.5 + parent: 30 +- proto: HolopadServiceJanitor + entities: + - uid: 22927 + components: + - type: Transform + pos: -32.5,8.5 + parent: 30 +- proto: HolopadServiceKitchen + entities: + - uid: 22926 + components: + - type: Transform + pos: -13.5,8.5 + parent: 30 +- proto: HolopadServiceLibrary + entities: + - uid: 22960 + components: + - type: Transform + pos: -62.5,-63.5 + parent: 30 + - uid: 22961 + components: + - type: MetaData + name: holopad (Service - Library Games) + - type: Transform + pos: -75.5,-62.5 + parent: 30 + - type: Label + currentLabel: Service - Library Games + - type: NameModifier + baseName: holopad +- proto: HolopadServiceMusician + entities: + - uid: 22928 + components: + - type: Transform + pos: -31.5,23.5 + parent: 30 - proto: HospitalCurtainsOpen entities: - uid: 7740 @@ -101633,9 +102438,24 @@ entities: - uid: 20092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.4652157,-35.085934 + pos: -7.4727917,-35.277233 parent: 30 + - type: HandheldLight + toggleActionEntity: 11287 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 11287 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 21649 components: - type: Transform @@ -105528,10 +106348,10 @@ entities: parent: 30 - proto: PosterLegitSecWatch entities: - - uid: 20637 + - uid: 22877 components: - type: Transform - pos: -6.5,-50.5 + pos: -14.5,-50.5 parent: 30 - proto: PosterLegitSpaceCops entities: @@ -105937,11 +106757,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 10653 - components: - - type: Transform - pos: -22.5,-44.5 - parent: 30 - uid: 11068 components: - type: Transform @@ -105957,11 +106772,6 @@ entities: - type: Transform pos: -10.5,-45.5 parent: 30 - - uid: 13971 - components: - - type: Transform - pos: -19.5,-44.5 - parent: 30 - uid: 16045 components: - type: Transform @@ -110110,7 +110920,7 @@ entities: - uid: 22613 components: - type: Transform - pos: -8.403212,-35.379116 + pos: -8.876982,-35.4152 parent: 30 - uid: 22614 components: @@ -110273,6 +111083,11 @@ entities: - Plastic - Wood - Gold + - uid: 13971 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 30 - proto: ProtolatheMachineCircuitboard entities: - uid: 21753 @@ -111600,7 +112415,7 @@ entities: - uid: 10545 components: - type: Transform - pos: -5.524026,-35.43381 + pos: -5.526952,-35.57482 parent: 30 - proto: RCDAmmo entities: @@ -112635,6 +113450,11 @@ entities: - type: Transform pos: -49.5,4.5 parent: 30 + - uid: 4406 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 30 - uid: 4410 components: - type: Transform @@ -113712,6 +114532,11 @@ entities: - type: Transform pos: -16.5,-45.5 parent: 30 + - uid: 9577 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 30 - uid: 9597 components: - type: Transform @@ -113934,6 +114759,11 @@ entities: - type: Transform pos: -11.5,-32.5 parent: 30 + - uid: 11288 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 30 - uid: 11308 components: - type: Transform @@ -115411,6 +116241,36 @@ entities: - type: Transform pos: 18.5,-38.5 parent: 30 + - uid: 22878 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 30 + - uid: 22886 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 30 + - uid: 22887 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 30 + - uid: 22976 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 30 + - uid: 22977 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 30 + - uid: 22978 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 30 - proto: ResearchAndDevelopmentServer entities: - uid: 12746 @@ -115640,12 +116500,12 @@ entities: - uid: 22519 components: - type: Transform - pos: -8.156355,-33.418995 + pos: -7.611288,-33.412464 parent: 30 - uid: 22521 components: - type: Transform - pos: -8.156355,-33.418995 + pos: -7.892538,-33.412464 parent: 30 - uid: 22523 components: @@ -115705,12 +116565,12 @@ entities: - uid: 20070 components: - type: Transform - pos: -8.558966,-33.398434 + pos: -8.533163,-33.381214 parent: 30 - uid: 20076 components: - type: Transform - pos: -8.558966,-33.398434 + pos: -8.705038,-33.381214 parent: 30 - uid: 20717 components: @@ -115798,12 +116658,12 @@ entities: - uid: 5030 components: - type: Transform - pos: -8.855841,-33.41406 + pos: -9.345663,-33.412464 parent: 30 - uid: 5506 components: - type: Transform - pos: -8.855841,-33.41406 + pos: -9.486288,-33.349964 parent: 30 - uid: 5615 components: @@ -118405,6 +119265,38 @@ entities: - type: Transform pos: -10.5,-9.5 parent: 30 +- proto: SMESAdvanced + entities: + - uid: 18993 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 30 + - uid: 19186 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 30 + - uid: 19424 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 30 + - uid: 22879 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 30 + - uid: 22880 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 30 + - uid: 22881 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 30 - proto: SMESBasic entities: - uid: 3115 @@ -118429,26 +119321,11 @@ entities: - type: Transform pos: -19.5,-46.5 parent: 30 - - uid: 9581 - components: - - type: Transform - pos: -6.5,-43.5 - parent: 30 - - uid: 9583 - components: - - type: Transform - pos: -5.5,-43.5 - parent: 30 - uid: 11176 components: - type: Transform pos: -7.5,-47.5 parent: 30 - - uid: 11278 - components: - - type: Transform - pos: -7.5,-43.5 - parent: 30 - uid: 15299 components: - type: MetaData @@ -127329,18 +128206,16 @@ entities: - type: Transform pos: 25.5,-9.5 parent: 30 - - uid: 10400 - components: - - type: MetaData - name: tank dispenser - - type: Transform - pos: 7.5,-27.5 - parent: 30 - uid: 13970 components: - type: Transform pos: -15.5,-44.5 parent: 30 + - uid: 22898 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 30 - proto: VendingMachineTheater entities: - uid: 654 @@ -139883,26 +140758,11 @@ entities: - type: Transform pos: -42.5,-0.5 parent: 30 - - uid: 9482 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 30 - - uid: 9483 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 30 - uid: 9485 components: - type: Transform pos: -9.5,-46.5 parent: 30 - - uid: 9486 - components: - - type: Transform - pos: -6.5,-49.5 - parent: 30 - uid: 9488 components: - type: Transform @@ -139923,11 +140783,6 @@ entities: - type: Transform pos: -3.5,-42.5 parent: 30 - - uid: 9524 - components: - - type: Transform - pos: -6.5,-46.5 - parent: 30 - uid: 9525 components: - type: Transform @@ -139938,11 +140793,6 @@ entities: - type: Transform pos: -19.5,-45.5 parent: 30 - - uid: 9527 - components: - - type: Transform - pos: -6.5,-50.5 - parent: 30 - uid: 9529 components: - type: Transform @@ -140108,16 +140958,6 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 30 - - uid: 9959 - components: - - type: Transform - pos: -7.5,-46.5 - parent: 30 - - uid: 9961 - components: - - type: Transform - pos: -8.5,-46.5 - parent: 30 - uid: 9962 components: - type: Transform @@ -140133,11 +140973,6 @@ entities: - type: Transform pos: 14.5,-22.5 parent: 30 - - uid: 10135 - components: - - type: Transform - pos: -6.5,-48.5 - parent: 30 - uid: 10228 components: - type: Transform @@ -140158,11 +140993,6 @@ entities: - type: Transform pos: -3.5,-45.5 parent: 30 - - uid: 10548 - components: - - type: Transform - pos: -4.5,-46.5 - parent: 30 - uid: 10549 components: - type: Transform @@ -140193,11 +141023,6 @@ entities: - type: Transform pos: 1.5,-42.5 parent: 30 - - uid: 11060 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 30 - uid: 11071 components: - type: Transform @@ -141927,6 +142752,11 @@ entities: - type: Transform pos: -29.5,-42.5 parent: 30 + - uid: 20660 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 30 - uid: 20818 components: - type: Transform From 18de5ea9862bbce30b2aca073646fb756600bf8e Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Wed, 18 Dec 2024 22:45:12 +0100 Subject: [PATCH 150/263] Localized holopads for Bagel (#33934) * Stuff * Requested changes --- Resources/Maps/bagel.yml | 1056 ++++++++++++++++---------------------- 1 file changed, 433 insertions(+), 623 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index f7d4c9ba26..cced413d66 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -313,7 +313,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: TwAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACbAAAAAAATwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXQAAAAACXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: TwAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACbAAAAAAATwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -3,2: ind: -3,2 @@ -5760,10 +5760,10 @@ entities: id: WarnCornerSmallSE decals: 1050: -2,-78 - 1361: -2,36 3340: -19,42 3762: -29,-1 3894: -15,4 + 4923: -2,36 - node: zIndex: 5 color: '#FFFFFFFF' @@ -6199,6 +6199,8 @@ entities: 4098: 15,-22 4212: -18,33 4887: 2,23 + 4921: -3,35 + 4922: -3,36 - node: color: '#DE3A3A96' id: WarnLineW @@ -8105,7 +8107,7 @@ entities: -2,8: 0: 46079 -1,5: - 0: 62463 + 0: 64511 -1,6: 0: 64511 -1,7: @@ -8115,7 +8117,7 @@ entities: 0,4: 0: 65520 0,5: - 0: 28927 + 0: 29695 0,6: 0: 29567 0,7: @@ -8383,7 +8385,7 @@ entities: 1: 39312 -12,8: 4: 12 - 5: 3072 + 6: 3072 -11,5: 0: 63351 -11,6: @@ -8392,7 +8394,7 @@ entities: -11,8: 4: 1 1: 17476 - 5: 256 + 6: 256 -11,7: 1: 17484 -10,5: @@ -8490,10 +8492,10 @@ entities: 0: 255 1: 57344 -8,11: - 6: 816 + 5: 816 1: 34952 -9,11: - 6: 2176 + 5: 2176 1: 8738 -8,12: 1: 34959 @@ -8513,7 +8515,7 @@ entities: -6,11: 0: 4095 -6,12: - 6: 61166 + 5: 61166 -5,9: 0: 65528 -5,10: @@ -8521,7 +8523,7 @@ entities: -5,11: 0: 36863 -5,12: - 6: 30515 + 5: 30515 0: 12 -4,9: 0: 65528 @@ -8531,7 +8533,7 @@ entities: 0: 4095 -4,12: 0: 1 - 6: 65518 + 5: 65518 -4,13: 1: 61680 -5,13: @@ -8545,7 +8547,7 @@ entities: -5,15: 1: 17487 -3,12: - 6: 13107 + 5: 13107 1: 34944 -3,13: 1: 47792 @@ -8611,7 +8613,7 @@ entities: 1: 61713 -12,9: 0: 16 - 6: 3084 + 5: 3084 -13,9: 1: 39305 -13,10: @@ -8621,18 +8623,18 @@ entities: 0: 12544 -12,10: 3: 12 - 6: 3072 + 5: 3072 -12,11: - 6: 12 + 5: 12 -11,9: - 6: 257 + 5: 257 1: 17476 -11,10: 3: 1 - 6: 256 + 5: 256 1: 17476 -11,11: - 6: 1 + 5: 1 1: 17476 -11,12: 1: 17487 @@ -8686,7 +8688,7 @@ entities: 1: 15 -13,12: 1: 34952 - 5: 48 + 6: 48 4: 12288 -12,13: 1: 61455 @@ -8720,11 +8722,11 @@ entities: 1: 62671 -7,14: 1: 244 - 6: 57344 + 5: 57344 0: 1024 -7,15: 1: 61440 - 6: 238 + 5: 238 0: 1024 -7,16: 1: 65524 @@ -8783,7 +8785,7 @@ entities: -14,12: 0: 1 1: 8738 - 5: 128 + 6: 128 4: 32768 -17,12: 0: 52232 @@ -9392,7 +9394,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 + - 0 - 0 - 0 - 0 @@ -9407,7 +9409,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 + - 6666.982 - 0 - 0 - 0 @@ -16332,11 +16334,21 @@ entities: - type: Transform pos: -23.5,35.5 parent: 60 + - uid: 2408 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 60 - uid: 2506 components: - type: Transform pos: -23.5,36.5 parent: 60 + - uid: 2608 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 60 - uid: 7728 components: - type: Transform @@ -63929,6 +63941,11 @@ entities: - type: Physics canCollide: False bodyType: Static + - uid: 24779 + components: + - type: Transform + pos: -19.317991,-17.371677 + parent: 60 - proto: DiceBag entities: - uid: 14192 @@ -109654,604 +109671,419 @@ entities: - type: Transform pos: -6.3791656,-37.542637 parent: 60 -- proto: Holopad +- proto: HolopadAiChute + entities: + - uid: 24777 + components: + - type: Transform + pos: -71.5,17.5 + parent: 60 +- proto: HolopadAiCore entities: - uid: 14728 components: - - type: MetaData - name: holopad (AI Core) - type: Transform pos: -111.5,23.5 parent: 60 - - type: Label - currentLabel: AI Core - - type: NameModifier - baseName: holopad - - uid: 24030 +- proto: HolopadAiEntrance + entities: + - uid: 24776 components: - - type: MetaData - name: holopad (Robotics) - type: Transform - pos: -32.5,13.5 + pos: -99.5,17.5 parent: 60 - - type: Label - currentLabel: Robotics - - type: NameModifier - baseName: holopad - - uid: 24031 - components: - - type: MetaData - name: holopad (Artifact) - - type: Transform - pos: -50.5,12.5 - parent: 60 - - type: Label - currentLabel: Artifact - - type: NameModifier - baseName: holopad - - uid: 24032 - components: - - type: MetaData - name: holopad (RD) - - type: Transform - pos: -43.5,8.5 - parent: 60 - - type: Label - currentLabel: RD - - type: NameModifier - baseName: holopad - - uid: 24033 - components: - - type: MetaData - name: holopad (Science Front) - - type: Transform - pos: -43.5,-6.5 - parent: 60 - - type: Label - currentLabel: Science Front - - type: NameModifier - baseName: holopad - - uid: 24034 - components: - - type: MetaData - name: holopad (Anomaly) - - type: Transform - pos: -53.5,-2.5 - parent: 60 - - type: Label - currentLabel: Anomaly - - type: NameModifier - baseName: holopad - - uid: 24035 - components: - - type: MetaData - name: holopad (HOS) - - type: Transform - pos: -20.5,1.5 - parent: 60 - - type: Label - currentLabel: HOS - - type: NameModifier - baseName: holopad - - uid: 24036 - components: - - type: MetaData - name: holopad (Warden) - - type: Transform - pos: -26.5,-9.5 - parent: 60 - - type: Label - currentLabel: Warden - - type: NameModifier - baseName: holopad - - uid: 24037 - components: - - type: MetaData - name: holopad (Perma) - - type: Transform - pos: -10.5,-14.5 - parent: 60 - - type: Label - currentLabel: Perma - - type: NameModifier - baseName: holopad - - uid: 24038 - components: - - type: MetaData - name: holopad (Security Front) - - type: Transform - pos: -19.5,-15.5 - parent: 60 - - type: Label - currentLabel: Security Front - - type: NameModifier - baseName: holopad - - uid: 24039 - components: - - type: MetaData - name: holopad (Brig) - - type: Transform - pos: -26.5,-14.5 - parent: 60 - - type: Label - currentLabel: Brig - - type: NameModifier - baseName: holopad - - uid: 24040 - components: - - type: MetaData - name: holopad (Interrogation) - - type: Transform - pos: -32.5,-3.5 - parent: 60 - - type: Label - currentLabel: Interrogation - - type: NameModifier - baseName: holopad +- proto: HolopadAiMain + entities: - uid: 24043 components: - - type: MetaData - name: holopad (Detective) - - type: Transform - pos: -26.5,-28.5 - parent: 60 - - type: Label - currentLabel: Detective - - type: NameModifier - baseName: holopad - - uid: 24044 - components: - - type: MetaData - name: holopad (Courtroom) - - type: Transform - pos: -43.5,-17.5 - parent: 60 - - type: Label - currentLabel: Courtroom - - type: NameModifier - baseName: holopad - - uid: 24045 - components: - - type: MetaData - name: holopad (AI Sat) - type: Transform pos: -111.5,17.5 parent: 60 - - type: Label - currentLabel: AI Sat - - type: NameModifier - baseName: holopad - - uid: 24046 +- proto: HolopadAiUpload + entities: + - uid: 24044 components: - - type: MetaData - name: holopad (AI Law Upload) - type: Transform pos: -111.5,11.5 parent: 60 - - type: Label - currentLabel: AI Law Upload - - type: NameModifier - baseName: holopad - - uid: 24047 - components: - - type: MetaData - name: holopad (Chapel) - - type: Transform - pos: -25.5,16.5 - parent: 60 - - type: Label - currentLabel: Chapel - - type: NameModifier - baseName: holopad - - uid: 24048 - components: - - type: MetaData - name: holopad (Atmos Front) - - type: Transform - pos: -16.5,28.5 - parent: 60 - - type: Label - currentLabel: Atmos Front - - type: NameModifier - baseName: holopad - - uid: 24049 - components: - - type: MetaData - name: holopad (Atmos) - - type: Transform - pos: -36.5,36.5 - parent: 60 - - type: Label - currentLabel: Atmos - - type: NameModifier - baseName: holopad - - uid: 24050 - components: - - type: MetaData - name: holopad (TEG) - - type: Transform - pos: -16.5,43.5 - parent: 60 - - type: Label - currentLabel: TEG - - type: NameModifier - baseName: holopad - - uid: 24051 - components: - - type: MetaData - name: holopad (Library) - - type: Transform - pos: -8.5,18.5 - parent: 60 - - type: Label - currentLabel: Library - - type: NameModifier - baseName: holopad - - uid: 24052 - components: - - type: MetaData - name: holopad (Engineering Breakroom) - - type: Transform - pos: 0.5,18.5 - parent: 60 - - type: Label - currentLabel: Engineering Breakroom - - type: NameModifier - baseName: holopad - - uid: 24053 - components: - - type: MetaData - name: holopad (Engineering Front) - - type: Transform - pos: 6.5,14.5 - parent: 60 - - type: Label - currentLabel: Engineering Front - - type: NameModifier - baseName: holopad - - uid: 24054 - components: - - type: MetaData - name: holopad (Tools) - - type: Transform - pos: 11.5,13.5 - parent: 60 - - type: Label - currentLabel: Tools - - type: NameModifier - baseName: holopad - - uid: 24055 - components: - - type: MetaData - name: holopad (CE) - - type: Transform - pos: 12.5,19.5 - parent: 60 - - type: Label - currentLabel: CE - - type: NameModifier - baseName: holopad - - uid: 24056 - components: - - type: MetaData - name: holopad (Engineering Storage) - - type: Transform - pos: -5.5,28.5 - parent: 60 - - type: Label - currentLabel: Engineering Storage - - type: NameModifier - baseName: holopad - - uid: 24059 - components: - - type: MetaData - name: holopad (Bridge) - - type: Transform - pos: 1.5,1.5 - parent: 60 - - type: Label - currentLabel: Bridge - - type: NameModifier - baseName: holopad - - uid: 24061 - components: - - type: MetaData - name: holopad (Captain) - - type: Transform - pos: -3.5,-4.5 - parent: 60 - - type: Label - currentLabel: Captain - - type: NameModifier - baseName: holopad - - uid: 24062 - components: - - type: MetaData - name: holopad (Bridge Hallway) - - type: Transform - pos: 0.5,-5.5 - parent: 60 - - type: Label - currentLabel: Bridge Hallway - - type: NameModifier - baseName: holopad - - uid: 24063 - components: - - type: MetaData - name: holopad (Cryosleep) - - type: Transform - pos: 12.5,-12.5 - parent: 60 - - type: Label - currentLabel: Cryosleep - - type: NameModifier - baseName: holopad - - uid: 24064 - components: - - type: MetaData - name: holopad (Telecoms) - - type: Transform - pos: 23.5,1.5 - parent: 60 - - type: Label - currentLabel: Telecoms - - type: NameModifier - baseName: holopad - - uid: 24065 - components: - - type: MetaData - name: holopad (News) - - type: Transform - pos: 34.5,17.5 - parent: 60 - - type: Label - currentLabel: News - - type: NameModifier - baseName: holopad - - uid: 24066 - components: - - type: MetaData - name: holopad (QM) - - type: Transform - pos: 44.5,15.5 - parent: 60 - - type: Label - currentLabel: QM - - type: NameModifier - baseName: holopad - - uid: 24067 - components: - - type: MetaData - name: holopad (Cargo Front) - - type: Transform - pos: 44.5,7.5 - parent: 60 - - type: Label - currentLabel: Cargo Front - - type: NameModifier - baseName: holopad - - uid: 24069 - components: - - type: MetaData - name: holopad (Morgue) - - type: Transform - pos: 38.5,-9.5 - parent: 60 - - type: Label - currentLabel: Morgue - - type: NameModifier - baseName: holopad - - uid: 24070 - components: - - type: MetaData - name: holopad (Paramedic) - - type: Transform - pos: 48.5,-17.5 - parent: 60 - - type: Label - currentLabel: Paramedic - - type: NameModifier - baseName: holopad - - uid: 24071 - components: - - type: MetaData - name: holopad (CMO) - - type: Transform - pos: 30.5,-13.5 - parent: 60 - - type: Label - currentLabel: CMO - - type: NameModifier - baseName: holopad - - uid: 24072 - components: - - type: MetaData - name: holopad (Cryopods) - - type: Transform - pos: 49.5,-21.5 - parent: 60 - - type: Label - currentLabel: Cryopods - - type: NameModifier - baseName: holopad - - uid: 24073 - components: - - type: MetaData - name: holopad (Medbay) - - type: Transform - pos: 34.5,-18.5 - parent: 60 - - type: Label - currentLabel: Medbay - - type: NameModifier - baseName: holopad - - uid: 24074 - components: - - type: MetaData - name: holopad (Medbay Hallway) - - type: Transform - pos: 38.5,-23.5 - parent: 60 - - type: Label - currentLabel: Medbay Hallway - - type: NameModifier - baseName: holopad - - uid: 24075 - components: - - type: MetaData - name: holopad (Chemistry) - - type: Transform - pos: 39.5,-29.5 - parent: 60 - - type: Label - currentLabel: Chemistry - - type: NameModifier - baseName: holopad - - uid: 24076 - components: - - type: MetaData - name: holopad (Botany) - - type: Transform - pos: 31.5,-28.5 - parent: 60 - - type: Label - currentLabel: Botany - - type: NameModifier - baseName: holopad - - uid: 24077 - components: - - type: MetaData - name: holopad (Virology) - - type: Transform - pos: 51.5,-27.5 - parent: 60 - - type: Label - currentLabel: Virology - - type: NameModifier - baseName: holopad - - uid: 24095 - components: - - type: MetaData - name: holopad (Kitchen) - - type: Transform - pos: 25.5,-37.5 - parent: 60 - - type: Label - currentLabel: Kitchen - - type: NameModifier - baseName: holopad - - uid: 24096 - components: - - type: MetaData - name: holopad (Bar) - - type: Transform - pos: 10.5,-35.5 - parent: 60 - - type: Label - currentLabel: Bar - - type: NameModifier - baseName: holopad - - uid: 24099 - components: - - type: MetaData - name: holopad (HOP) - - type: Transform - pos: 5.5,-29.5 - parent: 60 - - type: Label - currentLabel: HOP - - type: NameModifier - baseName: holopad - - uid: 24100 - components: - - type: MetaData - name: holopad (EVA Storage) - - type: Transform - pos: 5.5,-37.5 - parent: 60 - - type: Label - currentLabel: EVA Storage - - type: NameModifier - baseName: holopad - - uid: 24147 - components: - - type: MetaData - name: holopad (Disposals) - - type: Transform - pos: -11.5,-41.5 - parent: 60 - - type: Label - currentLabel: Disposals - - type: NameModifier - baseName: holopad - - uid: 24166 - components: - - type: MetaData - name: holopad (Janitor) - - type: Transform - pos: -5.5,-27.5 - parent: 60 - - type: Label - currentLabel: Janitor - - type: NameModifier - baseName: holopad +- proto: HolopadCargoBayLongRange + entities: - uid: 24183 components: - - type: MetaData - name: holopad (Theater) - - type: Transform - pos: 22.5,-18.5 - parent: 60 - - type: Label - currentLabel: Theater - - type: NameModifier - baseName: holopad - - uid: 24291 - components: - - type: MetaData - name: holopad (Clown/Mime) - - type: Transform - pos: 23.5,-12.5 - parent: 60 - - type: Label - currentLabel: Clown/Mime - - type: NameModifier - baseName: holopad - - uid: 24298 - components: - - type: MetaData - name: holopad (Surgery) - - type: Transform - pos: 39.5,-13.5 - parent: 60 - - type: Label - currentLabel: Surgery - - type: NameModifier - baseName: holopad -- proto: HolopadLongRange - entities: - - uid: 24060 - components: - - type: MetaData - name: long-range holopad (Bagel Station Bridge) - - type: Transform - pos: -0.5,1.5 - parent: 60 - - type: Label - currentLabel: Bagel Station Bridge - - type: NameModifier - baseName: long-range holopad - - uid: 24068 - components: - - type: MetaData - name: long-range holopad (Bagel Station Cargo Bay) - type: Transform pos: 55.5,13.5 parent: 60 - - type: Label - currentLabel: Bagel Station Cargo Bay - - type: NameModifier - baseName: long-range holopad +- proto: HolopadCargoFront + entities: + - uid: 24064 + components: + - type: Transform + pos: 44.5,7.5 + parent: 60 +- proto: HolopadCommandBridge + entities: + - uid: 24059 + components: + - type: Transform + pos: -0.5,1.5 + parent: 60 +- proto: HolopadCommandBridgeHallway + entities: + - uid: 24055 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 60 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 24056 + components: + - type: Transform + pos: 1.5,1.5 + parent: 60 +- proto: HolopadCommandCaptain + entities: + - uid: 24166 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 60 +- proto: HolopadCommandCe + entities: + - uid: 24053 + components: + - type: Transform + pos: 12.5,19.5 + parent: 60 +- proto: HolopadCommandCmo + entities: + - uid: 24067 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 60 +- proto: HolopadCommandHop + entities: + - uid: 24076 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 60 +- proto: HolopadCommandHos + entities: + - uid: 24033 + components: + - type: Transform + pos: -20.5,1.5 + parent: 60 +- proto: HolopadCommandQm + entities: + - uid: 24063 + components: + - type: Transform + pos: 44.5,15.5 + parent: 60 +- proto: HolopadCommandRd + entities: + - uid: 24686 + components: + - type: Transform + pos: -43.5,8.5 + parent: 60 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 24046 + components: + - type: Transform + pos: -16.5,28.5 + parent: 60 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 24047 + components: + - type: Transform + pos: -36.5,36.5 + parent: 60 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 24048 + components: + - type: Transform + pos: -16.5,43.5 + parent: 60 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 24050 + components: + - type: Transform + pos: 0.5,18.5 + parent: 60 +- proto: HolopadEngineeringFront + entities: + - uid: 24051 + components: + - type: Transform + pos: 6.5,14.5 + parent: 60 +- proto: HolopadEngineeringStorage + entities: + - uid: 24054 + components: + - type: Transform + pos: -5.5,28.5 + parent: 60 +- proto: HolopadEngineeringTechVault + entities: + - uid: 24298 + components: + - type: Transform + pos: 23.5,20.5 + parent: 60 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 24061 + components: + - type: Transform + pos: 23.5,1.5 + parent: 60 +- proto: HolopadGeneralCryosleep + entities: + - uid: 24060 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 60 +- proto: HolopadGeneralDisposals + entities: + - uid: 24095 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 60 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 24077 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 60 +- proto: HolopadGeneralLounge + entities: + - uid: 24778 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 60 +- proto: HolopadGeneralTheater + entities: + - uid: 24099 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 60 +- proto: HolopadGeneralTools + entities: + - uid: 24052 + components: + - type: Transform + pos: 11.5,13.5 + parent: 60 +- proto: HolopadMedicalChemistry + entities: + - uid: 24071 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 60 +- proto: HolopadMedicalCryopods + entities: + - uid: 24068 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 60 +- proto: HolopadMedicalFront + entities: + - uid: 24070 + components: + - type: Transform + pos: 38.5,-23.5 + parent: 60 +- proto: HolopadMedicalMedbay + entities: + - uid: 24069 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 60 +- proto: HolopadMedicalMorgue + entities: + - uid: 24065 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 60 +- proto: HolopadMedicalParamed + entities: + - uid: 24066 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 60 +- proto: HolopadMedicalSurgery + entities: + - uid: 24147 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 60 +- proto: HolopadMedicalVirology + entities: + - uid: 24073 + components: + - type: Transform + pos: 51.5,-27.5 + parent: 60 +- proto: HolopadScienceAnomaly + entities: + - uid: 24032 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 60 +- proto: HolopadScienceArtifact + entities: + - uid: 24031 + components: + - type: Transform + pos: -50.5,12.5 + parent: 60 +- proto: HolopadScienceFront + entities: + - uid: 23160 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 60 +- proto: HolopadScienceRobotics + entities: + - uid: 24030 + components: + - type: Transform + pos: -32.5,13.5 + parent: 60 +- proto: HolopadSecurityBrig + entities: + - uid: 24037 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 60 +- proto: HolopadSecurityCourtroom + entities: + - uid: 24040 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 60 +- proto: HolopadSecurityDetective + entities: + - uid: 24039 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 60 +- proto: HolopadSecurityFront + entities: + - uid: 24036 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 60 +- proto: HolopadSecurityInterrogation + entities: + - uid: 24038 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 60 +- proto: HolopadSecurityLawyer + entities: + - uid: 24291 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 60 +- proto: HolopadSecurityPerma + entities: + - uid: 24035 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 60 +- proto: HolopadSecurityWarden + entities: + - uid: 24034 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 60 +- proto: HolopadServiceBar + entities: + - uid: 24075 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 60 +- proto: HolopadServiceBotany + entities: + - uid: 24072 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 60 +- proto: HolopadServiceChapel + entities: + - uid: 24045 + components: + - type: Transform + pos: -25.5,16.5 + parent: 60 +- proto: HolopadServiceClownMime + entities: + - uid: 24100 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 60 +- proto: HolopadServiceJanitor + entities: + - uid: 24096 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 60 +- proto: HolopadServiceKitchen + entities: + - uid: 24074 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 60 +- proto: HolopadServiceLibrary + entities: + - uid: 24049 + components: + - type: Transform + pos: -8.5,18.5 + parent: 60 +- proto: HolopadServiceNewsroom + entities: + - uid: 24062 + components: + - type: Transform + pos: 34.5,17.5 + parent: 60 - proto: HospitalCurtainsOpen entities: - uid: 4144 @@ -110508,18 +110340,6 @@ entities: - type: Transform pos: 6.57388,-7.3136106 parent: 60 -- proto: Intellicard - entities: - - uid: 23160 - components: - - type: Transform - pos: -106.55485,22.804966 - parent: 60 - - uid: 25392 - components: - - type: Transform - pos: -106.41422,22.633091 - parent: 60 - proto: IntercomAll entities: - uid: 2387 @@ -126446,16 +126266,6 @@ entities: - type: Transform pos: -2.5,-25.5 parent: 60 - - uid: 2408 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 60 - - uid: 2608 - components: - - type: Transform - pos: 29.5,-38.5 - parent: 60 - uid: 5626 components: - type: Transform @@ -127135,10 +126945,10 @@ entities: parent: 60 - type: DeviceLinkSource linkedPorts: - 2408: - - Pressed: Toggle 2608: - Pressed: Toggle + 2408: + - Pressed: Toggle - uid: 3803 components: - type: MetaData From 6f42ebf2068a822da0f64a70a7840ccf8b05069a Mon Sep 17 00:00:00 2001 From: Spanky Date: Wed, 18 Dec 2024 17:42:01 -0500 Subject: [PATCH 151/263] Packed Update (Holopads & Engi Stuff) (#33940) Packed Holopad & Engi Update Added holopads, atmos network monitor and sensors, advanced SMES, and revamped TEG setup. --- Resources/Maps/packed.yml | 2193 +++++++++++++++++++++++++++---------- 1 file changed, 1615 insertions(+), 578 deletions(-) diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 9def0c32c1..60063f7c0e 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -18,6 +18,7 @@ tilemap: 58: FloorHydro 61: FloorLaundry 62: FloorLino + 4: FloorMetalDiamond 76: FloorRGlass 77: FloorReinforced 79: FloorRockVault @@ -83,7 +84,7 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: awAAAAAAWwAAAAADWwAAAAABewAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAABZAAAAAADZAAAAAAAZAAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAADewAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAABZAAAAAABZAAAAAACewAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAACagAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAWwAAAAADagAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAABagAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAABWwAAAAAAWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACHQAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADHQAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAABHQAAAAABHQAAAAABWwAAAAACWwAAAAADWwAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADHQAAAAADewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAD + tiles: awAAAAAAWwAAAAADWwAAAAABewAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAABZAAAAAADewAAAAAAewAAAAAAewAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAADewAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAABZAAAAAABZAAAAAACewAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAABWwAAAAAAWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACHQAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADHQAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAABHQAAAAABHQAAAAABWwAAAAACWwAAAAADWwAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADHQAAAAADewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAD version: 6 0,-3: ind: 0,-3 @@ -95,11 +96,11 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAA + tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: ewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAABewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAADewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAewAAAAAAHQAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA + tiles: ewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAABewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAADewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAewAAAAAAHQAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA version: 6 1,1: ind: 1,1 @@ -111,19 +112,19 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: WwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABewAAAAAAeAAAAAABeAAAAAADewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAACeAAAAAACeAAAAAAAeAAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAACewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAABDgAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAACDgAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAWwAAAAACOgAAAAAAWwAAAAADWwAAAAACWwAAAAADOgAAAAAAWwAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAWwAAAAABOgAAAAAAHQAAAAADHQAAAAAAHQAAAAACOgAAAAAAWwAAAAADDgAAAAACDgAAAAADDgAAAAACDgAAAAADDgAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAACDgAAAAACewAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAAB + tiles: WwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABewAAAAAAeAAAAAABeAAAAAADewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAACeAAAAAACeAAAAAAAeAAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAACewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAABDgAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAACDgAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAWwAAAAACOgAAAAAAWwAAAAADWwAAAAACWwAAAAADOgAAAAAAWwAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAWwAAAAABOgAAAAAAHQAAAAADHQAAAAAAHQAAAAACOgAAAAAAWwAAAAADDgAAAAACDgAAAAADDgAAAAACDgAAAAADDgAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAACDgAAAAACewAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAAB version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -187,7 +188,7 @@ entities: version: 6 3,1: ind: 3,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAACEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAACEQAAAAAAHQAAAAACEQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAABbgAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAAAbgAAAAAAbgAAAAACEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABewAAAAAAbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAAAbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAACEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAACEQAAAAAAHQAAAAACEQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAABbgAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAAAbgAAAAAAbgAAAAACEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABewAAAAAAbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAAAbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 3,3: ind: 3,3 @@ -199,7 +200,7 @@ entities: version: 6 4,1: ind: 4,1 - tiles: bgAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWwAAAAADWwAAAAADewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABagAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAbgAAAAACewAAAAAAWwAAAAABWwAAAAABewAAAAAAHQAAAAACewAAAAAAHQAAAAACHQAAAAADAQAAAAABAQAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAADewAAAAAAewAAAAAAYgAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAADHQAAAAADAQAAAAADAQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAbgAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAABegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAD + tiles: bgAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWwAAAAADWwAAAAADewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABagAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAbgAAAAACewAAAAAAWwAAAAABWwAAAAABewAAAAAAHQAAAAACewAAAAAAHQAAAAACHQAAAAADAQAAAAABAQAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAADewAAAAAAewAAAAAAYgAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAADHQAAAAADAQAAAAADAQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAbgAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAABegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAD version: 6 4,2: ind: 4,2 @@ -211,7 +212,7 @@ entities: version: 6 5,-1: ind: 5,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAAAbgAAAAACewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAAAbgAAAAACewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 @@ -227,7 +228,7 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: TQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-2: ind: 6,-2 @@ -251,11 +252,11 @@ entities: version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACIgAAAAACewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACIgAAAAACewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 @@ -686,7 +687,8 @@ entities: 6,-9: 0: 65359 7,-8: - 0: 63727 + 3: 1 + 0: 63726 7,-7: 0: 64750 7,-6: @@ -836,13 +838,13 @@ entities: 11,-4: 0: 63692 12,-8: - 3: 7 - 4: 1792 - 12,-7: 4: 7 5: 1792 + 12,-7: + 5: 7 + 6: 1792 12,-6: - 6: 7 + 7: 7 1: 256 0: 49152 12,-5: @@ -888,7 +890,7 @@ entities: 1: 4369 12,-9: 1: 15 - 4: 1792 + 5: 1792 4,7: 0: 61152 4,8: @@ -1920,6 +1922,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -2072,10 +2089,6 @@ entities: 2200: 66,13 2201: 67,13 2564: 46,-46 - 2565: 46,-49 - 2566: 47,-49 - 2567: 48,-49 - 2568: 49,-49 2574: 44,-43 2575: 43,-43 2576: 42,-43 @@ -2103,6 +2116,17 @@ entities: 3911: 17,-45 3912: 25,-45 3913: 26,-45 + 4040: 29,-41 + 4041: 31,-41 + 4042: 31,-44 + 4043: 29,-44 + 4053: 34,-46 + 4054: 34,-45 + 4055: 34,-44 + 4060: 38,-29 + 4061: 31,-28 + 4062: 21,-26 + 4063: 35,-48 - node: cleanable: True color: '#FFFFFFFF' @@ -2159,6 +2183,8 @@ entities: 3155: 28,-52 3156: 28,-53 3168: 16,-39 + 4045: 25,-41 + 4046: 26,-41 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -2242,6 +2268,7 @@ entities: 452: 28,-39 835: 46,-9 836: 47,-9 + 4044: 29,-39 - node: color: '#D381C996' id: BrickTileSteelLineW @@ -2931,6 +2958,11 @@ entities: 3926: -22,-2 3927: -22,-1 3928: -22,0 + 4039: 30,-40 + 4056: 47,-50 + 4057: 48,-50 + 4058: 35,-34 + 4059: 35,-30 - node: cleanable: True color: '#FFFFFFFF' @@ -3101,6 +3133,11 @@ entities: 3603: 4,39 3604: 5,40 3907: 29,-27 + 4082: 26,-26 + 4083: 25,-26 + 4084: 24,-24 + 4085: 27,-25 + 4091: 25,-28 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -3173,7 +3210,6 @@ entities: 3862: 75,-2 3863: 72,-1 3864: 72,-4 - 3892: 29,-29 3898: 4,38 3909: 30,-27 3931: 35,31 @@ -3182,6 +3218,8 @@ entities: 3948: 47,35 3949: 52,34 3952: 46,35 + 4076: 29,-27 + 4086: 24,-25 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3264,6 +3302,11 @@ entities: 3950: 47,34 3951: 52,35 3953: 46,36 + 4075: 29,-29 + 4080: 31,-27 + 4089: 25,-24 + 4092: 27,-28 + 4093: 26,-30 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3458,6 +3501,14 @@ entities: 3940: 31,30 3941: 30,29 3943: 29,29 + 4078: 30,-29 + 4079: 31,-29 + 4081: 31,-28 + 4087: 26,-25 + 4090: 27,-24 + 4094: 24,-29 + 4095: 28,-29 + 4096: 26,-27 - node: cleanable: True angle: 3.141592653589793 rad @@ -3545,6 +3596,8 @@ entities: 3895: 30,-29 3939: 30,28 3954: 46,34 + 4077: 29,-28 + 4088: 25,-25 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3898,6 +3951,12 @@ entities: 1906: 10,-2 1907: 11,-2 1908: 12,-2 + - node: + color: '#3EB38896' + id: HalfTileOverlayGreyscale180 + decals: + 4070: 30,-29 + 4071: 31,-29 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -4016,6 +4075,12 @@ entities: 914: 18,6 915: 18,7 916: 18,8 + - node: + color: '#3EB38896' + id: HalfTileOverlayGreyscale270 + decals: + 4073: 29,-28 + 4074: 29,-27 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -5486,6 +5551,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 909: 18,5 + - node: + color: '#3EB38896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 4072: 29,-29 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -5727,6 +5797,7 @@ entities: decals: 2562: 41,-45 2852: 53,36 + 4068: 33,-26 - node: color: '#FFFFFFFF' id: WarnFull @@ -5778,6 +5849,11 @@ entities: 3110: 80,34 3651: 6,38 3652: 6,37 + 4048: 49,-45 + 4049: 49,-46 + 4050: 49,-47 + 4051: 49,-48 + 4052: 49,-49 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5919,6 +5995,9 @@ entities: 3099: 84,32 3100: 86,32 3109: 79,33 + 4064: 30,-26 + 4065: 31,-26 + 4066: 32,-26 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5927,7 +6006,6 @@ entities: 2553: 41,-46 2554: 41,-47 2555: 41,-48 - 2569: 46,-49 2570: 46,-48 2571: 46,-47 2572: 46,-46 @@ -5943,6 +6021,8 @@ entities: 3222: 6,26 3223: 6,24 3224: 6,23 + 4047: 46,-49 + 4067: 33,-27 - node: color: '#FFFFFFFF' id: WarnLineW @@ -7581,6 +7661,15 @@ entities: - 12086 - 8236 - 8235 + - uid: 15297 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 15296 + - 15298 - proto: AirCanister entities: - uid: 2078 @@ -9897,6 +9986,19 @@ entities: - type: DeviceNetwork deviceLists: - 14670 + - uid: 15298 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15297 + - uid: 15299 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 - proto: AltarSpawner entities: - uid: 2526 @@ -10671,6 +10773,13 @@ entities: - type: Transform pos: 84.42593,28.765135 parent: 2 +- proto: Ashtray + entities: + - uid: 15304 + components: + - type: Transform + pos: 38.30913,-29.45608 + parent: 2 - proto: AsimovCircuitBoard entities: - uid: 14276 @@ -11484,6 +11593,16 @@ entities: - type: Transform pos: 48.5,-49.5 parent: 2 + - uid: 12988 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 - proto: BlastDoorOpen entities: - uid: 2834 @@ -11939,12 +12058,23 @@ entities: parent: 2 - proto: ButtonFrameCaution entities: + - uid: 1233 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 - uid: 2045 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,33.5 parent: 2 + - uid: 4150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-49.5 + parent: 2 - uid: 8428 components: - type: Transform @@ -11968,6 +12098,22 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-37.5 parent: 2 + - uid: 12987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-9.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: 61.5,26.5 + parent: 2 - uid: 14914 components: - type: Transform @@ -11980,6 +12126,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,44.5 parent: 2 + - uid: 15285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 2 - proto: ButtonFrameExit entities: - uid: 15128 @@ -20605,6 +20757,11 @@ entities: - type: Transform pos: -23.5,-14.5 parent: 2 + - uid: 12913 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 - uid: 12949 components: - type: Transform @@ -20665,11 +20822,6 @@ entities: - type: Transform pos: 49.5,-47.5 parent: 2 - - uid: 12961 - components: - - type: Transform - pos: 49.5,-48.5 - parent: 2 - uid: 12962 components: - type: Transform @@ -33431,6 +33583,26 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 36.5,-46.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: 39.5,-46.5 + parent: 2 - uid: 1298 components: - type: Transform @@ -35068,26 +35240,6 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 2 - - uid: 12388 - components: - - type: Transform - pos: 35.5,-16.5 - parent: 2 - - uid: 12389 - components: - - type: Transform - pos: 36.5,-16.5 - parent: 2 - - uid: 12390 - components: - - type: Transform - pos: 37.5,-16.5 - parent: 2 - - uid: 12393 - components: - - type: Transform - pos: 38.5,-16.5 - parent: 2 - uid: 12397 components: - type: Transform @@ -35143,6 +35295,16 @@ entities: - type: Transform pos: 22.5,7.5 parent: 2 + - uid: 12902 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 - uid: 13005 components: - type: Transform @@ -36125,6 +36287,119 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-14.5 parent: 2 + - uid: 15215 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 15216 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - uid: 15223 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - uid: 15225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-31.5 + parent: 2 + - uid: 15226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-31.5 + parent: 2 + - uid: 15227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-31.5 + parent: 2 + - uid: 15228 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 + - uid: 15239 + components: + - type: Transform + pos: 39.5,-42.5 + parent: 2 + - uid: 15240 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 2 + - uid: 15287 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 15288 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 15289 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 15290 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 + - uid: 15307 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + pos: 35.5,-34.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + pos: 35.5,-38.5 + parent: 2 - proto: Cautery entities: - uid: 7791 @@ -36589,6 +36864,12 @@ entities: rot: 3.141592653589793 rad pos: 78.5,3.5 parent: 2 + - uid: 15224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 2 - proto: ChairMeat entities: - uid: 13071 @@ -36784,12 +37065,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,25.5 parent: 2 - - uid: 13446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.454672,-24.238243 - parent: 2 - uid: 14154 components: - type: Transform @@ -37214,6 +37489,13 @@ entities: - type: Transform pos: 35.5,5.5 parent: 2 +- proto: Cigarette + entities: + - uid: 15305 + components: + - type: Transform + pos: 38.63205,-29.435232 + parent: 2 - proto: CigarGold entities: - uid: 7936 @@ -37512,11 +37794,6 @@ entities: - type: Transform pos: 20.5,-34.5 parent: 2 - - uid: 10907 - components: - - type: Transform - pos: 22.5,-34.5 - parent: 2 - uid: 12853 components: - type: Transform @@ -38648,11 +38925,11 @@ entities: - type: Transform pos: 28.5,48.5 parent: 2 - - uid: 13443 + - uid: 15221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-25.5 + rot: 1.5707963267948966 rad + pos: 29.5,-26.5 parent: 2 - proto: ComputerAnalysisConsole entities: @@ -38665,6 +38942,14 @@ entities: linkedPorts: 8666: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 15222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 2 - proto: computerBodyScanner entities: - uid: 31 @@ -40173,6 +40458,11 @@ entities: - type: Transform pos: 51.458427,1.5715649 parent: 2 + - uid: 15300 + components: + - type: Transform + pos: 23.487085,-24.419268 + parent: 2 - proto: DiseaseDiagnoser entities: - uid: 12156 @@ -43327,6 +43617,11 @@ entities: - type: Transform pos: 5.063261,40.729393 parent: 2 + - uid: 15303 + components: + - type: Transform + pos: 38.59038,-29.278873 + parent: 2 - proto: DrinkMugOne entities: - uid: 12405 @@ -43402,13 +43697,6 @@ entities: - type: Transform pos: 57.63163,-13.7188425 parent: 2 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 14279 - components: - - type: Transform - pos: 84.42593,28.556656 - parent: 2 - proto: ElectricGuitarInstrument entities: - uid: 14550 @@ -44023,6 +44311,13 @@ entities: parent: 2 - type: FaxMachine name: Conference Room + - uid: 12388 + components: + - type: Transform + pos: 90.5,32.5 + parent: 2 + - type: FaxMachine + name: AI Core - uid: 14996 components: - type: Transform @@ -46265,6 +46560,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 15199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,10.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: FloraTreeChristmas02 entities: - uid: 2566 @@ -46587,6 +46890,13 @@ entities: - type: Transform pos: 33.59406,-4.5126047 parent: 2 +- proto: GameMasterCircuitBoard + entities: + - uid: 14279 + components: + - type: Transform + pos: 84.42593,28.556656 + parent: 2 - proto: GasFilterFlipped entities: - uid: 3290 @@ -46697,7 +47007,7 @@ entities: pos: 42.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 1933 components: - type: Transform @@ -46765,24 +47075,18 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPassiveVent entities: - uid: 3951 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-48.5 + pos: 44.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 4102 components: - type: Transform @@ -46841,22 +47145,6 @@ entities: - type: Transform pos: 64.5,28.5 parent: 2 - - uid: 11587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14345 components: - type: Transform @@ -46871,6 +47159,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasPipeBend entities: - uid: 34 @@ -46919,6 +47215,14 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-34.5 parent: 2 + - uid: 885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 889 components: - type: Transform @@ -46941,7 +47245,7 @@ entities: pos: 33.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 1040 components: - type: Transform @@ -46949,7 +47253,7 @@ entities: pos: 33.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 1149 components: - type: Transform @@ -46961,27 +47265,10 @@ entities: - uid: 1235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1258 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 43.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 1306 components: - type: Transform @@ -47100,7 +47387,7 @@ entities: pos: 39.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 2290 components: - type: Transform @@ -47116,7 +47403,7 @@ entities: pos: 39.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 3066 components: - type: Transform @@ -47183,14 +47470,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4015 components: - type: Transform @@ -47215,14 +47494,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4050 components: - type: Transform @@ -47258,7 +47529,7 @@ entities: pos: 31.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 4130 components: - type: Transform @@ -47313,14 +47584,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 5010 components: - type: Transform @@ -47638,21 +47901,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 11579 components: - type: Transform - pos: 41.5,-47.5 + pos: 41.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 11587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11707 components: - type: Transform @@ -47747,13 +48010,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12301 - components: - - type: Transform - pos: 49.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 12858 components: - type: Transform @@ -47761,7 +48017,7 @@ entities: pos: 37.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 12869 components: - type: Transform @@ -47778,33 +48034,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 12875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-43.5 - parent: 2 - uid: 12881 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12883 components: - type: Transform pos: 49.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 12885 components: - type: Transform @@ -47812,7 +48056,14 @@ entities: pos: 49.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' + - uid: 12984 + components: + - type: Transform + pos: 43.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13431 components: - type: Transform @@ -48007,6 +48258,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15271 + components: + - type: Transform + pos: 42.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasPipeFourway entities: - uid: 62 @@ -48036,7 +48310,7 @@ entities: pos: 37.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 4021 components: - type: Transform @@ -48135,6 +48409,52 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' +- proto: GasPipeSensorDistribution + entities: + - uid: 4496 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeSensorMixedAir + entities: + - uid: 6514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-34.5 + parent: 2 +- proto: GasPipeSensorTEGCold + entities: + - uid: 4474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 4499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPipeSensorWaste + entities: + - uid: 4083 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeStraight entities: - uid: 26 @@ -48433,6 +48753,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 583 + components: + - type: Transform + pos: 44.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 591 components: - type: Transform @@ -48487,6 +48814,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 671 components: - type: Transform @@ -48497,10 +48832,11 @@ entities: - uid: 672 components: - type: Transform - pos: 31.5,-26.5 + rot: 1.5707963267948966 rad + pos: 29.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 678 components: - type: Transform @@ -48541,14 +48877,15 @@ entities: pos: 32.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 820 components: - type: Transform - pos: 31.5,-25.5 + rot: 1.5707963267948966 rad + pos: 28.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 825 components: - type: Transform @@ -48576,14 +48913,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-32.5 parent: 2 - - uid: 879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 887 components: - type: Transform @@ -48791,7 +49120,7 @@ entities: pos: 37.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 1038 components: - type: Transform @@ -48799,7 +49128,7 @@ entities: pos: 36.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 1043 components: - type: Transform @@ -48933,15 +49262,7 @@ entities: pos: 38.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 1223 components: - type: Transform @@ -48956,15 +49277,23 @@ entities: pos: 40.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1226 + color: '#947507FF' + - uid: 1234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-44.5 + rot: 3.141592653589793 rad + pos: 43.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 1237 components: - type: Transform @@ -48981,14 +49310,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1249 + - uid: 1258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-45.5 + rot: 1.5707963267948966 rad + pos: 41.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 1300 components: - type: Transform @@ -50253,14 +50582,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-29.5 parent: 2 - - uid: 1939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 1942 components: - type: Transform @@ -50432,7 +50753,7 @@ entities: pos: 41.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 2116 components: - type: Transform @@ -50446,7 +50767,7 @@ entities: pos: 40.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 2135 components: - type: Transform @@ -50462,7 +50783,7 @@ entities: pos: 38.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 2143 components: - type: Transform @@ -51367,14 +51688,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-28.5 parent: 2 - - uid: 4083 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4084 components: - type: Transform @@ -51521,11 +51834,11 @@ entities: - uid: 4159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-35.5 + rot: -1.5707963267948966 rad + pos: 39.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 4160 components: - type: Transform @@ -51989,7 +52302,7 @@ entities: pos: 35.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 4353 components: - type: Transform @@ -51997,7 +52310,7 @@ entities: pos: 34.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 4356 components: - type: Transform @@ -52146,7 +52459,7 @@ entities: pos: 44.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 4495 components: - type: Transform @@ -52154,7 +52467,13 @@ entities: pos: 45.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' + - uid: 4497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-35.5 + parent: 2 - uid: 4827 components: - type: Transform @@ -53253,6 +53572,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 7819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 7830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 7878 components: - type: Transform @@ -54078,9 +54413,10 @@ entities: - uid: 8638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-34.5 + pos: 44.5,-49.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 8654 components: - type: Transform @@ -56005,14 +56341,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 11699 components: - type: Transform @@ -56344,6 +56672,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12729 components: - type: Transform @@ -56388,18 +56724,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 12879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-44.5 - parent: 2 - uid: 12880 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12887 components: - type: Transform @@ -56407,23 +56739,7 @@ entities: pos: 46.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 13143 components: - type: Transform @@ -56460,12 +56776,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 - - uid: 13453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-34.5 - parent: 2 - uid: 13498 components: - type: Transform @@ -57365,6 +57675,117 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15232 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15233 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15234 + components: + - type: Transform + pos: 39.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15235 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15236 + components: + - type: Transform + pos: 39.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15237 + components: + - type: Transform + pos: 39.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15238 + components: + - type: Transform + pos: 39.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15272 + components: + - type: Transform + pos: 42.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15274 + components: + - type: Transform + pos: 42.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPipeTJunction entities: - uid: 14 @@ -57457,13 +57878,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1215 - components: - - type: Transform - pos: 43.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 1221 components: - type: Transform @@ -57472,28 +57886,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1225 - components: - - type: Transform - pos: 43.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1257 - components: - - type: Transform - pos: 41.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1259 components: - type: Transform @@ -57645,6 +58037,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2043 components: - type: Transform @@ -57730,6 +58130,14 @@ entities: - type: Transform pos: 34.5,-25.5 parent: 2 + - uid: 3953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 3964 components: - type: Transform @@ -57754,6 +58162,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 4029 components: - type: Transform @@ -57850,31 +58266,16 @@ entities: - uid: 4494 components: - type: Transform - pos: 47.5,-47.5 + rot: 1.5707963267948966 rad + pos: 27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4496 + color: '#0335FCFF' + - uid: 4498 components: - type: Transform - pos: 48.5,-47.5 + pos: 39.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4497 - components: - - type: Transform - pos: 45.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4499 - components: - - type: Transform - pos: 46.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4768 components: - type: Transform @@ -57930,14 +58331,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 5113 components: - type: Transform @@ -58608,6 +59001,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 10907 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11360 components: - type: Transform @@ -58638,14 +59038,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 11710 components: - type: Transform @@ -58713,32 +59105,38 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12877 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-43.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12878 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12886 components: - type: Transform pos: 47.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 12900 components: - type: Transform pos: 48.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 12901 components: - type: Transform @@ -58746,7 +59144,14 @@ entities: pos: 48.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' + - uid: 12985 + components: + - type: Transform + pos: 44.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12990 components: - type: Transform @@ -58947,21 +59352,29 @@ entities: - type: Transform pos: 41.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12872 components: - type: Transform pos: 42.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12873 components: - type: Transform pos: 43.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12874 components: - type: Transform pos: 44.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 14391 components: - type: Transform @@ -58971,13 +59384,6 @@ entities: color: '#0335FCFF' - proto: GasPressurePump entities: - - uid: 670 - components: - - type: Transform - pos: 31.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 2437 components: - type: Transform @@ -59020,6 +59426,14 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-26.5 parent: 2 + - uid: 4031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4033 components: - type: Transform @@ -59036,6 +59450,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 5112 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 6583 components: - type: Transform @@ -59058,7 +59479,7 @@ entities: pos: 37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 10423 components: - type: Transform @@ -59070,6 +59491,14 @@ entities: - type: Transform pos: 64.5,23.5 parent: 2 + - uid: 11522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11577 components: - type: Transform @@ -59077,6 +59506,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 11578 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 14374 components: - type: Transform @@ -59092,6 +59528,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 15231 + components: + - type: Transform + pos: 39.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasThermoMachineFreezer entities: - uid: 3966 @@ -59143,7 +59586,7 @@ entities: pos: 36.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 3885 components: - type: Transform @@ -59158,45 +59601,30 @@ entities: parent: 2 - proto: GasValve entities: - - uid: 1233 + - uid: 7861 components: - type: Transform - pos: 42.5,-47.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-35.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4250 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: 44.5,-48.5 parent: 2 - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11586 + color: '#947507FF' + - uid: 11580 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-47.5 + pos: 46.5,-35.5 + parent: 2 + - uid: 15273 + components: + - type: Transform + pos: 42.5,-48.5 parent: 2 - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - proto: GasVentPump entities: - uid: 408 @@ -60015,6 +60443,17 @@ entities: - 5 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 15296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15297 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasVentScrubber entities: - uid: 1232 @@ -60784,6 +61223,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 4501 components: - type: Transform @@ -60791,7 +61238,23 @@ entities: pos: 38.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' + - uid: 6749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 11823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - proto: Gauze entities: - uid: 11966 @@ -64115,6 +64578,11 @@ entities: - type: Transform pos: 29.5,-60.5 parent: 2 + - uid: 11581 + components: + - type: Transform + pos: 45.5,-48.5 + parent: 2 - uid: 11582 components: - type: Transform @@ -64135,6 +64603,11 @@ entities: - type: Transform pos: 52.5,-39.5 parent: 2 + - uid: 11588 + components: + - type: Transform + pos: 45.5,-47.5 + parent: 2 - uid: 11589 components: - type: Transform @@ -64773,26 +65246,11 @@ entities: rot: 3.141592653589793 rad pos: 11.5,45.5 parent: 2 - - uid: 12912 - components: - - type: Transform - pos: 45.5,-48.5 - parent: 2 - - uid: 12913 - components: - - type: Transform - pos: 45.5,-47.5 - parent: 2 - uid: 12914 components: - type: Transform pos: 45.5,-46.5 parent: 2 - - uid: 12915 - components: - - type: Transform - pos: 45.5,-45.5 - parent: 2 - uid: 12916 components: - type: Transform @@ -64819,6 +65277,11 @@ entities: rot: 3.141592653589793 rad pos: -6.5,1.5 parent: 2 + - uid: 12961 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 2 - uid: 13245 components: - type: Transform @@ -65947,6 +66410,171 @@ entities: - type: Transform pos: 19.5,51.5 parent: 2 + - uid: 15163 + components: + - type: Transform + pos: 46.5,-55.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + pos: 45.5,-55.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + pos: 44.5,-55.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + pos: 43.5,-55.5 + parent: 2 + - uid: 15246 + components: + - type: Transform + pos: 42.5,-55.5 + parent: 2 + - uid: 15247 + components: + - type: Transform + pos: 41.5,-55.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 2 + - uid: 15249 + components: + - type: Transform + pos: 41.5,-58.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + pos: 42.5,-60.5 + parent: 2 + - uid: 15251 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 15252 + components: + - type: Transform + pos: 53.5,-41.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + pos: 53.5,-42.5 + parent: 2 + - uid: 15254 + components: + - type: Transform + pos: 53.5,-43.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + pos: 53.5,-44.5 + parent: 2 + - uid: 15256 + components: + - type: Transform + pos: 53.5,-45.5 + parent: 2 + - uid: 15257 + components: + - type: Transform + pos: 53.5,-46.5 + parent: 2 + - uid: 15258 + components: + - type: Transform + pos: 53.5,-47.5 + parent: 2 + - uid: 15259 + components: + - type: Transform + pos: 53.5,-49.5 + parent: 2 + - uid: 15260 + components: + - type: Transform + pos: 53.5,-50.5 + parent: 2 + - uid: 15261 + components: + - type: Transform + pos: 53.5,-51.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: 53.5,-52.5 + parent: 2 + - uid: 15263 + components: + - type: Transform + pos: 52.5,-52.5 + parent: 2 + - uid: 15264 + components: + - type: Transform + pos: 51.5,-52.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + pos: 48.5,-52.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + pos: 47.5,-52.5 + parent: 2 + - uid: 15268 + components: + - type: Transform + pos: 46.5,-52.5 + parent: 2 + - uid: 15269 + components: + - type: Transform + pos: 45.5,-52.5 + parent: 2 + - uid: 15279 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 15280 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 15281 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 15282 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 15283 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 - proto: GrilleBroken entities: - uid: 1247 @@ -66240,6 +66868,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 5428 + components: + - type: Transform + pos: 47.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 6513 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12861 components: - type: Transform @@ -66263,7 +66905,7 @@ entities: pos: 48.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - proto: Hemostat entities: - uid: 10071 @@ -66293,6 +66935,377 @@ entities: - type: Transform pos: 83.5,30.5 parent: 2 +- proto: HolopadAiCore + entities: + - uid: 12389 + components: + - type: Transform + pos: 89.5,30.5 + parent: 2 +- proto: HolopadAiEntrance + entities: + - uid: 15179 + components: + - type: Transform + pos: 81.5,30.5 + parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 15166 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 +- proto: HolopadCargoFront + entities: + - uid: 15165 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 +- proto: HolopadCargoSalvageBay + entities: + - uid: 15167 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 15168 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 15170 + components: + - type: Transform + pos: 21.5,45.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 15172 + components: + - type: Transform + pos: 33.5,42.5 + parent: 2 +- proto: HolopadCommandCe + entities: + - uid: 15176 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 15177 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 +- proto: HolopadCommandHop + entities: + - uid: 15175 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 +- proto: HolopadCommandHos + entities: + - uid: 15173 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 15171 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 +- proto: HolopadCommandQm + entities: + - uid: 15169 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 +- proto: HolopadCommandRd + entities: + - uid: 15178 + components: + - type: Transform + pos: 61.5,9.5 + parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 15174 + components: + - type: Transform + pos: 18.5,41.5 + parent: 2 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 1249 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 15214 + components: + - type: Transform + pos: 38.5,-28.5 + parent: 2 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 15213 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 2 +- proto: HolopadEngineeringFront + entities: + - uid: 15211 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 +- proto: HolopadEngineeringTechVault + entities: + - uid: 875 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 15212 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 +- proto: HolopadGeneralArrivals + entities: + - uid: 15164 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 +- proto: HolopadGeneralDisposals + entities: + - uid: 15209 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 15208 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 +- proto: HolopadGeneralTheater + entities: + - uid: 15206 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 +- proto: HolopadGeneralTools + entities: + - uid: 15204 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 +- proto: HolopadMedicalBreakroom + entities: + - uid: 15198 + components: + - type: Transform + pos: 77.5,4.5 + parent: 2 +- proto: HolopadMedicalChemistry + entities: + - uid: 15193 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 +- proto: HolopadMedicalFront + entities: + - uid: 15192 + components: + - type: Transform + pos: 50.5,3.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 876 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 2 +- proto: HolopadMedicalMorgue + entities: + - uid: 15194 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 2 +- proto: HolopadMedicalSurgery + entities: + - uid: 15195 + components: + - type: Transform + pos: 65.5,-5.5 + parent: 2 +- proto: HolopadMedicalVirology + entities: + - uid: 15197 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 +- proto: HolopadScienceAnomaly + entities: + - uid: 15190 + components: + - type: Transform + pos: 69.5,13.5 + parent: 2 +- proto: HolopadScienceArtifact + entities: + - uid: 15191 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 +- proto: HolopadScienceRnd + entities: + - uid: 15181 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 +- proto: HolopadScienceRobotics + entities: + - uid: 15189 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 15188 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 +- proto: HolopadSecurityCourtroom + entities: + - uid: 15185 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 +- proto: HolopadSecurityDetective + entities: + - uid: 15184 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 +- proto: HolopadSecurityFront + entities: + - uid: 15180 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 +- proto: HolopadSecurityInterrogation + entities: + - uid: 15182 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 +- proto: HolopadSecurityLawyer + entities: + - uid: 15186 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 +- proto: HolopadSecurityPerma + entities: + - uid: 15183 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 +- proto: HolopadSecurityWarden + entities: + - uid: 15187 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 15196 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 +- proto: HolopadServiceBotany + entities: + - uid: 15205 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 15203 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 +- proto: HolopadServiceClownMime + entities: + - uid: 15202 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 +- proto: HolopadServiceJanitor + entities: + - uid: 15207 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 +- proto: HolopadServiceKitchen + entities: + - uid: 15200 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 +- proto: HolopadServiceLibrary + entities: + - uid: 15201 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 - proto: HospitalCurtainsOpen entities: - uid: 3192 @@ -66550,18 +67563,6 @@ entities: - type: Transform pos: 17.552685,41.54155 parent: 2 -- proto: Intellicard - entities: - - uid: 14565 - components: - - type: Transform - pos: 89.5,32.5 - parent: 2 - - uid: 14566 - components: - - type: Transform - pos: 90.5,32.5 - parent: 2 - proto: IntercomAll entities: - uid: 14558 @@ -66871,6 +67872,31 @@ entities: - type: Transform pos: 84.53704,28.473265 parent: 2 +- proto: LockableButtonAtmospherics + entities: + - uid: 7828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12890: + - Pressed: Toggle + 12891: + - Pressed: Toggle + - uid: 15242 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12891: + - Pressed: Toggle + 12890: + - Pressed: Toggle - proto: LockableButtonCommand entities: - uid: 15104 @@ -66925,6 +67951,32 @@ entities: - Pressed: Open 600: - Pressed: Open +- proto: LockableButtonSalvage + entities: + - uid: 15284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 895: + - Pressed: Toggle +- proto: LockableButtonService + entities: + - uid: 15276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12988: + - Pressed: Toggle + 13443: + - Pressed: Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 1458 @@ -67057,6 +68109,11 @@ entities: - type: Transform pos: 17.5,29.5 parent: 2 + - uid: 15277 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 - proto: LockerFreezer entities: - uid: 1646 @@ -67418,6 +68475,11 @@ entities: - type: Transform pos: 1.5,-21.5 parent: 2 + - uid: 15230 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 - proto: MaintenanceWeaponSpawner entities: - uid: 12285 @@ -69239,6 +70301,51 @@ entities: - type: Transform pos: 63.50305,8.626264 parent: 2 +- proto: PoweredDimSmallLight + entities: + - uid: 12390 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 12393 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,47.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,11.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + pos: 70.5,-15.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: 89.5,-18.5 + parent: 2 + - uid: 15278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,35.5 + parent: 2 - proto: Poweredlight entities: - uid: 97 @@ -70578,13 +71685,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,16.5 parent: 2 - - uid: 583 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 608 components: - type: Transform @@ -70791,13 +71891,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4474 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4475 components: - type: Transform @@ -71083,20 +72176,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,47.5 - parent: 2 - - uid: 7828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,11.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7829 components: - type: Transform @@ -71105,20 +72184,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7830 - components: - - type: Transform - pos: 12.5,18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7861 - components: - - type: Transform - pos: 75.5,-15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7862 components: - type: Transform @@ -71352,13 +72417,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,3.5 parent: 2 - - uid: 11522 - components: - - type: Transform - pos: 70.5,-15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11805 components: - type: Transform @@ -71375,13 +72433,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11823 - components: - - type: Transform - pos: 89.5,-18.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11824 components: - type: Transform @@ -71436,9 +72487,10 @@ entities: - uid: 12980 components: - type: Transform + anchored: False rot: 3.141592653589793 rad - pos: 49.5,-48.5 - parent: 2 + pos: 49.9375,-48.015625 + parent: 126 - uid: 12981 components: - type: Transform @@ -71513,12 +72565,6 @@ entities: rot: 3.141592653589793 rad pos: 74.5,20.5 parent: 2 - - uid: 14526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,33.5 - parent: 2 - uid: 14530 components: - type: Transform @@ -71813,6 +72859,12 @@ entities: - type: Transform pos: 40.5,22.5 parent: 2 + - uid: 15210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-44.5 + parent: 2 - proto: RadiationCollectorFullTank entities: - uid: 8166 @@ -72372,6 +73424,11 @@ entities: - type: Transform pos: 33.5,-30.5 parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 45.5,-44.5 + parent: 2 - uid: 1463 components: - type: Transform @@ -72428,6 +73485,11 @@ entities: - type: Transform pos: 36.5,-33.5 parent: 2 + - uid: 8665 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 2 - uid: 8699 components: - type: Transform @@ -72438,6 +73500,16 @@ entities: - type: Transform pos: 64.5,26.5 parent: 2 + - uid: 10436 + components: + - type: Transform + pos: 45.5,-47.5 + parent: 2 + - uid: 11586 + components: + - type: Transform + pos: 45.5,-48.5 + parent: 2 - uid: 12296 components: - type: Transform @@ -72450,31 +73522,11 @@ entities: rot: 3.141592653589793 rad pos: 39.5,29.5 parent: 2 - - uid: 12984 - components: - - type: Transform - pos: 45.5,-48.5 - parent: 2 - - uid: 12985 - components: - - type: Transform - pos: 45.5,-47.5 - parent: 2 - uid: 12986 components: - type: Transform pos: 45.5,-46.5 parent: 2 - - uid: 12987 - components: - - type: Transform - pos: 45.5,-45.5 - parent: 2 - - uid: 12988 - components: - - type: Transform - pos: 45.5,-44.5 - parent: 2 - proto: ReinforcedWindow entities: - uid: 6 @@ -75555,16 +76607,6 @@ entities: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 6513 - components: - - type: Transform - pos: 46.5,-11.5 - parent: 2 - - uid: 6514 - components: - - type: Transform - pos: 47.5,-11.5 - parent: 2 - proto: ShuttersNormalOpen entities: - uid: 265 @@ -76042,15 +77084,6 @@ entities: linkedPorts: 5124: - Pressed: Toggle - - uid: 5428 - components: - - type: Transform - pos: 6.5,34.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 895: - - Pressed: Toggle - uid: 5685 components: - type: MetaData @@ -76064,20 +77097,6 @@ entities: - Pressed: Toggle 2835: - Pressed: Toggle - - uid: 6749 - components: - - type: MetaData - name: Pen Maints Hatch - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6513: - - Pressed: Toggle - 6514: - - Pressed: Toggle - uid: 7809 components: - type: Transform @@ -76265,6 +77284,17 @@ entities: - Pressed: Toggle 13649: - Pressed: Toggle + - uid: 14566 + components: + - type: Transform + pos: 61.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5351: + - Pressed: Toggle + 5361: + - Pressed: Toggle - uid: 14742 components: - type: Transform @@ -76298,6 +77328,15 @@ entities: linkedPorts: 13915: - Pressed: Toggle + - uid: 15286 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 895: + - Pressed: Toggle - proto: SignAnomaly entities: - uid: 5066 @@ -76405,13 +77444,6 @@ entities: - type: Transform pos: 63.5,-0.5 parent: 2 -- proto: SignDangerMed - entities: - - uid: 10436 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - proto: SignDirectionalBridge entities: - uid: 7329 @@ -77327,29 +78359,31 @@ entities: - type: Transform pos: 67.5,-8.5 parent: 2 -- proto: SMESBasic +- proto: SMESAdvanced entities: - - uid: 875 - components: - - type: MetaData - name: SMES Bank 1 - - type: Transform - pos: 25.5,-31.5 - parent: 2 - - uid: 876 - components: - - type: MetaData - name: SMES Bank 2 - - type: Transform - pos: 26.5,-31.5 - parent: 2 - - uid: 885 + - uid: 13453 components: - type: MetaData name: SMES Bank 3 - type: Transform pos: 27.5,-31.5 parent: 2 + - uid: 14526 + components: + - type: MetaData + name: SMES Bank 2 + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 14565 + components: + - type: MetaData + name: SMES Bank 1 + - type: Transform + pos: 25.5,-31.5 + parent: 2 +- proto: SMESBasic + entities: - uid: 2121 components: - type: MetaData @@ -81387,6 +82421,11 @@ entities: - type: Transform pos: -17.5,0.5 parent: 2 + - uid: 15302 + components: + - type: Transform + pos: 38.5,-29.5 + parent: 2 - proto: TableCarpet entities: - uid: 2266 @@ -82674,21 +83713,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 8665 - components: - - type: Transform - pos: 63.5,25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5351: - - Left: Open - - Right: Open - - Middle: Close - 5361: - - Left: Open - - Right: Open - - Middle: Close - uid: 10322 components: - type: Transform @@ -82700,21 +83724,6 @@ entities: - Left: Open - Right: Open - Middle: Close - - uid: 13115 - components: - - type: Transform - pos: 44.5,-46.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12890: - - Left: Open - - Right: Open - - Middle: Close - 12891: - - Left: Open - - Right: Open - - Middle: Close - proto: UniformPrinter entities: - uid: 10283 @@ -83078,6 +84087,11 @@ entities: parent: 2 - proto: VendingMachineTankDispenserEVA entities: + - uid: 879 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 2 - uid: 3476 components: - type: Transform @@ -83093,6 +84107,11 @@ entities: - type: Transform pos: 4.5,35.5 parent: 2 + - uid: 15301 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 2 - proto: VendingMachineTheater entities: - uid: 1144 @@ -94145,6 +95164,24 @@ entities: - type: Transform pos: 28.5,-31.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: WardrobeBlueFilled entities: - uid: 4220 From fa6de41ae931bb48e229ea3f5be8f3eac630e217 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Thu, 19 Dec 2024 00:10:53 +0100 Subject: [PATCH 152/263] Localized holopads + atmos network for Oasis (#33941) Oasis stuff --- Resources/Maps/oasis.yml | 8481 ++++++++++++++++++++------------------ 1 file changed, 4425 insertions(+), 4056 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 1a95d64743..8a7331d17a 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -6213,7 +6213,7 @@ entities: -5,3: 0: 56797 -4,4: - 1: 61183 + 0: 61183 -3,0: 0: 63487 -3,1: @@ -6225,8 +6225,7 @@ entities: -3,-1: 0: 63487 -3,4: - 1: 4401 - 0: 51404 + 0: 55805 -2,0: 0: 63487 -2,1: @@ -6324,12 +6323,11 @@ entities: -1,-5: 0: 63675 -5,4: - 1: 136 - 0: 62256 + 0: 62392 -4,5: - 2: 65532 + 1: 65532 -5,5: - 2: 3264 + 1: 3264 0: 305 -4,6: 0: 6384 @@ -6342,7 +6340,7 @@ entities: -4,8: 0: 55759 -3,5: - 2: 4368 + 1: 4368 0: 3308 -3,6: 0: 4092 @@ -6599,8 +6597,7 @@ entities: 5,-3: 0: 61695 5,-2: - 0: 57599 - 3: 4096 + 0: 61695 5,-5: 0: 32767 6,-4: @@ -6631,7 +6628,7 @@ entities: 0: 3067 4,-9: 0: 37683 - 2: 2184 + 1: 2184 3,-8: 0: 3822 4,-7: @@ -6650,7 +6647,7 @@ entities: 0: 65527 5,-9: 0: 49152 - 2: 307 + 1: 307 6,-8: 0: 43195 6,-7: @@ -6660,8 +6657,7 @@ entities: 6,-9: 0: 45499 7,-8: - 0: 53599 - 4: 128 + 0: 53727 7,-7: 0: 21845 7,-6: @@ -6669,8 +6665,7 @@ entities: 7,-9: 0: 64721 8,-8: - 0: 61455 - 4: 240 + 0: 61695 8,-7: 0: 65520 8,-6: @@ -6856,8 +6851,7 @@ entities: -9,-12: 0: 2039 -8,-11: - 0: 28727 - 3: 64 + 0: 28791 -8,-10: 0: 28791 -9,-11: @@ -6917,8 +6911,7 @@ entities: 8,-9: 0: 65520 9,-8: - 0: 45167 - 4: 16 + 0: 45183 9,-6: 0: 65376 9,-5: @@ -6962,8 +6955,7 @@ entities: 9,-12: 0: 65329 9,-11: - 0: 64015 - 4: 256 + 0: 64271 9,-10: 0: 45963 9,-13: @@ -6975,7 +6967,7 @@ entities: 10,-10: 0: 62207 10,-13: - 5: 9902 + 2: 9902 11,-12: 0: 4913 11,-11: @@ -6984,7 +6976,7 @@ entities: 0: 65262 11,-13: 0: 4352 - 5: 127 + 2: 127 12,-10: 0: 65488 12,-9: @@ -6998,8 +6990,7 @@ entities: 9,0: 0: 53759 10,-3: - 0: 55583 - 4: 1024 + 0: 56607 10,-2: 0: 65529 10,-1: @@ -7015,8 +7006,7 @@ entities: 11,0: 0: 62207 12,-4: - 0: 60495 - 6: 512 + 0: 61007 12,-3: 0: 62702 12,-2: @@ -7092,14 +7082,14 @@ entities: 12,6: 0: 48911 12,7: - 5: 65520 + 2: 65520 -12,-12: 0: 13119 -12,-13: 0: 65427 -13,-12: 0: 56524 - 7: 17 + 6: 17 -12,-11: 0: 60931 -13,-11: @@ -7197,70 +7187,70 @@ entities: -13,1: 0: 57296 -12,1: - 5: 36352 + 2: 36352 -12,3: - 5: 34956 + 2: 34956 -11,1: 0: 127 - 5: 30464 + 2: 30464 -12,2: - 5: 34952 + 2: 34952 -11,2: - 5: 255 - 8: 57344 + 2: 255 + 3: 57344 -12,4: - 5: 53192 + 2: 53192 -11,3: - 5: 61440 - 9: 224 + 2: 61440 + 4: 224 -10,1: 0: 40847 -10,2: - 5: 51 + 2: 51 0: 43656 -10,3: - 5: 12288 + 2: 12288 0: 35498 -10,4: 0: 43690 -13,4: - 5: 32630 + 2: 32630 -12,7: - 5: 52476 + 2: 52476 -13,7: - 5: 26615 + 2: 26615 -12,6: - 5: 51336 + 2: 51336 -12,5: - 5: 34952 + 2: 34952 -11,6: - 5: 61440 - 7: 224 + 2: 61440 + 6: 224 -11,7: - 5: 65535 + 2: 65535 -12,8: - 5: 34952 + 2: 34952 -11,4: - 10: 224 - 7: 57344 + 5: 224 + 6: 57344 -11,5: - 7: 57568 + 6: 57568 -11,8: - 5: 65535 + 2: 65535 -10,6: - 5: 12288 + 2: 12288 0: 35498 -10,7: - 5: 13107 + 2: 13107 0: 34952 -10,5: 0: 43690 -10,8: - 5: 62259 + 2: 62259 0: 136 -9,8: 0: 52479 - 5: 4096 + 2: 4096 0,-16: 0: 65528 -1,-16: @@ -7285,22 +7275,22 @@ entities: 0: 4371 2,-15: 0: 65280 - 5: 3 + 2: 3 2,-14: 0: 65535 2,-16: - 5: 27776 + 2: 27776 3,-16: - 5: 57375 + 2: 57375 3,-15: 0: 30464 - 5: 11 + 2: 11 3,-14: 0: 30583 4,-16: - 5: 4883 + 2: 4883 4,-14: - 5: 2304 + 2: 2304 -4,-15: 0: 65102 -4,-14: @@ -7338,25 +7328,25 @@ entities: -9,-13: 0: 4095 -7,-15: - 7: 61184 + 6: 61184 -7,-14: 0: 32752 -6,-15: - 7: 256 + 6: 256 0: 32768 -6,-14: 0: 65528 -12,-16: - 5: 4880 + 2: 4880 -13,-16: - 5: 65520 + 2: 65520 -12,-15: 0: 53128 -12,-14: 0: 30487 -13,-14: 0: 52232 - 5: 23 + 2: 23 -11,-16: 0: 4352 -11,-15: @@ -7374,32 +7364,32 @@ entities: -10,-16: 0: 8704 -10,-17: - 7: 49152 + 6: 49152 -16,-7: - 5: 52416 + 2: 52416 -16,-6: - 5: 3276 + 2: 3276 0: 32768 -16,-5: 0: 35852 -16,-4: - 5: 52428 + 2: 52428 -15,-7: - 5: 4368 + 2: 4368 0: 3276 -15,-6: - 5: 273 + 2: 273 0: 52428 -15,-5: 0: 53199 -15,-4: - 5: 4369 + 2: 4369 0: 52420 -15,-8: 0: 52416 -15,-9: 0: 34952 - 7: 256 + 6: 256 -14,-8: 0: 49080 -14,-7: @@ -7419,31 +7409,31 @@ entities: -13,-7: 0: 26214 -16,-12: - 7: 32 + 6: 32 -16,-11: - 7: 32768 + 6: 32768 -16,-10: - 7: 8 + 6: 8 -15,-11: - 7: 13036 + 6: 13036 0: 32768 -15,-10: - 7: 307 + 6: 307 0: 34952 -15,-12: - 7: 51336 + 6: 51336 -14,-12: - 7: 4607 + 6: 4607 0: 49152 -14,-11: - 7: 17 + 6: 17 0: 61644 -14,-10: 0: 65535 -14,-13: - 7: 59392 + 6: 59392 -13,-13: - 7: 4352 + 6: 4352 0: 1604 8,9: 0: 65535 @@ -7472,28 +7462,28 @@ entities: 10,10: 0: 3549 10,11: - 7: 275 + 6: 275 10,12: 0: 305 - 5: 3276 + 2: 3276 11,9: 0: 4469 - 5: 49152 + 2: 49152 11,10: 0: 273 - 5: 52428 + 2: 52428 11,11: - 5: 61166 + 2: 61166 11,12: - 5: 53247 + 2: 53247 12,8: - 5: 13175 + 2: 13175 12,9: - 5: 13107 + 2: 13107 12,10: - 5: 63923 + 2: 63923 12,11: - 5: 61443 + 2: 61443 4,9: 0: 58606 3,9: @@ -7516,7 +7506,7 @@ entities: 0: 60928 5,12: 0: 238 - 5: 49152 + 2: 49152 6,9: 0: 65535 6,10: @@ -7595,10 +7585,10 @@ entities: 0: 48059 16,0: 0: 1793 - 5: 4 + 2: 4 16,1: 0: 7 - 5: 1024 + 2: 1024 13,-4: 0: 26215 13,-3: @@ -7617,22 +7607,22 @@ entities: 0: 61098 15,-4: 0: 4113 - 5: 34952 + 2: 34952 15,-3: 0: 4369 - 5: 34952 + 2: 34952 15,-2: 0: 16177 - 5: 8 + 2: 8 15,-5: 0: 4353 - 5: 34952 + 2: 34952 16,-2: 0: 1792 - 5: 4 + 2: 4 16,-1: 0: 4359 - 5: 17408 + 2: 17408 13,-8: 0: 15 13,-6: @@ -7646,49 +7636,49 @@ entities: 14,-9: 0: 36623 15,-8: - 7: 16 + 6: 16 15,-6: - 7: 16 + 6: 16 0: 4096 - 5: 32768 + 2: 32768 15,-9: 0: 4353 16,-5: - 5: 304 + 2: 304 12,-11: - 7: 49156 + 6: 49156 12,-12: - 5: 12 + 2: 12 12,-13: - 5: 52303 + 2: 52303 13,-12: - 5: 15 - 7: 16384 + 2: 15 + 6: 16384 13,-11: - 7: 65228 + 6: 65228 13,-10: 0: 65520 13,-13: - 5: 65295 + 2: 65295 14,-12: - 5: 15 + 2: 15 14,-11: - 7: 65521 + 6: 65521 14,-10: 0: 65392 14,-13: - 5: 65295 + 2: 65295 15,-12: - 5: 1 + 2: 1 15,-11: - 7: 4112 + 6: 4112 15,-10: - 7: 52451 + 6: 52451 0: 4096 15,-13: - 5: 4511 + 2: 4511 16,-10: - 7: 19 + 6: 19 -4,9: 0: 7421 -5,9: @@ -7703,13 +7693,13 @@ entities: 0: 32767 -4,12: 0: 34945 - 7: 13072 + 6: 13072 -3,9: 0: 4095 -3,10: 0: 65535 -3,11: - 7: 61408 + 6: 61408 -2,9: 0: 4095 -2,10: @@ -7722,23 +7712,23 @@ entities: 0: 61678 -9,9: 0: 52430 - 5: 4369 + 2: 4369 -8,10: 0: 65535 -9,10: 0: 52428 -8,11: - 5: 43808 + 2: 43808 -9,11: - 5: 20224 + 2: 20224 -8,12: - 5: 43690 + 2: 43690 -7,9: 0: 45311 -7,10: 0: 49087 -7,11: - 5: 768 + 2: 768 0: 34952 -6,9: 0: 61661 @@ -7748,38 +7738,38 @@ entities: 0: 65535 -7,12: 0: 34952 - 5: 12322 + 2: 12322 -6,12: 0: 65535 -5,12: 0: 13111 - 7: 34816 + 6: 34816 -12,9: - 5: 65497 + 2: 65497 -13,9: - 5: 8 + 2: 8 -12,10: - 5: 52428 + 2: 52428 -11,9: - 5: 4607 - 7: 49152 + 2: 4607 + 6: 49152 -11,10: - 5: 33041 - 7: 204 + 2: 33041 + 6: 204 -12,11: - 5: 136 + 2: 136 -11,11: - 5: 248 + 2: 248 -10,9: - 5: 52479 - 7: 4096 + 2: 52479 + 6: 4096 -10,10: - 7: 17 - 5: 34952 + 6: 17 + 2: 34952 -10,11: - 5: 2296 + 2: 2296 -9,12: - 5: 17476 + 2: 17476 8,-15: 0: 65535 7,-15: @@ -7793,48 +7783,48 @@ entities: 9,-14: 0: 4403 10,-16: - 5: 3584 + 2: 3584 11,-16: - 5: 7936 + 2: 7936 10,-14: - 5: 34816 + 2: 34816 11,-14: - 5: 29489 + 2: 29489 11,-15: - 5: 4369 + 2: 4369 12,-16: - 5: 3840 + 2: 3840 4,-17: - 5: 4096 + 2: 4096 5,-14: - 5: 1024 + 2: 1024 6,-14: - 5: 512 + 2: 512 -8,13: - 5: 29666 + 2: 29666 -9,13: - 5: 3140 + 2: 3140 -8,14: - 5: 15 + 2: 15 -7,13: - 5: 32816 + 2: 32816 0: 1032 -7,14: - 5: 15 + 2: 15 -6,13: 0: 255 -6,14: - 5: 49 + 2: 49 -5,13: 0: 51 - 7: 51208 + 6: 51208 -5,14: - 7: 264 + 6: 264 -4,13: - 7: 29443 + 6: 29443 0: 136 -4,14: - 7: 3 + 6: 3 -3,12: 0: 65520 -3,13: @@ -7853,176 +7843,176 @@ entities: 0: 41634 1,14: 0: 8710 - 5: 34952 + 2: 34952 1,15: 0: 8226 - 5: 34952 + 2: 34952 1,16: 0: 8738 - 5: 34952 + 2: 34952 2,13: 0: 4280 2,14: - 5: 49023 + 2: 49023 2,15: - 5: 44974 + 2: 44974 2,16: - 5: 32702 + 2: 32702 3,13: 0: 255 3,14: - 5: 44847 + 2: 44847 3,15: - 5: 44463 + 2: 44463 0: 512 3,16: - 5: 12207 + 2: 12207 4,14: - 5: 61439 + 2: 61439 4,15: - 5: 44971 + 2: 44971 4,13: 0: 49376 4,16: - 5: 65515 + 2: 65515 5,15: 0: 8243 - 5: 1228 + 2: 1228 5,13: 0: 8738 - 7: 136 + 6: 136 5,14: 0: 546 - 5: 16384 + 2: 16384 5,16: 0: 8738 6,15: - 5: 255 + 2: 255 6,13: 0: 1262 7,13: 0: 1279 7,15: - 5: 255 + 2: 255 8,15: - 5: 255 + 2: 255 9,15: - 5: 255 + 2: 255 10,15: - 5: 55 + 2: 55 10,14: - 5: 65224 + 2: 65224 11,14: - 5: 311 + 2: 311 11,13: - 5: 65228 + 2: 65228 12,12: - 5: 65535 + 2: 65535 13,10: - 5: 17 + 2: 17 13,9: - 5: 13028 + 2: 13028 13,8: - 5: 19652 + 2: 19652 13,7: - 5: 20476 + 2: 20476 14,9: - 5: 248 + 2: 248 14,8: - 5: 52428 + 2: 52428 14,7: - 5: 51711 + 2: 51711 15,8: - 5: 56797 + 2: 56797 15,9: - 5: 248 + 2: 248 15,7: - 5: 55539 + 2: 55539 16,8: - 5: 56797 + 2: 56797 16,9: - 5: 248 + 2: 248 13,5: 0: 1911 13,6: 0: 4879 - 5: 52224 + 2: 52224 14,5: 0: 7633 14,6: 0: 15 - 5: 13056 + 2: 13056 15,5: 0: 35768 15,6: 0: 15 - 5: 13824 + 2: 13824 16,7: - 5: 55544 + 2: 55544 13,12: - 5: 4095 + 2: 4095 14,12: - 5: 4095 + 2: 4095 15,12: - 5: 4095 + 2: 4095 16,12: - 5: 883 + 2: 883 0,18: - 5: 49160 + 2: 49160 0,17: - 5: 34816 + 2: 34816 1,17: - 5: 24856 + 2: 24856 0: 3106 1,18: - 5: 64035 + 2: 64035 1,19: - 5: 200 + 2: 200 2,17: - 5: 57359 + 2: 57359 0: 1792 2,18: - 5: 4238 + 2: 4238 2,19: - 5: 240 + 2: 240 3,17: - 5: 61455 + 2: 61455 0: 1792 3,18: - 5: 255 + 2: 255 3,19: - 5: 240 + 2: 240 4,17: - 5: 12303 + 2: 12303 0: 3840 4,18: - 5: 51203 + 2: 51203 4,19: - 5: 248 + 2: 248 5,17: 0: 290 - 5: 48192 + 2: 48192 5,18: - 5: 61998 + 2: 61998 5,19: - 5: 16 + 2: 16 6,17: - 5: 18244 + 2: 18244 6,18: - 5: 4164 + 2: 4164 6,16: - 5: 16384 + 2: 16384 -15,0: - 5: 1 + 2: 1 0: 52428 -15,1: - 5: 4401 + 2: 4401 0: 34944 -15,2: - 5: 4369 + 2: 4369 0: 2176 -15,3: - 5: 34959 + 2: 34959 -15,-1: 0: 52732 -14,0: @@ -8032,49 +8022,49 @@ entities: -14,2: 0: 61439 -14,3: - 5: 61440 + 2: 61440 0: 14 -14,-1: 0: 65535 -13,2: 0: 817 - 5: 128 + 2: 128 -13,3: - 5: 12834 + 2: 12834 -13,5: - 5: 8742 + 2: 8742 -13,6: - 5: 25122 + 2: 25122 -13,8: - 5: 50722 + 2: 50722 -16,-16: - 5: 30583 + 2: 30583 -16,-17: - 5: 29187 + 2: 29187 -16,-15: - 5: 29426 + 2: 29426 -17,-15: - 5: 29426 + 2: 29426 -16,-14: - 5: 30583 + 2: 30583 -16,-13: - 5: 2 + 2: 2 -15,-15: - 5: 240 + 2: 240 -15,-16: - 5: 65520 + 2: 65520 -15,-13: - 7: 64 + 6: 64 -14,-16: - 5: 24404 + 2: 24404 -14,-15: - 5: 52980 + 2: 52980 -14,-17: - 5: 24404 + 2: 24404 -13,-15: - 5: 29456 + 2: 29456 -14,-14: - 5: 8 + 2: 8 0,-20: 0: 34952 0,-19: @@ -8108,14 +8098,14 @@ entities: -2,-18: 0: 4096 -16,-3: - 5: 17612 + 2: 17612 -16,-2: - 5: 4 + 2: 4 0: 51200 -16,-1: 0: 2240 -15,-3: - 5: 1 + 2: 1 0: 56780 -15,-2: 0: 64973 @@ -8124,131 +8114,131 @@ entities: -14,-2: 0: 65535 16,4: - 5: 25188 + 2: 25188 16,5: - 5: 58914 + 2: 58914 16,6: - 5: 34946 + 2: 34946 16,3: - 5: 18018 + 2: 18018 17,5: - 5: 61440 + 2: 61440 17,6: - 5: 65520 + 2: 65520 17,7: - 5: 55536 + 2: 55536 17,8: - 5: 56797 + 2: 56797 18,5: - 5: 61440 + 2: 61440 18,6: - 5: 65520 + 2: 65520 18,7: - 5: 55536 + 2: 55536 18,8: - 5: 56797 + 2: 56797 19,5: - 5: 61440 + 2: 61440 19,6: - 5: 48056 + 2: 48056 19,7: - 5: 39162 + 2: 39162 19,8: - 5: 39321 + 2: 39321 20,7: - 5: 16 + 2: 16 16,2: - 5: 8192 + 2: 8192 -12,-19: - 5: 61440 + 2: 61440 -13,-19: - 5: 61440 + 2: 61440 -12,-18: - 5: 4880 + 2: 4880 -13,-18: - 5: 65520 + 2: 65520 -12,-17: - 5: 4880 + 2: 4880 -13,-17: - 5: 65520 + 2: 65520 -11,-19: - 5: 61440 + 2: 61440 -10,-19: - 5: 4096 + 2: 4096 -10,-18: - 7: 4 + 6: 4 -18,-12: - 5: 68 + 2: 68 -18,-13: - 5: 17476 + 2: 17476 -18,-15: - 5: 17636 + 2: 17636 -18,-16: - 5: 17476 + 2: 17476 -18,-17: - 5: 17484 + 2: 17484 -18,-14: - 5: 17476 + 2: 17476 -17,-16: - 5: 30583 + 2: 30583 -17,-17: - 5: 29199 + 2: 29199 -17,-14: - 5: 30583 + 2: 30583 -17,-13: - 5: 2 + 2: 2 16,-12: - 5: 546 + 2: 546 16,-13: - 5: 8743 + 2: 8743 -16,-19: - 5: 57344 + 2: 57344 -16,-18: - 5: 10786 + 2: 10786 -15,-19: - 5: 61440 + 2: 61440 -15,-18: - 5: 65520 + 2: 65520 -15,-17: - 5: 65520 + 2: 65520 -14,-19: - 5: 62464 + 2: 62464 -14,-18: - 5: 24404 + 2: 24404 12,-15: - 5: 30496 + 2: 30496 12,-14: - 5: 10103 + 2: 10103 13,-16: - 5: 3840 + 2: 3840 13,-15: - 5: 30496 + 2: 30496 13,-14: - 5: 10103 + 2: 10103 14,-16: - 5: 3840 + 2: 3840 14,-15: - 5: 30496 + 2: 30496 14,-14: - 5: 10103 + 2: 10103 15,-16: - 5: 3840 + 2: 3840 15,-15: - 5: 30496 + 2: 30496 15,-14: - 5: 10103 + 2: 10103 16,-16: - 5: 8960 + 2: 8960 16,-15: - 5: 8738 + 2: 8738 16,-14: - 5: 8738 + 2: 8738 17,9: - 5: 248 + 2: 248 18,9: - 5: 248 + 2: 248 19,9: - 5: 248 + 2: 248 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8265,21 +8255,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 103.92799 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -8295,36 +8270,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 immutable: True moles: @@ -8340,36 +8285,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -8415,6 +8330,21 @@ entities: - 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: RadiationGridResistance @@ -14649,7 +14579,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111545.98 + secondsUntilStateChange: -115600.24 state: Opening - uid: 6934 components: @@ -14661,7 +14591,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111548.61 + secondsUntilStateChange: -115602.875 state: Opening - uid: 6935 components: @@ -14673,7 +14603,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111547.46 + secondsUntilStateChange: -115601.73 state: Opening - uid: 6936 components: @@ -14684,7 +14614,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111546.68 + secondsUntilStateChange: -115600.945 state: Opening - proto: AirlockTheatreLocked entities: @@ -76034,12 +75964,6 @@ entities: - type: Transform pos: 4.5,32.5 parent: 2 - - uid: 6622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,42.5 - parent: 2 - uid: 8454 components: - type: Transform @@ -76051,6 +75975,12 @@ entities: rot: 3.141592653589793 rad pos: -32.052803,42.655365 parent: 2 + - uid: 10949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,42.5 + parent: 2 - uid: 11855 components: - type: Transform @@ -78713,12 +78643,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,16.5 parent: 2 - - uid: 2545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,15.5 - parent: 2 - uid: 2546 components: - type: Transform @@ -78976,6 +78900,26 @@ entities: - type: Transform pos: 10.5,-33.5 parent: 2 +- proto: ComputerAtmosMonitoring + entities: + - uid: 10655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,39.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,3.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,41.5 + parent: 2 - proto: computerBodyScanner entities: - uid: 1069 @@ -90951,13 +90895,6 @@ entities: - type: Transform pos: 38.25496,16.711338 parent: 2 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 29445 - components: - - type: Transform - pos: 61.47509,21.65281 - parent: 2 - proto: Eggshells entities: - uid: 19085 @@ -94753,7 +94690,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -102869.96 + secondsUntilStateChange: -106924.23 - type: DeviceNetwork deviceLists: - 18275 @@ -97545,8 +97482,13 @@ entities: friction: 0.4 - type: ScaleVisuals - type: Appearance -- proto: FloraTreeConifer01 +- proto: FloraTreeConifer entities: + - uid: 19176 + components: + - type: Transform + pos: 7.0421615,14.648008 + parent: 2 - uid: 19177 components: - type: Transform @@ -97562,8 +97504,6 @@ entities: - type: Transform pos: 7.4194474,6.70954 parent: 2 -- proto: FloraTreeConifer02 - entities: - uid: 19180 components: - type: Transform @@ -97574,29 +97514,22 @@ entities: - type: Transform pos: 14.398615,8.594956 parent: 2 - - uid: 26509 - components: - - type: Transform - pos: 7.439621,3.8400307 - parent: 21002 -- proto: FloraTreeConifer03 - entities: - - uid: 19176 - components: - - type: Transform - pos: 7.0421615,14.648008 - parent: 2 - uid: 26508 components: - type: Transform pos: 8.48288,-5.3548317 parent: 21002 + - uid: 26509 + components: + - type: Transform + pos: 7.439621,3.8400307 + parent: 21002 - uid: 26513 components: - type: Transform pos: 22.109192,5.674118 parent: 21002 -- proto: FloraTreeSnow02 +- proto: FloraTreeSnow entities: - uid: 19171 components: @@ -97604,8 +97537,11 @@ entities: rot: 1.5707963267948966 rad pos: -5.5474405,-12.275735 parent: 2 -- proto: FloraTreeSnow03 - entities: + - uid: 19172 + components: + - type: Transform + pos: -4.1702504,-6.317836 + parent: 2 - uid: 19173 components: - type: Transform @@ -97616,31 +97552,22 @@ entities: - type: Transform pos: -6.2223334,-4.161586 parent: 2 -- proto: FloraTreeSnow04 - entities: - uid: 19175 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.004216,-6.7445054 parent: 2 - - uid: 26507 - components: - - type: Transform - pos: 24.552963,-6.4198303 - parent: 21002 -- proto: FloraTreeSnow05 - entities: - - uid: 19172 - components: - - type: Transform - pos: -4.1702504,-6.317836 - parent: 2 - uid: 26506 components: - type: Transform pos: 26.667542,-6.5239983 parent: 21002 + - uid: 26507 + components: + - type: Transform + pos: 24.552963,-6.4198303 + parent: 21002 - proto: FloraTreeStumpConifer entities: - uid: 369 @@ -98254,6 +98181,13 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,31.5 parent: 2 +- proto: GameMasterCircuitBoard + entities: + - uid: 29445 + components: + - type: Transform + pos: 61.47509,21.65281 + parent: 2 - proto: GasAnalyzer entities: - uid: 5802 @@ -98351,7 +98285,7 @@ entities: pos: -36.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasFilterFlipped entities: - uid: 15676 @@ -98417,7 +98351,7 @@ entities: pos: -32.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21595 components: - type: Transform @@ -98521,7 +98455,7 @@ entities: pos: -26.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28607 components: - type: Transform @@ -98752,7 +98686,7 @@ entities: pos: -53.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 52 components: - type: Transform @@ -98760,7 +98694,7 @@ entities: pos: -41.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 896 components: - type: Transform @@ -98768,7 +98702,7 @@ entities: pos: -54.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 898 components: - type: Transform @@ -98776,7 +98710,7 @@ entities: pos: -52.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3203 components: - type: Transform @@ -98784,7 +98718,7 @@ entities: pos: 34.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3737 components: - type: Transform @@ -98792,7 +98726,7 @@ entities: pos: -20.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3957 components: - type: Transform @@ -98800,14 +98734,14 @@ entities: pos: -12.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5461 components: - type: Transform pos: -38.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5547 components: - type: Transform @@ -98815,7 +98749,7 @@ entities: pos: -32.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7356 components: - type: Transform @@ -98823,7 +98757,7 @@ entities: pos: 0.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8106 components: - type: Transform @@ -98863,7 +98797,7 @@ entities: pos: -27.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8220 components: - type: Transform @@ -98879,7 +98813,7 @@ entities: pos: -42.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8561 components: - type: Transform @@ -98949,7 +98883,7 @@ entities: pos: -36.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8666 components: - type: Transform @@ -98963,7 +98897,7 @@ entities: pos: -27.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8713 components: - type: Transform @@ -98971,14 +98905,14 @@ entities: pos: -23.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8740 components: - type: Transform pos: -8.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8753 components: - type: Transform @@ -98986,7 +98920,7 @@ entities: pos: -24.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8800 components: - type: Transform @@ -99009,7 +98943,7 @@ entities: pos: -21.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8842 components: - type: Transform @@ -99032,7 +98966,7 @@ entities: pos: -26.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8916 components: - type: Transform @@ -99040,7 +98974,7 @@ entities: pos: -31.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8943 components: - type: Transform @@ -99064,14 +98998,14 @@ entities: pos: -29.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9111 components: - type: Transform pos: -27.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9114 components: - type: Transform @@ -99086,7 +99020,7 @@ entities: pos: -25.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9116 components: - type: Transform @@ -99100,14 +99034,14 @@ entities: pos: -12.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9390 components: - type: Transform pos: 17.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9397 components: - type: Transform @@ -99115,14 +99049,14 @@ entities: pos: 17.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9405 components: - type: Transform pos: 1.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9622 components: - type: Transform @@ -99130,7 +99064,7 @@ entities: pos: -26.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9626 components: - type: Transform @@ -99138,7 +99072,7 @@ entities: pos: -25.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 10275 components: - type: Transform @@ -99146,7 +99080,7 @@ entities: pos: -46.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11525 components: - type: Transform @@ -99154,14 +99088,14 @@ entities: pos: -45.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11907 components: - type: Transform pos: 0.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12991 components: - type: Transform @@ -99169,7 +99103,7 @@ entities: pos: 56.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13240 components: - type: Transform @@ -99177,7 +99111,7 @@ entities: pos: -1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13241 components: - type: Transform @@ -99185,14 +99119,14 @@ entities: pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13242 components: - type: Transform pos: 2.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13243 components: - type: Transform @@ -99200,7 +99134,7 @@ entities: pos: -1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13439 components: - type: Transform @@ -99208,7 +99142,7 @@ entities: pos: 3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13563 components: - type: Transform @@ -99224,7 +99158,7 @@ entities: pos: -11.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13618 components: - type: Transform @@ -99232,7 +99166,7 @@ entities: pos: -10.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13660 components: - type: Transform @@ -99240,7 +99174,7 @@ entities: pos: -11.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13666 components: - type: Transform @@ -99248,7 +99182,7 @@ entities: pos: -8.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13668 components: - type: Transform @@ -99256,21 +99190,21 @@ entities: pos: -9.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13706 components: - type: Transform pos: -12.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13721 components: - type: Transform pos: -19.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13733 components: - type: Transform @@ -99278,7 +99212,7 @@ entities: pos: -19.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13734 components: - type: Transform @@ -99286,7 +99220,7 @@ entities: pos: -20.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13742 components: - type: Transform @@ -99294,7 +99228,7 @@ entities: pos: -9.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13743 components: - type: Transform @@ -99302,21 +99236,21 @@ entities: pos: -10.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13744 components: - type: Transform pos: -8.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13745 components: - type: Transform pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13746 components: - type: Transform @@ -99324,14 +99258,14 @@ entities: pos: -8.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13748 components: - type: Transform pos: -7.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13751 components: - type: Transform @@ -99339,21 +99273,21 @@ entities: pos: -8.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13752 components: - type: Transform pos: -7.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13753 components: - type: Transform pos: -6.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13754 components: - type: Transform @@ -99361,7 +99295,7 @@ entities: pos: -6.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13755 components: - type: Transform @@ -99369,21 +99303,21 @@ entities: pos: -7.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13756 components: - type: Transform pos: -5.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13757 components: - type: Transform pos: -6.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13758 components: - type: Transform @@ -99391,14 +99325,14 @@ entities: pos: -6.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13766 components: - type: Transform pos: -3.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13772 components: - type: Transform @@ -99406,21 +99340,21 @@ entities: pos: -3.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13774 components: - type: Transform pos: -2.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13775 components: - type: Transform pos: -3.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13776 components: - type: Transform @@ -99428,7 +99362,7 @@ entities: pos: -2.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13777 components: - type: Transform @@ -99436,7 +99370,7 @@ entities: pos: -3.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13855 components: - type: Transform @@ -99444,7 +99378,7 @@ entities: pos: -22.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13859 components: - type: Transform @@ -99452,7 +99386,7 @@ entities: pos: -21.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13862 components: - type: Transform @@ -99460,7 +99394,7 @@ entities: pos: -21.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13863 components: - type: Transform @@ -99468,7 +99402,7 @@ entities: pos: -22.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13896 components: - type: Transform @@ -99476,7 +99410,7 @@ entities: pos: 5.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13897 components: - type: Transform @@ -99484,7 +99418,7 @@ entities: pos: 4.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13898 components: - type: Transform @@ -99492,7 +99426,7 @@ entities: pos: 5.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13899 components: - type: Transform @@ -99500,7 +99434,7 @@ entities: pos: 4.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13900 components: - type: Transform @@ -99508,7 +99442,7 @@ entities: pos: 8.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13902 components: - type: Transform @@ -99516,7 +99450,7 @@ entities: pos: 7.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13904 components: - type: Transform @@ -99524,7 +99458,7 @@ entities: pos: 10.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13906 components: - type: Transform @@ -99532,7 +99466,7 @@ entities: pos: 9.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13907 components: - type: Transform @@ -99540,7 +99474,7 @@ entities: pos: 10.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13908 components: - type: Transform @@ -99548,7 +99482,7 @@ entities: pos: 11.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13909 components: - type: Transform @@ -99556,7 +99490,7 @@ entities: pos: 10.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13910 components: - type: Transform @@ -99564,7 +99498,7 @@ entities: pos: 10.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13911 components: - type: Transform @@ -99572,7 +99506,7 @@ entities: pos: 11.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13912 components: - type: Transform @@ -99580,7 +99514,7 @@ entities: pos: 12.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13914 components: - type: Transform @@ -99588,7 +99522,7 @@ entities: pos: 11.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13916 components: - type: Transform @@ -99596,7 +99530,7 @@ entities: pos: 13.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13917 components: - type: Transform @@ -99604,7 +99538,7 @@ entities: pos: 12.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13918 components: - type: Transform @@ -99612,7 +99546,7 @@ entities: pos: 13.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13919 components: - type: Transform @@ -99620,7 +99554,7 @@ entities: pos: 12.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13931 components: - type: Transform @@ -99628,7 +99562,7 @@ entities: pos: 14.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13932 components: - type: Transform @@ -99636,7 +99570,7 @@ entities: pos: 13.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13942 components: - type: Transform @@ -99644,14 +99578,14 @@ entities: pos: 7.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13947 components: - type: Transform pos: -20.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13948 components: - type: Transform @@ -99659,7 +99593,7 @@ entities: pos: -21.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14027 components: - type: Transform @@ -99667,7 +99601,7 @@ entities: pos: 22.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14028 components: - type: Transform @@ -99675,7 +99609,7 @@ entities: pos: 22.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14029 components: - type: Transform @@ -99683,7 +99617,7 @@ entities: pos: 23.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14030 components: - type: Transform @@ -99691,7 +99625,7 @@ entities: pos: 23.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14031 components: - type: Transform @@ -99699,7 +99633,7 @@ entities: pos: 24.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14041 components: - type: Transform @@ -99707,7 +99641,7 @@ entities: pos: 21.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14042 components: - type: Transform @@ -99715,7 +99649,7 @@ entities: pos: 21.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14043 components: - type: Transform @@ -99723,7 +99657,7 @@ entities: pos: 22.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14044 components: - type: Transform @@ -99731,7 +99665,7 @@ entities: pos: 22.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14045 components: - type: Transform @@ -99739,7 +99673,7 @@ entities: pos: 23.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14062 components: - type: Transform @@ -99747,21 +99681,21 @@ entities: pos: 21.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14068 components: - type: Transform pos: 24.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14116 components: - type: Transform pos: 12.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14117 components: - type: Transform @@ -99769,7 +99703,7 @@ entities: pos: 8.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14154 components: - type: Transform @@ -99777,7 +99711,7 @@ entities: pos: 31.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14235 components: - type: Transform @@ -99785,7 +99719,7 @@ entities: pos: 43.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14255 components: - type: Transform @@ -99793,7 +99727,7 @@ entities: pos: 49.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14256 components: - type: Transform @@ -99801,21 +99735,21 @@ entities: pos: 51.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14279 components: - type: Transform pos: 54.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14303 components: - type: Transform pos: 52.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14399 components: - type: Transform @@ -99823,14 +99757,14 @@ entities: pos: 32.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14400 components: - type: Transform pos: 32.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14406 components: - type: Transform @@ -99838,7 +99772,7 @@ entities: pos: 27.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14411 components: - type: Transform @@ -99846,14 +99780,14 @@ entities: pos: 28.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14425 components: - type: Transform pos: 27.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14427 components: - type: Transform @@ -99861,7 +99795,7 @@ entities: pos: 27.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14428 components: - type: Transform @@ -99869,7 +99803,7 @@ entities: pos: 26.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14506 components: - type: Transform @@ -99877,7 +99811,7 @@ entities: pos: 47.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14508 components: - type: Transform @@ -99885,7 +99819,7 @@ entities: pos: 46.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14520 components: - type: Transform @@ -99893,7 +99827,7 @@ entities: pos: 42.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14533 components: - type: Transform @@ -99901,7 +99835,7 @@ entities: pos: 46.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14558 components: - type: Transform @@ -99909,7 +99843,7 @@ entities: pos: 14.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14559 components: - type: Transform @@ -99917,7 +99851,7 @@ entities: pos: 14.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14560 components: - type: Transform @@ -99925,7 +99859,7 @@ entities: pos: 15.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14561 components: - type: Transform @@ -99933,14 +99867,14 @@ entities: pos: 15.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14582 components: - type: Transform pos: 33.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14625 components: - type: Transform @@ -99948,7 +99882,7 @@ entities: pos: 24.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14626 components: - type: Transform @@ -99956,7 +99890,7 @@ entities: pos: 23.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14728 components: - type: Transform @@ -99964,14 +99898,14 @@ entities: pos: 37.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14729 components: - type: Transform pos: 37.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14734 components: - type: Transform @@ -99979,7 +99913,7 @@ entities: pos: 24.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14735 components: - type: Transform @@ -99987,14 +99921,14 @@ entities: pos: 23.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14761 components: - type: Transform pos: 36.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14849 components: - type: Transform @@ -100002,7 +99936,7 @@ entities: pos: 6.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14874 components: - type: Transform @@ -100010,7 +99944,7 @@ entities: pos: 21.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14881 components: - type: Transform @@ -100018,7 +99952,7 @@ entities: pos: 19.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14900 components: - type: Transform @@ -100026,7 +99960,7 @@ entities: pos: 5.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14901 components: - type: Transform @@ -100034,14 +99968,14 @@ entities: pos: 9.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14930 components: - type: Transform pos: 14.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14976 components: - type: Transform @@ -100049,21 +99983,21 @@ entities: pos: -36.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14984 components: - type: Transform pos: -37.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14985 components: - type: Transform pos: -36.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14986 components: - type: Transform @@ -100071,7 +100005,7 @@ entities: pos: -37.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15083 components: - type: Transform @@ -100079,7 +100013,7 @@ entities: pos: -55.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15107 components: - type: Transform @@ -100087,7 +100021,7 @@ entities: pos: -53.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15110 components: - type: Transform @@ -100095,7 +100029,7 @@ entities: pos: -49.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15121 components: - type: Transform @@ -100103,14 +100037,14 @@ entities: pos: -48.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15126 components: - type: Transform pos: -39.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15229 components: - type: Transform @@ -100118,7 +100052,7 @@ entities: pos: -41.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15230 components: - type: Transform @@ -100126,7 +100060,7 @@ entities: pos: -42.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15245 components: - type: Transform @@ -100134,14 +100068,14 @@ entities: pos: -40.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15285 components: - type: Transform pos: -34.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15288 components: - type: Transform @@ -100149,7 +100083,7 @@ entities: pos: -30.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15292 components: - type: Transform @@ -100157,7 +100091,7 @@ entities: pos: -42.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15293 components: - type: Transform @@ -100165,7 +100099,7 @@ entities: pos: -40.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15338 components: - type: Transform @@ -100173,7 +100107,7 @@ entities: pos: -7.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15346 components: - type: Transform @@ -100181,7 +100115,7 @@ entities: pos: -7.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15397 components: - type: Transform @@ -100189,7 +100123,7 @@ entities: pos: -19.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15446 components: - type: Transform @@ -100197,14 +100131,14 @@ entities: pos: 39.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15456 components: - type: Transform pos: 40.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15458 components: - type: Transform @@ -100212,7 +100146,7 @@ entities: pos: 39.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15459 components: - type: Transform @@ -100220,7 +100154,7 @@ entities: pos: 40.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15469 components: - type: Transform @@ -100228,7 +100162,7 @@ entities: pos: 31.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15483 components: - type: Transform @@ -100236,7 +100170,7 @@ entities: pos: 32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15488 components: - type: Transform @@ -100244,7 +100178,7 @@ entities: pos: 34.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15492 components: - type: Transform @@ -100252,7 +100186,7 @@ entities: pos: 32.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15505 components: - type: Transform @@ -100268,7 +100202,7 @@ entities: pos: 55.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15602 components: - type: Transform @@ -100276,14 +100210,14 @@ entities: pos: 56.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15666 components: - type: Transform pos: -15.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15688 components: - type: Transform @@ -100291,14 +100225,14 @@ entities: pos: -19.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15721 components: - type: Transform pos: -13.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15726 components: - type: Transform @@ -100306,7 +100240,7 @@ entities: pos: -17.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15729 components: - type: Transform @@ -100314,28 +100248,28 @@ entities: pos: -20.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15795 components: - type: Transform pos: -11.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15803 components: - type: Transform pos: -6.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15807 components: - type: Transform pos: -7.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15808 components: - type: Transform @@ -100343,7 +100277,7 @@ entities: pos: -7.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15824 components: - type: Transform @@ -100351,7 +100285,7 @@ entities: pos: -31.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15829 components: - type: Transform @@ -100359,14 +100293,14 @@ entities: pos: -30.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15837 components: - type: Transform pos: -28.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15866 components: - type: Transform @@ -100374,7 +100308,7 @@ entities: pos: -25.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15911 components: - type: Transform @@ -100382,14 +100316,14 @@ entities: pos: -25.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15922 components: - type: Transform pos: 3.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15923 components: - type: Transform @@ -100397,7 +100331,7 @@ entities: pos: -8.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15924 components: - type: Transform @@ -100405,21 +100339,21 @@ entities: pos: -9.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15925 components: - type: Transform pos: 4.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16123 components: - type: Transform pos: 49.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16124 components: - type: Transform @@ -100427,14 +100361,14 @@ entities: pos: 45.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16135 components: - type: Transform pos: 39.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16142 components: - type: Transform @@ -100442,21 +100376,21 @@ entities: pos: -17.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16143 components: - type: Transform pos: -16.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16144 components: - type: Transform pos: -17.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16172 components: - type: Transform @@ -100464,14 +100398,14 @@ entities: pos: -12.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16235 components: - type: Transform pos: 6.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16254 components: - type: Transform @@ -100479,21 +100413,21 @@ entities: pos: 23.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16255 components: - type: Transform pos: 25.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16256 components: - type: Transform pos: 26.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16276 components: - type: Transform @@ -100501,7 +100435,7 @@ entities: pos: 25.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16321 components: - type: Transform @@ -100509,7 +100443,7 @@ entities: pos: 35.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16322 components: - type: Transform @@ -100517,7 +100451,7 @@ entities: pos: 34.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16341 components: - type: Transform @@ -100525,7 +100459,7 @@ entities: pos: 33.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16342 components: - type: Transform @@ -100533,21 +100467,21 @@ entities: pos: 34.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16352 components: - type: Transform pos: 31.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16374 components: - type: Transform pos: 18.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16388 components: - type: Transform @@ -100555,7 +100489,7 @@ entities: pos: 8.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16412 components: - type: Transform @@ -100563,14 +100497,14 @@ entities: pos: 10.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16418 components: - type: Transform pos: 7.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16419 components: - type: Transform @@ -100578,14 +100512,14 @@ entities: pos: 3.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16420 components: - type: Transform pos: 8.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16435 components: - type: Transform @@ -100593,14 +100527,14 @@ entities: pos: 3.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16444 components: - type: Transform pos: 5.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16445 components: - type: Transform @@ -100608,7 +100542,7 @@ entities: pos: 3.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16461 components: - type: Transform @@ -100616,14 +100550,14 @@ entities: pos: 3.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16471 components: - type: Transform pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16488 components: - type: Transform @@ -100631,7 +100565,7 @@ entities: pos: 0.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16540 components: - type: Transform @@ -100639,7 +100573,7 @@ entities: pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16541 components: - type: Transform @@ -100647,7 +100581,7 @@ entities: pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16791 components: - type: Transform @@ -100669,7 +100603,7 @@ entities: pos: -12.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 17607 components: - type: Transform @@ -100677,7 +100611,7 @@ entities: pos: 16.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 17608 components: - type: Transform @@ -100685,7 +100619,7 @@ entities: pos: 17.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18051 components: - type: Transform @@ -100693,7 +100627,7 @@ entities: pos: 55.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18374 components: - type: Transform @@ -100701,21 +100635,21 @@ entities: pos: 61.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18433 components: - type: Transform pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18434 components: - type: Transform pos: 61.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18435 components: - type: Transform @@ -100723,7 +100657,7 @@ entities: pos: 53.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18436 components: - type: Transform @@ -100731,7 +100665,7 @@ entities: pos: 53.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18736 components: - type: Transform @@ -100739,21 +100673,21 @@ entities: pos: 33.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 19077 components: - type: Transform pos: 31.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 19078 components: - type: Transform pos: 30.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21140 components: - type: Transform @@ -100805,7 +100739,7 @@ entities: pos: -9.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22201 components: - type: Transform @@ -100813,7 +100747,7 @@ entities: pos: -5.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22274 components: - type: Transform @@ -100851,7 +100785,7 @@ entities: pos: 0.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23497 components: - type: Transform @@ -100882,14 +100816,14 @@ entities: pos: -10.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23532 components: - type: Transform pos: -10.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23541 components: - type: Transform @@ -100897,7 +100831,7 @@ entities: pos: -42.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23672 components: - type: Transform @@ -100905,7 +100839,7 @@ entities: pos: -24.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23702 components: - type: Transform @@ -100913,7 +100847,7 @@ entities: pos: -2.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23705 components: - type: Transform @@ -100921,7 +100855,7 @@ entities: pos: 0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23896 components: - type: Transform @@ -100929,7 +100863,7 @@ entities: pos: 59.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23897 components: - type: Transform @@ -100937,7 +100871,7 @@ entities: pos: 60.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 24293 components: - type: Transform @@ -100999,14 +100933,14 @@ entities: pos: -15.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25559 components: - type: Transform pos: -10.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25560 components: - type: Transform @@ -101014,7 +100948,7 @@ entities: pos: -10.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 26448 components: - type: Transform @@ -101156,14 +101090,14 @@ entities: pos: -8.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29690 components: - type: Transform pos: 8.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29694 components: - type: Transform @@ -101171,7 +101105,7 @@ entities: pos: 7.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 29696 components: - type: Transform @@ -101179,14 +101113,14 @@ entities: pos: 8.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29700 components: - type: Transform pos: 12.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasPipeFourway entities: - uid: 666 @@ -101195,35 +101129,35 @@ entities: pos: 56.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 667 components: - type: Transform pos: 55.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7344 components: - type: Transform pos: 13.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7350 components: - type: Transform pos: 1.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7765 components: - type: Transform pos: -23.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8154 components: - type: Transform @@ -101279,203 +101213,203 @@ entities: pos: -29.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13182 components: - type: Transform pos: -19.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13206 components: - type: Transform pos: -20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13216 components: - type: Transform pos: -10.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13268 components: - type: Transform pos: 1.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13317 components: - type: Transform pos: 1.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13387 components: - type: Transform pos: 31.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13459 components: - type: Transform pos: -40.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13479 components: - type: Transform pos: -0.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13518 components: - type: Transform pos: -11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13521 components: - type: Transform pos: 40.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13536 components: - type: Transform pos: 1.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13570 components: - type: Transform pos: -31.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13854 components: - type: Transform pos: -21.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13887 components: - type: Transform pos: -14.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14073 components: - type: Transform pos: 23.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14298 components: - type: Transform pos: 42.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14316 components: - type: Transform pos: 44.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14453 components: - type: Transform pos: 42.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14477 components: - type: Transform pos: 47.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14696 components: - type: Transform pos: 30.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14697 components: - type: Transform pos: 31.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14790 components: - type: Transform pos: -42.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14796 components: - type: Transform pos: -40.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14811 components: - type: Transform pos: -42.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15381 components: - type: Transform pos: -19.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15619 components: - type: Transform pos: -8.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15620 components: - type: Transform pos: -5.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15656 components: - type: Transform pos: -13.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15677 components: - type: Transform @@ -101489,35 +101423,35 @@ entities: pos: -17.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15745 components: - type: Transform pos: -19.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15855 components: - type: Transform pos: -29.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16019 components: - type: Transform pos: -0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16265 components: - type: Transform pos: 24.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21173 components: - type: Transform @@ -101532,6 +101466,45 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' +- proto: GasPipeSensorDistribution + entities: + - uid: 10285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 8179 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 10182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPipeSensorWaste + entities: + - uid: 6622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeStraight entities: - uid: 46 @@ -101540,7 +101513,7 @@ entities: pos: -53.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 48 components: - type: Transform @@ -101548,7 +101521,7 @@ entities: pos: -42.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 49 components: - type: Transform @@ -101556,14 +101529,14 @@ entities: pos: -42.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 50 components: - type: Transform pos: -53.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 54 components: - type: Transform @@ -101571,7 +101544,7 @@ entities: pos: -43.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 55 components: - type: Transform @@ -101579,14 +101552,14 @@ entities: pos: -44.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 231 components: - type: Transform pos: -19.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 253 components: - type: Transform @@ -101594,7 +101567,7 @@ entities: pos: -31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 254 components: - type: Transform @@ -101614,7 +101587,7 @@ entities: pos: -42.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 881 components: - type: Transform @@ -101622,7 +101595,7 @@ entities: pos: -43.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 882 components: - type: Transform @@ -101630,7 +101603,7 @@ entities: pos: -44.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 883 components: - type: Transform @@ -101638,7 +101611,7 @@ entities: pos: -45.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 895 components: - type: Transform @@ -101646,7 +101619,7 @@ entities: pos: -46.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 900 components: - type: Transform @@ -101654,7 +101627,7 @@ entities: pos: -45.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 906 components: - type: Transform @@ -101662,7 +101635,7 @@ entities: pos: -46.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1063 components: - type: Transform @@ -101670,7 +101643,7 @@ entities: pos: -41.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 1093 components: - type: Transform @@ -101678,7 +101651,7 @@ entities: pos: 30.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 1636 components: - type: Transform @@ -101686,7 +101659,7 @@ entities: pos: -19.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1637 components: - type: Transform @@ -101694,7 +101667,7 @@ entities: pos: -13.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2046 components: - type: Transform @@ -101702,7 +101675,7 @@ entities: pos: -42.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2113 components: - type: Transform @@ -101710,7 +101683,7 @@ entities: pos: -43.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2115 components: - type: Transform @@ -101718,7 +101691,7 @@ entities: pos: -43.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2252 components: - type: Transform @@ -101726,7 +101699,7 @@ entities: pos: 1.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2293 components: - type: Transform @@ -101734,7 +101707,7 @@ entities: pos: -16.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2394 components: - type: Transform @@ -101742,7 +101715,7 @@ entities: pos: 29.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2658 components: - type: Transform @@ -101750,7 +101723,7 @@ entities: pos: -42.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2761 components: - type: Transform @@ -101758,14 +101731,14 @@ entities: pos: -24.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2762 components: - type: Transform pos: 33.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3032 components: - type: Transform @@ -101773,14 +101746,14 @@ entities: pos: 0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3202 components: - type: Transform pos: 34.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3205 components: - type: Transform @@ -101788,7 +101761,7 @@ entities: pos: 34.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3282 components: - type: Transform @@ -101796,7 +101769,7 @@ entities: pos: 35.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3586 components: - type: Transform @@ -101804,7 +101777,7 @@ entities: pos: -41.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3951 components: - type: Transform @@ -101812,7 +101785,7 @@ entities: pos: -12.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5060 components: - type: Transform @@ -101820,7 +101793,7 @@ entities: pos: 16.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5456 components: - type: Transform @@ -101828,7 +101801,7 @@ entities: pos: 34.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6023 components: - type: Transform @@ -101836,7 +101809,7 @@ entities: pos: -24.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6240 components: - type: Transform @@ -101851,7 +101824,7 @@ entities: pos: 1.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7360 components: - type: Transform @@ -101859,7 +101832,7 @@ entities: pos: 2.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7732 components: - type: Transform @@ -101948,15 +101921,7 @@ entities: pos: -22.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8181 components: - type: Transform @@ -102017,7 +101982,7 @@ entities: pos: -15.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8211 components: - type: Transform @@ -102041,7 +102006,7 @@ entities: pos: -25.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8214 components: - type: Transform @@ -102065,7 +102030,7 @@ entities: pos: -25.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8250 components: - type: Transform @@ -102556,14 +102521,14 @@ entities: pos: -36.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8653 components: - type: Transform pos: -36.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8664 components: - type: Transform @@ -102601,7 +102566,7 @@ entities: pos: -30.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8673 components: - type: Transform @@ -102609,7 +102574,7 @@ entities: pos: -29.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8676 components: - type: Transform @@ -102617,7 +102582,7 @@ entities: pos: -35.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8678 components: - type: Transform @@ -102625,7 +102590,7 @@ entities: pos: -33.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8679 components: - type: Transform @@ -102633,7 +102598,7 @@ entities: pos: -32.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8681 components: - type: Transform @@ -102641,7 +102606,7 @@ entities: pos: -30.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8682 components: - type: Transform @@ -102649,7 +102614,7 @@ entities: pos: -13.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8692 components: - type: Transform @@ -102664,7 +102629,7 @@ entities: pos: -21.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8701 components: - type: Transform @@ -102672,7 +102637,7 @@ entities: pos: -20.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8702 components: - type: Transform @@ -102680,7 +102645,7 @@ entities: pos: -20.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8703 components: - type: Transform @@ -102688,7 +102653,7 @@ entities: pos: -20.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8704 components: - type: Transform @@ -102696,7 +102661,7 @@ entities: pos: -20.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8705 components: - type: Transform @@ -102704,7 +102669,7 @@ entities: pos: -20.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8706 components: - type: Transform @@ -102712,7 +102677,7 @@ entities: pos: 0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8707 components: - type: Transform @@ -102720,7 +102685,7 @@ entities: pos: -20.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8708 components: - type: Transform @@ -102728,7 +102693,7 @@ entities: pos: -20.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8710 components: - type: Transform @@ -102736,7 +102701,7 @@ entities: pos: -20.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8711 components: - type: Transform @@ -102744,7 +102709,7 @@ entities: pos: -20.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8714 components: - type: Transform @@ -102752,7 +102717,7 @@ entities: pos: -21.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8715 components: - type: Transform @@ -102760,231 +102725,231 @@ entities: pos: -22.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8716 components: - type: Transform pos: -23.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8717 components: - type: Transform pos: -23.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8718 components: - type: Transform pos: -23.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8719 components: - type: Transform pos: -23.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8720 components: - type: Transform pos: -23.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8721 components: - type: Transform pos: -23.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8722 components: - type: Transform pos: -23.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8723 components: - type: Transform pos: -23.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8724 components: - type: Transform pos: -23.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8725 components: - type: Transform pos: -23.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8726 components: - type: Transform pos: -23.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8727 components: - type: Transform pos: -23.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8728 components: - type: Transform pos: -23.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8729 components: - type: Transform pos: -23.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8730 components: - type: Transform pos: -23.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8731 components: - type: Transform pos: -23.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8732 components: - type: Transform pos: -24.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8733 components: - type: Transform pos: -24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8734 components: - type: Transform pos: -24.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8735 components: - type: Transform pos: -24.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8736 components: - type: Transform pos: -24.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8737 components: - type: Transform pos: -24.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8741 components: - type: Transform pos: -24.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8742 components: - type: Transform pos: -24.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8743 components: - type: Transform pos: -24.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8744 components: - type: Transform pos: -24.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8745 components: - type: Transform pos: -24.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8746 components: - type: Transform pos: -24.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8747 components: - type: Transform pos: -24.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8748 components: - type: Transform pos: -24.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8749 components: - type: Transform pos: -24.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8750 components: - type: Transform pos: -24.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8751 components: - type: Transform @@ -102992,7 +102957,7 @@ entities: pos: -23.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8752 components: - type: Transform @@ -103000,7 +102965,7 @@ entities: pos: -22.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8756 components: - type: Transform @@ -103008,7 +102973,7 @@ entities: pos: -21.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8757 components: - type: Transform @@ -103016,7 +102981,7 @@ entities: pos: -21.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8759 components: - type: Transform @@ -103024,7 +102989,7 @@ entities: pos: -17.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8760 components: - type: Transform @@ -103032,7 +102997,7 @@ entities: pos: -21.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8762 components: - type: Transform @@ -103040,7 +103005,7 @@ entities: pos: -21.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8763 components: - type: Transform @@ -103048,7 +103013,7 @@ entities: pos: -21.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8764 components: - type: Transform @@ -103056,7 +103021,7 @@ entities: pos: -21.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8765 components: - type: Transform @@ -103064,7 +103029,7 @@ entities: pos: -21.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8766 components: - type: Transform @@ -103072,7 +103037,7 @@ entities: pos: -21.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8767 components: - type: Transform @@ -103080,14 +103045,14 @@ entities: pos: -21.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8772 components: - type: Transform pos: -17.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8773 components: - type: Transform @@ -103160,35 +103125,35 @@ entities: pos: -18.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8816 components: - type: Transform pos: -27.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8817 components: - type: Transform pos: -27.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8822 components: - type: Transform pos: -31.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8832 components: - type: Transform pos: -21.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8839 components: - type: Transform @@ -103250,7 +103215,7 @@ entities: pos: -27.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8909 components: - type: Transform @@ -103281,42 +103246,42 @@ entities: pos: -26.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8979 components: - type: Transform pos: -26.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8980 components: - type: Transform pos: -26.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8982 components: - type: Transform pos: -26.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8983 components: - type: Transform pos: -26.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8985 components: - type: Transform pos: -26.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8987 components: - type: Transform @@ -103324,7 +103289,7 @@ entities: pos: -12.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8990 components: - type: Transform @@ -103347,7 +103312,7 @@ entities: pos: -25.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9021 components: - type: Transform @@ -103371,7 +103336,7 @@ entities: pos: -19.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9122 components: - type: Transform @@ -103379,7 +103344,7 @@ entities: pos: -20.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9123 components: - type: Transform @@ -103387,14 +103352,14 @@ entities: pos: -19.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9127 components: - type: Transform pos: -27.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9130 components: - type: Transform @@ -103409,7 +103374,7 @@ entities: pos: 17.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9391 components: - type: Transform @@ -103417,7 +103382,7 @@ entities: pos: 16.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9392 components: - type: Transform @@ -103425,7 +103390,7 @@ entities: pos: 17.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9408 components: - type: Transform @@ -103433,7 +103398,7 @@ entities: pos: 16.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9409 components: - type: Transform @@ -103441,84 +103406,84 @@ entities: pos: 17.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9413 components: - type: Transform pos: 0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9414 components: - type: Transform pos: 0.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9415 components: - type: Transform pos: 0.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9416 components: - type: Transform pos: 0.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9417 components: - type: Transform pos: 0.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9418 components: - type: Transform pos: 0.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9420 components: - type: Transform pos: 0.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9421 components: - type: Transform pos: 0.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9611 components: - type: Transform pos: -31.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9613 components: - type: Transform pos: -31.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9614 components: - type: Transform pos: -31.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9620 components: - type: Transform @@ -103538,7 +103503,7 @@ entities: pos: -31.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9624 components: - type: Transform @@ -103557,7 +103522,7 @@ entities: pos: -21.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9628 components: - type: Transform @@ -103565,7 +103530,7 @@ entities: pos: -20.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9629 components: - type: Transform @@ -103573,7 +103538,7 @@ entities: pos: -18.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9631 components: - type: Transform @@ -103581,7 +103546,7 @@ entities: pos: -20.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9753 components: - type: Transform @@ -103609,7 +103574,7 @@ entities: pos: 0.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 10183 components: - type: Transform @@ -103617,7 +103582,7 @@ entities: pos: -12.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 10194 components: - type: Transform @@ -103625,7 +103590,7 @@ entities: pos: -52.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 10281 components: - type: Transform @@ -103633,42 +103598,42 @@ entities: pos: -45.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 10390 components: - type: Transform pos: 1.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11032 components: - type: Transform pos: 43.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11033 components: - type: Transform pos: 43.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11034 components: - type: Transform pos: 43.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11035 components: - type: Transform pos: 43.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11241 components: - type: Transform @@ -103676,7 +103641,7 @@ entities: pos: 12.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11242 components: - type: Transform @@ -103684,14 +103649,14 @@ entities: pos: 14.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11286 components: - type: Transform pos: -49.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11288 components: - type: Transform @@ -103699,7 +103664,7 @@ entities: pos: -47.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11290 components: - type: Transform @@ -103707,7 +103672,7 @@ entities: pos: -51.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11300 components: - type: Transform @@ -103715,7 +103680,7 @@ entities: pos: -46.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11527 components: - type: Transform @@ -103723,7 +103688,7 @@ entities: pos: -50.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11539 components: - type: Transform @@ -103731,7 +103696,7 @@ entities: pos: -48.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11595 components: - type: Transform @@ -103739,7 +103704,7 @@ entities: pos: -0.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12299 components: - type: Transform @@ -103747,7 +103712,7 @@ entities: pos: 15.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12556 components: - type: Transform @@ -103755,7 +103720,7 @@ entities: pos: 13.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12787 components: - type: Transform @@ -103763,7 +103728,7 @@ entities: pos: 61.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13144 components: - type: Transform @@ -103771,7 +103736,7 @@ entities: pos: -24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13145 components: - type: Transform @@ -103779,7 +103744,7 @@ entities: pos: -25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13146 components: - type: Transform @@ -103787,7 +103752,7 @@ entities: pos: -26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13147 components: - type: Transform @@ -103795,7 +103760,7 @@ entities: pos: -27.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13148 components: - type: Transform @@ -103803,7 +103768,7 @@ entities: pos: -28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13149 components: - type: Transform @@ -103811,7 +103776,7 @@ entities: pos: -29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13150 components: - type: Transform @@ -103819,7 +103784,7 @@ entities: pos: -30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13153 components: - type: Transform @@ -103827,7 +103792,7 @@ entities: pos: -33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13155 components: - type: Transform @@ -103835,7 +103800,7 @@ entities: pos: -35.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13156 components: - type: Transform @@ -103843,7 +103808,7 @@ entities: pos: -36.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13157 components: - type: Transform @@ -103851,7 +103816,7 @@ entities: pos: -37.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13158 components: - type: Transform @@ -103859,7 +103824,7 @@ entities: pos: -38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13160 components: - type: Transform @@ -103867,7 +103832,7 @@ entities: pos: -40.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13161 components: - type: Transform @@ -103875,7 +103840,7 @@ entities: pos: -41.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13162 components: - type: Transform @@ -103883,7 +103848,7 @@ entities: pos: -25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13163 components: - type: Transform @@ -103891,7 +103856,7 @@ entities: pos: -26.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13164 components: - type: Transform @@ -103899,7 +103864,7 @@ entities: pos: -27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13165 components: - type: Transform @@ -103907,7 +103872,7 @@ entities: pos: -28.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13167 components: - type: Transform @@ -103915,7 +103880,7 @@ entities: pos: -30.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13168 components: - type: Transform @@ -103923,7 +103888,7 @@ entities: pos: -31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13169 components: - type: Transform @@ -103931,7 +103896,7 @@ entities: pos: -32.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13171 components: - type: Transform @@ -103939,7 +103904,7 @@ entities: pos: -34.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13172 components: - type: Transform @@ -103947,7 +103912,7 @@ entities: pos: -35.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13173 components: - type: Transform @@ -103955,7 +103920,7 @@ entities: pos: -36.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13174 components: - type: Transform @@ -103963,7 +103928,7 @@ entities: pos: -37.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13176 components: - type: Transform @@ -103971,7 +103936,7 @@ entities: pos: -39.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13179 components: - type: Transform @@ -103979,7 +103944,7 @@ entities: pos: -23.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13181 components: - type: Transform @@ -103987,7 +103952,7 @@ entities: pos: -21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13183 components: - type: Transform @@ -103995,7 +103960,7 @@ entities: pos: -19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13184 components: - type: Transform @@ -104003,7 +103968,7 @@ entities: pos: -18.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13185 components: - type: Transform @@ -104011,7 +103976,7 @@ entities: pos: -17.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13186 components: - type: Transform @@ -104019,7 +103984,7 @@ entities: pos: -16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13188 components: - type: Transform @@ -104027,7 +103992,7 @@ entities: pos: -14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13189 components: - type: Transform @@ -104035,7 +104000,7 @@ entities: pos: -13.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13190 components: - type: Transform @@ -104043,7 +104008,7 @@ entities: pos: -12.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13191 components: - type: Transform @@ -104051,7 +104016,7 @@ entities: pos: -11.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13193 components: - type: Transform @@ -104059,7 +104024,7 @@ entities: pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13195 components: - type: Transform @@ -104067,7 +104032,7 @@ entities: pos: -7.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13196 components: - type: Transform @@ -104075,7 +104040,7 @@ entities: pos: -6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13197 components: - type: Transform @@ -104083,7 +104048,7 @@ entities: pos: -5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13198 components: - type: Transform @@ -104091,7 +104056,7 @@ entities: pos: -4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13199 components: - type: Transform @@ -104099,7 +104064,7 @@ entities: pos: -3.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13203 components: - type: Transform @@ -104107,7 +104072,7 @@ entities: pos: -22.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13204 components: - type: Transform @@ -104115,7 +104080,7 @@ entities: pos: -21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13205 components: - type: Transform @@ -104123,7 +104088,7 @@ entities: pos: -20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13207 components: - type: Transform @@ -104131,7 +104096,7 @@ entities: pos: -18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13208 components: - type: Transform @@ -104139,7 +104104,7 @@ entities: pos: -17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13209 components: - type: Transform @@ -104147,7 +104112,7 @@ entities: pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13211 components: - type: Transform @@ -104155,7 +104120,7 @@ entities: pos: -14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13212 components: - type: Transform @@ -104163,7 +104128,7 @@ entities: pos: -13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13213 components: - type: Transform @@ -104171,7 +104136,7 @@ entities: pos: -12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13214 components: - type: Transform @@ -104179,7 +104144,7 @@ entities: pos: -10.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13215 components: - type: Transform @@ -104187,7 +104152,7 @@ entities: pos: -10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13217 components: - type: Transform @@ -104195,7 +104160,7 @@ entities: pos: -8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13218 components: - type: Transform @@ -104203,7 +104168,7 @@ entities: pos: -7.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13219 components: - type: Transform @@ -104211,7 +104176,7 @@ entities: pos: -6.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13220 components: - type: Transform @@ -104219,7 +104184,7 @@ entities: pos: -5.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13221 components: - type: Transform @@ -104227,7 +104192,7 @@ entities: pos: -4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13222 components: - type: Transform @@ -104235,7 +104200,7 @@ entities: pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13224 components: - type: Transform @@ -104243,7 +104208,7 @@ entities: pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13225 components: - type: Transform @@ -104251,7 +104216,7 @@ entities: pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13226 components: - type: Transform @@ -104259,14 +104224,14 @@ entities: pos: 0.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13227 components: - type: Transform pos: 1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13228 components: - type: Transform @@ -104274,21 +104239,21 @@ entities: pos: 0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13232 components: - type: Transform pos: -1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13233 components: - type: Transform pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13234 components: - type: Transform @@ -104296,7 +104261,7 @@ entities: pos: 0.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13235 components: - type: Transform @@ -104304,7 +104269,7 @@ entities: pos: 1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13236 components: - type: Transform @@ -104312,7 +104277,7 @@ entities: pos: 2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13237 components: - type: Transform @@ -104320,7 +104285,7 @@ entities: pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13238 components: - type: Transform @@ -104328,7 +104293,7 @@ entities: pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13239 components: - type: Transform @@ -104336,126 +104301,126 @@ entities: pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13248 components: - type: Transform pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13249 components: - type: Transform pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13250 components: - type: Transform pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13251 components: - type: Transform pos: -0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13252 components: - type: Transform pos: -0.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13253 components: - type: Transform pos: -0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13254 components: - type: Transform pos: -0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13255 components: - type: Transform pos: -0.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13257 components: - type: Transform pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13260 components: - type: Transform pos: -0.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13261 components: - type: Transform pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13263 components: - type: Transform pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13264 components: - type: Transform pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13265 components: - type: Transform pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13266 components: - type: Transform pos: -0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13267 components: - type: Transform pos: -0.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13269 components: - type: Transform pos: -0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13272 components: - type: Transform @@ -104463,126 +104428,126 @@ entities: pos: -0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13274 components: - type: Transform pos: -0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13275 components: - type: Transform pos: -0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13276 components: - type: Transform pos: -0.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13277 components: - type: Transform pos: -0.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13278 components: - type: Transform pos: -0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13279 components: - type: Transform pos: -0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13280 components: - type: Transform pos: -0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13283 components: - type: Transform pos: -0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13284 components: - type: Transform pos: -0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13285 components: - type: Transform pos: -0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13286 components: - type: Transform pos: -0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13287 components: - type: Transform pos: -0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13288 components: - type: Transform pos: -0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13290 components: - type: Transform pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13292 components: - type: Transform pos: -0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13293 components: - type: Transform pos: -0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13294 components: - type: Transform pos: -0.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13295 components: - type: Transform @@ -104590,357 +104555,357 @@ entities: pos: 1.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13297 components: - type: Transform pos: -0.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13298 components: - type: Transform pos: -0.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13299 components: - type: Transform pos: -0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13300 components: - type: Transform pos: -0.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13301 components: - type: Transform pos: -0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13302 components: - type: Transform pos: -0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13303 components: - type: Transform pos: -0.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13304 components: - type: Transform pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13305 components: - type: Transform pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13306 components: - type: Transform pos: 1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13307 components: - type: Transform pos: 1.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13308 components: - type: Transform pos: 1.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13309 components: - type: Transform pos: 1.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13311 components: - type: Transform pos: 1.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13312 components: - type: Transform pos: 1.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13314 components: - type: Transform pos: 1.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13315 components: - type: Transform pos: 1.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13316 components: - type: Transform pos: 1.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13318 components: - type: Transform pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13319 components: - type: Transform pos: 1.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13320 components: - type: Transform pos: 1.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13321 components: - type: Transform pos: 1.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13322 components: - type: Transform pos: 1.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13323 components: - type: Transform pos: 1.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13325 components: - type: Transform pos: 1.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13326 components: - type: Transform pos: 1.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13328 components: - type: Transform pos: 1.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13329 components: - type: Transform pos: 1.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13330 components: - type: Transform pos: 1.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13331 components: - type: Transform pos: 1.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13332 components: - type: Transform pos: 1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13333 components: - type: Transform pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13334 components: - type: Transform pos: 1.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13336 components: - type: Transform pos: 1.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13337 components: - type: Transform pos: 1.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13340 components: - type: Transform pos: 1.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13341 components: - type: Transform pos: 1.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13342 components: - type: Transform pos: 1.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13343 components: - type: Transform pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13344 components: - type: Transform pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13346 components: - type: Transform pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13348 components: - type: Transform pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13349 components: - type: Transform pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13352 components: - type: Transform pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13353 components: - type: Transform pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13354 components: - type: Transform pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13355 components: - type: Transform pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13356 components: - type: Transform pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13357 components: - type: Transform pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13358 components: - type: Transform pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13359 components: - type: Transform @@ -104948,7 +104913,7 @@ entities: pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13360 components: - type: Transform @@ -104956,7 +104921,7 @@ entities: pos: -0.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13361 components: - type: Transform @@ -104964,7 +104929,7 @@ entities: pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13362 components: - type: Transform @@ -104972,7 +104937,7 @@ entities: pos: 5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13363 components: - type: Transform @@ -104980,7 +104945,7 @@ entities: pos: 6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13364 components: - type: Transform @@ -104988,7 +104953,7 @@ entities: pos: 7.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13365 components: - type: Transform @@ -104996,7 +104961,7 @@ entities: pos: 8.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13366 components: - type: Transform @@ -105004,7 +104969,7 @@ entities: pos: 9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13367 components: - type: Transform @@ -105012,7 +104977,7 @@ entities: pos: 10.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13368 components: - type: Transform @@ -105020,7 +104985,7 @@ entities: pos: 11.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13371 components: - type: Transform @@ -105028,7 +104993,7 @@ entities: pos: 14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13372 components: - type: Transform @@ -105036,7 +105001,7 @@ entities: pos: 15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13373 components: - type: Transform @@ -105044,7 +105009,7 @@ entities: pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13374 components: - type: Transform @@ -105052,7 +105017,7 @@ entities: pos: 17.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13375 components: - type: Transform @@ -105060,7 +105025,7 @@ entities: pos: 18.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13377 components: - type: Transform @@ -105068,7 +105033,7 @@ entities: pos: 20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13378 components: - type: Transform @@ -105076,7 +105041,7 @@ entities: pos: 21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13379 components: - type: Transform @@ -105084,7 +105049,7 @@ entities: pos: 22.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13380 components: - type: Transform @@ -105092,7 +105057,7 @@ entities: pos: 23.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13382 components: - type: Transform @@ -105100,7 +105065,7 @@ entities: pos: 25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13384 components: - type: Transform @@ -105108,7 +105073,7 @@ entities: pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13385 components: - type: Transform @@ -105116,7 +105081,7 @@ entities: pos: 28.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13386 components: - type: Transform @@ -105124,7 +105089,7 @@ entities: pos: 29.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13388 components: - type: Transform @@ -105132,7 +105097,7 @@ entities: pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13390 components: - type: Transform @@ -105140,7 +105105,7 @@ entities: pos: 33.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13391 components: - type: Transform @@ -105148,7 +105113,7 @@ entities: pos: 34.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13392 components: - type: Transform @@ -105156,7 +105121,7 @@ entities: pos: 35.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13393 components: - type: Transform @@ -105164,7 +105129,7 @@ entities: pos: 36.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13394 components: - type: Transform @@ -105172,7 +105137,7 @@ entities: pos: 37.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13395 components: - type: Transform @@ -105180,7 +105145,7 @@ entities: pos: 38.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13396 components: - type: Transform @@ -105188,7 +105153,7 @@ entities: pos: -0.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13397 components: - type: Transform @@ -105196,7 +105161,7 @@ entities: pos: 40.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13399 components: - type: Transform @@ -105204,7 +105169,7 @@ entities: pos: 42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13401 components: - type: Transform @@ -105212,7 +105177,7 @@ entities: pos: 44.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13403 components: - type: Transform @@ -105220,7 +105185,7 @@ entities: pos: 46.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13404 components: - type: Transform @@ -105228,7 +105193,7 @@ entities: pos: 47.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13405 components: - type: Transform @@ -105236,7 +105201,7 @@ entities: pos: 48.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13407 components: - type: Transform @@ -105244,7 +105209,7 @@ entities: pos: 50.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13408 components: - type: Transform @@ -105252,7 +105217,7 @@ entities: pos: 51.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13409 components: - type: Transform @@ -105260,7 +105225,7 @@ entities: pos: 52.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13410 components: - type: Transform @@ -105268,7 +105233,7 @@ entities: pos: 52.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13412 components: - type: Transform @@ -105276,7 +105241,7 @@ entities: pos: 50.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13414 components: - type: Transform @@ -105284,7 +105249,7 @@ entities: pos: 48.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13415 components: - type: Transform @@ -105292,7 +105257,7 @@ entities: pos: 47.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13416 components: - type: Transform @@ -105300,7 +105265,7 @@ entities: pos: 46.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13417 components: - type: Transform @@ -105308,7 +105273,7 @@ entities: pos: 45.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13418 components: - type: Transform @@ -105316,7 +105281,7 @@ entities: pos: 44.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13419 components: - type: Transform @@ -105324,7 +105289,7 @@ entities: pos: 43.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13421 components: - type: Transform @@ -105332,7 +105297,7 @@ entities: pos: 41.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13423 components: - type: Transform @@ -105340,7 +105305,7 @@ entities: pos: 39.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13424 components: - type: Transform @@ -105348,7 +105313,7 @@ entities: pos: 38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13425 components: - type: Transform @@ -105356,7 +105321,7 @@ entities: pos: 37.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13426 components: - type: Transform @@ -105364,7 +105329,7 @@ entities: pos: 36.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13427 components: - type: Transform @@ -105372,7 +105337,7 @@ entities: pos: 35.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13428 components: - type: Transform @@ -105380,7 +105345,7 @@ entities: pos: 34.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13429 components: - type: Transform @@ -105388,7 +105353,7 @@ entities: pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13430 components: - type: Transform @@ -105396,7 +105361,7 @@ entities: pos: 32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13432 components: - type: Transform @@ -105404,7 +105369,7 @@ entities: pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13433 components: - type: Transform @@ -105412,7 +105377,7 @@ entities: pos: 29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13434 components: - type: Transform @@ -105420,7 +105385,7 @@ entities: pos: 28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13436 components: - type: Transform @@ -105428,7 +105393,7 @@ entities: pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13437 components: - type: Transform @@ -105436,7 +105401,7 @@ entities: pos: 25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13438 components: - type: Transform @@ -105444,7 +105409,7 @@ entities: pos: 24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13440 components: - type: Transform @@ -105452,7 +105417,7 @@ entities: pos: 22.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13442 components: - type: Transform @@ -105460,7 +105425,7 @@ entities: pos: 20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13443 components: - type: Transform @@ -105468,7 +105433,7 @@ entities: pos: 19.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13444 components: - type: Transform @@ -105476,7 +105441,7 @@ entities: pos: 18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13445 components: - type: Transform @@ -105484,7 +105449,7 @@ entities: pos: 17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13446 components: - type: Transform @@ -105492,7 +105457,7 @@ entities: pos: 16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13447 components: - type: Transform @@ -105500,7 +105465,7 @@ entities: pos: 15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13449 components: - type: Transform @@ -105508,7 +105473,7 @@ entities: pos: 13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13452 components: - type: Transform @@ -105516,7 +105481,7 @@ entities: pos: 10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13453 components: - type: Transform @@ -105524,7 +105489,7 @@ entities: pos: 9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13454 components: - type: Transform @@ -105532,7 +105497,7 @@ entities: pos: 8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13455 components: - type: Transform @@ -105540,7 +105505,7 @@ entities: pos: 7.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13456 components: - type: Transform @@ -105548,7 +105513,7 @@ entities: pos: 6.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13457 components: - type: Transform @@ -105556,7 +105521,7 @@ entities: pos: 5.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13458 components: - type: Transform @@ -105564,7 +105529,7 @@ entities: pos: 4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13460 components: - type: Transform @@ -105572,7 +105537,7 @@ entities: pos: 1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13461 components: - type: Transform @@ -105580,7 +105545,7 @@ entities: pos: 1.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13462 components: - type: Transform @@ -105588,7 +105553,7 @@ entities: pos: 1.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13463 components: - type: Transform @@ -105596,7 +105561,7 @@ entities: pos: 1.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13464 components: - type: Transform @@ -105604,7 +105569,7 @@ entities: pos: 1.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13465 components: - type: Transform @@ -105612,7 +105577,7 @@ entities: pos: 1.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13466 components: - type: Transform @@ -105620,7 +105585,7 @@ entities: pos: 1.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13467 components: - type: Transform @@ -105628,7 +105593,7 @@ entities: pos: 1.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13468 components: - type: Transform @@ -105636,7 +105601,7 @@ entities: pos: 1.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13469 components: - type: Transform @@ -105644,7 +105609,7 @@ entities: pos: 1.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13472 components: - type: Transform @@ -105652,7 +105617,7 @@ entities: pos: 1.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13473 components: - type: Transform @@ -105660,7 +105625,7 @@ entities: pos: 1.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13474 components: - type: Transform @@ -105668,7 +105633,7 @@ entities: pos: 1.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13475 components: - type: Transform @@ -105676,7 +105641,7 @@ entities: pos: 1.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13476 components: - type: Transform @@ -105684,7 +105649,7 @@ entities: pos: 1.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13477 components: - type: Transform @@ -105692,7 +105657,7 @@ entities: pos: 1.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13478 components: - type: Transform @@ -105700,7 +105665,7 @@ entities: pos: 1.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13480 components: - type: Transform @@ -105708,7 +105673,7 @@ entities: pos: 1.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13481 components: - type: Transform @@ -105716,7 +105681,7 @@ entities: pos: 1.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13484 components: - type: Transform @@ -105724,7 +105689,7 @@ entities: pos: 1.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13485 components: - type: Transform @@ -105732,7 +105697,7 @@ entities: pos: 1.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13486 components: - type: Transform @@ -105740,7 +105705,7 @@ entities: pos: 1.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13487 components: - type: Transform @@ -105748,7 +105713,7 @@ entities: pos: 1.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13488 components: - type: Transform @@ -105756,7 +105721,7 @@ entities: pos: 1.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13489 components: - type: Transform @@ -105764,7 +105729,7 @@ entities: pos: 1.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13490 components: - type: Transform @@ -105772,7 +105737,7 @@ entities: pos: 1.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13493 components: - type: Transform @@ -105780,7 +105745,7 @@ entities: pos: 2.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13496 components: - type: Transform @@ -105788,7 +105753,7 @@ entities: pos: 1.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13497 components: - type: Transform @@ -105796,7 +105761,7 @@ entities: pos: 1.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13498 components: - type: Transform @@ -105804,7 +105769,7 @@ entities: pos: 1.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13500 components: - type: Transform @@ -105812,7 +105777,7 @@ entities: pos: 1.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13501 components: - type: Transform @@ -105820,7 +105785,7 @@ entities: pos: 1.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13503 components: - type: Transform @@ -105828,7 +105793,7 @@ entities: pos: 1.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13504 components: - type: Transform @@ -105836,7 +105801,7 @@ entities: pos: 1.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13505 components: - type: Transform @@ -105844,7 +105809,7 @@ entities: pos: 1.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13506 components: - type: Transform @@ -105852,7 +105817,7 @@ entities: pos: 1.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13519 components: - type: Transform @@ -105860,7 +105825,7 @@ entities: pos: -0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13520 components: - type: Transform @@ -105868,7 +105833,7 @@ entities: pos: -0.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13523 components: - type: Transform @@ -105876,7 +105841,7 @@ entities: pos: -0.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13525 components: - type: Transform @@ -105884,7 +105849,7 @@ entities: pos: -0.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13526 components: - type: Transform @@ -105892,7 +105857,7 @@ entities: pos: -0.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13527 components: - type: Transform @@ -105900,7 +105865,7 @@ entities: pos: -0.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13528 components: - type: Transform @@ -105908,7 +105873,7 @@ entities: pos: -0.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13529 components: - type: Transform @@ -105916,7 +105881,7 @@ entities: pos: -0.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13530 components: - type: Transform @@ -105924,7 +105889,7 @@ entities: pos: -0.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13534 components: - type: Transform @@ -105932,7 +105897,7 @@ entities: pos: -0.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13535 components: - type: Transform @@ -105940,7 +105905,7 @@ entities: pos: -0.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13537 components: - type: Transform @@ -105948,7 +105913,7 @@ entities: pos: -0.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13538 components: - type: Transform @@ -105956,7 +105921,7 @@ entities: pos: -0.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13539 components: - type: Transform @@ -105964,7 +105929,7 @@ entities: pos: -0.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13540 components: - type: Transform @@ -105972,7 +105937,7 @@ entities: pos: -0.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13541 components: - type: Transform @@ -105980,7 +105945,7 @@ entities: pos: -0.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13542 components: - type: Transform @@ -105988,7 +105953,7 @@ entities: pos: -0.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13543 components: - type: Transform @@ -105996,7 +105961,7 @@ entities: pos: -0.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13547 components: - type: Transform @@ -106004,7 +105969,7 @@ entities: pos: -0.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13548 components: - type: Transform @@ -106012,7 +105977,7 @@ entities: pos: -0.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13549 components: - type: Transform @@ -106020,7 +105985,7 @@ entities: pos: -0.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13550 components: - type: Transform @@ -106028,7 +105993,7 @@ entities: pos: -0.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13551 components: - type: Transform @@ -106036,7 +106001,7 @@ entities: pos: -0.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13552 components: - type: Transform @@ -106044,7 +106009,7 @@ entities: pos: -0.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13553 components: - type: Transform @@ -106052,7 +106017,7 @@ entities: pos: -0.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13554 components: - type: Transform @@ -106060,7 +106025,7 @@ entities: pos: -27.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13561 components: - type: Transform @@ -106128,21 +106093,21 @@ entities: pos: -26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13574 components: - type: Transform pos: -26.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13575 components: - type: Transform pos: -26.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13578 components: - type: Transform @@ -106150,7 +106115,7 @@ entities: pos: -25.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13579 components: - type: Transform @@ -106158,7 +106123,7 @@ entities: pos: -27.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13580 components: - type: Transform @@ -106166,7 +106131,7 @@ entities: pos: -28.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13581 components: - type: Transform @@ -106174,7 +106139,7 @@ entities: pos: -21.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13582 components: - type: Transform @@ -106198,7 +106163,7 @@ entities: pos: -25.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13591 components: - type: Transform @@ -106206,14 +106171,14 @@ entities: pos: -21.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13592 components: - type: Transform pos: -17.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13594 components: - type: Transform @@ -106221,7 +106186,7 @@ entities: pos: -17.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13596 components: - type: Transform @@ -106229,7 +106194,7 @@ entities: pos: -28.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13603 components: - type: Transform @@ -106237,7 +106202,7 @@ entities: pos: -0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13604 components: - type: Transform @@ -106245,7 +106210,7 @@ entities: pos: -1.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13605 components: - type: Transform @@ -106253,7 +106218,7 @@ entities: pos: -2.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13606 components: - type: Transform @@ -106261,7 +106226,7 @@ entities: pos: -3.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13607 components: - type: Transform @@ -106269,7 +106234,7 @@ entities: pos: -4.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13608 components: - type: Transform @@ -106277,7 +106242,7 @@ entities: pos: -5.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13609 components: - type: Transform @@ -106285,7 +106250,7 @@ entities: pos: -6.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13610 components: - type: Transform @@ -106293,7 +106258,7 @@ entities: pos: -7.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13611 components: - type: Transform @@ -106301,7 +106266,7 @@ entities: pos: -8.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13612 components: - type: Transform @@ -106309,7 +106274,7 @@ entities: pos: -9.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13613 components: - type: Transform @@ -106317,7 +106282,7 @@ entities: pos: -10.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13619 components: - type: Transform @@ -106325,7 +106290,7 @@ entities: pos: -11.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13620 components: - type: Transform @@ -106333,7 +106298,7 @@ entities: pos: -9.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13621 components: - type: Transform @@ -106341,7 +106306,7 @@ entities: pos: -8.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13622 components: - type: Transform @@ -106349,7 +106314,7 @@ entities: pos: -7.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13623 components: - type: Transform @@ -106357,7 +106322,7 @@ entities: pos: -6.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13624 components: - type: Transform @@ -106365,7 +106330,7 @@ entities: pos: -5.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13625 components: - type: Transform @@ -106373,7 +106338,7 @@ entities: pos: -4.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13626 components: - type: Transform @@ -106381,7 +106346,7 @@ entities: pos: -3.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13627 components: - type: Transform @@ -106389,7 +106354,7 @@ entities: pos: -2.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13628 components: - type: Transform @@ -106397,7 +106362,7 @@ entities: pos: -1.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13631 components: - type: Transform @@ -106405,7 +106370,7 @@ entities: pos: -1.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13633 components: - type: Transform @@ -106413,7 +106378,7 @@ entities: pos: -3.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13634 components: - type: Transform @@ -106421,7 +106386,7 @@ entities: pos: -2.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13636 components: - type: Transform @@ -106429,7 +106394,7 @@ entities: pos: -0.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13637 components: - type: Transform @@ -106437,7 +106402,7 @@ entities: pos: 0.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13638 components: - type: Transform @@ -106445,7 +106410,7 @@ entities: pos: -11.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13639 components: - type: Transform @@ -106453,7 +106418,7 @@ entities: pos: -11.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13640 components: - type: Transform @@ -106461,7 +106426,7 @@ entities: pos: -11.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13642 components: - type: Transform @@ -106469,7 +106434,7 @@ entities: pos: -11.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13643 components: - type: Transform @@ -106477,7 +106442,7 @@ entities: pos: -11.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13644 components: - type: Transform @@ -106485,7 +106450,7 @@ entities: pos: -11.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13645 components: - type: Transform @@ -106493,7 +106458,7 @@ entities: pos: -11.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13646 components: - type: Transform @@ -106501,7 +106466,7 @@ entities: pos: -10.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13647 components: - type: Transform @@ -106509,7 +106474,7 @@ entities: pos: -10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13648 components: - type: Transform @@ -106517,7 +106482,7 @@ entities: pos: -10.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13649 components: - type: Transform @@ -106525,7 +106490,7 @@ entities: pos: -10.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13650 components: - type: Transform @@ -106533,7 +106498,7 @@ entities: pos: -10.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13651 components: - type: Transform @@ -106541,7 +106506,7 @@ entities: pos: -10.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13652 components: - type: Transform @@ -106549,7 +106514,7 @@ entities: pos: -10.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13654 components: - type: Transform @@ -106557,7 +106522,7 @@ entities: pos: -10.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13655 components: - type: Transform @@ -106565,7 +106530,7 @@ entities: pos: -10.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13658 components: - type: Transform @@ -106573,7 +106538,7 @@ entities: pos: -10.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13659 components: - type: Transform @@ -106581,14 +106546,14 @@ entities: pos: -10.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13661 components: - type: Transform pos: -11.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13665 components: - type: Transform @@ -106596,7 +106561,7 @@ entities: pos: -9.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13670 components: - type: Transform @@ -106604,7 +106569,7 @@ entities: pos: -7.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13671 components: - type: Transform @@ -106612,7 +106577,7 @@ entities: pos: -6.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13672 components: - type: Transform @@ -106620,7 +106585,7 @@ entities: pos: -5.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13673 components: - type: Transform @@ -106628,7 +106593,7 @@ entities: pos: -4.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13674 components: - type: Transform @@ -106636,7 +106601,7 @@ entities: pos: -3.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13675 components: - type: Transform @@ -106644,7 +106609,7 @@ entities: pos: -2.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13676 components: - type: Transform @@ -106652,7 +106617,7 @@ entities: pos: -1.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13677 components: - type: Transform @@ -106660,7 +106625,7 @@ entities: pos: -0.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13678 components: - type: Transform @@ -106668,7 +106633,7 @@ entities: pos: 0.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13679 components: - type: Transform @@ -106676,7 +106641,7 @@ entities: pos: -1.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13680 components: - type: Transform @@ -106684,7 +106649,7 @@ entities: pos: -2.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13681 components: - type: Transform @@ -106692,7 +106657,7 @@ entities: pos: -3.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13682 components: - type: Transform @@ -106700,7 +106665,7 @@ entities: pos: -4.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13683 components: - type: Transform @@ -106708,7 +106673,7 @@ entities: pos: -5.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13684 components: - type: Transform @@ -106716,7 +106681,7 @@ entities: pos: -6.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13685 components: - type: Transform @@ -106724,21 +106689,21 @@ entities: pos: -7.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13686 components: - type: Transform pos: -8.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13687 components: - type: Transform pos: -9.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13688 components: - type: Transform @@ -106746,7 +106711,7 @@ entities: pos: -19.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13689 components: - type: Transform @@ -106754,7 +106719,7 @@ entities: pos: -20.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13690 components: - type: Transform @@ -106762,7 +106727,7 @@ entities: pos: -19.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13691 components: - type: Transform @@ -106770,7 +106735,7 @@ entities: pos: -19.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13692 components: - type: Transform @@ -106778,7 +106743,7 @@ entities: pos: -20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13693 components: - type: Transform @@ -106786,7 +106751,7 @@ entities: pos: -20.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13694 components: - type: Transform @@ -106794,7 +106759,7 @@ entities: pos: -20.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13695 components: - type: Transform @@ -106802,7 +106767,7 @@ entities: pos: -20.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13696 components: - type: Transform @@ -106810,7 +106775,7 @@ entities: pos: -19.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13697 components: - type: Transform @@ -106818,7 +106783,7 @@ entities: pos: -19.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13698 components: - type: Transform @@ -106826,7 +106791,7 @@ entities: pos: -19.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13699 components: - type: Transform @@ -106834,7 +106799,7 @@ entities: pos: -19.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13700 components: - type: Transform @@ -106842,7 +106807,7 @@ entities: pos: -19.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13701 components: - type: Transform @@ -106850,7 +106815,7 @@ entities: pos: -19.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13702 components: - type: Transform @@ -106858,7 +106823,7 @@ entities: pos: -19.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13703 components: - type: Transform @@ -106866,7 +106831,7 @@ entities: pos: -19.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13704 components: - type: Transform @@ -106874,7 +106839,7 @@ entities: pos: -19.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13705 components: - type: Transform @@ -106882,77 +106847,77 @@ entities: pos: -19.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13711 components: - type: Transform pos: -20.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13712 components: - type: Transform pos: -20.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13713 components: - type: Transform pos: -20.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13714 components: - type: Transform pos: -20.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13715 components: - type: Transform pos: -20.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13716 components: - type: Transform pos: -20.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13717 components: - type: Transform pos: -20.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13718 components: - type: Transform pos: -20.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13719 components: - type: Transform pos: -20.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13720 components: - type: Transform pos: -20.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13726 components: - type: Transform @@ -106960,7 +106925,7 @@ entities: pos: -20.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13727 components: - type: Transform @@ -106968,42 +106933,42 @@ entities: pos: -19.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13728 components: - type: Transform pos: -19.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13729 components: - type: Transform pos: -19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13730 components: - type: Transform pos: -19.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13731 components: - type: Transform pos: -19.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13732 components: - type: Transform pos: -19.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13737 components: - type: Transform @@ -107011,28 +106976,28 @@ entities: pos: -20.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13739 components: - type: Transform pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13740 components: - type: Transform pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13741 components: - type: Transform pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13760 components: - type: Transform @@ -107040,7 +107005,7 @@ entities: pos: -7.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13761 components: - type: Transform @@ -107048,14 +107013,14 @@ entities: pos: -8.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13762 components: - type: Transform pos: -8.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13769 components: - type: Transform @@ -107063,7 +107028,7 @@ entities: pos: -5.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13770 components: - type: Transform @@ -107071,7 +107036,7 @@ entities: pos: -5.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13771 components: - type: Transform @@ -107079,7 +107044,7 @@ entities: pos: -4.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13778 components: - type: Transform @@ -107087,7 +107052,7 @@ entities: pos: -10.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13779 components: - type: Transform @@ -107095,7 +107060,7 @@ entities: pos: -2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13780 components: - type: Transform @@ -107103,7 +107068,7 @@ entities: pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13781 components: - type: Transform @@ -107111,7 +107076,7 @@ entities: pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13782 components: - type: Transform @@ -107119,7 +107084,7 @@ entities: pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13783 components: - type: Transform @@ -107127,7 +107092,7 @@ entities: pos: -1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13784 components: - type: Transform @@ -107135,7 +107100,7 @@ entities: pos: 2.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13785 components: - type: Transform @@ -107143,7 +107108,7 @@ entities: pos: 3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13786 components: - type: Transform @@ -107151,7 +107116,7 @@ entities: pos: 0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13787 components: - type: Transform @@ -107159,7 +107124,7 @@ entities: pos: -0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13788 components: - type: Transform @@ -107167,7 +107132,7 @@ entities: pos: -1.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13790 components: - type: Transform @@ -107175,7 +107140,7 @@ entities: pos: -3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13791 components: - type: Transform @@ -107183,7 +107148,7 @@ entities: pos: -4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13792 components: - type: Transform @@ -107191,7 +107156,7 @@ entities: pos: -5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13794 components: - type: Transform @@ -107199,7 +107164,7 @@ entities: pos: -7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13795 components: - type: Transform @@ -107207,7 +107172,7 @@ entities: pos: -8.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13796 components: - type: Transform @@ -107215,7 +107180,7 @@ entities: pos: -9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13797 components: - type: Transform @@ -107223,7 +107188,7 @@ entities: pos: -10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13799 components: - type: Transform @@ -107231,7 +107196,7 @@ entities: pos: -12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13800 components: - type: Transform @@ -107239,7 +107204,7 @@ entities: pos: -13.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13801 components: - type: Transform @@ -107247,7 +107212,7 @@ entities: pos: -14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13804 components: - type: Transform @@ -107255,7 +107220,7 @@ entities: pos: -17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13805 components: - type: Transform @@ -107263,7 +107228,7 @@ entities: pos: -18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13806 components: - type: Transform @@ -107271,7 +107236,7 @@ entities: pos: -19.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13807 components: - type: Transform @@ -107279,7 +107244,7 @@ entities: pos: -20.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13808 components: - type: Transform @@ -107287,7 +107252,7 @@ entities: pos: -21.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13809 components: - type: Transform @@ -107295,7 +107260,7 @@ entities: pos: -20.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13810 components: - type: Transform @@ -107303,7 +107268,7 @@ entities: pos: -19.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13811 components: - type: Transform @@ -107311,7 +107276,7 @@ entities: pos: -18.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13812 components: - type: Transform @@ -107319,7 +107284,7 @@ entities: pos: -17.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13813 components: - type: Transform @@ -107327,7 +107292,7 @@ entities: pos: -11.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13814 components: - type: Transform @@ -107335,7 +107300,7 @@ entities: pos: -15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13815 components: - type: Transform @@ -107343,7 +107308,7 @@ entities: pos: -6.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13816 components: - type: Transform @@ -107351,7 +107316,7 @@ entities: pos: -13.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13817 components: - type: Transform @@ -107359,7 +107324,7 @@ entities: pos: -12.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13818 components: - type: Transform @@ -107367,7 +107332,7 @@ entities: pos: -4.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13819 components: - type: Transform @@ -107375,7 +107340,7 @@ entities: pos: -10.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13820 components: - type: Transform @@ -107383,7 +107348,7 @@ entities: pos: -2.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13821 components: - type: Transform @@ -107391,7 +107356,7 @@ entities: pos: -8.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13822 components: - type: Transform @@ -107399,7 +107364,7 @@ entities: pos: -7.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13823 components: - type: Transform @@ -107407,7 +107372,7 @@ entities: pos: -2.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13824 components: - type: Transform @@ -107415,7 +107380,7 @@ entities: pos: -5.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13826 components: - type: Transform @@ -107423,7 +107388,7 @@ entities: pos: -3.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13827 components: - type: Transform @@ -107431,7 +107396,7 @@ entities: pos: -2.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13828 components: - type: Transform @@ -107439,7 +107404,7 @@ entities: pos: -1.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13829 components: - type: Transform @@ -107447,7 +107412,7 @@ entities: pos: -21.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13830 components: - type: Transform @@ -107455,7 +107420,7 @@ entities: pos: -21.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13831 components: - type: Transform @@ -107463,7 +107428,7 @@ entities: pos: -21.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13832 components: - type: Transform @@ -107471,7 +107436,7 @@ entities: pos: -21.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13834 components: - type: Transform @@ -107479,7 +107444,7 @@ entities: pos: -21.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13835 components: - type: Transform @@ -107487,7 +107452,7 @@ entities: pos: -21.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13836 components: - type: Transform @@ -107495,7 +107460,7 @@ entities: pos: -21.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13837 components: - type: Transform @@ -107503,7 +107468,7 @@ entities: pos: -21.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13839 components: - type: Transform @@ -107511,7 +107476,7 @@ entities: pos: -21.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13840 components: - type: Transform @@ -107519,7 +107484,7 @@ entities: pos: -21.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13841 components: - type: Transform @@ -107527,7 +107492,7 @@ entities: pos: -21.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13842 components: - type: Transform @@ -107535,7 +107500,7 @@ entities: pos: -21.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13843 components: - type: Transform @@ -107543,7 +107508,7 @@ entities: pos: -22.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13844 components: - type: Transform @@ -107551,7 +107516,7 @@ entities: pos: -22.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13845 components: - type: Transform @@ -107559,7 +107524,7 @@ entities: pos: -22.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13846 components: - type: Transform @@ -107567,7 +107532,7 @@ entities: pos: -22.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13847 components: - type: Transform @@ -107575,7 +107540,7 @@ entities: pos: -22.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13848 components: - type: Transform @@ -107583,7 +107548,7 @@ entities: pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13849 components: - type: Transform @@ -107591,7 +107556,7 @@ entities: pos: -22.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13851 components: - type: Transform @@ -107599,7 +107564,7 @@ entities: pos: -22.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13852 components: - type: Transform @@ -107607,7 +107572,7 @@ entities: pos: -22.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13853 components: - type: Transform @@ -107615,7 +107580,7 @@ entities: pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13856 components: - type: Transform @@ -107623,7 +107588,7 @@ entities: pos: -21.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13857 components: - type: Transform @@ -107631,7 +107596,7 @@ entities: pos: -20.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13858 components: - type: Transform @@ -107639,7 +107604,7 @@ entities: pos: -20.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13864 components: - type: Transform @@ -107647,7 +107612,7 @@ entities: pos: -20.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13865 components: - type: Transform @@ -107655,7 +107620,7 @@ entities: pos: -20.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13866 components: - type: Transform @@ -107663,14 +107628,14 @@ entities: pos: -21.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13877 components: - type: Transform pos: -22.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13878 components: - type: Transform @@ -107678,63 +107643,63 @@ entities: pos: -20.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13879 components: - type: Transform pos: -16.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13880 components: - type: Transform pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13881 components: - type: Transform pos: -14.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13882 components: - type: Transform pos: -11.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13883 components: - type: Transform pos: -9.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13884 components: - type: Transform pos: -6.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13885 components: - type: Transform pos: -11.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13886 components: - type: Transform pos: -6.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13889 components: - type: Transform @@ -107742,7 +107707,7 @@ entities: pos: 2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13890 components: - type: Transform @@ -107750,7 +107715,7 @@ entities: pos: 2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13891 components: - type: Transform @@ -107758,7 +107723,7 @@ entities: pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13892 components: - type: Transform @@ -107766,7 +107731,7 @@ entities: pos: 0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13893 components: - type: Transform @@ -107774,7 +107739,7 @@ entities: pos: 3.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13894 components: - type: Transform @@ -107782,7 +107747,7 @@ entities: pos: 4.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13895 components: - type: Transform @@ -107790,84 +107755,84 @@ entities: pos: 3.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13920 components: - type: Transform pos: 12.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13921 components: - type: Transform pos: 12.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13922 components: - type: Transform pos: 13.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13923 components: - type: Transform pos: 13.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13924 components: - type: Transform pos: 14.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13925 components: - type: Transform pos: 14.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13926 components: - type: Transform pos: 14.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13927 components: - type: Transform pos: 13.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13928 components: - type: Transform pos: 13.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13929 components: - type: Transform pos: 14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13930 components: - type: Transform pos: 14.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13935 components: - type: Transform @@ -107875,7 +107840,7 @@ entities: pos: 11.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13937 components: - type: Transform @@ -107883,7 +107848,7 @@ entities: pos: 12.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13940 components: - type: Transform @@ -107891,7 +107856,7 @@ entities: pos: 9.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13941 components: - type: Transform @@ -107899,7 +107864,7 @@ entities: pos: 8.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13943 components: - type: Transform @@ -107907,7 +107872,7 @@ entities: pos: 7.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13944 components: - type: Transform @@ -107915,7 +107880,7 @@ entities: pos: 6.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13945 components: - type: Transform @@ -107923,7 +107888,7 @@ entities: pos: 6.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13946 components: - type: Transform @@ -107931,7 +107896,7 @@ entities: pos: 5.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13949 components: - type: Transform @@ -107939,7 +107904,7 @@ entities: pos: -21.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13950 components: - type: Transform @@ -107947,7 +107912,7 @@ entities: pos: -19.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13951 components: - type: Transform @@ -107955,7 +107920,7 @@ entities: pos: -18.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13952 components: - type: Transform @@ -107963,7 +107928,7 @@ entities: pos: -17.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13953 components: - type: Transform @@ -107971,7 +107936,7 @@ entities: pos: -16.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13954 components: - type: Transform @@ -107979,7 +107944,7 @@ entities: pos: -20.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13955 components: - type: Transform @@ -107987,7 +107952,7 @@ entities: pos: -19.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13956 components: - type: Transform @@ -107995,7 +107960,7 @@ entities: pos: -18.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13957 components: - type: Transform @@ -108003,7 +107968,7 @@ entities: pos: -17.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13958 components: - type: Transform @@ -108011,7 +107976,7 @@ entities: pos: -16.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13959 components: - type: Transform @@ -108019,7 +107984,7 @@ entities: pos: -15.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13963 components: - type: Transform @@ -108027,7 +107992,7 @@ entities: pos: 0.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13964 components: - type: Transform @@ -108035,7 +108000,7 @@ entities: pos: 2.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13965 components: - type: Transform @@ -108043,7 +108008,7 @@ entities: pos: 3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13966 components: - type: Transform @@ -108051,7 +108016,7 @@ entities: pos: 0.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13967 components: - type: Transform @@ -108059,7 +108024,7 @@ entities: pos: 1.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13968 components: - type: Transform @@ -108067,7 +108032,7 @@ entities: pos: 2.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13970 components: - type: Transform @@ -108075,7 +108040,7 @@ entities: pos: -0.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13971 components: - type: Transform @@ -108083,7 +108048,7 @@ entities: pos: -1.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13972 components: - type: Transform @@ -108091,7 +108056,7 @@ entities: pos: -2.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13973 components: - type: Transform @@ -108099,7 +108064,7 @@ entities: pos: -1.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13974 components: - type: Transform @@ -108107,7 +108072,7 @@ entities: pos: -2.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13975 components: - type: Transform @@ -108115,7 +108080,7 @@ entities: pos: -3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13976 components: - type: Transform @@ -108123,7 +108088,7 @@ entities: pos: -3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13977 components: - type: Transform @@ -108131,7 +108096,7 @@ entities: pos: -4.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13978 components: - type: Transform @@ -108139,7 +108104,7 @@ entities: pos: -5.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13979 components: - type: Transform @@ -108147,7 +108112,7 @@ entities: pos: -6.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13983 components: - type: Transform @@ -108155,7 +108120,7 @@ entities: pos: 0.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13984 components: - type: Transform @@ -108163,7 +108128,7 @@ entities: pos: 1.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13985 components: - type: Transform @@ -108171,7 +108136,7 @@ entities: pos: 2.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13987 components: - type: Transform @@ -108179,7 +108144,7 @@ entities: pos: 4.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13988 components: - type: Transform @@ -108187,7 +108152,7 @@ entities: pos: 5.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13989 components: - type: Transform @@ -108195,7 +108160,7 @@ entities: pos: 4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13991 components: - type: Transform @@ -108203,7 +108168,7 @@ entities: pos: 6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13992 components: - type: Transform @@ -108211,7 +108176,7 @@ entities: pos: 6.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13993 components: - type: Transform @@ -108219,7 +108184,7 @@ entities: pos: 7.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13994 components: - type: Transform @@ -108227,7 +108192,7 @@ entities: pos: 8.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13995 components: - type: Transform @@ -108235,7 +108200,7 @@ entities: pos: 9.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13996 components: - type: Transform @@ -108243,7 +108208,7 @@ entities: pos: 10.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13997 components: - type: Transform @@ -108251,7 +108216,7 @@ entities: pos: 11.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13998 components: - type: Transform @@ -108259,7 +108224,7 @@ entities: pos: 11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13999 components: - type: Transform @@ -108267,7 +108232,7 @@ entities: pos: 10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14000 components: - type: Transform @@ -108275,7 +108240,7 @@ entities: pos: 9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14001 components: - type: Transform @@ -108283,7 +108248,7 @@ entities: pos: 8.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14002 components: - type: Transform @@ -108291,7 +108256,7 @@ entities: pos: 7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14004 components: - type: Transform @@ -108299,14 +108264,14 @@ entities: pos: 12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14007 components: - type: Transform pos: 3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14008 components: - type: Transform @@ -108314,7 +108279,7 @@ entities: pos: 14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14009 components: - type: Transform @@ -108322,7 +108287,7 @@ entities: pos: 13.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14010 components: - type: Transform @@ -108330,7 +108295,7 @@ entities: pos: 14.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14011 components: - type: Transform @@ -108338,7 +108303,7 @@ entities: pos: 15.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14012 components: - type: Transform @@ -108346,7 +108311,7 @@ entities: pos: 14.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14013 components: - type: Transform @@ -108354,7 +108319,7 @@ entities: pos: 14.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14014 components: - type: Transform @@ -108362,7 +108327,7 @@ entities: pos: 15.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14015 components: - type: Transform @@ -108370,7 +108335,7 @@ entities: pos: 16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14016 components: - type: Transform @@ -108378,7 +108343,7 @@ entities: pos: 17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14017 components: - type: Transform @@ -108386,7 +108351,7 @@ entities: pos: 18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14019 components: - type: Transform @@ -108394,7 +108359,7 @@ entities: pos: 19.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14021 components: - type: Transform @@ -108402,7 +108367,7 @@ entities: pos: 16.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14022 components: - type: Transform @@ -108410,7 +108375,7 @@ entities: pos: 17.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14023 components: - type: Transform @@ -108418,7 +108383,7 @@ entities: pos: 18.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14024 components: - type: Transform @@ -108426,7 +108391,7 @@ entities: pos: 19.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14025 components: - type: Transform @@ -108434,7 +108399,7 @@ entities: pos: 20.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14026 components: - type: Transform @@ -108442,7 +108407,7 @@ entities: pos: 21.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14032 components: - type: Transform @@ -108450,7 +108415,7 @@ entities: pos: 24.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14033 components: - type: Transform @@ -108458,7 +108423,7 @@ entities: pos: 24.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14035 components: - type: Transform @@ -108466,7 +108431,7 @@ entities: pos: 24.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14036 components: - type: Transform @@ -108474,7 +108439,7 @@ entities: pos: 24.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14037 components: - type: Transform @@ -108482,7 +108447,7 @@ entities: pos: 24.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14038 components: - type: Transform @@ -108490,7 +108455,7 @@ entities: pos: 22.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14039 components: - type: Transform @@ -108498,7 +108463,7 @@ entities: pos: 24.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14040 components: - type: Transform @@ -108506,7 +108471,7 @@ entities: pos: 20.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14046 components: - type: Transform @@ -108514,7 +108479,7 @@ entities: pos: 23.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14047 components: - type: Transform @@ -108522,7 +108487,7 @@ entities: pos: 23.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14048 components: - type: Transform @@ -108530,7 +108495,7 @@ entities: pos: 23.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14049 components: - type: Transform @@ -108538,7 +108503,7 @@ entities: pos: 23.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14050 components: - type: Transform @@ -108546,7 +108511,7 @@ entities: pos: 23.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14051 components: - type: Transform @@ -108554,7 +108519,7 @@ entities: pos: 23.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14053 components: - type: Transform @@ -108562,7 +108527,7 @@ entities: pos: 23.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14054 components: - type: Transform @@ -108570,7 +108535,7 @@ entities: pos: 22.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14058 components: - type: Transform @@ -108578,7 +108543,7 @@ entities: pos: 13.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14063 components: - type: Transform @@ -108586,63 +108551,63 @@ entities: pos: 24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14064 components: - type: Transform pos: 24.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14065 components: - type: Transform pos: 24.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14066 components: - type: Transform pos: 24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14067 components: - type: Transform pos: 24.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14069 components: - type: Transform pos: 23.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14070 components: - type: Transform pos: 23.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14071 components: - type: Transform pos: 23.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14072 components: - type: Transform pos: 23.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14077 components: - type: Transform @@ -108650,7 +108615,7 @@ entities: pos: 24.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14078 components: - type: Transform @@ -108658,7 +108623,7 @@ entities: pos: 25.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14079 components: - type: Transform @@ -108666,224 +108631,224 @@ entities: pos: 26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14082 components: - type: Transform pos: 19.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14083 components: - type: Transform pos: 19.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14084 components: - type: Transform pos: 21.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14085 components: - type: Transform pos: 21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14086 components: - type: Transform pos: 21.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14087 components: - type: Transform pos: 21.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14090 components: - type: Transform pos: 26.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14091 components: - type: Transform pos: 26.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14092 components: - type: Transform pos: 26.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14093 components: - type: Transform pos: 26.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14094 components: - type: Transform pos: 26.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14095 components: - type: Transform pos: 26.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14096 components: - type: Transform pos: 26.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14097 components: - type: Transform pos: 26.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14098 components: - type: Transform pos: 26.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14099 components: - type: Transform pos: 26.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14100 components: - type: Transform pos: 26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14101 components: - type: Transform pos: 27.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14102 components: - type: Transform pos: 27.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14103 components: - type: Transform pos: 27.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14104 components: - type: Transform pos: 27.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14105 components: - type: Transform pos: 27.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14106 components: - type: Transform pos: 27.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14107 components: - type: Transform pos: 27.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14108 components: - type: Transform pos: 27.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14109 components: - type: Transform pos: 27.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14110 components: - type: Transform pos: 27.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14111 components: - type: Transform pos: 27.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14112 components: - type: Transform pos: 27.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14113 components: - type: Transform pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14114 components: - type: Transform pos: 27.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14118 components: - type: Transform @@ -108891,7 +108856,7 @@ entities: pos: 12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14120 components: - type: Transform @@ -108899,7 +108864,7 @@ entities: pos: 12.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14121 components: - type: Transform @@ -108907,7 +108872,7 @@ entities: pos: 13.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14122 components: - type: Transform @@ -108915,7 +108880,7 @@ entities: pos: 12.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14123 components: - type: Transform @@ -108923,7 +108888,7 @@ entities: pos: 11.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14124 components: - type: Transform @@ -108931,7 +108896,7 @@ entities: pos: 10.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14125 components: - type: Transform @@ -108939,14 +108904,14 @@ entities: pos: 9.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14126 components: - type: Transform pos: 8.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14127 components: - type: Transform @@ -108954,7 +108919,7 @@ entities: pos: 10.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14129 components: - type: Transform @@ -108962,7 +108927,7 @@ entities: pos: 9.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14132 components: - type: Transform @@ -108970,126 +108935,126 @@ entities: pos: 11.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14133 components: - type: Transform pos: 32.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14134 components: - type: Transform pos: 30.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14135 components: - type: Transform pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14136 components: - type: Transform pos: 30.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14137 components: - type: Transform pos: 30.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14138 components: - type: Transform pos: 30.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14139 components: - type: Transform pos: 30.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14141 components: - type: Transform pos: 31.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14142 components: - type: Transform pos: 31.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14143 components: - type: Transform pos: 31.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14144 components: - type: Transform pos: 31.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14145 components: - type: Transform pos: 31.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14146 components: - type: Transform pos: 31.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14147 components: - type: Transform pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14148 components: - type: Transform pos: 31.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14149 components: - type: Transform pos: 31.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14150 components: - type: Transform pos: 32.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14155 components: - type: Transform @@ -109097,7 +109062,7 @@ entities: pos: 32.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14156 components: - type: Transform @@ -109105,7 +109070,7 @@ entities: pos: 33.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14157 components: - type: Transform @@ -109113,7 +109078,7 @@ entities: pos: 34.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14158 components: - type: Transform @@ -109121,7 +109086,7 @@ entities: pos: 35.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14159 components: - type: Transform @@ -109129,7 +109094,7 @@ entities: pos: 33.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14160 components: - type: Transform @@ -109137,7 +109102,7 @@ entities: pos: 34.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14161 components: - type: Transform @@ -109145,91 +109110,91 @@ entities: pos: 35.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14162 components: - type: Transform pos: 31.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14163 components: - type: Transform pos: 31.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14164 components: - type: Transform pos: 31.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14224 components: - type: Transform pos: 43.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14225 components: - type: Transform pos: 42.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14226 components: - type: Transform pos: 42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14227 components: - type: Transform pos: 42.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14228 components: - type: Transform pos: 42.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14229 components: - type: Transform pos: 42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14231 components: - type: Transform pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14232 components: - type: Transform pos: 42.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14234 components: - type: Transform pos: 43.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14240 components: - type: Transform @@ -109237,7 +109202,7 @@ entities: pos: 42.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14241 components: - type: Transform @@ -109245,7 +109210,7 @@ entities: pos: 49.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14242 components: - type: Transform @@ -109253,28 +109218,28 @@ entities: pos: 49.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14244 components: - type: Transform pos: 51.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14245 components: - type: Transform pos: 51.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14246 components: - type: Transform pos: 51.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14248 components: - type: Transform @@ -109282,7 +109247,7 @@ entities: pos: 49.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14249 components: - type: Transform @@ -109290,7 +109255,7 @@ entities: pos: 49.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14250 components: - type: Transform @@ -109298,7 +109263,7 @@ entities: pos: 51.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14251 components: - type: Transform @@ -109306,7 +109271,7 @@ entities: pos: 51.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14252 components: - type: Transform @@ -109314,7 +109279,7 @@ entities: pos: 51.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14257 components: - type: Transform @@ -109322,7 +109287,7 @@ entities: pos: 49.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14258 components: - type: Transform @@ -109330,7 +109295,7 @@ entities: pos: 49.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14259 components: - type: Transform @@ -109338,7 +109303,7 @@ entities: pos: 51.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14260 components: - type: Transform @@ -109346,7 +109311,7 @@ entities: pos: 51.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14261 components: - type: Transform @@ -109354,7 +109319,7 @@ entities: pos: 48.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14262 components: - type: Transform @@ -109362,77 +109327,77 @@ entities: pos: 52.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14263 components: - type: Transform pos: 47.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14264 components: - type: Transform pos: 47.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14265 components: - type: Transform pos: 47.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14267 components: - type: Transform pos: 47.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14268 components: - type: Transform pos: 47.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14269 components: - type: Transform pos: 53.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14270 components: - type: Transform pos: 53.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14271 components: - type: Transform pos: 53.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14272 components: - type: Transform pos: 53.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14274 components: - type: Transform pos: 53.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14280 components: - type: Transform @@ -109440,7 +109405,7 @@ entities: pos: 53.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14281 components: - type: Transform @@ -109448,7 +109413,7 @@ entities: pos: 53.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14282 components: - type: Transform @@ -109456,7 +109421,7 @@ entities: pos: 54.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14283 components: - type: Transform @@ -109464,7 +109429,7 @@ entities: pos: 54.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14284 components: - type: Transform @@ -109472,7 +109437,7 @@ entities: pos: 50.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14285 components: - type: Transform @@ -109480,7 +109445,7 @@ entities: pos: 50.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14286 components: - type: Transform @@ -109488,7 +109453,7 @@ entities: pos: 46.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14287 components: - type: Transform @@ -109496,7 +109461,7 @@ entities: pos: 46.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14290 components: - type: Transform @@ -109504,7 +109469,7 @@ entities: pos: 52.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14291 components: - type: Transform @@ -109512,7 +109477,7 @@ entities: pos: 51.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14292 components: - type: Transform @@ -109520,7 +109485,7 @@ entities: pos: 49.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14293 components: - type: Transform @@ -109528,7 +109493,7 @@ entities: pos: 48.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14294 components: - type: Transform @@ -109536,7 +109501,7 @@ entities: pos: 47.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14295 components: - type: Transform @@ -109544,7 +109509,7 @@ entities: pos: 45.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14296 components: - type: Transform @@ -109552,7 +109517,7 @@ entities: pos: 44.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14297 components: - type: Transform @@ -109560,7 +109525,7 @@ entities: pos: 43.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14300 components: - type: Transform @@ -109568,7 +109533,7 @@ entities: pos: 49.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14301 components: - type: Transform @@ -109576,7 +109541,7 @@ entities: pos: 50.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14302 components: - type: Transform @@ -109584,35 +109549,35 @@ entities: pos: 51.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14304 components: - type: Transform pos: 52.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14305 components: - type: Transform pos: 52.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14306 components: - type: Transform pos: 52.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14307 components: - type: Transform pos: 52.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14314 components: - type: Transform @@ -109620,7 +109585,7 @@ entities: pos: 46.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14317 components: - type: Transform @@ -109628,7 +109593,7 @@ entities: pos: 43.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14318 components: - type: Transform @@ -109636,7 +109601,7 @@ entities: pos: 42.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14319 components: - type: Transform @@ -109644,7 +109609,7 @@ entities: pos: 41.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14323 components: - type: Transform @@ -109652,7 +109617,7 @@ entities: pos: 44.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14324 components: - type: Transform @@ -109660,7 +109625,7 @@ entities: pos: 44.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14325 components: - type: Transform @@ -109668,7 +109633,7 @@ entities: pos: 44.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14326 components: - type: Transform @@ -109676,7 +109641,7 @@ entities: pos: 44.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14327 components: - type: Transform @@ -109684,7 +109649,7 @@ entities: pos: 48.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14328 components: - type: Transform @@ -109692,7 +109657,7 @@ entities: pos: 48.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14329 components: - type: Transform @@ -109700,7 +109665,7 @@ entities: pos: 48.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14330 components: - type: Transform @@ -109708,28 +109673,28 @@ entities: pos: 48.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14331 components: - type: Transform pos: 42.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14332 components: - type: Transform pos: 42.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14333 components: - type: Transform pos: 42.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14335 components: - type: Transform @@ -109737,7 +109702,7 @@ entities: pos: 42.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14336 components: - type: Transform @@ -109745,7 +109710,7 @@ entities: pos: 42.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14337 components: - type: Transform @@ -109753,7 +109718,7 @@ entities: pos: 42.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14339 components: - type: Transform @@ -109761,7 +109726,7 @@ entities: pos: 42.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14340 components: - type: Transform @@ -109769,7 +109734,7 @@ entities: pos: 42.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14341 components: - type: Transform @@ -109777,7 +109742,7 @@ entities: pos: 42.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14342 components: - type: Transform @@ -109785,7 +109750,7 @@ entities: pos: 42.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14343 components: - type: Transform @@ -109793,7 +109758,7 @@ entities: pos: 42.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14344 components: - type: Transform @@ -109801,35 +109766,35 @@ entities: pos: 42.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14346 components: - type: Transform pos: 40.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14347 components: - type: Transform pos: 40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14348 components: - type: Transform pos: 40.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14349 components: - type: Transform pos: 40.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14351 components: - type: Transform @@ -109837,7 +109802,7 @@ entities: pos: 40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14352 components: - type: Transform @@ -109845,7 +109810,7 @@ entities: pos: 40.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14353 components: - type: Transform @@ -109853,7 +109818,7 @@ entities: pos: 40.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14354 components: - type: Transform @@ -109861,7 +109826,7 @@ entities: pos: 40.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14355 components: - type: Transform @@ -109869,7 +109834,7 @@ entities: pos: 40.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14356 components: - type: Transform @@ -109877,28 +109842,28 @@ entities: pos: 40.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14358 components: - type: Transform pos: 40.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14359 components: - type: Transform pos: 40.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14360 components: - type: Transform pos: 40.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14363 components: - type: Transform @@ -109906,7 +109871,7 @@ entities: pos: 42.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14365 components: - type: Transform @@ -109914,7 +109879,7 @@ entities: pos: 39.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14366 components: - type: Transform @@ -109922,7 +109887,7 @@ entities: pos: 38.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14367 components: - type: Transform @@ -109930,7 +109895,7 @@ entities: pos: 41.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14368 components: - type: Transform @@ -109938,7 +109903,7 @@ entities: pos: 40.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14369 components: - type: Transform @@ -109946,7 +109911,7 @@ entities: pos: 39.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14370 components: - type: Transform @@ -109954,7 +109919,7 @@ entities: pos: 38.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14372 components: - type: Transform @@ -109962,7 +109927,7 @@ entities: pos: 24.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14375 components: - type: Transform @@ -109970,7 +109935,7 @@ entities: pos: 37.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14376 components: - type: Transform @@ -109978,7 +109943,7 @@ entities: pos: 36.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14377 components: - type: Transform @@ -109986,7 +109951,7 @@ entities: pos: 35.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14378 components: - type: Transform @@ -109994,7 +109959,7 @@ entities: pos: 34.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14381 components: - type: Transform @@ -110002,7 +109967,7 @@ entities: pos: 37.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14382 components: - type: Transform @@ -110010,49 +109975,49 @@ entities: pos: 36.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14385 components: - type: Transform pos: 42.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14386 components: - type: Transform pos: 42.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14387 components: - type: Transform pos: 42.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14388 components: - type: Transform pos: 42.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14389 components: - type: Transform pos: 44.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14390 components: - type: Transform pos: 44.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14393 components: - type: Transform @@ -110060,7 +110025,7 @@ entities: pos: 48.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14394 components: - type: Transform @@ -110068,7 +110033,7 @@ entities: pos: 49.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14395 components: - type: Transform @@ -110076,7 +110041,7 @@ entities: pos: 52.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14396 components: - type: Transform @@ -110084,14 +110049,14 @@ entities: pos: 51.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14401 components: - type: Transform pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14402 components: - type: Transform @@ -110099,7 +110064,7 @@ entities: pos: 29.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14403 components: - type: Transform @@ -110107,7 +110072,7 @@ entities: pos: 32.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14404 components: - type: Transform @@ -110115,7 +110080,7 @@ entities: pos: 31.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14405 components: - type: Transform @@ -110123,7 +110088,7 @@ entities: pos: 30.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14407 components: - type: Transform @@ -110131,7 +110096,7 @@ entities: pos: 34.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14408 components: - type: Transform @@ -110139,7 +110104,7 @@ entities: pos: 33.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14409 components: - type: Transform @@ -110147,7 +110112,7 @@ entities: pos: 31.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14410 components: - type: Transform @@ -110155,7 +110120,7 @@ entities: pos: 29.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14412 components: - type: Transform @@ -110163,7 +110128,7 @@ entities: pos: 30.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14413 components: - type: Transform @@ -110171,77 +110136,77 @@ entities: pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14414 components: - type: Transform pos: 27.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14415 components: - type: Transform pos: 27.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14416 components: - type: Transform pos: 27.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14417 components: - type: Transform pos: 27.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14418 components: - type: Transform pos: 27.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14419 components: - type: Transform pos: 28.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14420 components: - type: Transform pos: 28.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14421 components: - type: Transform pos: 28.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14422 components: - type: Transform pos: 28.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14423 components: - type: Transform pos: 28.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14424 components: - type: Transform @@ -110249,7 +110214,7 @@ entities: pos: 28.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14430 components: - type: Transform @@ -110257,7 +110222,7 @@ entities: pos: 26.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14431 components: - type: Transform @@ -110265,7 +110230,7 @@ entities: pos: 26.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14432 components: - type: Transform @@ -110273,7 +110238,7 @@ entities: pos: 26.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14433 components: - type: Transform @@ -110281,7 +110246,7 @@ entities: pos: 26.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14434 components: - type: Transform @@ -110289,7 +110254,7 @@ entities: pos: 26.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14435 components: - type: Transform @@ -110297,7 +110262,7 @@ entities: pos: 26.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14436 components: - type: Transform @@ -110305,7 +110270,7 @@ entities: pos: 26.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14437 components: - type: Transform @@ -110313,7 +110278,7 @@ entities: pos: 26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14438 components: - type: Transform @@ -110321,7 +110286,7 @@ entities: pos: 26.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14439 components: - type: Transform @@ -110329,7 +110294,7 @@ entities: pos: 26.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14440 components: - type: Transform @@ -110337,7 +110302,7 @@ entities: pos: 26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14441 components: - type: Transform @@ -110345,7 +110310,7 @@ entities: pos: 27.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14443 components: - type: Transform @@ -110353,7 +110318,7 @@ entities: pos: 27.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14444 components: - type: Transform @@ -110361,7 +110326,7 @@ entities: pos: 27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14445 components: - type: Transform @@ -110369,7 +110334,7 @@ entities: pos: 27.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14446 components: - type: Transform @@ -110377,7 +110342,7 @@ entities: pos: 27.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14447 components: - type: Transform @@ -110385,7 +110350,7 @@ entities: pos: 27.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14448 components: - type: Transform @@ -110393,7 +110358,7 @@ entities: pos: 27.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14449 components: - type: Transform @@ -110401,7 +110366,7 @@ entities: pos: 27.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14450 components: - type: Transform @@ -110409,7 +110374,7 @@ entities: pos: 27.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14451 components: - type: Transform @@ -110417,7 +110382,7 @@ entities: pos: 27.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14456 components: - type: Transform @@ -110425,7 +110390,7 @@ entities: pos: 42.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14457 components: - type: Transform @@ -110433,7 +110398,7 @@ entities: pos: 40.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14458 components: - type: Transform @@ -110441,7 +110406,7 @@ entities: pos: 40.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14459 components: - type: Transform @@ -110449,42 +110414,42 @@ entities: pos: 40.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14461 components: - type: Transform pos: 42.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14462 components: - type: Transform pos: 42.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14463 components: - type: Transform pos: 42.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14464 components: - type: Transform pos: 40.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14465 components: - type: Transform pos: 40.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14466 components: - type: Transform @@ -110492,7 +110457,7 @@ entities: pos: 41.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14467 components: - type: Transform @@ -110500,7 +110465,7 @@ entities: pos: 42.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14468 components: - type: Transform @@ -110508,7 +110473,7 @@ entities: pos: 43.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14469 components: - type: Transform @@ -110516,7 +110481,7 @@ entities: pos: 44.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14471 components: - type: Transform @@ -110524,7 +110489,7 @@ entities: pos: 43.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14472 components: - type: Transform @@ -110532,7 +110497,7 @@ entities: pos: 44.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14473 components: - type: Transform @@ -110540,14 +110505,14 @@ entities: pos: 45.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14475 components: - type: Transform pos: 45.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14476 components: - type: Transform @@ -110555,7 +110520,7 @@ entities: pos: 46.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14478 components: - type: Transform @@ -110563,7 +110528,7 @@ entities: pos: 46.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14480 components: - type: Transform @@ -110571,7 +110536,7 @@ entities: pos: 47.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14481 components: - type: Transform @@ -110579,7 +110544,7 @@ entities: pos: 48.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14482 components: - type: Transform @@ -110587,63 +110552,63 @@ entities: pos: 49.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14483 components: - type: Transform pos: 47.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14484 components: - type: Transform pos: 47.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14485 components: - type: Transform pos: 47.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14486 components: - type: Transform pos: 47.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14487 components: - type: Transform pos: 47.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14489 components: - type: Transform pos: 46.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14490 components: - type: Transform pos: 46.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14491 components: - type: Transform pos: 46.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14492 components: - type: Transform @@ -110651,7 +110616,7 @@ entities: pos: 48.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14493 components: - type: Transform @@ -110659,7 +110624,7 @@ entities: pos: 49.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14494 components: - type: Transform @@ -110667,7 +110632,7 @@ entities: pos: 50.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14495 components: - type: Transform @@ -110675,7 +110640,7 @@ entities: pos: 51.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14496 components: - type: Transform @@ -110683,7 +110648,7 @@ entities: pos: 52.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14497 components: - type: Transform @@ -110691,7 +110656,7 @@ entities: pos: 53.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14498 components: - type: Transform @@ -110699,7 +110664,7 @@ entities: pos: 54.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14499 components: - type: Transform @@ -110707,7 +110672,7 @@ entities: pos: 50.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14500 components: - type: Transform @@ -110715,7 +110680,7 @@ entities: pos: 51.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14501 components: - type: Transform @@ -110723,7 +110688,7 @@ entities: pos: 52.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14502 components: - type: Transform @@ -110731,7 +110696,7 @@ entities: pos: 53.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14503 components: - type: Transform @@ -110739,7 +110704,7 @@ entities: pos: 54.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14504 components: - type: Transform @@ -110747,7 +110712,7 @@ entities: pos: 47.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14505 components: - type: Transform @@ -110755,21 +110720,21 @@ entities: pos: 47.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14507 components: - type: Transform pos: 46.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14509 components: - type: Transform pos: 46.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14510 components: - type: Transform @@ -110777,7 +110742,7 @@ entities: pos: 47.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14519 components: - type: Transform @@ -110785,7 +110750,7 @@ entities: pos: 42.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14521 components: - type: Transform @@ -110793,7 +110758,7 @@ entities: pos: 41.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14522 components: - type: Transform @@ -110801,7 +110766,7 @@ entities: pos: 40.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14523 components: - type: Transform @@ -110809,7 +110774,7 @@ entities: pos: 39.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14524 components: - type: Transform @@ -110817,7 +110782,7 @@ entities: pos: 38.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14525 components: - type: Transform @@ -110825,7 +110790,7 @@ entities: pos: 39.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14526 components: - type: Transform @@ -110833,7 +110798,7 @@ entities: pos: 38.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14531 components: - type: Transform @@ -110841,7 +110806,7 @@ entities: pos: 46.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14534 components: - type: Transform @@ -110849,7 +110814,7 @@ entities: pos: 45.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14535 components: - type: Transform @@ -110857,7 +110822,7 @@ entities: pos: 44.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14536 components: - type: Transform @@ -110865,7 +110830,7 @@ entities: pos: 43.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14537 components: - type: Transform @@ -110873,7 +110838,7 @@ entities: pos: 42.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14538 components: - type: Transform @@ -110881,7 +110846,7 @@ entities: pos: 41.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14539 components: - type: Transform @@ -110889,7 +110854,7 @@ entities: pos: 40.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14540 components: - type: Transform @@ -110897,7 +110862,7 @@ entities: pos: 39.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14541 components: - type: Transform @@ -110905,7 +110870,7 @@ entities: pos: 38.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14542 components: - type: Transform @@ -110913,7 +110878,7 @@ entities: pos: 37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14544 components: - type: Transform @@ -110921,7 +110886,7 @@ entities: pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14545 components: - type: Transform @@ -110929,7 +110894,7 @@ entities: pos: 1.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14546 components: - type: Transform @@ -110937,7 +110902,7 @@ entities: pos: 2.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14547 components: - type: Transform @@ -110945,7 +110910,7 @@ entities: pos: 3.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14548 components: - type: Transform @@ -110953,7 +110918,7 @@ entities: pos: 4.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14549 components: - type: Transform @@ -110961,7 +110926,7 @@ entities: pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14550 components: - type: Transform @@ -110969,7 +110934,7 @@ entities: pos: 6.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14552 components: - type: Transform @@ -110977,7 +110942,7 @@ entities: pos: 8.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14553 components: - type: Transform @@ -110985,7 +110950,7 @@ entities: pos: 9.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14554 components: - type: Transform @@ -110993,7 +110958,7 @@ entities: pos: 10.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14555 components: - type: Transform @@ -111001,7 +110966,7 @@ entities: pos: 11.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14556 components: - type: Transform @@ -111009,7 +110974,7 @@ entities: pos: 12.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14557 components: - type: Transform @@ -111017,14 +110982,14 @@ entities: pos: 13.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14562 components: - type: Transform pos: 14.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14563 components: - type: Transform @@ -111032,7 +110997,7 @@ entities: pos: 16.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14564 components: - type: Transform @@ -111040,7 +111005,7 @@ entities: pos: 17.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14565 components: - type: Transform @@ -111048,7 +111013,7 @@ entities: pos: 18.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14566 components: - type: Transform @@ -111056,7 +111021,7 @@ entities: pos: 19.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14567 components: - type: Transform @@ -111064,7 +111029,7 @@ entities: pos: 20.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14568 components: - type: Transform @@ -111072,7 +111037,7 @@ entities: pos: 21.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14569 components: - type: Transform @@ -111080,7 +111045,7 @@ entities: pos: 22.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14570 components: - type: Transform @@ -111088,14 +111053,14 @@ entities: pos: 23.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14573 components: - type: Transform pos: 24.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14574 components: - type: Transform @@ -111103,7 +111068,7 @@ entities: pos: 25.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14575 components: - type: Transform @@ -111111,7 +111076,7 @@ entities: pos: 26.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14576 components: - type: Transform @@ -111119,7 +111084,7 @@ entities: pos: 27.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14577 components: - type: Transform @@ -111127,7 +111092,7 @@ entities: pos: 28.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14578 components: - type: Transform @@ -111135,7 +111100,7 @@ entities: pos: 29.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14579 components: - type: Transform @@ -111143,7 +111108,7 @@ entities: pos: 30.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14580 components: - type: Transform @@ -111151,7 +111116,7 @@ entities: pos: 31.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14581 components: - type: Transform @@ -111159,140 +111124,140 @@ entities: pos: 32.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14583 components: - type: Transform pos: 33.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14584 components: - type: Transform pos: 33.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14585 components: - type: Transform pos: 33.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14586 components: - type: Transform pos: 33.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14587 components: - type: Transform pos: 33.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14588 components: - type: Transform pos: 33.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14589 components: - type: Transform pos: 33.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14590 components: - type: Transform pos: 33.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14591 components: - type: Transform pos: 33.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14592 components: - type: Transform pos: 36.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14593 components: - type: Transform pos: 36.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14594 components: - type: Transform pos: 36.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14595 components: - type: Transform pos: 36.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14596 components: - type: Transform pos: 36.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14597 components: - type: Transform pos: 36.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14598 components: - type: Transform pos: 36.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14599 components: - type: Transform pos: 36.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14600 components: - type: Transform pos: 36.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14601 components: - type: Transform pos: 36.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14602 components: - type: Transform @@ -111300,7 +111265,7 @@ entities: pos: 35.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14603 components: - type: Transform @@ -111308,7 +111273,7 @@ entities: pos: 34.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14604 components: - type: Transform @@ -111316,7 +111281,7 @@ entities: pos: 33.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14605 components: - type: Transform @@ -111324,7 +111289,7 @@ entities: pos: 32.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14606 components: - type: Transform @@ -111332,7 +111297,7 @@ entities: pos: 31.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14607 components: - type: Transform @@ -111340,7 +111305,7 @@ entities: pos: 30.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14608 components: - type: Transform @@ -111348,7 +111313,7 @@ entities: pos: 29.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14609 components: - type: Transform @@ -111356,7 +111321,7 @@ entities: pos: 28.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14610 components: - type: Transform @@ -111364,7 +111329,7 @@ entities: pos: 27.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14611 components: - type: Transform @@ -111372,70 +111337,70 @@ entities: pos: 26.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14613 components: - type: Transform pos: 23.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14616 components: - type: Transform pos: 23.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14617 components: - type: Transform pos: 23.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14618 components: - type: Transform pos: 23.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14619 components: - type: Transform pos: 23.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14620 components: - type: Transform pos: 24.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14621 components: - type: Transform pos: 24.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14623 components: - type: Transform pos: 24.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14624 components: - type: Transform pos: 24.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14628 components: - type: Transform @@ -111443,7 +111408,7 @@ entities: pos: 24.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14633 components: - type: Transform @@ -111451,7 +111416,7 @@ entities: pos: 25.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14634 components: - type: Transform @@ -111459,7 +111424,7 @@ entities: pos: 26.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14635 components: - type: Transform @@ -111467,7 +111432,7 @@ entities: pos: 27.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14636 components: - type: Transform @@ -111475,7 +111440,7 @@ entities: pos: 28.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14637 components: - type: Transform @@ -111483,7 +111448,7 @@ entities: pos: 29.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14638 components: - type: Transform @@ -111491,7 +111456,7 @@ entities: pos: 28.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14639 components: - type: Transform @@ -111499,7 +111464,7 @@ entities: pos: 27.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14640 components: - type: Transform @@ -111507,7 +111472,7 @@ entities: pos: 26.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14641 components: - type: Transform @@ -111515,7 +111480,7 @@ entities: pos: 25.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14642 components: - type: Transform @@ -111523,7 +111488,7 @@ entities: pos: 24.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14647 components: - type: Transform @@ -111531,7 +111496,7 @@ entities: pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14648 components: - type: Transform @@ -111539,7 +111504,7 @@ entities: pos: 1.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14649 components: - type: Transform @@ -111547,7 +111512,7 @@ entities: pos: 2.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14650 components: - type: Transform @@ -111555,7 +111520,7 @@ entities: pos: 3.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14651 components: - type: Transform @@ -111563,7 +111528,7 @@ entities: pos: 4.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14652 components: - type: Transform @@ -111571,7 +111536,7 @@ entities: pos: 5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14653 components: - type: Transform @@ -111579,7 +111544,7 @@ entities: pos: 6.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14654 components: - type: Transform @@ -111587,7 +111552,7 @@ entities: pos: 7.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14655 components: - type: Transform @@ -111595,7 +111560,7 @@ entities: pos: 8.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14656 components: - type: Transform @@ -111603,7 +111568,7 @@ entities: pos: 9.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14657 components: - type: Transform @@ -111611,7 +111576,7 @@ entities: pos: 2.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14658 components: - type: Transform @@ -111619,7 +111584,7 @@ entities: pos: 3.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14659 components: - type: Transform @@ -111627,7 +111592,7 @@ entities: pos: 4.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14660 components: - type: Transform @@ -111635,7 +111600,7 @@ entities: pos: 5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14661 components: - type: Transform @@ -111643,7 +111608,7 @@ entities: pos: 6.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14662 components: - type: Transform @@ -111651,7 +111616,7 @@ entities: pos: 7.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14663 components: - type: Transform @@ -111659,7 +111624,7 @@ entities: pos: 8.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14664 components: - type: Transform @@ -111667,7 +111632,7 @@ entities: pos: 9.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14665 components: - type: Transform @@ -111675,7 +111640,7 @@ entities: pos: 10.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14668 components: - type: Transform @@ -111683,7 +111648,7 @@ entities: pos: 24.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14669 components: - type: Transform @@ -111691,7 +111656,7 @@ entities: pos: 23.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14670 components: - type: Transform @@ -111699,7 +111664,7 @@ entities: pos: 23.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14671 components: - type: Transform @@ -111707,7 +111672,7 @@ entities: pos: 23.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14672 components: - type: Transform @@ -111715,7 +111680,7 @@ entities: pos: 23.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14673 components: - type: Transform @@ -111723,7 +111688,7 @@ entities: pos: 23.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14676 components: - type: Transform @@ -111731,7 +111696,7 @@ entities: pos: -9.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14678 components: - type: Transform @@ -111739,7 +111704,7 @@ entities: pos: 30.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14679 components: - type: Transform @@ -111747,7 +111712,7 @@ entities: pos: 29.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14680 components: - type: Transform @@ -111755,7 +111720,7 @@ entities: pos: 28.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14681 components: - type: Transform @@ -111763,7 +111728,7 @@ entities: pos: 27.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14682 components: - type: Transform @@ -111771,7 +111736,7 @@ entities: pos: 26.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14684 components: - type: Transform @@ -111779,7 +111744,7 @@ entities: pos: 29.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14685 components: - type: Transform @@ -111787,7 +111752,7 @@ entities: pos: 28.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14686 components: - type: Transform @@ -111795,7 +111760,7 @@ entities: pos: 27.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14687 components: - type: Transform @@ -111803,84 +111768,84 @@ entities: pos: 26.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14691 components: - type: Transform pos: 30.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14692 components: - type: Transform pos: 30.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14693 components: - type: Transform pos: 30.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14694 components: - type: Transform pos: 31.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14695 components: - type: Transform pos: 31.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14698 components: - type: Transform pos: 31.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14699 components: - type: Transform pos: 31.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14700 components: - type: Transform pos: 31.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14701 components: - type: Transform pos: 31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14702 components: - type: Transform pos: 30.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14703 components: - type: Transform pos: 30.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14705 components: - type: Transform @@ -111888,7 +111853,7 @@ entities: pos: 29.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14706 components: - type: Transform @@ -111896,7 +111861,7 @@ entities: pos: 28.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14707 components: - type: Transform @@ -111904,7 +111869,7 @@ entities: pos: 31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14708 components: - type: Transform @@ -111912,7 +111877,7 @@ entities: pos: 32.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14709 components: - type: Transform @@ -111920,7 +111885,7 @@ entities: pos: 33.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14710 components: - type: Transform @@ -111928,7 +111893,7 @@ entities: pos: 32.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14711 components: - type: Transform @@ -111936,7 +111901,7 @@ entities: pos: 33.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14713 components: - type: Transform @@ -111944,7 +111909,7 @@ entities: pos: 31.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14714 components: - type: Transform @@ -111952,7 +111917,7 @@ entities: pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14715 components: - type: Transform @@ -111960,7 +111925,7 @@ entities: pos: 29.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14716 components: - type: Transform @@ -111968,28 +111933,28 @@ entities: pos: 28.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14717 components: - type: Transform pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14718 components: - type: Transform pos: 30.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14719 components: - type: Transform pos: 30.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14722 components: - type: Transform @@ -111997,7 +111962,7 @@ entities: pos: -42.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14723 components: - type: Transform @@ -112005,7 +111970,7 @@ entities: pos: 35.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14725 components: - type: Transform @@ -112013,7 +111978,7 @@ entities: pos: 34.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14727 components: - type: Transform @@ -112021,7 +111986,7 @@ entities: pos: 36.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14730 components: - type: Transform @@ -112029,7 +111994,7 @@ entities: pos: 27.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14731 components: - type: Transform @@ -112037,7 +112002,7 @@ entities: pos: 26.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14732 components: - type: Transform @@ -112045,7 +112010,7 @@ entities: pos: 25.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14733 components: - type: Transform @@ -112053,7 +112018,7 @@ entities: pos: 24.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14736 components: - type: Transform @@ -112061,7 +112026,7 @@ entities: pos: 24.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14737 components: - type: Transform @@ -112069,7 +112034,7 @@ entities: pos: 25.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14738 components: - type: Transform @@ -112077,7 +112042,7 @@ entities: pos: 26.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14739 components: - type: Transform @@ -112085,49 +112050,49 @@ entities: pos: 27.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14742 components: - type: Transform pos: 30.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14743 components: - type: Transform pos: 30.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14744 components: - type: Transform pos: 30.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14745 components: - type: Transform pos: 31.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14746 components: - type: Transform pos: 31.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14747 components: - type: Transform pos: 31.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14750 components: - type: Transform @@ -112135,7 +112100,7 @@ entities: pos: 36.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14751 components: - type: Transform @@ -112143,7 +112108,7 @@ entities: pos: 35.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14752 components: - type: Transform @@ -112151,7 +112116,7 @@ entities: pos: 36.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14753 components: - type: Transform @@ -112159,7 +112124,7 @@ entities: pos: 36.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14754 components: - type: Transform @@ -112167,42 +112132,42 @@ entities: pos: 35.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14757 components: - type: Transform pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14758 components: - type: Transform pos: 36.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14759 components: - type: Transform pos: 36.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14760 components: - type: Transform pos: 36.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14762 components: - type: Transform pos: 35.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14770 components: - type: Transform @@ -112210,7 +112175,7 @@ entities: pos: -42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14771 components: - type: Transform @@ -112218,7 +112183,7 @@ entities: pos: -42.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14773 components: - type: Transform @@ -112226,7 +112191,7 @@ entities: pos: -42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14774 components: - type: Transform @@ -112234,7 +112199,7 @@ entities: pos: -42.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14775 components: - type: Transform @@ -112242,7 +112207,7 @@ entities: pos: -42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14776 components: - type: Transform @@ -112250,7 +112215,7 @@ entities: pos: -42.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14777 components: - type: Transform @@ -112258,7 +112223,7 @@ entities: pos: -42.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14779 components: - type: Transform @@ -112266,7 +112231,7 @@ entities: pos: -42.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14783 components: - type: Transform @@ -112274,7 +112239,7 @@ entities: pos: -42.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14784 components: - type: Transform @@ -112282,7 +112247,7 @@ entities: pos: -42.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14786 components: - type: Transform @@ -112290,7 +112255,7 @@ entities: pos: -42.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14787 components: - type: Transform @@ -112298,7 +112263,7 @@ entities: pos: -42.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14788 components: - type: Transform @@ -112306,7 +112271,7 @@ entities: pos: -42.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14789 components: - type: Transform @@ -112314,7 +112279,7 @@ entities: pos: -42.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14791 components: - type: Transform @@ -112322,7 +112287,7 @@ entities: pos: -42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14792 components: - type: Transform @@ -112330,7 +112295,7 @@ entities: pos: -42.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14797 components: - type: Transform @@ -112338,7 +112303,7 @@ entities: pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14798 components: - type: Transform @@ -112346,7 +112311,7 @@ entities: pos: -42.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14799 components: - type: Transform @@ -112354,7 +112319,7 @@ entities: pos: -40.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14801 components: - type: Transform @@ -112362,7 +112327,7 @@ entities: pos: -40.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14802 components: - type: Transform @@ -112370,7 +112335,7 @@ entities: pos: -40.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14803 components: - type: Transform @@ -112378,7 +112343,7 @@ entities: pos: -40.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14807 components: - type: Transform @@ -112386,7 +112351,7 @@ entities: pos: -40.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14809 components: - type: Transform @@ -112394,7 +112359,7 @@ entities: pos: -40.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14810 components: - type: Transform @@ -112402,7 +112367,7 @@ entities: pos: -40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14812 components: - type: Transform @@ -112410,7 +112375,7 @@ entities: pos: -40.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14814 components: - type: Transform @@ -112418,7 +112383,7 @@ entities: pos: -40.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14815 components: - type: Transform @@ -112426,7 +112391,7 @@ entities: pos: -40.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14816 components: - type: Transform @@ -112434,7 +112399,7 @@ entities: pos: -40.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14819 components: - type: Transform @@ -112442,7 +112407,7 @@ entities: pos: -40.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14820 components: - type: Transform @@ -112450,7 +112415,7 @@ entities: pos: -40.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14821 components: - type: Transform @@ -112458,7 +112423,7 @@ entities: pos: -40.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14822 components: - type: Transform @@ -112466,7 +112431,7 @@ entities: pos: -40.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14823 components: - type: Transform @@ -112474,7 +112439,7 @@ entities: pos: -40.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14824 components: - type: Transform @@ -112482,7 +112447,7 @@ entities: pos: -40.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14825 components: - type: Transform @@ -112490,7 +112455,7 @@ entities: pos: -40.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14826 components: - type: Transform @@ -112498,7 +112463,7 @@ entities: pos: -40.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14831 components: - type: Transform @@ -112506,7 +112471,7 @@ entities: pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14832 components: - type: Transform @@ -112514,7 +112479,7 @@ entities: pos: -1.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14833 components: - type: Transform @@ -112522,7 +112487,7 @@ entities: pos: 0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14835 components: - type: Transform @@ -112530,7 +112495,7 @@ entities: pos: -2.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14836 components: - type: Transform @@ -112538,7 +112503,7 @@ entities: pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14837 components: - type: Transform @@ -112546,7 +112511,7 @@ entities: pos: -1.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14838 components: - type: Transform @@ -112554,7 +112519,7 @@ entities: pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14839 components: - type: Transform @@ -112562,7 +112527,7 @@ entities: pos: 2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14840 components: - type: Transform @@ -112570,7 +112535,7 @@ entities: pos: 3.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14841 components: - type: Transform @@ -112578,7 +112543,7 @@ entities: pos: 4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14842 components: - type: Transform @@ -112586,7 +112551,7 @@ entities: pos: 5.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14843 components: - type: Transform @@ -112594,7 +112559,7 @@ entities: pos: 6.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14844 components: - type: Transform @@ -112602,7 +112567,7 @@ entities: pos: 2.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14845 components: - type: Transform @@ -112610,7 +112575,7 @@ entities: pos: 3.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14846 components: - type: Transform @@ -112618,7 +112583,7 @@ entities: pos: 4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14847 components: - type: Transform @@ -112626,7 +112591,7 @@ entities: pos: 5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14851 components: - type: Transform @@ -112634,7 +112599,7 @@ entities: pos: 7.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14852 components: - type: Transform @@ -112642,7 +112607,7 @@ entities: pos: 8.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14853 components: - type: Transform @@ -112650,7 +112615,7 @@ entities: pos: 9.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14854 components: - type: Transform @@ -112658,7 +112623,7 @@ entities: pos: 10.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14855 components: - type: Transform @@ -112666,7 +112631,7 @@ entities: pos: 11.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14856 components: - type: Transform @@ -112674,7 +112639,7 @@ entities: pos: 12.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14857 components: - type: Transform @@ -112682,7 +112647,7 @@ entities: pos: 13.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14858 components: - type: Transform @@ -112690,7 +112655,7 @@ entities: pos: 14.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14859 components: - type: Transform @@ -112698,7 +112663,7 @@ entities: pos: 15.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14861 components: - type: Transform @@ -112706,7 +112671,7 @@ entities: pos: 8.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14862 components: - type: Transform @@ -112714,7 +112679,7 @@ entities: pos: 9.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14863 components: - type: Transform @@ -112722,7 +112687,7 @@ entities: pos: 10.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14864 components: - type: Transform @@ -112730,7 +112695,7 @@ entities: pos: 11.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14865 components: - type: Transform @@ -112738,7 +112703,7 @@ entities: pos: 12.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14866 components: - type: Transform @@ -112746,7 +112711,7 @@ entities: pos: 13.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14870 components: - type: Transform @@ -112754,7 +112719,7 @@ entities: pos: 17.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14871 components: - type: Transform @@ -112762,7 +112727,7 @@ entities: pos: 18.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14872 components: - type: Transform @@ -112770,7 +112735,7 @@ entities: pos: 19.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14873 components: - type: Transform @@ -112778,7 +112743,7 @@ entities: pos: 20.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14875 components: - type: Transform @@ -112786,7 +112751,7 @@ entities: pos: 21.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14876 components: - type: Transform @@ -112794,7 +112759,7 @@ entities: pos: 21.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14877 components: - type: Transform @@ -112802,7 +112767,7 @@ entities: pos: 15.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14878 components: - type: Transform @@ -112810,7 +112775,7 @@ entities: pos: 16.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14879 components: - type: Transform @@ -112818,7 +112783,7 @@ entities: pos: 17.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14880 components: - type: Transform @@ -112826,7 +112791,7 @@ entities: pos: 18.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14882 components: - type: Transform @@ -112834,7 +112799,7 @@ entities: pos: 19.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14883 components: - type: Transform @@ -112842,7 +112807,7 @@ entities: pos: 14.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14884 components: - type: Transform @@ -112850,7 +112815,7 @@ entities: pos: 14.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14885 components: - type: Transform @@ -112858,7 +112823,7 @@ entities: pos: 16.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14886 components: - type: Transform @@ -112866,7 +112831,7 @@ entities: pos: 16.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14887 components: - type: Transform @@ -112874,7 +112839,7 @@ entities: pos: 16.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14888 components: - type: Transform @@ -112882,7 +112847,7 @@ entities: pos: 16.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14889 components: - type: Transform @@ -112890,7 +112855,7 @@ entities: pos: 16.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14892 components: - type: Transform @@ -112898,7 +112863,7 @@ entities: pos: 13.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14893 components: - type: Transform @@ -112906,7 +112871,7 @@ entities: pos: 12.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14894 components: - type: Transform @@ -112914,7 +112879,7 @@ entities: pos: 11.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14895 components: - type: Transform @@ -112922,7 +112887,7 @@ entities: pos: 10.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14896 components: - type: Transform @@ -112930,7 +112895,7 @@ entities: pos: 9.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14897 components: - type: Transform @@ -112938,7 +112903,7 @@ entities: pos: 8.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14898 components: - type: Transform @@ -112946,7 +112911,7 @@ entities: pos: 7.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14899 components: - type: Transform @@ -112954,7 +112919,7 @@ entities: pos: 6.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14902 components: - type: Transform @@ -112962,7 +112927,7 @@ entities: pos: 10.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14903 components: - type: Transform @@ -112970,7 +112935,7 @@ entities: pos: 11.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14904 components: - type: Transform @@ -112978,7 +112943,7 @@ entities: pos: 12.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14905 components: - type: Transform @@ -112986,7 +112951,7 @@ entities: pos: 13.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14906 components: - type: Transform @@ -112994,7 +112959,7 @@ entities: pos: 14.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14907 components: - type: Transform @@ -113002,112 +112967,112 @@ entities: pos: 15.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14908 components: - type: Transform pos: 14.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14909 components: - type: Transform pos: 14.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14910 components: - type: Transform pos: 14.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14911 components: - type: Transform pos: 14.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14912 components: - type: Transform pos: 14.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14913 components: - type: Transform pos: 14.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14914 components: - type: Transform pos: 14.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14915 components: - type: Transform pos: 16.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14916 components: - type: Transform pos: 16.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14917 components: - type: Transform pos: 16.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14918 components: - type: Transform pos: 16.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14919 components: - type: Transform pos: 16.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14920 components: - type: Transform pos: 5.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14921 components: - type: Transform pos: 5.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14931 components: - type: Transform pos: 16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14932 components: - type: Transform @@ -113115,7 +113080,7 @@ entities: pos: 15.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14933 components: - type: Transform @@ -113123,7 +113088,7 @@ entities: pos: 16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14934 components: - type: Transform @@ -113131,7 +113096,7 @@ entities: pos: 17.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14935 components: - type: Transform @@ -113139,7 +113104,7 @@ entities: pos: 18.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14936 components: - type: Transform @@ -113147,7 +113112,7 @@ entities: pos: 17.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14937 components: - type: Transform @@ -113155,7 +113120,7 @@ entities: pos: 18.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14940 components: - type: Transform @@ -113163,7 +113128,7 @@ entities: pos: -39.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14941 components: - type: Transform @@ -113171,7 +113136,7 @@ entities: pos: -41.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14942 components: - type: Transform @@ -113179,7 +113144,7 @@ entities: pos: -40.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14943 components: - type: Transform @@ -113187,7 +113152,7 @@ entities: pos: -39.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14944 components: - type: Transform @@ -113195,7 +113160,7 @@ entities: pos: -43.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14945 components: - type: Transform @@ -113203,7 +113168,7 @@ entities: pos: -44.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14946 components: - type: Transform @@ -113211,7 +113176,7 @@ entities: pos: -45.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14947 components: - type: Transform @@ -113219,7 +113184,7 @@ entities: pos: -41.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14948 components: - type: Transform @@ -113227,7 +113192,7 @@ entities: pos: -42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14949 components: - type: Transform @@ -113235,7 +113200,7 @@ entities: pos: -43.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14950 components: - type: Transform @@ -113243,7 +113208,7 @@ entities: pos: -44.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14951 components: - type: Transform @@ -113251,7 +113216,7 @@ entities: pos: -45.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14956 components: - type: Transform @@ -113259,7 +113224,7 @@ entities: pos: -41.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14957 components: - type: Transform @@ -113267,7 +113232,7 @@ entities: pos: -40.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14958 components: - type: Transform @@ -113275,7 +113240,7 @@ entities: pos: -39.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14959 components: - type: Transform @@ -113283,7 +113248,7 @@ entities: pos: -39.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14962 components: - type: Transform @@ -113291,7 +113256,7 @@ entities: pos: -41.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14963 components: - type: Transform @@ -113299,7 +113264,7 @@ entities: pos: -40.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14964 components: - type: Transform @@ -113307,7 +113272,7 @@ entities: pos: -39.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14966 components: - type: Transform @@ -113315,7 +113280,7 @@ entities: pos: -39.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14967 components: - type: Transform @@ -113323,7 +113288,7 @@ entities: pos: -38.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14970 components: - type: Transform @@ -113331,7 +113296,7 @@ entities: pos: -39.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14971 components: - type: Transform @@ -113339,7 +113304,7 @@ entities: pos: -41.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14972 components: - type: Transform @@ -113347,7 +113312,7 @@ entities: pos: -40.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14973 components: - type: Transform @@ -113355,7 +113320,7 @@ entities: pos: -39.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14977 components: - type: Transform @@ -113363,7 +113328,7 @@ entities: pos: -37.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14978 components: - type: Transform @@ -113371,7 +113336,7 @@ entities: pos: -38.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14979 components: - type: Transform @@ -113379,7 +113344,7 @@ entities: pos: -39.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14980 components: - type: Transform @@ -113387,7 +113352,7 @@ entities: pos: -41.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14981 components: - type: Transform @@ -113395,7 +113360,7 @@ entities: pos: -40.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14982 components: - type: Transform @@ -113403,7 +113368,7 @@ entities: pos: -39.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14983 components: - type: Transform @@ -113411,7 +113376,7 @@ entities: pos: -38.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14987 components: - type: Transform @@ -113419,7 +113384,7 @@ entities: pos: -37.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14988 components: - type: Transform @@ -113427,7 +113392,7 @@ entities: pos: -37.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14991 components: - type: Transform @@ -113435,7 +113400,7 @@ entities: pos: -36.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14992 components: - type: Transform @@ -113443,7 +113408,7 @@ entities: pos: -43.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14993 components: - type: Transform @@ -113451,7 +113416,7 @@ entities: pos: -44.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15001 components: - type: Transform @@ -113459,7 +113424,7 @@ entities: pos: -41.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15002 components: - type: Transform @@ -113467,7 +113432,7 @@ entities: pos: -42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15003 components: - type: Transform @@ -113475,7 +113440,7 @@ entities: pos: -43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15005 components: - type: Transform @@ -113483,7 +113448,7 @@ entities: pos: -45.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15006 components: - type: Transform @@ -113491,7 +113456,7 @@ entities: pos: -46.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15007 components: - type: Transform @@ -113499,7 +113464,7 @@ entities: pos: -47.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15008 components: - type: Transform @@ -113507,7 +113472,7 @@ entities: pos: -48.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15010 components: - type: Transform @@ -113515,7 +113480,7 @@ entities: pos: -50.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15011 components: - type: Transform @@ -113523,7 +113488,7 @@ entities: pos: -51.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15012 components: - type: Transform @@ -113531,7 +113496,7 @@ entities: pos: -52.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15013 components: - type: Transform @@ -113539,77 +113504,77 @@ entities: pos: -53.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15016 components: - type: Transform pos: -52.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15017 components: - type: Transform pos: -52.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15018 components: - type: Transform pos: -52.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15019 components: - type: Transform pos: -52.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15021 components: - type: Transform pos: -54.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15022 components: - type: Transform pos: -54.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15023 components: - type: Transform pos: -54.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15024 components: - type: Transform pos: -54.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15025 components: - type: Transform pos: -54.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15027 components: - type: Transform pos: -54.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15051 components: - type: Transform @@ -113617,7 +113582,7 @@ entities: pos: -52.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15052 components: - type: Transform @@ -113625,7 +113590,7 @@ entities: pos: -52.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15053 components: - type: Transform @@ -113633,7 +113598,7 @@ entities: pos: -52.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15054 components: - type: Transform @@ -113641,7 +113606,7 @@ entities: pos: -52.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15056 components: - type: Transform @@ -113649,7 +113614,7 @@ entities: pos: -52.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15061 components: - type: Transform @@ -113657,7 +113622,7 @@ entities: pos: -54.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15063 components: - type: Transform @@ -113665,7 +113630,7 @@ entities: pos: -54.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15064 components: - type: Transform @@ -113673,7 +113638,7 @@ entities: pos: -54.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15065 components: - type: Transform @@ -113681,7 +113646,7 @@ entities: pos: -54.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15066 components: - type: Transform @@ -113689,7 +113654,7 @@ entities: pos: -54.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15067 components: - type: Transform @@ -113697,7 +113662,7 @@ entities: pos: -54.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15068 components: - type: Transform @@ -113705,7 +113670,7 @@ entities: pos: -54.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15069 components: - type: Transform @@ -113713,154 +113678,154 @@ entities: pos: -54.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15084 components: - type: Transform pos: -53.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15085 components: - type: Transform pos: -53.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15086 components: - type: Transform pos: -53.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15087 components: - type: Transform pos: -53.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15088 components: - type: Transform pos: -53.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15089 components: - type: Transform pos: -53.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15090 components: - type: Transform pos: -53.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15091 components: - type: Transform pos: -53.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15092 components: - type: Transform pos: -53.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15093 components: - type: Transform pos: -53.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15094 components: - type: Transform pos: -53.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15095 components: - type: Transform pos: -55.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15096 components: - type: Transform pos: -55.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15097 components: - type: Transform pos: -55.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15098 components: - type: Transform pos: -55.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15099 components: - type: Transform pos: -55.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15100 components: - type: Transform pos: -55.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15101 components: - type: Transform pos: -55.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15102 components: - type: Transform pos: -55.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15103 components: - type: Transform pos: -55.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15104 components: - type: Transform pos: -55.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15111 components: - type: Transform @@ -113868,7 +113833,7 @@ entities: pos: -53.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15112 components: - type: Transform @@ -113876,7 +113841,7 @@ entities: pos: -52.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15113 components: - type: Transform @@ -113884,7 +113849,7 @@ entities: pos: -51.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15114 components: - type: Transform @@ -113892,7 +113857,7 @@ entities: pos: -50.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15115 components: - type: Transform @@ -113900,7 +113865,7 @@ entities: pos: -51.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15116 components: - type: Transform @@ -113908,14 +113873,14 @@ entities: pos: -50.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15119 components: - type: Transform pos: -48.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15120 components: - type: Transform @@ -113923,7 +113888,7 @@ entities: pos: -49.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15122 components: - type: Transform @@ -113931,7 +113896,7 @@ entities: pos: -39.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15123 components: - type: Transform @@ -113939,7 +113904,7 @@ entities: pos: -38.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15124 components: - type: Transform @@ -113947,7 +113912,7 @@ entities: pos: -38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15125 components: - type: Transform @@ -113955,7 +113920,7 @@ entities: pos: -38.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15130 components: - type: Transform @@ -113963,7 +113928,7 @@ entities: pos: -29.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15131 components: - type: Transform @@ -113971,7 +113936,7 @@ entities: pos: -29.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15132 components: - type: Transform @@ -113979,7 +113944,7 @@ entities: pos: -29.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15133 components: - type: Transform @@ -113987,7 +113952,7 @@ entities: pos: -29.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15134 components: - type: Transform @@ -113995,7 +113960,7 @@ entities: pos: -29.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15135 components: - type: Transform @@ -114003,7 +113968,7 @@ entities: pos: -31.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15136 components: - type: Transform @@ -114011,7 +113976,7 @@ entities: pos: -31.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15137 components: - type: Transform @@ -114019,7 +113984,7 @@ entities: pos: -31.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15138 components: - type: Transform @@ -114027,7 +113992,7 @@ entities: pos: -31.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15139 components: - type: Transform @@ -114035,7 +114000,7 @@ entities: pos: -31.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15140 components: - type: Transform @@ -114043,7 +114008,7 @@ entities: pos: -31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15141 components: - type: Transform @@ -114051,7 +114016,7 @@ entities: pos: -31.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15142 components: - type: Transform @@ -114059,7 +114024,7 @@ entities: pos: -32.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15143 components: - type: Transform @@ -114067,7 +114032,7 @@ entities: pos: -32.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15144 components: - type: Transform @@ -114075,7 +114040,7 @@ entities: pos: -29.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15145 components: - type: Transform @@ -114083,7 +114048,7 @@ entities: pos: -29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15146 components: - type: Transform @@ -114091,7 +114056,7 @@ entities: pos: -29.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15147 components: - type: Transform @@ -114099,7 +114064,7 @@ entities: pos: -29.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15152 components: - type: Transform @@ -114107,7 +114072,7 @@ entities: pos: -43.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15153 components: - type: Transform @@ -114115,7 +114080,7 @@ entities: pos: -41.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15154 components: - type: Transform @@ -114123,7 +114088,7 @@ entities: pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15155 components: - type: Transform @@ -114131,7 +114096,7 @@ entities: pos: -43.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15158 components: - type: Transform @@ -114139,7 +114104,7 @@ entities: pos: -43.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15159 components: - type: Transform @@ -114147,7 +114112,7 @@ entities: pos: -44.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15160 components: - type: Transform @@ -114155,7 +114120,7 @@ entities: pos: -45.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15161 components: - type: Transform @@ -114163,7 +114128,7 @@ entities: pos: -41.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15162 components: - type: Transform @@ -114171,7 +114136,7 @@ entities: pos: -42.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15163 components: - type: Transform @@ -114179,7 +114144,7 @@ entities: pos: -43.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15164 components: - type: Transform @@ -114187,7 +114152,7 @@ entities: pos: -44.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15165 components: - type: Transform @@ -114195,63 +114160,63 @@ entities: pos: -45.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15169 components: - type: Transform pos: -37.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15170 components: - type: Transform pos: -37.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15171 components: - type: Transform pos: -37.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15172 components: - type: Transform pos: -38.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15173 components: - type: Transform pos: -38.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15174 components: - type: Transform pos: -38.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15175 components: - type: Transform pos: -38.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15176 components: - type: Transform pos: -38.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15179 components: - type: Transform @@ -114259,7 +114224,7 @@ entities: pos: -36.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15180 components: - type: Transform @@ -114267,7 +114232,7 @@ entities: pos: -35.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15181 components: - type: Transform @@ -114275,7 +114240,7 @@ entities: pos: -34.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15182 components: - type: Transform @@ -114283,7 +114248,7 @@ entities: pos: -33.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15183 components: - type: Transform @@ -114291,7 +114256,7 @@ entities: pos: -32.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15184 components: - type: Transform @@ -114299,7 +114264,7 @@ entities: pos: -37.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15185 components: - type: Transform @@ -114307,7 +114272,7 @@ entities: pos: -36.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15186 components: - type: Transform @@ -114315,7 +114280,7 @@ entities: pos: -35.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15187 components: - type: Transform @@ -114323,7 +114288,7 @@ entities: pos: -34.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15188 components: - type: Transform @@ -114331,7 +114296,7 @@ entities: pos: -33.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15189 components: - type: Transform @@ -114339,7 +114304,7 @@ entities: pos: -32.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15192 components: - type: Transform @@ -114347,7 +114312,7 @@ entities: pos: -37.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15193 components: - type: Transform @@ -114355,7 +114320,7 @@ entities: pos: -37.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15194 components: - type: Transform @@ -114363,7 +114328,7 @@ entities: pos: -37.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15195 components: - type: Transform @@ -114371,7 +114336,7 @@ entities: pos: -37.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15196 components: - type: Transform @@ -114379,7 +114344,7 @@ entities: pos: -37.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15197 components: - type: Transform @@ -114387,49 +114352,49 @@ entities: pos: -37.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15199 components: - type: Transform pos: -38.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15200 components: - type: Transform pos: -38.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15201 components: - type: Transform pos: -38.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15202 components: - type: Transform pos: -38.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15203 components: - type: Transform pos: -38.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15204 components: - type: Transform pos: -38.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15208 components: - type: Transform @@ -114437,7 +114402,7 @@ entities: pos: -37.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15209 components: - type: Transform @@ -114445,7 +114410,7 @@ entities: pos: -36.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15210 components: - type: Transform @@ -114453,7 +114418,7 @@ entities: pos: -35.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15211 components: - type: Transform @@ -114461,7 +114426,7 @@ entities: pos: -34.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15212 components: - type: Transform @@ -114469,7 +114434,7 @@ entities: pos: -33.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15213 components: - type: Transform @@ -114477,7 +114442,7 @@ entities: pos: -32.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15214 components: - type: Transform @@ -114485,7 +114450,7 @@ entities: pos: -31.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15215 components: - type: Transform @@ -114493,7 +114458,7 @@ entities: pos: -36.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15216 components: - type: Transform @@ -114501,7 +114466,7 @@ entities: pos: -35.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15217 components: - type: Transform @@ -114509,7 +114474,7 @@ entities: pos: -34.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15218 components: - type: Transform @@ -114517,7 +114482,7 @@ entities: pos: -33.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15219 components: - type: Transform @@ -114525,7 +114490,7 @@ entities: pos: -32.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15220 components: - type: Transform @@ -114533,21 +114498,21 @@ entities: pos: -31.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15221 components: - type: Transform pos: -37.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15222 components: - type: Transform pos: -37.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15223 components: - type: Transform @@ -114555,7 +114520,7 @@ entities: pos: -38.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15224 components: - type: Transform @@ -114563,7 +114528,7 @@ entities: pos: -39.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15225 components: - type: Transform @@ -114571,7 +114536,7 @@ entities: pos: -40.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15226 components: - type: Transform @@ -114579,7 +114544,7 @@ entities: pos: -41.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15227 components: - type: Transform @@ -114587,7 +114552,7 @@ entities: pos: -39.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15228 components: - type: Transform @@ -114595,7 +114560,7 @@ entities: pos: -40.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15232 components: - type: Transform @@ -114603,7 +114568,7 @@ entities: pos: -42.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15234 components: - type: Transform @@ -114611,7 +114576,7 @@ entities: pos: -42.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15235 components: - type: Transform @@ -114619,7 +114584,7 @@ entities: pos: -42.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15236 components: - type: Transform @@ -114627,7 +114592,7 @@ entities: pos: -42.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15238 components: - type: Transform @@ -114635,7 +114600,7 @@ entities: pos: -41.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15240 components: - type: Transform @@ -114643,7 +114608,7 @@ entities: pos: -41.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15241 components: - type: Transform @@ -114651,7 +114616,7 @@ entities: pos: -41.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15244 components: - type: Transform @@ -114659,70 +114624,70 @@ entities: pos: -41.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15248 components: - type: Transform pos: -41.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15251 components: - type: Transform pos: -37.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15253 components: - type: Transform pos: -37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15254 components: - type: Transform pos: -37.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15255 components: - type: Transform pos: -38.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15256 components: - type: Transform pos: -38.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15257 components: - type: Transform pos: -38.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15258 components: - type: Transform pos: -38.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15259 components: - type: Transform pos: -38.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15262 components: - type: Transform @@ -114730,7 +114695,7 @@ entities: pos: -38.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15263 components: - type: Transform @@ -114738,7 +114703,7 @@ entities: pos: -39.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15264 components: - type: Transform @@ -114746,7 +114711,7 @@ entities: pos: -40.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15265 components: - type: Transform @@ -114754,7 +114719,7 @@ entities: pos: -39.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15268 components: - type: Transform @@ -114762,7 +114727,7 @@ entities: pos: -36.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15271 components: - type: Transform @@ -114770,7 +114735,7 @@ entities: pos: -37.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15272 components: - type: Transform @@ -114778,7 +114743,7 @@ entities: pos: -36.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15273 components: - type: Transform @@ -114786,7 +114751,7 @@ entities: pos: -35.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15274 components: - type: Transform @@ -114794,7 +114759,7 @@ entities: pos: -33.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15275 components: - type: Transform @@ -114802,7 +114767,7 @@ entities: pos: -32.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15276 components: - type: Transform @@ -114810,7 +114775,7 @@ entities: pos: -31.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15277 components: - type: Transform @@ -114818,7 +114783,7 @@ entities: pos: -34.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15278 components: - type: Transform @@ -114826,7 +114791,7 @@ entities: pos: -33.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15279 components: - type: Transform @@ -114834,7 +114799,7 @@ entities: pos: -32.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15280 components: - type: Transform @@ -114842,35 +114807,35 @@ entities: pos: -31.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15281 components: - type: Transform pos: -34.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15282 components: - type: Transform pos: -34.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15283 components: - type: Transform pos: -34.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15284 components: - type: Transform pos: -35.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15294 components: - type: Transform @@ -114878,7 +114843,7 @@ entities: pos: -40.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15295 components: - type: Transform @@ -114886,7 +114851,7 @@ entities: pos: -41.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15296 components: - type: Transform @@ -114894,7 +114859,7 @@ entities: pos: -42.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15297 components: - type: Transform @@ -114902,7 +114867,7 @@ entities: pos: -43.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15298 components: - type: Transform @@ -114910,7 +114875,7 @@ entities: pos: -44.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15299 components: - type: Transform @@ -114918,7 +114883,7 @@ entities: pos: -43.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15300 components: - type: Transform @@ -114926,7 +114891,7 @@ entities: pos: -44.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15301 components: - type: Transform @@ -114934,7 +114899,7 @@ entities: pos: -45.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15302 components: - type: Transform @@ -114942,7 +114907,7 @@ entities: pos: -46.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15305 components: - type: Transform @@ -114950,7 +114915,7 @@ entities: pos: -46.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15306 components: - type: Transform @@ -114958,7 +114923,7 @@ entities: pos: -47.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15307 components: - type: Transform @@ -114966,7 +114931,7 @@ entities: pos: -48.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15308 components: - type: Transform @@ -114974,7 +114939,7 @@ entities: pos: -49.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15309 components: - type: Transform @@ -114982,7 +114947,7 @@ entities: pos: -50.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15310 components: - type: Transform @@ -114990,7 +114955,7 @@ entities: pos: -48.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15311 components: - type: Transform @@ -114998,7 +114963,7 @@ entities: pos: -49.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15312 components: - type: Transform @@ -115006,7 +114971,7 @@ entities: pos: -50.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15313 components: - type: Transform @@ -115014,7 +114979,7 @@ entities: pos: -47.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15314 components: - type: Transform @@ -115022,7 +114987,7 @@ entities: pos: -47.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15315 components: - type: Transform @@ -115030,7 +114995,7 @@ entities: pos: -47.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15316 components: - type: Transform @@ -115038,7 +115003,7 @@ entities: pos: -45.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15317 components: - type: Transform @@ -115046,7 +115011,7 @@ entities: pos: -45.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15322 components: - type: Transform @@ -115054,7 +115019,7 @@ entities: pos: -4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15323 components: - type: Transform @@ -115062,7 +115027,7 @@ entities: pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15324 components: - type: Transform @@ -115070,7 +115035,7 @@ entities: pos: -2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15327 components: - type: Transform @@ -115078,7 +115043,7 @@ entities: pos: -3.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15328 components: - type: Transform @@ -115086,7 +115051,7 @@ entities: pos: -3.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15329 components: - type: Transform @@ -115094,7 +115059,7 @@ entities: pos: -4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15330 components: - type: Transform @@ -115102,7 +115067,7 @@ entities: pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15332 components: - type: Transform @@ -115110,7 +115075,7 @@ entities: pos: -7.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15333 components: - type: Transform @@ -115118,7 +115083,7 @@ entities: pos: -8.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15334 components: - type: Transform @@ -115126,7 +115091,7 @@ entities: pos: -9.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15335 components: - type: Transform @@ -115134,7 +115099,7 @@ entities: pos: -10.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15336 components: - type: Transform @@ -115142,7 +115107,7 @@ entities: pos: -11.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15339 components: - type: Transform @@ -115150,7 +115115,7 @@ entities: pos: -6.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15340 components: - type: Transform @@ -115158,7 +115123,7 @@ entities: pos: -7.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15341 components: - type: Transform @@ -115166,7 +115131,7 @@ entities: pos: -7.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15342 components: - type: Transform @@ -115174,7 +115139,7 @@ entities: pos: -7.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15343 components: - type: Transform @@ -115182,7 +115147,7 @@ entities: pos: -7.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15344 components: - type: Transform @@ -115190,7 +115155,7 @@ entities: pos: -7.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15347 components: - type: Transform @@ -115198,7 +115163,7 @@ entities: pos: -6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15348 components: - type: Transform @@ -115206,49 +115171,49 @@ entities: pos: -5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15349 components: - type: Transform pos: -6.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15350 components: - type: Transform pos: -6.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15352 components: - type: Transform pos: -6.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15353 components: - type: Transform pos: -6.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15354 components: - type: Transform pos: -6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15355 components: - type: Transform pos: -6.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15358 components: - type: Transform @@ -115256,7 +115221,7 @@ entities: pos: -5.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15359 components: - type: Transform @@ -115264,7 +115229,7 @@ entities: pos: -7.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15360 components: - type: Transform @@ -115272,7 +115237,7 @@ entities: pos: -8.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15361 components: - type: Transform @@ -115280,7 +115245,7 @@ entities: pos: -9.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15362 components: - type: Transform @@ -115288,7 +115253,7 @@ entities: pos: -10.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15365 components: - type: Transform @@ -115296,7 +115261,7 @@ entities: pos: -8.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15366 components: - type: Transform @@ -115304,7 +115269,7 @@ entities: pos: -9.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15367 components: - type: Transform @@ -115312,7 +115277,7 @@ entities: pos: -10.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15368 components: - type: Transform @@ -115320,7 +115285,7 @@ entities: pos: -11.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15369 components: - type: Transform @@ -115328,7 +115293,7 @@ entities: pos: -13.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15370 components: - type: Transform @@ -115336,7 +115301,7 @@ entities: pos: -14.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15371 components: - type: Transform @@ -115344,7 +115309,7 @@ entities: pos: -15.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15372 components: - type: Transform @@ -115352,7 +115317,7 @@ entities: pos: -17.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15373 components: - type: Transform @@ -115360,7 +115325,7 @@ entities: pos: -12.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15374 components: - type: Transform @@ -115368,7 +115333,7 @@ entities: pos: -13.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15375 components: - type: Transform @@ -115376,7 +115341,7 @@ entities: pos: -14.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15376 components: - type: Transform @@ -115384,7 +115349,7 @@ entities: pos: -15.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15377 components: - type: Transform @@ -115392,7 +115357,7 @@ entities: pos: -16.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15378 components: - type: Transform @@ -115400,7 +115365,7 @@ entities: pos: -18.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15379 components: - type: Transform @@ -115408,7 +115373,7 @@ entities: pos: -19.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15380 components: - type: Transform @@ -115416,7 +115381,7 @@ entities: pos: -18.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15382 components: - type: Transform @@ -115424,7 +115389,7 @@ entities: pos: -11.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15383 components: - type: Transform @@ -115432,63 +115397,63 @@ entities: pos: -11.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15388 components: - type: Transform pos: -19.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15389 components: - type: Transform pos: -19.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15390 components: - type: Transform pos: -19.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15392 components: - type: Transform pos: -19.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15393 components: - type: Transform pos: -19.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15394 components: - type: Transform pos: -21.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15395 components: - type: Transform pos: -21.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15396 components: - type: Transform pos: -21.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15398 components: - type: Transform @@ -115496,7 +115461,7 @@ entities: pos: -18.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15399 components: - type: Transform @@ -115504,7 +115469,7 @@ entities: pos: -17.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15400 components: - type: Transform @@ -115512,14 +115477,14 @@ entities: pos: -16.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15405 components: - type: Transform pos: -21.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15406 components: - type: Transform @@ -115527,7 +115492,7 @@ entities: pos: -22.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15407 components: - type: Transform @@ -115535,7 +115500,7 @@ entities: pos: -23.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15408 components: - type: Transform @@ -115543,7 +115508,7 @@ entities: pos: -20.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15409 components: - type: Transform @@ -115551,7 +115516,7 @@ entities: pos: -21.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15410 components: - type: Transform @@ -115559,7 +115524,7 @@ entities: pos: -22.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15411 components: - type: Transform @@ -115567,7 +115532,7 @@ entities: pos: -23.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15412 components: - type: Transform @@ -115575,7 +115540,7 @@ entities: pos: -24.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15413 components: - type: Transform @@ -115583,7 +115548,7 @@ entities: pos: -24.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15425 components: - type: Transform @@ -115591,7 +115556,7 @@ entities: pos: 39.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15426 components: - type: Transform @@ -115599,7 +115564,7 @@ entities: pos: 38.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15428 components: - type: Transform @@ -115607,7 +115572,7 @@ entities: pos: 36.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15429 components: - type: Transform @@ -115615,7 +115580,7 @@ entities: pos: 35.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15430 components: - type: Transform @@ -115623,7 +115588,7 @@ entities: pos: 41.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15431 components: - type: Transform @@ -115631,7 +115596,7 @@ entities: pos: 40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15432 components: - type: Transform @@ -115639,7 +115604,7 @@ entities: pos: 39.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15434 components: - type: Transform @@ -115647,7 +115612,7 @@ entities: pos: 37.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15435 components: - type: Transform @@ -115655,14 +115620,14 @@ entities: pos: 36.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15442 components: - type: Transform pos: 33.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15447 components: - type: Transform @@ -115670,63 +115635,63 @@ entities: pos: 40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15448 components: - type: Transform pos: 39.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15449 components: - type: Transform pos: 39.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15450 components: - type: Transform pos: 39.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15451 components: - type: Transform pos: 39.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15452 components: - type: Transform pos: 40.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15453 components: - type: Transform pos: 40.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15454 components: - type: Transform pos: 40.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15457 components: - type: Transform pos: 39.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15460 components: - type: Transform @@ -115734,7 +115699,7 @@ entities: pos: 40.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15462 components: - type: Transform @@ -115742,7 +115707,7 @@ entities: pos: 39.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15463 components: - type: Transform @@ -115750,7 +115715,7 @@ entities: pos: 38.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15464 components: - type: Transform @@ -115758,7 +115723,7 @@ entities: pos: 37.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15465 components: - type: Transform @@ -115766,7 +115731,7 @@ entities: pos: 36.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15466 components: - type: Transform @@ -115774,7 +115739,7 @@ entities: pos: 34.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15467 components: - type: Transform @@ -115782,7 +115747,7 @@ entities: pos: 33.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15468 components: - type: Transform @@ -115790,42 +115755,42 @@ entities: pos: 32.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15471 components: - type: Transform pos: 31.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15472 components: - type: Transform pos: 31.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15473 components: - type: Transform pos: 31.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15474 components: - type: Transform pos: 35.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15475 components: - type: Transform pos: 35.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15478 components: - type: Transform @@ -115833,7 +115798,7 @@ entities: pos: 38.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15479 components: - type: Transform @@ -115841,7 +115806,7 @@ entities: pos: 37.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15480 components: - type: Transform @@ -115849,7 +115814,7 @@ entities: pos: 36.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15481 components: - type: Transform @@ -115857,7 +115822,7 @@ entities: pos: 35.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15482 components: - type: Transform @@ -115865,28 +115830,28 @@ entities: pos: 33.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15485 components: - type: Transform pos: 34.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15486 components: - type: Transform pos: 34.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15487 components: - type: Transform pos: 34.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15489 components: - type: Transform @@ -115894,7 +115859,7 @@ entities: pos: 32.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15490 components: - type: Transform @@ -115902,7 +115867,7 @@ entities: pos: 32.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15491 components: - type: Transform @@ -115910,7 +115875,7 @@ entities: pos: 32.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15513 components: - type: Transform @@ -115918,7 +115883,7 @@ entities: pos: 55.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15514 components: - type: Transform @@ -115926,7 +115891,7 @@ entities: pos: 56.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15566 components: - type: Transform @@ -115934,7 +115899,7 @@ entities: pos: 56.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15592 components: - type: Transform @@ -115942,7 +115907,7 @@ entities: pos: 53.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15593 components: - type: Transform @@ -115950,7 +115915,7 @@ entities: pos: 54.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15596 components: - type: Transform @@ -115958,7 +115923,7 @@ entities: pos: 53.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15598 components: - type: Transform @@ -115966,7 +115931,7 @@ entities: pos: 55.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15599 components: - type: Transform @@ -115974,7 +115939,7 @@ entities: pos: 56.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15604 components: - type: Transform @@ -115982,7 +115947,7 @@ entities: pos: 56.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15605 components: - type: Transform @@ -115990,7 +115955,7 @@ entities: pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15606 components: - type: Transform @@ -115998,7 +115963,7 @@ entities: pos: 55.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15607 components: - type: Transform @@ -116006,7 +115971,7 @@ entities: pos: 55.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15608 components: - type: Transform @@ -116014,7 +115979,7 @@ entities: pos: 55.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15609 components: - type: Transform @@ -116022,7 +115987,7 @@ entities: pos: 55.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15610 components: - type: Transform @@ -116030,7 +115995,7 @@ entities: pos: 55.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15613 components: - type: Transform @@ -116038,7 +116003,7 @@ entities: pos: 57.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15614 components: - type: Transform @@ -116046,7 +116011,7 @@ entities: pos: 56.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15621 components: - type: Transform @@ -116054,7 +116019,7 @@ entities: pos: -1.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15622 components: - type: Transform @@ -116062,7 +116027,7 @@ entities: pos: -2.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15623 components: - type: Transform @@ -116070,7 +116035,7 @@ entities: pos: -3.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15624 components: - type: Transform @@ -116078,7 +116043,7 @@ entities: pos: -4.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15625 components: - type: Transform @@ -116086,7 +116051,7 @@ entities: pos: -5.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15626 components: - type: Transform @@ -116094,7 +116059,7 @@ entities: pos: -6.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15627 components: - type: Transform @@ -116102,7 +116067,7 @@ entities: pos: -7.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15628 components: - type: Transform @@ -116110,7 +116075,7 @@ entities: pos: -4.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15629 components: - type: Transform @@ -116118,7 +116083,7 @@ entities: pos: -3.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15630 components: - type: Transform @@ -116126,7 +116091,7 @@ entities: pos: -2.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15631 components: - type: Transform @@ -116134,7 +116099,7 @@ entities: pos: -1.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15632 components: - type: Transform @@ -116142,7 +116107,7 @@ entities: pos: -0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15633 components: - type: Transform @@ -116150,63 +116115,63 @@ entities: pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15634 components: - type: Transform pos: -5.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15635 components: - type: Transform pos: -5.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15636 components: - type: Transform pos: -5.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15637 components: - type: Transform pos: -5.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15638 components: - type: Transform pos: -8.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15639 components: - type: Transform pos: -8.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15640 components: - type: Transform pos: -8.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15641 components: - type: Transform pos: -8.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15642 components: - type: Transform @@ -116214,7 +116179,7 @@ entities: pos: -6.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15643 components: - type: Transform @@ -116222,7 +116187,7 @@ entities: pos: -7.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15644 components: - type: Transform @@ -116230,7 +116195,7 @@ entities: pos: -8.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15645 components: - type: Transform @@ -116238,7 +116203,7 @@ entities: pos: -9.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15646 components: - type: Transform @@ -116246,7 +116211,7 @@ entities: pos: -10.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15647 components: - type: Transform @@ -116254,7 +116219,7 @@ entities: pos: -11.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15648 components: - type: Transform @@ -116262,7 +116227,7 @@ entities: pos: -9.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15649 components: - type: Transform @@ -116270,7 +116235,7 @@ entities: pos: -10.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15650 components: - type: Transform @@ -116278,7 +116243,7 @@ entities: pos: -11.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15655 components: - type: Transform @@ -116286,7 +116251,7 @@ entities: pos: -12.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15657 components: - type: Transform @@ -116294,7 +116259,7 @@ entities: pos: -13.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15658 components: - type: Transform @@ -116302,7 +116267,7 @@ entities: pos: -18.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15659 components: - type: Transform @@ -116310,7 +116275,7 @@ entities: pos: -16.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15660 components: - type: Transform @@ -116318,7 +116283,7 @@ entities: pos: -19.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15661 components: - type: Transform @@ -116326,14 +116291,14 @@ entities: pos: -14.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15662 components: - type: Transform pos: -13.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15664 components: - type: Transform @@ -116341,7 +116306,7 @@ entities: pos: -13.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15665 components: - type: Transform @@ -116349,7 +116314,7 @@ entities: pos: -18.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15667 components: - type: Transform @@ -116365,7 +116330,7 @@ entities: pos: -12.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15669 components: - type: Transform @@ -116373,7 +116338,7 @@ entities: pos: -15.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15670 components: - type: Transform @@ -116381,7 +116346,7 @@ entities: pos: -16.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15671 components: - type: Transform @@ -116389,7 +116354,7 @@ entities: pos: -17.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15672 components: - type: Transform @@ -116397,7 +116362,7 @@ entities: pos: -18.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15675 components: - type: Transform @@ -116412,42 +116377,42 @@ entities: pos: -19.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15682 components: - type: Transform pos: -19.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15683 components: - type: Transform pos: -19.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15684 components: - type: Transform pos: -21.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15685 components: - type: Transform pos: -21.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15686 components: - type: Transform pos: -21.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15689 components: - type: Transform @@ -116455,7 +116420,7 @@ entities: pos: -20.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15690 components: - type: Transform @@ -116463,7 +116428,7 @@ entities: pos: -21.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15691 components: - type: Transform @@ -116471,7 +116436,7 @@ entities: pos: -22.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15692 components: - type: Transform @@ -116479,7 +116444,7 @@ entities: pos: -23.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15695 components: - type: Transform @@ -116487,7 +116452,7 @@ entities: pos: -22.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15696 components: - type: Transform @@ -116495,7 +116460,7 @@ entities: pos: -23.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15697 components: - type: Transform @@ -116503,7 +116468,7 @@ entities: pos: -24.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15698 components: - type: Transform @@ -116511,7 +116476,7 @@ entities: pos: -25.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15699 components: - type: Transform @@ -116519,7 +116484,7 @@ entities: pos: -25.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15700 components: - type: Transform @@ -116527,7 +116492,7 @@ entities: pos: -24.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15701 components: - type: Transform @@ -116535,7 +116500,7 @@ entities: pos: -24.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15702 components: - type: Transform @@ -116543,7 +116508,7 @@ entities: pos: -24.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15703 components: - type: Transform @@ -116551,7 +116516,7 @@ entities: pos: -26.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15704 components: - type: Transform @@ -116559,7 +116524,7 @@ entities: pos: -26.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15705 components: - type: Transform @@ -116567,7 +116532,7 @@ entities: pos: -26.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15706 components: - type: Transform @@ -116575,7 +116540,7 @@ entities: pos: -26.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15707 components: - type: Transform @@ -116583,7 +116548,7 @@ entities: pos: -26.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15708 components: - type: Transform @@ -116591,7 +116556,7 @@ entities: pos: -24.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15709 components: - type: Transform @@ -116599,7 +116564,7 @@ entities: pos: -26.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15715 components: - type: Transform @@ -116614,7 +116579,7 @@ entities: pos: -13.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15719 components: - type: Transform @@ -116622,14 +116587,14 @@ entities: pos: -13.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15722 components: - type: Transform pos: -13.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15723 components: - type: Transform @@ -116637,7 +116602,7 @@ entities: pos: -14.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15724 components: - type: Transform @@ -116645,7 +116610,7 @@ entities: pos: -15.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15725 components: - type: Transform @@ -116653,7 +116618,7 @@ entities: pos: -16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15727 components: - type: Transform @@ -116661,7 +116626,7 @@ entities: pos: -15.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15728 components: - type: Transform @@ -116669,7 +116634,7 @@ entities: pos: -20.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15730 components: - type: Transform @@ -116677,7 +116642,7 @@ entities: pos: -20.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15731 components: - type: Transform @@ -116685,7 +116650,7 @@ entities: pos: -21.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15732 components: - type: Transform @@ -116693,7 +116658,7 @@ entities: pos: -22.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15733 components: - type: Transform @@ -116701,7 +116666,7 @@ entities: pos: -23.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15734 components: - type: Transform @@ -116709,7 +116674,7 @@ entities: pos: -22.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15735 components: - type: Transform @@ -116717,28 +116682,28 @@ entities: pos: -23.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15738 components: - type: Transform pos: -19.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15739 components: - type: Transform pos: -17.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15746 components: - type: Transform pos: -17.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15747 components: - type: Transform @@ -116746,7 +116711,7 @@ entities: pos: -18.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15748 components: - type: Transform @@ -116754,7 +116719,7 @@ entities: pos: -17.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15749 components: - type: Transform @@ -116762,7 +116727,7 @@ entities: pos: -16.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15751 components: - type: Transform @@ -116770,7 +116735,7 @@ entities: pos: -14.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15752 components: - type: Transform @@ -116778,7 +116743,7 @@ entities: pos: -13.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15753 components: - type: Transform @@ -116786,7 +116751,7 @@ entities: pos: -12.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15754 components: - type: Transform @@ -116794,7 +116759,7 @@ entities: pos: -16.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15755 components: - type: Transform @@ -116802,7 +116767,7 @@ entities: pos: -15.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15757 components: - type: Transform @@ -116810,7 +116775,7 @@ entities: pos: -13.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15758 components: - type: Transform @@ -116818,7 +116783,7 @@ entities: pos: -18.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15759 components: - type: Transform @@ -116826,7 +116791,7 @@ entities: pos: -19.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15760 components: - type: Transform @@ -116834,7 +116799,7 @@ entities: pos: -20.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15762 components: - type: Transform @@ -116842,7 +116807,7 @@ entities: pos: -22.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15763 components: - type: Transform @@ -116850,7 +116815,7 @@ entities: pos: -23.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15765 components: - type: Transform @@ -116858,7 +116823,7 @@ entities: pos: -20.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15766 components: - type: Transform @@ -116866,7 +116831,7 @@ entities: pos: -21.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15768 components: - type: Transform @@ -116874,7 +116839,7 @@ entities: pos: -23.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15769 components: - type: Transform @@ -116882,7 +116847,7 @@ entities: pos: -24.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15770 components: - type: Transform @@ -116890,7 +116855,7 @@ entities: pos: -19.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15771 components: - type: Transform @@ -116898,7 +116863,7 @@ entities: pos: -19.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15772 components: - type: Transform @@ -116906,7 +116871,7 @@ entities: pos: -19.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15773 components: - type: Transform @@ -116914,7 +116879,7 @@ entities: pos: -17.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15774 components: - type: Transform @@ -116922,7 +116887,7 @@ entities: pos: -17.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15777 components: - type: Transform @@ -116930,7 +116895,7 @@ entities: pos: -22.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15778 components: - type: Transform @@ -116938,7 +116903,7 @@ entities: pos: -22.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15779 components: - type: Transform @@ -116946,7 +116911,7 @@ entities: pos: -22.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15780 components: - type: Transform @@ -116954,7 +116919,7 @@ entities: pos: -21.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15781 components: - type: Transform @@ -116962,7 +116927,7 @@ entities: pos: -21.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15782 components: - type: Transform @@ -116970,7 +116935,7 @@ entities: pos: -15.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15783 components: - type: Transform @@ -116978,7 +116943,7 @@ entities: pos: -15.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15784 components: - type: Transform @@ -116986,7 +116951,7 @@ entities: pos: -15.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15785 components: - type: Transform @@ -116994,7 +116959,7 @@ entities: pos: -14.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15786 components: - type: Transform @@ -117002,7 +116967,7 @@ entities: pos: -14.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15793 components: - type: Transform @@ -117010,7 +116975,7 @@ entities: pos: -11.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15794 components: - type: Transform @@ -117018,7 +116983,7 @@ entities: pos: -11.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15798 components: - type: Transform @@ -117026,7 +116991,7 @@ entities: pos: -11.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15799 components: - type: Transform @@ -117034,7 +116999,7 @@ entities: pos: -10.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15800 components: - type: Transform @@ -117042,7 +117007,7 @@ entities: pos: -9.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15801 components: - type: Transform @@ -117050,7 +117015,7 @@ entities: pos: -8.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15802 components: - type: Transform @@ -117058,7 +117023,7 @@ entities: pos: -7.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15804 components: - type: Transform @@ -117066,7 +117031,7 @@ entities: pos: -10.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15805 components: - type: Transform @@ -117074,7 +117039,7 @@ entities: pos: -9.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15806 components: - type: Transform @@ -117082,7 +117047,7 @@ entities: pos: -8.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15812 components: - type: Transform @@ -117090,7 +117055,7 @@ entities: pos: -20.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15816 components: - type: Transform @@ -117098,7 +117063,7 @@ entities: pos: -25.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15817 components: - type: Transform @@ -117106,7 +117071,7 @@ entities: pos: -25.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15818 components: - type: Transform @@ -117114,7 +117079,7 @@ entities: pos: -26.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15819 components: - type: Transform @@ -117122,7 +117087,7 @@ entities: pos: -27.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15821 components: - type: Transform @@ -117130,7 +117095,7 @@ entities: pos: -27.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15822 components: - type: Transform @@ -117138,7 +117103,7 @@ entities: pos: -28.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15823 components: - type: Transform @@ -117146,7 +117111,7 @@ entities: pos: -29.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15825 components: - type: Transform @@ -117154,28 +117119,28 @@ entities: pos: -30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15826 components: - type: Transform pos: -26.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15830 components: - type: Transform pos: -31.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15831 components: - type: Transform pos: -31.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15832 components: - type: Transform @@ -117183,91 +117148,91 @@ entities: pos: -29.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15834 components: - type: Transform pos: -28.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15835 components: - type: Transform pos: -28.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15836 components: - type: Transform pos: -28.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15838 components: - type: Transform pos: -31.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15839 components: - type: Transform pos: -31.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15841 components: - type: Transform pos: -31.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15842 components: - type: Transform pos: -31.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15843 components: - type: Transform pos: -31.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15844 components: - type: Transform pos: -29.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15845 components: - type: Transform pos: -29.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15846 components: - type: Transform pos: -29.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15847 components: - type: Transform pos: -29.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15859 components: - type: Transform @@ -117275,7 +117240,7 @@ entities: pos: -27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15860 components: - type: Transform @@ -117283,7 +117248,7 @@ entities: pos: -28.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15861 components: - type: Transform @@ -117291,7 +117256,7 @@ entities: pos: -27.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15862 components: - type: Transform @@ -117299,7 +117264,7 @@ entities: pos: -26.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15863 components: - type: Transform @@ -117307,7 +117272,7 @@ entities: pos: -25.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15864 components: - type: Transform @@ -117315,7 +117280,7 @@ entities: pos: -25.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15865 components: - type: Transform @@ -117323,154 +117288,154 @@ entities: pos: -25.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15867 components: - type: Transform pos: -26.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15868 components: - type: Transform pos: -26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15869 components: - type: Transform pos: -26.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15870 components: - type: Transform pos: -26.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15871 components: - type: Transform pos: -29.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15872 components: - type: Transform pos: -29.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15873 components: - type: Transform pos: -29.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15874 components: - type: Transform pos: -29.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15875 components: - type: Transform pos: -29.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15876 components: - type: Transform pos: -28.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15877 components: - type: Transform pos: -28.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15878 components: - type: Transform pos: -28.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15879 components: - type: Transform pos: -28.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15880 components: - type: Transform pos: -32.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15881 components: - type: Transform pos: -32.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15882 components: - type: Transform pos: -32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15883 components: - type: Transform pos: -32.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15884 components: - type: Transform pos: -31.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15885 components: - type: Transform pos: -31.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15886 components: - type: Transform pos: -31.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15887 components: - type: Transform pos: -31.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15888 components: - type: Transform @@ -117478,7 +117443,7 @@ entities: pos: -30.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15889 components: - type: Transform @@ -117486,7 +117451,7 @@ entities: pos: -29.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15890 components: - type: Transform @@ -117494,7 +117459,7 @@ entities: pos: -30.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15891 components: - type: Transform @@ -117502,7 +117467,7 @@ entities: pos: -31.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15892 components: - type: Transform @@ -117510,7 +117475,7 @@ entities: pos: -32.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15893 components: - type: Transform @@ -117518,7 +117483,7 @@ entities: pos: -32.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15895 components: - type: Transform @@ -117526,7 +117491,7 @@ entities: pos: -29.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15896 components: - type: Transform @@ -117534,7 +117499,7 @@ entities: pos: -31.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15897 components: - type: Transform @@ -117542,42 +117507,42 @@ entities: pos: -31.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15906 components: - type: Transform pos: -25.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15907 components: - type: Transform pos: -25.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15908 components: - type: Transform pos: -25.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15909 components: - type: Transform pos: -26.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15910 components: - type: Transform pos: -26.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15914 components: - type: Transform @@ -117585,7 +117550,7 @@ entities: pos: -0.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15915 components: - type: Transform @@ -117593,7 +117558,7 @@ entities: pos: -0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15918 components: - type: Transform @@ -117601,7 +117566,7 @@ entities: pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15919 components: - type: Transform @@ -117609,7 +117574,7 @@ entities: pos: 1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15920 components: - type: Transform @@ -117617,7 +117582,7 @@ entities: pos: 1.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15921 components: - type: Transform @@ -117625,7 +117590,7 @@ entities: pos: 2.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15926 components: - type: Transform @@ -117633,7 +117598,7 @@ entities: pos: -0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15927 components: - type: Transform @@ -117641,7 +117606,7 @@ entities: pos: 1.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15928 components: - type: Transform @@ -117649,7 +117614,7 @@ entities: pos: 2.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15929 components: - type: Transform @@ -117657,7 +117622,7 @@ entities: pos: 3.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15930 components: - type: Transform @@ -117665,7 +117630,7 @@ entities: pos: -1.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15931 components: - type: Transform @@ -117673,7 +117638,7 @@ entities: pos: -2.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15932 components: - type: Transform @@ -117681,7 +117646,7 @@ entities: pos: -3.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15933 components: - type: Transform @@ -117689,7 +117654,7 @@ entities: pos: -5.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15936 components: - type: Transform @@ -117697,7 +117662,7 @@ entities: pos: -7.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15937 components: - type: Transform @@ -117705,7 +117670,7 @@ entities: pos: -8.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15938 components: - type: Transform @@ -117713,7 +117678,7 @@ entities: pos: -9.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15939 components: - type: Transform @@ -117721,7 +117686,7 @@ entities: pos: -9.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15940 components: - type: Transform @@ -117729,7 +117694,7 @@ entities: pos: -9.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15941 components: - type: Transform @@ -117737,7 +117702,7 @@ entities: pos: -9.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15942 components: - type: Transform @@ -117745,7 +117710,7 @@ entities: pos: -9.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15943 components: - type: Transform @@ -117753,7 +117718,7 @@ entities: pos: -9.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15944 components: - type: Transform @@ -117761,7 +117726,7 @@ entities: pos: -9.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15945 components: - type: Transform @@ -117769,7 +117734,7 @@ entities: pos: -9.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15946 components: - type: Transform @@ -117777,7 +117742,7 @@ entities: pos: -9.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15947 components: - type: Transform @@ -117785,7 +117750,7 @@ entities: pos: -9.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15948 components: - type: Transform @@ -117793,7 +117758,7 @@ entities: pos: -9.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15950 components: - type: Transform @@ -117801,7 +117766,7 @@ entities: pos: -9.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15951 components: - type: Transform @@ -117809,7 +117774,7 @@ entities: pos: -9.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15952 components: - type: Transform @@ -117817,7 +117782,7 @@ entities: pos: -9.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15953 components: - type: Transform @@ -117825,7 +117790,7 @@ entities: pos: -9.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15954 components: - type: Transform @@ -117833,7 +117798,7 @@ entities: pos: -9.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15955 components: - type: Transform @@ -117841,7 +117806,7 @@ entities: pos: -9.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15956 components: - type: Transform @@ -117849,7 +117814,7 @@ entities: pos: -9.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15957 components: - type: Transform @@ -117857,7 +117822,7 @@ entities: pos: -9.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15958 components: - type: Transform @@ -117865,7 +117830,7 @@ entities: pos: 3.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15959 components: - type: Transform @@ -117873,7 +117838,7 @@ entities: pos: -8.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15960 components: - type: Transform @@ -117881,7 +117846,7 @@ entities: pos: -8.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15961 components: - type: Transform @@ -117889,7 +117854,7 @@ entities: pos: -8.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15962 components: - type: Transform @@ -117897,7 +117862,7 @@ entities: pos: -8.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15963 components: - type: Transform @@ -117905,7 +117870,7 @@ entities: pos: -8.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15964 components: - type: Transform @@ -117913,7 +117878,7 @@ entities: pos: -8.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15965 components: - type: Transform @@ -117921,7 +117886,7 @@ entities: pos: -8.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15966 components: - type: Transform @@ -117929,7 +117894,7 @@ entities: pos: -8.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15967 components: - type: Transform @@ -117937,7 +117902,7 @@ entities: pos: -8.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15969 components: - type: Transform @@ -117945,7 +117910,7 @@ entities: pos: -8.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15970 components: - type: Transform @@ -117953,7 +117918,7 @@ entities: pos: -8.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15971 components: - type: Transform @@ -117961,7 +117926,7 @@ entities: pos: -8.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15972 components: - type: Transform @@ -117969,7 +117934,7 @@ entities: pos: -8.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15973 components: - type: Transform @@ -117977,7 +117942,7 @@ entities: pos: -8.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15974 components: - type: Transform @@ -117985,7 +117950,7 @@ entities: pos: -8.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15975 components: - type: Transform @@ -117993,7 +117958,7 @@ entities: pos: -8.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15976 components: - type: Transform @@ -118001,7 +117966,7 @@ entities: pos: -8.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15977 components: - type: Transform @@ -118009,7 +117974,7 @@ entities: pos: -8.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15978 components: - type: Transform @@ -118017,7 +117982,7 @@ entities: pos: -8.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15979 components: - type: Transform @@ -118025,7 +117990,7 @@ entities: pos: 3.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15980 components: - type: Transform @@ -118033,7 +117998,7 @@ entities: pos: 3.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15981 components: - type: Transform @@ -118041,7 +118006,7 @@ entities: pos: 3.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15982 components: - type: Transform @@ -118049,7 +118014,7 @@ entities: pos: 3.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15983 components: - type: Transform @@ -118057,7 +118022,7 @@ entities: pos: 3.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15984 components: - type: Transform @@ -118065,7 +118030,7 @@ entities: pos: 3.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15985 components: - type: Transform @@ -118073,7 +118038,7 @@ entities: pos: 3.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15986 components: - type: Transform @@ -118081,7 +118046,7 @@ entities: pos: 3.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15987 components: - type: Transform @@ -118089,7 +118054,7 @@ entities: pos: 3.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15989 components: - type: Transform @@ -118097,7 +118062,7 @@ entities: pos: 3.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15990 components: - type: Transform @@ -118105,7 +118070,7 @@ entities: pos: 3.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15991 components: - type: Transform @@ -118113,7 +118078,7 @@ entities: pos: 3.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15992 components: - type: Transform @@ -118121,7 +118086,7 @@ entities: pos: 3.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15993 components: - type: Transform @@ -118129,7 +118094,7 @@ entities: pos: 3.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15994 components: - type: Transform @@ -118137,7 +118102,7 @@ entities: pos: 3.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15995 components: - type: Transform @@ -118145,7 +118110,7 @@ entities: pos: 3.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15996 components: - type: Transform @@ -118153,7 +118118,7 @@ entities: pos: 3.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15997 components: - type: Transform @@ -118161,7 +118126,7 @@ entities: pos: 3.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15998 components: - type: Transform @@ -118169,7 +118134,7 @@ entities: pos: 4.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15999 components: - type: Transform @@ -118177,7 +118142,7 @@ entities: pos: 4.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16000 components: - type: Transform @@ -118185,7 +118150,7 @@ entities: pos: 4.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16001 components: - type: Transform @@ -118193,7 +118158,7 @@ entities: pos: 4.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16002 components: - type: Transform @@ -118201,7 +118166,7 @@ entities: pos: 4.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16003 components: - type: Transform @@ -118209,7 +118174,7 @@ entities: pos: 4.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16004 components: - type: Transform @@ -118217,7 +118182,7 @@ entities: pos: 4.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16005 components: - type: Transform @@ -118225,7 +118190,7 @@ entities: pos: 4.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16007 components: - type: Transform @@ -118233,7 +118198,7 @@ entities: pos: 4.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16008 components: - type: Transform @@ -118241,7 +118206,7 @@ entities: pos: 4.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16009 components: - type: Transform @@ -118249,7 +118214,7 @@ entities: pos: 4.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16010 components: - type: Transform @@ -118257,7 +118222,7 @@ entities: pos: 4.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16011 components: - type: Transform @@ -118265,7 +118230,7 @@ entities: pos: 4.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16012 components: - type: Transform @@ -118273,7 +118238,7 @@ entities: pos: 4.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16013 components: - type: Transform @@ -118281,7 +118246,7 @@ entities: pos: 4.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16014 components: - type: Transform @@ -118289,7 +118254,7 @@ entities: pos: 4.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16015 components: - type: Transform @@ -118297,7 +118262,7 @@ entities: pos: 4.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16016 components: - type: Transform @@ -118305,7 +118270,7 @@ entities: pos: 4.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16017 components: - type: Transform @@ -118313,7 +118278,7 @@ entities: pos: 4.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16018 components: - type: Transform @@ -118321,7 +118286,7 @@ entities: pos: 4.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16020 components: - type: Transform @@ -118329,7 +118294,7 @@ entities: pos: 0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16021 components: - type: Transform @@ -118337,7 +118302,7 @@ entities: pos: -1.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16022 components: - type: Transform @@ -118345,7 +118310,7 @@ entities: pos: -2.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16023 components: - type: Transform @@ -118353,7 +118318,7 @@ entities: pos: -3.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16024 components: - type: Transform @@ -118361,7 +118326,7 @@ entities: pos: -4.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16025 components: - type: Transform @@ -118369,7 +118334,7 @@ entities: pos: -6.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16027 components: - type: Transform @@ -118377,7 +118342,7 @@ entities: pos: -7.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16029 components: - type: Transform @@ -118385,7 +118350,7 @@ entities: pos: -6.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16117 components: - type: Transform @@ -118393,7 +118358,7 @@ entities: pos: 45.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16118 components: - type: Transform @@ -118401,7 +118366,7 @@ entities: pos: 45.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16119 components: - type: Transform @@ -118409,7 +118374,7 @@ entities: pos: 45.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16120 components: - type: Transform @@ -118417,7 +118382,7 @@ entities: pos: 45.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16121 components: - type: Transform @@ -118425,7 +118390,7 @@ entities: pos: 49.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16122 components: - type: Transform @@ -118433,7 +118398,7 @@ entities: pos: 49.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16127 components: - type: Transform @@ -118441,7 +118406,7 @@ entities: pos: 40.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16128 components: - type: Transform @@ -118449,7 +118414,7 @@ entities: pos: 40.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16129 components: - type: Transform @@ -118457,7 +118422,7 @@ entities: pos: 40.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16130 components: - type: Transform @@ -118465,7 +118430,7 @@ entities: pos: 39.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16131 components: - type: Transform @@ -118473,7 +118438,7 @@ entities: pos: 39.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16132 components: - type: Transform @@ -118481,7 +118446,7 @@ entities: pos: 39.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16133 components: - type: Transform @@ -118489,7 +118454,7 @@ entities: pos: 39.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16134 components: - type: Transform @@ -118497,7 +118462,7 @@ entities: pos: 39.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16138 components: - type: Transform @@ -118505,7 +118470,7 @@ entities: pos: -17.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16139 components: - type: Transform @@ -118513,7 +118478,7 @@ entities: pos: -17.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16140 components: - type: Transform @@ -118521,7 +118486,7 @@ entities: pos: -19.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16141 components: - type: Transform @@ -118529,28 +118494,28 @@ entities: pos: -18.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16145 components: - type: Transform pos: -16.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16146 components: - type: Transform pos: -16.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16147 components: - type: Transform pos: -16.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16151 components: - type: Transform @@ -118558,7 +118523,7 @@ entities: pos: 0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16152 components: - type: Transform @@ -118566,7 +118531,7 @@ entities: pos: -0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16153 components: - type: Transform @@ -118574,7 +118539,7 @@ entities: pos: -1.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16154 components: - type: Transform @@ -118582,7 +118547,7 @@ entities: pos: -2.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16155 components: - type: Transform @@ -118590,7 +118555,7 @@ entities: pos: -3.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16156 components: - type: Transform @@ -118598,7 +118563,7 @@ entities: pos: -4.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16157 components: - type: Transform @@ -118606,7 +118571,7 @@ entities: pos: -5.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16158 components: - type: Transform @@ -118614,7 +118579,7 @@ entities: pos: -7.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16159 components: - type: Transform @@ -118622,7 +118587,7 @@ entities: pos: -8.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16160 components: - type: Transform @@ -118630,7 +118595,7 @@ entities: pos: -9.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16161 components: - type: Transform @@ -118638,7 +118603,7 @@ entities: pos: -10.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16162 components: - type: Transform @@ -118646,7 +118611,7 @@ entities: pos: -1.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16163 components: - type: Transform @@ -118654,7 +118619,7 @@ entities: pos: -2.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16164 components: - type: Transform @@ -118662,7 +118627,7 @@ entities: pos: -3.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16165 components: - type: Transform @@ -118670,7 +118635,7 @@ entities: pos: -4.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16166 components: - type: Transform @@ -118678,7 +118643,7 @@ entities: pos: -5.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16167 components: - type: Transform @@ -118686,7 +118651,7 @@ entities: pos: -6.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16168 components: - type: Transform @@ -118694,7 +118659,7 @@ entities: pos: -7.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16169 components: - type: Transform @@ -118702,7 +118667,7 @@ entities: pos: -9.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16170 components: - type: Transform @@ -118710,7 +118675,7 @@ entities: pos: -10.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16171 components: - type: Transform @@ -118718,7 +118683,7 @@ entities: pos: -11.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16173 components: - type: Transform @@ -118732,21 +118697,21 @@ entities: pos: -6.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16177 components: - type: Transform pos: -8.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16178 components: - type: Transform pos: -8.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16181 components: - type: Transform @@ -118754,7 +118719,7 @@ entities: pos: -12.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16182 components: - type: Transform @@ -118762,7 +118727,7 @@ entities: pos: -12.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16183 components: - type: Transform @@ -118770,7 +118735,7 @@ entities: pos: -12.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16184 components: - type: Transform @@ -118778,7 +118743,7 @@ entities: pos: -12.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16185 components: - type: Transform @@ -118786,7 +118751,7 @@ entities: pos: -11.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16186 components: - type: Transform @@ -118794,7 +118759,7 @@ entities: pos: -11.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16187 components: - type: Transform @@ -118802,7 +118767,7 @@ entities: pos: -11.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16190 components: - type: Transform @@ -118810,7 +118775,7 @@ entities: pos: 3.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16191 components: - type: Transform @@ -118818,7 +118783,7 @@ entities: pos: 4.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16192 components: - type: Transform @@ -118826,7 +118791,7 @@ entities: pos: 5.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16193 components: - type: Transform @@ -118834,7 +118799,7 @@ entities: pos: 0.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16194 components: - type: Transform @@ -118842,7 +118807,7 @@ entities: pos: 1.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16195 components: - type: Transform @@ -118850,7 +118815,7 @@ entities: pos: 2.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16196 components: - type: Transform @@ -118858,7 +118823,7 @@ entities: pos: 3.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16197 components: - type: Transform @@ -118866,7 +118831,7 @@ entities: pos: 4.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16198 components: - type: Transform @@ -118874,7 +118839,7 @@ entities: pos: 5.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16199 components: - type: Transform @@ -118882,7 +118847,7 @@ entities: pos: 7.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16200 components: - type: Transform @@ -118890,7 +118855,7 @@ entities: pos: 8.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16201 components: - type: Transform @@ -118898,7 +118863,7 @@ entities: pos: 9.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16202 components: - type: Transform @@ -118906,7 +118871,7 @@ entities: pos: 10.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16203 components: - type: Transform @@ -118914,7 +118879,7 @@ entities: pos: 11.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16204 components: - type: Transform @@ -118922,7 +118887,7 @@ entities: pos: 12.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16205 components: - type: Transform @@ -118930,7 +118895,7 @@ entities: pos: 7.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16206 components: - type: Transform @@ -118938,7 +118903,7 @@ entities: pos: 8.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16207 components: - type: Transform @@ -118946,7 +118911,7 @@ entities: pos: 9.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16208 components: - type: Transform @@ -118954,7 +118919,7 @@ entities: pos: 10.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16209 components: - type: Transform @@ -118962,7 +118927,7 @@ entities: pos: 11.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16218 components: - type: Transform @@ -118970,7 +118935,7 @@ entities: pos: 18.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16219 components: - type: Transform @@ -118978,7 +118943,7 @@ entities: pos: 19.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16220 components: - type: Transform @@ -118986,7 +118951,7 @@ entities: pos: 20.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16221 components: - type: Transform @@ -118994,7 +118959,7 @@ entities: pos: 21.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16222 components: - type: Transform @@ -119002,7 +118967,7 @@ entities: pos: 21.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16223 components: - type: Transform @@ -119010,7 +118975,7 @@ entities: pos: 20.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16224 components: - type: Transform @@ -119018,7 +118983,7 @@ entities: pos: 19.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16225 components: - type: Transform @@ -119026,7 +118991,7 @@ entities: pos: 18.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16230 components: - type: Transform @@ -119034,7 +118999,7 @@ entities: pos: 6.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16231 components: - type: Transform @@ -119042,7 +119007,7 @@ entities: pos: 2.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16232 components: - type: Transform @@ -119050,7 +119015,7 @@ entities: pos: 3.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16233 components: - type: Transform @@ -119058,7 +119023,7 @@ entities: pos: 4.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16234 components: - type: Transform @@ -119066,7 +119031,7 @@ entities: pos: 5.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16240 components: - type: Transform @@ -119074,7 +119039,7 @@ entities: pos: 15.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16241 components: - type: Transform @@ -119082,7 +119047,7 @@ entities: pos: 14.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16243 components: - type: Transform @@ -119090,7 +119055,7 @@ entities: pos: 23.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16244 components: - type: Transform @@ -119098,7 +119063,7 @@ entities: pos: 23.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16245 components: - type: Transform @@ -119106,7 +119071,7 @@ entities: pos: 23.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16246 components: - type: Transform @@ -119114,7 +119079,7 @@ entities: pos: 24.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16247 components: - type: Transform @@ -119122,7 +119087,7 @@ entities: pos: 24.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16248 components: - type: Transform @@ -119130,7 +119095,7 @@ entities: pos: 24.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16249 components: - type: Transform @@ -119138,7 +119103,7 @@ entities: pos: 24.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16253 components: - type: Transform @@ -119146,7 +119111,7 @@ entities: pos: 23.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16257 components: - type: Transform @@ -119154,7 +119119,7 @@ entities: pos: 25.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16258 components: - type: Transform @@ -119162,7 +119127,7 @@ entities: pos: 24.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16259 components: - type: Transform @@ -119170,7 +119135,7 @@ entities: pos: 26.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16260 components: - type: Transform @@ -119178,7 +119143,7 @@ entities: pos: 25.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16261 components: - type: Transform @@ -119186,7 +119151,7 @@ entities: pos: 26.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16268 components: - type: Transform @@ -119194,7 +119159,7 @@ entities: pos: 23.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16269 components: - type: Transform @@ -119202,7 +119167,7 @@ entities: pos: 22.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16270 components: - type: Transform @@ -119210,14 +119175,14 @@ entities: pos: 22.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16271 components: - type: Transform pos: 24.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16272 components: - type: Transform @@ -119225,7 +119190,7 @@ entities: pos: 24.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16273 components: - type: Transform @@ -119233,7 +119198,7 @@ entities: pos: 25.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16277 components: - type: Transform @@ -119241,7 +119206,7 @@ entities: pos: 26.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16278 components: - type: Transform @@ -119249,7 +119214,7 @@ entities: pos: 26.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16279 components: - type: Transform @@ -119257,7 +119222,7 @@ entities: pos: 26.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16280 components: - type: Transform @@ -119265,7 +119230,7 @@ entities: pos: 26.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16281 components: - type: Transform @@ -119273,7 +119238,7 @@ entities: pos: 26.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16282 components: - type: Transform @@ -119281,7 +119246,7 @@ entities: pos: 24.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16283 components: - type: Transform @@ -119289,7 +119254,7 @@ entities: pos: 24.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16284 components: - type: Transform @@ -119297,7 +119262,7 @@ entities: pos: 24.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16286 components: - type: Transform @@ -119305,21 +119270,21 @@ entities: pos: 24.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16289 components: - type: Transform pos: 24.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16290 components: - type: Transform pos: 24.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16291 components: - type: Transform @@ -119327,7 +119292,7 @@ entities: pos: 25.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16292 components: - type: Transform @@ -119335,7 +119300,7 @@ entities: pos: 26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16293 components: - type: Transform @@ -119343,7 +119308,7 @@ entities: pos: 26.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16294 components: - type: Transform @@ -119351,7 +119316,7 @@ entities: pos: 26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16295 components: - type: Transform @@ -119359,7 +119324,7 @@ entities: pos: 26.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16296 components: - type: Transform @@ -119367,7 +119332,7 @@ entities: pos: 24.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16299 components: - type: Transform @@ -119375,7 +119340,7 @@ entities: pos: 24.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16300 components: - type: Transform @@ -119383,14 +119348,14 @@ entities: pos: 24.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16303 components: - type: Transform pos: 26.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16304 components: - type: Transform @@ -119398,7 +119363,7 @@ entities: pos: 27.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16305 components: - type: Transform @@ -119406,7 +119371,7 @@ entities: pos: 25.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16306 components: - type: Transform @@ -119414,7 +119379,7 @@ entities: pos: 26.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16307 components: - type: Transform @@ -119422,7 +119387,7 @@ entities: pos: 27.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16310 components: - type: Transform @@ -119430,7 +119395,7 @@ entities: pos: 28.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16311 components: - type: Transform @@ -119438,7 +119403,7 @@ entities: pos: 29.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16312 components: - type: Transform @@ -119446,7 +119411,7 @@ entities: pos: 30.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16313 components: - type: Transform @@ -119454,7 +119419,7 @@ entities: pos: 31.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16314 components: - type: Transform @@ -119462,7 +119427,7 @@ entities: pos: 32.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16316 components: - type: Transform @@ -119470,7 +119435,7 @@ entities: pos: 30.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16317 components: - type: Transform @@ -119478,7 +119443,7 @@ entities: pos: 31.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16318 components: - type: Transform @@ -119486,7 +119451,7 @@ entities: pos: 32.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16319 components: - type: Transform @@ -119494,7 +119459,7 @@ entities: pos: 33.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16323 components: - type: Transform @@ -119502,7 +119467,7 @@ entities: pos: 35.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16324 components: - type: Transform @@ -119510,7 +119475,7 @@ entities: pos: 35.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16325 components: - type: Transform @@ -119518,7 +119483,7 @@ entities: pos: 35.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16326 components: - type: Transform @@ -119526,7 +119491,7 @@ entities: pos: 35.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16327 components: - type: Transform @@ -119534,7 +119499,7 @@ entities: pos: 35.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16328 components: - type: Transform @@ -119542,7 +119507,7 @@ entities: pos: 35.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16329 components: - type: Transform @@ -119550,7 +119515,7 @@ entities: pos: 34.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16330 components: - type: Transform @@ -119558,7 +119523,7 @@ entities: pos: 34.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16331 components: - type: Transform @@ -119566,7 +119531,7 @@ entities: pos: 34.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16332 components: - type: Transform @@ -119574,7 +119539,7 @@ entities: pos: 34.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16333 components: - type: Transform @@ -119582,28 +119547,28 @@ entities: pos: 34.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16338 components: - type: Transform pos: 34.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16339 components: - type: Transform pos: 33.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16340 components: - type: Transform pos: 33.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16343 components: - type: Transform @@ -119611,7 +119576,7 @@ entities: pos: 35.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16344 components: - type: Transform @@ -119619,7 +119584,7 @@ entities: pos: 32.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16347 components: - type: Transform @@ -119627,7 +119592,7 @@ entities: pos: 26.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16348 components: - type: Transform @@ -119635,7 +119600,7 @@ entities: pos: 27.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16349 components: - type: Transform @@ -119643,7 +119608,7 @@ entities: pos: 28.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16350 components: - type: Transform @@ -119651,7 +119616,7 @@ entities: pos: 29.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16351 components: - type: Transform @@ -119659,7 +119624,7 @@ entities: pos: 30.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16353 components: - type: Transform @@ -119667,7 +119632,7 @@ entities: pos: 27.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16354 components: - type: Transform @@ -119675,7 +119640,7 @@ entities: pos: 28.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16355 components: - type: Transform @@ -119683,7 +119648,7 @@ entities: pos: 29.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16356 components: - type: Transform @@ -119691,7 +119656,7 @@ entities: pos: 30.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16359 components: - type: Transform @@ -119699,7 +119664,7 @@ entities: pos: 25.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16360 components: - type: Transform @@ -119707,7 +119672,7 @@ entities: pos: 24.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16361 components: - type: Transform @@ -119715,7 +119680,7 @@ entities: pos: 23.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16362 components: - type: Transform @@ -119723,7 +119688,7 @@ entities: pos: 22.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16363 components: - type: Transform @@ -119731,7 +119696,7 @@ entities: pos: 21.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16364 components: - type: Transform @@ -119739,7 +119704,7 @@ entities: pos: 20.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16365 components: - type: Transform @@ -119747,7 +119712,7 @@ entities: pos: 19.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16368 components: - type: Transform @@ -119755,7 +119720,7 @@ entities: pos: 23.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16369 components: - type: Transform @@ -119763,7 +119728,7 @@ entities: pos: 22.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16370 components: - type: Transform @@ -119771,7 +119736,7 @@ entities: pos: 21.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16371 components: - type: Transform @@ -119779,7 +119744,7 @@ entities: pos: 20.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16372 components: - type: Transform @@ -119787,21 +119752,21 @@ entities: pos: 19.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16378 components: - type: Transform pos: 18.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16379 components: - type: Transform pos: 18.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16380 components: - type: Transform @@ -119809,7 +119774,7 @@ entities: pos: 17.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16381 components: - type: Transform @@ -119817,7 +119782,7 @@ entities: pos: 16.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16382 components: - type: Transform @@ -119825,7 +119790,7 @@ entities: pos: 15.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16383 components: - type: Transform @@ -119833,7 +119798,7 @@ entities: pos: 14.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16384 components: - type: Transform @@ -119841,7 +119806,7 @@ entities: pos: 13.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16385 components: - type: Transform @@ -119849,7 +119814,7 @@ entities: pos: 12.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16386 components: - type: Transform @@ -119857,7 +119822,7 @@ entities: pos: 11.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16387 components: - type: Transform @@ -119865,7 +119830,7 @@ entities: pos: 9.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16389 components: - type: Transform @@ -119873,7 +119838,7 @@ entities: pos: 15.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16390 components: - type: Transform @@ -119881,7 +119846,7 @@ entities: pos: 14.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16391 components: - type: Transform @@ -119889,7 +119854,7 @@ entities: pos: 13.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16392 components: - type: Transform @@ -119897,7 +119862,7 @@ entities: pos: 12.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16393 components: - type: Transform @@ -119905,7 +119870,7 @@ entities: pos: 11.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16395 components: - type: Transform @@ -119913,7 +119878,7 @@ entities: pos: 10.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16396 components: - type: Transform @@ -119921,21 +119886,21 @@ entities: pos: 6.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16398 components: - type: Transform pos: 10.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16399 components: - type: Transform pos: 10.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16403 components: - type: Transform @@ -119943,14 +119908,14 @@ entities: pos: 9.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16405 components: - type: Transform pos: 7.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16408 components: - type: Transform @@ -119958,7 +119923,7 @@ entities: pos: 6.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16409 components: - type: Transform @@ -119966,7 +119931,7 @@ entities: pos: 5.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16411 components: - type: Transform @@ -119974,7 +119939,7 @@ entities: pos: 10.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16413 components: - type: Transform @@ -119982,7 +119947,7 @@ entities: pos: 9.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16414 components: - type: Transform @@ -119990,7 +119955,7 @@ entities: pos: 8.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16415 components: - type: Transform @@ -119998,7 +119963,7 @@ entities: pos: 7.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16417 components: - type: Transform @@ -120006,7 +119971,7 @@ entities: pos: 8.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16421 components: - type: Transform @@ -120014,7 +119979,7 @@ entities: pos: 7.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16422 components: - type: Transform @@ -120022,7 +119987,7 @@ entities: pos: 6.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16423 components: - type: Transform @@ -120030,7 +119995,7 @@ entities: pos: 6.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16424 components: - type: Transform @@ -120038,7 +120003,7 @@ entities: pos: 5.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16425 components: - type: Transform @@ -120046,49 +120011,49 @@ entities: pos: 4.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16426 components: - type: Transform pos: 7.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16427 components: - type: Transform pos: 7.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16428 components: - type: Transform pos: 7.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16429 components: - type: Transform pos: 8.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16430 components: - type: Transform pos: 8.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16431 components: - type: Transform pos: 8.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16436 components: - type: Transform @@ -120096,7 +120061,7 @@ entities: pos: 3.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16437 components: - type: Transform @@ -120104,7 +120069,7 @@ entities: pos: 4.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16438 components: - type: Transform @@ -120112,7 +120077,7 @@ entities: pos: 4.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16439 components: - type: Transform @@ -120120,7 +120085,7 @@ entities: pos: 4.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16440 components: - type: Transform @@ -120128,7 +120093,7 @@ entities: pos: 4.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16441 components: - type: Transform @@ -120136,7 +120101,7 @@ entities: pos: 4.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16442 components: - type: Transform @@ -120144,7 +120109,7 @@ entities: pos: 5.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16443 components: - type: Transform @@ -120152,7 +120117,7 @@ entities: pos: 5.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16446 components: - type: Transform @@ -120160,7 +120125,7 @@ entities: pos: 4.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16452 components: - type: Transform @@ -120168,7 +120133,7 @@ entities: pos: 5.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16453 components: - type: Transform @@ -120176,7 +120141,7 @@ entities: pos: 6.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16454 components: - type: Transform @@ -120184,7 +120149,7 @@ entities: pos: 7.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16455 components: - type: Transform @@ -120192,7 +120157,7 @@ entities: pos: 8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16456 components: - type: Transform @@ -120200,7 +120165,7 @@ entities: pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16457 components: - type: Transform @@ -120208,7 +120173,7 @@ entities: pos: 10.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16458 components: - type: Transform @@ -120216,7 +120181,7 @@ entities: pos: 11.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16459 components: - type: Transform @@ -120224,7 +120189,7 @@ entities: pos: 12.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16460 components: - type: Transform @@ -120232,7 +120197,7 @@ entities: pos: 3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16462 components: - type: Transform @@ -120240,7 +120205,7 @@ entities: pos: 4.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16463 components: - type: Transform @@ -120248,7 +120213,7 @@ entities: pos: 5.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16464 components: - type: Transform @@ -120256,7 +120221,7 @@ entities: pos: 6.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16465 components: - type: Transform @@ -120264,7 +120229,7 @@ entities: pos: 7.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16466 components: - type: Transform @@ -120272,7 +120237,7 @@ entities: pos: 8.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16467 components: - type: Transform @@ -120280,7 +120245,7 @@ entities: pos: 10.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16468 components: - type: Transform @@ -120288,7 +120253,7 @@ entities: pos: 11.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16469 components: - type: Transform @@ -120296,7 +120261,7 @@ entities: pos: 12.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16470 components: - type: Transform @@ -120304,42 +120269,42 @@ entities: pos: 13.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16473 components: - type: Transform pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16478 components: - type: Transform pos: -2.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16479 components: - type: Transform pos: 3.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16480 components: - type: Transform pos: 3.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16481 components: - type: Transform pos: -2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16494 components: - type: Transform @@ -120347,7 +120312,7 @@ entities: pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16502 components: - type: Transform @@ -120355,22 +120320,14 @@ entities: pos: -49.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16517 components: - type: Transform pos: -42.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' + color: '#0000FFFF' - uid: 16798 components: - type: Transform @@ -120394,7 +120351,7 @@ entities: pos: -20.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16802 components: - type: Transform @@ -120402,7 +120359,7 @@ entities: pos: -20.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16804 components: - type: Transform @@ -120417,7 +120374,7 @@ entities: pos: -24.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16953 components: - type: Transform @@ -120425,7 +120382,7 @@ entities: pos: -14.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16983 components: - type: Transform @@ -120433,7 +120390,7 @@ entities: pos: -49.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 17108 components: - type: Transform @@ -120441,7 +120398,7 @@ entities: pos: -17.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 17114 components: - type: Transform @@ -120449,7 +120406,7 @@ entities: pos: -14.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 17291 components: - type: Transform @@ -120457,7 +120414,7 @@ entities: pos: 54.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18033 components: - type: Transform @@ -120465,7 +120422,7 @@ entities: pos: 57.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18375 components: - type: Transform @@ -120473,7 +120430,7 @@ entities: pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18376 components: - type: Transform @@ -120481,7 +120438,7 @@ entities: pos: 57.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18377 components: - type: Transform @@ -120489,7 +120446,7 @@ entities: pos: 58.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18379 components: - type: Transform @@ -120497,7 +120454,7 @@ entities: pos: 60.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18380 components: - type: Transform @@ -120505,7 +120462,7 @@ entities: pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18381 components: - type: Transform @@ -120513,7 +120470,7 @@ entities: pos: 58.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18382 components: - type: Transform @@ -120521,7 +120478,7 @@ entities: pos: 59.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18383 components: - type: Transform @@ -120529,7 +120486,7 @@ entities: pos: 61.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18384 components: - type: Transform @@ -120537,7 +120494,7 @@ entities: pos: 61.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18385 components: - type: Transform @@ -120545,7 +120502,7 @@ entities: pos: 61.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18386 components: - type: Transform @@ -120553,7 +120510,7 @@ entities: pos: 61.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18387 components: - type: Transform @@ -120561,7 +120518,7 @@ entities: pos: 61.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18388 components: - type: Transform @@ -120569,7 +120526,7 @@ entities: pos: 61.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18389 components: - type: Transform @@ -120577,7 +120534,7 @@ entities: pos: 61.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18390 components: - type: Transform @@ -120585,7 +120542,7 @@ entities: pos: 61.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18391 components: - type: Transform @@ -120593,7 +120550,7 @@ entities: pos: 61.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18392 components: - type: Transform @@ -120601,7 +120558,7 @@ entities: pos: 61.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18393 components: - type: Transform @@ -120609,7 +120566,7 @@ entities: pos: 61.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18394 components: - type: Transform @@ -120617,7 +120574,7 @@ entities: pos: 61.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18395 components: - type: Transform @@ -120625,7 +120582,7 @@ entities: pos: 60.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18396 components: - type: Transform @@ -120633,7 +120590,7 @@ entities: pos: 60.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18397 components: - type: Transform @@ -120641,7 +120598,7 @@ entities: pos: 60.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18398 components: - type: Transform @@ -120649,7 +120606,7 @@ entities: pos: 60.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18399 components: - type: Transform @@ -120657,7 +120614,7 @@ entities: pos: 60.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18400 components: - type: Transform @@ -120665,7 +120622,7 @@ entities: pos: 60.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18401 components: - type: Transform @@ -120673,7 +120630,7 @@ entities: pos: 60.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18402 components: - type: Transform @@ -120681,7 +120638,7 @@ entities: pos: 60.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18403 components: - type: Transform @@ -120689,7 +120646,7 @@ entities: pos: 60.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18404 components: - type: Transform @@ -120697,7 +120654,7 @@ entities: pos: 60.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18413 components: - type: Transform @@ -120705,7 +120662,7 @@ entities: pos: 61.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18414 components: - type: Transform @@ -120713,7 +120670,7 @@ entities: pos: 61.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18415 components: - type: Transform @@ -120721,7 +120678,7 @@ entities: pos: 61.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18416 components: - type: Transform @@ -120729,7 +120686,7 @@ entities: pos: 61.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18417 components: - type: Transform @@ -120737,7 +120694,7 @@ entities: pos: 59.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18418 components: - type: Transform @@ -120745,7 +120702,7 @@ entities: pos: 58.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18419 components: - type: Transform @@ -120753,7 +120710,7 @@ entities: pos: 57.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18420 components: - type: Transform @@ -120761,7 +120718,7 @@ entities: pos: 56.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18421 components: - type: Transform @@ -120769,7 +120726,7 @@ entities: pos: 55.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18422 components: - type: Transform @@ -120777,7 +120734,7 @@ entities: pos: 54.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18423 components: - type: Transform @@ -120785,7 +120742,7 @@ entities: pos: 54.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18424 components: - type: Transform @@ -120793,7 +120750,7 @@ entities: pos: 55.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18425 components: - type: Transform @@ -120801,7 +120758,7 @@ entities: pos: 56.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18426 components: - type: Transform @@ -120809,7 +120766,7 @@ entities: pos: 57.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18427 components: - type: Transform @@ -120817,21 +120774,21 @@ entities: pos: 58.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18428 components: - type: Transform pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18429 components: - type: Transform pos: 60.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18908 components: - type: Transform @@ -120839,35 +120796,35 @@ entities: pos: 38.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 19075 components: - type: Transform pos: 31.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 19076 components: - type: Transform pos: 31.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 19079 components: - type: Transform pos: 30.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 19960 components: - type: Transform pos: -15.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 19965 components: - type: Transform @@ -120875,7 +120832,7 @@ entities: pos: -15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21142 components: - type: Transform @@ -121147,7 +121104,7 @@ entities: pos: -17.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21465 components: - type: Transform @@ -121162,7 +121119,7 @@ entities: pos: -15.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21654 components: - type: Transform @@ -121175,7 +121132,7 @@ entities: pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22206 components: - type: Transform @@ -121183,7 +121140,7 @@ entities: pos: -1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22247 components: - type: Transform @@ -121191,7 +121148,7 @@ entities: pos: -2.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22320 components: - type: Transform @@ -121215,7 +121172,7 @@ entities: pos: -3.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22362 components: - type: Transform @@ -121223,7 +121180,7 @@ entities: pos: -4.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22363 components: - type: Transform @@ -121231,7 +121188,7 @@ entities: pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22364 components: - type: Transform @@ -121239,7 +121196,7 @@ entities: pos: -6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22365 components: - type: Transform @@ -121247,7 +121204,7 @@ entities: pos: -7.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22398 components: - type: Transform @@ -121255,7 +121212,7 @@ entities: pos: -8.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22450 components: - type: Transform @@ -121394,7 +121351,7 @@ entities: pos: -9.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22661 components: - type: Transform @@ -121522,7 +121479,7 @@ entities: pos: -42.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23073 components: - type: Transform @@ -121530,7 +121487,7 @@ entities: pos: 2.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23078 components: - type: Transform @@ -121538,7 +121495,7 @@ entities: pos: 12.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23079 components: - type: Transform @@ -121546,7 +121503,7 @@ entities: pos: 13.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23080 components: - type: Transform @@ -121554,7 +121511,7 @@ entities: pos: 13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23081 components: - type: Transform @@ -121562,7 +121519,7 @@ entities: pos: 13.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23083 components: - type: Transform @@ -121578,14 +121535,14 @@ entities: pos: -44.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23100 components: - type: Transform pos: -13.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23103 components: - type: Transform @@ -121593,7 +121550,7 @@ entities: pos: -20.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23104 components: - type: Transform @@ -121601,7 +121558,7 @@ entities: pos: -19.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23105 components: - type: Transform @@ -121609,7 +121566,7 @@ entities: pos: -18.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23106 components: - type: Transform @@ -121617,7 +121574,7 @@ entities: pos: -17.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23107 components: - type: Transform @@ -121625,7 +121582,7 @@ entities: pos: -16.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23108 components: - type: Transform @@ -121633,7 +121590,7 @@ entities: pos: -15.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23109 components: - type: Transform @@ -121641,7 +121598,7 @@ entities: pos: -14.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23110 components: - type: Transform @@ -121649,7 +121606,7 @@ entities: pos: -13.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23111 components: - type: Transform @@ -121657,7 +121614,7 @@ entities: pos: -12.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23112 components: - type: Transform @@ -121665,7 +121622,7 @@ entities: pos: -11.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23113 components: - type: Transform @@ -121673,7 +121630,7 @@ entities: pos: -10.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23114 components: - type: Transform @@ -121681,7 +121638,7 @@ entities: pos: -9.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23115 components: - type: Transform @@ -121689,7 +121646,7 @@ entities: pos: -8.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23116 components: - type: Transform @@ -121697,7 +121654,7 @@ entities: pos: -7.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23117 components: - type: Transform @@ -121705,7 +121662,7 @@ entities: pos: -6.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23118 components: - type: Transform @@ -121713,7 +121670,7 @@ entities: pos: -5.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23119 components: - type: Transform @@ -121721,7 +121678,7 @@ entities: pos: -4.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23120 components: - type: Transform @@ -121729,7 +121686,7 @@ entities: pos: -3.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23121 components: - type: Transform @@ -121737,7 +121694,7 @@ entities: pos: -2.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23122 components: - type: Transform @@ -121745,7 +121702,7 @@ entities: pos: -1.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23127 components: - type: Transform @@ -121753,7 +121710,7 @@ entities: pos: -11.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23203 components: - type: Transform @@ -121866,7 +121823,7 @@ entities: pos: -39.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23463 components: - type: Transform @@ -121916,7 +121873,7 @@ entities: pos: -10.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23534 components: - type: Transform @@ -121924,7 +121881,7 @@ entities: pos: -15.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23538 components: - type: Transform @@ -121932,7 +121889,7 @@ entities: pos: -40.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23539 components: - type: Transform @@ -121940,7 +121897,7 @@ entities: pos: -41.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23554 components: - type: Transform @@ -121948,7 +121905,7 @@ entities: pos: -8.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23696 components: - type: Transform @@ -121956,7 +121913,7 @@ entities: pos: -1.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23697 components: - type: Transform @@ -121964,7 +121921,7 @@ entities: pos: -1.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23698 components: - type: Transform @@ -121972,7 +121929,7 @@ entities: pos: -1.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23699 components: - type: Transform @@ -121980,7 +121937,7 @@ entities: pos: -2.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23700 components: - type: Transform @@ -121988,7 +121945,7 @@ entities: pos: -2.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23701 components: - type: Transform @@ -121996,7 +121953,7 @@ entities: pos: -2.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23843 components: - type: Transform @@ -122004,7 +121961,7 @@ entities: pos: -20.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23847 components: - type: Transform @@ -122012,7 +121969,7 @@ entities: pos: -20.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23865 components: - type: Transform @@ -122020,7 +121977,7 @@ entities: pos: 60.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23866 components: - type: Transform @@ -122028,7 +121985,7 @@ entities: pos: 60.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23869 components: - type: Transform @@ -122036,7 +121993,7 @@ entities: pos: 60.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23870 components: - type: Transform @@ -122044,7 +122001,7 @@ entities: pos: 60.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23871 components: - type: Transform @@ -122052,7 +122009,7 @@ entities: pos: 60.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23872 components: - type: Transform @@ -122060,7 +122017,7 @@ entities: pos: 60.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23873 components: - type: Transform @@ -122068,7 +122025,7 @@ entities: pos: 60.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23874 components: - type: Transform @@ -122076,7 +122033,7 @@ entities: pos: 60.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23875 components: - type: Transform @@ -122084,7 +122041,7 @@ entities: pos: 60.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23876 components: - type: Transform @@ -122092,7 +122049,7 @@ entities: pos: 60.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23877 components: - type: Transform @@ -122100,7 +122057,7 @@ entities: pos: 60.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23878 components: - type: Transform @@ -122108,7 +122065,7 @@ entities: pos: 60.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23879 components: - type: Transform @@ -122116,7 +122073,7 @@ entities: pos: 60.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23880 components: - type: Transform @@ -122124,7 +122081,7 @@ entities: pos: 60.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23881 components: - type: Transform @@ -122132,7 +122089,7 @@ entities: pos: 60.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23882 components: - type: Transform @@ -122140,7 +122097,7 @@ entities: pos: 60.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23883 components: - type: Transform @@ -122148,7 +122105,7 @@ entities: pos: 59.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23884 components: - type: Transform @@ -122156,7 +122113,7 @@ entities: pos: 59.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23885 components: - type: Transform @@ -122164,7 +122121,7 @@ entities: pos: 59.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23886 components: - type: Transform @@ -122172,7 +122129,7 @@ entities: pos: 59.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23887 components: - type: Transform @@ -122180,7 +122137,7 @@ entities: pos: 59.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23888 components: - type: Transform @@ -122188,7 +122145,7 @@ entities: pos: 59.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23889 components: - type: Transform @@ -122196,7 +122153,7 @@ entities: pos: 59.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23890 components: - type: Transform @@ -122204,7 +122161,7 @@ entities: pos: 59.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23891 components: - type: Transform @@ -122212,7 +122169,7 @@ entities: pos: 59.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23892 components: - type: Transform @@ -122220,7 +122177,7 @@ entities: pos: 59.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23893 components: - type: Transform @@ -122228,7 +122185,7 @@ entities: pos: 59.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23894 components: - type: Transform @@ -122236,7 +122193,7 @@ entities: pos: 59.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23895 components: - type: Transform @@ -122244,7 +122201,7 @@ entities: pos: 59.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23898 components: - type: Transform @@ -122252,7 +122209,7 @@ entities: pos: 59.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 24039 components: - type: Transform @@ -122260,21 +122217,21 @@ entities: pos: -13.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 24241 components: - type: Transform pos: -15.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 24242 components: - type: Transform pos: -15.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 24279 components: - type: Transform @@ -122282,7 +122239,7 @@ entities: pos: 3.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 25219 components: - type: Transform @@ -122591,35 +122548,35 @@ entities: pos: -15.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25364 components: - type: Transform pos: -15.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25365 components: - type: Transform pos: -15.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25401 components: - type: Transform pos: -15.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25420 components: - type: Transform pos: -15.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25518 components: - type: Transform @@ -122627,7 +122584,7 @@ entities: pos: -9.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25519 components: - type: Transform @@ -122635,7 +122592,7 @@ entities: pos: 0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 25555 components: - type: Transform @@ -122643,7 +122600,7 @@ entities: pos: -12.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25556 components: - type: Transform @@ -122651,7 +122608,7 @@ entities: pos: -13.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25557 components: - type: Transform @@ -122659,7 +122616,7 @@ entities: pos: -14.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25558 components: - type: Transform @@ -122667,7 +122624,7 @@ entities: pos: -11.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25561 components: - type: Transform @@ -122675,7 +122632,7 @@ entities: pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 25562 components: - type: Transform @@ -122683,7 +122640,7 @@ entities: pos: -15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 26460 components: - type: Transform @@ -122731,7 +122688,7 @@ entities: pos: -14.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28263 components: - type: Transform @@ -122779,7 +122736,7 @@ entities: pos: -22.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28415 components: - type: Transform @@ -122787,7 +122744,7 @@ entities: pos: -25.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28429 components: - type: Transform @@ -122795,7 +122752,7 @@ entities: pos: -14.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28430 components: - type: Transform @@ -122803,15 +122760,7 @@ entities: pos: -16.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 28438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28451 components: - type: Transform @@ -122819,7 +122768,7 @@ entities: pos: -11.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28458 components: - type: Transform @@ -122827,7 +122776,7 @@ entities: pos: -10.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28524 components: - type: Transform @@ -122851,7 +122800,7 @@ entities: pos: -26.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28539 components: - type: Transform @@ -122859,7 +122808,7 @@ entities: pos: -27.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28541 components: - type: Transform @@ -122867,7 +122816,7 @@ entities: pos: -27.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28542 components: - type: Transform @@ -122875,7 +122824,7 @@ entities: pos: -27.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28543 components: - type: Transform @@ -122883,7 +122832,7 @@ entities: pos: -24.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28545 components: - type: Transform @@ -122891,7 +122840,7 @@ entities: pos: -27.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28546 components: - type: Transform @@ -122899,7 +122848,7 @@ entities: pos: -27.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28547 components: - type: Transform @@ -122907,7 +122856,7 @@ entities: pos: -27.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28548 components: - type: Transform @@ -122915,7 +122864,7 @@ entities: pos: -27.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28549 components: - type: Transform @@ -122923,7 +122872,7 @@ entities: pos: -27.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28551 components: - type: Transform @@ -122931,7 +122880,7 @@ entities: pos: -28.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28558 components: - type: Transform @@ -122939,7 +122888,7 @@ entities: pos: -22.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28559 components: - type: Transform @@ -122947,14 +122896,7 @@ entities: pos: -21.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 28620 - components: - - type: Transform - pos: -21.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0000FFFF' - uid: 28626 components: - type: Transform @@ -123032,7 +122974,7 @@ entities: pos: 2.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28828 components: - type: Transform @@ -123124,7 +123066,7 @@ entities: pos: -9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28947 components: - type: Transform @@ -123132,35 +123074,35 @@ entities: pos: -8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28970 components: - type: Transform pos: -8.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28971 components: - type: Transform pos: -8.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28972 components: - type: Transform pos: -8.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28973 components: - type: Transform pos: -8.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28974 components: - type: Transform @@ -123168,7 +123110,7 @@ entities: pos: -9.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29684 components: - type: Transform @@ -123176,7 +123118,7 @@ entities: pos: 4.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29687 components: - type: Transform @@ -123184,7 +123126,7 @@ entities: pos: 6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29688 components: - type: Transform @@ -123192,7 +123134,7 @@ entities: pos: 7.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29689 components: - type: Transform @@ -123200,28 +123142,28 @@ entities: pos: 5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29691 components: - type: Transform pos: 7.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 29692 components: - type: Transform pos: 7.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 29693 components: - type: Transform pos: 8.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29695 components: - type: Transform @@ -123229,7 +123171,7 @@ entities: pos: 8.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29697 components: - type: Transform @@ -123237,7 +123179,7 @@ entities: pos: 8.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 29698 components: - type: Transform @@ -123245,7 +123187,7 @@ entities: pos: 9.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 29699 components: - type: Transform @@ -123253,7 +123195,7 @@ entities: pos: 10.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 29701 components: - type: Transform @@ -123261,7 +123203,7 @@ entities: pos: 11.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 29702 components: - type: Transform @@ -123269,7 +123211,7 @@ entities: pos: 9.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29703 components: - type: Transform @@ -123277,7 +123219,7 @@ entities: pos: 10.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29704 components: - type: Transform @@ -123285,7 +123227,7 @@ entities: pos: 11.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 29705 components: - type: Transform @@ -123293,7 +123235,7 @@ entities: pos: 12.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasPipeTJunction entities: - uid: 17 @@ -123303,7 +123245,7 @@ entities: pos: -40.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 47 components: - type: Transform @@ -123311,7 +123253,7 @@ entities: pos: -42.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 737 components: - type: Transform @@ -123319,7 +123261,7 @@ entities: pos: -24.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2170 components: - type: Transform @@ -123327,14 +123269,14 @@ entities: pos: -8.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2172 components: - type: Transform pos: -7.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2173 components: - type: Transform @@ -123342,7 +123284,7 @@ entities: pos: -20.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2284 components: - type: Transform @@ -123350,7 +123292,7 @@ entities: pos: -15.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2708 components: - type: Transform @@ -123358,7 +123300,7 @@ entities: pos: -38.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3054 components: - type: Transform @@ -123366,7 +123308,7 @@ entities: pos: -41.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3081 components: - type: Transform @@ -123374,7 +123316,7 @@ entities: pos: -0.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3284 components: - type: Transform @@ -123382,7 +123324,7 @@ entities: pos: 38.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3285 components: - type: Transform @@ -123390,7 +123332,7 @@ entities: pos: 37.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 4566 components: - type: Transform @@ -123398,7 +123340,7 @@ entities: pos: -21.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5633 components: - type: Transform @@ -123406,7 +123348,7 @@ entities: pos: -20.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5634 components: - type: Transform @@ -123414,14 +123356,14 @@ entities: pos: -21.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5635 components: - type: Transform pos: -34.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5639 components: - type: Transform @@ -123429,7 +123371,7 @@ entities: pos: -20.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5640 components: - type: Transform @@ -123437,14 +123379,14 @@ entities: pos: -21.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6673 components: - type: Transform pos: -34.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6765 components: - type: Transform @@ -123452,7 +123394,7 @@ entities: pos: 0.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7343 components: - type: Transform @@ -123460,7 +123402,7 @@ entities: pos: 1.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7345 components: - type: Transform @@ -123468,7 +123410,7 @@ entities: pos: -0.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7347 components: - type: Transform @@ -123476,7 +123418,7 @@ entities: pos: -0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7354 components: - type: Transform @@ -123484,7 +123426,7 @@ entities: pos: 12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7761 components: - type: Transform @@ -123492,7 +123434,7 @@ entities: pos: -32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7855 components: - type: Transform @@ -123500,7 +123442,7 @@ entities: pos: -27.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8524 components: - type: Transform @@ -123532,7 +123474,7 @@ entities: pos: -24.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8739 components: - type: Transform @@ -123540,14 +123482,14 @@ entities: pos: -24.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8768 components: - type: Transform pos: -2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8769 components: - type: Transform @@ -123555,7 +123497,7 @@ entities: pos: -24.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8797 components: - type: Transform @@ -123600,7 +123542,7 @@ entities: pos: -11.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8846 components: - type: Transform @@ -123621,7 +123563,7 @@ entities: pos: -27.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8868 components: - type: Transform @@ -123629,7 +123571,7 @@ entities: pos: -27.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8973 components: - type: Transform @@ -123652,7 +123594,7 @@ entities: pos: -26.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8986 components: - type: Transform @@ -123676,7 +123618,7 @@ entities: pos: -20.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9124 components: - type: Transform @@ -123684,7 +123626,7 @@ entities: pos: -21.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9128 components: - type: Transform @@ -123692,7 +123634,7 @@ entities: pos: -26.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9129 components: - type: Transform @@ -123700,14 +123642,14 @@ entities: pos: -26.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9404 components: - type: Transform pos: 59.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9412 components: - type: Transform @@ -123715,7 +123657,7 @@ entities: pos: 1.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9419 components: - type: Transform @@ -123723,7 +123665,7 @@ entities: pos: 0.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9612 components: - type: Transform @@ -123731,7 +123673,7 @@ entities: pos: -31.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9630 components: - type: Transform @@ -123739,7 +123681,7 @@ entities: pos: -17.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9730 components: - type: Transform @@ -123752,7 +123694,7 @@ entities: pos: -26.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 10391 components: - type: Transform @@ -123760,14 +123702,14 @@ entities: pos: 1.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 10577 components: - type: Transform pos: 3.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 10792 components: - type: Transform @@ -123775,7 +123717,7 @@ entities: pos: -0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 10880 components: - type: Transform @@ -123783,7 +123725,7 @@ entities: pos: -0.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11189 components: - type: Transform @@ -123791,7 +123733,7 @@ entities: pos: -2.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11239 components: - type: Transform @@ -123799,7 +123741,7 @@ entities: pos: -1.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11283 components: - type: Transform @@ -123807,7 +123749,7 @@ entities: pos: -49.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11285 components: - type: Transform @@ -123815,14 +123757,14 @@ entities: pos: -52.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11287 components: - type: Transform pos: -49.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11526 components: - type: Transform @@ -123830,7 +123772,7 @@ entities: pos: -45.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11553 components: - type: Transform @@ -123838,7 +123780,7 @@ entities: pos: 60.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11908 components: - type: Transform @@ -123846,7 +123788,7 @@ entities: pos: -0.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11968 components: - type: Transform @@ -123854,7 +123796,7 @@ entities: pos: 43.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12297 components: - type: Transform @@ -123862,7 +123804,7 @@ entities: pos: 1.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12300 components: - type: Transform @@ -123870,7 +123812,7 @@ entities: pos: 1.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12305 components: - type: Transform @@ -123878,7 +123820,7 @@ entities: pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12306 components: - type: Transform @@ -123886,14 +123828,14 @@ entities: pos: -2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13151 components: - type: Transform pos: -31.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13154 components: - type: Transform @@ -123901,7 +123843,7 @@ entities: pos: 12.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13159 components: - type: Transform @@ -123909,7 +123851,7 @@ entities: pos: -38.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13166 components: - type: Transform @@ -123917,7 +123859,7 @@ entities: pos: 24.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13170 components: - type: Transform @@ -123925,7 +123867,7 @@ entities: pos: 41.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13175 components: - type: Transform @@ -123933,35 +123875,35 @@ entities: pos: -39.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13177 components: - type: Transform pos: -40.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13178 components: - type: Transform pos: -42.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13180 components: - type: Transform pos: 23.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13192 components: - type: Transform pos: 11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13194 components: - type: Transform @@ -123969,7 +123911,7 @@ entities: pos: 3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13201 components: - type: Transform @@ -123977,14 +123919,14 @@ entities: pos: -1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13202 components: - type: Transform pos: -0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13229 components: - type: Transform @@ -123992,7 +123934,7 @@ entities: pos: 1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13230 components: - type: Transform @@ -124000,7 +123942,7 @@ entities: pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13231 components: - type: Transform @@ -124008,7 +123950,7 @@ entities: pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13244 components: - type: Transform @@ -124016,7 +123958,7 @@ entities: pos: -0.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13246 components: - type: Transform @@ -124024,14 +123966,14 @@ entities: pos: 2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13247 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13256 components: - type: Transform @@ -124039,7 +123981,7 @@ entities: pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13259 components: - type: Transform @@ -124047,7 +123989,7 @@ entities: pos: 1.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13270 components: - type: Transform @@ -124055,7 +123997,7 @@ entities: pos: -0.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13271 components: - type: Transform @@ -124063,7 +124005,7 @@ entities: pos: -0.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13273 components: - type: Transform @@ -124071,7 +124013,7 @@ entities: pos: -0.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13282 components: - type: Transform @@ -124079,7 +124021,7 @@ entities: pos: 1.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13289 components: - type: Transform @@ -124087,7 +124029,7 @@ entities: pos: -0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13291 components: - type: Transform @@ -124095,7 +124037,7 @@ entities: pos: -0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13296 components: - type: Transform @@ -124103,7 +124045,7 @@ entities: pos: -0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13313 components: - type: Transform @@ -124111,7 +124053,7 @@ entities: pos: 1.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13324 components: - type: Transform @@ -124119,7 +124061,7 @@ entities: pos: -0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13327 components: - type: Transform @@ -124127,7 +124069,7 @@ entities: pos: 1.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13335 components: - type: Transform @@ -124135,7 +124077,7 @@ entities: pos: 1.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13338 components: - type: Transform @@ -124143,7 +124085,7 @@ entities: pos: -0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13347 components: - type: Transform @@ -124151,7 +124093,7 @@ entities: pos: -0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13350 components: - type: Transform @@ -124159,7 +124101,7 @@ entities: pos: -0.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13369 components: - type: Transform @@ -124167,14 +124109,14 @@ entities: pos: 1.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13376 components: - type: Transform pos: 21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13381 components: - type: Transform @@ -124182,28 +124124,28 @@ entities: pos: -0.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13383 components: - type: Transform pos: 27.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13389 components: - type: Transform pos: 32.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13400 components: - type: Transform pos: 42.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13402 components: - type: Transform @@ -124211,21 +124153,21 @@ entities: pos: 45.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13406 components: - type: Transform pos: 51.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13411 components: - type: Transform pos: 49.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13413 components: - type: Transform @@ -124233,14 +124175,14 @@ entities: pos: 49.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13420 components: - type: Transform pos: 43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13422 components: - type: Transform @@ -124248,7 +124190,7 @@ entities: pos: 39.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13431 components: - type: Transform @@ -124256,28 +124198,28 @@ entities: pos: 30.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13435 components: - type: Transform pos: 26.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13441 components: - type: Transform pos: 19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13448 components: - type: Transform pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13451 components: - type: Transform @@ -124285,7 +124227,7 @@ entities: pos: -42.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13470 components: - type: Transform @@ -124293,7 +124235,7 @@ entities: pos: -42.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13471 components: - type: Transform @@ -124301,7 +124243,7 @@ entities: pos: -0.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13482 components: - type: Transform @@ -124309,14 +124251,14 @@ entities: pos: -40.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13491 components: - type: Transform pos: -44.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13494 components: - type: Transform @@ -124324,7 +124266,7 @@ entities: pos: -22.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13495 components: - type: Transform @@ -124332,7 +124274,7 @@ entities: pos: -33.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13499 components: - type: Transform @@ -124340,21 +124282,21 @@ entities: pos: 1.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13507 components: - type: Transform pos: 13.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13514 components: - type: Transform pos: -0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13544 components: - type: Transform @@ -124362,7 +124304,7 @@ entities: pos: 1.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13572 components: - type: Transform @@ -124370,14 +124312,14 @@ entities: pos: -20.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13576 components: - type: Transform pos: -26.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13588 components: - type: Transform @@ -124392,7 +124334,7 @@ entities: pos: -9.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13663 components: - type: Transform @@ -124400,7 +124342,7 @@ entities: pos: -10.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13707 components: - type: Transform @@ -124408,7 +124350,7 @@ entities: pos: -19.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13708 components: - type: Transform @@ -124416,7 +124358,7 @@ entities: pos: -20.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13709 components: - type: Transform @@ -124424,7 +124366,7 @@ entities: pos: -19.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13710 components: - type: Transform @@ -124432,21 +124374,21 @@ entities: pos: -20.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13738 components: - type: Transform pos: -9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13749 components: - type: Transform pos: -8.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13750 components: - type: Transform @@ -124454,7 +124396,7 @@ entities: pos: -7.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13759 components: - type: Transform @@ -124462,7 +124404,7 @@ entities: pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13765 components: - type: Transform @@ -124470,7 +124412,7 @@ entities: pos: -4.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13789 components: - type: Transform @@ -124478,7 +124420,7 @@ entities: pos: -2.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13793 components: - type: Transform @@ -124486,7 +124428,7 @@ entities: pos: -6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13798 components: - type: Transform @@ -124494,7 +124436,7 @@ entities: pos: -11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13802 components: - type: Transform @@ -124502,7 +124444,7 @@ entities: pos: -15.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13803 components: - type: Transform @@ -124510,7 +124452,7 @@ entities: pos: -16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13825 components: - type: Transform @@ -124518,7 +124460,7 @@ entities: pos: -4.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13833 components: - type: Transform @@ -124526,7 +124468,7 @@ entities: pos: -21.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13838 components: - type: Transform @@ -124534,7 +124476,7 @@ entities: pos: -22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13850 components: - type: Transform @@ -124542,7 +124484,7 @@ entities: pos: -22.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13888 components: - type: Transform @@ -124550,7 +124492,7 @@ entities: pos: -9.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13905 components: - type: Transform @@ -124558,7 +124500,7 @@ entities: pos: 9.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13913 components: - type: Transform @@ -124566,14 +124508,14 @@ entities: pos: 11.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13915 components: - type: Transform pos: 12.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13939 components: - type: Transform @@ -124581,7 +124523,7 @@ entities: pos: 8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13986 components: - type: Transform @@ -124589,7 +124531,7 @@ entities: pos: 3.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13990 components: - type: Transform @@ -124597,7 +124539,7 @@ entities: pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14003 components: - type: Transform @@ -124605,7 +124547,7 @@ entities: pos: 12.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14018 components: - type: Transform @@ -124613,7 +124555,7 @@ entities: pos: 19.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14034 components: - type: Transform @@ -124621,7 +124563,7 @@ entities: pos: 24.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14056 components: - type: Transform @@ -124629,7 +124571,7 @@ entities: pos: 13.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14061 components: - type: Transform @@ -124637,7 +124579,7 @@ entities: pos: 24.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14076 components: - type: Transform @@ -124645,7 +124587,7 @@ entities: pos: 24.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14080 components: - type: Transform @@ -124653,7 +124595,7 @@ entities: pos: 26.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14081 components: - type: Transform @@ -124661,14 +124603,14 @@ entities: pos: 27.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14115 components: - type: Transform pos: 13.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14119 components: - type: Transform @@ -124676,7 +124618,7 @@ entities: pos: 12.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14140 components: - type: Transform @@ -124684,7 +124626,7 @@ entities: pos: 31.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14152 components: - type: Transform @@ -124692,7 +124634,7 @@ entities: pos: 32.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14153 components: - type: Transform @@ -124700,7 +124642,7 @@ entities: pos: 31.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14230 components: - type: Transform @@ -124708,7 +124650,7 @@ entities: pos: 42.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14243 components: - type: Transform @@ -124716,7 +124658,7 @@ entities: pos: 49.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14247 components: - type: Transform @@ -124724,7 +124666,7 @@ entities: pos: 51.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14266 components: - type: Transform @@ -124732,7 +124674,7 @@ entities: pos: 47.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14273 components: - type: Transform @@ -124740,21 +124682,21 @@ entities: pos: 53.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14275 components: - type: Transform pos: 47.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14276 components: - type: Transform pos: 53.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14277 components: - type: Transform @@ -124762,7 +124704,7 @@ entities: pos: 47.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14278 components: - type: Transform @@ -124770,35 +124712,35 @@ entities: pos: 53.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14288 components: - type: Transform pos: 50.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14289 components: - type: Transform pos: 46.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14299 components: - type: Transform pos: 48.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14315 components: - type: Transform pos: 45.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14320 components: - type: Transform @@ -124806,7 +124748,7 @@ entities: pos: 40.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14334 components: - type: Transform @@ -124814,7 +124756,7 @@ entities: pos: 42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14338 components: - type: Transform @@ -124822,7 +124764,7 @@ entities: pos: 42.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14345 components: - type: Transform @@ -124830,7 +124772,7 @@ entities: pos: 41.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14350 components: - type: Transform @@ -124838,7 +124780,7 @@ entities: pos: 40.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14357 components: - type: Transform @@ -124846,7 +124788,7 @@ entities: pos: 40.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14361 components: - type: Transform @@ -124854,7 +124796,7 @@ entities: pos: 40.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14362 components: - type: Transform @@ -124862,7 +124804,7 @@ entities: pos: 42.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14364 components: - type: Transform @@ -124870,7 +124812,7 @@ entities: pos: 40.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14379 components: - type: Transform @@ -124878,14 +124820,14 @@ entities: pos: 35.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14380 components: - type: Transform pos: 33.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14426 components: - type: Transform @@ -124893,7 +124835,7 @@ entities: pos: 28.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14429 components: - type: Transform @@ -124901,7 +124843,7 @@ entities: pos: 26.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14460 components: - type: Transform @@ -124909,14 +124851,14 @@ entities: pos: 40.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14470 components: - type: Transform pos: 45.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14474 components: - type: Transform @@ -124924,7 +124866,7 @@ entities: pos: 46.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14479 components: - type: Transform @@ -124932,7 +124874,7 @@ entities: pos: 46.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14488 components: - type: Transform @@ -124940,7 +124882,7 @@ entities: pos: 46.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14517 components: - type: Transform @@ -124948,7 +124890,7 @@ entities: pos: 40.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14518 components: - type: Transform @@ -124956,7 +124898,7 @@ entities: pos: 42.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14529 components: - type: Transform @@ -124964,14 +124906,14 @@ entities: pos: 46.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14543 components: - type: Transform pos: 36.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14571 components: - type: Transform @@ -124979,7 +124921,7 @@ entities: pos: 24.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14572 components: - type: Transform @@ -124987,7 +124929,7 @@ entities: pos: 24.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14612 components: - type: Transform @@ -124995,7 +124937,7 @@ entities: pos: 23.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14622 components: - type: Transform @@ -125003,7 +124945,7 @@ entities: pos: 24.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14627 components: - type: Transform @@ -125011,7 +124953,7 @@ entities: pos: 25.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14677 components: - type: Transform @@ -125019,7 +124961,7 @@ entities: pos: 30.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14704 components: - type: Transform @@ -125027,7 +124969,7 @@ entities: pos: 30.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14712 components: - type: Transform @@ -125035,7 +124977,7 @@ entities: pos: 31.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14724 components: - type: Transform @@ -125043,7 +124985,7 @@ entities: pos: 35.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14726 components: - type: Transform @@ -125051,7 +124993,7 @@ entities: pos: 36.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14755 components: - type: Transform @@ -125059,7 +125001,7 @@ entities: pos: 36.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14756 components: - type: Transform @@ -125067,7 +125009,7 @@ entities: pos: 35.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14772 components: - type: Transform @@ -125075,7 +125017,7 @@ entities: pos: -42.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14785 components: - type: Transform @@ -125083,7 +125025,7 @@ entities: pos: -40.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14794 components: - type: Transform @@ -125091,7 +125033,7 @@ entities: pos: -40.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14795 components: - type: Transform @@ -125099,7 +125041,7 @@ entities: pos: -42.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14800 components: - type: Transform @@ -125107,7 +125049,7 @@ entities: pos: -42.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14804 components: - type: Transform @@ -125115,7 +125057,7 @@ entities: pos: -42.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14806 components: - type: Transform @@ -125123,7 +125065,7 @@ entities: pos: -40.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14808 components: - type: Transform @@ -125131,7 +125073,7 @@ entities: pos: -40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14813 components: - type: Transform @@ -125139,7 +125081,7 @@ entities: pos: -40.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14834 components: - type: Transform @@ -125147,21 +125089,21 @@ entities: pos: -2.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14848 components: - type: Transform pos: 6.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14850 components: - type: Transform pos: 7.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14860 components: - type: Transform @@ -125169,7 +125111,7 @@ entities: pos: 14.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14867 components: - type: Transform @@ -125177,7 +125119,7 @@ entities: pos: 16.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14890 components: - type: Transform @@ -125185,7 +125127,7 @@ entities: pos: 16.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14891 components: - type: Transform @@ -125193,14 +125135,14 @@ entities: pos: 14.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14928 components: - type: Transform pos: 16.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14929 components: - type: Transform @@ -125208,21 +125150,21 @@ entities: pos: 14.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14965 components: - type: Transform pos: -37.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14969 components: - type: Transform pos: -38.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15014 components: - type: Transform @@ -125230,7 +125172,7 @@ entities: pos: -54.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15020 components: - type: Transform @@ -125238,7 +125180,7 @@ entities: pos: -52.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15026 components: - type: Transform @@ -125246,7 +125188,7 @@ entities: pos: -54.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15055 components: - type: Transform @@ -125254,7 +125196,7 @@ entities: pos: -52.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15062 components: - type: Transform @@ -125262,7 +125204,7 @@ entities: pos: -54.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15177 components: - type: Transform @@ -125270,7 +125212,7 @@ entities: pos: -37.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15178 components: - type: Transform @@ -125278,7 +125220,7 @@ entities: pos: -38.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15198 components: - type: Transform @@ -125286,7 +125228,7 @@ entities: pos: -37.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15205 components: - type: Transform @@ -125294,7 +125236,7 @@ entities: pos: -38.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15206 components: - type: Transform @@ -125302,7 +125244,7 @@ entities: pos: -38.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15207 components: - type: Transform @@ -125310,7 +125252,7 @@ entities: pos: -37.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15233 components: - type: Transform @@ -125318,7 +125260,7 @@ entities: pos: -42.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15260 components: - type: Transform @@ -125326,7 +125268,7 @@ entities: pos: -37.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15261 components: - type: Transform @@ -125334,7 +125276,7 @@ entities: pos: -38.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15269 components: - type: Transform @@ -125342,7 +125284,7 @@ entities: pos: -35.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15270 components: - type: Transform @@ -125350,21 +125292,21 @@ entities: pos: -34.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15303 components: - type: Transform pos: -47.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15304 components: - type: Transform pos: -45.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15321 components: - type: Transform @@ -125372,14 +125314,14 @@ entities: pos: -4.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15331 components: - type: Transform pos: -6.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15345 components: - type: Transform @@ -125387,7 +125329,7 @@ entities: pos: -7.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15351 components: - type: Transform @@ -125395,21 +125337,21 @@ entities: pos: -6.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15363 components: - type: Transform pos: -11.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15364 components: - type: Transform pos: -12.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15384 components: - type: Transform @@ -125417,14 +125359,14 @@ entities: pos: -16.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15385 components: - type: Transform pos: -17.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15391 components: - type: Transform @@ -125432,7 +125374,7 @@ entities: pos: -20.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15402 components: - type: Transform @@ -125440,14 +125382,14 @@ entities: pos: -19.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15403 components: - type: Transform pos: -21.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15455 components: - type: Transform @@ -125455,21 +125397,21 @@ entities: pos: 39.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15470 components: - type: Transform pos: 35.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15484 components: - type: Transform pos: 34.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15504 components: - type: Transform @@ -125485,7 +125427,7 @@ entities: pos: -20.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15678 components: - type: Transform @@ -125500,28 +125442,28 @@ entities: pos: -19.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15681 components: - type: Transform pos: -21.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15693 components: - type: Transform pos: -24.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15694 components: - type: Transform pos: -26.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15714 components: - type: Transform @@ -125529,7 +125471,7 @@ entities: pos: -20.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15720 components: - type: Transform @@ -125537,7 +125479,7 @@ entities: pos: -13.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15740 components: - type: Transform @@ -125545,7 +125487,7 @@ entities: pos: -19.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15741 components: - type: Transform @@ -125553,7 +125495,7 @@ entities: pos: -17.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15750 components: - type: Transform @@ -125561,7 +125503,7 @@ entities: pos: -14.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15756 components: - type: Transform @@ -125569,7 +125511,7 @@ entities: pos: -15.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15761 components: - type: Transform @@ -125577,7 +125519,7 @@ entities: pos: -21.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15767 components: - type: Transform @@ -125585,7 +125527,7 @@ entities: pos: -22.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15791 components: - type: Transform @@ -125593,7 +125535,7 @@ entities: pos: -11.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15792 components: - type: Transform @@ -125601,7 +125543,7 @@ entities: pos: -12.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15815 components: - type: Transform @@ -125609,7 +125551,7 @@ entities: pos: -26.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15820 components: - type: Transform @@ -125617,7 +125559,7 @@ entities: pos: -28.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15833 components: - type: Transform @@ -125625,7 +125567,7 @@ entities: pos: -29.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15840 components: - type: Transform @@ -125633,7 +125575,7 @@ entities: pos: -31.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15848 components: - type: Transform @@ -125641,7 +125583,7 @@ entities: pos: -31.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15853 components: - type: Transform @@ -125649,7 +125591,7 @@ entities: pos: -31.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15854 components: - type: Transform @@ -125657,7 +125599,7 @@ entities: pos: -31.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15856 components: - type: Transform @@ -125665,7 +125607,7 @@ entities: pos: -28.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15857 components: - type: Transform @@ -125673,7 +125615,7 @@ entities: pos: -25.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15858 components: - type: Transform @@ -125681,7 +125623,7 @@ entities: pos: -26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15894 components: - type: Transform @@ -125689,7 +125631,7 @@ entities: pos: -29.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15916 components: - type: Transform @@ -125697,7 +125639,7 @@ entities: pos: 0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15917 components: - type: Transform @@ -125705,7 +125647,7 @@ entities: pos: 1.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15935 components: - type: Transform @@ -125713,7 +125655,7 @@ entities: pos: -5.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15949 components: - type: Transform @@ -125721,7 +125663,7 @@ entities: pos: 4.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15968 components: - type: Transform @@ -125729,7 +125671,7 @@ entities: pos: 3.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15988 components: - type: Transform @@ -125737,7 +125679,7 @@ entities: pos: -9.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16006 components: - type: Transform @@ -125745,28 +125687,28 @@ entities: pos: -8.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16026 components: - type: Transform pos: -4.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16174 components: - type: Transform pos: -6.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16175 components: - type: Transform pos: -8.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16236 components: - type: Transform @@ -125774,7 +125716,7 @@ entities: pos: 6.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16242 components: - type: Transform @@ -125782,7 +125724,7 @@ entities: pos: 24.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16250 components: - type: Transform @@ -125790,14 +125732,14 @@ entities: pos: 23.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16264 components: - type: Transform pos: 23.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16266 components: - type: Transform @@ -125805,14 +125747,14 @@ entities: pos: 23.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16274 components: - type: Transform pos: 25.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16275 components: - type: Transform @@ -125820,7 +125762,7 @@ entities: pos: 26.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16287 components: - type: Transform @@ -125828,7 +125770,7 @@ entities: pos: 26.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16288 components: - type: Transform @@ -125836,28 +125778,28 @@ entities: pos: 24.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16301 components: - type: Transform pos: 24.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16302 components: - type: Transform pos: 26.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16308 components: - type: Transform pos: 28.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16309 components: - type: Transform @@ -125865,21 +125807,21 @@ entities: pos: 29.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16315 components: - type: Transform pos: 33.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16320 components: - type: Transform pos: 34.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16373 components: - type: Transform @@ -125887,7 +125829,7 @@ entities: pos: 18.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16394 components: - type: Transform @@ -125895,14 +125837,14 @@ entities: pos: 7.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16397 components: - type: Transform pos: 10.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16400 components: - type: Transform @@ -125910,7 +125852,7 @@ entities: pos: 10.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16404 components: - type: Transform @@ -125918,7 +125860,7 @@ entities: pos: 7.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16406 components: - type: Transform @@ -125926,7 +125868,7 @@ entities: pos: 18.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16407 components: - type: Transform @@ -125934,7 +125876,7 @@ entities: pos: 5.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16434 components: - type: Transform @@ -125942,21 +125884,21 @@ entities: pos: 4.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16451 components: - type: Transform pos: 4.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16472 components: - type: Transform pos: 9.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16492 components: - type: Transform @@ -125964,7 +125906,7 @@ entities: pos: -0.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16493 components: - type: Transform @@ -125972,7 +125914,7 @@ entities: pos: -8.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16544 components: - type: Transform @@ -125980,7 +125922,7 @@ entities: pos: 1.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16545 components: - type: Transform @@ -125988,7 +125930,7 @@ entities: pos: -0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16557 components: - type: Transform @@ -125996,7 +125938,7 @@ entities: pos: -0.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16558 components: - type: Transform @@ -126004,7 +125946,7 @@ entities: pos: 1.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 17113 components: - type: Transform @@ -126012,14 +125954,14 @@ entities: pos: -19.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 17606 components: - type: Transform pos: 17.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18405 components: - type: Transform @@ -126027,7 +125969,7 @@ entities: pos: 60.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18431 components: - type: Transform @@ -126035,14 +125977,14 @@ entities: pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18432 components: - type: Transform pos: 60.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 19545 components: - type: Transform @@ -126050,7 +125992,7 @@ entities: pos: -9.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 19546 components: - type: Transform @@ -126058,7 +126000,7 @@ entities: pos: -4.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21166 components: - type: Transform @@ -126081,7 +126023,7 @@ entities: pos: 1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21742 components: - type: Transform @@ -126094,7 +126036,7 @@ entities: pos: -15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22671 components: - type: Transform @@ -126149,7 +126091,7 @@ entities: pos: -21.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23085 components: - type: Transform @@ -126157,7 +126099,7 @@ entities: pos: -41.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23086 components: - type: Transform @@ -126165,7 +126107,7 @@ entities: pos: -42.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23101 components: - type: Transform @@ -126173,7 +126115,7 @@ entities: pos: -13.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23125 components: - type: Transform @@ -126181,7 +126123,7 @@ entities: pos: -11.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23126 components: - type: Transform @@ -126189,7 +126131,7 @@ entities: pos: -10.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23495 components: - type: Transform @@ -126202,14 +126144,14 @@ entities: pos: -42.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 24165 components: - type: Transform pos: -13.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 24284 components: - type: Transform @@ -126217,14 +126159,14 @@ entities: pos: 1.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 24289 components: - type: Transform pos: 7.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25243 components: - type: Transform @@ -126256,7 +126198,7 @@ entities: pos: -10.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25520 components: - type: Transform @@ -126264,7 +126206,7 @@ entities: pos: -11.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 27898 components: - type: Transform @@ -126294,14 +126236,14 @@ entities: pos: -29.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 28557 components: - type: Transform pos: -23.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28560 components: - type: Transform @@ -126309,7 +126251,7 @@ entities: pos: -20.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28624 components: - type: Transform @@ -126444,7 +126386,7 @@ entities: pos: -25.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8771 components: - type: Transform @@ -126452,7 +126394,7 @@ entities: pos: -25.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8799 components: - type: Transform @@ -126518,7 +126460,7 @@ entities: pos: -43.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23543 components: - type: Transform @@ -126526,7 +126468,7 @@ entities: pos: -43.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 24296 components: - type: Transform @@ -126667,7 +126609,7 @@ entities: pos: -19.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23527 components: - type: Transform @@ -126706,7 +126648,7 @@ entities: pos: -26.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15687 components: - type: Transform @@ -126731,7 +126673,7 @@ entities: pos: -26.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasValve entities: - uid: 888 @@ -126855,7 +126797,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8809 components: - type: Transform @@ -126865,7 +126807,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#333333FF' + color: '#947507FF' - uid: 8855 components: - type: Transform @@ -126874,6 +126816,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 8907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 8910 components: - type: Transform @@ -126932,14 +126882,14 @@ entities: parent: 2 - type: GasValve open: False - - uid: 10182 + - uid: 10466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,23.5 + rot: 1.5707963267948966 rad + pos: -24.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 23828 components: - type: Transform @@ -126950,14 +126900,6 @@ entities: open: False - type: AtmosPipeColor color: '#3AB334FF' - - uid: 28431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 28605 components: - type: Transform @@ -126974,7 +126916,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 28827 components: - type: Transform @@ -127042,7 +126984,7 @@ entities: pos: -47.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1597 components: - type: Transform @@ -127053,7 +126995,7 @@ entities: deviceLists: - 15250 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1922 components: - type: Transform @@ -127063,7 +127005,7 @@ entities: deviceLists: - 5583 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2118 components: - type: Transform @@ -127073,7 +127015,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3136 components: - type: Transform @@ -127084,7 +127026,7 @@ entities: deviceLists: - 28611 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7348 components: - type: Transform @@ -127092,7 +127034,7 @@ entities: pos: -12.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 10592 components: - type: Transform @@ -127103,7 +127045,7 @@ entities: deviceLists: - 18270 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11291 components: - type: Transform @@ -127113,7 +127055,7 @@ entities: deviceLists: - 23235 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12298 components: - type: Transform @@ -127124,7 +127066,7 @@ entities: deviceLists: - 18258 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12821 components: - type: Transform @@ -127132,7 +127074,7 @@ entities: pos: 44.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13132 components: - type: Transform @@ -127143,7 +127085,7 @@ entities: deviceLists: - 18645 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13339 components: - type: Transform @@ -127154,7 +127096,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13351 components: - type: Transform @@ -127165,7 +127107,7 @@ entities: deviceLists: - 18501 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13557 components: - type: Transform @@ -127176,7 +127118,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13558 components: - type: Transform @@ -127187,7 +127129,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13584 components: - type: Transform @@ -127198,7 +127140,7 @@ entities: deviceLists: - 18567 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13585 components: - type: Transform @@ -127209,7 +127151,7 @@ entities: deviceLists: - 18564 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13598 components: - type: Transform @@ -127219,7 +127161,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13630 components: - type: Transform @@ -127230,7 +127172,7 @@ entities: deviceLists: - 23683 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13657 components: - type: Transform @@ -127241,7 +127183,7 @@ entities: deviceLists: - 18285 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13723 components: - type: Transform @@ -127249,7 +127191,7 @@ entities: pos: -18.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13724 components: - type: Transform @@ -127257,7 +127199,7 @@ entities: pos: -21.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13736 components: - type: Transform @@ -127265,7 +127207,7 @@ entities: pos: -21.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13764 components: - type: Transform @@ -127276,7 +127218,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13768 components: - type: Transform @@ -127287,7 +127229,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13861 components: - type: Transform @@ -127295,7 +127237,7 @@ entities: pos: -19.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13867 components: - type: Transform @@ -127303,7 +127245,7 @@ entities: pos: -19.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13868 components: - type: Transform @@ -127311,28 +127253,28 @@ entities: pos: -19.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13869 components: - type: Transform pos: -14.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13870 components: - type: Transform pos: -9.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13871 components: - type: Transform pos: -4.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13903 components: - type: Transform @@ -127343,7 +127285,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13934 components: - type: Transform @@ -127354,7 +127296,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13962 components: - type: Transform @@ -127362,7 +127304,7 @@ entities: pos: -25.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13982 components: - type: Transform @@ -127370,14 +127312,14 @@ entities: pos: -7.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14006 components: - type: Transform pos: 3.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14052 components: - type: Transform @@ -127385,7 +127327,7 @@ entities: pos: 15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14055 components: - type: Transform @@ -127393,7 +127335,7 @@ entities: pos: 21.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14059 components: - type: Transform @@ -127401,7 +127343,7 @@ entities: pos: 23.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14075 components: - type: Transform @@ -127409,7 +127351,7 @@ entities: pos: 23.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14089 components: - type: Transform @@ -127417,7 +127359,7 @@ entities: pos: 19.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14130 components: - type: Transform @@ -127425,7 +127367,7 @@ entities: pos: 8.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14165 components: - type: Transform @@ -127433,7 +127375,7 @@ entities: pos: 32.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14166 components: - type: Transform @@ -127441,7 +127383,7 @@ entities: pos: 36.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14236 components: - type: Transform @@ -127449,7 +127391,7 @@ entities: pos: 44.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14253 components: - type: Transform @@ -127457,7 +127399,7 @@ entities: pos: 50.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14308 components: - type: Transform @@ -127465,7 +127407,7 @@ entities: pos: 52.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14309 components: - type: Transform @@ -127473,7 +127415,7 @@ entities: pos: 48.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14310 components: - type: Transform @@ -127481,7 +127423,7 @@ entities: pos: 44.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14321 components: - type: Transform @@ -127492,7 +127434,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14371 components: - type: Transform @@ -127503,7 +127445,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14384 components: - type: Transform @@ -127514,14 +127456,14 @@ entities: deviceLists: - 18650 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14391 components: - type: Transform pos: 44.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14397 components: - type: Transform @@ -127529,7 +127471,7 @@ entities: pos: 50.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14442 components: - type: Transform @@ -127537,7 +127479,7 @@ entities: pos: 25.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14455 components: - type: Transform @@ -127548,7 +127490,7 @@ entities: deviceLists: - 18652 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14512 components: - type: Transform @@ -127556,7 +127498,7 @@ entities: pos: 45.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14513 components: - type: Transform @@ -127564,7 +127506,7 @@ entities: pos: 55.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14516 components: - type: Transform @@ -127572,7 +127514,7 @@ entities: pos: 48.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14527 components: - type: Transform @@ -127583,7 +127525,7 @@ entities: deviceLists: - 18658 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14530 components: - type: Transform @@ -127594,7 +127536,7 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14614 components: - type: Transform @@ -127605,7 +127547,7 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14630 components: - type: Transform @@ -127613,7 +127555,7 @@ entities: pos: 25.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14643 components: - type: Transform @@ -127621,7 +127563,7 @@ entities: pos: -14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14645 components: - type: Transform @@ -127629,7 +127571,7 @@ entities: pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14666 components: - type: Transform @@ -127637,7 +127579,7 @@ entities: pos: 10.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14675 components: - type: Transform @@ -127645,7 +127587,7 @@ entities: pos: 24.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14689 components: - type: Transform @@ -127656,7 +127598,7 @@ entities: deviceLists: - 18463 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14721 components: - type: Transform @@ -127667,7 +127609,7 @@ entities: deviceLists: - 28879 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14741 components: - type: Transform @@ -127677,7 +127619,7 @@ entities: deviceLists: - 18478 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14748 components: - type: Transform @@ -127687,7 +127629,7 @@ entities: deviceLists: - 18480 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14764 components: - type: Transform @@ -127695,7 +127637,7 @@ entities: pos: 35.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14765 components: - type: Transform @@ -127703,7 +127645,7 @@ entities: pos: 35.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14768 components: - type: Transform @@ -127714,7 +127656,7 @@ entities: deviceLists: - 18482 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14868 components: - type: Transform @@ -127725,7 +127667,7 @@ entities: deviceLists: - 18663 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14922 components: - type: Transform @@ -127735,7 +127677,7 @@ entities: deviceLists: - 18678 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14923 components: - type: Transform @@ -127745,7 +127687,7 @@ entities: deviceLists: - 18667 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14924 components: - type: Transform @@ -127753,7 +127695,7 @@ entities: pos: 13.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14938 components: - type: Transform @@ -127761,7 +127703,7 @@ entities: pos: 19.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14952 components: - type: Transform @@ -127769,7 +127711,7 @@ entities: pos: -38.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14953 components: - type: Transform @@ -127777,7 +127719,7 @@ entities: pos: -46.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14961 components: - type: Transform @@ -127785,7 +127727,7 @@ entities: pos: -38.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14968 components: - type: Transform @@ -127796,7 +127738,7 @@ entities: deviceLists: - 29462 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14975 components: - type: Transform @@ -127804,7 +127746,7 @@ entities: pos: -38.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14990 components: - type: Transform @@ -127812,7 +127754,7 @@ entities: pos: -37.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15028 components: - type: Transform @@ -127824,7 +127766,7 @@ entities: - 18583 - 18584 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15106 components: - type: Transform @@ -127835,7 +127777,7 @@ entities: deviceLists: - 18587 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15108 components: - type: Transform @@ -127846,14 +127788,14 @@ entities: deviceLists: - 18584 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15117 components: - type: Transform pos: -49.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15128 components: - type: Transform @@ -127864,7 +127806,7 @@ entities: deviceLists: - 18328 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15150 components: - type: Transform @@ -127874,7 +127816,7 @@ entities: deviceLists: - 18317 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15151 components: - type: Transform @@ -127882,7 +127824,7 @@ entities: pos: -31.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15157 components: - type: Transform @@ -127890,7 +127832,7 @@ entities: pos: -44.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15166 components: - type: Transform @@ -127898,7 +127840,7 @@ entities: pos: -46.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15190 components: - type: Transform @@ -127906,7 +127848,7 @@ entities: pos: -37.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15243 components: - type: Transform @@ -127914,7 +127856,7 @@ entities: pos: -30.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15246 components: - type: Transform @@ -127925,7 +127867,7 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15267 components: - type: Transform @@ -127936,7 +127878,7 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15286 components: - type: Transform @@ -127944,7 +127886,7 @@ entities: pos: -35.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15290 components: - type: Transform @@ -127952,7 +127894,7 @@ entities: pos: -30.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15318 components: - type: Transform @@ -127963,14 +127905,14 @@ entities: deviceLists: - 18338 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15326 components: - type: Transform pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15337 components: - type: Transform @@ -127978,7 +127920,7 @@ entities: pos: -12.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15356 components: - type: Transform @@ -127991,7 +127933,7 @@ entities: - 18331 - 18332 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15386 components: - type: Transform @@ -127999,14 +127941,14 @@ entities: pos: -17.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15415 components: - type: Transform pos: -20.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15417 components: - type: Transform @@ -128014,7 +127956,7 @@ entities: pos: -25.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15419 components: - type: Transform @@ -128025,7 +127967,7 @@ entities: deviceLists: - 18690 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15421 components: - type: Transform @@ -128033,7 +127975,7 @@ entities: pos: -21.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15423 components: - type: Transform @@ -128044,7 +127986,7 @@ entities: deviceLists: - 23927 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15445 components: - type: Transform @@ -128055,7 +127997,7 @@ entities: deviceLists: - 5583 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15476 components: - type: Transform @@ -128063,7 +128005,7 @@ entities: pos: 35.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15477 components: - type: Transform @@ -128071,7 +128013,7 @@ entities: pos: 31.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15567 components: - type: Transform @@ -128079,7 +128021,7 @@ entities: pos: 58.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15618 components: - type: Transform @@ -128090,7 +128032,7 @@ entities: deviceLists: - 15512 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15651 components: - type: Transform @@ -128101,7 +128043,7 @@ entities: deviceLists: - 18603 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15652 components: - type: Transform @@ -128111,7 +128053,7 @@ entities: deviceLists: - 18603 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15710 components: - type: Transform @@ -128122,7 +128064,7 @@ entities: deviceLists: - 18691 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15713 components: - type: Transform @@ -128130,7 +128072,7 @@ entities: pos: -26.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15716 components: - type: Transform @@ -128141,7 +128083,7 @@ entities: deviceLists: - 18606 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15742 components: - type: Transform @@ -128152,7 +128094,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15776 components: - type: Transform @@ -128162,7 +128104,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15789 components: - type: Transform @@ -128172,7 +128114,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15790 components: - type: Transform @@ -128182,7 +128124,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15796 components: - type: Transform @@ -128190,7 +128132,7 @@ entities: pos: -12.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15811 components: - type: Transform @@ -128198,7 +128140,7 @@ entities: pos: -6.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15813 components: - type: Transform @@ -128209,7 +128151,7 @@ entities: deviceLists: - 18687 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15827 components: - type: Transform @@ -128219,7 +128161,7 @@ entities: deviceLists: - 29459 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15849 components: - type: Transform @@ -128230,7 +128172,7 @@ entities: deviceLists: - 29460 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15851 components: - type: Transform @@ -128238,7 +128180,7 @@ entities: pos: -30.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15898 components: - type: Transform @@ -128249,21 +128191,21 @@ entities: deviceLists: - 18697 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15899 components: - type: Transform pos: -31.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15900 components: - type: Transform pos: -28.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15901 components: - type: Transform @@ -128271,7 +128213,7 @@ entities: pos: -24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15912 components: - type: Transform @@ -128279,7 +128221,7 @@ entities: pos: -24.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16030 components: - type: Transform @@ -128290,7 +128232,7 @@ entities: deviceLists: - 18240 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16033 components: - type: Transform @@ -128301,7 +128243,7 @@ entities: deviceLists: - 18240 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16107 components: - type: Transform @@ -128312,7 +128254,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16110 components: - type: Transform @@ -128323,7 +128265,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16113 components: - type: Transform @@ -128334,7 +128276,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16114 components: - type: Transform @@ -128345,7 +128287,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16125 components: - type: Transform @@ -128353,7 +128295,7 @@ entities: pos: 46.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16136 components: - type: Transform @@ -128361,7 +128303,7 @@ entities: pos: 38.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16149 components: - type: Transform @@ -128372,7 +128314,7 @@ entities: deviceLists: - 3220 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16179 components: - type: Transform @@ -128383,7 +128325,7 @@ entities: deviceLists: - 14996 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16188 components: - type: Transform @@ -128391,7 +128333,7 @@ entities: pos: -11.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16237 components: - type: Transform @@ -128402,7 +128344,7 @@ entities: deviceLists: - 18530 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16251 components: - type: Transform @@ -128410,7 +128352,7 @@ entities: pos: 23.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16262 components: - type: Transform @@ -128418,7 +128360,7 @@ entities: pos: 26.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16285 components: - type: Transform @@ -128429,7 +128371,7 @@ entities: deviceLists: - 18536 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16297 components: - type: Transform @@ -128440,7 +128382,7 @@ entities: deviceLists: - 18541 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16334 components: - type: Transform @@ -128451,14 +128393,14 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16335 components: - type: Transform pos: 34.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16346 components: - type: Transform @@ -128466,7 +128408,7 @@ entities: pos: 31.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16357 components: - type: Transform @@ -128474,7 +128416,7 @@ entities: pos: 31.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16401 components: - type: Transform @@ -128485,7 +128427,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16416 components: - type: Transform @@ -128496,7 +128438,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16433 components: - type: Transform @@ -128507,21 +128449,21 @@ entities: deviceLists: - 18553 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16447 components: - type: Transform pos: 4.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16448 components: - type: Transform pos: 3.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16476 components: - type: Transform @@ -128529,7 +128471,7 @@ entities: pos: 13.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16477 components: - type: Transform @@ -128537,7 +128479,7 @@ entities: pos: 4.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16484 components: - type: Transform @@ -128547,7 +128489,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16485 components: - type: Transform @@ -128558,7 +128500,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16486 components: - type: Transform @@ -128569,7 +128511,7 @@ entities: deviceLists: - 18272 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16489 components: - type: Transform @@ -128579,7 +128521,7 @@ entities: deviceLists: - 18273 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16495 components: - type: Transform @@ -128590,7 +128532,7 @@ entities: deviceLists: - 18271 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16497 components: - type: Transform @@ -128601,7 +128543,7 @@ entities: deviceLists: - 18303 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16504 components: - type: Transform @@ -128612,7 +128554,7 @@ entities: deviceLists: - 18305 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16511 components: - type: Transform @@ -128623,7 +128565,7 @@ entities: deviceLists: - 18332 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16520 components: - type: Transform @@ -128634,7 +128576,7 @@ entities: deviceLists: - 18333 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16521 components: - type: Transform @@ -128645,7 +128587,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16530 components: - type: Transform @@ -128655,7 +128597,7 @@ entities: deviceLists: - 18366 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16532 components: - type: Transform @@ -128665,7 +128607,7 @@ entities: deviceLists: - 10169 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16542 components: - type: Transform @@ -128675,7 +128617,7 @@ entities: deviceLists: - 18263 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16547 components: - type: Transform @@ -128686,7 +128628,7 @@ entities: deviceLists: - 18247 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16774 components: - type: Transform @@ -128697,7 +128639,7 @@ entities: deviceLists: - 20717 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18410 components: - type: Transform @@ -128708,14 +128650,14 @@ entities: deviceLists: - 18443 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18411 components: - type: Transform pos: 53.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18654 components: - type: Transform @@ -128726,7 +128668,7 @@ entities: deviceLists: - 18658 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 19072 components: - type: Transform @@ -128734,7 +128676,7 @@ entities: pos: 30.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21181 components: - type: Transform @@ -128808,7 +128750,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23076 components: - type: Transform @@ -128818,7 +128760,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23124 components: - type: Transform @@ -128826,21 +128768,21 @@ entities: pos: 0.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23535 components: - type: Transform pos: -11.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23704 components: - type: Transform pos: -1.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23706 components: - type: Transform @@ -128851,7 +128793,7 @@ entities: deviceLists: - 23682 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 23900 components: - type: Transform @@ -128859,7 +128801,7 @@ entities: pos: 58.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 24526 components: - type: Transform @@ -128879,7 +128821,7 @@ entities: pos: -8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 25571 components: - type: Transform @@ -128887,7 +128829,7 @@ entities: pos: -11.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 27894 components: - type: Transform @@ -128912,7 +128854,7 @@ entities: deviceLists: - 18564 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 28966 components: - type: Transform @@ -128922,7 +128864,7 @@ entities: deviceLists: - 29040 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 29707 components: - type: Transform @@ -128930,7 +128872,7 @@ entities: pos: 12.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasVentScrubber entities: - uid: 53 @@ -128940,7 +128882,7 @@ entities: pos: -41.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 374 components: - type: Transform @@ -128951,7 +128893,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 412 components: - type: Transform @@ -128961,7 +128903,7 @@ entities: deviceLists: - 5583 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 879 components: - type: Transform @@ -128969,7 +128911,7 @@ entities: pos: -47.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 1540 components: - type: Transform @@ -128977,7 +128919,7 @@ entities: pos: -10.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2175 components: - type: Transform @@ -128988,7 +128930,7 @@ entities: deviceLists: - 29040 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7349 components: - type: Transform @@ -128996,7 +128938,7 @@ entities: pos: -12.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8128 components: - type: Transform @@ -129028,7 +128970,7 @@ entities: deviceLists: - 28611 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 10876 components: - type: Transform @@ -129039,7 +128981,7 @@ entities: deviceLists: - 18258 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13281 components: - type: Transform @@ -129050,7 +128992,7 @@ entities: deviceLists: - 18501 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13559 components: - type: Transform @@ -129061,7 +129003,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13560 components: - type: Transform @@ -129072,7 +129014,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13595 components: - type: Transform @@ -129082,7 +129024,7 @@ entities: deviceLists: - 18564 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13599 components: - type: Transform @@ -129092,7 +129034,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13600 components: - type: Transform @@ -129102,7 +129044,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13629 components: - type: Transform @@ -129113,7 +129055,7 @@ entities: deviceLists: - 23683 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13656 components: - type: Transform @@ -129123,7 +129065,7 @@ entities: deviceLists: - 18285 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13722 components: - type: Transform @@ -129131,7 +129073,7 @@ entities: pos: -18.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13725 components: - type: Transform @@ -129139,7 +129081,7 @@ entities: pos: -21.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13735 components: - type: Transform @@ -129147,7 +129089,7 @@ entities: pos: -21.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13763 components: - type: Transform @@ -129158,7 +129100,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13767 components: - type: Transform @@ -129168,7 +129110,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13860 components: - type: Transform @@ -129176,7 +129118,7 @@ entities: pos: -19.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13872 components: - type: Transform @@ -129184,35 +129126,35 @@ entities: pos: -19.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13873 components: - type: Transform pos: -16.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13874 components: - type: Transform pos: -11.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13875 components: - type: Transform pos: -6.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13876 components: - type: Transform pos: -2.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13901 components: - type: Transform @@ -129222,7 +129164,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13933 components: - type: Transform @@ -129233,7 +129175,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13980 components: - type: Transform @@ -129241,7 +129183,7 @@ entities: pos: -25.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13981 components: - type: Transform @@ -129249,21 +129191,21 @@ entities: pos: -4.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14005 components: - type: Transform pos: 5.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14020 components: - type: Transform pos: 19.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14057 components: - type: Transform @@ -129271,7 +129213,7 @@ entities: pos: 15.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14060 components: - type: Transform @@ -129279,14 +129221,14 @@ entities: pos: 21.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14074 components: - type: Transform pos: 23.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14088 components: - type: Transform @@ -129294,14 +129236,14 @@ entities: pos: 21.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14131 components: - type: Transform pos: 8.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14167 components: - type: Transform @@ -129309,7 +129251,7 @@ entities: pos: 32.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14168 components: - type: Transform @@ -129317,7 +129259,7 @@ entities: pos: 36.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14238 components: - type: Transform @@ -129325,7 +129267,7 @@ entities: pos: 42.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14239 components: - type: Transform @@ -129333,7 +129275,7 @@ entities: pos: 43.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14254 components: - type: Transform @@ -129344,7 +129286,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14311 components: - type: Transform @@ -129352,7 +129294,7 @@ entities: pos: 54.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14312 components: - type: Transform @@ -129360,7 +129302,7 @@ entities: pos: 50.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14313 components: - type: Transform @@ -129368,7 +129310,7 @@ entities: pos: 46.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14322 components: - type: Transform @@ -129379,7 +129321,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14373 components: - type: Transform @@ -129390,7 +129332,7 @@ entities: deviceLists: - 18645 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14374 components: - type: Transform @@ -129400,7 +129342,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14383 components: - type: Transform @@ -129410,14 +129352,14 @@ entities: deviceLists: - 18650 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14392 components: - type: Transform pos: 42.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14398 components: - type: Transform @@ -129425,14 +129367,14 @@ entities: pos: 50.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14452 components: - type: Transform pos: 28.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14454 components: - type: Transform @@ -129443,7 +129385,7 @@ entities: deviceLists: - 18652 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14511 components: - type: Transform @@ -129451,7 +129393,7 @@ entities: pos: 47.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14514 components: - type: Transform @@ -129459,7 +129401,7 @@ entities: pos: 55.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14515 components: - type: Transform @@ -129467,7 +129409,7 @@ entities: pos: 48.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14528 components: - type: Transform @@ -129478,7 +129420,7 @@ entities: deviceLists: - 18658 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14532 components: - type: Transform @@ -129489,7 +129431,7 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14615 components: - type: Transform @@ -129500,21 +129442,21 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14629 components: - type: Transform pos: 25.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14644 components: - type: Transform pos: -15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14646 components: - type: Transform @@ -129522,7 +129464,7 @@ entities: pos: -21.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14667 components: - type: Transform @@ -129530,7 +129472,7 @@ entities: pos: 11.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14674 components: - type: Transform @@ -129538,7 +129480,7 @@ entities: pos: 23.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14690 components: - type: Transform @@ -129549,7 +129491,7 @@ entities: deviceLists: - 18463 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14720 components: - type: Transform @@ -129560,7 +129502,7 @@ entities: deviceLists: - 28879 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14740 components: - type: Transform @@ -129570,7 +129512,7 @@ entities: deviceLists: - 18478 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14749 components: - type: Transform @@ -129580,7 +129522,7 @@ entities: deviceLists: - 18480 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14763 components: - type: Transform @@ -129588,14 +129530,14 @@ entities: pos: 36.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14766 components: - type: Transform pos: 35.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14767 components: - type: Transform @@ -129605,7 +129547,7 @@ entities: deviceLists: - 18482 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14869 components: - type: Transform @@ -129616,7 +129558,7 @@ entities: deviceLists: - 18663 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14925 components: - type: Transform @@ -129626,7 +129568,7 @@ entities: deviceLists: - 18678 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14926 components: - type: Transform @@ -129636,7 +129578,7 @@ entities: deviceLists: - 18667 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14927 components: - type: Transform @@ -129644,7 +129586,7 @@ entities: pos: 15.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14939 components: - type: Transform @@ -129652,7 +129594,7 @@ entities: pos: 19.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14954 components: - type: Transform @@ -129660,7 +129602,7 @@ entities: pos: -46.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14955 components: - type: Transform @@ -129668,7 +129610,7 @@ entities: pos: -38.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14960 components: - type: Transform @@ -129676,7 +129618,7 @@ entities: pos: -38.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14974 components: - type: Transform @@ -129684,14 +129626,14 @@ entities: pos: -38.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 14989 components: - type: Transform pos: -37.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15029 components: - type: Transform @@ -129703,7 +129645,7 @@ entities: - 18583 - 18584 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15105 components: - type: Transform @@ -129714,7 +129656,7 @@ entities: deviceLists: - 18587 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15109 components: - type: Transform @@ -129725,14 +129667,14 @@ entities: deviceLists: - 18584 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15118 components: - type: Transform pos: -48.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15129 components: - type: Transform @@ -129743,7 +129685,7 @@ entities: deviceLists: - 18328 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15148 components: - type: Transform @@ -129753,7 +129695,7 @@ entities: deviceLists: - 18317 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15149 components: - type: Transform @@ -129761,7 +129703,7 @@ entities: pos: -29.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15156 components: - type: Transform @@ -129769,7 +129711,7 @@ entities: pos: -44.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15167 components: - type: Transform @@ -129777,7 +129719,7 @@ entities: pos: -46.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15168 components: - type: Transform @@ -129788,7 +129730,7 @@ entities: deviceLists: - 29462 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15191 components: - type: Transform @@ -129796,7 +129738,7 @@ entities: pos: -36.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15237 components: - type: Transform @@ -129806,7 +129748,7 @@ entities: deviceLists: - 15250 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15242 components: - type: Transform @@ -129814,7 +129756,7 @@ entities: pos: -30.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15247 components: - type: Transform @@ -129824,7 +129766,7 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15266 components: - type: Transform @@ -129835,21 +129777,21 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15287 components: - type: Transform pos: -35.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15289 components: - type: Transform pos: -30.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15319 components: - type: Transform @@ -129860,14 +129802,14 @@ entities: deviceLists: - 18338 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15325 components: - type: Transform pos: -2.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15357 components: - type: Transform @@ -129880,14 +129822,14 @@ entities: - 18331 - 18332 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15387 components: - type: Transform pos: -16.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15401 components: - type: Transform @@ -129895,7 +129837,7 @@ entities: pos: -15.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15414 components: - type: Transform @@ -129903,7 +129845,7 @@ entities: pos: -20.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15418 components: - type: Transform @@ -129911,7 +129853,7 @@ entities: pos: -25.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15420 components: - type: Transform @@ -129922,7 +129864,7 @@ entities: deviceLists: - 18690 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15422 components: - type: Transform @@ -129930,7 +129872,7 @@ entities: pos: -19.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15424 components: - type: Transform @@ -129941,7 +129883,7 @@ entities: deviceLists: - 23927 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15444 components: - type: Transform @@ -129952,14 +129894,14 @@ entities: deviceLists: - 5583 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15461 components: - type: Transform pos: 40.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15493 components: - type: Transform @@ -129967,7 +129909,7 @@ entities: pos: 31.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15494 components: - type: Transform @@ -129975,7 +129917,7 @@ entities: pos: 35.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15549 components: - type: Transform @@ -129983,7 +129925,7 @@ entities: pos: 57.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15615 components: - type: Transform @@ -129994,7 +129936,7 @@ entities: deviceLists: - 15512 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15653 components: - type: Transform @@ -130005,7 +129947,7 @@ entities: deviceLists: - 18603 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15654 components: - type: Transform @@ -130015,7 +129957,7 @@ entities: deviceLists: - 18603 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15711 components: - type: Transform @@ -130026,7 +129968,7 @@ entities: deviceLists: - 18691 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15712 components: - type: Transform @@ -130034,7 +129976,7 @@ entities: pos: -24.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15717 components: - type: Transform @@ -130045,7 +129987,7 @@ entities: deviceLists: - 18606 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15743 components: - type: Transform @@ -130056,7 +129998,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15775 components: - type: Transform @@ -130066,7 +130008,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15787 components: - type: Transform @@ -130076,7 +130018,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15788 components: - type: Transform @@ -130086,14 +130028,14 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15797 components: - type: Transform pos: -12.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15809 components: - type: Transform @@ -130101,7 +130043,7 @@ entities: pos: -6.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15814 components: - type: Transform @@ -130112,7 +130054,7 @@ entities: deviceLists: - 18687 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15828 components: - type: Transform @@ -130122,7 +130064,7 @@ entities: deviceLists: - 29459 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15850 components: - type: Transform @@ -130133,7 +130075,7 @@ entities: deviceLists: - 29460 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15852 components: - type: Transform @@ -130141,7 +130083,7 @@ entities: pos: -30.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15902 components: - type: Transform @@ -130152,28 +130094,28 @@ entities: deviceLists: - 18697 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15903 components: - type: Transform pos: -32.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15904 components: - type: Transform pos: -29.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15905 components: - type: Transform pos: -26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15913 components: - type: Transform @@ -130181,7 +130123,7 @@ entities: pos: -26.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 15934 components: - type: Transform @@ -130191,14 +130133,14 @@ entities: deviceLists: - 18240 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16031 components: - type: Transform pos: 0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16111 components: - type: Transform @@ -130209,7 +130151,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16112 components: - type: Transform @@ -130220,7 +130162,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16115 components: - type: Transform @@ -130231,7 +130173,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16116 components: - type: Transform @@ -130242,7 +130184,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16126 components: - type: Transform @@ -130250,14 +130192,14 @@ entities: pos: 48.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16137 components: - type: Transform pos: 40.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16148 components: - type: Transform @@ -130268,7 +130210,7 @@ entities: deviceLists: - 3220 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16180 components: - type: Transform @@ -130279,7 +130221,7 @@ entities: deviceLists: - 14996 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16189 components: - type: Transform @@ -130287,7 +130229,7 @@ entities: pos: -12.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16238 components: - type: Transform @@ -130297,7 +130239,7 @@ entities: deviceLists: - 18530 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16252 components: - type: Transform @@ -130305,7 +130247,7 @@ entities: pos: 24.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16263 components: - type: Transform @@ -130313,7 +130255,7 @@ entities: pos: 25.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16267 components: - type: Transform @@ -130324,7 +130266,7 @@ entities: deviceLists: - 18536 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16298 components: - type: Transform @@ -130335,7 +130277,7 @@ entities: deviceLists: - 18541 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16336 components: - type: Transform @@ -130345,14 +130287,14 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16337 components: - type: Transform pos: 35.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16345 components: - type: Transform @@ -130360,7 +130302,7 @@ entities: pos: 36.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16358 components: - type: Transform @@ -130368,7 +130310,7 @@ entities: pos: 31.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16402 components: - type: Transform @@ -130378,7 +130320,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16410 components: - type: Transform @@ -130389,7 +130331,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16432 components: - type: Transform @@ -130399,7 +130341,7 @@ entities: deviceLists: - 18553 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16449 components: - type: Transform @@ -130407,14 +130349,14 @@ entities: pos: 4.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16450 components: - type: Transform pos: 3.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16474 components: - type: Transform @@ -130422,7 +130364,7 @@ entities: pos: 9.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16475 components: - type: Transform @@ -130430,7 +130372,7 @@ entities: pos: 14.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16482 components: - type: Transform @@ -130441,7 +130383,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16483 components: - type: Transform @@ -130451,7 +130393,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16490 components: - type: Transform @@ -130462,7 +130404,7 @@ entities: deviceLists: - 18273 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16491 components: - type: Transform @@ -130473,7 +130415,7 @@ entities: deviceLists: - 18270 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16496 components: - type: Transform @@ -130484,7 +130426,7 @@ entities: deviceLists: - 18271 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16498 components: - type: Transform @@ -130494,7 +130436,7 @@ entities: deviceLists: - 18303 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16503 components: - type: Transform @@ -130504,7 +130446,7 @@ entities: deviceLists: - 18305 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16512 components: - type: Transform @@ -130512,7 +130454,7 @@ entities: pos: -44.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16522 components: - type: Transform @@ -130523,7 +130465,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16529 components: - type: Transform @@ -130534,7 +130476,7 @@ entities: deviceLists: - 18366 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16531 components: - type: Transform @@ -130545,7 +130487,7 @@ entities: deviceLists: - 10169 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16543 components: - type: Transform @@ -130556,7 +130498,7 @@ entities: deviceLists: - 18263 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16546 components: - type: Transform @@ -130567,7 +130509,7 @@ entities: deviceLists: - 18247 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16556 components: - type: Transform @@ -130578,7 +130520,7 @@ entities: deviceLists: - 18499 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16794 components: - type: Transform @@ -130589,7 +130531,7 @@ entities: deviceLists: - 18567 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18330 components: - type: Transform @@ -130600,7 +130542,7 @@ entities: deviceLists: - 23235 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18408 components: - type: Transform @@ -130611,7 +130553,7 @@ entities: deviceLists: - 18440 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18409 components: - type: Transform @@ -130621,7 +130563,7 @@ entities: deviceLists: - 18443 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18412 components: - type: Transform @@ -130629,7 +130571,7 @@ entities: pos: 53.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18655 components: - type: Transform @@ -130640,7 +130582,7 @@ entities: deviceLists: - 18658 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 19074 components: - type: Transform @@ -130648,7 +130590,7 @@ entities: pos: 31.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 20617 components: - type: Transform @@ -130658,7 +130600,7 @@ entities: deviceLists: - 20717 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21183 components: - type: Transform @@ -130695,7 +130637,7 @@ entities: pos: -10.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22202 components: - type: Transform @@ -130703,7 +130645,7 @@ entities: pos: -5.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 22490 components: - type: Transform @@ -130745,7 +130687,7 @@ entities: pos: 0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23075 components: - type: Transform @@ -130756,7 +130698,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23077 components: - type: Transform @@ -130766,7 +130708,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23703 components: - type: Transform @@ -130774,7 +130716,7 @@ entities: pos: -1.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23707 components: - type: Transform @@ -130785,7 +130727,7 @@ entities: deviceLists: - 23682 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 23899 components: - type: Transform @@ -130793,7 +130735,7 @@ entities: pos: 58.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 25223 components: - type: Transform @@ -130853,7 +130795,7 @@ entities: pos: -11.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 26474 components: - type: Transform @@ -130869,7 +130811,7 @@ entities: pos: 13.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasVentScrubberVox entities: - uid: 10840 @@ -130879,7 +130821,7 @@ entities: pos: -12.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 10841 components: - type: Transform @@ -130887,7 +130829,7 @@ entities: pos: -13.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasVolumePump entities: - uid: 8939 @@ -130936,7 +130878,7 @@ entities: pos: -13.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - proto: GlassBoxLaserFilled entities: - uid: 2740 @@ -139400,6 +139342,433 @@ entities: rot: 1.5707963267948966 rad pos: 26.553406,0.6529236 parent: 21002 +- proto: HolopadAiCore + entities: + - uid: 29822 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 +- proto: HolopadAiMain + entities: + - uid: 29823 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 +- proto: HolopadCargoBay + entities: + - uid: 29793 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 29795 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 +- proto: HolopadCargoFront + entities: + - uid: 29792 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 +- proto: HolopadCargoSalvageBay + entities: + - uid: 29794 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 12884 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 13010 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 12885 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 +- proto: HolopadCommandCe + entities: + - uid: 12886 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 12888 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 +- proto: HolopadCommandHop + entities: + - uid: 12889 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 +- proto: HolopadCommandHos + entities: + - uid: 12934 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 2 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 2545 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 +- proto: HolopadCommandQm + entities: + - uid: 12935 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 +- proto: HolopadCommandRd + entities: + - uid: 12937 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 12938 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 29796 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 29797 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 29801 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 29798 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 +- proto: HolopadEngineeringFront + entities: + - uid: 29799 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 +- proto: HolopadEngineeringStorage + entities: + - uid: 29800 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 +- proto: HolopadEngineeringTechVault + entities: + - uid: 29803 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 29804 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 +- proto: HolopadGeneralArcade + entities: + - uid: 29802 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 +- proto: HolopadGeneralArrivals + entities: + - uid: 2176 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 +- proto: HolopadGeneralCryosleep + entities: + - uid: 11130 + components: + - type: Transform + pos: -46.5,-33.5 + parent: 2 +- proto: HolopadGeneralDisposals + entities: + - uid: 12356 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 +- proto: HolopadGeneralEvac + entities: + - uid: 12567 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 2 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 12566 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 +- proto: HolopadGeneralLounge + entities: + - uid: 12882 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 +- proto: HolopadGeneralTools + entities: + - uid: 12883 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 +- proto: HolopadMedicalChemistry + entities: + - uid: 28431 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 +- proto: HolopadMedicalCryopods + entities: + - uid: 28438 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 +- proto: HolopadMedicalFront + entities: + - uid: 29045 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 28620 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 +- proto: HolopadMedicalMorgue + entities: + - uid: 29046 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 +- proto: HolopadMedicalSurgery + entities: + - uid: 29050 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 +- proto: HolopadMedicalVirology + entities: + - uid: 29615 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 +- proto: HolopadScienceAnomaly + entities: + - uid: 13577 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 +- proto: HolopadScienceArtifact + entities: + - uid: 13030 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 +- proto: HolopadScienceFront + entities: + - uid: 16796 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 +- proto: HolopadScienceRobotics + entities: + - uid: 24249 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 +- proto: HolopadSecurityArmory + entities: + - uid: 29805 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 29806 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 +- proto: HolopadSecurityCourtroom + entities: + - uid: 29807 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 +- proto: HolopadSecurityDetective + entities: + - uid: 29812 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2 +- proto: HolopadSecurityFront + entities: + - uid: 29810 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 +- proto: HolopadSecurityInterrogation + entities: + - uid: 29808 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 +- proto: HolopadSecurityLawyer + entities: + - uid: 29809 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 +- proto: HolopadSecurityWarden + entities: + - uid: 29811 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 29813 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 +- proto: HolopadServiceBotany + entities: + - uid: 29814 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 29815 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 +- proto: HolopadServiceClownMime + entities: + - uid: 29816 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 +- proto: HolopadServiceJanitor + entities: + - uid: 29817 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 +- proto: HolopadServiceKitchen + entities: + - uid: 29818 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 +- proto: HolopadServiceLibrary + entities: + - uid: 29819 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 +- proto: HolopadServiceNewsroom + entities: + - uid: 29821 + components: + - type: Transform + pos: -46.5,-25.5 + parent: 2 +- proto: HolopadServiceZookeeper + entities: + - uid: 29820 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 - proto: HoloprojectorSecurity entities: - uid: 23392 @@ -139440,7 +139809,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -139701.81 + secondsUntilStateChange: -143756.08 state: Opening - uid: 5211 components: @@ -149696,7 +150065,7 @@ entities: pos: -26.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9020 components: - type: Transform @@ -149704,7 +150073,7 @@ entities: pos: -24.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: Protolathe entities: - uid: 7789 @@ -164372,10 +164741,10 @@ entities: - type: Transform pos: -29.5,39.5 parent: 2 - - uid: 8907 + - uid: 10691 components: - type: Transform - pos: -28.5,39.5 + pos: -31.5,39.5 parent: 2 - proto: SuitStorageBase entities: @@ -191724,7 +192093,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -484906.5 + secondsUntilStateChange: -488960.78 state: Opening - uid: 28863 components: From 8f36d7d1c8b89a751c43e34b03dd4820f4a3ac53 Mon Sep 17 00:00:00 2001 From: Spanky Date: Wed, 18 Dec 2024 18:29:21 -0500 Subject: [PATCH 153/263] Reach/Cargo Update (Holopads & Atmos) (#33943) * Reach/Cargo Update Adds holopads and new atmos tech to Reach, and replaces cargo shuttle/ATS holopads with localized versions. * Fix Invalid invalidinvalidinvalidinvalidinvalidinvalid --- Resources/Maps/Shuttles/cargo.yml | 8 +- Resources/Maps/Shuttles/trading_outpost.yml | 8 +- Resources/Maps/reach.yml | 180 +++++++++++--------- 3 files changed, 102 insertions(+), 94 deletions(-) diff --git a/Resources/Maps/Shuttles/cargo.yml b/Resources/Maps/Shuttles/cargo.yml index ca0719dd60..eb49dc67d9 100644 --- a/Resources/Maps/Shuttles/cargo.yml +++ b/Resources/Maps/Shuttles/cargo.yml @@ -817,19 +817,13 @@ entities: - type: Transform pos: -3.5,-2.5 parent: 173 -- proto: HolopadLongRange +- proto: HolopadCargoShuttle entities: - uid: 186 components: - - type: MetaData - name: long-range holopad (Cargo Shuttle) - type: Transform pos: -2.5,5.5 parent: 173 - - type: Label - currentLabel: Cargo Shuttle - - type: NameModifier - baseName: long-range holopad - proto: LockableButtonCargo entities: - uid: 182 diff --git a/Resources/Maps/Shuttles/trading_outpost.yml b/Resources/Maps/Shuttles/trading_outpost.yml index c88aad4a10..abdd7a81c7 100644 --- a/Resources/Maps/Shuttles/trading_outpost.yml +++ b/Resources/Maps/Shuttles/trading_outpost.yml @@ -4326,19 +4326,13 @@ entities: - type: Transform pos: 11.5,9.5 parent: 2 -- proto: HolopadLongRange +- proto: HolopadCargoAts entities: - uid: 546 components: - - type: MetaData - name: long-range holopad (Automated Trade Station) - type: Transform pos: 5.5,2.5 parent: 2 - - type: Label - currentLabel: Automated Trade Station - - type: NameModifier - baseName: long-range holopad - proto: NewtonCradle entities: - uid: 65 diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml index fca485b2b9..971468410d 100644 --- a/Resources/Maps/reach.yml +++ b/Resources/Maps/reach.yml @@ -61,7 +61,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAXQAAAAABAgAAAAAAAgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAACfgAAAAAAHwAAAAADegAAAAADHwAAAAACfgAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAHwAAAAADegAAAAABHwAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAHwAAAAAAegAAAAADHwAAAAACfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADfgAAAAAAHwAAAAABHwAAAAAC + tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAXQAAAAABAgAAAAAAAgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAgAAAAAAAgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAACfgAAAAAAHwAAAAADegAAAAADHwAAAAACfgAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAHwAAAAADegAAAAABHwAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAHwAAAAAAegAAAAADHwAAAAACfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADfgAAAAAAHwAAAAABHwAAAAAC version: 6 -2,0: ind: -2,0 @@ -139,6 +139,16 @@ entities: 399: -23,-1 400: -23,1 413: -24,0 + - node: + color: '#334E6DC8' + id: BotGreyscale + decals: + 419: 22,0 + - node: + color: '#A4610696' + id: BotGreyscale + decals: + 418: 1,9 - node: color: '#FFFFFFFF' id: BotLeft @@ -612,6 +622,7 @@ entities: 2: 2,-12 3: 3,-13 415: 3,-14 + 417: 3,-12 - node: color: '#FFFFFFFF' id: Grasse2 @@ -1031,7 +1042,7 @@ entities: -4,-2: 0: 57344 -5,-2: - 0: 57344 + 0: 58368 -4,-1: 0: 61166 -5,-1: @@ -1064,10 +1075,10 @@ entities: -1,-4: 0: 32768 0,-4: - 0: 62720 + 0: 64768 1: 4 0,-3: - 0: 21781 + 0: 21791 0,-2: 0: 55805 0,-1: @@ -1127,8 +1138,7 @@ entities: 4,0: 0: 54783 4,1: - 0: 157 - 2: 64 + 0: 221 -5,0: 0: 61183 -4,1: @@ -1164,8 +1174,8 @@ entities: 2,-2: 0: 61687 2,-4: - 3: 6 - 4: 1536 + 2: 6 + 3: 1536 3,-4: 1: 8737 0: 256 @@ -1254,21 +1264,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -1454,18 +1449,17 @@ entities: - 1097 - 1096 - 1083 - - uid: 14 + - uid: 2500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 + pos: 2.5,-10.5 parent: 2 - type: DeviceList devices: - - 1486 - - 1454 - - 1453 - 1514 + - 1453 + - 1454 + - 1486 - proto: AirCanister entities: - uid: 15 @@ -6272,7 +6266,7 @@ entities: - uid: 915 components: - type: Transform - pos: 4.5333743,-11.7164135 + pos: 5.4690175,-10.51443 parent: 2 - proto: ClothingUniformJumpsuitERTJanitor entities: @@ -6397,6 +6391,14 @@ entities: rot: 3.141592653589793 rad pos: 16.5,3.5 parent: 2 +- proto: ComputerAlert + entities: + - uid: 2081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 2 - proto: ComputerAnalysisConsole entities: - uid: 1801 @@ -6409,6 +6411,14 @@ entities: linkedPorts: 1070: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 1289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 936 @@ -8054,6 +8064,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' +- proto: GasPipeSensorDistribution + entities: + - uid: 1183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorWaste + entities: + - uid: 1287 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 1177 @@ -8097,14 +8126,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-14.5 parent: 2 - - uid: 1183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1184 components: - type: Transform @@ -8906,14 +8927,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1288 components: - type: Transform @@ -8922,12 +8935,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 2 - uid: 1290 components: - type: Transform @@ -10209,7 +10216,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14 + - 2500 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1454 @@ -10220,7 +10227,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14 + - 2500 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1455 @@ -10550,7 +10557,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14 + - 2500 - type: AtmosPipeColor color: '#990000FF' - uid: 1487 @@ -10837,7 +10844,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14 + - 2500 - type: AtmosPipeColor color: '#990000FF' - uid: 1515 @@ -11434,6 +11441,20 @@ entities: - type: Transform pos: 4.6859074,-10.602916 parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 2171 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 2128 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 - proto: HoPIDCard entities: - uid: 1623 @@ -11571,10 +11592,10 @@ entities: parent: 2 - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 1956 + - uid: 2499 components: - type: Transform - pos: 3.5,-13.5 + pos: 4.5,-11.5 parent: 2 - proto: LockerBoozeFilled entities: @@ -12199,6 +12220,13 @@ entities: - type: Transform pos: 8.5,-4.5 parent: 2 +- proto: PoweredDimSmallLight + entities: + - uid: 1783 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 - proto: Poweredlight entities: - uid: 876 @@ -12531,20 +12559,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1782 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1783 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1784 components: - type: Transform @@ -12601,6 +12615,11 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,15.5 parent: 2 + - uid: 1956 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 - proto: Protolathe entities: - uid: 1792 @@ -13614,7 +13633,7 @@ entities: - type: Transform pos: 8.5,-1.5 parent: 2 -- proto: SMESBasic +- proto: SMESAdvanced entities: - uid: 1972 components: @@ -14699,10 +14718,10 @@ entities: parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 2128 + - uid: 1782 components: - type: Transform - pos: 2.5,-13.5 + pos: 3.5,-11.5 parent: 2 - uid: 2129 components: @@ -14942,11 +14961,6 @@ entities: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 2171 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - uid: 2173 components: - type: Transform @@ -16442,6 +16456,12 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 - uid: 1592 components: - type: Transform From c33d3350bd99eeaeee1f32342ad1dfb98221b716 Mon Sep 17 00:00:00 2001 From: Hannah Giovanna Dawson Date: Thu, 19 Dec 2024 00:11:59 +0000 Subject: [PATCH 154/263] [Christmas] Y'all want a Smite Cranberry? (#33922) * Add a festive lemon-lime soda variant: cranberry! * Gave lemon-lime a brand name * Make the CrateFoodSoftdrinksLarge slightly larger to accomodate the extra drinks. * Extend the Christmas anomaly with extra jolliness * Minor spelling mistake. Jollyness will not be denied. * Removed redundant delay from meta file --- .../Locale/en-US/flavors/flavor-profiles.ftl | 1 + .../reagents/meta/consumable/drink/soda.ftl | 3 + .../Prototypes/Catalog/Fills/Crates/food.yml | 8 ++- .../VendingMachines/Inventories/cola.yml | 1 + .../VendingMachines/Inventories/gib.yml | 1 + .../VendingMachines/Inventories/pwrgame.yml | 1 + .../Inventories/shamblersjuice.yml | 1 + .../VendingMachines/Inventories/soda.yml | 1 + .../VendingMachines/Inventories/spaceup.yml | 1 + .../VendingMachines/Inventories/starkist.yml | 1 + .../Random/Food_Drinks/drinks_soda.yml | 1 + .../Objects/Consumable/Drinks/drinks_cans.yml | 53 +++++++++++++++++- .../Objects/Consumable/Drinks/drinks_fun.yml | 1 + .../Consumable/Food/Containers/box.yml | 2 + .../Structures/Specific/Anomaly/anomalies.yml | 5 +- Resources/Prototypes/Flavors/flavors.yml | 7 ++- .../Hydroponics/randomChemicals.yml | 1 + .../Reagents/Consumable/Drink/soda.yml | 9 +++ .../Prototypes/Recipes/Reactions/drinks.yml | 2 +- .../Drinks/lemon-lime-cranberry.rsi/icon.png | Bin 0 -> 501 bytes .../lemon-lime-cranberry.rsi/icon_open.png | Bin 0 -> 503 bytes .../lemon-lime-cranberry.rsi/inhand-left.png | Bin 0 -> 268 bytes .../lemon-lime-cranberry.rsi/inhand-right.png | Bin 0 -> 278 bytes .../Drinks/lemon-lime-cranberry.rsi/meta.json | 25 +++++++++ 24 files changed, 120 insertions(+), 5 deletions(-) create mode 100644 Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/icon.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/icon_open.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/meta.json diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index f7730aa01f..1968863197 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -203,6 +203,7 @@ flavor-complex-dr-gibb = like malpractice flavor-complex-ginger-soda = like ginger flavor-complex-grape-soda = like grape soda flavor-complex-lemon-lime-soda = like lemon-lime soda +flavor-complex-lemon-lime-cranberry-soda = like Christmas flavor-complex-pwr-game-soda = like gaming flavor-complex-root-beer-soda = like root beer flavor-complex-citrus-soda = like citrus soda diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/soda.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/soda.ftl index 300284aee9..4f4bdd1f5f 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/soda.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/soda.ftl @@ -22,6 +22,9 @@ reagent-desc-ice-cream = It was either this or the microwave, and nobody wants i reagent-name-lemon-lime = lemon-lime reagent-desc-lemon-lime = tangy lime and lemon soda +reagent-name-lemon-lime-cranberry = lemon-lime-cranberry +reagent-desc-lemon-lime-cranberry = Tart cranberry, Christmas, and a hint of lemon and lime. + reagent-name-pwr-game = Pwr Game reagent-desc-pwr-game = The only drink with the PWR that true gamers crave. When a gamer talks about gamerfuel, this is what they're literally referring to. diff --git a/Resources/Prototypes/Catalog/Fills/Crates/food.yml b/Resources/Prototypes/Catalog/Fills/Crates/food.yml index 527c2595dd..e43d918bb9 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/food.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/food.yml @@ -132,6 +132,8 @@ amount: 2 - id: DrinkLemonLimeCan amount: 2 + - id: DrinkLemonLimeCranberryCan + amount: 2 - id: DrinkFourteenLokoCan amount: 2 @@ -139,8 +141,10 @@ id: CrateFoodSoftdrinksLarge parent: CratePlastic name: softdrinks bulk crate - description: Lots of sodas taken straight out of Centcomm's own vending machines, because you just can't leave your department. Includes 28 sodas. + description: Lots of sodas taken straight out of Centcomm's own vending machines, because you just can't leave your department. Includes 32 sodas. components: + - type: EntityStorage + capacity: 32 # Slightly over-sized CratePlastic to accomodate over 30 drink cans at once. - type: StorageFill contents: - id: DrinkColaCan @@ -153,6 +157,8 @@ amount: 4 - id: DrinkLemonLimeCan amount: 4 + - id: DrinkLemonLimeCranberryCan + amount: 4 - id: DrinkFourteenLokoCan amount: 4 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cola.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cola.yml index ace9102562..30166ca371 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cola.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cola.yml @@ -7,6 +7,7 @@ DrinkIcedTeaCan: 2 DrinkSolDryCan: 2 DrinkLemonLimeCan: 2 + DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 emaggedInventory: DrinkNukieCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/gib.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/gib.yml index 98513a48a4..04dbf38ed7 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/gib.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/gib.yml @@ -7,6 +7,7 @@ DrinkIcedTeaCan: 2 DrinkSolDryCan: 2 DrinkLemonLimeCan: 2 + DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 emaggedInventory: DrinkNukieCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pwrgame.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pwrgame.yml index cb5a4f5c4b..d51075c358 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pwrgame.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pwrgame.yml @@ -8,6 +8,7 @@ DrinkIcedTeaCan: 2 DrinkSolDryCan: 2 DrinkLemonLimeCan: 2 + DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 emaggedInventory: DrinkNukieCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/shamblersjuice.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/shamblersjuice.yml index 6ac70b26db..6b9ff67f2b 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/shamblersjuice.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/shamblersjuice.yml @@ -7,6 +7,7 @@ DrinkIcedTeaCan: 2 DrinkSolDryCan: 2 DrinkLemonLimeCan: 2 + DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 emaggedInventory: DrinkNukieCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/soda.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/soda.yml index 339683d2c9..4b2a922813 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/soda.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/soda.yml @@ -7,6 +7,7 @@ DrinkIcedTeaCan: 3 DrinkSolDryCan: 3 DrinkLemonLimeCan: 3 + DrinkLemonLimeCranberryCan: 3 DrinkFourteenLokoCan: 3 emaggedInventory: DrinkNukieCan: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/spaceup.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/spaceup.yml index a5f570bd46..7b36a3fc81 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/spaceup.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/spaceup.yml @@ -8,6 +8,7 @@ DrinkIcedTeaCan: 2 DrinkSolDryCan: 2 DrinkLemonLimeCan: 2 + DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 emaggedInventory: DrinkNukieCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/starkist.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/starkist.yml index b1a74fc13e..0e7dcf7482 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/starkist.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/starkist.yml @@ -7,6 +7,7 @@ DrinkIcedTeaCan: 2 DrinkSolDryCan: 2 DrinkLemonLimeCan: 2 + DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 emaggedInventory: DrinkNukieCan: 2 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_soda.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_soda.yml index e3339082b3..6d36fa802b 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_soda.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_soda.yml @@ -19,6 +19,7 @@ - DrinkColaCan - DrinkIcedTeaCan - DrinkLemonLimeCan + - DrinkLemonLimeCranberryCan - DrinkGrapeCan - DrinkRootBeerCan - DrinkSodaWaterCan diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index f5b733d37b..59fc1a83a5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -137,7 +137,7 @@ - type: entity parent: DrinkCanBaseFull id: DrinkLemonLimeCan - name: lemon-lime can + name: Smite can description: You wanted ORANGE. It gave you Lemon-Lime. components: - type: SolutionContainerManager @@ -152,6 +152,57 @@ - type: Item sprite: Objects/Consumable/Drinks/lemon-lime.rsi +- type: entity + parent: DrinkCanBaseFull + id: DrinkLemonLimeCranberryCan + name: Smite Cranberry can + description: Y'all want a Smite Cranberry? Beloved by administrators everywhere. Drink in moderation. A limited run for the holidays! + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: LemonLimeCranberry + Quantity: 30 + - type: Sprite + sprite: Objects/Consumable/Drinks/lemon-lime-cranberry.rsi + - type: Item + sprite: Objects/Consumable/Drinks/lemon-lime-cranberry.rsi + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.2 + density: 5 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.1,0.1,0.1" + hard: false + mask: + - Impassable + - BulletImpassable + - type: EmbeddableProjectile + sound: /Audio/Weapons/punch1.ogg + embedOnThrow: True + - type: ThrowingAngle + angle: 0 + - type: LandAtCursor + - type: Ammo + muzzleFlash: null + - type: Projectile + deleteOnCollide: false + onlyCollideWhenShot: true + damage: + types: + Blunt: 1 + Cold: 2 # Refreshing + - type: entity parent: DrinkCanBaseFull id: DrinkGrapeCan diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml index ef6208b69d..ed2324811e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml @@ -106,6 +106,7 @@ - SpaceUp - SpaceMountainWind - LemonLime + - LemonLimeCranberry - PwrGame - quantity: 10 weight: 3 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index 22488bd436..69621aa944 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -694,6 +694,8 @@ orGroup: DrinkPool - id: DrinkLemonLimeCan orGroup: DrinkPool + - id: DrinkLemonLimeCranberryCan + orGroup: DrinkPool - id: DrinkIcedTeaCan orGroup: DrinkPool - id: ToyMouse diff --git a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml index f111d6b182..62025f668e 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml @@ -983,4 +983,7 @@ maxRange: 6 spawns: - PresentRandomInsane - \ No newline at end of file + - type: ProjectileAnomaly + projectilePrototype: DrinkLemonLimeCranberryCan + minProjectiles: 1 + maxProjectiles: 3 diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index 611750fa7d..24507c950a 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -674,6 +674,11 @@ flavorType: Complex description: flavor-complex-lemon-lime-soda +- type: flavor + id: lemonlimecranberrysoda + flavorType: Complex + description: flavor-complex-lemon-lime-cranberry-soda + - type: flavor id: pwrgamesoda flavorType: Complex @@ -1337,4 +1342,4 @@ - type: flavor id: zombiecocktail flavorType: Complex - description: flavor-complex-zombiecocktail \ No newline at end of file + description: flavor-complex-zombiecocktail diff --git a/Resources/Prototypes/Hydroponics/randomChemicals.yml b/Resources/Prototypes/Hydroponics/randomChemicals.yml index 6108278a4a..7b2fdf3a2c 100644 --- a/Resources/Prototypes/Hydroponics/randomChemicals.yml +++ b/Resources/Prototypes/Hydroponics/randomChemicals.yml @@ -85,6 +85,7 @@ - Ethanol - FourteenLoko - LemonLime + - LemonLimeCranberry - Enzyme - Vinegar - Potassium diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml index 49290677a1..7ddf19c14e 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml @@ -121,6 +121,15 @@ flavor: lemonlimesoda color: "#878F00" +- type: reagent + id: LemonLimeCranberry + name: reagent-name-lemon-lime-cranberry + parent: BaseSoda + desc: reagent-desc-lemon-lime-cranberry + physicalDesc: reagent-physical-desc-fizzy + flavor: lemonlimecranberrysoda + color: "#803C53" + - type: reagent id: PwrGame name: reagent-name-pwr-game diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index cf6da10b8b..9ae0493efe 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -1230,4 +1230,4 @@ ZombieBlood: amount: 1 products: - ZombieCocktail: 4 \ No newline at end of file + ZombieCocktail: 4 diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..da2bf7983a99f3b242bd3ff84ef0b8e7046a400e GIT binary patch literal 501 zcmVPx$l}SWFR9J=WmCq{#VHn3h#Ay%9QOd?_>#*Xmwd0~@wOGPIeqCHBe}Ool-EwqR z+P}cBlM7Nzx!|CTAKQw9QXFgVQ*XWVyiecfJI_1wzTn{C@ZTws zBS zE&>n?DAX%8=(}rZp?(u#S4$KjQ0YbNpt(X9tOAnU#@mZ3oITZk7 zN2V$M21aN7M20KA#Jw$WxhGY#VW6QdLeKb{C6-7eX;=TqK!Hj1hUa^e!<3tZU6G#{ zIC-jM38U@%h8iz6!+cn6UvdSd4V rY}Nn(01jnXNoGw=04e|g00;m8000000Mb*F00000NkvXXu0mjfD)ij2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/icon_open.png b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/icon_open.png new file mode 100644 index 0000000000000000000000000000000000000000..cc1a15c183a78b88aae6abb820954b237e5342dd GIT binary patch literal 503 zcmVPx$mq|oHR9J=WmCY*zaTv!xWKRyu!9j|ciNk6sWlw5W-ors`E-n=1=E4Ela&&N_ z>|fyR z#k#Ho5LwzYKkBtL3INq=L6)Xzq5wIf>U8tIP>?EL1pv!yTL8?@E)bcUklM)tM3(kU z>ut4Qx2+G4459C=q6NE6gj3Cy6a$1h8||hR6-u!^2`Qqq{(4M+jm7&6{pd8t*mM8@ zV_W7a{s#IdeYEuEebLoAxY(7tIS5c$)k4z%@^ICI@jZQKu$9 z32^+F&-!_8`tF9?fm+mL0)xxH39x>aYF;z0;Cb=V>@C4aCd58J-hzEn=fchFvm+nz zIRMZe_S@^giVlGB694@G>Y;+#o*MI6Yg@*%W^ak30OBq9IO_c#Exn4f`EcbZfM^0I zMWx}H+d~RHxwdAF-bf}mDJl&+O7UHEU8mgFFx8c(n4hn5U&EC3yLNGLagp#2U9f!^ t2+KTV0000EWmrjOO-%qQ00008000000002eQQ+e8Vpw}7^R1jIgO>5qC;Kcz<2yK#T&$a3c-Q@&B)R)u z{)RNM@@wJtk*^pTzET_!;cl7ITw@ae{Iq6B@#>t35zmMrL7Zi^x Date: Thu, 19 Dec 2024 00:13:07 +0000 Subject: [PATCH 155/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1a92e1237a..cc0ef83b67 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Add shutters, windoors, etc to AI interaction whitelist. - type: Tweak - id: 7232 - time: '2024-08-28T07:39:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31564 - author: lunarcomets changes: - message: updated AI job icon @@ -3934,3 +3927,11 @@ id: 7731 time: '2024-12-18T16:31:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33776 +- author: FairlySadPanda August-Sun Eric156 + changes: + - message: Smite Cranberry is now available wherever lemon-lime soda is sold, just + for the holidays. This includes a certain jolly anomaly. + type: Add + id: 7732 + time: '2024-12-19T00:11:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33922 From f7bf694707c4a928bf6bfb83b1f0c2d20ebba440 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Thu, 19 Dec 2024 03:18:04 +0300 Subject: [PATCH 156/263] Comment LogTypes (#33497) * Comment LogTypes * Uncomment unused types --------- Co-authored-by: Winkarst <74284083+Winkarst-cpu@users.noreply.github.co> --- Content.Shared.Database/LogType.cs | 326 ++++++++++++++++++++++++++++- 1 file changed, 320 insertions(+), 6 deletions(-) diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index 91887addea..dd5091fbcf 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -3,99 +3,413 @@ namespace Content.Shared.Database; // DO NOT CHANGE THE NUMERIC VALUES OF THESE public enum LogType { - Unknown = 0, // do not use + /// + /// Test logs. DO NOT USE!!! + /// + Unknown = 0, // DamageChange = 1 + + /// + /// A player dealt damage to an entity. + /// Damaged = 2, + + /// + /// A player healed an entity. + /// Healed = 3, + + /// + /// A player slipped on an entity. + /// Slip = 4, + + /// + /// Station event was added or announced. + /// EventAnnounced = 5, + + /// + /// Game rule was added or started. + /// EventStarted = 6, EventRan = 16, + + /// + /// Game rule was stopped. + /// EventStopped = 7, + + /// + /// A player used a verb on an entity. + /// Verb = 19, + + /// + /// An evacuation shuttle was called. + /// ShuttleCalled = 8, + + /// + /// An evacuation shuttle was recalled. + /// ShuttleRecalled = 9, + + /// + /// Explosive depressurization related interactions. + /// ExplosiveDepressurization = 10, + + /// + /// A player or entity was respawned. + /// Respawn = 13, + + /// + /// A player joined station on round start. + /// RoundStartJoin = 14, + + /// + /// A player joined station after round start. + /// LateJoin = 15, + + /// + /// Chemical reactions related interactions. + /// ChemicalReaction = 17, + + /// + /// Reagent effects related interactions. + /// ReagentEffect = 18, + + /// + /// Canister valve was opened or closed. + /// CanisterValve = 20, + + /// + /// Release pressure on the canister was changed. + /// CanisterPressure = 21, + + /// + /// Canister purged its contents into the environment. + /// CanisterPurged = 22, + + /// + /// Tank was ejected from the canister. + /// CanisterTankEjected = 23, + + /// + /// Tank was inserted into the canister. + /// CanisterTankInserted = 24, + + /// + /// A player tried to disarm an entity. + /// DisarmedAction = 25, + + /// + /// A player knocked down an entity on the floor. + /// DisarmedKnockdown = 26, AttackArmedClick = 27, AttackArmedWide = 28, AttackUnarmedClick = 29, AttackUnarmedWide = 30, + + /// + /// A player interacted with an entity in his hand. + /// InteractHand = 31, + + /// + /// A player activated an entity. + /// InteractActivate = 32, + + /// + /// A player threw an entity. + /// Throw = 33, + + /// + /// Entity landed. + /// Landed = 34, + + /// + /// A thrown entity hit the other entity. + /// ThrowHit = 35, + + /// + /// A player picked up an entity. + /// Pickup = 36, + + /// + /// A player dropped an entity. + /// Drop = 37, + + /// + /// A bullet hit an entity. + /// BulletHit = 38, - ForceFeed = 40, // involuntary - Ingestion = 53, // voluntary + + /// + /// A player force-feed an entity or injected it with a solution. + /// + ForceFeed = 40, + + /// + /// A player ate an entity or injected themselves with a solution. + /// + Ingestion = 53, + + /// + /// A melee attack hit an entity. + /// MeleeHit = 41, + + /// + /// A hitscan attack hit an entity. + /// HitScanHit = 42, - Mind = 43, // Suicides, ghosting, repossession, objectives, etc. + + /// + /// Suicides, ghosting, repossession, objectives, etc. + /// + Mind = 43, + + /// + /// Explosions and explosives related interactions. + /// Explosion = 44, - Radiation = 45, // Unused + Radiation = 45, + + /// + /// Entity started or stopped taking pressure damage. + /// Barotrauma = 46, + + /// + /// Fire started or stopped. + /// Flammable = 47, + + /// + /// Entity started or stopped suffocating. + /// Asphyxiation = 48, + + /// + /// Entity started or stopped taking temperature damage. + /// Temperature = 49, Hunger = 50, Thirst = 51, + + /// + /// Entity received electrocution damage. + /// Electrocution = 52, + + /// + /// A player drew using a crayon. + /// CrayonDraw = 39, + + /// + /// A player changed pressure on atmos device. + /// AtmosPressureChanged = 54, + + /// + /// A player changed power on atmos device. + /// AtmosPowerChanged = 55, + + /// + /// A player changed transfer rate on atmos device. + /// AtmosVolumeChanged = 56, + + /// + /// A player changed filter on atmos device. + /// AtmosFilterChanged = 57, + + /// + /// A player changed ratio on atmos device. + /// AtmosRatioChanged = 58, + + /// + /// Field generator was toggled or lost field connections. + /// FieldGeneration = 59, + + /// + /// A player took ghost role. + /// GhostRoleTaken = 60, + + /// + /// OOC, IC, LOOC, etc. + /// Chat = 61, + + /// + /// A player performed some action. Like pressing eject and flash buttons on a trash bin, etc. + /// Action = 62, + + /// + /// A player used RCD. + /// RCD = 63, + + /// + /// Construction related interactions. + /// Construction = 64, + + /// + /// Triggers related interactions. + /// Trigger = 65, + + /// + /// A player tries to anchor or anchored an entity. + /// Anchor = 66, + + /// + /// A player unanchored an entity. + /// Unanchor = 67, + + /// + /// Emergency shuttle related interactions. + /// EmergencyShuttle = 68, - // haha so funny + + /// + /// A player emagged an entity. + /// Emag = 69, + + /// + /// A player was gibbed. + /// Gib = 70, + + /// + /// Identity related interactions. + /// Identity = 71, + + /// + /// A player cut a cable. + /// CableCut = 72, + + /// + /// A player purchased something from the "store". + /// StorePurchase = 73, + + /// + /// A player edited a tile using some tool. + /// LatticeCut = 74, + + /// + /// A player is equipping something on an entity or stripping it from it. + /// Stripping = 75, + + /// + /// A player caused stamina damage or entered stamina crit. + /// Stamina = 76, + + /// + /// A player's actions caused an entity spawn. + /// EntitySpawn = 77, + + /// + /// Prayers and subtle messages. + /// AdminMessage = 78, + + /// + /// Anomaly related interactions. + /// Anomaly = 79, + + /// + /// Cutting, mending and pulsing of wires. + /// WireHacking = 80, + + /// + /// Entity was teleported. + /// Teleport = 81, + + /// + /// Entity was removed in a result of something. + /// EntityDelete = 82, + + /// + /// Voting related interactions. + /// Vote = 83, + + /// + /// Entity was configured. + /// ItemConfigure = 84, + + /// + /// Device linking related interactions. + /// DeviceLinking = 85, + + /// + /// Tiles related interactions. + /// Tile = 86, /// /// A client has sent too many chat messages recently and is temporarily blocked from sending more. /// ChatRateLimited = 87, + + /// + /// A player changed temperature on atmos device. + /// AtmosTemperatureChanged = 88, + + /// + /// Something was sent over device network. Like broadcast. + /// DeviceNetwork = 89, + + /// + /// A player had a refund at the "store". + /// StoreRefund = 90, /// From 9de569d9730c0a6453caa07955a9cd9c7c030e9a Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:46:36 -0800 Subject: [PATCH 157/263] Show battery level for selected devices in Power Monitoring Console (#33854) * Use class instead of out variables * Show battery level in power monitoring console * Better color contrast for battery level + localized string * Add visualization to battery percentage * Reverts random ChatSystem.cs whitespace change * Address review * Show BatteryLevel stats in child view when selecting devices --------- Co-authored-by: Crotalus --- .../PowerMonitoringWindow.xaml.Widgets.cs | 69 +++++++++++++++ .../PowerMonitoringConsoleSystem.cs | 84 ++++++++++++------- .../SharedPowerMonitoringConsoleComponent.cs | 4 +- .../components/power-monitoring-component.ftl | 2 +- 4 files changed, 127 insertions(+), 32 deletions(-) diff --git a/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs b/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs index 3f7ccfb903..87b252e9d5 100644 --- a/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs +++ b/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs @@ -6,6 +6,7 @@ using Robust.Shared.Utility; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Numerics; +using Vector4 = Robust.Shared.Maths.Vector4; namespace Content.Client.Power; @@ -104,6 +105,26 @@ public sealed partial class PowerMonitoringWindow // Update power value // Don't use SI prefixes, just give the number in W, so that it is readily apparent which consumer is using a lot of power. button.PowerValue.Text = Loc.GetString("power-monitoring-window-button-value", ("value", Math.Round(entry.PowerValue).ToString("N0"))); + + // Update battery level if applicable + if (entry.BatteryLevel != null) + { + button.BatteryLevel.Value = entry.BatteryLevel.Value; + button.BatteryLevel.Visible = true; + + button.BatteryPercentage.Text = entry.BatteryLevel.Value.ToString("P0"); + button.BatteryPercentage.Visible = true; + + // Set progress bar color based on percentage + var color = Color.FromHsv(new Vector4(entry.BatteryLevel.Value * 0.33f, 1, 1, 1)); + + button.BatteryLevel.ForegroundStyleBoxOverride = new StyleBoxFlat { BackgroundColor = color }; + } + else + { + button.BatteryLevel.Visible = false; + button.BatteryPercentage.Visible = false; + } } private void UpdateEntrySourcesOrLoads(BoxContainer masterContainer, BoxContainer currentContainer, PowerMonitoringConsoleEntry[]? entries, SpriteSpecifier.Texture icon) @@ -443,6 +464,11 @@ public sealed class PowerMonitoringButton : Button public BoxContainer MainContainer; public TextureRect TextureRect; public Label NameLocalized; + + public ProgressBar BatteryLevel; + public PanelContainer BackgroundPanel; + public Label BatteryPercentage; + public Label PowerValue; public PowerMonitoringButton() @@ -478,6 +504,49 @@ public sealed class PowerMonitoringButton : Button MainContainer.AddChild(NameLocalized); + BatteryLevel = new ProgressBar() + { + SetWidth = 47f, + SetHeight = 20f, + Margin = new Thickness(15, 0, 0, 0), + MaxValue = 1, + Visible = false, + BackgroundStyleBoxOverride = new StyleBoxFlat { BackgroundColor = Color.Black }, + }; + + MainContainer.AddChild(BatteryLevel); + + BackgroundPanel = new PanelContainer + { + // Draw a half-transparent box over the battery level to make the text more readable. + PanelOverride = new StyleBoxFlat + { + BackgroundColor = new Color(0, 0, 0, 0.9f) + }, + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Center, + HorizontalExpand = true, + VerticalExpand = true, + // Box is undersized perfectly compared to the progress bar, so a little bit of the unaffected progress bar is visible. + SetSize = new Vector2(43f, 16f) + }; + + BatteryLevel.AddChild(BackgroundPanel); + + BatteryPercentage = new Label() + { + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Align = Label.AlignMode.Center, + SetWidth = 45f, + MinWidth = 20f, + Margin = new Thickness(10, -4, 10, 0), + ClipText = true, + Visible = false, + }; + + BackgroundPanel.AddChild(BatteryPercentage); + PowerValue = new Label() { HorizontalAlignment = HAlignment.Right, diff --git a/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs b/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs index a07d590461..0fc641ed28 100644 --- a/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs @@ -350,19 +350,20 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori continue; // Get the device power stats - var powerValue = GetPrimaryPowerValues(ent, device, out var powerSupplied, out var powerUsage, out var batteryUsage); + var powerStats = GetPowerStats(ent, device); + //, out var powerSupplied, out var powerUsage, out var batteryUsage); // Update all running totals - totalSources += powerSupplied; - totalLoads += powerUsage; - totalBatteryUsage += batteryUsage; + totalSources += powerStats.PowerSupplied; + totalLoads += powerStats.PowerUsage; + totalBatteryUsage += powerStats.BatteryUsage; // Continue on if the device is not in the current focus group if (device.Group != component.FocusGroup) continue; // Generate a new console entry with which to populate the UI - var entry = new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), device.Group, powerValue); + var entry = new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), device.Group, powerStats.PowerValue, powerStats.BatteryLevel); allEntries.Add(entry); } @@ -426,28 +427,28 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori loadsForFocus.ToArray())); } - private double GetPrimaryPowerValues(EntityUid uid, PowerMonitoringDeviceComponent device, out double powerSupplied, out double powerUsage, out double batteryUsage) + private PowerStats GetPowerStats(EntityUid uid, PowerMonitoringDeviceComponent device) { - var powerValue = 0d; - powerSupplied = 0d; - powerUsage = 0d; - batteryUsage = 0d; + var stats = new PowerStats(); if (device.Group == PowerMonitoringConsoleGroup.Generator) { // This covers most power sources if (TryComp(uid, out var supplier)) { - powerValue = supplier.CurrentSupply; - powerSupplied += powerValue; + stats.PowerValue = supplier.CurrentSupply; + stats.PowerSupplied += stats.PowerValue; } // Edge case: radiation collectors else if (TryComp(uid, out var _) && TryComp(uid, out var battery)) { - powerValue = battery.NetworkBattery.CurrentSupply; - powerSupplied += powerValue; + stats.PowerValue = battery.NetworkBattery.CurrentSupply; + stats.PowerSupplied += stats.PowerValue; + + + stats.BatteryLevel = GetBatteryLevel(uid); } } @@ -458,18 +459,20 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori if (TryComp(uid, out var battery)) { - powerValue = battery.CurrentSupply; + stats.BatteryLevel = GetBatteryLevel(uid); + + stats.PowerValue = battery.CurrentSupply; // Load due to network battery recharging - powerUsage += Math.Max(battery.CurrentReceiving - battery.CurrentSupply, 0d); + stats.PowerUsage += Math.Max(battery.CurrentReceiving - battery.CurrentSupply, 0d); // Track battery usage - batteryUsage += Math.Max(battery.CurrentSupply - battery.CurrentReceiving, 0d); + stats.BatteryUsage += Math.Max(battery.CurrentSupply - battery.CurrentReceiving, 0d); // Records loads attached to APCs if (device.Group == PowerMonitoringConsoleGroup.APC && battery.Enabled) { - powerUsage += battery.NetworkBattery.LoadingNetworkDemand; + stats.PowerUsage += battery.NetworkBattery.LoadingNetworkDemand; } } } @@ -486,16 +489,28 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori if (childDevice.IsCollectionMaster && childDevice.ChildDevices.ContainsKey(uid)) continue; - var childPowerValue = GetPrimaryPowerValues(child, childDevice, out var childPowerSupplied, out var childPowerUsage, out var childBatteryUsage); + var childResult = GetPowerStats(child, childDevice); - powerValue += childPowerValue; - powerSupplied += childPowerSupplied; - powerUsage += childPowerUsage; - batteryUsage += childBatteryUsage; + stats.PowerValue += childResult.PowerValue; + stats.PowerSupplied += childResult.PowerSupplied; + stats.PowerUsage += childResult.PowerUsage; + stats.BatteryUsage += childResult.BatteryUsage; } } - return powerValue; + return stats; + } + + private float? GetBatteryLevel(EntityUid uid) + { + if (!TryComp(uid, out var battery)) + return null; + + var effectiveMax = battery.MaxCharge; + if (effectiveMax == 0) + effectiveMax = 1; + + return battery.CurrentCharge / effectiveMax; } private void GetSourcesForNode(EntityUid uid, Node node, out List sources) @@ -532,7 +547,7 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori continue; } - indexedSources.Add(ent, new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), entDevice.Group, powerSupplier.CurrentSupply)); + indexedSources.Add(ent, new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), entDevice.Group, powerSupplier.CurrentSupply, GetBatteryLevel(ent))); } } @@ -562,7 +577,7 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori continue; } - indexedSources.Add(ent, new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), entDevice.Group, entBattery.CurrentSupply)); + indexedSources.Add(ent, new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), entDevice.Group, entBattery.CurrentSupply, GetBatteryLevel(ent))); } } @@ -609,7 +624,7 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori for (int i = 0; i < sources.Count; i++) { var entry = sources[i]; - sources[i] = new PowerMonitoringConsoleEntry(entry.NetEntity, entry.Group, entry.PowerValue * powerFraction); + sources[i] = new PowerMonitoringConsoleEntry(entry.NetEntity, entry.Group, entry.PowerValue * powerFraction, entry.BatteryLevel); } } @@ -646,7 +661,7 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori continue; } - indexedLoads.Add(ent, new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), entDevice.Group, powerConsumer.ReceivedPower)); + indexedLoads.Add(ent, new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), entDevice.Group, powerConsumer.ReceivedPower, GetBatteryLevel(ent))); } } @@ -676,7 +691,7 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori continue; } - indexedLoads.Add(ent, new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), entDevice.Group, battery.CurrentReceiving)); + indexedLoads.Add(ent, new PowerMonitoringConsoleEntry(EntityManager.GetNetEntity(ent), entDevice.Group, battery.CurrentReceiving, GetBatteryLevel(ent))); } } @@ -713,7 +728,7 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori for (int i = 0; i < indexedLoads.Values.Count; i++) { var entry = loads[i]; - loads[i] = new PowerMonitoringConsoleEntry(entry.NetEntity, entry.Group, entry.PowerValue * powerFraction); + loads[i] = new PowerMonitoringConsoleEntry(entry.NetEntity, entry.Group, entry.PowerValue * powerFraction, entry.BatteryLevel); } } @@ -990,4 +1005,13 @@ internal sealed partial class PowerMonitoringConsoleSystem : SharedPowerMonitori Dirty(uid, component); } + + private struct PowerStats + { + public double PowerValue { get; set; } + public double PowerSupplied { get; set; } + public double PowerUsage { get; set; } + public double BatteryUsage { get; set; } + public float? BatteryLevel { get; set; } + } } diff --git a/Content.Shared/Power/SharedPowerMonitoringConsoleComponent.cs b/Content.Shared/Power/SharedPowerMonitoringConsoleComponent.cs index 4d404f209c..d7e060cccd 100644 --- a/Content.Shared/Power/SharedPowerMonitoringConsoleComponent.cs +++ b/Content.Shared/Power/SharedPowerMonitoringConsoleComponent.cs @@ -102,14 +102,16 @@ public struct PowerMonitoringConsoleEntry public NetEntity NetEntity; public PowerMonitoringConsoleGroup Group; public double PowerValue; + public float? BatteryLevel; [NonSerialized] public PowerMonitoringDeviceMetaData? MetaData = null; - public PowerMonitoringConsoleEntry(NetEntity netEntity, PowerMonitoringConsoleGroup group, double powerValue = 0d) + public PowerMonitoringConsoleEntry(NetEntity netEntity, PowerMonitoringConsoleGroup group, double powerValue = 0d, float? batteryLevel = null) { NetEntity = netEntity; Group = group; PowerValue = powerValue; + BatteryLevel = batteryLevel; } } diff --git a/Resources/Locale/en-US/components/power-monitoring-component.ftl b/Resources/Locale/en-US/components/power-monitoring-component.ftl index 9433c9ea9e..3b54b400bc 100644 --- a/Resources/Locale/en-US/components/power-monitoring-component.ftl +++ b/Resources/Locale/en-US/components/power-monitoring-component.ftl @@ -22,7 +22,7 @@ power-monitoring-window-show-hv-cable = High voltage power-monitoring-window-show-mv-cable = Medium voltage power-monitoring-window-show-lv-cable = Low voltage -power-monitoring-window-flavor-left = [user@nanotrasen] $run power_net_query +power-monitoring-window-flavor-left = [user@nanotrasen] $run power_net_query power-monitoring-window-flavor-right = v1.3 power-monitoring-window-rogue-power-consumer = [color=white][font size=14][bold]! WARNING - ROGUE POWER CONSUMING DEVICE DETECTED ![/bold][/font][/color] power-monitoring-window-power-net-abnormalities = [color=white][font size=14][bold]CAUTION - ABNORMAL ACTIVITY IN POWER NET[/bold][/font][/color] From e70a3b8a21d3b803c6e3051db6914e12ca8602a1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Dec 2024 00:47:43 +0000 Subject: [PATCH 158/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cc0ef83b67..7c15eed891 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lunarcomets - changes: - - message: updated AI job icon - type: Tweak - id: 7233 - time: '2024-08-28T08:18:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31565 - author: lzk228 changes: - message: Added black suspenders for mime. @@ -3935,3 +3928,11 @@ id: 7732 time: '2024-12-19T00:11:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33922 +- author: Crotalus, ArtisticRoomba + changes: + - message: Battery levels of applicable devices are now shown in the Power Monitoring + Console! + type: Add + id: 7733 + time: '2024-12-19T00:46:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33854 From e7d5ab67ec42c55819afab9388c7c8354a5e7e80 Mon Sep 17 00:00:00 2001 From: Spanky Date: Wed, 18 Dec 2024 19:52:35 -0500 Subject: [PATCH 159/263] Omega Update (Localized Holopads) (#33946) * Omega Update (Localized Holopads) Replaced all holopads with localized versions and a couple tiny misc * Remove engi protolathe * Forgot to rename engi fax whoops --- Resources/Maps/omega.yml | 1055 +++++++++++++++++--------------------- 1 file changed, 484 insertions(+), 571 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 648fec3b38..6b9177554b 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -7,6 +7,7 @@ tilemap: 11: FloorAsteroidTile 14: FloorBar 17: FloorBlueCircuit + 4: FloorBrokenWood 29: FloorDark 33: FloorDarkMini 34: FloorDarkMono @@ -57,71 +58,71 @@ entities: chunks: -1,0: ind: -1,0 - tiles: PgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAABeQAAAAAADgAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAABHQAAAAAAeQAAAAAADgAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAADgAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAACHQAAAAAADgAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAABHQAAAAABDgAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAABHQAAAAADDgAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAADdgAAAAACHQAAAAABDgAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAAAHQAAAAADDgAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAABdgAAAAACHQAAAAABDgAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAACHQAAAAAADgAAAAADDgAAAAADWQAAAAACWQAAAAACWQAAAAADDgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABDgAAAAABWQAAAAAAWQAAAAADWQAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAA + tiles: PgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAABHQAAAAAAeQAAAAAADgAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAADHQAAAAABeQAAAAAADgAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAADgAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAABHQAAAAADDgAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABdgAAAAABHQAAAAADDgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADdgAAAAACdgAAAAABHQAAAAADDgAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAADdgAAAAADHQAAAAAADgAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAAAdgAAAAABdgAAAAACHQAAAAAADgAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAADdgAAAAACHQAAAAAADgAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAAAdgAAAAACdgAAAAABHQAAAAACDgAAAAADDgAAAAAAWQAAAAABWQAAAAACWQAAAAADDgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACDgAAAAABWQAAAAABWQAAAAABWQAAAAABDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAA version: 6 0,0: ind: 0,0 - tiles: DgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAADgAAAAADHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAALAAAAAAALAAAAAAADgAAAAAAHQAAAAABHQAAAAABHQAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADLAAAAAAALAAAAAAALAAAAAAADgAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAALAAAAAAALAAAAAAADgAAAAADHQAAAAABHQAAAAABHQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAA + tiles: DgAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAADgAAAAABHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAADgAAAAAAHQAAAAADHQAAAAACHQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAACHQAAAAADHQAAAAACHQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAALAAAAAAALAAAAAAADgAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAD version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAAgAAAAABAgAAAAABAgAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAACdgAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAANgAAAAAAHQAAAAACHQAAAAADHQAAAAAANgAAAAAAHQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAANgAAAAAAHQAAAAAAHQAAAAABUAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAA + tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABAgAAAAACAgAAAAADAgAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAANgAAAAAANgAAAAAAHQAAAAACNgAAAAAANgAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADNgAAAAAAHQAAAAABHQAAAAABHQAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAADeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAANgAAAAAAHQAAAAADHQAAAAAAUAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAA version: 6 0,1: ind: 0,1 - tiles: WQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACLwAAAAAALwAAAAAALwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACdgAAAAACdgAAAAACdgAAAAACUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAA + tiles: WQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAABLwAAAAAALwAAAAAALwAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAACdgAAAAAAdgAAAAACdgAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAHQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABaQAAAAAAeQAAAAAADgAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAADgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABDgAAAAACeQAAAAAAJAAAAAABJAAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADDgAAAAACeQAAAAAAJAAAAAACJAAAAAACJAAAAAAAJAAAAAADJAAAAAADJAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAADgAAAAADeQAAAAAAJAAAAAABJAAAAAABJAAAAAADJAAAAAAAJAAAAAAAJAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAHQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAADgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAADgAAAAADeQAAAAAAJAAAAAACJAAAAAADJAAAAAACJAAAAAABJAAAAAADJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACDgAAAAACeQAAAAAAJAAAAAAAJAAAAAAAJAAAAAADJAAAAAAAJAAAAAACJAAAAAABaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAADgAAAAADeQAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAADJAAAAAABJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: bAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAADeQAAAAAAWQAAAAADWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAOgAAAAAAHQAAAAABLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABDgAAAAAADgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAADgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAADDgAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADWQAAAAABDgAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAADgAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAADgAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAADHQAAAAADHQAAAAABDgAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAB + tiles: bAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAACLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAADgAAAAAADgAAAAABWQAAAAAAWQAAAAABWQAAAAABDgAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABDgAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAADWQAAAAACDgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAADgAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAADgAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAACHQAAAAADHQAAAAAADgAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAC version: 6 -2,1: ind: -2,1 - tiles: WQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAACeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAACdgAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAABUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAADeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAHQAAAAABeQAAAAAABwAAAAAMAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADPQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAPQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACKQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADHQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADHQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACPQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADPQAAAAAAaQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABHQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: HQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAbAAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAADdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAACOgAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAABWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABOgAAAAAAOgAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAA + tiles: HQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAbAAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADOgAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAHQAAAAADeQAAAAAAHQAAAAADOgAAAAAAOgAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAHQAAAAACOgAAAAAAHQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABOgAAAAAAOgAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAADeQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: eQAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACBwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAACBwAAAAAHeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: HQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAACaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: HQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAADaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAJBwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAEBwAAAAALBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,2: ind: 1,2 - tiles: HQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADLAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAADHQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAALAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAEeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAHBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,3: ind: 0,3 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAAANgAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACNgAAAAAAHQAAAAABNgAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAANgAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACHQAAAAACNgAAAAAAHQAAAAABHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAHBwAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAABNgAAAAAAHQAAAAADNgAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAANgAAAAAAeQAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAHQAAAAADNgAAAAAAHQAAAAADHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAIBwAAAAAMeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: eQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAABwAAAAACBwAAAAABBwAAAAAGBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: WQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAADeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAADBwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAJAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAHBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 @@ -129,79 +130,79 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: eQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAKeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADAgAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAA + tiles: eQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAgAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: WQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABNgAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABbAAAAAADbAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACNgAAAAAANgAAAAAANgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAABbAAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADEQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAWQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADNgAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAbAAAAAABbAAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACNgAAAAAANgAAAAAANgAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABbAAAAAAAbAAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADEQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABHQAAAAABeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAbAAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAADWQAAAAADbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAWQAAAAACWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAbAAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAbAAAAAABWQAAAAACbAAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAADeQAAAAAAWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABeQAAAAAAWQAAAAABWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAALwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAD + tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAB version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAMBwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAHBwAAAAAEeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACbAAAAAACbAAAAAACbAAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAABWQAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAGBwAAAAAABwAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACbAAAAAACbAAAAAADbAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADbAAAAAABbAAAAAADbAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAACeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAABwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJBwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAIeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAegAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAB + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAC version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAACIgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACIgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAC + tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAIeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACBAAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADBAAAAAACdgAAAAADdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAFdgAAAAADdgAAAAACdgAAAAADdgAAAAADBAAAAAAEBAAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACIgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAABPgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAHQAAAAAAHQAAAAADHQAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAbAAAAAAAHQAAAAADHQAAAAACHQAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAbAAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAbAAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABPgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACHQAAAAABHQAAAAABHQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADbAAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAbAAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAADgAAAAACeQAAAAAADgAAAAADDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAACDgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABIQAAAAADIQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAIQAAAAACIQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAABeQAAAAAADgAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAIQAAAAABIQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAIQAAAAABIQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAABHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADTQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADHQAAAAABHQAAAAACTQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAACBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA + tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADTQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAALBwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAADHQAAAAACTQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAIeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJeQAAAAAAaAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAC + tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAB version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABWQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACWQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACWQAAAAACWQAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,0: ind: -4,0 @@ -209,11 +210,11 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABWQAAAAABWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAKeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAAABwAAAAAEegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAALeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -233,7 +234,7 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAaAAAAAAAAgAAAAADWQAAAAABWQAAAAACWQAAAAABAgAAAAACWQAAAAAAWQAAAAAAWQAAAAACAgAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACaAAAAAAAAgAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 4,-1: ind: 4,-1 @@ -241,7 +242,7 @@ entities: version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 @@ -261,7 +262,7 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAJ version: 6 -5,0: ind: -5,0 @@ -3418,8 +3419,6 @@ entities: 0: 46079 3,4: 0: 56793 - 4,0: - 0: 24296 4,1: 0: 56655 4,2: @@ -3772,8 +3771,10 @@ entities: 8,4: 0: 17 1: 14 + 4,0: + 0: 20200 5,0: - 0: 49502 + 0: 49500 5,2: 0: 7950 5,-1: @@ -3892,7 +3893,7 @@ entities: 9,-3: 1: 4368 10,-2: - 1: 3696 + 1: 3184 0: 4096 10,-1: 0: 4095 @@ -4386,12 +4387,12 @@ entities: -9,-11: 0: 12288 -16,0: - 1: 62227 + 1: 4369 3: 3276 -17,0: 1: 8930 -16,1: - 1: 58999 + 1: 57907 0: 2184 -17,1: 1: 43746 @@ -4400,8 +4401,6 @@ entities: 3: 34944 -17,2: 1: 34986 - -16,-1: - 1: 57344 -16,3: 1: 58594 -15,0: @@ -5656,7 +5655,7 @@ entities: - 12212 - 13522 - 7908 - - 5174 + - 13814 - uid: 13204 components: - type: Transform @@ -7484,15 +7483,6 @@ entities: - type: DeviceNetwork deviceLists: - 13204 - - uid: 5174 - components: - - type: Transform - pos: -35.5,15.5 - parent: 4812 - - type: DeviceNetwork - deviceLists: - - 13156 - - 13155 - uid: 8805 components: - type: Transform @@ -7886,6 +7876,14 @@ entities: - type: DeviceNetwork deviceLists: - 13677 + - uid: 13814 + components: + - type: Transform + pos: -34.5,16.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 - proto: AltarSpawner entities: - uid: 4008 @@ -11751,11 +11749,6 @@ entities: - type: Transform pos: -25.5,32.5 parent: 4812 - - uid: 8392 - components: - - type: Transform - pos: -25.5,29.5 - parent: 4812 - uid: 11352 components: - type: Transform @@ -12146,6 +12139,12 @@ entities: parent: 4812 - proto: ButtonFrameCaution entities: + - uid: 8392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,28.5 + parent: 4812 - uid: 9073 components: - type: Transform @@ -12176,6 +12175,11 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,11.5 parent: 4812 + - uid: 13813 + components: + - type: Transform + pos: -20.5,26.5 + parent: 4812 - proto: CableApcExtension entities: - uid: 258 @@ -34662,6 +34666,12 @@ entities: rot: 3.141592653589793 rad pos: 5.5,31.5 parent: 4812 + - uid: 4482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,29.5 + parent: 4812 - uid: 10854 components: - type: Transform @@ -38810,6 +38820,8 @@ entities: - type: Transform pos: -41.5,-7.5 parent: 4812 + - type: FaxMachine + name: Engineering - proto: FaxMachineCaptain entities: - uid: 7298 @@ -39423,7 +39435,6 @@ entities: - type: DeviceList devices: - 12212 - - 5174 - uid: 13681 components: - type: Transform @@ -60731,505 +60742,356 @@ entities: - type: Transform pos: -51.5,-12.5 parent: 4812 -- proto: Holopad +- proto: HolopadAiCore entities: - - uid: 3705 - components: - - type: MetaData - name: holopad (Law Office) - - type: Transform - pos: -17.5,16.5 - parent: 4812 - - type: Label - currentLabel: Law Office - - type: NameModifier - baseName: holopad - - uid: 4482 - components: - - type: MetaData - name: holopad (Captain's Office) - - type: Transform - pos: -12.5,24.5 - parent: 4812 - - type: Label - currentLabel: Captain's Office - - type: NameModifier - baseName: holopad - - uid: 11928 - components: - - type: MetaData - name: holopad (Bar) - - type: Transform - pos: 3.5,7.5 - parent: 4812 - - type: Label - currentLabel: Bar - - type: NameModifier - baseName: holopad - - uid: 13760 - components: - - type: MetaData - name: holopad (Cargo Bay) - - type: Transform - pos: 16.5,19.5 - parent: 4812 - - type: Label - currentLabel: Cargo Bay - - type: NameModifier - baseName: holopad - - uid: 13762 - components: - - type: MetaData - name: holopad (Bridge) - - type: Transform - pos: -0.5,31.5 - parent: 4812 - - type: Label - currentLabel: Bridge - - type: NameModifier - baseName: holopad - - uid: 13763 - components: - - type: MetaData - name: holopad (HoS's Office) - - type: Transform - pos: -20.5,24.5 - parent: 4812 - - type: Label - currentLabel: HoS's Office - - type: NameModifier - baseName: holopad - - uid: 13764 - components: - - type: MetaData - name: holopad (Perma) - - type: Transform - pos: -29.5,29.5 - parent: 4812 - - type: Label - currentLabel: Perma - - type: NameModifier - baseName: holopad - - uid: 13765 - components: - - type: MetaData - name: holopad (Security Brig) - - type: Transform - pos: -30.5,15.5 - parent: 4812 - - type: Label - currentLabel: Security Brig - - type: NameModifier - baseName: holopad - - uid: 13766 - components: - - type: MetaData - name: holopad (Atmospherics Gear Room) - - type: Transform - pos: -31.5,2.5 - parent: 4812 - - type: Label - currentLabel: Atmospherics Gear Room - - type: NameModifier - baseName: holopad - - uid: 13767 - components: - - type: MetaData - name: holopad (Engineering Gear Room) - - type: Transform - pos: -31.5,-6.5 - parent: 4812 - - type: Label - currentLabel: Engineering Gear Room - - type: NameModifier - baseName: holopad - - uid: 13768 - components: - - type: MetaData - name: holopad (Atmospherics Bay) - - type: Transform - pos: -50.5,8.5 - parent: 4812 - - type: Label - currentLabel: Atmospherics Bay - - type: NameModifier - baseName: holopad - - uid: 13769 - components: - - type: MetaData - name: holopad (Engineering Break Room) - - type: Transform - pos: -40.5,-7.5 - parent: 4812 - - type: Label - currentLabel: Engineering Break Room - - type: NameModifier - baseName: holopad - - uid: 13770 - components: - - type: MetaData - name: holopad (CE's Office) - - type: Transform - pos: -50.5,-7.5 - parent: 4812 - - type: Label - currentLabel: CE's Office - - type: NameModifier - baseName: holopad - - uid: 13771 - components: - - type: MetaData - name: holopad (Library) - - type: Transform - pos: -27.5,-16.5 - parent: 4812 - - type: Label - currentLabel: Library - - type: NameModifier - baseName: holopad - - uid: 13772 - components: - - type: MetaData - name: holopad (CMO's Office) - - type: Transform - pos: -25.5,-27.5 - parent: 4812 - - type: Label - currentLabel: CMO's Office - - type: NameModifier - baseName: holopad - - uid: 13773 - components: - - type: MetaData - name: holopad (Chemistry) - - type: Transform - pos: -11.5,-15.5 - parent: 4812 - - type: Label - currentLabel: Chemistry - - type: NameModifier - baseName: holopad - - uid: 13777 - components: - - type: MetaData - name: holopad (Lounge) - - type: Transform - pos: -2.5,-17.5 - parent: 4812 - - type: Label - currentLabel: Lounge - - type: NameModifier - baseName: holopad - - uid: 13778 - components: - - type: MetaData - name: holopad (Medical Bay) - - type: Transform - pos: -16.5,-21.5 - parent: 4812 - - type: Label - currentLabel: Medical Bay - - type: NameModifier - baseName: holopad - - uid: 13779 - components: - - type: MetaData - name: holopad (Security Arrivals Checkpoint) - - type: Transform - pos: -2.5,-27.5 - parent: 4812 - - type: Label - currentLabel: Security Arrivals Checkpoint - - type: NameModifier - baseName: holopad - - uid: 13780 - components: - - type: MetaData - name: holopad (Atmospherics TEG) - - type: Transform - pos: -56.5,3.5 - parent: 4812 - - type: Label - currentLabel: Atmospherics TEG - - type: NameModifier - baseName: holopad - - uid: 13781 - components: - - type: MetaData - name: holopad (Botany) - - type: Transform - pos: -10.5,-7.5 - parent: 4812 - - type: Label - currentLabel: Botany - - type: NameModifier - baseName: holopad - - uid: 13782 - components: - - type: MetaData - name: holopad (Theater) - - type: Transform - pos: -9.5,6.5 - parent: 4812 - - type: Label - currentLabel: Theater - - type: NameModifier - baseName: holopad - - uid: 13783 - components: - - type: MetaData - name: holopad (QM's Office) - - type: Transform - pos: 16.5,31.5 - parent: 4812 - - type: Label - currentLabel: QM's Office - - type: NameModifier - baseName: holopad - - uid: 13784 - components: - - type: MetaData - name: holopad (Theater Office) - - type: Transform - pos: -9.5,0.5 - parent: 4812 - - type: Label - currentLabel: Theater Office - - type: NameModifier - baseName: holopad - - uid: 13786 - components: - - type: MetaData - name: holopad (Security EVAC Checkpoint) - - type: Transform - pos: 29.5,3.5 - parent: 4812 - - type: Label - currentLabel: Security EVAC Checkpoint - - type: NameModifier - baseName: holopad - - uid: 13787 - components: - - type: MetaData - name: holopad (Detective's Office) - - type: Transform - pos: 20.5,-16.5 - parent: 4812 - - type: Label - currentLabel: Detective's Office - - type: NameModifier - baseName: holopad - - uid: 13789 - components: - - type: MetaData - name: holopad (Science Xenoarchaeology) - - type: Transform - pos: 23.5,-25.5 - parent: 4812 - - type: Label - currentLabel: Science Xenoarchaeology - - type: NameModifier - baseName: holopad - - uid: 13790 - components: - - type: MetaData - name: holopad (Security Gear Room) - - type: Transform - pos: -37.5,11.5 - parent: 4812 - - type: Label - currentLabel: Security Gear Room - - type: NameModifier - baseName: holopad - - uid: 13791 - components: - - type: MetaData - name: holopad (Science RND) - - type: Transform - pos: 6.5,-15.5 - parent: 4812 - - type: Label - currentLabel: Science RND - - type: NameModifier - baseName: holopad - - uid: 13792 - components: - - type: MetaData - name: holopad (Janitorial) - - type: Transform - pos: -22.5,-6.5 - parent: 4812 - - type: Label - currentLabel: Janitorial - - type: NameModifier - baseName: holopad - - uid: 13793 - components: - - type: MetaData - name: holopad (Vault) - - type: Transform - pos: -2.5,22.5 - parent: 4812 - - type: Label - currentLabel: Vault - - type: NameModifier - baseName: holopad - - uid: 13795 - components: - - type: MetaData - name: holopad (RD's Office) - - type: Transform - pos: 27.5,-18.5 - parent: 4812 - - type: Label - currentLabel: RD's Office - - type: NameModifier - baseName: holopad - - uid: 13796 - components: - - type: MetaData - name: holopad (Science Anomaly Lab) - - type: Transform - pos: 33.5,-27.5 - parent: 4812 - - type: Label - currentLabel: Science Anomaly Lab - - type: NameModifier - baseName: holopad - uid: 13797 components: - - type: MetaData - name: holopad (Medical Morgue) - - type: Transform - pos: -19.5,-15.5 - parent: 4812 - - type: Label - currentLabel: Medical Morgue - - type: NameModifier - baseName: holopad - - uid: 13798 - components: - - type: MetaData - name: holopad (Medical Paramedic) - - type: Transform - pos: -9.5,-26.5 - parent: 4812 - - type: Label - currentLabel: Medical Paramedic - - type: NameModifier - baseName: holopad - - uid: 13799 - components: - - type: MetaData - name: holopad (AI Upload) - - type: Transform - pos: 6.5,46.5 - parent: 4812 - - type: Label - currentLabel: AI Upload - - type: NameModifier - baseName: holopad - - uid: 13800 - components: - - type: MetaData - name: holopad (AI Core) - type: Transform pos: 10.5,50.5 parent: 4812 - - type: Label - currentLabel: AI Core - - type: NameModifier - baseName: holopad - - uid: 13801 +- proto: HolopadAiUpload + entities: + - uid: 13796 components: - - type: MetaData - name: holopad (Medical Virology) - type: Transform - pos: -36.5,-34.5 + pos: 6.5,46.5 parent: 4812 - - type: Label - currentLabel: Medical Virology - - type: NameModifier - baseName: holopad - - uid: 13802 - components: - - type: MetaData - name: holopad (HoP's Office) - - type: Transform - pos: 8.5,25.5 - parent: 4812 - - type: Label - currentLabel: HoP's Office - - type: NameModifier - baseName: holopad - - uid: 13803 - components: - - type: MetaData - name: holopad (Tool Room) - - type: Transform - pos: -17.5,10.5 - parent: 4812 - - type: Label - currentLabel: Tool Room - - type: NameModifier - baseName: holopad +- proto: HolopadCargoBayLongRange + entities: - uid: 13809 components: - - type: MetaData - name: holopad (Chapel) - - type: Transform - pos: -17.5,-34.5 - parent: 4812 - - type: Label - currentLabel: Chapel - - type: NameModifier - baseName: holopad - - uid: 13811 - components: - - type: MetaData - name: holopad (Kitchen) - - type: Transform - pos: 4.5,-2.5 - parent: 4812 - - type: Label - currentLabel: Kitchen - - type: NameModifier - baseName: holopad - - uid: 13813 - components: - - type: MetaData - name: holopad (Science Robotics) - - type: Transform - pos: 5.5,-26.5 - parent: 4812 - - type: Label - currentLabel: Science Robotics - - type: NameModifier - baseName: holopad -- proto: HolopadLongRange - entities: - - uid: 13758 - components: - - type: MetaData - name: long-range holopad (Station Cargo) - type: Transform pos: 17.5,26.5 parent: 4812 - - type: Label - currentLabel: Station Cargo - - type: NameModifier - baseName: long-range holopad - - uid: 13761 +- proto: HolopadCargoFront + entities: + - uid: 11928 + components: + - type: Transform + pos: 16.5,19.5 + parent: 4812 +- proto: HolopadCargoSalvageBay + entities: + - uid: 13818 + components: + - type: Transform + pos: 25.5,15.5 + parent: 4812 +- proto: HolopadCommandBridge + entities: + - uid: 13758 + components: + - type: Transform + pos: -0.5,31.5 + parent: 4812 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 13811 components: - - type: MetaData - name: long-range holopad (Station Bridge) - type: Transform pos: -4.5,31.5 parent: 4812 - - type: Label - currentLabel: Station Bridge - - type: NameModifier - baseName: long-range holopad +- proto: HolopadCommandCaptain + entities: + - uid: 8165 + components: + - type: Transform + pos: -12.5,24.5 + parent: 4812 +- proto: HolopadCommandCe + entities: + - uid: 13767 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 4812 +- proto: HolopadCommandCmo + entities: + - uid: 13769 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 4812 +- proto: HolopadCommandHop + entities: + - uid: 13799 + components: + - type: Transform + pos: 8.5,25.5 + parent: 4812 +- proto: HolopadCommandHos + entities: + - uid: 13760 + components: + - type: Transform + pos: -20.5,24.5 + parent: 4812 +- proto: HolopadCommandQm + entities: + - uid: 13780 + components: + - type: Transform + pos: 16.5,31.5 + parent: 4812 +- proto: HolopadCommandRd + entities: + - uid: 13791 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 4812 +- proto: HolopadCommandVault + entities: + - uid: 13790 + components: + - type: Transform + pos: -2.5,22.5 + parent: 4812 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 13763 + components: + - type: Transform + pos: -31.5,2.5 + parent: 4812 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 13765 + components: + - type: Transform + pos: -50.5,8.5 + parent: 4812 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 13777 + components: + - type: Transform + pos: -56.5,3.5 + parent: 4812 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 13766 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 4812 +- proto: HolopadEngineeringFront + entities: + - uid: 13764 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 4812 +- proto: HolopadEngineeringTechVault + entities: + - uid: 13782 + components: + - type: Transform + pos: 23.5,4.5 + parent: 4812 +- proto: HolopadGeneralArrivals + entities: + - uid: 13817 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 4812 +- proto: HolopadGeneralEvac + entities: + - uid: 13816 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 4812 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 13815 + components: + - type: Transform + pos: 7.5,17.5 + parent: 4812 +- proto: HolopadGeneralLounge + entities: + - uid: 13771 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 4812 +- proto: HolopadGeneralTheater + entities: + - uid: 13779 + components: + - type: Transform + pos: -9.5,6.5 + parent: 4812 +- proto: HolopadGeneralTools + entities: + - uid: 13800 + components: + - type: Transform + pos: -17.5,10.5 + parent: 4812 +- proto: HolopadMedicalChemistry + entities: + - uid: 13770 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 4812 +- proto: HolopadMedicalMedbay + entities: + - uid: 13772 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 4812 +- proto: HolopadMedicalMorgue + entities: + - uid: 13793 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 4812 +- proto: HolopadMedicalParamed + entities: + - uid: 13795 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 4812 +- proto: HolopadMedicalSurgery + entities: + - uid: 13773 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 4812 +- proto: HolopadMedicalVirology + entities: + - uid: 13798 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 4812 +- proto: HolopadScienceAnomaly + entities: + - uid: 13792 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 4812 +- proto: HolopadScienceArtifact + entities: + - uid: 13784 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 4812 +- proto: HolopadScienceRnd + entities: + - uid: 13787 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 4812 +- proto: HolopadScienceRobotics + entities: + - uid: 13803 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 4812 +- proto: HolopadSecurityBreakroom + entities: + - uid: 13786 + components: + - type: Transform + pos: -37.5,11.5 + parent: 4812 +- proto: HolopadSecurityBrig + entities: + - uid: 13762 + components: + - type: Transform + pos: -30.5,15.5 + parent: 4812 +- proto: HolopadSecurityDetective + entities: + - uid: 13783 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 4812 +- proto: HolopadSecurityLawyer + entities: + - uid: 5174 + components: + - type: Transform + pos: -17.5,16.5 + parent: 4812 +- proto: HolopadSecurityPerma + entities: + - uid: 13761 + components: + - type: Transform + pos: -29.5,29.5 + parent: 4812 +- proto: HolopadSecurityWarden + entities: + - uid: 3705 + components: + - type: Transform + pos: -35.5,15.5 + parent: 4812 +- proto: HolopadServiceBar + entities: + - uid: 13820 + components: + - type: Transform + pos: 3.5,6.5 + parent: 4812 +- proto: HolopadServiceBotany + entities: + - uid: 13778 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 4812 +- proto: HolopadServiceChapel + entities: + - uid: 13801 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 4812 +- proto: HolopadServiceClownMime + entities: + - uid: 13781 + components: + - type: Transform + pos: -9.5,0.5 + parent: 4812 +- proto: HolopadServiceJanitor + entities: + - uid: 13789 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 4812 +- proto: HolopadServiceKitchen + entities: + - uid: 13802 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 4812 +- proto: HolopadServiceLibrary + entities: + - uid: 13768 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 4812 - proto: HospitalCurtainsOpen entities: - uid: 3228 @@ -62157,6 +62019,39 @@ entities: - Pressed: Toggle 13775: - Pressed: Toggle +- proto: LockableButtonHeadOfSecurity + entities: + - uid: 13826 + components: + - type: Transform + pos: -20.5,26.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 8153: + - Pressed: Toggle + 8160: + - Pressed: Toggle + 8161: + - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 13825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,28.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 13821: + - Pressed: Toggle + 13822: + - Pressed: Toggle + 13823: + - Pressed: Toggle + 13824: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 9571 @@ -63128,6 +63023,13 @@ entities: - type: Transform pos: 8.48969,29.428799 parent: 4812 +- proto: MaterialWoodPlank + entities: + - uid: 13819 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 4812 - proto: MatterBinStockPart entities: - uid: 6200 @@ -67214,18 +67116,6 @@ entities: - Plastic - Wood - Gold - - uid: 10699 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - proto: ProtolatheMachineCircuitboard entities: - uid: 3951 @@ -71343,6 +71233,27 @@ entities: - type: Transform pos: -48.5,-10.5 parent: 4812 + - uid: 13821 + components: + - type: Transform + pos: -29.5,33.5 + parent: 4812 + - uid: 13822 + components: + - type: Transform + pos: -28.5,33.5 + parent: 4812 + - uid: 13823 + components: + - type: Transform + pos: -27.5,33.5 + parent: 4812 + - uid: 13824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,31.5 + parent: 4812 - proto: ShuttleConsoleCircuitboard entities: - uid: 10959 @@ -71488,19 +71399,6 @@ entities: - Pressed: Toggle 5573: - Pressed: Toggle - - uid: 8165 - components: - - type: Transform - pos: -20.5,26.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 8160: - - Pressed: Toggle - 8153: - - Pressed: Toggle - 8161: - - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 4413 @@ -76591,6 +76489,11 @@ entities: - type: Transform pos: -48.5,-8.5 parent: 4812 + - uid: 10699 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 4812 - uid: 10703 components: - type: Transform @@ -77386,6 +77289,11 @@ entities: - type: Transform pos: -16.515034,8.474278 parent: 4812 + - uid: 13827 + components: + - type: Transform + pos: -28.524622,-6.0613008 + parent: 4812 - proto: ToolboxEmergencyFilled entities: - uid: 4541 @@ -77442,6 +77350,11 @@ entities: - type: Transform pos: 26.489439,14.7007885 parent: 4812 + - uid: 13828 + components: + - type: Transform + pos: -28.524622,-6.3635936 + parent: 4812 - proto: TorsoHuman entities: - uid: 12423 From 943be3e75c466eafae91463ef6e7d91a28b60d36 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Wed, 18 Dec 2024 19:52:46 -0500 Subject: [PATCH 160/263] Amber Statio - Localized Holopads and Balance Updates (#33948) * Added loc versions of holopads to Amber, and made some adjustments given Acorn's feedback * fixed the name of the gameroom * Fixed it in the map file --- Resources/Locale/en-US/holopad/holopad.ftl | 7 +- Resources/Maps/Shuttles/emergency_amber.yml | 8 +- Resources/Maps/amber.yml | 2942 +++++++++-------- .../Entities/Structures/Machines/holopad.yml | 42 +- 4 files changed, 1600 insertions(+), 1399 deletions(-) diff --git a/Resources/Locale/en-US/holopad/holopad.ftl b/Resources/Locale/en-US/holopad/holopad.ftl index 214919d3dd..4c2d92e253 100644 --- a/Resources/Locale/en-US/holopad/holopad.ftl +++ b/Resources/Locale/en-US/holopad/holopad.ftl @@ -101,6 +101,8 @@ holopad-engineering-breakroom = Engineering - Breakroom holopad-engineering-front = Engineering - Front holopad-engineering-telecoms = Engineering - Telecoms holopad-engineering-tech-vault = Engineering - Tech Vault +holopad-engineering-ame = Engineering - AME +holopad-engineering-power = Engineering - Power # Security holopad-security-front = Security - Front @@ -113,6 +115,8 @@ holopad-security-perma = Security - Perma holopad-security-courtroom = Security - Courtroom holopad-security-lawyer = Security - Lawyer holopad-security-armory = Security - Armory +holopad-security-locker-room = Security - Locker Room +holopad-security-brig-med = Security - Brig Med # Service holopad-service-janitor = Service - Janitor @@ -128,6 +132,7 @@ holopad-service-clown = Service - Clown holopad-service-musician = Service - Musician holopad-service-mime = Service - Mime holopad-service-clown-mime = Service - Clown/Mime +holopad-service-gameroom = Service - Game Room # AI holopad-ai-core = AI - Core @@ -142,4 +147,4 @@ holopad-station-bridge = Station - Bridge holopad-station-cargo-bay = Station - Cargo Bay # CentComm -holopad-centcomm-evac = CentComm - Evacuation Shuttle \ No newline at end of file +holopad-centcomm-evac = CentComm - Evacuation Shuttle diff --git a/Resources/Maps/Shuttles/emergency_amber.yml b/Resources/Maps/Shuttles/emergency_amber.yml index 6c159b4ab5..63b5b8fc64 100644 --- a/Resources/Maps/Shuttles/emergency_amber.yml +++ b/Resources/Maps/Shuttles/emergency_amber.yml @@ -3202,19 +3202,13 @@ entities: - type: Transform pos: -3.584198,-9.54459 parent: 1 -- proto: HolopadLongRange +- proto: HolopadCentCommEvacShuttle entities: - uid: 438 components: - - type: MetaData - name: long-range holopad (Escape Shuttle) - type: Transform pos: 1.5,7.5 parent: 1 - - type: Label - currentLabel: Escape Shuttle - - type: NameModifier - baseName: long-range holopad - proto: HoloprojectorSecurity entities: - uid: 496 diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index 3ff3d0d16d..81e2feea9a 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -75,59 +75,59 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: CQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAACDwAAAAABDwAAAAABDwAAAAADDwAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADDwAAAAACDwAAAAABDwAAAAAADwAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABDwAAAAAADwAAAAACDwAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAABDwAAAAABDwAAAAACDwAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAADGgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDwAAAAADDwAAAAAADwAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACGgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABDwAAAAADDwAAAAADDwAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAABDwAAAAABDwAAAAADDwAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABGgAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADwAAAAACDwAAAAABDwAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAAAGgAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: CQAAAAADCQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAABCQAAAAADCQAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAADCQAAAAADCQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: IwAAAAABIwAAAAAAIwAAAAABIwAAAAABIwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADIwAAAAADIwAAAAAAIwAAAAACIwAAAAADIwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACDgAAAAAAHAAAAAADHAAAAAABIwAAAAADIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAHAAAAAABHAAAAAAAIwAAAAADIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGgAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACIwAAAAABIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABHAAAAAADIwAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAABIwAAAAABIwAAAAACIwAAAAAAIwAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAIwAAAAABIwAAAAACAAAAAAAAAAAAAAAAIwAAAAACIwAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAABHAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACHAAAAAADIwAAAAACIwAAAAABAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACHAAAAAADKQAAAAAAKwAAAAAAKwAAAAACKwAAAAAADgAAAAAACQAAAAACHAAAAAACDgAAAAAAHAAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAACHAAAAAABDgAAAAAAKwAAAAABKwAAAAABKwAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAACCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAA + tiles: IwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADIwAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABIwAAAAACIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHAAAAAABHAAAAAABIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGgAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAABIwAAAAAAIwAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADHAAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAIIwAAAAADIwAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABHAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAAHAAAAAABIwAAAAACIwAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAAAHAAAAAACKQAAAAAAKwAAAAABKwAAAAAAKwAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAAHAAAAAABIwAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAAAHAAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAB version: 6 -1,-4: ind: -1,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAIwAAAAACIwAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADIwAAAAAAIwAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABIwAAAAADIwAAAAAAIwAAAAADIwAAAAAAIwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAA + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAIwAAAAABIwAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAADIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAB version: 6 -1,-5: ind: -1,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: CQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAMAAAAAADMAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAMAAAAAADMAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAMAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADHAAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACLwAAAAABLwAAAAADLwAAAAABLwAAAAAALwAAAAABLwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAABLwAAAAAALwAAAAACLwAAAAADLwAAAAACLwAAAAABLwAAAAADAAAAAAAILwAAAAADLwAAAAAALwAAAAABAAAAAAAFAAAAAAAAAAAAAAAALwAAAAABLwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAABAAAAAAAJLwAAAAACLwAAAAAALwAAAAABAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAALwAAAAABLwAAAAACLwAAAAAAAAAAAAABAAAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAAAAAAAALwAAAAABLwAAAAADLwAAAAABAAAAAAAAAAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAMAAAAAAAMAAAAAAEMAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACLwAAAAABLwAAAAACLwAAAAABLwAAAAABLwAAAAABLwAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAACLwAAAAADAAAAAAAHLwAAAAABLwAAAAACLwAAAAADAAAAAAABAAAAAAAAAAAAAAAALwAAAAAALwAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABAAAAAAAALwAAAAACLwAAAAACLwAAAAACAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAADDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAAAAAAAKLwAAAAACLwAAAAACLwAAAAADAAAAAAAIAAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAALwAAAAAALwAAAAACLwAAAAABAAAAAAABAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADAAAAAAAALwAAAAABLwAAAAADLwAAAAAAAAAAAAAAAAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAALwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAABCQAAAAAACQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACCQAAAAABCQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AAAAAAAALwAAAAADLwAAAAACLwAAAAACAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACAAAAAAACLwAAAAABLwAAAAADLwAAAAABAAAAAAAAAAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAAHAAAAAAACQAAAAACCQAAAAABDgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAAAMQAAAAABMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADCQAAAAAACQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: LAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAACQAAAAAACQAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABLgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADLgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACLgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAABLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACDgAAAAAACQAAAAADCQAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAAACQAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAACQAAAAADCQAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABCQAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAABCQAAAAAB + tiles: LAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAADLgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAALAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAACCQAAAAABHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADCQAAAAACCQAAAAACCQAAAAADHAAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACQAAAAAC version: 6 -2,-2: ind: -2,-2 - tiles: MwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAAAMwAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAANwAAAAACNwAAAAABNwAAAAABNwAAAAABCQAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAANwAAAAABNwAAAAACNwAAAAADNwAAAAABDgAAAAAADgAAAAAAMwAAAAACDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAADDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAOAAAAAADOAAAAAACOAAAAAADOAAAAAABOAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABOAAAAAABOAAAAAADOAAAAAACOAAAAAADOAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADOAAAAAADHAAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAADLAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAAD + tiles: MwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAANwAAAAAANwAAAAABNwAAAAACNwAAAAACCQAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAABMwAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAANwAAAAADNwAAAAADNwAAAAAANwAAAAABDgAAAAAADgAAAAAAMwAAAAACDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAABOAAAAAACDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAAOAAAAAABOAAAAAADOAAAAAABOAAAAAAAOAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAADOAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAABOAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: DgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAABHAAAAAAAIwAAAAABIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAABIwAAAAADIwAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADDgAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABDgAAAAAAHAAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAADHAAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAABMwAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAADCQAAAAAAHAAAAAACHAAAAAABHAAAAAACMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAAHAAAAAAD + tiles: DgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABIwAAAAABIwAAAAACIwAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAAIwAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAACDgAAAAAAHAAAAAACIwAAAAAAIwAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAACDgAAAAAAHAAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAACQAAAAACHAAAAAAAHAAAAAAAHAAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAAAMwAAAAADCQAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAADCQAAAAABHAAAAAABHAAAAAAAHAAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAAD version: 6 -2,-4: ind: -2,-4 - tiles: CQAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAAAOQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAAOQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAAHAAAAAACHAAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAADIwAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAADDgAAAAAAIwAAAAACIwAAAAAD + tiles: CQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAOQAAAAADOQAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAAIwAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAHAAAAAACHAAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAACIwAAAAACIwAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAACIwAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAIwAAAAADIwAAAAAD version: 6 -2,-5: ind: -2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: DgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAACDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAADMwAAAAAAMwAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABIwAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAACMwAAAAAAMwAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAACDgAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAA + tiles: DgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAACMwAAAAABMwAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAACHAAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAAAMwAAAAADMwAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAIwAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAF version: 6 -2,1: ind: -2,1 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAJDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAIDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAEAAAAAAAAAAAAAAACDgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAMAAAAAAAAAAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAA version: 6 -2,2: ind: -2,2 @@ -135,19 +135,19 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACHAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAADCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAAHAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAADCQAAAAAACQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: CQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAADMwAAAAAADgAAAAAAHAAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAAADgAAAAAAHAAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADDgAAAAAAHAAAAAADLgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAACDgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAABLgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAAADgAAAAAAHAAAAAACLgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACDgAAAAAAHAAAAAABLgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAACMwAAAAABMwAAAAABDgAAAAAAHAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAADLAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: LgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAADLgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACMwAAAAABMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAABDgAAAAAAIwAAAAADIwAAAAACIwAAAAAAMwAAAAADMwAAAAAADgAAAAAAMwAAAAABMwAAAAACAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHMwAAAAAAMwAAAAADDgAAAAAAMQAAAAABMQAAAAADMQAAAAACLgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAADDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACLgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACLgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAAMwAAAAACMwAAAAABMwAAAAACDgAAAAAADgAAAAAAMwAAAAABDgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAADDgAAAAAAMwAAAAABMwAAAAABMwAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADMwAAAAACMwAAAAADMwAAAAABDgAAAAAAMwAAAAABMwAAAAACMwAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAA + tiles: LgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAADLgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAACDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAMwAAAAADMwAAAAAADgAAAAAAMwAAAAADMwAAAAABAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAMMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABAAAAAAAHAAAAAAAEAAAAAAAAAAAAAAAEAAAAAAAAMwAAAAADMwAAAAADDgAAAAAAMQAAAAABMQAAAAAAMQAAAAABLgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAADDgAAAAAAMwAAAAACMwAAAAADMwAAAAABLgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAMwAAAAABMwAAAAACMwAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAABLgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAMwAAAAACMwAAAAADMwAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAACLgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABMwAAAAADMwAAAAADMwAAAAADDgAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABGgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABGgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-5: ind: -3,-5 @@ -155,11 +155,11 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAACMQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAACDgAAAAAAMwAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAADMQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 -3,2: ind: -3,2 @@ -167,15 +167,15 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: HAAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HAAAAAADDgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAAADgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAACCQAAAAABDgAAAAAA version: 6 -4,-4: ind: -4,-4 @@ -183,7 +183,7 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -199,31 +199,31 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAACDgAAAAAAPAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAFPAAAAAABIwAAAAABPAAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAAHAAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAMAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAEDgAAAAAAAAAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAABPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAABPQAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADDgAAAAAAPAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAFPAAAAAACIwAAAAABPAAAAAAGDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADHAAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAMAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAAAAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAADPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAACDgAAAAAAHAAAAAAAPQAAAAAB version: 6 0,-2: ind: 0,-2 - tiles: IQAAAAAAIQAAAAABDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDwAAAAABDwAAAAADDwAAAAABCQAAAAABHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAABCQAAAAACCQAAAAAADwAAAAAAMgAAAAAADwAAAAADCQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDwAAAAAADwAAAAACDwAAAAAACQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: IQAAAAAAIQAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADwAAAAADDwAAAAADDwAAAAAACQAAAAABHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAACCQAAAAADDwAAAAABMgAAAAAADwAAAAADCQAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADwAAAAABDwAAAAACDwAAAAADCQAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: CQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAABIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAACIwAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAAAAAAAAFDgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIQAAAAAAIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACIQAAAAABDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAACIQAAAAACIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAB + tiles: CQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAAAAAAAAADgAAAAAADgAAAAAAIwAAAAADGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAACIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIQAAAAACIQAAAAADDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAACDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADIQAAAAADIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAB version: 6 0,-4: ind: 0,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAAMQAAAAACMQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAAMQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAAC + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAAMQAAAAAAMQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAMQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAC version: 6 0,-5: ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAA version: 6 0,0: ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAAMAAAAAAIDgAAAAAADgAAAAAAMAAAAAAHDgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAAMAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABPQAAAAACLAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAADOwAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADOwAAAAAAOwAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAAAPQAAAAABLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABLwAAAAABLwAAAAADLwAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAABLwAAAAABLwAAAAACCQAAAAAALwAAAAABLwAAAAAALwAAAAADDgAAAAAALwAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAKMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACPQAAAAACLAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACOwAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABOwAAAAAAOwAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAALMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADPQAAAAACLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADLwAAAAADLwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAABCQAAAAAALwAAAAABLwAAAAAALwAAAAADDgAAAAAALwAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAA version: 6 0,1: ind: 0,1 - tiles: CQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: CQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 0,2: ind: 0,2 @@ -231,19 +231,19 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABAAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACAAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAABHAAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABHAAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAADDgAAAAAALAAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAABCQAAAAADHAAAAAADDgAAAAAACQAAAAAB + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACAAAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABAAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAAAHAAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADHAAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAADHAAAAAACDgAAAAAACQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: CQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAACDgAAAAAAHAAAAAADCQAAAAABDwAAAAABCQAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABCQAAAAAADwAAAAABCQAAAAADCQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAABHAAAAAACDgAAAAAAHAAAAAABCQAAAAAACQAAAAAACQAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAAD + tiles: CQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAABHAAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAACDwAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAAACQAAAAACDwAAAAACCQAAAAADCQAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACHAAAAAABDgAAAAAAHAAAAAACCQAAAAACCQAAAAAACQAAAAABHAAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: DgAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAADIwAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAABIwAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADDgAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAACIwAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAACIwAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAA + tiles: DgAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABIwAAAAACIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAABIwAAAAADIwAAAAADIwAAAAADIwAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAADIwAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAADIwAAAAABIwAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAAQQAAAAADQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAAMwAAAAAAMwAAAAACDgAAAAAAQQAAAAABQQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAABMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAACMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALAAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAAMwAAAAABMwAAAAADDgAAAAAAQQAAAAAAQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAAMwAAAAABMwAAAAABDgAAAAAAQQAAAAADQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALAAAAAAA version: 6 1,-5: ind: 1,-5 @@ -251,71 +251,71 @@ entities: version: 6 1,0: ind: 1,0 - tiles: DgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAAACQAAAAACHAAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAAAHAAAAAACDgAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAACQAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAADgAAAAAACQAAAAADHAAAAAADHAAAAAABDgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABQAAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAD + tiles: DgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAADHAAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAAAHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAACQAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAACQAAAAACHAAAAAACHAAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADQAAAAAABDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABLwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAB version: 6 1,1: ind: 1,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAAMAAAAAALLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAABCQAAAAABCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADLAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAB + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAMAAAAAAADgAAAAAAMAAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAA version: 6 1,2: ind: 1,2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: CQAAAAABDgAAAAAAQAAAAAADQAAAAAADDwAAAAABQAAAAAACQAAAAAABQAAAAAADQAAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAQAAAAAAAQAAAAAACDwAAAAADQAAAAAACQAAAAAADDgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAQAAAAAAAQAAAAAADDwAAAAABQAAAAAACQAAAAAAAQAAAAAADQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAADQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADIwAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAABCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAQwAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAAADgAAAAAAQAAAAAADQAAAAAADDwAAAAACQAAAAAAAQAAAAAACQAAAAAABQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAAQAAAAAADQAAAAAACDwAAAAADQAAAAAABQAAAAAAADgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAABDwAAAAAAQAAAAAABQAAAAAACQAAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAQAAAAAADQAAAAAABQAAAAAACQAAAAAAAQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAABIwAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAQwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: CQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAOQAAAAAAOQAAAAABOQAAAAAAOQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAACOQAAAAADOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADOQAAAAADOQAAAAABOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAACHAAAAAACHAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABGgAAAAADLwAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADGgAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAAAGgAAAAADLwAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAADGgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAAGgAAAAADLwAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADGgAAAAACDgAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAADQAAAAAACQAAAAAACQAAAAAACQAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABGgAAAAADLwAAAAAACQAAAAADDgAAAAAAQAAAAAACQAAAAAADQAAAAAABQAAAAAAAQAAAAAADQAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAQAAAAAACQAAAAAAADwAAAAACQAAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAD + tiles: CQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAAOQAAAAABOQAAAAAAOQAAAAADOQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAACOQAAAAAAOQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABOQAAAAADOQAAAAACOQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACGgAAAAAALwAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABGgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADGgAAAAABLwAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABGgAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADGgAAAAABLwAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACGgAAAAABDgAAAAAACQAAAAACDgAAAAAAQAAAAAACQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADGgAAAAADLwAAAAAACQAAAAAADgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAACQAAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAABDwAAAAADQAAAAAABQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAB version: 6 2,-3: ind: 2,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAAHAAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAAIQAAAAABIQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAAHAAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAADIQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACRwAAAAABLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAABLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAA version: 6 2,0: ind: 2,0 - tiles: QwAAAAADCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAQwAAAAADCQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAIwAAAAADDgAAAAAAIwAAAAABDgAAAAAADgAAAAAAQwAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAADCQAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAQwAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAMAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: QwAAAAADCQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAQwAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAIwAAAAABDgAAAAAAIwAAAAACDgAAAAAADgAAAAAAQwAAAAACCQAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAACCQAAAAACDgAAAAAAMAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAAMAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA version: 6 2,1: ind: 2,1 - tiles: QwAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAQwAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QwAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAQwAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,2: ind: 2,2 - tiles: CQAAAAACCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: CQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAADLwAAAAACLwAAAAACGgAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAACGgAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABGgAAAAACCQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAAAGgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAABGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAAAGgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAADDgAAAAAAGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAAALwAAAAAALwAAAAABGgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACGgAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAAAGgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAADGgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAASAAAAAABSAAAAAACSAAAAAACDgAAAAAAHAAAAAACDgAAAAAAHAAAAAACDgAAAAAAHAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAABSAAAAAABSAAAAAACSAAAAAADHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADSQAAAAADSQAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAACSAAAAAADSAAAAAABHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAADMQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAASAAAAAAASAAAAAACSAAAAAABDgAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAABLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSAAAAAABSAAAAAAASAAAAAACHAAAAAABHAAAAAAADgAAAAAAHAAAAAACSQAAAAACSQAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAASAAAAAACSAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAADgAAAAAARgAAAAABRgAAAAABDgAAAAAARgAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAMwAAAAACDgAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAHAAAAAADDgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAADgAAAAAARgAAAAACRgAAAAADDgAAAAAARgAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 3,0: ind: 3,0 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,1: ind: 3,1 @@ -327,7 +327,7 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAAQAAAAAAAQAAAAAABQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAADQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAACRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAADDgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAAADgAAAAAAQAAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAAQAAAAAACQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAAAQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAADRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAAQAAAAAABDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAABDgAAAAAAQAAAAAADQAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 4,0: ind: 4,0 @@ -339,7 +339,7 @@ entities: version: 6 6,-2: ind: 6,-2 - tiles: QAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,-6: ind: 1,-6 @@ -347,11 +347,11 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAADLAAAAAAARwAAAAACRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAAADgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAACMwAAAAADRwAAAAACMwAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAACDgAAAAAAMwAAAAACMwAAAAAADgAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAACDgAAAAAAMwAAAAACMwAAAAADMwAAAAACLAAAAAAASQAAAAADHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAALAAAAAAARwAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABHAAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAACMwAAAAABMwAAAAACRwAAAAACMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAAAMwAAAAACMwAAAAACMwAAAAADDgAAAAAAMwAAAAAAMwAAAAABDgAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAACDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAALAAAAAAASQAAAAADHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAADSQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAACSQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -379,7 +379,7 @@ entities: version: 6 6,-3: ind: 6,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,1: ind: -4,1 @@ -387,7 +387,7 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAAQAAAAAADQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAPQAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAABDgAAAAAADgAAAAAAQAAAAAADDgAAAAAA + tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAACMwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAABQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAACDgAAAAAAQAAAAAADDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAACDgAAAAAADgAAAAAAQAAAAAACDgAAAAAA version: 6 -5,-5: ind: -5,-5 @@ -395,23 +395,23 @@ entities: version: 6 3,-6: ind: 3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAAHAAAAAADSgAAAAABSgAAAAADSgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABLgAAAAAASQAAAAACSQAAAAABHAAAAAADHAAAAAAASgAAAAABSgAAAAABSgAAAAACSgAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAASQAAAAACSQAAAAABSQAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAACSgAAAAABSgAAAAABSgAAAAACSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAACSQAAAAACHAAAAAABHAAAAAABSgAAAAACSgAAAAAASgAAAAABSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADSQAAAAACSQAAAAADSQAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: PAAAAAAAIwAAAAACDgAAAAAALAAAAAAAPAAAAAAFDgAAAAAAIwAAAAADIwAAAAAAIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACRwAAAAABLAAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAABPAAAAAABIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABPAAAAAAAPAAAAAACDgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAACIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAAPAAAAAAGIwAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAACPAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAAASgAAAAAADgAAAAAADgAAAAAASgAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAADSgAAAAAADgAAAAAASgAAAAACSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: PAAAAAABIwAAAAABDgAAAAAALAAAAAAAPAAAAAAFDgAAAAAAIwAAAAABIwAAAAABIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADRwAAAAACLAAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAACPAAAAAAEIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAAPAAAAAAAPAAAAAAEDgAAAAAADgAAAAAADgAAAAAAPAAAAAACIwAAAAAAIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGPAAAAAAEIwAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADPAAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSgAAAAADDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAADSgAAAAADDgAAAAAASgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-6: ind: 4,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAADgAAAAAAPAAAAAAFIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAAIwAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAEDgAAAAAADgAAAAAAIwAAAAAAPAAAAAAFDgAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAADgAAAAAAPAAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAADDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAACDgAAAAAADgAAAAAAIwAAAAADPAAAAAACDgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAARwAAAAABDgAAAAAARwAAAAACDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAARwAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAARwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-4: ind: 5,-4 @@ -3410,11 +3410,8 @@ entities: 11506: 33,-41 11507: 34,-46 11508: 33,-46 - 11509: 32,-47 11510: 35,-45 11511: 34,-44 - 11512: 35,-43 - 11513: 35,-44 11514: 32,-44 11516: 31,-43 11517: 39,-45 @@ -4364,8 +4361,6 @@ entities: 8490: -3,-42 8491: -3,-42 8492: -4,-41 - 8493: -5,-43 - 8494: -6,-43 8496: 0,-45 8497: -1,-45 8498: -1,-44 @@ -4472,7 +4467,6 @@ entities: 14919: -33,18 14920: -32,19 15038: 38,-37 - 15039: 20,-26 15040: 21,-26 15041: 21,-27 15042: 20,-27 @@ -5660,7 +5654,6 @@ entities: 15030: -13,12 15031: 14,12 15032: 13,12 - 15043: 20,-25 15044: 21,-28 - node: cleanable: True @@ -6741,6 +6734,15 @@ entities: decals: 11342: -15,-54 11343: -15,-53 + - node: + zIndex: 1 + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 15063: 20,-25 + 15099: 37,-41 + 15100: 38,-41 + 15101: 39,-41 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale @@ -6955,10 +6957,6 @@ entities: 9615: 32,-45 9616: 33,-45 9617: 34,-45 - 9621: 36,-41 - 9622: 37,-41 - 9625: 39,-41 - 9626: 38,-41 9751: 33,-39 - node: zIndex: 1 @@ -7012,12 +7010,6 @@ entities: 11247: 29,-32 11274: 23,-32 11275: 24,-32 - - node: - zIndex: 1 - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 9728: 20,-25 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -7077,9 +7069,12 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 9619: 35,-42 9725: 21,-27 9726: 21,-26 + 15091: 35,-41 + 15092: 35,-42 + 15093: 35,-43 + 15094: 35,-44 - node: zIndex: 1 color: '#DE3A3A96' @@ -7130,6 +7125,10 @@ entities: decals: 9723: 19,-26 9724: 19,-27 + 15095: 36,-41 + 15096: 36,-42 + 15097: 36,-43 + 15098: 36,-44 - node: zIndex: 1 color: '#DE3A3A96' @@ -7904,7 +7903,6 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 9620: 35,-41 9756: 34,-42 - node: color: '#FA750096' @@ -8463,17 +8461,33 @@ entities: id: WoodTrimThinCornerSw decals: 12353: -18,-49 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 15106: -4,-43 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: 12107: 36,-10 + 15104: -7,-44 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 15105: -7,-45 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinEndS decals: 14277: 17,-41 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 15107: -6,-43 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe @@ -8531,22 +8545,14 @@ entities: id: WoodTrimThinLineE decals: 12368: -12,-48 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 1417: -6,-43 - 1418: -5,-43 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1456: -4,-43 - 1457: -4,-43 1616: 18,-59 12100: 36,-13 12142: 18,-38 + 15108: -5,-43 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8572,6 +8578,7 @@ entities: 12114: 37,-12 12140: 17,-41 12141: 19,-41 + 15109: -5,-43 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8596,7 +8603,6 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 1440: -7,-44 12118: 18,-36 12119: 18,-37 12122: 17,-37 @@ -9697,7 +9703,7 @@ entities: 0: 65437 -4,0: 0: 13243 - 1: 2048 + 3: 2048 -3,-4: 0: 65501 -3,-3: @@ -9708,7 +9714,7 @@ entities: 0: 53247 -3,0: 0: 15 - 1: 13056 + 3: 13056 2: 3072 -3,-5: 0: 36863 @@ -9768,23 +9774,23 @@ entities: 0: 56793 -2,-8: 0: 61495 - 3: 136 + 1: 136 -2,-7: 0: 8177 -2,-6: 0: 64988 -2,-9: 0: 13299 - 3: 32768 + 1: 32768 -1,-8: - 3: 51 + 1: 51 0: 63500 -1,-6: 0: 65535 -1,-5: 0: 4095 -1,-9: - 3: 12288 + 1: 12288 0: 35059 -1,-7: 0: 3822 @@ -9911,7 +9917,7 @@ entities: 0: 43688 -4,1: 0: 62259 - 1: 128 + 3: 128 -5,1: 0: 43690 -4,2: @@ -9925,7 +9931,7 @@ entities: -4,4: 0: 21759 -3,1: - 1: 513 + 3: 513 2: 8208 -3,2: 0: 65280 @@ -9945,7 +9951,7 @@ entities: 0: 13 2: 61696 -1,1: - 1: 1365 + 3: 1365 -1,2: 0: 65280 2: 10 @@ -9960,14 +9966,14 @@ entities: 0,0: 0: 15 2: 3328 - 1: 512 + 3: 512 0,1: 6: 273 - 1: 49356 + 3: 49356 0,2: 0: 65280 2: 6 - 1: 8 + 3: 8 0,3: 0: 19663 2: 256 @@ -10010,7 +10016,7 @@ entities: -8,-4: 2: 6553 -8,-5: - 1: 61440 + 3: 61440 0: 6 2: 256 -9,-4: @@ -10027,14 +10033,14 @@ entities: 2: 142 0: 62208 -8,-1: - 0: 64783 + 0: 56591 -9,-1: - 0: 34875 + 0: 35003 2: 12288 -8,0: 0: 26189 -7,-4: - 1: 273 + 3: 273 0: 3596 -7,-3: 0: 65535 @@ -10043,7 +10049,7 @@ entities: -7,-1: 0: 65518 -7,-5: - 1: 4096 + 3: 4096 0: 49343 -7,0: 0: 65359 @@ -10073,7 +10079,7 @@ entities: 0: 65535 -9,-5: 2: 1488 - 1: 61440 + 3: 61440 -8,-9: 0: 20479 -7,-8: @@ -10141,7 +10147,7 @@ entities: -7,-16: 2: 2784 -7,-14: - 0: 58464 + 0: 58470 -6,-16: 2: 17662 -6,-14: @@ -10168,6 +10174,7 @@ entities: 2: 24576 -9,1: 0: 52428 + 2: 4352 -8,2: 2: 2 0: 61056 @@ -10187,7 +10194,7 @@ entities: -7,3: 0: 62719 -7,4: - 0: 61695 + 0: 28927 -6,2: 0: 61224 -6,3: @@ -10263,30 +10270,30 @@ entities: 2: 50 -12,-4: 2: 3712 - 1: 57344 + 3: 57344 -13,-4: 0: 48896 - 1: 7 + 3: 7 2: 8 -12,-3: 0: 1 2: 62126 -13,-3: 0: 11 - 1: 59136 + 3: 59136 2: 6144 -12,-2: - 1: 59185 + 3: 59185 2: 2254 -13,-2: - 1: 140 + 3: 140 2: 2114 -12,-1: - 1: 140 + 3: 140 2: 34816 -11,-4: 2: 3889 - 1: 61440 + 3: 61440 -11,-3: 2: 61759 -11,-2: @@ -10301,7 +10308,7 @@ entities: 2: 8704 -10,-4: 2: 50517 - 1: 12834 + 3: 12834 -10,-3: 2: 63695 -10,-2: @@ -10312,7 +10319,7 @@ entities: 2: 32768 -10,-5: 2: 7936 - 1: 57344 + 3: 57344 -10,0: 0: 13105 2: 2048 @@ -10322,16 +10329,16 @@ entities: 0: 30711 -12,-6: 2: 256 - 1: 4096 + 3: 4096 0: 36044 -12,-5: - 1: 371 + 3: 371 2: 4736 -13,-6: 2: 61440 -13,-5: 2: 4680 - 1: 60544 + 3: 60544 -12,-9: 0: 52428 -12,-7: @@ -10386,7 +10393,7 @@ entities: -13,-14: 0: 224 2: 49409 - 1: 16 + 3: 16 -11,-14: 0: 52733 -11,-15: @@ -10404,19 +10411,19 @@ entities: -13,1: 2: 65392 -12,2: - 1: 3840 + 3: 3840 2: 61440 -13,2: - 1: 43008 + 3: 43008 2: 21026 -12,3: - 1: 3855 + 3: 3855 2: 61440 -13,3: - 1: 43016 + 3: 43016 2: 21026 -12,4: - 1: 3855 + 3: 3855 2: 61440 -11,1: 2: 63265 @@ -10428,39 +10435,39 @@ entities: -10,1: 0: 51 2: 47104 - 1: 16384 + 3: 16384 -10,3: 2: 7936 - 1: 16384 + 3: 16384 0: 8 -11,4: 2: 15 -10,4: 2: 8471 - 1: 3816 + 3: 3816 -10,2: 2: 546 0: 192 -13,4: - 1: 43016 + 3: 43016 2: 21026 -12,5: - 1: 8207 + 3: 8207 2: 53760 -13,5: - 1: 8200 + 3: 8200 2: 53794 -12,6: - 1: 21872 + 3: 21872 2: 8706 -12,7: - 1: 85 + 3: 85 2: 61986 -12,8: 2: 127 -13,7: 2: 61986 - 1: 85 + 3: 85 -11,5: 2: 61952 -11,7: @@ -10547,14 +10554,14 @@ entities: 2: 49137 -16,-13: 2: 4369 - 1: 43690 + 3: 43690 -17,-12: 2: 49137 -15,-12: 2: 63485 -15,-13: 2: 4369 - 1: 8738 + 3: 8738 -14,-12: 2: 13059 0: 2176 @@ -10572,35 +10579,35 @@ entities: 2: 34816 -16,-16: 2: 4607 - 1: 40960 + 3: 40960 -16,-17: 2: 45056 -17,-16: 2: 4607 - 1: 40960 + 3: 40960 -16,-15: 2: 273 - 1: 47786 + 3: 47786 -17,-15: - 1: 47786 + 3: 47786 2: 273 -16,-14: 2: 481 - 1: 45072 + 3: 45072 -17,-14: 2: 481 - 1: 45072 + 3: 45072 -17,-13: - 1: 43690 + 3: 43690 2: 4369 -15,-16: 2: 4607 - 1: 8192 + 3: 8192 -15,-15: 2: 273 - 1: 12834 + 3: 12834 -15,-14: - 1: 12304 + 3: 12304 2: 481 -15,-17: 2: 12288 @@ -10608,7 +10615,7 @@ entities: 2: 255 -14,-14: 2: 2425 - 1: 128 + 3: 128 -13,-16: 2: 13175 -13,-17: @@ -10665,16 +10672,16 @@ entities: 2: 52428 -18,-16: 2: 63 - 1: 32768 + 3: 32768 -18,-14: 2: 722 - 1: 32800 + 3: 32800 -18,-17: 2: 32768 -18,-15: - 1: 34952 + 3: 34952 -18,-13: - 1: 34952 + 3: 34952 -17,-17: 2: 45056 0,-4: @@ -10683,52 +10690,52 @@ entities: 0: 61166 1,-4: 0: 28927 - 1: 32768 + 3: 32768 1,-3: 0: 13104 2: 2184 1,-2: 0: 12339 - 1: 32904 + 3: 32904 1,-1: 0: 13107 - 1: 136 + 3: 136 2: 32768 1,0: 0: 3 2: 264 - 1: 3712 + 3: 3712 1,-5: 0: 20206 2,-4: 0: 52383 - 1: 4096 + 3: 4096 2,-3: 2: 273 - 1: 17920 + 3: 17920 0: 12 2,-2: - 1: 4241 + 3: 4241 2: 17476 0: 34816 2,-1: - 1: 81 + 3: 81 2: 29700 2,0: 2: 1 - 1: 50 + 3: 50 0: 24576 3,-4: 0: 63263 3,-3: 0: 30479 3,-1: - 1: 4369 + 3: 4369 0: 52428 3,-2: 0: 52960 3,0: - 1: 4353 + 3: 4353 0: 52428 4,-4: 0: 15279 @@ -10865,11 +10872,11 @@ entities: 4,-18: 2: 62960 1,1: - 1: 17 + 3: 17 2: 1028 1,2: 0: 65280 - 1: 4 + 3: 4 2: 8 1,3: 0: 14207 @@ -10929,15 +10936,15 @@ entities: 2: 32776 4,6: 0: 4147 - 1: 24576 + 3: 24576 4,7: 0: 1 2: 47752 - 1: 17510 + 3: 17510 3,8: 2: 136 4,8: - 1: 239 + 3: 239 2: 16 5,-4: 0: 49663 @@ -11094,7 +11101,7 @@ entities: 2: 51200 7,-20: 2: 65530 - 1: 4 + 3: 4 7,-19: 2: 17487 7,-18: @@ -11118,7 +11125,7 @@ entities: 6,3: 0: 441 6,4: - 1: 769 + 3: 769 2: 25600 0: 2048 7,1: @@ -11127,9 +11134,9 @@ entities: 0: 49039 7,3: 0: 35003 - 1: 8192 + 3: 8192 7,4: - 1: 2 + 3: 2 0: 49032 8,0: 0: 49083 @@ -11140,21 +11147,21 @@ entities: 8,3: 0: 30583 4,4: - 1: 640 + 3: 640 5,5: 2: 64591 5,7: 2: 12288 5,4: - 1: 25600 + 3: 25600 5,8: - 1: 1 + 3: 1 2: 50 6,5: 2: 3879 - 1: 128 + 3: 128 7,5: - 1: 32 + 3: 32 0: 59528 7,6: 0: 61166 @@ -11320,7 +11327,7 @@ entities: 10,-14: 0: 57297 10,-17: - 1: 34816 + 3: 34816 2: 576 11,-16: 0: 65520 @@ -11331,7 +11338,7 @@ entities: 11,-13: 0: 127 11,-17: - 1: 62208 + 3: 62208 2: 3104 12,-16: 0: 56712 @@ -11343,9 +11350,9 @@ entities: 0: 47935 9,-19: 2: 62736 - 1: 2082 + 3: 2082 9,-20: - 1: 64 + 3: 64 9,-18: 2: 2126 10,-20: @@ -11353,32 +11360,32 @@ entities: 10,-18: 2: 25862 11,-20: - 1: 13056 + 3: 13056 2: 50304 11,-19: - 1: 30583 + 3: 30583 2: 8 11,-18: - 1: 375 + 3: 375 2: 17920 11,-21: 2: 6481 - 1: 140 + 3: 140 12,-20: - 1: 13104 + 3: 13104 12,-19: 2: 5633 - 1: 16418 + 3: 16418 12,-18: 2: 17425 - 1: 8192 + 3: 8192 9,1: 0: 8083 9,2: 0: 45431 9,3: 0: 11 - 1: 8448 + 3: 8448 10,1: 0: 9010 2: 2176 @@ -11402,7 +11409,7 @@ entities: 12,0: 2: 51393 0: 768 - 1: 1024 + 3: 1024 12,1: 2: 49665 12,2: @@ -11445,18 +11452,18 @@ entities: 14,-5: 0: 12336 14,-1: - 1: 43690 + 3: 43690 2: 17476 14,0: - 1: 1038 + 3: 1038 2: 19264 15,-2: 2: 20478 15,-1: - 1: 43690 + 3: 43690 2: 17476 15,0: - 1: 1038 + 3: 1038 2: 19264 16,-2: 2: 20478 @@ -11489,19 +11496,19 @@ entities: 0: 238 14,-11: 0: 4368 - 1: 19656 + 3: 19656 2: 32768 14,-10: 0: 17 - 1: 2188 + 3: 2188 2: 64 14,-13: 0: 58606 15,-11: - 1: 401 + 3: 401 2: 4710 15,-10: - 1: 48 + 3: 48 2: 3784 15,-12: 2: 8712 @@ -11509,13 +11516,13 @@ entities: 2: 52832 16,-12: 2: 8435 - 1: 35328 + 3: 35328 16,-11: - 1: 10937 + 3: 10937 2: 36864 0: 1024 16,-10: - 1: 383 + 3: 383 2: 2176 12,-17: 0: 34880 @@ -11530,7 +11537,7 @@ entities: 0: 48123 13,-17: 0: 4096 - 1: 16 + 3: 16 2: 230 14,-14: 0: 65535 @@ -11539,12 +11546,12 @@ entities: 0: 8192 14,-17: 2: 4096 - 1: 2 + 3: 2 14,-15: 0: 57890 15,-16: 2: 32775 - 1: 128 + 3: 128 15,-14: 0: 10016 15,-15: @@ -11552,17 +11559,17 @@ entities: 15,-17: 2: 34944 16,-16: - 1: 61104 + 3: 61104 2: 14 16,-15: - 1: 119 + 3: 119 16,-13: 2: 4096 12,-21: 2: 20480 - 1: 8977 + 3: 8977 13,-18: - 1: 8448 + 3: 8448 2: 4096 14,-19: 2: 14540 @@ -11571,23 +11578,23 @@ entities: 14,-20: 2: 60416 15,-20: - 1: 3686 + 3: 3686 15,-19: - 1: 52750 + 3: 52750 2: 8192 15,-18: - 1: 2 + 3: 2 2: 32780 16,-20: - 1: 63235 + 3: 63235 2: 2088 16,-19: - 1: 48031 + 3: 48031 16,-18: - 1: 139 + 3: 139 2: 31744 16,-17: - 1: 48942 + 3: 48942 2: 16384 13,0: 2: 20288 @@ -11595,36 +11602,36 @@ entities: 2: 65280 14,2: 2: 65348 - 1: 10 + 3: 10 14,1: - 1: 43694 + 3: 43694 2: 17472 14,3: 2: 14 15,2: 2: 65348 - 1: 10 + 3: 10 15,1: - 1: 43694 + 3: 43694 2: 17472 15,3: 2: 14 16,0: 2: 19264 - 1: 1038 + 3: 1038 16,2: 2: 65348 - 1: 10 + 3: 10 16,-1: - 1: 43690 + 3: 43690 2: 17476 17,-2: 2: 20478 17,-1: - 1: 43690 + 3: 43690 2: 17476 17,0: - 1: 1038 + 3: 1038 2: 19264 17,-3: 2: 32768 @@ -11644,7 +11651,7 @@ entities: 2: 4407 18,0: 2: 44456 - 1: 512 + 3: 512 19,0: 2: 13105 19,-2: @@ -11654,85 +11661,85 @@ entities: 20,-2: 2: 311 20,-7: - 1: 24576 + 3: 24576 19,-7: 2: 32768 20,-6: 2: 16912 - 1: 36078 + 3: 36078 19,-6: 2: 200 20,-5: 2: 784 - 1: 60552 + 3: 60552 20,-4: - 1: 70 + 3: 70 21,-6: - 1: 18367 + 3: 18367 2: 2048 21,-5: - 1: 55735 + 3: 55735 2: 8 21,-8: 2: 546 - 1: 34952 + 3: 34952 21,-7: - 1: 34958 + 3: 34958 2: 512 21,-4: - 1: 31612 + 3: 31612 21,-9: - 1: 36352 + 3: 36352 2: 231 22,-8: - 1: 57339 + 3: 57339 2: 4 22,-7: - 1: 4271 + 3: 4271 2: 57600 22,-6: - 1: 60493 + 3: 60493 2: 16 22,-5: 2: 1 - 1: 65534 + 3: 65534 22,-9: - 1: 40908 + 3: 40908 2: 16434 22,-4: - 1: 15031 + 3: 15031 2: 8 23,-8: - 1: 60943 + 3: 60943 23,-7: 2: 13056 - 1: 52462 + 3: 52462 23,-6: - 1: 1615 + 3: 1615 23,-5: - 1: 887 + 3: 887 2: 12288 23,-9: - 1: 60943 + 3: 60943 23,-4: - 1: 4 + 3: 4 2: 336 24,-8: - 1: 4353 + 3: 4353 24,-7: - 1: 4369 + 3: 4369 24,-6: - 1: 273 + 3: 273 16,1: - 1: 43694 + 3: 43694 2: 17472 16,3: 2: 14 17,2: 2: 65348 - 1: 10 + 3: 10 17,1: - 1: 43694 + 3: 43694 2: 17472 17,3: 2: 14 @@ -11749,7 +11756,7 @@ entities: 19,3: 2: 3 24,-9: - 1: 12545 + 3: 12545 4,-22: 2: 61440 4,-21: @@ -11759,48 +11766,48 @@ entities: 8,-21: 2: 4352 17,-12: - 1: 53248 + 3: 53248 2: 11980 17,-11: - 1: 40129 + 3: 40129 2: 24588 17,-10: 2: 199 17,-13: 2: 17476 18,-12: - 1: 61426 + 3: 61426 2: 4096 18,-11: - 1: 30591 + 3: 30591 18,-10: 2: 112 18,-13: 2: 51336 19,-12: - 1: 65520 + 3: 65520 19,-11: - 1: 32766 + 3: 32766 2: 32768 19,-13: 2: 4096 19,-10: - 1: 2 + 3: 2 20,-12: - 1: 4352 + 3: 4352 2: 8940 20,-11: - 1: 32784 + 3: 32784 2: 14790 11,-23: - 1: 49152 + 3: 49152 11,-22: - 1: 34956 + 3: 34956 2: 1088 12,-23: - 1: 4096 + 3: 4096 12,-22: - 1: 273 + 3: 273 -4,-22: 2: 28672 -5,-22: @@ -11829,7 +11836,7 @@ entities: 2: 127 -14,7: 2: 61986 - 1: 85 + 3: 85 -3,9: 2: 18 -16,2: @@ -11844,63 +11851,63 @@ entities: 2: 65315 -15,2: 2: 61713 - 1: 2048 + 3: 2048 -15,3: 2: 61713 - 1: 2056 + 3: 2056 -15,4: 2: 61713 - 1: 2056 + 3: 2056 -14,1: 2: 65280 -14,2: - 1: 36608 + 3: 36608 2: 28672 -14,3: - 1: 36623 + 3: 36623 2: 28672 -14,4: - 1: 36623 + 3: 36623 2: 28672 1,-22: 2: 28672 1,-21: 2: 3196 24,-10: - 1: 4096 + 3: 4096 23,-10: 2: 52851 - 1: 12288 + 3: 12288 -16,5: 2: 52364 -16,6: 2: 34956 -15,5: 2: 46353 - 1: 16392 + 3: 16392 -15,6: 2: 4373 -14,5: - 1: 8207 + 3: 8207 2: 53760 -14,6: - 1: 21872 + 3: 21872 2: 8706 -13,6: - 1: 21872 + 3: 21872 2: 8706 20,-13: 2: 12850 20,-10: 2: 35879 - 1: 8 + 3: 8 21,-12: 2: 52851 21,-11: 2: 264 - 1: 4096 + 3: 4096 21,-10: - 1: 1 + 3: 1 2: 29124 22,-12: 2: 4096 @@ -11911,32 +11918,32 @@ entities: 23,-11: 2: 4096 15,-21: - 1: 2048 + 3: 2048 16,-21: - 1: 48058 + 3: 48058 17,-16: 2: 1 - 1: 65534 + 3: 65534 17,-15: - 1: 34021 + 3: 34021 2: 25360 17,-17: - 1: 65505 + 3: 65505 17,-14: 2: 17612 18,-16: - 1: 30583 + 3: 30583 18,-15: - 1: 41968 + 3: 41968 2: 20480 18,-14: 2: 35226 18,-17: - 1: 30578 + 3: 30578 19,-16: 2: 4352 19,-15: - 1: 16 + 3: 16 0: 4096 2: 25088 19,-14: @@ -11944,39 +11951,39 @@ entities: 20,-14: 2: 12816 17,-20: - 1: 49037 + 3: 49037 17,-18: 2: 28464 - 1: 6 + 3: 6 17,-21: - 1: 54545 + 3: 54545 17,-19: - 1: 8418 + 3: 8418 2: 52736 18,-20: - 1: 30513 + 3: 30513 18,-19: - 1: 56784 + 3: 56784 18,-18: 2: 1999 - 1: 28672 + 3: 28672 19,-19: - 1: 4352 + 3: 4352 19,-18: 2: 4097 19,-17: 2: 256 16,-22: - 1: 32768 + 3: 32768 17,-22: - 1: 4096 + 3: 4096 20,-3: 2: 60544 21,-3: 2: 256 - 1: 14 + 3: 14 22,-3: - 1: 1 + 3: 1 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11994,10 +12001,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 235 moles: - - 0 - - 0 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -12024,10 +12031,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -12214,16 +12221,6 @@ entities: container: 19898 - proto: AirAlarm entities: - - uid: 15205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-49.5 - parent: 2 - - type: DeviceList - devices: - - 9455 - - 9454 - uid: 29 components: - type: Transform @@ -13207,7 +13204,6 @@ entities: - 15170 - 15169 - 15168 - - 17129 - 15166 - 5473 - 15118 @@ -13234,6 +13230,16 @@ entities: - 13370 - 25 - 13371 + - uid: 15205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 9455 + - 9454 - uid: 15260 components: - type: Transform @@ -13354,7 +13360,7 @@ entities: - 16456 - 16412 - 16413 - - 16420 + - 13013 - 16422 - uid: 17348 components: @@ -13439,7 +13445,7 @@ entities: - 17424 - 12246 - 17393 - - 17423 + - 390 - 5348 - 5420 - uid: 17445 @@ -13496,7 +13502,7 @@ entities: - 14621 - 14620 - 11185 - - 3171 + - 14675 - 3201 - 14468 - uid: 18978 @@ -15416,6 +15422,11 @@ entities: parent: 2 - proto: AirlockMaintCommonLocked entities: + - uid: 152 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 - uid: 2398 components: - type: Transform @@ -15506,6 +15517,11 @@ entities: - type: Transform pos: 34.5,6.5 parent: 2 + - uid: 20659 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 - proto: AirlockMaintDetectiveLocked entities: - uid: 7373 @@ -15737,11 +15753,6 @@ entities: - type: Transform pos: -20.5,16.5 parent: 2 - - uid: 3402 - components: - - type: Transform - pos: -32.5,2.5 - parent: 2 - proto: AirlockMaintServiceLocked entities: - uid: 3810 @@ -16026,10 +16037,10 @@ entities: - type: Transform pos: -25.5,14.5 parent: 2 - - uid: 15892 + - uid: 20717 components: - type: Transform - pos: -30.5,-0.5 + pos: -32.5,-2.5 parent: 2 - proto: AirlockTheatreLocked entities: @@ -16102,6 +16113,14 @@ entities: - type: DeviceNetwork deviceLists: - 15188 + - uid: 390 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17353 - uid: 670 components: - type: Transform @@ -16222,14 +16241,6 @@ entities: - type: DeviceNetwork deviceLists: - 13650 - - uid: 3171 - components: - - type: Transform - pos: -21.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18900 - uid: 4359 components: - type: Transform @@ -16350,6 +16361,14 @@ entities: - type: DeviceNetwork deviceLists: - 15422 + - uid: 13013 + components: + - type: Transform + pos: -60.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16446 - uid: 13086 components: - type: Transform @@ -16610,6 +16629,14 @@ entities: - type: DeviceNetwork deviceLists: - 17658 + - uid: 14675 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18900 - uid: 14712 components: - type: Transform @@ -16797,14 +16824,6 @@ entities: - type: DeviceNetwork deviceLists: - 16446 - - uid: 16420 - components: - - type: Transform - pos: -63.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16446 - uid: 16422 components: - type: Transform @@ -16845,14 +16864,6 @@ entities: - type: DeviceNetwork deviceLists: - 17351 - - uid: 17423 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17353 - uid: 17575 components: - type: Transform @@ -17159,12 +17170,6 @@ entities: - type: Transform pos: -22.5,-2.5 parent: 2 - - uid: 6943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-5.5 - parent: 2 - uid: 7213 components: - type: MetaData @@ -17221,6 +17226,12 @@ entities: rot: 3.141592653589793 rad pos: 44.5,0.5 parent: 2 + - uid: 8965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,6.5 + parent: 2 - uid: 9734 components: - type: Transform @@ -23299,11 +23310,6 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 2168 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 2 - uid: 4245 components: - type: Transform @@ -23595,10 +23601,10 @@ entities: - type: Transform pos: 64.5,-82.5 parent: 2 - - uid: 20236 + - uid: 20818 components: - type: Transform - pos: -25.5,-54.5 + pos: -25.5,-55.5 parent: 2 - proto: BedsheetBlack entities: @@ -23621,11 +23627,10 @@ entities: parent: 2 - proto: BedsheetCaptain entities: - - uid: 20237 + - uid: 16725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-54.5 + pos: -25.5,-55.5 parent: 2 - proto: BedsheetCE entities: @@ -23680,26 +23685,26 @@ entities: parent: 2 - proto: BedsheetMedical entities: + - uid: 471 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 - uid: 13012 components: - type: Transform - pos: -39.5,-23.5 - parent: 2 - - uid: 13013 - components: - - type: Transform - pos: -39.5,-21.5 - parent: 2 - - uid: 13014 - components: - - type: Transform - pos: -37.5,-23.5 + pos: -38.5,-20.5 parent: 2 - uid: 14081 components: - type: Transform pos: 21.5,-59.5 parent: 2 + - uid: 20708 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 - proto: BedsheetMime entities: - uid: 3575 @@ -24207,11 +24212,6 @@ entities: - type: Transform pos: -33.211655,-57.315544 parent: 2 - - uid: 17330 - components: - - type: Transform - pos: 12.244581,23.370182 - parent: 2 - proto: BoxFlashbang entities: - uid: 3955 @@ -24512,7 +24512,7 @@ entities: - uid: 5004 components: - type: Transform - pos: -39.5297,-25.456043 + pos: -37.390774,-24.717043 parent: 2 - uid: 8196 components: @@ -25334,6 +25334,11 @@ entities: - type: Transform pos: -21.5,-41.5 parent: 2 + - uid: 886 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 - uid: 909 components: - type: Transform @@ -25489,6 +25494,11 @@ entities: - type: Transform pos: -8.5,16.5 parent: 2 + - uid: 959 + components: + - type: Transform + pos: -33.5,16.5 + parent: 2 - uid: 963 components: - type: Transform @@ -25524,6 +25534,11 @@ entities: - type: Transform pos: 8.5,-52.5 parent: 2 + - uid: 974 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 - uid: 1052 components: - type: Transform @@ -25984,6 +25999,11 @@ entities: - type: Transform pos: -0.5,-6.5 parent: 2 + - uid: 1955 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 - uid: 2048 components: - type: Transform @@ -26029,6 +26049,11 @@ entities: - type: Transform pos: -5.5,-50.5 parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 - uid: 2105 components: - type: Transform @@ -26129,6 +26154,11 @@ entities: - type: Transform pos: -12.5,-21.5 parent: 2 + - uid: 2302 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 - uid: 2320 components: - type: Transform @@ -26209,6 +26239,11 @@ entities: - type: Transform pos: -22.5,4.5 parent: 2 + - uid: 2389 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 - uid: 2423 components: - type: Transform @@ -26252,7 +26287,7 @@ entities: - uid: 2446 components: - type: Transform - pos: 4.5,-1.5 + pos: -5.5,-1.5 parent: 2 - uid: 2447 components: @@ -26369,11 +26404,6 @@ entities: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 2485 - components: - - type: Transform - pos: 4.5,0.5 - parent: 2 - uid: 2487 components: - type: Transform @@ -26419,6 +26449,11 @@ entities: - type: Transform pos: -42.5,-39.5 parent: 2 + - uid: 2582 + components: + - type: Transform + pos: -33.5,12.5 + parent: 2 - uid: 2612 components: - type: Transform @@ -27084,6 +27119,11 @@ entities: - type: Transform pos: 5.5,-18.5 parent: 2 + - uid: 4877 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 - uid: 4887 components: - type: Transform @@ -27719,15 +27759,10 @@ entities: - type: Transform pos: 30.5,-64.5 parent: 2 - - uid: 7287 - components: - - type: Transform - pos: -31.5,14.5 - parent: 2 - uid: 7289 components: - type: Transform - pos: -30.5,15.5 + pos: -31.5,21.5 parent: 2 - uid: 7290 components: @@ -27777,7 +27812,7 @@ entities: - uid: 7625 components: - type: Transform - pos: -30.5,14.5 + pos: -31.5,20.5 parent: 2 - uid: 7628 components: @@ -28264,6 +28299,11 @@ entities: - type: Transform pos: -51.5,-12.5 parent: 2 + - uid: 8436 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 - uid: 8469 components: - type: Transform @@ -28559,15 +28599,10 @@ entities: - type: Transform pos: -23.5,-49.5 parent: 2 - - uid: 8965 - components: - - type: Transform - pos: -31.5,21.5 - parent: 2 - uid: 8966 components: - type: Transform - pos: -31.5,20.5 + pos: -33.5,6.5 parent: 2 - uid: 8982 components: @@ -28789,6 +28824,11 @@ entities: - type: Transform pos: -23.5,-15.5 parent: 2 + - uid: 9526 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 - uid: 9546 components: - type: Transform @@ -29204,6 +29244,11 @@ entities: - type: Transform pos: 47.5,-52.5 parent: 2 + - uid: 10090 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 - uid: 10099 components: - type: Transform @@ -30147,7 +30192,7 @@ entities: - uid: 11147 components: - type: Transform - pos: -30.5,-4.5 + pos: -35.5,2.5 parent: 2 - uid: 11164 components: @@ -32427,12 +32472,7 @@ entities: - uid: 12883 components: - type: Transform - pos: -31.5,-5.5 - parent: 2 - - uid: 12884 - components: - - type: Transform - pos: -29.5,-4.5 + pos: -34.5,-4.5 parent: 2 - uid: 12888 components: @@ -32677,7 +32717,7 @@ entities: - uid: 12972 components: - type: Transform - pos: -31.5,-4.5 + pos: -33.5,14.5 parent: 2 - uid: 12998 components: @@ -33324,11 +33364,6 @@ entities: - type: Transform pos: -27.5,-5.5 parent: 2 - - uid: 15472 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 2 - uid: 15487 components: - type: Transform @@ -33924,11 +33959,6 @@ entities: - type: Transform pos: 6.5,-44.5 parent: 2 - - uid: 15616 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 - uid: 15623 components: - type: Transform @@ -33974,11 +34004,6 @@ entities: - type: Transform pos: 35.5,-37.5 parent: 2 - - uid: 15693 - components: - - type: Transform - pos: -34.5,-4.5 - parent: 2 - uid: 15694 components: - type: Transform @@ -36059,26 +36084,6 @@ entities: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 20492 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 2 - - uid: 20493 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 2 - - uid: 20494 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 2 - - uid: 20495 - components: - - type: Transform - pos: -32.5,0.5 - parent: 2 - uid: 20496 components: - type: Transform @@ -36299,16 +36304,6 @@ entities: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 20578 - components: - - type: Transform - pos: -38.5,7.5 - parent: 2 - - uid: 20579 - components: - - type: Transform - pos: -37.5,7.5 - parent: 2 - uid: 20580 components: - type: Transform @@ -36382,22 +36377,7 @@ entities: - uid: 20668 components: - type: Transform - pos: -32.5,19.5 - parent: 2 - - uid: 20669 - components: - - type: Transform - pos: -32.5,20.5 - parent: 2 - - uid: 20683 - components: - - type: Transform - pos: -32.5,17.5 - parent: 2 - - uid: 20684 - components: - - type: Transform - pos: -32.5,18.5 + pos: -30.5,-0.5 parent: 2 - uid: 20693 components: @@ -36444,6 +36424,16 @@ entities: - type: Transform pos: -45.5,-55.5 parent: 2 + - uid: 20728 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 20733 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 - uid: 20750 components: - type: Transform @@ -36459,6 +36449,126 @@ entities: - type: Transform pos: -40.5,-58.5 parent: 2 + - uid: 20757 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 20771 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 20774 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 20793 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 20794 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 20795 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 20796 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 20797 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 20798 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 20800 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 20802 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 20805 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 20806 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 20807 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 20808 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 20809 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 20810 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 20811 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 20812 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 20813 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 20825 + components: + - type: Transform + pos: -25.5,-54.5 + parent: 2 + - uid: 20826 + components: + - type: Transform + pos: -25.5,-55.5 + parent: 2 + - uid: 20827 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 + - uid: 20828 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 - proto: CableApcStack entities: - uid: 1898 @@ -41696,11 +41806,6 @@ entities: - type: Transform pos: -29.5,-55.5 parent: 2 - - uid: 886 - components: - - type: Transform - pos: -31.5,-5.5 - parent: 2 - uid: 890 components: - type: Transform @@ -41711,21 +41816,6 @@ entities: - type: Transform pos: -31.5,21.5 parent: 2 - - uid: 959 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 2 - - uid: 973 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 2 - - uid: 974 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 2 - uid: 1078 components: - type: Transform @@ -42456,6 +42546,11 @@ entities: - type: Transform pos: -22.5,4.5 parent: 2 + - uid: 3402 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 - uid: 3571 components: - type: Transform @@ -42641,11 +42736,6 @@ entities: - type: Transform pos: 34.5,-40.5 parent: 2 - - uid: 4877 - components: - - type: Transform - pos: -29.5,-4.5 - parent: 2 - uid: 4900 components: - type: Transform @@ -43171,11 +43261,6 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 8436 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 2 - uid: 8457 components: - type: Transform @@ -44061,6 +44146,11 @@ entities: - type: Transform pos: -32.5,-54.5 parent: 2 + - uid: 10615 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 - uid: 10736 components: - type: Transform @@ -45511,6 +45601,11 @@ entities: - type: Transform pos: -39.5,-33.5 parent: 2 + - uid: 12649 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 - uid: 12676 components: - type: Transform @@ -46171,11 +46266,6 @@ entities: - type: Transform pos: 13.5,-34.5 parent: 2 - - uid: 15461 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - uid: 15515 components: - type: Transform @@ -46931,11 +47021,6 @@ entities: - type: Transform pos: -33.5,-4.5 parent: 2 - - uid: 20441 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 2 - uid: 20442 components: - type: Transform @@ -47186,6 +47271,121 @@ entities: - type: Transform pos: -40.5,2.5 parent: 2 + - uid: 20722 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 20732 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 20758 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 20769 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - uid: 20772 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 20773 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 20776 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 20777 + components: + - type: Transform + pos: -32.5,12.5 + parent: 2 + - uid: 20778 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 20779 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 20780 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 20781 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 20782 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 20783 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 + - uid: 20784 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 20785 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 20786 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 20787 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 + - uid: 20788 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 20789 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 20790 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 20791 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 20792 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 - proto: CableMVStack entities: - uid: 3393 @@ -47532,6 +47732,21 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 2 + - uid: 1286 + components: + - type: Transform + pos: -26.5,-55.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -25.5,-55.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 - uid: 6182 components: - type: Transform @@ -47544,6 +47759,11 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,18.5 parent: 2 + - uid: 9699 + components: + - type: Transform + pos: -25.5,-51.5 + parent: 2 - uid: 9881 components: - type: Transform @@ -47578,23 +47798,10 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-50.5 parent: 2 - - uid: 20245 + - uid: 14003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-50.5 - parent: 2 - - uid: 20246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-50.5 - parent: 2 - - uid: 20247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-51.5 + pos: -25.5,-52.5 parent: 2 - uid: 20248 components: @@ -47608,11 +47815,25 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-51.5 parent: 2 - - uid: 20250 + - uid: 20820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-51.5 + pos: -24.5,-52.5 + parent: 2 + - uid: 20821 + components: + - type: Transform + pos: -23.5,-52.5 + parent: 2 + - uid: 20822 + components: + - type: Transform + pos: -23.5,-51.5 + parent: 2 + - uid: 20823 + components: + - type: Transform + pos: -23.5,-50.5 parent: 2 - proto: CarpetChapel entities: @@ -48458,24 +48679,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-22.5 parent: 2 - - uid: 526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-41.5 - parent: 2 - uid: 582 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-43.5 parent: 2 - - uid: 598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-41.5 - parent: 2 - uid: 613 components: - type: Transform @@ -48854,11 +49063,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 - - uid: 1279 - components: - - type: Transform - pos: -30.5,14.5 - parent: 2 - uid: 1366 components: - type: Transform @@ -49068,6 +49272,12 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-19.5 parent: 2 + - uid: 2172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-42.5 + parent: 2 - uid: 2190 components: - type: Transform @@ -49079,12 +49289,24 @@ entities: - type: Transform pos: 38.5,-34.5 parent: 2 + - uid: 2233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-42.5 + parent: 2 - uid: 2269 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 + - uid: 2281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-41.5 + parent: 2 - uid: 2286 components: - type: Transform @@ -49095,11 +49317,6 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 2 - - uid: 2302 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 2 - uid: 2376 components: - type: Transform @@ -49876,6 +50093,24 @@ entities: rot: 3.141592653589793 rad pos: 36.5,11.5 parent: 2 + - uid: 4950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-42.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-41.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-41.5 + parent: 2 - uid: 5043 components: - type: Transform @@ -50062,11 +50297,6 @@ entities: - type: Transform pos: 24.5,7.5 parent: 2 - - uid: 6189 - components: - - type: Transform - pos: 35.5,-42.5 - parent: 2 - uid: 6205 components: - type: Transform @@ -50129,12 +50359,6 @@ entities: - type: Transform pos: 21.5,-0.5 parent: 2 - - uid: 6738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-42.5 - parent: 2 - uid: 6742 components: - type: Transform @@ -50153,48 +50377,18 @@ entities: rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 - - uid: 6774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-41.5 - parent: 2 - - uid: 6775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-41.5 - parent: 2 - uid: 6776 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-37.5 parent: 2 - - uid: 6784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-42.5 - parent: 2 - - uid: 6807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-42.5 - parent: 2 - uid: 6809 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-38.5 parent: 2 - - uid: 6819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-42.5 - parent: 2 - uid: 6820 components: - type: Transform @@ -50593,12 +50787,6 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,2.5 parent: 2 - - uid: 8484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-43.5 - parent: 2 - uid: 8493 components: - type: Transform @@ -52338,11 +52526,6 @@ entities: - type: Transform pos: 15.5,15.5 parent: 2 - - uid: 19016 - components: - - type: Transform - pos: 35.5,-43.5 - parent: 2 - uid: 19867 components: - type: Transform @@ -52450,21 +52633,16 @@ entities: - type: Transform pos: -30.5,16.5 parent: 2 - - uid: 20658 - components: - - type: Transform - pos: -32.5,14.5 - parent: 2 - - uid: 20659 - components: - - type: Transform - pos: -31.5,14.5 - parent: 2 - uid: 20747 components: - type: Transform pos: -41.5,-58.5 parent: 2 + - uid: 20775 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 - proto: CelloInstrument entities: - uid: 5831 @@ -52521,6 +52699,12 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-40.5 parent: 2 + - uid: 598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-31.5 + parent: 2 - uid: 1296 components: - type: Transform @@ -52787,6 +52971,12 @@ entities: - type: Transform pos: -51.5,-31.5 parent: 2 + - uid: 8484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-31.5 + parent: 2 - uid: 8520 components: - type: Transform @@ -52974,6 +53164,12 @@ entities: - type: Transform pos: 22.5,-20.5 parent: 2 + - uid: 15711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-31.5 + parent: 2 - uid: 15873 components: - type: Transform @@ -52989,6 +53185,12 @@ entities: - type: Transform pos: -40.5,-1.5 parent: 2 + - uid: 16756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-31.5 + parent: 2 - uid: 16875 components: - type: Transform @@ -53180,6 +53382,12 @@ entities: rot: -1.5707963267948966 rad pos: 0.53031445,19.5489 parent: 2 + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.369165,11.450459 + parent: 2 - uid: 985 components: - type: Transform @@ -53379,12 +53587,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.224391,-52.759342 parent: 2 - - uid: 10090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.343678,11.580154 - parent: 2 - uid: 10193 components: - type: Transform @@ -54443,7 +54645,7 @@ entities: - uid: 2235 components: - type: Transform - pos: -9.816731,-13.473576 + pos: -11.6501,-13.9699955 parent: 2 - uid: 5029 components: @@ -54476,7 +54678,7 @@ entities: - uid: 2171 components: - type: Transform - pos: -9.879231,-13.212977 + pos: -11.389554,-13.938724 parent: 2 - proto: ClothingHandsGlovesBoxingBlue entities: @@ -54506,6 +54708,13 @@ entities: - type: Transform pos: 55.644142,-41.512356 parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 20830 + components: + - type: Transform + pos: -6.4632463,-14.56322 + parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - uid: 18092 @@ -56401,11 +56610,6 @@ entities: parent: 2 - proto: CrateEngineeringSolar entities: - - uid: 471 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 2 - uid: 1701 components: - type: Transform @@ -56421,6 +56625,11 @@ entities: - type: Transform pos: -31.5,22.5 parent: 2 + - uid: 20713 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 - proto: CrateFilledSpawner entities: - uid: 5411 @@ -63041,16 +63250,16 @@ entities: - type: Transform pos: -6.5,17.5 parent: 2 + - uid: 9969 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 - uid: 10728 components: - type: Transform pos: -42.5,-35.5 parent: 2 - - uid: 14003 - components: - - type: Transform - pos: -25.5,-50.5 - parent: 2 - proto: DoorElectronics entities: - uid: 10846 @@ -63060,10 +63269,10 @@ entities: parent: 2 - proto: DresserCaptainFilled entities: - - uid: 13995 + - uid: 20236 components: - type: Transform - pos: -26.5,-54.5 + pos: -26.5,-55.5 parent: 2 - proto: DresserChiefEngineerFilled entities: @@ -63169,14 +63378,14 @@ entities: - uid: 20258 components: - type: Transform - pos: -26.355124,-52.29736 + pos: -26.689734,-54.180744 parent: 2 - proto: DrinkGinBottleFull entities: - uid: 17686 components: - type: Transform - pos: -26.615448,-51.989384 + pos: -26.391235,-54.158222 parent: 2 - proto: DrinkGlass entities: @@ -63219,7 +63428,7 @@ entities: - uid: 5083 components: - type: Transform - pos: -36.62132,-20.36556 + pos: -36.873867,-20.45384 parent: 2 - uid: 7000 components: @@ -63238,7 +63447,7 @@ entities: - uid: 821 components: - type: Transform - pos: -26.307041,-52.060753 + pos: -26.630938,-54.356277 parent: 2 - proto: DrinkJuiceOrangeCarton entities: @@ -63372,7 +63581,7 @@ entities: - uid: 16986 components: - type: Transform - pos: -26.552948,-52.364643 + pos: -26.356236,-54.17032 parent: 2 - proto: DrinkVermouthBottleFull entities: @@ -64322,6 +64531,11 @@ entities: parent: 2 - type: FaxMachine name: Library + - uid: 4817 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 - uid: 6057 components: - type: Transform @@ -64336,13 +64550,6 @@ entities: parent: 2 - type: FaxMachine name: HoP - - uid: 6554 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - - type: FaxMachine - name: Engineering - uid: 8716 components: - type: Transform @@ -64617,7 +64824,6 @@ entities: - 15170 - 15169 - 15168 - - 17129 - 15166 - 15150 - 15164 @@ -66703,16 +66909,6 @@ entities: - 19009 - 15391 - 17658 - - uid: 17129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 15139 - uid: 18455 components: - type: Transform @@ -66861,11 +67057,6 @@ entities: - type: Transform pos: 28.34704,-39.254337 parent: 2 - - uid: 16756 - components: - - type: Transform - pos: -62.583176,-16.437218 - parent: 2 - uid: 16760 components: - type: Transform @@ -86608,10 +86799,10 @@ entities: parent: 2 - proto: GlassBoxLaserFilled entities: - - uid: 1742 + - uid: 13995 components: - type: Transform - pos: -23.5,-53.5 + pos: -26.5,-52.5 parent: 2 - proto: GrassBattlemap entities: @@ -87234,6 +87425,11 @@ entities: - type: Transform pos: 37.5,-51.5 parent: 2 + - uid: 3030 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 - uid: 3043 components: - type: Transform @@ -88064,6 +88260,16 @@ entities: - type: Transform pos: 40.5,-40.5 parent: 2 + - uid: 5538 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 - uid: 5568 components: - type: Transform @@ -88224,6 +88430,11 @@ entities: - type: Transform pos: -63.5,-17.5 parent: 2 + - uid: 6162 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 - uid: 6171 components: - type: Transform @@ -89039,6 +89250,11 @@ entities: - type: Transform pos: -55.5,-44.5 parent: 2 + - uid: 9862 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 - uid: 9887 components: - type: Transform @@ -90639,6 +90855,11 @@ entities: - type: Transform pos: -7.5,-23.5 parent: 2 + - uid: 15461 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 - uid: 15469 components: - type: Transform @@ -90649,6 +90870,16 @@ entities: - type: Transform pos: -48.5,-7.5 parent: 2 + - uid: 15472 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 - uid: 15628 components: - type: Transform @@ -93609,16 +93840,6 @@ entities: - type: Transform pos: -42.5,-8.5 parent: 2 - - uid: 20513 - components: - - type: Transform - pos: -37.5,7.5 - parent: 2 - - uid: 20514 - components: - - type: Transform - pos: -38.5,7.5 - parent: 2 - uid: 20515 components: - type: Transform @@ -93634,11 +93855,6 @@ entities: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 20518 - components: - - type: Transform - pos: -42.5,7.5 - parent: 2 - uid: 20519 components: - type: Transform @@ -93709,11 +93925,6 @@ entities: - type: Transform pos: -33.5,-8.5 parent: 2 - - uid: 20534 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - uid: 20535 components: - type: Transform @@ -93799,6 +94010,11 @@ entities: - type: Transform pos: -31.5,18.5 parent: 2 + - uid: 20817 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 - proto: GrilleBroken entities: - uid: 656 @@ -93812,6 +94028,12 @@ entities: - type: Transform pos: -13.5,27.5 parent: 2 + - uid: 1279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 2 - uid: 2054 components: - type: Transform @@ -93947,6 +94169,12 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-64.5 parent: 2 + - uid: 13799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,7.5 + parent: 2 - uid: 14269 components: - type: Transform @@ -94817,467 +95045,201 @@ entities: - type: Transform pos: -13.111154,-8.26818 parent: 2 -- proto: Holopad +- proto: HolopadAiBackupPower entities: - - uid: 404 + - uid: 15 components: - - type: MetaData - name: holopad (Engi - Front Desk) - type: Transform - pos: -12.5,-14.5 + pos: -63.5,-9.5 parent: 2 - - type: Label - currentLabel: Engi - Front Desk - - type: NameModifier - baseName: holopad - - uid: 1559 +- proto: HolopadAiMain + entities: + - uid: 6738 components: - - type: MetaData - name: holopad (Sec - Detective) - - type: Transform - pos: 36.5,2.5 - parent: 2 - - type: Label - currentLabel: Sec - Detective - - type: NameModifier - baseName: holopad - - uid: 1593 - components: - - type: MetaData - name: holopad (Bridge) - - type: Transform - pos: -17.5,-56.5 - parent: 2 - - type: Label - currentLabel: Bridge - - type: NameModifier - baseName: holopad - - uid: 1955 - components: - - type: MetaData - name: holopad (Sci - Anomalies) - - type: Transform - pos: 38.5,-36.5 - parent: 2 - - type: Label - currentLabel: Sci - Anomalies - - type: NameModifier - baseName: holopad - - uid: 2091 - components: - - type: MetaData - name: holopad (Chapel) - - type: Transform - pos: 36.5,-13.5 - parent: 2 - - type: Label - currentLabel: Chapel - - type: NameModifier - baseName: holopad - - uid: 2582 - components: - - type: MetaData - name: holopad (Tech Vault) - - type: Transform - pos: 10.5,-18.5 - parent: 2 - - type: Label - currentLabel: Tech Vault - - type: NameModifier - baseName: holopad - - uid: 9726 - components: - - type: MetaData - name: holopad (AI Foyer) - type: Transform pos: -51.5,-12.5 parent: 2 - - type: Label - currentLabel: AI Foyer - - type: NameModifier - baseName: holopad - - uid: 9940 - components: - - type: MetaData - name: holopad (Command - Captain) - - type: Transform - pos: -23.5,-51.5 - parent: 2 - - type: Label - currentLabel: Command - Captain - - type: NameModifier - baseName: holopad - - uid: 10615 - components: - - type: MetaData - name: holopad (Library) - - type: Transform - pos: 14.5,-37.5 - parent: 2 - - type: Label - currentLabel: Library - - type: NameModifier - baseName: holopad - - uid: 13799 - components: - - type: MetaData - name: holopad (Sci - Front Desk) - - type: Transform - pos: 20.5,-25.5 - parent: 2 - - type: Label - currentLabel: Sci - Front Desk - - type: NameModifier - baseName: holopad - - uid: 15711 - components: - - type: MetaData - name: holopad (Engi - SMES Bank) - - type: Transform - pos: -2.5,-21.5 - parent: 2 - - type: Label - currentLabel: Engi - SMES Bank - - type: NameModifier - baseName: holopad - - uid: 17150 - components: - - type: MetaData - name: holopad (Telecoms) - - type: Transform - pos: 24.5,0.5 - parent: 2 - - type: Label - currentLabel: Telecoms - - type: NameModifier - baseName: holopad - - uid: 17615 - components: - - type: MetaData - name: holopad (Engi - TEG) - - type: Transform - pos: -1.5,-8.5 - parent: 2 - - type: Label - currentLabel: Engi - TEG - - type: NameModifier - baseName: holopad - - uid: 20707 - components: - - type: MetaData - name: holopad (Command - HoP) - - type: Transform - pos: -14.5,-47.5 - parent: 2 - - type: Label - currentLabel: Command - HoP - - type: NameModifier - baseName: holopad - - uid: 20708 - components: - - type: MetaData - name: holopad (Med - Medbay) - - type: Transform - pos: -38.5,-22.5 - parent: 2 - - type: Label - currentLabel: Med - Medbay - - type: NameModifier - baseName: holopad +- proto: HolopadAiUpload + entities: - uid: 20709 components: - - type: MetaData - name: holopad (Med - Virology) - type: Transform - pos: -50.5,-41.5 + pos: -62.5,-16.5 parent: 2 - - type: Label - currentLabel: Med - Virology - - type: NameModifier - baseName: holopad - - uid: 20710 - components: - - type: MetaData - name: holopad (Med - Surgery) - - type: Transform - pos: -51.5,-30.5 - parent: 2 - - type: Label - currentLabel: Med - Surgery - - type: NameModifier - baseName: holopad - - uid: 20711 - components: - - type: MetaData - name: holopad (Med - Chemistry) - - type: Transform - pos: -29.5,-35.5 - parent: 2 - - type: Label - currentLabel: Med - Chemistry - - type: NameModifier - baseName: holopad - - uid: 20712 - components: - - type: MetaData - name: holopad (Med - Front Desk) - - type: Transform - pos: -28.5,-27.5 - parent: 2 - - type: Label - currentLabel: Med - Front Desk - - type: NameModifier - baseName: holopad - - uid: 20713 - components: - - type: MetaData - name: holopad (Med - Morgue) - - type: Transform - pos: -42.5,-46.5 - parent: 2 - - type: Label - currentLabel: Med - Morgue - - type: NameModifier - baseName: holopad - - uid: 20715 - components: - - type: MetaData - name: holopad (Janitor) - - type: Transform - pos: 28.5,2.5 - parent: 2 - - type: Label - currentLabel: Janitor - - type: NameModifier - baseName: holopad - - uid: 20716 - components: - - type: MetaData - name: holopad (Sci - Robotics) - - type: Transform - pos: 34.5,-25.5 - parent: 2 - - type: Label - currentLabel: Sci - Robotics - - type: NameModifier - baseName: holopad - - uid: 20717 - components: - - type: MetaData - name: holopad (Sci - Artifacts) - - type: Transform - pos: 34.5,-45.5 - parent: 2 - - type: Label - currentLabel: Sci - Artifacts - - type: NameModifier - baseName: holopad - - uid: 20720 - components: - - type: MetaData - name: holopad (Sec - Lawyer) - - type: Transform - pos: 29.5,11.5 - parent: 2 - - type: Label - currentLabel: Sec - Lawyer - - type: NameModifier - baseName: holopad - - uid: 20721 - components: - - type: MetaData - name: holopad (Cargo - Front Desk) - - type: Transform - pos: 5.5,16.5 - parent: 2 - - type: Label - currentLabel: Cargo - Front Desk - - type: NameModifier - baseName: holopad - - uid: 20723 - components: - - type: MetaData - name: holopad (Cargo - Salvage) - - type: Transform - pos: 16.5,23.5 - parent: 2 - - type: Label - currentLabel: Cargo - Salvage - - type: NameModifier - baseName: holopad - - uid: 20724 - components: - - type: MetaData - name: holopad (Sec - Work Area) - - type: Transform - pos: -25.5,4.5 - parent: 2 - - type: Label - currentLabel: Sec - Work Area - - type: NameModifier - baseName: holopad - - uid: 20725 - components: - - type: MetaData - name: holopad (Sec - Brig) - - type: Transform - pos: -25.5,-9.5 - parent: 2 - - type: Label - currentLabel: Sec - Brig - - type: NameModifier - baseName: holopad - - uid: 20726 - components: - - type: MetaData - name: holopad (Sec - Warden) - - type: Transform - pos: -20.5,-4.5 - parent: 2 - - type: Label - currentLabel: Sec - Warden - - type: NameModifier - baseName: holopad - - uid: 20728 - components: - - type: MetaData - name: holopad (Hydroponics) - - type: Transform - pos: -17.5,-33.5 - parent: 2 - - type: Label - currentLabel: Hydroponics - - type: NameModifier - baseName: holopad - - uid: 20732 - components: - - type: MetaData - name: holopad (Game Room) - - type: Transform - pos: 19.5,-47.5 - parent: 2 - - type: Label - currentLabel: Game Room - - type: NameModifier - baseName: holopad - - uid: 20733 - components: - - type: MetaData - name: holopad (Engi - Atmos) - - type: Transform - pos: -2.5,-2.5 - parent: 2 - - type: Label - currentLabel: Engi - Atmos - - type: NameModifier - baseName: holopad - - uid: 20739 - components: - - type: MetaData - name: holopad (Sec - Locker Room) - - type: Transform - pos: -25.5,16.5 - parent: 2 - - type: Label - currentLabel: Sec - Locker Room - - type: NameModifier - baseName: holopad - - uid: 20740 - components: - - type: MetaData - name: holopad (Med - Psychologist) - - type: Transform - pos: -32.5,-44.5 - parent: 2 - - type: Label - currentLabel: Med - Psychologist - - type: NameModifier - baseName: holopad - - uid: 20756 - components: - - type: MetaData - name: holopad (Command - CE) - - type: Transform - pos: -8.5,-24.5 - parent: 2 - - type: Label - currentLabel: Command - CE - - type: NameModifier - baseName: holopad - - uid: 20757 - components: - - type: MetaData - name: holopad (Command - QM) - - type: Transform - pos: -7.5,18.5 - parent: 2 - - type: Label - currentLabel: Command - QM - - type: NameModifier - baseName: holopad - - uid: 20758 - components: - - type: MetaData - name: holopad (Command - RD) - - type: Transform - pos: 30.5,-34.5 - parent: 2 - - type: Label - currentLabel: Command - RD - - type: NameModifier - baseName: holopad - - uid: 20759 - components: - - type: MetaData - name: holopad (Command - HoS) - - type: Transform - pos: -22.5,11.5 - parent: 2 - - type: Label - currentLabel: Command - HoS - - type: NameModifier - baseName: holopad - - uid: 20760 - components: - - type: MetaData - name: holopad (Command - CMO) - - type: Transform - pos: -42.5,-34.5 - parent: 2 - - type: Label - currentLabel: Command - CMO - - type: NameModifier - baseName: holopad -- proto: HolopadLongRange +- proto: HolopadCargoBayLongRange entities: - - uid: 20706 + - uid: 20534 components: - - type: MetaData - name: long-range holopad (Bridge) - - type: Transform - pos: -17.5,-52.5 - parent: 2 - - type: Label - currentLabel: Bridge - - type: NameModifier - baseName: long-range holopad - - uid: 20722 - components: - - type: MetaData - name: long-range holopad (Cargo) - type: Transform pos: 4.5,24.5 parent: 2 - - type: Label - currentLabel: Cargo - - type: NameModifier - baseName: long-range holopad +- proto: HolopadCargoFront + entities: + - uid: 20495 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 +- proto: HolopadCargoSalvageBay + entities: + - uid: 1559 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 6554 + components: + - type: Transform + pos: -17.5,-56.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 11505 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 6774 + components: + - type: Transform + pos: -23.5,-51.5 + parent: 2 +- proto: HolopadCommandCe + entities: + - uid: 9726 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 9968 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 +- proto: HolopadCommandHop + entities: + - uid: 6784 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 +- proto: HolopadCommandHos + entities: + - uid: 9940 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 +- proto: HolopadCommandQm + entities: + - uid: 20726 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 +- proto: HolopadCommandRd + entities: + - uid: 20518 + components: + - type: Transform + pos: 30.5,-34.5 + parent: 2 +- proto: HolopadEngineeringAME + entities: + - uid: 20760 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 20725 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 20831 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 +- proto: HolopadEngineeringFront + entities: + - uid: 2485 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 +- proto: HolopadEngineeringPower + entities: + - uid: 6775 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 +- proto: HolopadEngineeringTechVault + entities: + - uid: 17150 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 17423 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 +- proto: HolopadGeneralArrivals + entities: + - uid: 20804 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 +- proto: HolopadGeneralEvac + entities: + - uid: 20803 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 526 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 2 +- proto: HolopadServiceGameRoom + entities: + - uid: 11044 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 2 +- proto: HolopadGeneralTools + entities: + - uid: 20801 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 - proto: HolopadMachineCircuitboard entities: - uid: 20729 components: - type: Transform - pos: 6.8019543,-27.547781 + pos: 6.764127,-27.571396 parent: 2 - uid: 20730 components: @@ -95289,6 +95251,195 @@ entities: - type: Transform pos: 12.863626,-12.920663 parent: 2 +- proto: HolopadMedicalChemistry + entities: + - uid: 7977 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 +- proto: HolopadMedicalFront + entities: + - uid: 7992 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 6807 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 +- proto: HolopadMedicalMorgue + entities: + - uid: 8054 + components: + - type: Transform + pos: -42.5,-46.5 + parent: 2 +- proto: HolopadMedicalSurgery + entities: + - uid: 7966 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 2 +- proto: HolopadMedicalVirology + entities: + - uid: 6819 + components: + - type: Transform + pos: -50.5,-41.5 + parent: 2 +- proto: HolopadScienceAnomaly + entities: + - uid: 15892 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 +- proto: HolopadScienceArtifact + entities: + - uid: 20493 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 +- proto: HolopadScienceBreakroom + entities: + - uid: 20715 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 +- proto: HolopadScienceFront + entities: + - uid: 7287 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 +- proto: HolopadScienceRnd + entities: + - uid: 17330 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 +- proto: HolopadScienceRobotics + entities: + - uid: 20492 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 +- proto: HolopadSecurityBreakroom + entities: + - uid: 20799 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 17615 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 +- proto: HolopadSecurityBrigMed + entities: + - uid: 20816 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 +- proto: HolopadSecurityDetective + entities: + - uid: 15693 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 +- proto: HolopadSecurityLawyer + entities: + - uid: 13893 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 +- proto: HolopadSecurityLockerRoom + entities: + - uid: 20250 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 +- proto: HolopadSecurityPerma + entities: + - uid: 13014 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 +- proto: HolopadSecurityWarden + entities: + - uid: 20514 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 20814 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 2 +- proto: HolopadServiceBotany + entities: + - uid: 20724 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 17088 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 +- proto: HolopadServiceJanitor + entities: + - uid: 20441 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 +- proto: HolopadServiceKitchen + entities: + - uid: 20815 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 +- proto: HolopadServiceLibrary + entities: + - uid: 17248 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 +- proto: HolopadServiceNewsroom + entities: + - uid: 6267 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 2 - proto: HoloprojectorSecurity entities: - uid: 14409 @@ -95497,12 +95648,9 @@ entities: - uid: 3345 components: - type: Transform - anchored: False rot: 3.141592653589793 rad pos: -18.5,-35.5 parent: 2 - - type: Physics - bodyType: Dynamic - uid: 3346 components: - type: Transform @@ -95636,7 +95784,7 @@ entities: - uid: 16476 components: - type: Transform - pos: -62.443382,-16.328379 + pos: -61.65887,-11.452108 parent: 2 - proto: IntercomEngineering entities: @@ -96136,6 +96284,10 @@ entities: - Pressed: Toggle 15647: - Pressed: Toggle + 9963: + - Pressed: Toggle + 20824: + - Pressed: Toggle - proto: LockableButtonCargo entities: - uid: 17447 @@ -96632,26 +96784,31 @@ entities: parent: 2 - proto: LockerEngineerFilled entities: - - uid: 15 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 2 - uid: 137 components: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 1286 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 2 - uid: 8463 components: - type: Transform pos: -2.5,-15.5 parent: 2 + - uid: 13994 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 20707 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 20829 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 - proto: LockerEvidence entities: - uid: 465 @@ -96689,10 +96846,10 @@ entities: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 12649 + - uid: 20721 components: - type: Transform - pos: -32.5,-3.5 + pos: -30.5,-3.5 parent: 2 - proto: LockerFreezer entities: @@ -96731,21 +96888,11 @@ entities: parent: 2 - proto: LockerMedicalFilled entities: - - uid: 4817 - components: - - type: Transform - pos: -32.5,-23.5 - parent: 2 - uid: 4842 components: - type: Transform pos: -45.5,-34.5 parent: 2 - - uid: 4950 - components: - - type: Transform - pos: -33.5,-23.5 - parent: 2 - uid: 18053 components: - type: Transform @@ -96763,16 +96910,21 @@ entities: - type: Transform pos: -34.5,-23.5 parent: 2 - - uid: 8054 - components: - - type: Transform - pos: -39.5,-24.5 - parent: 2 - uid: 13462 components: - type: Transform pos: -45.5,-32.5 parent: 2 + - uid: 18633 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 20756 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 - proto: LockerMime entities: - uid: 3557 @@ -97971,20 +98123,20 @@ entities: - type: Transform pos: -30.5,11.5 parent: 2 - - uid: 4955 + - uid: 8109 components: - type: Transform - pos: -39.5,-21.5 + pos: -38.5,-20.5 parent: 2 - - uid: 7977 + - uid: 20711 components: - type: Transform - pos: -39.5,-23.5 + pos: -33.5,-23.5 parent: 2 - - uid: 7992 + - uid: 20759 components: - type: Transform - pos: -37.5,-23.5 + pos: -39.5,-24.5 parent: 2 - proto: MedicalTechFab entities: @@ -98896,10 +99048,10 @@ entities: - type: Transform pos: 19.5,15.5 parent: 2 - - uid: 9968 + - uid: 6189 components: - type: Transform - pos: -9.5,-13.5 + pos: -11.5,-14.5 parent: 2 - uid: 18637 components: @@ -98995,7 +99147,7 @@ entities: - uid: 2547 components: - type: Transform - pos: -6.4553146,-12.403858 + pos: -10.496071,-13.459224 parent: 2 - uid: 4775 components: @@ -99991,17 +100143,18 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,12.5 parent: 2 + - uid: 973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,13.5 + parent: 2 - uid: 1765 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,16.5 parent: 2 - - uid: 3008 - components: - - type: Transform - pos: -17.5,20.5 - parent: 2 - uid: 6121 components: - type: Transform @@ -101734,6 +101887,11 @@ entities: parent: 2 - type: PointLight energy: 0.5 + - uid: 6943 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 - uid: 7335 components: - type: Transform @@ -101860,6 +102018,12 @@ entities: - type: Transform pos: -10.5,-50.5 parent: 2 + - uid: 9970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-54.5 + parent: 2 - uid: 10383 components: - type: Transform @@ -102113,12 +102277,6 @@ entities: - type: Transform pos: 16.5,-55.5 parent: 2 - - uid: 13893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,13.5 - parent: 2 - uid: 13896 components: - type: Transform @@ -102142,12 +102300,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-33.5 parent: 2 - - uid: 13994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-54.5 - parent: 2 - uid: 14406 components: - type: Transform @@ -102671,11 +102823,6 @@ entities: - type: Transform pos: 21.5,-28.5 parent: 2 - - uid: 18633 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 2 - proto: ProtolatheMachineCircuitboard entities: - uid: 15937 @@ -102833,11 +102980,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-19.5 parent: 2 - - uid: 2281 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 2 - uid: 2300 components: - type: Transform @@ -103203,11 +103345,6 @@ entities: - type: Transform pos: 29.5,-0.5 parent: 2 - - uid: 9526 - components: - - type: Transform - pos: -24.5,19.5 - parent: 2 - uid: 10022 components: - type: Transform @@ -103235,12 +103372,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-51.5 parent: 2 - - uid: 11505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-25.5 - parent: 2 - uid: 11973 components: - type: Transform @@ -103372,11 +103503,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 - - uid: 16475 - components: - - type: Transform - pos: -62.5,-16.5 - parent: 2 - uid: 16759 components: - type: Transform @@ -103482,6 +103608,11 @@ entities: - type: Transform pos: 44.5,-50.5 parent: 2 + - uid: 20513 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 - uid: 20674 components: - type: Transform @@ -103493,6 +103624,11 @@ entities: - type: Transform pos: -34.5,16.5 parent: 2 + - uid: 20712 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 - proto: RadioHandheld entities: - uid: 3964 @@ -103951,6 +104087,16 @@ entities: parent: 2 - proto: RandomBoard entities: + - uid: 1593 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 - uid: 2592 components: - type: Transform @@ -105500,6 +105646,11 @@ entities: - type: Transform pos: -24.5,8.5 parent: 2 + - uid: 299 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 - uid: 332 components: - type: Transform @@ -106330,6 +106481,11 @@ entities: - type: Transform pos: -7.5,16.5 parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 - uid: 5132 components: - type: Transform @@ -107635,6 +107791,11 @@ entities: - type: Transform pos: 59.5,-49.5 parent: 2 + - uid: 9696 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 - uid: 9800 components: - type: Transform @@ -108713,7 +108874,7 @@ entities: - uid: 4002 components: - type: Transform - pos: -3.7934585,-14.338759 + pos: -3.7460008,-14.344318 parent: 2 - uid: 4003 components: @@ -108783,7 +108944,7 @@ entities: - uid: 2546 components: - type: Transform - pos: -6.5663524,-12.494936 + pos: -10.506894,-13.427014 parent: 2 - uid: 4759 components: @@ -109007,6 +109168,11 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,11.5 parent: 2 + - uid: 9963 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 - uid: 10464 components: - type: Transform @@ -109255,6 +109421,11 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-35.5 parent: 2 + - uid: 20824 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 - proto: ShuttersWindowOpen entities: - uid: 15630 @@ -109995,17 +110166,17 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 914 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 2 - uid: 15669 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-51.5 parent: 2 + - uid: 20578 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 - proto: SignFlammableMed entities: - uid: 5841 @@ -112069,10 +112240,10 @@ entities: parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 15648 + - uid: 9880 components: - type: Transform - pos: -25.5,-50.5 + pos: -23.5,-53.5 parent: 2 - proto: SpawnMobFrog entities: @@ -112130,16 +112301,21 @@ entities: parent: 2 - proto: SpawnMobMouse entities: - - uid: 6267 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 2 - uid: 13197 components: - type: Transform pos: 30.5,-55.5 parent: 2 + - uid: 20137 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 20710 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 - proto: SpawnMobParrot entities: - uid: 16167 @@ -112275,10 +112451,10 @@ entities: parent: 2 - proto: SpawnPointCaptain entities: - - uid: 9969 + - uid: 9697 components: - type: Transform - pos: -25.5,-54.5 + pos: -25.5,-55.5 parent: 2 - proto: SpawnPointCargoTechnician entities: @@ -112376,10 +112552,10 @@ entities: parent: 2 - proto: SpawnPointDetective entities: - - uid: 6162 + - uid: 20494 components: - type: Transform - pos: 36.5,2.5 + pos: 36.5,3.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: @@ -112402,11 +112578,6 @@ entities: parent: 2 - proto: SpawnPointJanitor entities: - - uid: 17248 - components: - - type: Transform - pos: 28.5,2.5 - parent: 2 - uid: 17249 components: - type: Transform @@ -112417,6 +112588,11 @@ entities: - type: Transform pos: 28.5,3.5 parent: 2 + - uid: 20669 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 - proto: SpawnPointLatejoin entities: - uid: 17217 @@ -112725,21 +112901,21 @@ entities: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 5538 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 2 - - uid: 5558 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 2 - uid: 6779 components: - type: Transform pos: 35.5,-25.5 parent: 2 + - uid: 20658 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 20716 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 - uid: 20719 components: - type: Transform @@ -112771,11 +112947,6 @@ entities: parent: 2 - proto: SpawnPointScientist entities: - - uid: 3030 - components: - - type: Transform - pos: 34.5,-25.5 - parent: 2 - uid: 5551 components: - type: Transform @@ -112786,6 +112957,21 @@ entities: - type: Transform pos: 36.5,-40.5 parent: 2 + - uid: 20579 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 20683 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 20684 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 - uid: 20718 components: - type: Transform @@ -113773,6 +113959,11 @@ entities: - type: Transform pos: -34.5,22.5 parent: 2 + - uid: 9950 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 - uid: 15035 components: - type: Transform @@ -113814,11 +114005,6 @@ entities: parent: 2 - proto: SuitStorageEVAEmergency entities: - - uid: 299 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 2 - uid: 5470 components: - type: Transform @@ -113839,6 +114025,11 @@ entities: - type: Transform pos: 52.5,-33.5 parent: 2 + - uid: 12884 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 - uid: 18726 components: - type: Transform @@ -113846,16 +114037,16 @@ entities: parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 2389 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 2 - uid: 13136 components: - type: Transform pos: -29.5,-3.5 parent: 2 + - uid: 20723 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 - proto: SuitStorageHOS entities: - uid: 12593 @@ -114110,14 +114301,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Station Anchor - - uid: 11044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 2 - - type: SurveillanceCamera - id: TEG East - uid: 11069 components: - type: Transform @@ -114149,13 +114332,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Lockers - - uid: 14675 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 2 - - type: SurveillanceCamera - id: Atmos East - uid: 18047 components: - type: Transform @@ -114568,6 +114744,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Frog Pond + - uid: 19016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - type: SurveillanceCamera + id: Cryo Pods - uid: 20121 components: - type: Transform @@ -114576,13 +114760,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Surgery - - uid: 20137 - components: - - type: Transform - pos: -33.5,-23.5 - parent: 2 - - type: SurveillanceCamera - id: Cryo Pods - uid: 20406 components: - type: Transform @@ -115025,6 +115202,11 @@ entities: - type: Transform pos: -27.5,0.5 parent: 2 + - uid: 404 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 - uid: 467 components: - type: Transform @@ -115116,23 +115298,11 @@ entities: - type: Transform pos: -12.5,-8.5 parent: 2 - - uid: 2172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-13.5 - parent: 2 - uid: 2191 components: - type: Transform pos: -20.5,6.5 parent: 2 - - uid: 2233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-13.5 - parent: 2 - uid: 2358 components: - type: Transform @@ -115427,11 +115597,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-25.5 parent: 2 - - uid: 4962 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 2 - uid: 5002 components: - type: Transform @@ -115946,6 +116111,11 @@ entities: - type: Transform pos: -33.5,18.5 parent: 2 + - uid: 20706 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 - proto: TableCarpet entities: - uid: 26 @@ -116287,10 +116457,10 @@ entities: - type: Transform pos: -24.5,-50.5 parent: 2 - - uid: 9699 + - uid: 9846 components: - type: Transform - pos: -26.5,-52.5 + pos: -26.5,-54.5 parent: 2 - uid: 12866 components: @@ -116443,23 +116613,11 @@ entities: - type: Transform pos: -51.5,-42.5 parent: 2 - - uid: 7966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-20.5 - parent: 2 - uid: 8033 components: - type: Transform pos: -52.5,-42.5 parent: 2 - - uid: 8109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-20.5 - parent: 2 - uid: 8157 components: - type: Transform @@ -116475,6 +116633,22 @@ entities: - type: Transform pos: 22.5,-59.5 parent: 2 + - uid: 16420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 2 + - uid: 20739 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 20740 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 - proto: TablePlasmaGlass entities: - uid: 6734 @@ -117415,7 +117589,7 @@ entities: - uid: 2236 components: - type: Transform - pos: -3.3411338,-15.425548 + pos: -3.4769769,-15.417981 parent: 2 - uid: 2252 components: @@ -117647,7 +117821,7 @@ entities: - uid: 2243 components: - type: Transform - pos: -6.658042,-14.307488 + pos: -6.640417,-14.156688 parent: 2 - proto: ToyFigurineHeadOfPersonnel entities: @@ -117735,16 +117909,16 @@ entities: parent: 2 - proto: ToyMouse entities: - - uid: 9970 - components: - - type: Transform - pos: -25.625864,-50.446644 - parent: 2 - uid: 13548 components: - type: Transform pos: -42.55918,-33.612373 parent: 2 + - uid: 20819 + components: + - type: Transform + pos: -23.432558,-53.502254 + parent: 2 - proto: ToyRubberDuck entities: - uid: 9864 @@ -118598,11 +118772,6 @@ entities: - type: Transform pos: 1.5,13.5 parent: 2 - - uid: 152 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 2 - uid: 155 components: - type: Transform @@ -118728,11 +118897,6 @@ entities: - type: Transform pos: -25.5,-12.5 parent: 2 - - uid: 390 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - uid: 392 components: - type: Transform @@ -123653,16 +123817,6 @@ entities: - type: Transform pos: -23.5,-56.5 parent: 2 - - uid: 9696 - components: - - type: Transform - pos: -23.5,-54.5 - parent: 2 - - uid: 9697 - components: - - type: Transform - pos: -24.5,-54.5 - parent: 2 - uid: 9701 components: - type: Transform @@ -123683,11 +123837,6 @@ entities: - type: Transform pos: -12.5,23.5 parent: 2 - - uid: 9846 - components: - - type: Transform - pos: -26.5,-55.5 - parent: 2 - uid: 9850 components: - type: Transform @@ -123703,11 +123852,6 @@ entities: - type: Transform pos: -11.5,-57.5 parent: 2 - - uid: 9862 - components: - - type: Transform - pos: -24.5,-55.5 - parent: 2 - uid: 9863 components: - type: Transform @@ -123718,11 +123862,6 @@ entities: - type: Transform pos: -12.5,-57.5 parent: 2 - - uid: 9880 - components: - - type: Transform - pos: -25.5,-55.5 - parent: 2 - uid: 9886 components: - type: Transform @@ -123758,16 +123897,6 @@ entities: - type: Transform pos: -27.5,-50.5 parent: 2 - - uid: 9950 - components: - - type: Transform - pos: -26.5,-53.5 - parent: 2 - - uid: 9963 - components: - - type: Transform - pos: -24.5,-53.5 - parent: 2 - uid: 9971 components: - type: Transform @@ -124561,7 +124690,6 @@ entities: - uid: 15467 components: - type: Transform - rot: 1.5707963267948966 rad pos: -64.5,-17.5 parent: 2 - uid: 15478 @@ -125019,11 +125147,6 @@ entities: - type: Transform pos: 56.5,-60.5 parent: 2 - - uid: 16673 - components: - - type: Transform - pos: -21.5,-54.5 - parent: 2 - uid: 16683 components: - type: Transform @@ -125044,11 +125167,6 @@ entities: - type: Transform pos: 58.5,-60.5 parent: 2 - - uid: 16725 - components: - - type: Transform - pos: -21.5,-55.5 - parent: 2 - uid: 16730 components: - type: Transform @@ -125709,6 +125827,11 @@ entities: - type: Transform pos: -36.5,13.5 parent: 2 + - uid: 20720 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 - uid: 20742 components: - type: Transform @@ -125729,6 +125852,11 @@ entities: - type: Transform pos: -40.5,-59.5 parent: 2 + - uid: 20770 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 - proto: WallReinforcedRust entities: - uid: 141 @@ -127821,11 +127949,6 @@ entities: - type: Transform pos: 61.5,-55.5 parent: 2 - - uid: 17088 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 2 - uid: 17090 components: - type: Transform @@ -127986,7 +128109,6 @@ entities: - uid: 39 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-5.5 parent: 2 - uid: 86 @@ -128484,6 +128606,11 @@ entities: - type: Transform pos: -17.5,-49.5 parent: 2 + - uid: 3008 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 - uid: 3033 components: - type: Transform @@ -131209,6 +131336,11 @@ entities: - type: Transform pos: 10.5,-14.5 parent: 2 + - uid: 15648 + components: + - type: Transform + pos: -23.5,-54.5 + parent: 2 - uid: 15704 components: - type: Transform @@ -131269,6 +131401,11 @@ entities: - type: Transform pos: 6.5,21.5 parent: 2 + - uid: 16673 + components: + - type: Transform + pos: -24.5,-54.5 + parent: 2 - uid: 16715 components: - type: Transform @@ -131284,6 +131421,11 @@ entities: - type: Transform pos: 10.5,21.5 parent: 2 + - uid: 17129 + components: + - type: Transform + pos: -24.5,-55.5 + parent: 2 - uid: 17131 components: - type: Transform @@ -131429,6 +131571,26 @@ entities: - type: Transform pos: 38.5,5.5 parent: 2 + - uid: 20237 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 20245 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + pos: -21.5,-54.5 + parent: 2 + - uid: 20247 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 2 - uid: 20768 components: - type: Transform @@ -133577,12 +133739,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-25.5 parent: 2 - - uid: 5129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-25.5 - parent: 2 - uid: 5187 components: - type: Transform @@ -133897,6 +134053,12 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,-16.5 parent: 2 + - uid: 16475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-24.5 + parent: 2 - uid: 17452 components: - type: Transform diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index dc0106c7e9..a5ac0d5208 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -548,6 +548,22 @@ - type: Label currentLabel: holopad-engineering-tech-vault +- type: entity + parent: Holopad + id: HolopadEngineeringAME + suffix: AME + components: + - type: Label + currentLabel: holopad-engineering-ame + +- type: entity + parent: Holopad + id: HolopadEngineeringPower + suffix: Power + components: + - type: Label + currentLabel: holopad-engineering-power + # Security - type: entity parent: Holopad @@ -584,7 +600,7 @@ - type: entity parent: Holopad id: HolopadSecurityBreakroom - suffix: Breakroom + suffix: Sec Breakroom components: - type: Label currentLabel: holopad-security-breakroom @@ -629,6 +645,22 @@ - type: Label currentLabel: holopad-security-armory +- type: entity + parent: Holopad + id: HolopadSecurityLockerRoom + suffix: Sec Locker Room + components: + - type: Label + currentLabel: holopad-security-locker-room + +- type: entity + parent: Holopad + id: HolopadSecurityBrigMed + suffix: Brig Med + components: + - type: Label + currentLabel: holopad-security-brig-med + # Service - type: entity parent: Holopad @@ -678,6 +710,14 @@ - type: Label currentLabel: holopad-service-library +- type: entity + parent: Holopad + id: HolopadServiceGameRoom + suffix: Game Room + components: + - type: Label + currentLabel: holopad-service-gameroom + - type: entity parent: Holopad id: HolopadServiceNewsroom From 28fa7cedc7784b4c76e4904faf1de6d889439313 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Wed, 18 Dec 2024 17:05:06 -0800 Subject: [PATCH 161/263] Meta Power Rebalance + Gas Pipe Sensors, Holopads (#33949) power fixes, sensors, dim lights --- Resources/Maps/meta.yml | 5193 ++++++++++++++++++++++----------------- 1 file changed, 2977 insertions(+), 2216 deletions(-) diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index e6cb3d95ee..f00cb0eab9 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -256,7 +256,7 @@ entities: version: 6 4,0: ind: 4,0 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,2: ind: -3,2 @@ -738,6 +738,7 @@ entities: 3533: 76,-37 3566: 70,-39 3622: 77,-31 + 3674: 70,5 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -5026,11 +5027,23 @@ entities: id: WarnCornerNE decals: 3544: 74,-33 + 3662: 75,7 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 3663: 71,7 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 2747: -27,-26 + 3661: 75,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 3660: 71,4 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE @@ -5145,6 +5158,8 @@ entities: 3558: 74,-36 3617: 67,-26 3638: 69,-27 + 3672: 75,6 + 3673: 75,5 - node: color: '#3EB38896' id: WarnLineGreyscaleE @@ -5380,6 +5395,9 @@ entities: 3631: 72,-26 3632: 71,-26 3633: 70,-26 + 3669: 72,4 + 3670: 73,4 + 3671: 74,4 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5436,6 +5454,8 @@ entities: 3518: 33,8 3616: 66,-26 3634: 73,-27 + 3667: 71,6 + 3668: 71,5 - node: color: '#DE3A3A96' id: WarnLineW @@ -5515,6 +5535,9 @@ entities: 3635: 72,-28 3636: 71,-28 3637: 70,-28 + 3664: 72,7 + 3665: 73,7 + 3666: 74,7 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -8696,13 +8719,22 @@ entities: - uid: 12657 components: - type: Transform - pos: 46.51438,8.721584 + pos: 46.591225,8.620684 parent: 5350 - uid: 16506 components: - type: Transform pos: -42.475952,-54.406525 parent: 5350 +- proto: ActionToggleLight + entities: + - uid: 19147 + components: + - type: Transform + parent: 26500 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 26500 - proto: AirAlarm entities: - uid: 14304 @@ -11199,7 +11231,7 @@ entities: pos: -42.5,29.5 parent: 5350 - type: Door - secondsUntilStateChange: -33320.883 + secondsUntilStateChange: -44564.586 state: Opening - type: DeviceLinkSink invokeCounter: 2 @@ -13787,17 +13819,22 @@ entities: parent: 5350 - proto: AmeController entities: - - uid: 21812 + - uid: 19141 components: - type: Transform - pos: 71.5,8.5 + pos: 69.5,4.5 parent: 5350 - proto: AmeJar entities: - uid: 23812 components: - type: Transform - pos: 73.53678,8.623411 + pos: 73.73899,8.602977 + parent: 5350 + - uid: 27581 + components: + - type: Transform + pos: 73.410866,8.602977 parent: 5350 - proto: AnomalyScanner entities: @@ -18760,6 +18797,11 @@ entities: - type: Transform pos: -18.5,13.5 parent: 5350 + - uid: 3930 + components: + - type: Transform + pos: 72.5,3.5 + parent: 5350 - uid: 4063 components: - type: Transform @@ -21835,6 +21877,11 @@ entities: - type: Transform pos: 68.5,-6.5 parent: 5350 + - uid: 9057 + components: + - type: Transform + pos: 75.5,3.5 + parent: 5350 - uid: 9539 components: - type: Transform @@ -33475,30 +33522,10 @@ entities: - type: Transform pos: 70.5,6.5 parent: 5350 - - uid: 23351 - components: - - type: Transform - pos: 71.5,6.5 - parent: 5350 - uid: 23352 components: - type: Transform - pos: 72.5,6.5 - parent: 5350 - - uid: 23353 - components: - - type: Transform - pos: 73.5,6.5 - parent: 5350 - - uid: 23354 - components: - - type: Transform - pos: 74.5,6.5 - parent: 5350 - - uid: 23355 - components: - - type: Transform - pos: 75.5,6.5 + pos: 74.5,3.5 parent: 5350 - uid: 23356 components: @@ -33880,6 +33907,11 @@ entities: - type: Transform pos: 111.5,-18.5 parent: 5350 + - uid: 25814 + components: + - type: Transform + pos: 71.5,3.5 + parent: 5350 - uid: 25994 components: - type: Transform @@ -35380,6 +35412,11 @@ entities: - type: Transform pos: 70.5,-37.5 parent: 5350 + - uid: 27584 + components: + - type: Transform + pos: 73.5,3.5 + parent: 5350 - proto: CableApcStack entities: - uid: 1550 @@ -40274,11 +40311,6 @@ entities: - type: Transform pos: 70.5,8.5 parent: 5350 - - uid: 14148 - components: - - type: Transform - pos: 71.5,8.5 - parent: 5350 - uid: 14291 components: - type: Transform @@ -40289,11 +40321,6 @@ entities: - type: Transform pos: -10.5,-44.5 parent: 5350 - - uid: 15042 - components: - - type: Transform - pos: 72.5,8.5 - parent: 5350 - uid: 15639 components: - type: Transform @@ -40619,11 +40646,6 @@ entities: - type: Transform pos: -11.5,-44.5 parent: 5350 - - uid: 16232 - components: - - type: Transform - pos: 73.5,8.5 - parent: 5350 - uid: 16958 components: - type: Transform @@ -42194,21 +42216,6 @@ entities: - type: Transform pos: 63.5,59.5 parent: 5350 - - uid: 19140 - components: - - type: Transform - pos: 73.5,7.5 - parent: 5350 - - uid: 19141 - components: - - type: Transform - pos: 73.5,6.5 - parent: 5350 - - uid: 19147 - components: - - type: Transform - pos: 73.5,5.5 - parent: 5350 - uid: 19887 components: - type: Transform @@ -43509,11 +43516,6 @@ entities: - type: Transform pos: -7.5,-58.5 parent: 5350 - - uid: 21681 - components: - - type: Transform - pos: 73.5,4.5 - parent: 5350 - uid: 22416 components: - type: Transform @@ -44514,6 +44516,26 @@ entities: - type: Transform pos: 77.5,-30.5 parent: 5350 + - uid: 27654 + components: + - type: Transform + pos: 70.5,7.5 + parent: 5350 + - uid: 27655 + components: + - type: Transform + pos: 70.5,6.5 + parent: 5350 + - uid: 27656 + components: + - type: Transform + pos: 70.5,5.5 + parent: 5350 + - uid: 27657 + components: + - type: Transform + pos: 70.5,4.5 + parent: 5350 - proto: CableHVStack entities: - uid: 1551 @@ -56611,30 +56633,6 @@ entities: - type: Transform pos: 63.5,27.5 parent: 5350 - - uid: 23805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,4.5 - parent: 5350 - - uid: 23806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,5.5 - parent: 5350 - - uid: 23807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,6.5 - parent: 5350 - - uid: 23808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,7.5 - parent: 5350 - uid: 24057 components: - type: Transform @@ -57084,6 +57082,26 @@ entities: rot: 3.141592653589793 rad pos: 72.5,-21.5 parent: 5350 + - uid: 27658 + components: + - type: Transform + pos: 70.5,7.5 + parent: 5350 + - uid: 27659 + components: + - type: Transform + pos: 70.5,6.5 + parent: 5350 + - uid: 27660 + components: + - type: Transform + pos: 70.5,5.5 + parent: 5350 + - uid: 27661 + components: + - type: Transform + pos: 70.5,4.5 + parent: 5350 - proto: Chair entities: - uid: 347 @@ -58356,12 +58374,6 @@ entities: - type: Transform pos: -40.5,2.5 parent: 5350 - - uid: 3930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,3.5 - parent: 5350 - uid: 4039 components: - type: Transform @@ -58671,6 +58683,12 @@ entities: - type: Transform pos: 71.5,-30.5 parent: 5350 + - uid: 27635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,2.5 + parent: 5350 - proto: ChairOfficeLight entities: - uid: 5098 @@ -58750,11 +58768,6 @@ entities: - type: Transform pos: -16.5,-35.5 parent: 5350 - - uid: 14900 - components: - - type: Transform - pos: -15.5,-35.5 - parent: 5350 - uid: 15590 components: - type: Transform @@ -60935,29 +60948,6 @@ entities: - 0 - 0 - 0 - - uid: 22531 - components: - - type: Transform - pos: 38.5,-53.5 - parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 22532 components: - type: Transform @@ -61096,6 +61086,11 @@ entities: - 0 - 0 - 0 + - uid: 27617 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 5350 - proto: ClosetRadiationSuitFilled entities: - uid: 11511 @@ -62256,7 +62251,7 @@ entities: - uid: 23962 components: - type: Transform - pos: 45.489563,-8.468819 + pos: 45.29364,-5.5662026 parent: 5350 - proto: ClothingMaskGasExplorer entities: @@ -63315,6 +63310,20 @@ entities: linkedPorts: 19357: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 27251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 5350 + - uid: 27580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,8.5 + parent: 5350 - proto: computerBodyScanner entities: - uid: 7173 @@ -64166,10 +64175,15 @@ entities: parent: 5350 - proto: CrateEngineeringAMEShielding entities: - - uid: 21813 + - uid: 27582 components: - type: Transform - pos: 72.5,8.5 + pos: 69.5,7.5 + parent: 5350 + - uid: 27583 + components: + - type: Transform + pos: 69.5,6.5 parent: 5350 - proto: CrateEngineeringCableBulk entities: @@ -64662,7 +64676,7 @@ entities: - uid: 23961 components: - type: Transform - pos: 45.422592,-8.454437 + pos: 45.520172,-6.3005776 parent: 5350 - proto: CryogenicSleepUnit entities: @@ -65026,6 +65040,21 @@ entities: - type: Transform pos: 63.5,36.5 parent: 5350 + - uid: 27662 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 5350 + - uid: 27665 + components: + - type: Transform + pos: -32.5,43.5 + parent: 5350 + - uid: 27666 + components: + - type: Transform + pos: 38.5,-59.5 + parent: 5350 - proto: DefaultStationBeaconTechVault entities: - uid: 26703 @@ -72054,13 +72083,6 @@ entities: - type: Transform pos: 18.561031,-31.757362 parent: 5350 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 26873 - components: - - type: Transform - pos: -10.508052,19.789095 - parent: 5350 - proto: EggplantSeeds entities: - uid: 3156 @@ -75401,8 +75423,22 @@ entities: - uid: 26500 components: - type: Transform - pos: 45.4628,-6.4283414 + pos: 45.496765,-5.2380776 parent: 5350 + - type: HandheldLight + toggleActionEntity: 19147 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 19147 + - type: ActionsContainer - uid: 26628 components: - type: Transform @@ -75710,15 +75746,13 @@ entities: - type: Transform pos: 42.5,34.5 parent: 5350 -- proto: FloraTreeLarge02 +- proto: FloraTreeLarge entities: - uid: 22360 components: - type: Transform pos: 26.37503,-20.036427 parent: 5350 -- proto: FloraTreeLarge03 - entities: - uid: 24768 components: - type: Transform @@ -75965,6 +75999,13 @@ entities: - type: Transform pos: 15.452318,-25.658424 parent: 5350 +- proto: GameMasterCircuitBoard + entities: + - uid: 26873 + components: + - type: Transform + pos: -10.508052,19.789095 + parent: 5350 - proto: GasAnalyzer entities: - uid: 18522 @@ -75987,7 +76028,7 @@ entities: pos: -26.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasMinerCarbonDioxide entities: - uid: 11612 @@ -76293,21 +76334,21 @@ entities: pos: -8.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 649 components: - type: Transform pos: 3.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 752 components: - type: Transform pos: -12.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 753 components: - type: Transform @@ -76315,7 +76356,7 @@ entities: pos: -13.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 756 components: - type: Transform @@ -76338,7 +76379,7 @@ entities: pos: 10.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 803 components: - type: Transform @@ -76346,7 +76387,7 @@ entities: pos: 7.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 804 components: - type: Transform @@ -76354,7 +76395,7 @@ entities: pos: 10.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 825 components: - type: Transform @@ -76362,7 +76403,7 @@ entities: pos: -0.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 828 components: - type: Transform @@ -76378,7 +76419,7 @@ entities: pos: -20.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1606 components: - type: Transform @@ -76401,7 +76442,7 @@ entities: pos: -4.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1609 components: - type: Transform @@ -76409,7 +76450,7 @@ entities: pos: -4.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2309 components: - type: Transform @@ -76417,7 +76458,7 @@ entities: pos: 33.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2315 components: - type: Transform @@ -76425,7 +76466,7 @@ entities: pos: 40.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2561 components: - type: Transform @@ -76440,7 +76481,7 @@ entities: pos: 18.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2569 components: - type: Transform @@ -76448,7 +76489,7 @@ entities: pos: 18.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2649 components: - type: Transform @@ -76476,7 +76517,7 @@ entities: pos: 40.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2697 components: - type: Transform @@ -76484,7 +76525,7 @@ entities: pos: 41.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2710 components: - type: Transform @@ -76507,7 +76548,7 @@ entities: pos: -45.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4090 components: - type: Transform @@ -76521,7 +76562,7 @@ entities: pos: -45.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4131 components: - type: Transform @@ -76591,7 +76632,7 @@ entities: pos: -17.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4270 components: - type: Transform @@ -76599,14 +76640,14 @@ entities: pos: -22.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4271 components: - type: Transform pos: -17.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4290 components: - type: Transform @@ -76614,14 +76655,14 @@ entities: pos: -33.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4311 components: - type: Transform pos: -33.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4312 components: - type: Transform @@ -76629,7 +76670,7 @@ entities: pos: -41.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4341 components: - type: Transform @@ -76644,14 +76685,14 @@ entities: pos: -29.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4386 components: - type: Transform pos: -28.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4460 components: - type: Transform @@ -76667,7 +76708,7 @@ entities: pos: -55.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5490 components: - type: Transform @@ -76682,7 +76723,7 @@ entities: pos: -55.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5543 components: - type: Transform @@ -76706,7 +76747,7 @@ entities: pos: -60.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5828 components: - type: Transform @@ -76722,14 +76763,14 @@ entities: pos: 5.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6667 components: - type: Transform pos: 14.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6800 components: - type: Transform @@ -76745,7 +76786,7 @@ entities: pos: -6.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6830 components: - type: Transform @@ -76769,7 +76810,7 @@ entities: pos: -12.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6836 components: - type: Transform @@ -76777,7 +76818,7 @@ entities: pos: -10.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6946 components: - type: Transform @@ -76801,7 +76842,7 @@ entities: pos: 5.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6959 components: - type: Transform @@ -76809,7 +76850,7 @@ entities: pos: 14.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6991 components: - type: Transform @@ -76823,7 +76864,7 @@ entities: pos: 0.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7041 components: - type: Transform @@ -76852,7 +76893,7 @@ entities: pos: -1.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7123 components: - type: Transform @@ -76868,7 +76909,7 @@ entities: pos: -10.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7196 components: - type: Transform @@ -76876,7 +76917,7 @@ entities: pos: -6.5,60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7311 components: - type: Transform @@ -76891,7 +76932,7 @@ entities: pos: -2.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7788 components: - type: Transform @@ -76907,7 +76948,7 @@ entities: pos: 0.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7832 components: - type: Transform @@ -76946,7 +76987,7 @@ entities: pos: 29.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8750 components: - type: Transform @@ -76954,7 +76995,7 @@ entities: pos: 29.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8751 components: - type: Transform @@ -76969,7 +77010,7 @@ entities: pos: 35.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8753 components: - type: Transform @@ -77024,7 +77065,7 @@ entities: pos: 46.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9178 components: - type: Transform @@ -77032,7 +77073,7 @@ entities: pos: 46.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9179 components: - type: Transform @@ -77048,14 +77089,14 @@ entities: pos: -24.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9334 components: - type: Transform pos: -21.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9346 components: - type: Transform @@ -77086,19 +77127,23 @@ entities: pos: 46.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10383 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-27.5 parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10389 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-27.5 parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10661 components: - type: Transform @@ -77111,7 +77156,7 @@ entities: pos: 54.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10957 components: - type: Transform @@ -77127,7 +77172,7 @@ entities: pos: 50.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10993 components: - type: Transform @@ -77266,7 +77311,7 @@ entities: pos: 54.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11861 components: - type: Transform @@ -77297,7 +77342,7 @@ entities: pos: 7.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12135 components: - type: Transform @@ -77319,7 +77364,7 @@ entities: pos: 29.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12337 components: - type: Transform @@ -77327,7 +77372,7 @@ entities: pos: 42.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12453 components: - type: Transform @@ -77343,7 +77388,7 @@ entities: pos: 33.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13001 components: - type: Transform @@ -77364,7 +77409,7 @@ entities: pos: 31.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13243 components: - type: Transform @@ -77377,12 +77422,14 @@ entities: pos: -11.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14293 components: - type: Transform pos: -25.5,-26.5 parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14355 components: - type: Transform @@ -77390,7 +77437,7 @@ entities: pos: -11.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14414 components: - type: Transform @@ -77405,6 +77452,8 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-26.5 parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14652 components: - type: Transform @@ -77412,7 +77461,7 @@ entities: pos: -6.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14653 components: - type: Transform @@ -77420,7 +77469,7 @@ entities: pos: -6.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15266 components: - type: Transform @@ -77428,14 +77477,14 @@ entities: pos: -35.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15320 components: - type: Transform pos: -14.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15340 components: - type: Transform @@ -77457,7 +77506,7 @@ entities: pos: -19.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15617 components: - type: Transform @@ -77530,7 +77579,7 @@ entities: pos: -31.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18359 components: - type: Transform @@ -77614,7 +77663,7 @@ entities: pos: -56.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18505 components: - type: Transform @@ -77622,7 +77671,7 @@ entities: pos: -58.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18509 components: - type: Transform @@ -77630,7 +77679,7 @@ entities: pos: -56.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18968 components: - type: Transform @@ -77752,7 +77801,7 @@ entities: pos: 7.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20973 components: - type: Transform @@ -77760,7 +77809,7 @@ entities: pos: 7.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21019 components: - type: Transform @@ -77768,7 +77817,7 @@ entities: pos: 2.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21066 components: - type: Transform @@ -77776,7 +77825,7 @@ entities: pos: 18.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21069 components: - type: Transform @@ -77784,7 +77833,7 @@ entities: pos: 5.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21070 components: - type: Transform @@ -77792,7 +77841,7 @@ entities: pos: 5.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21072 components: - type: Transform @@ -77800,7 +77849,7 @@ entities: pos: 6.5,-55.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21073 components: - type: Transform @@ -77808,7 +77857,7 @@ entities: pos: 7.5,-55.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21103 components: - type: Transform @@ -77816,7 +77865,7 @@ entities: pos: 18.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21104 components: - type: Transform @@ -77824,14 +77873,14 @@ entities: pos: 31.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21105 components: - type: Transform pos: 31.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21106 components: - type: Transform @@ -77839,7 +77888,7 @@ entities: pos: 15.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21507 components: - type: Transform @@ -77847,7 +77896,7 @@ entities: pos: -11.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21523 components: - type: Transform @@ -77855,14 +77904,14 @@ entities: pos: -16.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21534 components: - type: Transform pos: -11.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21535 components: - type: Transform @@ -77870,7 +77919,7 @@ entities: pos: -20.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21552 components: - type: Transform @@ -77878,7 +77927,7 @@ entities: pos: -25.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21566 components: - type: Transform @@ -77924,14 +77973,14 @@ entities: pos: 52.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23388 components: - type: Transform pos: 52.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23389 components: - type: Transform @@ -77939,14 +77988,14 @@ entities: pos: 51.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23504 components: - type: Transform pos: 69.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23505 components: - type: Transform @@ -77954,7 +78003,7 @@ entities: pos: 69.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23525 components: - type: Transform @@ -78271,35 +78320,35 @@ entities: pos: -20.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 408 components: - type: Transform pos: -20.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 500 components: - type: Transform pos: -12.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2068 components: - type: Transform pos: 15.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2505 components: - type: Transform pos: 7.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2545 components: - type: Transform @@ -78320,7 +78369,7 @@ entities: pos: -33.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4213 components: - type: Transform @@ -78341,21 +78390,21 @@ entities: pos: -1.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6774 components: - type: Transform pos: 0.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6799 components: - type: Transform pos: -1.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6871 components: - type: Transform @@ -78369,7 +78418,7 @@ entities: pos: 7.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6910 components: - type: Transform @@ -78397,14 +78446,14 @@ entities: pos: -10.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7312 components: - type: Transform pos: -6.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7348 components: - type: Transform @@ -78432,14 +78481,14 @@ entities: pos: -16.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14471 components: - type: Transform pos: -1.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14606 components: - type: Transform @@ -78453,19 +78502,21 @@ entities: pos: -19.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14713 components: - type: Transform pos: -26.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14727 components: - type: Transform pos: -28.5,-26.5 parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14947 components: - type: Transform @@ -78479,7 +78530,7 @@ entities: pos: -1.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15517 components: - type: Transform @@ -78522,6 +78573,62 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27639 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensor + entities: + - uid: 23351 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: Label + currentLabel: Cryogenics +- proto: GasPipeSensorDistribution + entities: + - uid: 21813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorMixedAir + entities: + - uid: 21812 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 22531 + components: + - type: Transform + pos: 73.5,-38.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorWaste + entities: + - uid: 21814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 248 @@ -79385,154 +79492,154 @@ entities: pos: -20.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 387 components: - type: Transform pos: -20.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 388 components: - type: Transform pos: -20.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 389 components: - type: Transform pos: -20.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 390 components: - type: Transform pos: -20.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 391 components: - type: Transform pos: -20.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 392 components: - type: Transform pos: -20.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 393 components: - type: Transform pos: -20.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 394 components: - type: Transform pos: -20.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 396 components: - type: Transform pos: -20.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 397 components: - type: Transform pos: -20.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 399 components: - type: Transform pos: -20.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 400 components: - type: Transform pos: -20.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 401 components: - type: Transform pos: -20.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 403 components: - type: Transform pos: -20.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 404 components: - type: Transform pos: -20.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 405 components: - type: Transform pos: -20.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 406 components: - type: Transform pos: -20.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 407 components: - type: Transform pos: -20.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 409 components: - type: Transform pos: -20.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 410 components: - type: Transform pos: -20.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 411 components: - type: Transform pos: -20.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 412 components: - type: Transform @@ -79540,7 +79647,7 @@ entities: pos: -19.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 413 components: - type: Transform @@ -79548,7 +79655,7 @@ entities: pos: -18.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 415 components: - type: Transform @@ -79556,7 +79663,7 @@ entities: pos: -16.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 416 components: - type: Transform @@ -79564,7 +79671,7 @@ entities: pos: -15.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 417 components: - type: Transform @@ -79572,7 +79679,7 @@ entities: pos: -14.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 418 components: - type: Transform @@ -79580,7 +79687,7 @@ entities: pos: -13.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 419 components: - type: Transform @@ -79588,7 +79695,7 @@ entities: pos: -12.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 420 components: - type: Transform @@ -79596,7 +79703,7 @@ entities: pos: -11.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 421 components: - type: Transform @@ -79604,7 +79711,7 @@ entities: pos: -10.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 423 components: - type: Transform @@ -79612,7 +79719,7 @@ entities: pos: -8.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 424 components: - type: Transform @@ -79620,7 +79727,7 @@ entities: pos: -7.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 425 components: - type: Transform @@ -79628,7 +79735,7 @@ entities: pos: -6.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 426 components: - type: Transform @@ -79636,7 +79743,7 @@ entities: pos: -5.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 427 components: - type: Transform @@ -79644,7 +79751,7 @@ entities: pos: -4.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 428 components: - type: Transform @@ -79652,7 +79759,7 @@ entities: pos: -3.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 429 components: - type: Transform @@ -79660,7 +79767,7 @@ entities: pos: -2.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 432 components: - type: Transform @@ -79668,7 +79775,7 @@ entities: pos: 0.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 433 components: - type: Transform @@ -79676,7 +79783,7 @@ entities: pos: 1.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 434 components: - type: Transform @@ -79684,7 +79791,7 @@ entities: pos: 2.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 435 components: - type: Transform @@ -79692,7 +79799,7 @@ entities: pos: 3.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 436 components: - type: Transform @@ -79700,7 +79807,7 @@ entities: pos: 4.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 437 components: - type: Transform @@ -79708,7 +79815,7 @@ entities: pos: 5.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 438 components: - type: Transform @@ -79716,7 +79823,7 @@ entities: pos: 6.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 439 components: - type: Transform @@ -79724,7 +79831,7 @@ entities: pos: 7.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 440 components: - type: Transform @@ -79732,7 +79839,7 @@ entities: pos: 8.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 441 components: - type: Transform @@ -79740,7 +79847,7 @@ entities: pos: 9.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 442 components: - type: Transform @@ -79748,7 +79855,7 @@ entities: pos: 10.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 443 components: - type: Transform @@ -79756,7 +79863,7 @@ entities: pos: 11.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 445 components: - type: Transform @@ -79764,7 +79871,7 @@ entities: pos: 13.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 446 components: - type: Transform @@ -79772,7 +79879,7 @@ entities: pos: 14.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 447 components: - type: Transform @@ -79780,7 +79887,7 @@ entities: pos: 15.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 448 components: - type: Transform @@ -79788,7 +79895,7 @@ entities: pos: 15.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 449 components: - type: Transform @@ -79796,7 +79903,7 @@ entities: pos: 15.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 450 components: - type: Transform @@ -79804,7 +79911,7 @@ entities: pos: 15.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 451 components: - type: Transform @@ -79812,7 +79919,7 @@ entities: pos: 15.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 453 components: - type: Transform @@ -79820,7 +79927,7 @@ entities: pos: 15.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 454 components: - type: Transform @@ -79828,7 +79935,7 @@ entities: pos: 15.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 455 components: - type: Transform @@ -79836,7 +79943,7 @@ entities: pos: 15.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 456 components: - type: Transform @@ -79844,7 +79951,7 @@ entities: pos: 15.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 457 components: - type: Transform @@ -79852,7 +79959,7 @@ entities: pos: 15.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 459 components: - type: Transform @@ -79860,7 +79967,7 @@ entities: pos: 15.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 461 components: - type: Transform @@ -79868,7 +79975,7 @@ entities: pos: 15.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 462 components: - type: Transform @@ -79876,7 +79983,7 @@ entities: pos: 15.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 463 components: - type: Transform @@ -79892,7 +79999,7 @@ entities: pos: 15.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 465 components: - type: Transform @@ -79900,7 +80007,7 @@ entities: pos: 15.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 466 components: - type: Transform @@ -79908,7 +80015,7 @@ entities: pos: 15.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 467 components: - type: Transform @@ -79916,7 +80023,7 @@ entities: pos: 15.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 468 components: - type: Transform @@ -79924,7 +80031,7 @@ entities: pos: 15.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 469 components: - type: Transform @@ -79932,7 +80039,7 @@ entities: pos: 15.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 470 components: - type: Transform @@ -79940,7 +80047,7 @@ entities: pos: 15.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 471 components: - type: Transform @@ -79948,7 +80055,7 @@ entities: pos: 15.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 472 components: - type: Transform @@ -79956,7 +80063,7 @@ entities: pos: 15.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 473 components: - type: Transform @@ -79964,7 +80071,7 @@ entities: pos: 14.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 474 components: - type: Transform @@ -79972,7 +80079,7 @@ entities: pos: 13.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 475 components: - type: Transform @@ -79980,7 +80087,7 @@ entities: pos: 12.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 476 components: - type: Transform @@ -79988,7 +80095,7 @@ entities: pos: 11.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 477 components: - type: Transform @@ -79996,7 +80103,7 @@ entities: pos: 10.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 478 components: - type: Transform @@ -80004,7 +80111,7 @@ entities: pos: 9.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 479 components: - type: Transform @@ -80012,7 +80119,7 @@ entities: pos: 8.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 480 components: - type: Transform @@ -80020,7 +80127,7 @@ entities: pos: 7.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 481 components: - type: Transform @@ -80028,7 +80135,7 @@ entities: pos: 6.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 482 components: - type: Transform @@ -80036,7 +80143,7 @@ entities: pos: 5.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 484 components: - type: Transform @@ -80044,7 +80151,7 @@ entities: pos: 3.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 485 components: - type: Transform @@ -80052,7 +80159,7 @@ entities: pos: 2.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 486 components: - type: Transform @@ -80060,7 +80167,7 @@ entities: pos: 1.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 487 components: - type: Transform @@ -80068,7 +80175,7 @@ entities: pos: 0.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 488 components: - type: Transform @@ -80076,7 +80183,7 @@ entities: pos: -0.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 490 components: - type: Transform @@ -80084,7 +80191,7 @@ entities: pos: -2.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 494 components: - type: Transform @@ -80092,7 +80199,7 @@ entities: pos: -6.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 495 components: - type: Transform @@ -80100,7 +80207,7 @@ entities: pos: -7.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 497 components: - type: Transform @@ -80108,7 +80215,7 @@ entities: pos: -9.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 498 components: - type: Transform @@ -80116,7 +80223,7 @@ entities: pos: -10.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 499 components: - type: Transform @@ -80124,7 +80231,7 @@ entities: pos: -11.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 501 components: - type: Transform @@ -80132,7 +80239,7 @@ entities: pos: -13.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 502 components: - type: Transform @@ -80140,7 +80247,7 @@ entities: pos: -14.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 503 components: - type: Transform @@ -80148,7 +80255,7 @@ entities: pos: -15.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 504 components: - type: Transform @@ -80156,7 +80263,7 @@ entities: pos: -5.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 505 components: - type: Transform @@ -80164,7 +80271,7 @@ entities: pos: -17.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 506 components: - type: Transform @@ -80172,7 +80279,7 @@ entities: pos: -18.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 516 components: - type: Transform @@ -80300,7 +80407,7 @@ entities: pos: -6.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 538 components: - type: Transform @@ -80412,7 +80519,7 @@ entities: pos: 14.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 556 components: - type: Transform @@ -80420,7 +80527,7 @@ entities: pos: 13.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 557 components: - type: Transform @@ -80428,7 +80535,7 @@ entities: pos: 12.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 558 components: - type: Transform @@ -80436,7 +80543,7 @@ entities: pos: 11.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 559 components: - type: Transform @@ -80444,7 +80551,7 @@ entities: pos: 10.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 560 components: - type: Transform @@ -80452,7 +80559,7 @@ entities: pos: 9.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 561 components: - type: Transform @@ -80460,7 +80567,7 @@ entities: pos: 8.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 563 components: - type: Transform @@ -80468,7 +80575,7 @@ entities: pos: 6.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 564 components: - type: Transform @@ -80476,7 +80583,7 @@ entities: pos: 5.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 565 components: - type: Transform @@ -80484,7 +80591,7 @@ entities: pos: 4.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 568 components: - type: Transform @@ -80492,7 +80599,7 @@ entities: pos: 1.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 569 components: - type: Transform @@ -80500,7 +80607,7 @@ entities: pos: 0.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 571 components: - type: Transform @@ -80508,7 +80615,7 @@ entities: pos: -1.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 572 components: - type: Transform @@ -80516,7 +80623,7 @@ entities: pos: -2.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 573 components: - type: Transform @@ -80524,7 +80631,7 @@ entities: pos: -3.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 574 components: - type: Transform @@ -80532,7 +80639,7 @@ entities: pos: -4.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 576 components: - type: Transform @@ -80548,7 +80655,7 @@ entities: pos: -7.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 579 components: - type: Transform @@ -80556,7 +80663,7 @@ entities: pos: -9.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 580 components: - type: Transform @@ -80564,7 +80671,7 @@ entities: pos: -10.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 581 components: - type: Transform @@ -80572,7 +80679,7 @@ entities: pos: -11.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 583 components: - type: Transform @@ -80580,7 +80687,7 @@ entities: pos: -13.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 584 components: - type: Transform @@ -80588,7 +80695,7 @@ entities: pos: -14.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 585 components: - type: Transform @@ -80596,7 +80703,7 @@ entities: pos: -15.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 586 components: - type: Transform @@ -80604,7 +80711,7 @@ entities: pos: -16.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 587 components: - type: Transform @@ -80612,7 +80719,7 @@ entities: pos: -17.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 588 components: - type: Transform @@ -80620,7 +80727,7 @@ entities: pos: -18.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 589 components: - type: Transform @@ -80628,7 +80735,7 @@ entities: pos: -19.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 590 components: - type: Transform @@ -80820,7 +80927,7 @@ entities: pos: -8.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 622 components: - type: Transform @@ -80828,7 +80935,7 @@ entities: pos: -8.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 623 components: - type: Transform @@ -80836,7 +80943,7 @@ entities: pos: -8.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 624 components: - type: Transform @@ -80844,7 +80951,7 @@ entities: pos: -8.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 625 components: - type: Transform @@ -80852,7 +80959,7 @@ entities: pos: -8.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 626 components: - type: Transform @@ -80860,7 +80967,7 @@ entities: pos: -8.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 627 components: - type: Transform @@ -80868,7 +80975,7 @@ entities: pos: -8.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 629 components: - type: Transform @@ -80876,7 +80983,7 @@ entities: pos: 3.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 630 components: - type: Transform @@ -80884,7 +80991,7 @@ entities: pos: 3.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 631 components: - type: Transform @@ -80892,7 +80999,7 @@ entities: pos: 3.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 633 components: - type: Transform @@ -80900,7 +81007,7 @@ entities: pos: 3.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 634 components: - type: Transform @@ -80908,7 +81015,7 @@ entities: pos: 3.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 635 components: - type: Transform @@ -80916,7 +81023,7 @@ entities: pos: 3.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 636 components: - type: Transform @@ -80924,7 +81031,7 @@ entities: pos: 3.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 637 components: - type: Transform @@ -80932,7 +81039,7 @@ entities: pos: 2.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 638 components: - type: Transform @@ -80940,7 +81047,7 @@ entities: pos: 1.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 640 components: - type: Transform @@ -80948,7 +81055,7 @@ entities: pos: -0.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 641 components: - type: Transform @@ -80956,7 +81063,7 @@ entities: pos: -1.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 642 components: - type: Transform @@ -80964,7 +81071,7 @@ entities: pos: -2.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 643 components: - type: Transform @@ -80972,7 +81079,7 @@ entities: pos: -3.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 644 components: - type: Transform @@ -80980,7 +81087,7 @@ entities: pos: -4.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 645 components: - type: Transform @@ -80988,7 +81095,7 @@ entities: pos: -5.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 646 components: - type: Transform @@ -80996,7 +81103,7 @@ entities: pos: -6.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 647 components: - type: Transform @@ -81004,7 +81111,7 @@ entities: pos: -7.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 735 components: - type: Transform @@ -81100,7 +81207,7 @@ entities: pos: -12.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 749 components: - type: Transform @@ -81108,7 +81215,7 @@ entities: pos: -12.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 750 components: - type: Transform @@ -81116,7 +81223,7 @@ entities: pos: -12.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 751 components: - type: Transform @@ -81124,7 +81231,7 @@ entities: pos: -12.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 754 components: - type: Transform @@ -81132,7 +81239,7 @@ entities: pos: -13.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 757 components: - type: Transform @@ -81205,7 +81312,7 @@ entities: pos: 0.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 770 components: - type: Transform @@ -81308,7 +81415,7 @@ entities: pos: 7.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 789 components: - type: Transform @@ -81316,7 +81423,7 @@ entities: pos: 7.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 791 components: - type: Transform @@ -81324,7 +81431,7 @@ entities: pos: 7.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 792 components: - type: Transform @@ -81332,7 +81439,7 @@ entities: pos: 7.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 795 components: - type: Transform @@ -81389,7 +81496,7 @@ entities: pos: 8.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 806 components: - type: Transform @@ -81397,7 +81504,7 @@ entities: pos: 9.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 807 components: - type: Transform @@ -81405,7 +81512,7 @@ entities: pos: 10.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 808 components: - type: Transform @@ -81413,7 +81520,7 @@ entities: pos: 10.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 809 components: - type: Transform @@ -81421,7 +81528,7 @@ entities: pos: 10.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 810 components: - type: Transform @@ -81429,7 +81536,7 @@ entities: pos: 10.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 811 components: - type: Transform @@ -81437,7 +81544,7 @@ entities: pos: 10.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 812 components: - type: Transform @@ -81445,7 +81552,7 @@ entities: pos: 10.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 816 components: - type: Transform @@ -81493,7 +81600,7 @@ entities: pos: 2.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 823 components: - type: Transform @@ -81501,7 +81608,7 @@ entities: pos: 1.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 824 components: - type: Transform @@ -81509,7 +81616,7 @@ entities: pos: 0.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 829 components: - type: Transform @@ -81581,7 +81688,7 @@ entities: pos: -19.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 839 components: - type: Transform @@ -81589,7 +81696,7 @@ entities: pos: -18.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 840 components: - type: Transform @@ -81597,7 +81704,7 @@ entities: pos: -17.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 991 components: - type: Transform @@ -81618,7 +81725,7 @@ entities: pos: -0.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1091 components: - type: Transform @@ -81626,7 +81733,7 @@ entities: pos: -3.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1518 components: - type: Transform @@ -81634,7 +81741,7 @@ entities: pos: 39.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1580 components: - type: Transform @@ -81642,7 +81749,7 @@ entities: pos: -16.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1582 components: - type: Transform @@ -81752,7 +81859,7 @@ entities: pos: -5.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1598 components: - type: Transform @@ -81760,7 +81867,7 @@ entities: pos: -5.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1599 components: - type: Transform @@ -81768,7 +81875,7 @@ entities: pos: -5.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1600 components: - type: Transform @@ -81776,7 +81883,7 @@ entities: pos: -5.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1601 components: - type: Transform @@ -81784,7 +81891,7 @@ entities: pos: -5.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1603 components: - type: Transform @@ -81792,7 +81899,7 @@ entities: pos: -5.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1604 components: - type: Transform @@ -81800,7 +81907,7 @@ entities: pos: -5.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1605 components: - type: Transform @@ -81808,7 +81915,7 @@ entities: pos: -5.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1675 components: - type: Transform @@ -81816,7 +81923,7 @@ entities: pos: -12.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1676 components: - type: Transform @@ -81824,7 +81931,7 @@ entities: pos: -12.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1677 components: - type: Transform @@ -81832,7 +81939,7 @@ entities: pos: -12.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1679 components: - type: Transform @@ -81840,7 +81947,7 @@ entities: pos: -12.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1680 components: - type: Transform @@ -81848,7 +81955,7 @@ entities: pos: -12.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1681 components: - type: Transform @@ -81856,7 +81963,7 @@ entities: pos: -12.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1682 components: - type: Transform @@ -81864,7 +81971,7 @@ entities: pos: -12.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1683 components: - type: Transform @@ -81872,7 +81979,7 @@ entities: pos: -12.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2296 components: - type: Transform @@ -81880,7 +81987,7 @@ entities: pos: 40.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2299 components: - type: Transform @@ -81888,7 +81995,7 @@ entities: pos: 40.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2361 components: - type: Transform @@ -81896,7 +82003,7 @@ entities: pos: 40.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2362 components: - type: Transform @@ -81904,7 +82011,7 @@ entities: pos: 40.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2363 components: - type: Transform @@ -81912,7 +82019,7 @@ entities: pos: 40.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2372 components: - type: Transform @@ -81920,7 +82027,7 @@ entities: pos: 40.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2489 components: - type: Transform @@ -81984,7 +82091,7 @@ entities: pos: 17.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2501 components: - type: Transform @@ -81992,7 +82099,7 @@ entities: pos: 18.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2502 components: - type: Transform @@ -82000,7 +82107,7 @@ entities: pos: 19.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2503 components: - type: Transform @@ -82008,7 +82115,7 @@ entities: pos: 20.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2504 components: - type: Transform @@ -82016,7 +82123,7 @@ entities: pos: 21.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2506 components: - type: Transform @@ -82024,7 +82131,7 @@ entities: pos: 23.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2507 components: - type: Transform @@ -82032,7 +82139,7 @@ entities: pos: 24.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2510 components: - type: Transform @@ -82040,7 +82147,7 @@ entities: pos: 27.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2513 components: - type: Transform @@ -82048,7 +82155,7 @@ entities: pos: 16.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2514 components: - type: Transform @@ -82056,7 +82163,7 @@ entities: pos: 17.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2515 components: - type: Transform @@ -82064,7 +82171,7 @@ entities: pos: 18.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2516 components: - type: Transform @@ -82072,7 +82179,7 @@ entities: pos: 19.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2518 components: - type: Transform @@ -82080,7 +82187,7 @@ entities: pos: 21.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2519 components: - type: Transform @@ -82088,7 +82195,7 @@ entities: pos: 22.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2520 components: - type: Transform @@ -82096,7 +82203,7 @@ entities: pos: 23.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2521 components: - type: Transform @@ -82104,35 +82211,35 @@ entities: pos: 24.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2522 components: - type: Transform pos: 25.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2523 components: - type: Transform pos: 25.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2524 components: - type: Transform pos: 25.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2526 components: - type: Transform pos: 25.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2527 components: - type: Transform @@ -82374,7 +82481,7 @@ entities: pos: 18.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2572 components: - type: Transform @@ -82382,7 +82489,7 @@ entities: pos: 18.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2573 components: - type: Transform @@ -82390,7 +82497,7 @@ entities: pos: 18.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2574 components: - type: Transform @@ -82398,7 +82505,7 @@ entities: pos: 18.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2575 components: - type: Transform @@ -82406,7 +82513,7 @@ entities: pos: 17.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2576 components: - type: Transform @@ -82414,7 +82521,7 @@ entities: pos: 16.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2577 components: - type: Transform @@ -82422,7 +82529,7 @@ entities: pos: 19.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2578 components: - type: Transform @@ -82430,7 +82537,7 @@ entities: pos: 20.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2579 components: - type: Transform @@ -82438,7 +82545,7 @@ entities: pos: 21.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2580 components: - type: Transform @@ -82446,7 +82553,7 @@ entities: pos: 22.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2581 components: - type: Transform @@ -82454,7 +82561,7 @@ entities: pos: 23.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2582 components: - type: Transform @@ -82462,7 +82569,7 @@ entities: pos: 24.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2583 components: - type: Transform @@ -82470,7 +82577,7 @@ entities: pos: 25.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2584 components: - type: Transform @@ -82478,7 +82585,7 @@ entities: pos: 26.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2585 components: - type: Transform @@ -82486,105 +82593,105 @@ entities: pos: 27.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2587 components: - type: Transform pos: 28.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2590 components: - type: Transform pos: 28.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2591 components: - type: Transform pos: 28.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2593 components: - type: Transform pos: 28.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2594 components: - type: Transform pos: 28.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2595 components: - type: Transform pos: 28.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2597 components: - type: Transform pos: 28.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2598 components: - type: Transform pos: 28.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2599 components: - type: Transform pos: 28.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2600 components: - type: Transform pos: 28.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2601 components: - type: Transform pos: 28.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2602 components: - type: Transform pos: 28.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2603 components: - type: Transform pos: 28.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2604 components: - type: Transform pos: 28.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2606 components: - type: Transform @@ -82592,7 +82699,7 @@ entities: pos: 26.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2607 components: - type: Transform @@ -82600,7 +82707,7 @@ entities: pos: 27.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2608 components: - type: Transform @@ -82608,7 +82715,7 @@ entities: pos: 29.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2609 components: - type: Transform @@ -82616,7 +82723,7 @@ entities: pos: 30.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2610 components: - type: Transform @@ -82624,7 +82731,7 @@ entities: pos: 31.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2611 components: - type: Transform @@ -82632,7 +82739,7 @@ entities: pos: 32.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2612 components: - type: Transform @@ -82640,7 +82747,7 @@ entities: pos: 40.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2613 components: - type: Transform @@ -82712,7 +82819,7 @@ entities: pos: 20.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2633 components: - type: Transform @@ -82720,7 +82827,7 @@ entities: pos: 20.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2634 components: - type: Transform @@ -82728,7 +82835,7 @@ entities: pos: 20.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2635 components: - type: Transform @@ -82736,7 +82843,7 @@ entities: pos: 20.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2636 components: - type: Transform @@ -82744,7 +82851,7 @@ entities: pos: 20.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2637 components: - type: Transform @@ -82752,7 +82859,7 @@ entities: pos: 20.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2638 components: - type: Transform @@ -82760,7 +82867,7 @@ entities: pos: 20.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2643 components: - type: Transform @@ -82952,28 +83059,28 @@ entities: pos: 36.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2689 components: - type: Transform pos: 40.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2690 components: - type: Transform pos: 40.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2691 components: - type: Transform pos: 40.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2692 components: - type: Transform @@ -82981,7 +83088,7 @@ entities: pos: 39.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2693 components: - type: Transform @@ -82989,7 +83096,7 @@ entities: pos: 38.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2694 components: - type: Transform @@ -82997,7 +83104,7 @@ entities: pos: 40.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2695 components: - type: Transform @@ -83005,7 +83112,7 @@ entities: pos: 40.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2700 components: - type: Transform @@ -83021,7 +83128,7 @@ entities: pos: 30.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2702 components: - type: Transform @@ -83029,7 +83136,7 @@ entities: pos: 31.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2703 components: - type: Transform @@ -83037,7 +83144,7 @@ entities: pos: 32.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2704 components: - type: Transform @@ -83045,7 +83152,7 @@ entities: pos: 33.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2705 components: - type: Transform @@ -83053,7 +83160,7 @@ entities: pos: 34.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2706 components: - type: Transform @@ -83061,7 +83168,7 @@ entities: pos: 35.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3008 components: - type: Transform @@ -83069,21 +83176,21 @@ entities: pos: 38.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3053 components: - type: Transform pos: 33.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3054 components: - type: Transform pos: 33.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3060 components: - type: Transform @@ -83091,7 +83198,7 @@ entities: pos: 34.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3062 components: - type: Transform @@ -83099,7 +83206,7 @@ entities: pos: 35.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3483 components: - type: Transform @@ -83114,14 +83221,14 @@ entities: pos: -33.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3837 components: - type: Transform pos: -45.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3840 components: - type: Transform @@ -83168,7 +83275,7 @@ entities: pos: -47.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3847 components: - type: Transform @@ -83176,7 +83283,7 @@ entities: pos: -49.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3848 components: - type: Transform @@ -83184,7 +83291,7 @@ entities: pos: -51.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3852 components: - type: Transform @@ -83232,7 +83339,7 @@ entities: pos: -46.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3858 components: - type: Transform @@ -83240,7 +83347,7 @@ entities: pos: -48.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3859 components: - type: Transform @@ -83248,7 +83355,7 @@ entities: pos: -50.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3867 components: - type: Transform @@ -83256,7 +83363,7 @@ entities: pos: -52.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3883 components: - type: Transform @@ -83271,7 +83378,7 @@ entities: pos: -33.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3960 components: - type: Transform @@ -83431,7 +83538,7 @@ entities: pos: -21.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3982 components: - type: Transform @@ -83439,7 +83546,7 @@ entities: pos: -22.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3983 components: - type: Transform @@ -83447,7 +83554,7 @@ entities: pos: -23.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3984 components: - type: Transform @@ -83455,7 +83562,7 @@ entities: pos: -24.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3985 components: - type: Transform @@ -83463,7 +83570,7 @@ entities: pos: -25.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3986 components: - type: Transform @@ -83471,7 +83578,7 @@ entities: pos: -26.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3988 components: - type: Transform @@ -83479,7 +83586,7 @@ entities: pos: -28.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3989 components: - type: Transform @@ -83487,7 +83594,7 @@ entities: pos: -29.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3990 components: - type: Transform @@ -83495,7 +83602,7 @@ entities: pos: -30.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3992 components: - type: Transform @@ -83503,7 +83610,7 @@ entities: pos: -32.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3993 components: - type: Transform @@ -83511,7 +83618,7 @@ entities: pos: -33.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3994 components: - type: Transform @@ -83519,7 +83626,7 @@ entities: pos: -34.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3995 components: - type: Transform @@ -83527,7 +83634,7 @@ entities: pos: -35.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3996 components: - type: Transform @@ -83535,7 +83642,7 @@ entities: pos: -36.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3997 components: - type: Transform @@ -83543,7 +83650,7 @@ entities: pos: -37.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3998 components: - type: Transform @@ -83551,7 +83658,7 @@ entities: pos: -38.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4000 components: - type: Transform @@ -83559,7 +83666,7 @@ entities: pos: -40.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4001 components: - type: Transform @@ -83567,7 +83674,7 @@ entities: pos: -41.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4002 components: - type: Transform @@ -83575,7 +83682,7 @@ entities: pos: -42.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4003 components: - type: Transform @@ -83583,7 +83690,7 @@ entities: pos: -43.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4010 components: - type: Transform @@ -83623,7 +83730,7 @@ entities: pos: -45.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4015 components: - type: Transform @@ -83631,7 +83738,7 @@ entities: pos: -45.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4016 components: - type: Transform @@ -83639,7 +83746,7 @@ entities: pos: -45.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4026 components: - type: Transform @@ -83719,7 +83826,7 @@ entities: pos: -46.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4041 components: - type: Transform @@ -83727,7 +83834,7 @@ entities: pos: -47.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4042 components: - type: Transform @@ -83735,7 +83842,7 @@ entities: pos: -48.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4043 components: - type: Transform @@ -83743,7 +83850,7 @@ entities: pos: -49.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4045 components: - type: Transform @@ -83751,7 +83858,7 @@ entities: pos: -51.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4046 components: - type: Transform @@ -83759,7 +83866,7 @@ entities: pos: -52.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4047 components: - type: Transform @@ -83767,7 +83874,7 @@ entities: pos: -53.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4056 components: - type: Transform @@ -83775,7 +83882,7 @@ entities: pos: -54.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4075 components: - type: Transform @@ -83783,7 +83890,7 @@ entities: pos: -54.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4077 components: - type: Transform @@ -83791,7 +83898,7 @@ entities: pos: -53.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4095 components: - type: Transform @@ -83806,7 +83913,7 @@ entities: pos: -44.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4121 components: - type: Transform @@ -84424,7 +84531,7 @@ entities: pos: -1.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4231 components: - type: Transform @@ -84432,7 +84539,7 @@ entities: pos: -1.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4232 components: - type: Transform @@ -84440,7 +84547,7 @@ entities: pos: -1.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4233 components: - type: Transform @@ -84448,7 +84555,7 @@ entities: pos: -1.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4234 components: - type: Transform @@ -84456,7 +84563,7 @@ entities: pos: -1.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4237 components: - type: Transform @@ -84464,7 +84571,7 @@ entities: pos: -1.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4238 components: - type: Transform @@ -84472,7 +84579,7 @@ entities: pos: -1.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4239 components: - type: Transform @@ -84480,7 +84587,7 @@ entities: pos: -1.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4240 components: - type: Transform @@ -84488,7 +84595,7 @@ entities: pos: -1.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4241 components: - type: Transform @@ -84496,7 +84603,7 @@ entities: pos: -1.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4242 components: - type: Transform @@ -84504,7 +84611,7 @@ entities: pos: -1.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4243 components: - type: Transform @@ -84512,7 +84619,7 @@ entities: pos: -1.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4245 components: - type: Transform @@ -84520,7 +84627,7 @@ entities: pos: -2.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4246 components: - type: Transform @@ -84528,7 +84635,7 @@ entities: pos: -3.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4247 components: - type: Transform @@ -84536,7 +84643,7 @@ entities: pos: -4.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4248 components: - type: Transform @@ -84544,7 +84651,7 @@ entities: pos: -5.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4249 components: - type: Transform @@ -84552,7 +84659,7 @@ entities: pos: -6.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4250 components: - type: Transform @@ -84560,7 +84667,7 @@ entities: pos: -7.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4252 components: - type: Transform @@ -84568,7 +84675,7 @@ entities: pos: -9.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4253 components: - type: Transform @@ -84576,7 +84683,7 @@ entities: pos: -10.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4254 components: - type: Transform @@ -84584,7 +84691,7 @@ entities: pos: -11.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4255 components: - type: Transform @@ -84592,7 +84699,7 @@ entities: pos: -12.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4256 components: - type: Transform @@ -84600,7 +84707,7 @@ entities: pos: -13.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4257 components: - type: Transform @@ -84608,7 +84715,7 @@ entities: pos: -14.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4258 components: - type: Transform @@ -84616,7 +84723,7 @@ entities: pos: -15.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4259 components: - type: Transform @@ -84624,14 +84731,14 @@ entities: pos: -16.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4263 components: - type: Transform pos: -17.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4264 components: - type: Transform @@ -84639,7 +84746,7 @@ entities: pos: -18.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4265 components: - type: Transform @@ -84647,7 +84754,7 @@ entities: pos: -19.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4266 components: - type: Transform @@ -84655,7 +84762,7 @@ entities: pos: -20.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4268 components: - type: Transform @@ -84663,7 +84770,7 @@ entities: pos: -22.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4269 components: - type: Transform @@ -84671,7 +84778,7 @@ entities: pos: -22.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4272 components: - type: Transform @@ -84679,7 +84786,7 @@ entities: pos: -21.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4274 components: - type: Transform @@ -84687,7 +84794,7 @@ entities: pos: -19.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4275 components: - type: Transform @@ -84695,7 +84802,7 @@ entities: pos: -18.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4276 components: - type: Transform @@ -84703,7 +84810,7 @@ entities: pos: -17.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4277 components: - type: Transform @@ -84711,7 +84818,7 @@ entities: pos: -17.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4278 components: - type: Transform @@ -84719,7 +84826,7 @@ entities: pos: -17.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4279 components: - type: Transform @@ -84727,7 +84834,7 @@ entities: pos: -17.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4280 components: - type: Transform @@ -84735,7 +84842,7 @@ entities: pos: -17.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4281 components: - type: Transform @@ -84743,7 +84850,7 @@ entities: pos: -17.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4282 components: - type: Transform @@ -84751,7 +84858,7 @@ entities: pos: -17.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4283 components: - type: Transform @@ -84759,7 +84866,7 @@ entities: pos: -17.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4284 components: - type: Transform @@ -84767,7 +84874,7 @@ entities: pos: -17.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4286 components: - type: Transform @@ -84775,7 +84882,7 @@ entities: pos: -27.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4287 components: - type: Transform @@ -84783,7 +84890,7 @@ entities: pos: -27.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4288 components: - type: Transform @@ -84791,7 +84898,7 @@ entities: pos: -27.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4292 components: - type: Transform @@ -84799,7 +84906,7 @@ entities: pos: -29.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4293 components: - type: Transform @@ -84807,7 +84914,7 @@ entities: pos: -30.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4294 components: - type: Transform @@ -84815,7 +84922,7 @@ entities: pos: -31.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4295 components: - type: Transform @@ -84823,77 +84930,77 @@ entities: pos: -32.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4297 components: - type: Transform pos: -33.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4298 components: - type: Transform pos: -33.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4299 components: - type: Transform pos: -33.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4300 components: - type: Transform pos: -33.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4301 components: - type: Transform pos: -33.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4303 components: - type: Transform pos: -33.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4304 components: - type: Transform pos: -33.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4305 components: - type: Transform pos: -33.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4306 components: - type: Transform pos: -33.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4307 components: - type: Transform pos: -33.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4313 components: - type: Transform @@ -84901,7 +85008,7 @@ entities: pos: -33.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4314 components: - type: Transform @@ -84909,7 +85016,7 @@ entities: pos: -34.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4315 components: - type: Transform @@ -84917,7 +85024,7 @@ entities: pos: -35.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4317 components: - type: Transform @@ -84925,7 +85032,7 @@ entities: pos: -37.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4318 components: - type: Transform @@ -84933,7 +85040,7 @@ entities: pos: -38.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4319 components: - type: Transform @@ -84941,7 +85048,7 @@ entities: pos: -39.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4320 components: - type: Transform @@ -84949,42 +85056,42 @@ entities: pos: -40.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4321 components: - type: Transform pos: -41.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4322 components: - type: Transform pos: -41.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4323 components: - type: Transform pos: -41.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4324 components: - type: Transform pos: -41.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4325 components: - type: Transform pos: -41.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4331 components: - type: Transform @@ -84992,7 +85099,7 @@ entities: pos: -34.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4332 components: - type: Transform @@ -85000,7 +85107,7 @@ entities: pos: -35.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4333 components: - type: Transform @@ -85008,7 +85115,7 @@ entities: pos: -36.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4334 components: - type: Transform @@ -85016,7 +85123,7 @@ entities: pos: -37.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4335 components: - type: Transform @@ -85277,7 +85384,7 @@ entities: pos: -28.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4380 components: - type: Transform @@ -85285,7 +85392,7 @@ entities: pos: -28.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4381 components: - type: Transform @@ -85293,7 +85400,7 @@ entities: pos: -28.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4382 components: - type: Transform @@ -85301,7 +85408,7 @@ entities: pos: -28.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4383 components: - type: Transform @@ -85309,7 +85416,7 @@ entities: pos: -28.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4384 components: - type: Transform @@ -85317,7 +85424,7 @@ entities: pos: -28.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4385 components: - type: Transform @@ -85325,7 +85432,7 @@ entities: pos: -28.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4388 components: - type: Transform @@ -85333,7 +85440,7 @@ entities: pos: -32.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4389 components: - type: Transform @@ -85341,7 +85448,7 @@ entities: pos: -31.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4390 components: - type: Transform @@ -85349,14 +85456,14 @@ entities: pos: -30.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4391 components: - type: Transform pos: -29.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4395 components: - type: Transform @@ -85364,7 +85471,7 @@ entities: pos: -34.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4396 components: - type: Transform @@ -85372,7 +85479,7 @@ entities: pos: -35.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4398 components: - type: Transform @@ -85498,7 +85605,7 @@ entities: pos: 28.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4962 components: - type: Transform @@ -85610,7 +85717,7 @@ entities: pos: 43.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4978 components: - type: Transform @@ -85618,7 +85725,7 @@ entities: pos: 42.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4979 components: - type: Transform @@ -85626,7 +85733,7 @@ entities: pos: 41.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4980 components: - type: Transform @@ -85634,7 +85741,7 @@ entities: pos: 40.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4981 components: - type: Transform @@ -85642,7 +85749,7 @@ entities: pos: 39.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4982 components: - type: Transform @@ -85650,7 +85757,7 @@ entities: pos: 38.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4984 components: - type: Transform @@ -85658,7 +85765,7 @@ entities: pos: 36.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4985 components: - type: Transform @@ -85666,7 +85773,7 @@ entities: pos: 35.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4986 components: - type: Transform @@ -85674,7 +85781,7 @@ entities: pos: 34.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4987 components: - type: Transform @@ -85682,7 +85789,7 @@ entities: pos: 33.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4988 components: - type: Transform @@ -85690,7 +85797,7 @@ entities: pos: 32.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4989 components: - type: Transform @@ -85698,7 +85805,7 @@ entities: pos: 31.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4990 components: - type: Transform @@ -85706,7 +85813,7 @@ entities: pos: 30.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4991 components: - type: Transform @@ -85714,7 +85821,7 @@ entities: pos: 29.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4992 components: - type: Transform @@ -85722,7 +85829,7 @@ entities: pos: 28.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5016 components: - type: Transform @@ -85795,42 +85902,42 @@ entities: pos: -55.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5470 components: - type: Transform pos: -55.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5471 components: - type: Transform pos: -55.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5472 components: - type: Transform pos: -55.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5473 components: - type: Transform pos: -55.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5474 components: - type: Transform pos: -55.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5475 components: - type: Transform @@ -85858,21 +85965,21 @@ entities: pos: -55.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5480 components: - type: Transform pos: -55.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5481 components: - type: Transform pos: -55.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5482 components: - type: Transform @@ -85900,21 +86007,21 @@ entities: pos: -55.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5487 components: - type: Transform pos: -55.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5488 components: - type: Transform pos: -55.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5493 components: - type: Transform @@ -85922,7 +86029,7 @@ entities: pos: -56.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5494 components: - type: Transform @@ -85930,7 +86037,7 @@ entities: pos: -57.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5496 components: - type: Transform @@ -85938,7 +86045,7 @@ entities: pos: -59.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5497 components: - type: Transform @@ -85946,7 +86053,7 @@ entities: pos: -60.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5498 components: - type: Transform @@ -85954,7 +86061,7 @@ entities: pos: -61.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5499 components: - type: Transform @@ -85962,7 +86069,7 @@ entities: pos: -62.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5500 components: - type: Transform @@ -85970,7 +86077,7 @@ entities: pos: -63.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5501 components: - type: Transform @@ -85978,7 +86085,7 @@ entities: pos: -64.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5502 components: - type: Transform @@ -85986,7 +86093,7 @@ entities: pos: -65.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5504 components: - type: Transform @@ -86146,7 +86253,7 @@ entities: pos: -56.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5527 components: - type: Transform @@ -86154,7 +86261,7 @@ entities: pos: -57.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5529 components: - type: Transform @@ -86162,7 +86269,7 @@ entities: pos: -59.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5531 components: - type: Transform @@ -86170,7 +86277,7 @@ entities: pos: -61.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5532 components: - type: Transform @@ -86178,7 +86285,7 @@ entities: pos: -62.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5533 components: - type: Transform @@ -86186,7 +86293,7 @@ entities: pos: -63.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5534 components: - type: Transform @@ -86194,7 +86301,7 @@ entities: pos: -64.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5535 components: - type: Transform @@ -86202,7 +86309,7 @@ entities: pos: -65.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5545 components: - type: Transform @@ -86369,56 +86476,56 @@ entities: pos: -60.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5819 components: - type: Transform pos: -60.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5820 components: - type: Transform pos: -60.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5821 components: - type: Transform pos: -60.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5822 components: - type: Transform pos: -60.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5823 components: - type: Transform pos: -60.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5824 components: - type: Transform pos: -60.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5826 components: - type: Transform pos: -60.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5829 components: - type: Transform @@ -86426,7 +86533,7 @@ entities: pos: -61.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5830 components: - type: Transform @@ -86434,7 +86541,7 @@ entities: pos: -62.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5831 components: - type: Transform @@ -86442,7 +86549,7 @@ entities: pos: -63.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5832 components: - type: Transform @@ -86450,7 +86557,7 @@ entities: pos: -64.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5833 components: - type: Transform @@ -86458,7 +86565,7 @@ entities: pos: -65.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5834 components: - type: Transform @@ -86504,7 +86611,7 @@ entities: pos: 0.5,48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6517 components: - type: Transform @@ -86526,7 +86633,7 @@ entities: pos: -0.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6520 components: - type: Transform @@ -86542,7 +86649,7 @@ entities: pos: -6.5,55.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6522 components: - type: Transform @@ -86558,7 +86665,7 @@ entities: pos: -2.5,49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6524 components: - type: Transform @@ -86574,7 +86681,7 @@ entities: pos: -12.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6541 components: - type: Transform @@ -86582,7 +86689,7 @@ entities: pos: -11.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6543 components: - type: Transform @@ -86590,7 +86697,7 @@ entities: pos: -6.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6544 components: - type: Transform @@ -86614,7 +86721,7 @@ entities: pos: -10.5,48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6547 components: - type: Transform @@ -86622,7 +86729,7 @@ entities: pos: -3.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6559 components: - type: Transform @@ -86654,7 +86761,7 @@ entities: pos: -2.5,52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6601 components: - type: Transform @@ -86670,7 +86777,7 @@ entities: pos: -6.5,59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6610 components: - type: Transform @@ -86678,7 +86785,7 @@ entities: pos: -10.5,53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6611 components: - type: Transform @@ -86686,7 +86793,7 @@ entities: pos: -1.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6612 components: - type: Transform @@ -86725,7 +86832,7 @@ entities: pos: -4.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6650 components: - type: Transform @@ -86733,7 +86840,7 @@ entities: pos: 15.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6653 components: - type: Transform @@ -86757,7 +86864,7 @@ entities: pos: 10.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6686 components: - type: Transform @@ -86765,7 +86872,7 @@ entities: pos: -7.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6690 components: - type: Transform @@ -86773,7 +86880,7 @@ entities: pos: -9.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6692 components: - type: Transform @@ -86796,14 +86903,14 @@ entities: pos: -10.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6726 components: - type: Transform pos: 12.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6733 components: - type: Transform @@ -86811,7 +86918,7 @@ entities: pos: -0.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6734 components: - type: Transform @@ -86900,105 +87007,105 @@ entities: pos: -1.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6747 components: - type: Transform pos: -1.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6748 components: - type: Transform pos: -1.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6749 components: - type: Transform pos: -1.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6750 components: - type: Transform pos: -1.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6751 components: - type: Transform pos: -1.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6753 components: - type: Transform pos: -1.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6754 components: - type: Transform pos: -1.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6755 components: - type: Transform pos: 0.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6756 components: - type: Transform pos: 0.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6757 components: - type: Transform pos: 0.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6759 components: - type: Transform pos: 0.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6760 components: - type: Transform pos: 0.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6762 components: - type: Transform pos: 0.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6763 components: - type: Transform pos: 0.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6764 components: - type: Transform @@ -87034,7 +87141,7 @@ entities: pos: -0.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6776 components: - type: Transform @@ -87042,7 +87149,7 @@ entities: pos: -2.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6777 components: - type: Transform @@ -87050,7 +87157,7 @@ entities: pos: -3.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6778 components: - type: Transform @@ -87058,7 +87165,7 @@ entities: pos: -4.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6779 components: - type: Transform @@ -87066,7 +87173,7 @@ entities: pos: -5.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6780 components: - type: Transform @@ -87144,21 +87251,21 @@ entities: pos: 0.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6790 components: - type: Transform pos: 0.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6791 components: - type: Transform pos: 0.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6792 components: - type: Transform @@ -87179,21 +87286,21 @@ entities: pos: -1.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6795 components: - type: Transform pos: -1.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6796 components: - type: Transform pos: -1.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6797 components: - type: Transform @@ -87222,14 +87329,14 @@ entities: pos: -6.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6810 components: - type: Transform pos: -6.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6811 components: - type: Transform @@ -87283,7 +87390,7 @@ entities: pos: -11.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6818 components: - type: Transform @@ -87291,7 +87398,7 @@ entities: pos: -10.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6819 components: - type: Transform @@ -87299,7 +87406,7 @@ entities: pos: -8.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6820 components: - type: Transform @@ -87307,7 +87414,7 @@ entities: pos: -7.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6821 components: - type: Transform @@ -87315,7 +87422,7 @@ entities: pos: -6.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6822 components: - type: Transform @@ -87339,7 +87446,7 @@ entities: pos: -9.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6825 components: - type: Transform @@ -87363,7 +87470,7 @@ entities: pos: -12.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6828 components: - type: Transform @@ -87387,7 +87494,7 @@ entities: pos: -11.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6834 components: - type: Transform @@ -87395,7 +87502,7 @@ entities: pos: -12.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6835 components: - type: Transform @@ -87483,7 +87590,7 @@ entities: pos: -10.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6851 components: - type: Transform @@ -87491,7 +87598,7 @@ entities: pos: -10.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6852 components: - type: Transform @@ -87499,7 +87606,7 @@ entities: pos: -10.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6854 components: - type: Transform @@ -87507,7 +87614,7 @@ entities: pos: -10.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6855 components: - type: Transform @@ -87515,7 +87622,7 @@ entities: pos: -10.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6856 components: - type: Transform @@ -87523,7 +87630,7 @@ entities: pos: -10.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6858 components: - type: Transform @@ -87531,7 +87638,7 @@ entities: pos: -10.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6859 components: - type: Transform @@ -87539,7 +87646,7 @@ entities: pos: -10.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6860 components: - type: Transform @@ -87547,7 +87654,7 @@ entities: pos: -10.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6862 components: - type: Transform @@ -87555,7 +87662,7 @@ entities: pos: -10.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6863 components: - type: Transform @@ -87563,7 +87670,7 @@ entities: pos: -10.5,46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6864 components: - type: Transform @@ -87579,7 +87686,7 @@ entities: pos: 1.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6866 components: - type: Transform @@ -87587,7 +87694,7 @@ entities: pos: 2.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6867 components: - type: Transform @@ -87595,7 +87702,7 @@ entities: pos: 3.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6868 components: - type: Transform @@ -87603,7 +87710,7 @@ entities: pos: 4.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6869 components: - type: Transform @@ -87611,7 +87718,7 @@ entities: pos: 5.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6870 components: - type: Transform @@ -87619,7 +87726,7 @@ entities: pos: 6.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6873 components: - type: Transform @@ -87683,7 +87790,7 @@ entities: pos: 9.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6884 components: - type: Transform @@ -87691,7 +87798,7 @@ entities: pos: 10.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6885 components: - type: Transform @@ -87699,7 +87806,7 @@ entities: pos: 11.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6887 components: - type: Transform @@ -87707,7 +87814,7 @@ entities: pos: 13.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6888 components: - type: Transform @@ -87715,7 +87822,7 @@ entities: pos: 14.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6889 components: - type: Transform @@ -87723,28 +87830,28 @@ entities: pos: 15.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6890 components: - type: Transform pos: 12.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6891 components: - type: Transform pos: 12.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6892 components: - type: Transform pos: 12.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6893 components: - type: Transform @@ -87779,14 +87886,14 @@ entities: pos: 7.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6899 components: - type: Transform pos: 7.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6900 components: - type: Transform @@ -87843,7 +87950,7 @@ entities: pos: -0.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6908 components: - type: Transform @@ -87851,7 +87958,7 @@ entities: pos: 0.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6909 components: - type: Transform @@ -87859,7 +87966,7 @@ entities: pos: 1.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6912 components: - type: Transform @@ -87867,7 +87974,7 @@ entities: pos: 2.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6913 components: - type: Transform @@ -87875,7 +87982,7 @@ entities: pos: 2.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6914 components: - type: Transform @@ -87883,7 +87990,7 @@ entities: pos: 2.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6915 components: - type: Transform @@ -87891,7 +87998,7 @@ entities: pos: 2.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6916 components: - type: Transform @@ -87930,28 +88037,28 @@ entities: pos: 12.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6923 components: - type: Transform pos: 12.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6924 components: - type: Transform pos: 12.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6925 components: - type: Transform pos: 12.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6927 components: - type: Transform @@ -87959,7 +88066,7 @@ entities: pos: 14.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6928 components: - type: Transform @@ -87967,7 +88074,7 @@ entities: pos: 15.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6929 components: - type: Transform @@ -87975,7 +88082,7 @@ entities: pos: 16.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6930 components: - type: Transform @@ -87983,7 +88090,7 @@ entities: pos: 17.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6931 components: - type: Transform @@ -87991,7 +88098,7 @@ entities: pos: 18.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6933 components: - type: Transform @@ -88047,7 +88154,7 @@ entities: pos: 12.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6940 components: - type: Transform @@ -88055,7 +88162,7 @@ entities: pos: 12.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6941 components: - type: Transform @@ -88063,7 +88170,7 @@ entities: pos: 12.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6942 components: - type: Transform @@ -88071,7 +88178,7 @@ entities: pos: 12.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6944 components: - type: Transform @@ -88095,7 +88202,7 @@ entities: pos: 7.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6948 components: - type: Transform @@ -88103,7 +88210,7 @@ entities: pos: 7.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6949 components: - type: Transform @@ -88111,7 +88218,7 @@ entities: pos: 7.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6950 components: - type: Transform @@ -88119,7 +88226,7 @@ entities: pos: 7.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6952 components: - type: Transform @@ -88151,7 +88258,7 @@ entities: pos: 6.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6961 components: - type: Transform @@ -88159,7 +88266,7 @@ entities: pos: 8.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6962 components: - type: Transform @@ -88167,7 +88274,7 @@ entities: pos: 9.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6963 components: - type: Transform @@ -88175,7 +88282,7 @@ entities: pos: 10.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6964 components: - type: Transform @@ -88183,7 +88290,7 @@ entities: pos: 11.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6965 components: - type: Transform @@ -88191,7 +88298,7 @@ entities: pos: 12.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6966 components: - type: Transform @@ -88199,7 +88306,7 @@ entities: pos: 13.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6967 components: - type: Transform @@ -88263,14 +88370,14 @@ entities: pos: 5.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6975 components: - type: Transform pos: 5.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6977 components: - type: Transform @@ -88278,7 +88385,7 @@ entities: pos: 5.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6978 components: - type: Transform @@ -88318,7 +88425,7 @@ entities: pos: 14.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6986 components: - type: Transform @@ -88326,7 +88433,7 @@ entities: pos: 14.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6987 components: - type: Transform @@ -88334,7 +88441,7 @@ entities: pos: 14.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6989 components: - type: Transform @@ -88349,14 +88456,14 @@ entities: pos: 14.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6992 components: - type: Transform pos: 5.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6994 components: - type: Transform @@ -88412,7 +88519,7 @@ entities: pos: 12.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7003 components: - type: Transform @@ -88420,7 +88527,7 @@ entities: pos: 11.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7005 components: - type: Transform @@ -88428,7 +88535,7 @@ entities: pos: 9.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7006 components: - type: Transform @@ -88436,7 +88543,7 @@ entities: pos: 8.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7007 components: - type: Transform @@ -88444,7 +88551,7 @@ entities: pos: 7.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7008 components: - type: Transform @@ -88452,7 +88559,7 @@ entities: pos: 6.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7021 components: - type: Transform @@ -88484,7 +88591,7 @@ entities: pos: 0.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7033 components: - type: Transform @@ -88492,7 +88599,7 @@ entities: pos: 0.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7034 components: - type: Transform @@ -88500,7 +88607,7 @@ entities: pos: 0.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7035 components: - type: Transform @@ -88508,7 +88615,7 @@ entities: pos: 0.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7036 components: - type: Transform @@ -88548,7 +88655,7 @@ entities: pos: -0.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7045 components: - type: Transform @@ -88556,7 +88663,7 @@ entities: pos: -1.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7046 components: - type: Transform @@ -88580,7 +88687,7 @@ entities: pos: -3.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7049 components: - type: Transform @@ -88588,7 +88695,7 @@ entities: pos: -4.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7050 components: - type: Transform @@ -88596,7 +88703,7 @@ entities: pos: -5.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7051 components: - type: Transform @@ -88604,7 +88711,7 @@ entities: pos: -6.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7052 components: - type: Transform @@ -88676,14 +88783,14 @@ entities: pos: -1.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7080 components: - type: Transform pos: -10.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7106 components: - type: Transform @@ -88739,7 +88846,7 @@ entities: pos: -5.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7148 components: - type: Transform @@ -88747,7 +88854,7 @@ entities: pos: -2.5,48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7152 components: - type: Transform @@ -88763,7 +88870,7 @@ entities: pos: -2.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7154 components: - type: Transform @@ -88803,7 +88910,7 @@ entities: pos: -9.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7189 components: - type: Transform @@ -88818,7 +88925,7 @@ entities: pos: -8.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7244 components: - type: Transform @@ -88826,7 +88933,7 @@ entities: pos: 10.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7245 components: - type: Transform @@ -88850,7 +88957,7 @@ entities: pos: -7.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7307 components: - type: Transform @@ -88858,7 +88965,7 @@ entities: pos: -4.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7308 components: - type: Transform @@ -88874,7 +88981,7 @@ entities: pos: -5.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7310 components: - type: Transform @@ -88882,14 +88989,14 @@ entities: pos: -8.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7315 components: - type: Transform pos: 0.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7327 components: - type: Transform @@ -88921,7 +89028,7 @@ entities: pos: -6.5,49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7360 components: - type: Transform @@ -88953,7 +89060,7 @@ entities: pos: -6.5,53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7733 components: - type: Transform @@ -88993,7 +89100,7 @@ entities: pos: -10.5,52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7738 components: - type: Transform @@ -89001,7 +89108,7 @@ entities: pos: -6.5,58.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7740 components: - type: Transform @@ -89016,7 +89123,7 @@ entities: pos: 0.5,49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7789 components: - type: Transform @@ -89024,7 +89131,7 @@ entities: pos: -2.5,53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7813 components: - type: Transform @@ -89032,7 +89139,7 @@ entities: pos: -6.5,48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7815 components: - type: Transform @@ -89064,7 +89171,7 @@ entities: pos: -6.5,57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7835 components: - type: Transform @@ -89072,7 +89179,7 @@ entities: pos: -10.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7836 components: - type: Transform @@ -89088,7 +89195,7 @@ entities: pos: -3.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7845 components: - type: Transform @@ -89096,7 +89203,7 @@ entities: pos: -10.5,49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7846 components: - type: Transform @@ -89104,7 +89211,7 @@ entities: pos: -6.5,52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7848 components: - type: Transform @@ -89120,7 +89227,7 @@ entities: pos: 16.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7855 components: - type: Transform @@ -89160,7 +89267,7 @@ entities: pos: 19.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8674 components: - type: Transform @@ -89168,7 +89275,7 @@ entities: pos: 21.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8675 components: - type: Transform @@ -89176,7 +89283,7 @@ entities: pos: 22.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8676 components: - type: Transform @@ -89184,7 +89291,7 @@ entities: pos: 23.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8677 components: - type: Transform @@ -89192,7 +89299,7 @@ entities: pos: 24.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8678 components: - type: Transform @@ -89200,7 +89307,7 @@ entities: pos: 25.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8680 components: - type: Transform @@ -89208,7 +89315,7 @@ entities: pos: 27.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8682 components: - type: Transform @@ -89216,7 +89323,7 @@ entities: pos: 29.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8683 components: - type: Transform @@ -89224,7 +89331,7 @@ entities: pos: 29.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8684 components: - type: Transform @@ -89232,7 +89339,7 @@ entities: pos: 29.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8685 components: - type: Transform @@ -89240,7 +89347,7 @@ entities: pos: 30.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8686 components: - type: Transform @@ -89248,7 +89355,7 @@ entities: pos: 31.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8687 components: - type: Transform @@ -89256,7 +89363,7 @@ entities: pos: 32.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8689 components: - type: Transform @@ -89264,105 +89371,105 @@ entities: pos: 34.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8691 components: - type: Transform pos: 35.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8692 components: - type: Transform pos: 35.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8693 components: - type: Transform pos: 35.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8694 components: - type: Transform pos: 35.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8696 components: - type: Transform pos: 35.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8698 components: - type: Transform pos: 35.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8700 components: - type: Transform pos: 35.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8701 components: - type: Transform pos: 35.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8702 components: - type: Transform pos: 35.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8703 components: - type: Transform pos: 35.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8704 components: - type: Transform pos: 35.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8706 components: - type: Transform pos: 35.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8707 components: - type: Transform pos: 35.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8709 components: - type: Transform pos: 35.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8710 components: - type: Transform @@ -89580,7 +89687,7 @@ entities: pos: 34.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8756 components: - type: Transform @@ -89588,7 +89695,7 @@ entities: pos: 33.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8757 components: - type: Transform @@ -89596,7 +89703,7 @@ entities: pos: 32.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8758 components: - type: Transform @@ -89604,7 +89711,7 @@ entities: pos: 31.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8759 components: - type: Transform @@ -89612,7 +89719,7 @@ entities: pos: 30.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8760 components: - type: Transform @@ -89620,7 +89727,7 @@ entities: pos: 29.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8761 components: - type: Transform @@ -89628,7 +89735,7 @@ entities: pos: 29.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8762 components: - type: Transform @@ -89636,7 +89743,7 @@ entities: pos: 29.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8764 components: - type: Transform @@ -89644,7 +89751,7 @@ entities: pos: 29.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8765 components: - type: Transform @@ -89652,7 +89759,7 @@ entities: pos: 30.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8767 components: - type: Transform @@ -89660,7 +89767,7 @@ entities: pos: 32.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8768 components: - type: Transform @@ -89668,7 +89775,7 @@ entities: pos: 33.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8769 components: - type: Transform @@ -89676,28 +89783,28 @@ entities: pos: 34.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8772 components: - type: Transform pos: 35.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8773 components: - type: Transform pos: 35.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8774 components: - type: Transform pos: 35.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8775 components: - type: Transform @@ -89820,7 +89927,7 @@ entities: pos: 28.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8795 components: - type: Transform @@ -89908,7 +90015,7 @@ entities: pos: 29.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8806 components: - type: Transform @@ -89916,7 +90023,7 @@ entities: pos: 29.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8807 components: - type: Transform @@ -89924,7 +90031,7 @@ entities: pos: 29.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8808 components: - type: Transform @@ -89932,7 +90039,7 @@ entities: pos: 29.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8809 components: - type: Transform @@ -89940,7 +90047,7 @@ entities: pos: 29.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8816 components: - type: Transform @@ -90116,7 +90223,7 @@ entities: pos: 36.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8839 components: - type: Transform @@ -90195,28 +90302,28 @@ entities: pos: 46.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8988 components: - type: Transform pos: 46.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8989 components: - type: Transform pos: 46.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8990 components: - type: Transform pos: 46.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8993 components: - type: Transform @@ -90224,7 +90331,7 @@ entities: pos: 45.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8994 components: - type: Transform @@ -90232,21 +90339,21 @@ entities: pos: 44.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9000 components: - type: Transform pos: 46.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9001 components: - type: Transform pos: 46.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9004 components: - type: Transform @@ -90342,7 +90449,7 @@ entities: pos: 47.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9019 components: - type: Transform @@ -90350,7 +90457,7 @@ entities: pos: 48.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9026 components: - type: Transform @@ -90430,7 +90537,7 @@ entities: pos: 49.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9176 components: - type: Transform @@ -90461,21 +90568,21 @@ entities: pos: -17.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9221 components: - type: Transform pos: -17.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9222 components: - type: Transform pos: -17.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9224 components: - type: Transform @@ -90490,7 +90597,7 @@ entities: pos: -23.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9316 components: - type: Transform @@ -90498,7 +90605,7 @@ entities: pos: -24.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9317 components: - type: Transform @@ -90538,7 +90645,7 @@ entities: pos: -21.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9323 components: - type: Transform @@ -90546,7 +90653,7 @@ entities: pos: -21.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9324 components: - type: Transform @@ -90554,7 +90661,7 @@ entities: pos: -21.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9325 components: - type: Transform @@ -90562,7 +90669,7 @@ entities: pos: -21.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9326 components: - type: Transform @@ -90570,7 +90677,7 @@ entities: pos: -21.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9327 components: - type: Transform @@ -90578,7 +90685,7 @@ entities: pos: -21.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9328 components: - type: Transform @@ -90586,7 +90693,7 @@ entities: pos: -21.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9329 components: - type: Transform @@ -90594,7 +90701,7 @@ entities: pos: -21.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9330 components: - type: Transform @@ -90602,7 +90709,7 @@ entities: pos: -22.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9331 components: - type: Transform @@ -90610,14 +90717,14 @@ entities: pos: -23.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9332 components: - type: Transform pos: -24.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9336 components: - type: Transform @@ -90625,7 +90732,7 @@ entities: pos: -25.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9339 components: - type: Transform @@ -90844,14 +90951,14 @@ entities: pos: 46.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9732 components: - type: Transform pos: 46.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9734 components: - type: Transform @@ -90859,7 +90966,7 @@ entities: pos: 47.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9735 components: - type: Transform @@ -90867,7 +90974,7 @@ entities: pos: 48.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9736 components: - type: Transform @@ -90875,7 +90982,7 @@ entities: pos: 49.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9737 components: - type: Transform @@ -90883,7 +90990,7 @@ entities: pos: 50.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9738 components: - type: Transform @@ -90891,7 +90998,7 @@ entities: pos: 51.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9936 components: - type: Transform @@ -90912,7 +91019,7 @@ entities: pos: 54.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10658 components: - type: Transform @@ -90976,7 +91083,7 @@ entities: pos: -9.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10782 components: - type: Transform @@ -90984,7 +91091,7 @@ entities: pos: -9.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10783 components: - type: Transform @@ -90992,7 +91099,7 @@ entities: pos: -9.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10784 components: - type: Transform @@ -91000,7 +91107,7 @@ entities: pos: -9.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10785 components: - type: Transform @@ -91008,7 +91115,7 @@ entities: pos: -9.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10786 components: - type: Transform @@ -91016,7 +91123,7 @@ entities: pos: -9.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10787 components: - type: Transform @@ -91024,7 +91131,7 @@ entities: pos: -9.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10794 components: - type: Transform @@ -91096,7 +91203,7 @@ entities: pos: 53.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10953 components: - type: Transform @@ -91104,7 +91211,7 @@ entities: pos: 53.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10954 components: - type: Transform @@ -91112,14 +91219,14 @@ entities: pos: 53.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10958 components: - type: Transform pos: 54.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10959 components: - type: Transform @@ -91127,7 +91234,7 @@ entities: pos: 53.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10961 components: - type: Transform @@ -91135,7 +91242,7 @@ entities: pos: 53.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10962 components: - type: Transform @@ -91143,7 +91250,7 @@ entities: pos: 53.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10964 components: - type: Transform @@ -91151,7 +91258,7 @@ entities: pos: 53.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10972 components: - type: Transform @@ -91167,15 +91274,7 @@ entities: pos: 52.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-19.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10975 components: - type: Transform @@ -91183,7 +91282,7 @@ entities: pos: 50.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10980 components: - type: Transform @@ -91206,7 +91305,7 @@ entities: pos: 37.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11004 components: - type: Transform @@ -91470,13 +91569,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11094 - components: - - type: Transform - pos: 61.5,-26.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 11095 components: - type: Transform @@ -91658,15 +91750,7 @@ entities: pos: 56.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-7.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 11146 components: - type: Transform @@ -91691,14 +91775,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 11150 components: - type: Transform @@ -91762,7 +91838,7 @@ entities: pos: 47.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11197 components: - type: Transform @@ -91770,7 +91846,7 @@ entities: pos: 48.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11198 components: - type: Transform @@ -91778,7 +91854,7 @@ entities: pos: 49.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11205 components: - type: Transform @@ -91801,7 +91877,7 @@ entities: pos: 50.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11232 components: - type: Transform @@ -91936,7 +92012,7 @@ entities: pos: 52.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11363 components: - type: Transform @@ -91944,14 +92020,14 @@ entities: pos: 53.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11376 components: - type: Transform pos: 54.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11418 components: - type: Transform @@ -92085,42 +92161,42 @@ entities: pos: 54.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11510 components: - type: Transform pos: 54.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11546 components: - type: Transform pos: 54.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11547 components: - type: Transform pos: 54.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11548 components: - type: Transform pos: 54.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11549 components: - type: Transform pos: 54.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11550 components: - type: Transform @@ -92128,7 +92204,7 @@ entities: pos: 53.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11551 components: - type: Transform @@ -92136,7 +92212,7 @@ entities: pos: 52.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11552 components: - type: Transform @@ -92144,7 +92220,7 @@ entities: pos: 51.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11553 components: - type: Transform @@ -92152,7 +92228,7 @@ entities: pos: 50.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11559 components: - type: Transform @@ -92160,7 +92236,7 @@ entities: pos: 55.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11560 components: - type: Transform @@ -92168,7 +92244,7 @@ entities: pos: 56.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11561 components: - type: Transform @@ -92176,7 +92252,7 @@ entities: pos: 57.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11572 components: - type: Transform @@ -92247,7 +92323,7 @@ entities: pos: 58.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11830 components: - type: Transform @@ -92255,7 +92331,7 @@ entities: pos: 59.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11836 components: - type: Transform @@ -92263,7 +92339,7 @@ entities: pos: 54.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11837 components: - type: Transform @@ -92271,7 +92347,7 @@ entities: pos: 54.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11838 components: - type: Transform @@ -92279,7 +92355,7 @@ entities: pos: 54.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11839 components: - type: Transform @@ -92560,7 +92636,7 @@ entities: pos: 7.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12113 components: - type: Transform @@ -92568,7 +92644,7 @@ entities: pos: 7.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12114 components: - type: Transform @@ -92576,7 +92652,7 @@ entities: pos: 7.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12117 components: - type: Transform @@ -92646,7 +92722,7 @@ entities: pos: 22.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12147 components: - type: Transform @@ -92654,7 +92730,7 @@ entities: pos: 22.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12148 components: - type: Transform @@ -92662,7 +92738,7 @@ entities: pos: 22.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12149 components: - type: Transform @@ -92670,21 +92746,21 @@ entities: pos: 22.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12327 components: - type: Transform pos: 46.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12328 components: - type: Transform pos: 46.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12331 components: - type: Transform @@ -92719,7 +92795,7 @@ entities: pos: 42.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12339 components: - type: Transform @@ -92727,7 +92803,7 @@ entities: pos: 43.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12340 components: - type: Transform @@ -92735,7 +92811,7 @@ entities: pos: 44.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12341 components: - type: Transform @@ -92743,7 +92819,7 @@ entities: pos: 45.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12398 components: - type: Transform @@ -92751,7 +92827,7 @@ entities: pos: 53.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12399 components: - type: Transform @@ -92759,7 +92835,7 @@ entities: pos: 52.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12404 components: - type: Transform @@ -92887,7 +92963,7 @@ entities: pos: 34.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12687 components: - type: Transform @@ -92895,7 +92971,7 @@ entities: pos: 33.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12688 components: - type: Transform @@ -92903,7 +92979,7 @@ entities: pos: 32.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12689 components: - type: Transform @@ -92911,7 +92987,7 @@ entities: pos: 31.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12690 components: - type: Transform @@ -92951,7 +93027,7 @@ entities: pos: 34.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12727 components: - type: Transform @@ -92959,7 +93035,7 @@ entities: pos: 33.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12728 components: - type: Transform @@ -92967,7 +93043,7 @@ entities: pos: 32.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12747 components: - type: Transform @@ -92975,7 +93051,7 @@ entities: pos: 34.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12748 components: - type: Transform @@ -92983,7 +93059,7 @@ entities: pos: 33.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12749 components: - type: Transform @@ -92991,7 +93067,7 @@ entities: pos: 32.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12750 components: - type: Transform @@ -92999,7 +93075,7 @@ entities: pos: 31.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12751 components: - type: Transform @@ -93007,7 +93083,7 @@ entities: pos: 30.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12752 components: - type: Transform @@ -93015,7 +93091,7 @@ entities: pos: 29.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12753 components: - type: Transform @@ -93023,7 +93099,7 @@ entities: pos: 28.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12755 components: - type: Transform @@ -93031,7 +93107,7 @@ entities: pos: 36.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12756 components: - type: Transform @@ -93039,7 +93115,7 @@ entities: pos: 37.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12784 components: - type: Transform @@ -93103,7 +93179,7 @@ entities: pos: 34.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12826 components: - type: Transform @@ -93111,7 +93187,7 @@ entities: pos: 33.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12827 components: - type: Transform @@ -93119,7 +93195,7 @@ entities: pos: 32.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12828 components: - type: Transform @@ -93127,7 +93203,7 @@ entities: pos: 36.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12829 components: - type: Transform @@ -93135,21 +93211,21 @@ entities: pos: 37.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12830 components: - type: Transform pos: 35.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12831 components: - type: Transform pos: 35.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12832 components: - type: Transform @@ -93157,7 +93233,7 @@ entities: pos: 36.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12989 components: - type: Transform @@ -93165,7 +93241,7 @@ entities: pos: 20.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12991 components: - type: Transform @@ -93181,7 +93257,7 @@ entities: pos: 26.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12993 components: - type: Transform @@ -93213,7 +93289,7 @@ entities: pos: 34.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13002 components: - type: Transform @@ -93227,7 +93303,7 @@ entities: pos: 33.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13006 components: - type: Transform @@ -93235,7 +93311,7 @@ entities: pos: 36.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13007 components: - type: Transform @@ -93243,7 +93319,7 @@ entities: pos: 37.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13008 components: - type: Transform @@ -93251,7 +93327,7 @@ entities: pos: 38.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13009 components: - type: Transform @@ -93259,7 +93335,7 @@ entities: pos: 39.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13010 components: - type: Transform @@ -93267,7 +93343,7 @@ entities: pos: 40.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13011 components: - type: Transform @@ -93275,7 +93351,7 @@ entities: pos: 41.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13012 components: - type: Transform @@ -93283,7 +93359,7 @@ entities: pos: 42.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13013 components: - type: Transform @@ -93291,7 +93367,7 @@ entities: pos: 43.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13014 components: - type: Transform @@ -93299,7 +93375,7 @@ entities: pos: 44.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13015 components: - type: Transform @@ -93307,7 +93383,7 @@ entities: pos: 45.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13016 components: - type: Transform @@ -93411,7 +93487,7 @@ entities: pos: 31.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13040 components: - type: Transform @@ -93419,7 +93495,7 @@ entities: pos: 31.5,46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13041 components: - type: Transform @@ -93427,7 +93503,7 @@ entities: pos: 31.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13042 components: - type: Transform @@ -93435,7 +93511,7 @@ entities: pos: 31.5,48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13043 components: - type: Transform @@ -93443,7 +93519,7 @@ entities: pos: 31.5,49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13244 components: - type: Transform @@ -93514,7 +93590,7 @@ entities: pos: -3.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14192 components: - type: Transform @@ -93529,7 +93605,7 @@ entities: pos: -19.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14257 components: - type: Transform @@ -93545,14 +93621,14 @@ entities: pos: -4.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14347 components: - type: Transform pos: -16.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14372 components: - type: Transform @@ -93582,7 +93658,7 @@ entities: pos: -16.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14395 components: - type: Transform @@ -93598,7 +93674,7 @@ entities: pos: -19.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14418 components: - type: Transform @@ -93606,7 +93682,7 @@ entities: pos: -2.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14423 components: - type: Transform @@ -93622,7 +93698,7 @@ entities: pos: -26.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14462 components: - type: Transform @@ -93630,7 +93706,7 @@ entities: pos: -26.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14464 components: - type: Transform @@ -93743,91 +93819,91 @@ entities: pos: -1.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14543 components: - type: Transform pos: -1.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14544 components: - type: Transform pos: -1.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14546 components: - type: Transform pos: -1.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14547 components: - type: Transform pos: -1.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14548 components: - type: Transform pos: -1.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14549 components: - type: Transform pos: -1.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14550 components: - type: Transform pos: -1.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14552 components: - type: Transform pos: -1.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14553 components: - type: Transform pos: -1.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14554 components: - type: Transform pos: -1.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14555 components: - type: Transform pos: -1.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14556 components: - type: Transform pos: -1.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14557 components: - type: Transform @@ -94126,7 +94202,7 @@ entities: pos: -16.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14625 components: - type: Transform @@ -94148,7 +94224,7 @@ entities: pos: -18.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14643 components: - type: Transform @@ -94156,7 +94232,7 @@ entities: pos: -10.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14644 components: - type: Transform @@ -94164,49 +94240,49 @@ entities: pos: -9.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14645 components: - type: Transform pos: -8.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14647 components: - type: Transform pos: -8.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14648 components: - type: Transform pos: -8.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14649 components: - type: Transform pos: -8.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14650 components: - type: Transform pos: -8.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14651 components: - type: Transform pos: -8.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14654 components: - type: Transform @@ -94214,14 +94290,14 @@ entities: pos: -7.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14655 components: - type: Transform pos: -6.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14656 components: - type: Transform @@ -94229,7 +94305,7 @@ entities: pos: -5.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14657 components: - type: Transform @@ -94237,7 +94313,7 @@ entities: pos: -4.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14658 components: - type: Transform @@ -94245,7 +94321,7 @@ entities: pos: -3.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14661 components: - type: Transform @@ -94253,7 +94329,7 @@ entities: pos: -11.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14662 components: - type: Transform @@ -94261,7 +94337,7 @@ entities: pos: -11.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14663 components: - type: Transform @@ -94269,14 +94345,14 @@ entities: pos: -11.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14669 components: - type: Transform pos: -16.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14672 components: - type: Transform @@ -94284,7 +94360,7 @@ entities: pos: -17.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14676 components: - type: Transform @@ -94292,7 +94368,7 @@ entities: pos: -18.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14677 components: - type: Transform @@ -94300,7 +94376,7 @@ entities: pos: -17.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14678 components: - type: Transform @@ -94308,7 +94384,7 @@ entities: pos: -16.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14680 components: - type: Transform @@ -94316,7 +94392,7 @@ entities: pos: -13.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14681 components: - type: Transform @@ -94324,70 +94400,70 @@ entities: pos: -12.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14686 components: - type: Transform pos: -19.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14687 components: - type: Transform pos: -19.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14699 components: - type: Transform pos: -19.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14700 components: - type: Transform pos: -19.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14702 components: - type: Transform pos: -19.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14703 components: - type: Transform pos: -19.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14704 components: - type: Transform pos: -19.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14705 components: - type: Transform pos: -19.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14706 components: - type: Transform pos: -19.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14707 components: - type: Transform @@ -94395,7 +94471,7 @@ entities: pos: -20.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14708 components: - type: Transform @@ -94403,7 +94479,7 @@ entities: pos: -21.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14709 components: - type: Transform @@ -94411,7 +94487,7 @@ entities: pos: -22.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14710 components: - type: Transform @@ -94419,7 +94495,7 @@ entities: pos: -23.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14711 components: - type: Transform @@ -94427,7 +94503,7 @@ entities: pos: -24.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14715 components: - type: Transform @@ -94435,7 +94511,7 @@ entities: pos: -28.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14716 components: - type: Transform @@ -94443,7 +94519,7 @@ entities: pos: -29.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14717 components: - type: Transform @@ -94451,7 +94527,7 @@ entities: pos: -30.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14718 components: - type: Transform @@ -94459,7 +94535,7 @@ entities: pos: -31.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14719 components: - type: Transform @@ -94467,7 +94543,7 @@ entities: pos: -32.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14720 components: - type: Transform @@ -94475,7 +94551,7 @@ entities: pos: -33.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14721 components: - type: Transform @@ -94483,7 +94559,7 @@ entities: pos: -34.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14722 components: - type: Transform @@ -94491,7 +94567,7 @@ entities: pos: -26.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14723 components: - type: Transform @@ -94499,7 +94575,7 @@ entities: pos: -26.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14724 components: - type: Transform @@ -94507,7 +94583,7 @@ entities: pos: -26.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14725 components: - type: Transform @@ -94515,7 +94591,7 @@ entities: pos: -26.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14730 components: - type: Transform @@ -94523,7 +94599,7 @@ entities: pos: -18.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14731 components: - type: Transform @@ -94531,7 +94607,7 @@ entities: pos: -17.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14732 components: - type: Transform @@ -94539,7 +94615,7 @@ entities: pos: -16.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14735 components: - type: Transform @@ -94621,21 +94697,21 @@ entities: pos: -26.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14750 components: - type: Transform pos: -26.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14751 components: - type: Transform pos: -26.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14793 components: - type: Transform @@ -94674,7 +94750,7 @@ entities: pos: -1.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15237 components: - type: Transform @@ -94840,7 +94916,7 @@ entities: pos: -34.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15270 components: - type: Transform @@ -94848,7 +94924,7 @@ entities: pos: -34.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15271 components: - type: Transform @@ -94856,7 +94932,7 @@ entities: pos: -33.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15272 components: - type: Transform @@ -94864,7 +94940,7 @@ entities: pos: -32.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15273 components: - type: Transform @@ -94872,7 +94948,7 @@ entities: pos: -31.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15274 components: - type: Transform @@ -94880,7 +94956,7 @@ entities: pos: -30.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15275 components: - type: Transform @@ -94888,7 +94964,7 @@ entities: pos: -29.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15276 components: - type: Transform @@ -94896,7 +94972,7 @@ entities: pos: -28.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15277 components: - type: Transform @@ -94904,7 +94980,7 @@ entities: pos: -27.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15278 components: - type: Transform @@ -94912,7 +94988,7 @@ entities: pos: -26.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15279 components: - type: Transform @@ -94920,21 +94996,21 @@ entities: pos: -25.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15280 components: - type: Transform pos: -24.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15281 components: - type: Transform pos: -24.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15283 components: - type: Transform @@ -94942,7 +95018,7 @@ entities: pos: -22.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15284 components: - type: Transform @@ -94950,7 +95026,7 @@ entities: pos: -21.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15285 components: - type: Transform @@ -94958,7 +95034,7 @@ entities: pos: -20.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15286 components: - type: Transform @@ -94966,7 +95042,7 @@ entities: pos: -19.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15287 components: - type: Transform @@ -94974,7 +95050,7 @@ entities: pos: -19.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15288 components: - type: Transform @@ -94982,7 +95058,7 @@ entities: pos: -19.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15291 components: - type: Transform @@ -94990,7 +95066,7 @@ entities: pos: -19.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15292 components: - type: Transform @@ -94998,7 +95074,7 @@ entities: pos: -19.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15293 components: - type: Transform @@ -95054,7 +95130,7 @@ entities: pos: -19.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15301 components: - type: Transform @@ -95062,7 +95138,7 @@ entities: pos: -19.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15302 components: - type: Transform @@ -95070,7 +95146,7 @@ entities: pos: -19.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15303 components: - type: Transform @@ -95078,7 +95154,7 @@ entities: pos: -19.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15304 components: - type: Transform @@ -95086,7 +95162,7 @@ entities: pos: -19.5,-52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15309 components: - type: Transform @@ -95094,7 +95170,7 @@ entities: pos: -18.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15310 components: - type: Transform @@ -95102,7 +95178,7 @@ entities: pos: -17.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15311 components: - type: Transform @@ -95110,7 +95186,7 @@ entities: pos: -16.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15312 components: - type: Transform @@ -95149,42 +95225,42 @@ entities: pos: -14.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15322 components: - type: Transform pos: -14.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15323 components: - type: Transform pos: -14.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15324 components: - type: Transform pos: -14.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15325 components: - type: Transform pos: -14.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15326 components: - type: Transform pos: -14.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15329 components: - type: Transform @@ -95192,7 +95268,7 @@ entities: pos: -13.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15330 components: - type: Transform @@ -95200,7 +95276,7 @@ entities: pos: -12.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15331 components: - type: Transform @@ -95208,7 +95284,7 @@ entities: pos: -11.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15335 components: - type: Transform @@ -95271,7 +95347,7 @@ entities: pos: -15.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15347 components: - type: Transform @@ -95279,7 +95355,7 @@ entities: pos: -16.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15518 components: - type: Transform @@ -95363,7 +95439,7 @@ entities: pos: -21.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15536 components: - type: Transform @@ -95371,7 +95447,7 @@ entities: pos: -22.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15537 components: - type: Transform @@ -95379,28 +95455,28 @@ entities: pos: -23.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15538 components: - type: Transform pos: -19.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15539 components: - type: Transform pos: -19.5,-55.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15540 components: - type: Transform pos: -19.5,-53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15655 components: - type: Transform @@ -95408,7 +95484,7 @@ entities: pos: -15.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15656 components: - type: Transform @@ -95432,21 +95508,21 @@ entities: pos: -6.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16116 components: - type: Transform pos: -19.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16133 components: - type: Transform pos: -16.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16359 components: - type: Transform @@ -96133,7 +96209,7 @@ entities: pos: -31.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17657 components: - type: Transform @@ -96239,7 +96315,7 @@ entities: pos: -23.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17688 components: - type: Transform @@ -96247,7 +96323,7 @@ entities: pos: -24.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17689 components: - type: Transform @@ -96255,7 +96331,7 @@ entities: pos: -25.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17690 components: - type: Transform @@ -96263,7 +96339,7 @@ entities: pos: -22.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17691 components: - type: Transform @@ -96271,7 +96347,7 @@ entities: pos: -21.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17692 components: - type: Transform @@ -96279,7 +96355,7 @@ entities: pos: -26.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17693 components: - type: Transform @@ -96287,7 +96363,7 @@ entities: pos: -27.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17695 components: - type: Transform @@ -96295,7 +96371,7 @@ entities: pos: -29.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17697 components: - type: Transform @@ -96303,7 +96379,7 @@ entities: pos: -31.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17698 components: - type: Transform @@ -96311,7 +96387,7 @@ entities: pos: -30.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17699 components: - type: Transform @@ -96319,7 +96395,7 @@ entities: pos: -31.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17700 components: - type: Transform @@ -96327,7 +96403,7 @@ entities: pos: -31.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17701 components: - type: Transform @@ -96335,7 +96411,7 @@ entities: pos: -31.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17702 components: - type: Transform @@ -96343,7 +96419,7 @@ entities: pos: -31.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18354 components: - type: Transform @@ -96737,7 +96813,7 @@ entities: pos: -59.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18491 components: - type: Transform @@ -96753,7 +96829,7 @@ entities: pos: -58.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18500 components: - type: Transform @@ -96761,35 +96837,35 @@ entities: pos: -57.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18501 components: - type: Transform pos: -56.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18502 components: - type: Transform pos: -56.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18503 components: - type: Transform pos: -56.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18580 components: - type: Transform pos: -19.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18973 components: - type: Transform @@ -97302,7 +97378,7 @@ entities: pos: 11.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20637 components: - type: Transform @@ -97337,35 +97413,35 @@ entities: pos: 4.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20642 components: - type: Transform pos: 4.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20643 components: - type: Transform pos: 4.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20644 components: - type: Transform pos: 4.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20645 components: - type: Transform pos: 4.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20646 components: - type: Transform @@ -97373,7 +97449,7 @@ entities: pos: 3.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20647 components: - type: Transform @@ -97381,7 +97457,7 @@ entities: pos: 2.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20648 components: - type: Transform @@ -97389,7 +97465,7 @@ entities: pos: 1.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20649 components: - type: Transform @@ -97397,7 +97473,7 @@ entities: pos: 0.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20650 components: - type: Transform @@ -97405,7 +97481,7 @@ entities: pos: -0.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20651 components: - type: Transform @@ -97613,161 +97689,161 @@ entities: pos: -1.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20686 components: - type: Transform pos: -1.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20687 components: - type: Transform pos: -1.5,-59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20688 components: - type: Transform pos: -1.5,-58.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20690 components: - type: Transform pos: -1.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20691 components: - type: Transform pos: -1.5,-55.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20692 components: - type: Transform pos: -1.5,-54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20693 components: - type: Transform pos: -1.5,-53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20694 components: - type: Transform pos: -1.5,-52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20695 components: - type: Transform pos: -1.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20696 components: - type: Transform pos: -1.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20697 components: - type: Transform pos: -1.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20698 components: - type: Transform pos: -1.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20699 components: - type: Transform pos: -1.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20701 components: - type: Transform pos: -1.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20702 components: - type: Transform pos: -1.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20703 components: - type: Transform pos: -1.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20704 components: - type: Transform pos: -1.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20705 components: - type: Transform pos: -1.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20706 components: - type: Transform pos: -1.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20707 components: - type: Transform pos: -1.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20708 components: - type: Transform pos: -1.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20709 components: - type: Transform pos: -1.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20724 components: - type: Transform @@ -98639,7 +98715,7 @@ entities: pos: 5.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20963 components: - type: Transform @@ -98647,7 +98723,7 @@ entities: pos: 6.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20964 components: - type: Transform @@ -98655,7 +98731,7 @@ entities: pos: 7.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20965 components: - type: Transform @@ -98663,7 +98739,7 @@ entities: pos: 7.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20966 components: - type: Transform @@ -98671,7 +98747,7 @@ entities: pos: 7.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20967 components: - type: Transform @@ -98679,7 +98755,7 @@ entities: pos: 7.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20969 components: - type: Transform @@ -98687,7 +98763,7 @@ entities: pos: 7.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20970 components: - type: Transform @@ -98695,7 +98771,7 @@ entities: pos: 7.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20971 components: - type: Transform @@ -98703,7 +98779,7 @@ entities: pos: 7.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20972 components: - type: Transform @@ -98711,7 +98787,7 @@ entities: pos: 7.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20977 components: - type: Transform @@ -98719,7 +98795,7 @@ entities: pos: 8.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20978 components: - type: Transform @@ -98727,7 +98803,7 @@ entities: pos: 9.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20979 components: - type: Transform @@ -98735,7 +98811,7 @@ entities: pos: 10.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20980 components: - type: Transform @@ -98743,7 +98819,7 @@ entities: pos: 10.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20981 components: - type: Transform @@ -98751,7 +98827,7 @@ entities: pos: 10.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20982 components: - type: Transform @@ -98759,7 +98835,7 @@ entities: pos: 10.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20983 components: - type: Transform @@ -98767,7 +98843,7 @@ entities: pos: 10.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20985 components: - type: Transform @@ -98775,7 +98851,7 @@ entities: pos: 10.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20986 components: - type: Transform @@ -98783,7 +98859,7 @@ entities: pos: 10.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20988 components: - type: Transform @@ -98791,7 +98867,7 @@ entities: pos: 10.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20989 components: - type: Transform @@ -98799,7 +98875,7 @@ entities: pos: 10.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20991 components: - type: Transform @@ -98807,7 +98883,7 @@ entities: pos: 10.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20993 components: - type: Transform @@ -98815,7 +98891,7 @@ entities: pos: 11.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20994 components: - type: Transform @@ -98823,7 +98899,7 @@ entities: pos: 12.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20995 components: - type: Transform @@ -98831,7 +98907,7 @@ entities: pos: 13.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20996 components: - type: Transform @@ -98839,7 +98915,7 @@ entities: pos: 14.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20997 components: - type: Transform @@ -98847,7 +98923,7 @@ entities: pos: 15.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20998 components: - type: Transform @@ -98855,7 +98931,7 @@ entities: pos: 16.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20999 components: - type: Transform @@ -98863,7 +98939,7 @@ entities: pos: 17.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21000 components: - type: Transform @@ -98871,7 +98947,7 @@ entities: pos: 18.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21001 components: - type: Transform @@ -98879,7 +98955,7 @@ entities: pos: 19.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21002 components: - type: Transform @@ -98887,7 +98963,7 @@ entities: pos: 20.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21006 components: - type: Transform @@ -98895,7 +98971,7 @@ entities: pos: 22.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21007 components: - type: Transform @@ -98903,7 +98979,7 @@ entities: pos: 23.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21009 components: - type: Transform @@ -98919,7 +98995,7 @@ entities: pos: -0.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21013 components: - type: Transform @@ -98927,7 +99003,7 @@ entities: pos: 0.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21014 components: - type: Transform @@ -98935,7 +99011,7 @@ entities: pos: 1.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21015 components: - type: Transform @@ -98943,7 +99019,7 @@ entities: pos: 2.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21016 components: - type: Transform @@ -98951,7 +99027,7 @@ entities: pos: -0.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21017 components: - type: Transform @@ -98959,7 +99035,7 @@ entities: pos: 0.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21018 components: - type: Transform @@ -98967,7 +99043,7 @@ entities: pos: 1.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21022 components: - type: Transform @@ -98975,7 +99051,7 @@ entities: pos: 10.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21023 components: - type: Transform @@ -98983,7 +99059,7 @@ entities: pos: 10.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21024 components: - type: Transform @@ -98991,7 +99067,7 @@ entities: pos: 10.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21025 components: - type: Transform @@ -98999,7 +99075,7 @@ entities: pos: 10.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21026 components: - type: Transform @@ -99007,7 +99083,7 @@ entities: pos: 10.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21029 components: - type: Transform @@ -99015,7 +99091,7 @@ entities: pos: -0.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21030 components: - type: Transform @@ -99023,7 +99099,7 @@ entities: pos: 0.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21031 components: - type: Transform @@ -99031,7 +99107,7 @@ entities: pos: 1.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21032 components: - type: Transform @@ -99039,7 +99115,7 @@ entities: pos: 2.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21033 components: - type: Transform @@ -99047,7 +99123,7 @@ entities: pos: 3.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21034 components: - type: Transform @@ -99055,35 +99131,35 @@ entities: pos: 4.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21035 components: - type: Transform pos: 5.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21036 components: - type: Transform pos: 5.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21037 components: - type: Transform pos: 5.5,-59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21038 components: - type: Transform pos: 5.5,-58.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21040 components: - type: Transform @@ -99091,7 +99167,7 @@ entities: pos: 7.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21041 components: - type: Transform @@ -99099,7 +99175,7 @@ entities: pos: 8.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21042 components: - type: Transform @@ -99107,7 +99183,7 @@ entities: pos: 9.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21043 components: - type: Transform @@ -99115,7 +99191,7 @@ entities: pos: 10.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21044 components: - type: Transform @@ -99123,7 +99199,7 @@ entities: pos: 11.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21045 components: - type: Transform @@ -99131,7 +99207,7 @@ entities: pos: 12.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21046 components: - type: Transform @@ -99139,7 +99215,7 @@ entities: pos: 13.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21047 components: - type: Transform @@ -99147,7 +99223,7 @@ entities: pos: 14.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21048 components: - type: Transform @@ -99155,7 +99231,7 @@ entities: pos: 15.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21049 components: - type: Transform @@ -99163,7 +99239,7 @@ entities: pos: 16.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21050 components: - type: Transform @@ -99171,7 +99247,7 @@ entities: pos: 17.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21051 components: - type: Transform @@ -99179,7 +99255,7 @@ entities: pos: 19.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21052 components: - type: Transform @@ -99187,7 +99263,7 @@ entities: pos: 20.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21053 components: - type: Transform @@ -99195,7 +99271,7 @@ entities: pos: 21.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21054 components: - type: Transform @@ -99203,7 +99279,7 @@ entities: pos: 22.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21055 components: - type: Transform @@ -99211,7 +99287,7 @@ entities: pos: 23.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21056 components: - type: Transform @@ -99219,56 +99295,56 @@ entities: pos: 24.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21057 components: - type: Transform pos: 18.5,-55.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21058 components: - type: Transform pos: 18.5,-54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21059 components: - type: Transform pos: 18.5,-53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21060 components: - type: Transform pos: 18.5,-52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21061 components: - type: Transform pos: 18.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21062 components: - type: Transform pos: 18.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21065 components: - type: Transform pos: 18.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21071 components: - type: Transform @@ -99276,7 +99352,7 @@ entities: pos: 6.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21078 components: - type: Transform @@ -99284,7 +99360,7 @@ entities: pos: 11.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21079 components: - type: Transform @@ -99292,7 +99368,7 @@ entities: pos: 12.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21080 components: - type: Transform @@ -99300,7 +99376,7 @@ entities: pos: 13.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21081 components: - type: Transform @@ -99308,7 +99384,7 @@ entities: pos: 14.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21082 components: - type: Transform @@ -99316,7 +99392,7 @@ entities: pos: 16.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21083 components: - type: Transform @@ -99324,7 +99400,7 @@ entities: pos: 17.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21084 components: - type: Transform @@ -99332,7 +99408,7 @@ entities: pos: 18.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21085 components: - type: Transform @@ -99340,56 +99416,56 @@ entities: pos: 19.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21086 components: - type: Transform pos: 20.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21087 components: - type: Transform pos: 20.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21088 components: - type: Transform pos: 20.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21089 components: - type: Transform pos: 15.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21090 components: - type: Transform pos: 15.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21091 components: - type: Transform pos: 15.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21092 components: - type: Transform pos: 15.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21093 components: - type: Transform @@ -99397,7 +99473,7 @@ entities: pos: 21.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21094 components: - type: Transform @@ -99405,7 +99481,7 @@ entities: pos: 22.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21095 components: - type: Transform @@ -99413,7 +99489,7 @@ entities: pos: 23.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21096 components: - type: Transform @@ -99421,49 +99497,49 @@ entities: pos: 24.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21108 components: - type: Transform pos: 15.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21109 components: - type: Transform pos: 15.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21110 components: - type: Transform pos: 15.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21111 components: - type: Transform pos: 15.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21112 components: - type: Transform pos: 15.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21113 components: - type: Transform pos: 15.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21114 components: - type: Transform @@ -99471,7 +99547,7 @@ entities: pos: 16.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21115 components: - type: Transform @@ -99479,7 +99555,7 @@ entities: pos: 17.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21116 components: - type: Transform @@ -99487,7 +99563,7 @@ entities: pos: 18.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21117 components: - type: Transform @@ -99495,7 +99571,7 @@ entities: pos: 19.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21118 components: - type: Transform @@ -99503,7 +99579,7 @@ entities: pos: 20.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21119 components: - type: Transform @@ -99511,7 +99587,7 @@ entities: pos: 21.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21120 components: - type: Transform @@ -99519,7 +99595,7 @@ entities: pos: 22.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21121 components: - type: Transform @@ -99527,7 +99603,7 @@ entities: pos: 23.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21122 components: - type: Transform @@ -99535,7 +99611,7 @@ entities: pos: 24.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21123 components: - type: Transform @@ -99543,7 +99619,7 @@ entities: pos: 25.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21124 components: - type: Transform @@ -99551,7 +99627,7 @@ entities: pos: 26.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21125 components: - type: Transform @@ -99559,7 +99635,7 @@ entities: pos: 27.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21126 components: - type: Transform @@ -99567,7 +99643,7 @@ entities: pos: 28.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21127 components: - type: Transform @@ -99575,7 +99651,7 @@ entities: pos: 29.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21128 components: - type: Transform @@ -99583,7 +99659,7 @@ entities: pos: 30.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21129 components: - type: Transform @@ -99591,7 +99667,7 @@ entities: pos: 31.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21130 components: - type: Transform @@ -99599,7 +99675,7 @@ entities: pos: 31.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21131 components: - type: Transform @@ -99607,7 +99683,7 @@ entities: pos: 31.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21132 components: - type: Transform @@ -99615,7 +99691,7 @@ entities: pos: 31.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21133 components: - type: Transform @@ -99623,7 +99699,7 @@ entities: pos: 31.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21134 components: - type: Transform @@ -99631,7 +99707,7 @@ entities: pos: 31.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21135 components: - type: Transform @@ -99639,7 +99715,7 @@ entities: pos: 31.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21136 components: - type: Transform @@ -99647,7 +99723,7 @@ entities: pos: 31.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21137 components: - type: Transform @@ -99655,7 +99731,7 @@ entities: pos: 31.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21138 components: - type: Transform @@ -99663,7 +99739,7 @@ entities: pos: 31.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21139 components: - type: Transform @@ -99671,7 +99747,7 @@ entities: pos: 31.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21140 components: - type: Transform @@ -99679,7 +99755,7 @@ entities: pos: 31.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21141 components: - type: Transform @@ -99687,7 +99763,7 @@ entities: pos: 31.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21142 components: - type: Transform @@ -99695,7 +99771,7 @@ entities: pos: 31.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21143 components: - type: Transform @@ -99703,7 +99779,7 @@ entities: pos: 31.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21144 components: - type: Transform @@ -99711,7 +99787,7 @@ entities: pos: 31.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21146 components: - type: Transform @@ -99719,7 +99795,7 @@ entities: pos: 31.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21147 components: - type: Transform @@ -99727,7 +99803,7 @@ entities: pos: 30.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21148 components: - type: Transform @@ -99735,7 +99811,7 @@ entities: pos: 29.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21149 components: - type: Transform @@ -99743,7 +99819,7 @@ entities: pos: 28.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21150 components: - type: Transform @@ -99751,7 +99827,7 @@ entities: pos: 27.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21151 components: - type: Transform @@ -99759,7 +99835,7 @@ entities: pos: 26.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21152 components: - type: Transform @@ -99767,7 +99843,7 @@ entities: pos: 25.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21153 components: - type: Transform @@ -99775,7 +99851,7 @@ entities: pos: 24.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21154 components: - type: Transform @@ -99783,7 +99859,7 @@ entities: pos: 23.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21155 components: - type: Transform @@ -99791,7 +99867,7 @@ entities: pos: 22.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21156 components: - type: Transform @@ -99799,7 +99875,7 @@ entities: pos: 21.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21157 components: - type: Transform @@ -99807,7 +99883,7 @@ entities: pos: 20.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21158 components: - type: Transform @@ -99815,14 +99891,14 @@ entities: pos: 19.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21159 components: - type: Transform pos: 18.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21490 components: - type: Transform @@ -99830,7 +99906,7 @@ entities: pos: -0.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21491 components: - type: Transform @@ -99838,42 +99914,42 @@ entities: pos: 0.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21492 components: - type: Transform pos: -1.5,-68.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21493 components: - type: Transform pos: -1.5,-67.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21494 components: - type: Transform pos: -1.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21495 components: - type: Transform pos: -1.5,-65.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21496 components: - type: Transform pos: -1.5,-64.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21498 components: - type: Transform @@ -99881,7 +99957,7 @@ entities: pos: -2.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21499 components: - type: Transform @@ -99889,7 +99965,7 @@ entities: pos: -3.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21500 components: - type: Transform @@ -99897,7 +99973,7 @@ entities: pos: -4.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21501 components: - type: Transform @@ -99905,7 +99981,7 @@ entities: pos: -5.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21502 components: - type: Transform @@ -99913,7 +99989,7 @@ entities: pos: -6.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21504 components: - type: Transform @@ -99921,7 +99997,7 @@ entities: pos: -8.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21505 components: - type: Transform @@ -99929,7 +100005,7 @@ entities: pos: -9.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21506 components: - type: Transform @@ -99937,7 +100013,7 @@ entities: pos: -10.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21509 components: - type: Transform @@ -99945,7 +100021,7 @@ entities: pos: -2.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21510 components: - type: Transform @@ -99953,7 +100029,7 @@ entities: pos: -3.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21511 components: - type: Transform @@ -99961,7 +100037,7 @@ entities: pos: -4.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21513 components: - type: Transform @@ -99969,7 +100045,7 @@ entities: pos: -6.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21514 components: - type: Transform @@ -99977,7 +100053,7 @@ entities: pos: -7.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21515 components: - type: Transform @@ -99985,7 +100061,7 @@ entities: pos: -8.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21516 components: - type: Transform @@ -99993,7 +100069,7 @@ entities: pos: -9.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21517 components: - type: Transform @@ -100001,7 +100077,7 @@ entities: pos: -10.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21519 components: - type: Transform @@ -100009,7 +100085,7 @@ entities: pos: -11.5,-67.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21520 components: - type: Transform @@ -100017,7 +100093,7 @@ entities: pos: -11.5,-68.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21521 components: - type: Transform @@ -100025,7 +100101,7 @@ entities: pos: -11.5,-65.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21522 components: - type: Transform @@ -100033,7 +100109,7 @@ entities: pos: -11.5,-64.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21524 components: - type: Transform @@ -100041,7 +100117,7 @@ entities: pos: -12.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21525 components: - type: Transform @@ -100049,7 +100125,7 @@ entities: pos: -13.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21526 components: - type: Transform @@ -100057,7 +100133,7 @@ entities: pos: -14.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21527 components: - type: Transform @@ -100065,49 +100141,49 @@ entities: pos: -15.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21528 components: - type: Transform pos: -16.5,-67.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21529 components: - type: Transform pos: -16.5,-68.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21530 components: - type: Transform pos: -16.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21531 components: - type: Transform pos: -16.5,-70.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21532 components: - type: Transform pos: -16.5,-71.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21533 components: - type: Transform pos: -16.5,-72.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21537 components: - type: Transform @@ -100115,7 +100191,7 @@ entities: pos: -20.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21538 components: - type: Transform @@ -100123,7 +100199,7 @@ entities: pos: -20.5,-59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21539 components: - type: Transform @@ -100131,7 +100207,7 @@ entities: pos: -20.5,-58.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21540 components: - type: Transform @@ -100139,7 +100215,7 @@ entities: pos: -19.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21541 components: - type: Transform @@ -100147,7 +100223,7 @@ entities: pos: -18.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21542 components: - type: Transform @@ -100155,7 +100231,7 @@ entities: pos: -17.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21543 components: - type: Transform @@ -100163,7 +100239,7 @@ entities: pos: -16.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21544 components: - type: Transform @@ -100171,7 +100247,7 @@ entities: pos: -15.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21545 components: - type: Transform @@ -100179,7 +100255,7 @@ entities: pos: -14.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21546 components: - type: Transform @@ -100187,7 +100263,7 @@ entities: pos: -13.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21547 components: - type: Transform @@ -100195,7 +100271,7 @@ entities: pos: -12.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21548 components: - type: Transform @@ -100203,7 +100279,7 @@ entities: pos: -21.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21549 components: - type: Transform @@ -100211,7 +100287,7 @@ entities: pos: -22.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21550 components: - type: Transform @@ -100219,7 +100295,7 @@ entities: pos: -23.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21551 components: - type: Transform @@ -100227,35 +100303,35 @@ entities: pos: -24.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21553 components: - type: Transform pos: -25.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21554 components: - type: Transform pos: -25.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21555 components: - type: Transform pos: -25.5,-64.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21556 components: - type: Transform pos: -25.5,-65.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21558 components: - type: Transform @@ -100263,7 +100339,7 @@ entities: pos: -26.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21559 components: - type: Transform @@ -100271,7 +100347,7 @@ entities: pos: -27.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21560 components: - type: Transform @@ -100279,7 +100355,7 @@ entities: pos: -28.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21561 components: - type: Transform @@ -100287,7 +100363,7 @@ entities: pos: -29.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21571 components: - type: Transform @@ -100700,7 +100776,7 @@ entities: pos: -5.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21642 components: - type: Transform @@ -100708,7 +100784,15 @@ entities: pos: -7.5,-70.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 21681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-19.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22185 components: - type: Transform @@ -100716,7 +100800,7 @@ entities: pos: 19.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22186 components: - type: Transform @@ -100724,7 +100808,7 @@ entities: pos: 20.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22187 components: - type: Transform @@ -100732,7 +100816,7 @@ entities: pos: 21.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22188 components: - type: Transform @@ -100740,7 +100824,7 @@ entities: pos: 22.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23373 components: - type: Transform @@ -100786,7 +100870,7 @@ entities: pos: 52.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23391 components: - type: Transform @@ -100794,7 +100878,7 @@ entities: pos: 51.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23392 components: - type: Transform @@ -100802,7 +100886,7 @@ entities: pos: 51.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23393 components: - type: Transform @@ -100810,7 +100894,7 @@ entities: pos: 51.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23394 components: - type: Transform @@ -100818,7 +100902,7 @@ entities: pos: 51.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23396 components: - type: Transform @@ -100826,7 +100910,7 @@ entities: pos: 51.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23397 components: - type: Transform @@ -100834,7 +100918,7 @@ entities: pos: 51.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23484 components: - type: Transform @@ -100842,7 +100926,7 @@ entities: pos: 55.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23485 components: - type: Transform @@ -100850,7 +100934,7 @@ entities: pos: 56.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23486 components: - type: Transform @@ -100858,7 +100942,7 @@ entities: pos: 57.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23487 components: - type: Transform @@ -100866,7 +100950,7 @@ entities: pos: 58.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23488 components: - type: Transform @@ -100874,7 +100958,7 @@ entities: pos: 59.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23489 components: - type: Transform @@ -100882,7 +100966,7 @@ entities: pos: 60.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23490 components: - type: Transform @@ -100890,7 +100974,7 @@ entities: pos: 61.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23492 components: - type: Transform @@ -100898,7 +100982,7 @@ entities: pos: 62.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23493 components: - type: Transform @@ -100906,7 +100990,7 @@ entities: pos: 63.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23494 components: - type: Transform @@ -100914,7 +100998,7 @@ entities: pos: 64.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23495 components: - type: Transform @@ -100922,7 +101006,7 @@ entities: pos: 65.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23501 components: - type: Transform @@ -100930,7 +101014,7 @@ entities: pos: 66.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23502 components: - type: Transform @@ -100938,7 +101022,7 @@ entities: pos: 67.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23503 components: - type: Transform @@ -100946,7 +101030,7 @@ entities: pos: 68.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23506 components: - type: Transform @@ -100954,7 +101038,7 @@ entities: pos: 69.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23507 components: - type: Transform @@ -100962,7 +101046,7 @@ entities: pos: 69.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23508 components: - type: Transform @@ -100970,7 +101054,7 @@ entities: pos: 69.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23511 components: - type: Transform @@ -101143,7 +101227,7 @@ entities: pos: 50.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23569 components: - type: Transform @@ -101151,7 +101235,7 @@ entities: pos: 49.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23570 components: - type: Transform @@ -101159,7 +101243,7 @@ entities: pos: 48.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23571 components: - type: Transform @@ -101167,7 +101251,7 @@ entities: pos: 47.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23572 components: - type: Transform @@ -101175,7 +101259,7 @@ entities: pos: 46.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23841 components: - type: Transform @@ -102539,13 +102623,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 27194 - components: - - type: Transform - pos: 73.5,-38.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 27196 components: - type: Transform @@ -102955,7 +103032,7 @@ entities: pos: -9.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 295 components: - type: Transform @@ -102963,7 +103040,7 @@ entities: pos: -0.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 296 components: - type: Transform @@ -102995,7 +103072,7 @@ entities: pos: 15.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 328 components: - type: Transform @@ -103011,7 +103088,7 @@ entities: pos: 15.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 346 components: - type: Transform @@ -103027,14 +103104,14 @@ entities: pos: -5.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 367 components: - type: Transform pos: -1.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 373 components: - type: Transform @@ -103049,7 +103126,7 @@ entities: pos: -20.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 402 components: - type: Transform @@ -103057,7 +103134,7 @@ entities: pos: -20.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 414 components: - type: Transform @@ -103065,7 +103142,7 @@ entities: pos: -17.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 422 components: - type: Transform @@ -103081,7 +103158,7 @@ entities: pos: -1.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 431 components: - type: Transform @@ -103096,7 +103173,7 @@ entities: pos: 12.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 452 components: - type: Transform @@ -103127,7 +103204,7 @@ entities: pos: -20.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 493 components: - type: Transform @@ -103142,7 +103219,7 @@ entities: pos: -8.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 509 components: - type: Transform @@ -103173,7 +103250,7 @@ entities: pos: 15.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 518 components: - type: Transform @@ -103203,21 +103280,21 @@ entities: pos: -4.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 531 components: - type: Transform pos: -0.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 536 components: - type: Transform pos: -5.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 540 components: - type: Transform @@ -103249,7 +103326,7 @@ entities: pos: 15.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 562 components: - type: Transform @@ -103265,7 +103342,7 @@ entities: pos: -8.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 567 components: - type: Transform @@ -103295,7 +103372,7 @@ entities: pos: 3.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 582 components: - type: Transform @@ -103303,7 +103380,7 @@ entities: pos: -12.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 596 components: - type: Transform @@ -103319,7 +103396,7 @@ entities: pos: 3.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 602 components: - type: Transform @@ -103350,7 +103427,7 @@ entities: pos: 0.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 628 components: - type: Transform @@ -103358,7 +103435,7 @@ entities: pos: -8.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 632 components: - type: Transform @@ -103406,7 +103483,7 @@ entities: pos: 7.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 776 components: - type: Transform @@ -103445,7 +103522,7 @@ entities: pos: -5.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1602 components: - type: Transform @@ -103460,14 +103537,14 @@ entities: pos: 15.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2319 components: - type: Transform pos: 33.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2491 components: - type: Transform @@ -103482,7 +103559,7 @@ entities: pos: 25.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2496 components: - type: Transform @@ -103490,7 +103567,7 @@ entities: pos: 2.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2499 components: - type: Transform @@ -103527,14 +103604,14 @@ entities: pos: 25.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2517 components: - type: Transform pos: 20.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2525 components: - type: Transform @@ -103550,7 +103627,7 @@ entities: pos: 25.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2536 components: - type: Transform @@ -103558,7 +103635,7 @@ entities: pos: 20.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2541 components: - type: Transform @@ -103581,7 +103658,7 @@ entities: pos: -12.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2566 components: - type: Transform @@ -103589,7 +103666,7 @@ entities: pos: 28.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2570 components: - type: Transform @@ -103613,14 +103690,14 @@ entities: pos: 26.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2592 components: - type: Transform pos: 16.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2596 components: - type: Transform @@ -103628,14 +103705,14 @@ entities: pos: 28.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2605 components: - type: Transform pos: 28.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2631 components: - type: Transform @@ -103643,7 +103720,7 @@ entities: pos: 20.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2639 components: - type: Transform @@ -103672,7 +103749,7 @@ entities: pos: 29.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2672 components: - type: Transform @@ -103688,7 +103765,7 @@ entities: pos: 40.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2715 components: - type: Transform @@ -103703,7 +103780,7 @@ entities: pos: 22.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3081 components: - type: Transform @@ -103733,7 +103810,7 @@ entities: pos: 28.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3843 components: - type: Transform @@ -103748,7 +103825,7 @@ entities: pos: -50.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3969 components: - type: Transform @@ -103763,7 +103840,7 @@ entities: pos: -39.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3987 components: - type: Transform @@ -103771,14 +103848,14 @@ entities: pos: -27.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3991 components: - type: Transform pos: -31.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3999 components: - type: Transform @@ -103801,7 +103878,7 @@ entities: pos: -45.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4009 components: - type: Transform @@ -103816,7 +103893,7 @@ entities: pos: -27.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4136 components: - type: Transform @@ -103895,7 +103972,7 @@ entities: pos: -17.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4191 components: - type: Transform @@ -103903,7 +103980,7 @@ entities: pos: -8.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4207 components: - type: Transform @@ -103925,7 +104002,7 @@ entities: pos: -20.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4235 components: - type: Transform @@ -103933,7 +104010,7 @@ entities: pos: -1.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4236 components: - type: Transform @@ -103941,7 +104018,7 @@ entities: pos: -1.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4251 components: - type: Transform @@ -103963,7 +104040,7 @@ entities: pos: -22.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4267 components: - type: Transform @@ -103971,7 +104048,7 @@ entities: pos: -21.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4273 components: - type: Transform @@ -103987,7 +104064,7 @@ entities: pos: -27.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4289 components: - type: Transform @@ -104003,7 +104080,7 @@ entities: pos: -28.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4296 components: - type: Transform @@ -104019,7 +104096,7 @@ entities: pos: -33.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4309 components: - type: Transform @@ -104027,7 +104104,7 @@ entities: pos: -33.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4316 components: - type: Transform @@ -104035,7 +104112,7 @@ entities: pos: -36.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4342 components: - type: Transform @@ -104050,7 +104127,7 @@ entities: pos: 4.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4795 components: - type: Transform @@ -104065,7 +104142,7 @@ entities: pos: 28.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4853 components: - type: Transform @@ -104073,7 +104150,7 @@ entities: pos: 28.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4961 components: - type: Transform @@ -104104,7 +104181,7 @@ entities: pos: -55.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5458 components: - type: Transform @@ -104112,7 +104189,7 @@ entities: pos: -55.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5463 components: - type: Transform @@ -104128,14 +104205,14 @@ entities: pos: -55.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5477 components: - type: Transform pos: -58.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5484 components: - type: Transform @@ -104143,7 +104220,7 @@ entities: pos: -58.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5492 components: - type: Transform @@ -104173,7 +104250,7 @@ entities: pos: -60.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5522 components: - type: Transform @@ -104247,7 +104324,7 @@ entities: pos: -10.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6540 components: - type: Transform @@ -104279,7 +104356,7 @@ entities: pos: 14.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6654 components: - type: Transform @@ -104295,7 +104372,7 @@ entities: pos: 0.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6732 components: - type: Transform @@ -104311,7 +104388,7 @@ entities: pos: -1.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6752 components: - type: Transform @@ -104335,7 +104412,7 @@ entities: pos: 0.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6766 components: - type: Transform @@ -104343,7 +104420,7 @@ entities: pos: 0.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6769 components: - type: Transform @@ -104375,7 +104452,7 @@ entities: pos: -6.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6804 components: - type: Transform @@ -104390,7 +104467,7 @@ entities: pos: -9.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6806 components: - type: Transform @@ -104405,7 +104482,7 @@ entities: pos: -12.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6808 components: - type: Transform @@ -104429,7 +104506,7 @@ entities: pos: -10.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6861 components: - type: Transform @@ -104445,7 +104522,7 @@ entities: pos: 8.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6877 components: - type: Transform @@ -104466,7 +104543,7 @@ entities: pos: 12.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6911 components: - type: Transform @@ -104474,7 +104551,7 @@ entities: pos: 2.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6920 components: - type: Transform @@ -104490,7 +104567,7 @@ entities: pos: 12.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6943 components: - type: Transform @@ -104512,7 +104589,7 @@ entities: pos: 7.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6958 components: - type: Transform @@ -104528,7 +104605,7 @@ entities: pos: 5.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6980 components: - type: Transform @@ -104544,7 +104621,7 @@ entities: pos: 13.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7001 components: - type: Transform @@ -104568,7 +104645,7 @@ entities: pos: 0.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7029 components: - type: Transform @@ -104591,7 +104668,7 @@ entities: pos: -2.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7124 components: - type: Transform @@ -104606,7 +104683,7 @@ entities: pos: -6.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7160 components: - type: Transform @@ -104614,7 +104691,7 @@ entities: pos: 0.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7204 components: - type: Transform @@ -104630,7 +104707,7 @@ entities: pos: -2.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7237 components: - type: Transform @@ -104646,7 +104723,7 @@ entities: pos: 10.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7301 components: - type: Transform @@ -104662,7 +104739,7 @@ entities: pos: -6.5,56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7326 components: - type: Transform @@ -104670,7 +104747,7 @@ entities: pos: -2.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7330 components: - type: Transform @@ -104693,7 +104770,7 @@ entities: pos: 37.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7438 components: - type: Transform @@ -104708,7 +104785,7 @@ entities: pos: 13.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7831 components: - type: Transform @@ -104724,7 +104801,7 @@ entities: pos: -6.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8551 components: - type: Transform @@ -104755,7 +104832,7 @@ entities: pos: 28.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8690 components: - type: Transform @@ -104763,7 +104840,7 @@ entities: pos: 35.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8695 components: - type: Transform @@ -104771,7 +104848,7 @@ entities: pos: 20.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8697 components: - type: Transform @@ -104779,7 +104856,7 @@ entities: pos: 26.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8699 components: - type: Transform @@ -104787,7 +104864,7 @@ entities: pos: 29.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8705 components: - type: Transform @@ -104802,7 +104879,7 @@ entities: pos: 35.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8711 components: - type: Transform @@ -104810,7 +104887,7 @@ entities: pos: 35.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8716 components: - type: Transform @@ -104818,7 +104895,7 @@ entities: pos: 29.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8717 components: - type: Transform @@ -104826,7 +104903,7 @@ entities: pos: 35.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8722 components: - type: Transform @@ -104834,7 +104911,7 @@ entities: pos: 35.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8723 components: - type: Transform @@ -104842,7 +104919,7 @@ entities: pos: 35.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8731 components: - type: Transform @@ -104858,7 +104935,7 @@ entities: pos: 33.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8746 components: - type: Transform @@ -104873,7 +104950,7 @@ entities: pos: 35.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8749 components: - type: Transform @@ -104927,7 +105004,7 @@ entities: pos: 29.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8788 components: - type: Transform @@ -104935,7 +105012,7 @@ entities: pos: 31.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8791 components: - type: Transform @@ -104958,7 +105035,7 @@ entities: pos: 35.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8887 components: - type: Transform @@ -104973,7 +105050,7 @@ entities: pos: 46.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8982 components: - type: Transform @@ -104989,7 +105066,7 @@ entities: pos: 35.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8991 components: - type: Transform @@ -104997,7 +105074,7 @@ entities: pos: 46.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8992 components: - type: Transform @@ -105005,7 +105082,7 @@ entities: pos: 46.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9002 components: - type: Transform @@ -105067,7 +105144,7 @@ entities: pos: -60.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9795 components: - type: Transform @@ -105083,7 +105160,7 @@ entities: pos: 52.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10649 components: - type: Transform @@ -105107,7 +105184,7 @@ entities: pos: 53.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10951 components: - type: Transform @@ -105115,14 +105192,14 @@ entities: pos: 53.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10955 components: - type: Transform pos: 53.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10960 components: - type: Transform @@ -105138,7 +105215,7 @@ entities: pos: 53.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10976 components: - type: Transform @@ -105146,7 +105223,7 @@ entities: pos: 50.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10977 components: - type: Transform @@ -105154,7 +105231,7 @@ entities: pos: 50.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10978 components: - type: Transform @@ -105162,7 +105239,7 @@ entities: pos: 50.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11070 components: - type: Transform @@ -105208,7 +105285,7 @@ entities: pos: 54.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11158 components: - type: Transform @@ -105239,7 +105316,7 @@ entities: pos: 51.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11436 components: - type: Transform @@ -105259,7 +105336,7 @@ entities: pos: 54.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11545 components: - type: Transform @@ -105267,7 +105344,7 @@ entities: pos: 54.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11557 components: - type: Transform @@ -105275,7 +105352,7 @@ entities: pos: 54.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11558 components: - type: Transform @@ -105283,7 +105360,7 @@ entities: pos: 54.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11799 components: - type: Transform @@ -105335,7 +105412,7 @@ entities: pos: 35.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12904 components: - type: Transform @@ -105351,7 +105428,7 @@ entities: pos: 35.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14140 components: - type: Transform @@ -105359,12 +105436,7 @@ entities: pos: 15.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14294 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 5350 + color: '#990000FF' - uid: 14299 components: - type: Transform @@ -105386,6 +105458,8 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-26.5 parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14545 components: - type: Transform @@ -105393,7 +105467,7 @@ entities: pos: -2.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14551 components: - type: Transform @@ -105401,7 +105475,7 @@ entities: pos: -1.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14562 components: - type: Transform @@ -105424,7 +105498,7 @@ entities: pos: -14.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14582 components: - type: Transform @@ -105477,7 +105551,7 @@ entities: pos: -19.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14630 components: - type: Transform @@ -105492,7 +105566,7 @@ entities: pos: -8.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14646 components: - type: Transform @@ -105500,7 +105574,7 @@ entities: pos: -8.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14659 components: - type: Transform @@ -105516,7 +105590,7 @@ entities: pos: -19.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14679 components: - type: Transform @@ -105532,7 +105606,7 @@ entities: pos: -19.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14712 components: - type: Transform @@ -105540,7 +105614,7 @@ entities: pos: -25.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14734 components: - type: Transform @@ -105563,7 +105637,7 @@ entities: pos: -27.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14945 components: - type: Transform @@ -105571,7 +105645,7 @@ entities: pos: -1.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15234 components: - type: Transform @@ -105600,7 +105674,7 @@ entities: pos: -23.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15255 components: - type: Transform @@ -105622,14 +105696,14 @@ entities: pos: -34.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15267 components: - type: Transform pos: -24.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15268 components: - type: Transform @@ -105637,7 +105711,7 @@ entities: pos: -19.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15282 components: - type: Transform @@ -105652,7 +105726,7 @@ entities: pos: -19.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15290 components: - type: Transform @@ -105676,14 +105750,14 @@ entities: pos: -19.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15317 components: - type: Transform pos: -15.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15327 components: - type: Transform @@ -105691,7 +105765,7 @@ entities: pos: -14.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15328 components: - type: Transform @@ -105699,7 +105773,7 @@ entities: pos: -11.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15339 components: - type: Transform @@ -105715,7 +105789,7 @@ entities: pos: -19.5,-54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16364 components: - type: Transform @@ -105817,14 +105891,14 @@ entities: pos: -28.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18214 components: - type: Transform pos: -20.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18215 components: - type: Transform @@ -105856,7 +105930,7 @@ entities: pos: -57.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18581 components: - type: Transform @@ -105864,7 +105938,7 @@ entities: pos: -16.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18967 components: - type: Transform @@ -105911,7 +105985,7 @@ entities: pos: 4.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20667 components: - type: Transform @@ -105935,7 +106009,7 @@ entities: pos: -1.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20700 components: - type: Transform @@ -105943,7 +106017,7 @@ entities: pos: -1.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20732 components: - type: Transform @@ -106030,7 +106104,7 @@ entities: pos: 18.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20818 components: - type: Transform @@ -106053,7 +106127,7 @@ entities: pos: 31.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20853 components: - type: Transform @@ -106075,7 +106149,7 @@ entities: pos: 7.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20974 components: - type: Transform @@ -106083,7 +106157,7 @@ entities: pos: 10.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20975 components: - type: Transform @@ -106091,7 +106165,7 @@ entities: pos: 10.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20984 components: - type: Transform @@ -106099,7 +106173,7 @@ entities: pos: 10.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20987 components: - type: Transform @@ -106107,7 +106181,7 @@ entities: pos: 10.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20990 components: - type: Transform @@ -106115,7 +106189,7 @@ entities: pos: 10.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21004 components: - type: Transform @@ -106123,7 +106197,7 @@ entities: pos: 21.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21028 components: - type: Transform @@ -106131,7 +106205,7 @@ entities: pos: -1.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21039 components: - type: Transform @@ -106139,7 +106213,7 @@ entities: pos: 6.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21063 components: - type: Transform @@ -106147,7 +106221,7 @@ entities: pos: 18.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21064 components: - type: Transform @@ -106163,7 +106237,7 @@ entities: pos: 18.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21076 components: - type: Transform @@ -106171,7 +106245,7 @@ entities: pos: 15.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21077 components: - type: Transform @@ -106179,7 +106253,7 @@ entities: pos: 20.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21145 components: - type: Transform @@ -106195,7 +106269,7 @@ entities: pos: -1.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21497 components: - type: Transform @@ -106203,7 +106277,7 @@ entities: pos: -1.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21503 components: - type: Transform @@ -106218,7 +106292,7 @@ entities: pos: -11.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21512 components: - type: Transform @@ -106226,7 +106300,7 @@ entities: pos: -5.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21518 components: - type: Transform @@ -106234,7 +106308,7 @@ entities: pos: -11.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21536 components: - type: Transform @@ -106242,7 +106316,7 @@ entities: pos: -20.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21557 components: - type: Transform @@ -106250,7 +106324,7 @@ entities: pos: -25.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21565 components: - type: Transform @@ -106305,7 +106379,7 @@ entities: pos: -7.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21592 components: - type: Transform @@ -106353,7 +106427,7 @@ entities: pos: 51.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23395 components: - type: Transform @@ -106361,7 +106435,7 @@ entities: pos: 51.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23533 components: - type: Transform @@ -106527,7 +106601,7 @@ entities: pos: 45.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8996 components: - type: Transform @@ -106535,7 +106609,7 @@ entities: pos: 45.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10163 components: - type: Transform @@ -106543,7 +106617,7 @@ entities: pos: 28.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10182 components: - type: Transform @@ -106551,7 +106625,7 @@ entities: pos: 29.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10662 components: - type: Transform @@ -106683,14 +106757,14 @@ entities: pos: -58.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18508 components: - type: Transform pos: -57.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19369 components: - type: Transform @@ -106758,7 +106832,7 @@ entities: pos: 54.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10543 components: - type: Transform @@ -106793,7 +106867,7 @@ entities: pos: 57.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 10967 components: - type: Transform @@ -106807,7 +106881,7 @@ entities: pos: 51.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10991 components: - type: Transform @@ -106828,7 +106902,7 @@ entities: pos: 57.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11040 components: - type: Transform @@ -107012,6 +107086,8 @@ entities: - type: Transform pos: -29.5,-25.5 parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 19368 components: - type: Transform @@ -107055,7 +107131,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19380 components: - type: Transform @@ -108743,14 +108819,14 @@ entities: pos: -13.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 769 components: - type: Transform pos: 0.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 772 components: - type: Transform @@ -108758,7 +108834,7 @@ entities: pos: -7.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 794 components: - type: Transform @@ -108766,7 +108842,7 @@ entities: pos: 6.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 814 components: - type: Transform @@ -108774,14 +108850,14 @@ entities: pos: 9.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 826 components: - type: Transform pos: -0.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 841 components: - type: Transform @@ -108789,7 +108865,7 @@ entities: pos: -16.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 995 components: - type: Transform @@ -108797,14 +108873,14 @@ entities: pos: -0.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1581 components: - type: Transform pos: -16.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1610 components: - type: Transform @@ -108812,7 +108888,7 @@ entities: pos: -5.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2586 components: - type: Transform @@ -108820,7 +108896,7 @@ entities: pos: -11.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2620 components: - type: Transform @@ -108828,7 +108904,7 @@ entities: pos: 34.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2640 components: - type: Transform @@ -108836,7 +108912,7 @@ entities: pos: 19.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2641 components: - type: Transform @@ -108844,7 +108920,7 @@ entities: pos: 20.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2658 components: - type: Transform @@ -108852,14 +108928,14 @@ entities: pos: 29.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2698 components: - type: Transform pos: 41.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2699 components: - type: Transform @@ -108867,7 +108943,7 @@ entities: pos: 37.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2707 components: - type: Transform @@ -108875,7 +108951,7 @@ entities: pos: 36.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2712 components: - type: Transform @@ -108883,7 +108959,7 @@ entities: pos: 19.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2714 components: - type: Transform @@ -108891,7 +108967,7 @@ entities: pos: 26.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2717 components: - type: Transform @@ -108899,7 +108975,7 @@ entities: pos: 29.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3266 components: - type: Transform @@ -108907,7 +108983,7 @@ entities: pos: 29.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4052 components: - type: Transform @@ -108915,14 +108991,14 @@ entities: pos: -36.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4326 components: - type: Transform pos: -41.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4330 components: - type: Transform @@ -108930,7 +109006,7 @@ entities: pos: -26.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4347 components: - type: Transform @@ -108938,7 +109014,7 @@ entities: pos: -38.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4349 components: - type: Transform @@ -108946,7 +109022,7 @@ entities: pos: -32.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4387 components: - type: Transform @@ -108954,7 +109030,7 @@ entities: pos: -29.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4393 components: - type: Transform @@ -108962,7 +109038,7 @@ entities: pos: -29.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4403 components: - type: Transform @@ -108970,14 +109046,14 @@ entities: pos: -20.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5015 components: - type: Transform pos: -50.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5503 components: - type: Transform @@ -108985,7 +109061,7 @@ entities: pos: -66.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5536 components: - type: Transform @@ -108993,7 +109069,7 @@ entities: pos: -66.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5839 components: - type: Transform @@ -109001,7 +109077,7 @@ entities: pos: -66.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6548 components: - type: Transform @@ -109009,7 +109085,7 @@ entities: pos: -5.5,60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6556 components: - type: Transform @@ -109017,7 +109093,7 @@ entities: pos: -3.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6557 components: - type: Transform @@ -109025,7 +109101,7 @@ entities: pos: -7.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6558 components: - type: Transform @@ -109033,14 +109109,14 @@ entities: pos: -11.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6661 components: - type: Transform pos: 10.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7087 components: - type: Transform @@ -109048,7 +109124,7 @@ entities: pos: 1.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7088 components: - type: Transform @@ -109056,7 +109132,7 @@ entities: pos: -2.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7089 components: - type: Transform @@ -109064,7 +109140,7 @@ entities: pos: -2.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7090 components: - type: Transform @@ -109072,7 +109148,7 @@ entities: pos: 1.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7092 components: - type: Transform @@ -109080,7 +109156,7 @@ entities: pos: -6.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7093 components: - type: Transform @@ -109088,7 +109164,7 @@ entities: pos: -9.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7094 components: - type: Transform @@ -109096,7 +109172,7 @@ entities: pos: -12.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7095 components: - type: Transform @@ -109104,7 +109180,7 @@ entities: pos: 1.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7098 components: - type: Transform @@ -109112,14 +109188,14 @@ entities: pos: 16.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7103 components: - type: Transform pos: 8.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7105 components: - type: Transform @@ -109127,21 +109203,21 @@ entities: pos: 4.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7107 components: - type: Transform pos: 13.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7108 components: - type: Transform pos: -2.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7109 components: - type: Transform @@ -109149,7 +109225,7 @@ entities: pos: -7.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7110 components: - type: Transform @@ -109157,7 +109233,7 @@ entities: pos: -11.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7111 components: - type: Transform @@ -109165,14 +109241,14 @@ entities: pos: 7.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7112 components: - type: Transform pos: 2.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7113 components: - type: Transform @@ -109180,14 +109256,14 @@ entities: pos: 3.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7114 components: - type: Transform pos: 12.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7126 components: - type: Transform @@ -109195,14 +109271,14 @@ entities: pos: 1.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7128 components: - type: Transform pos: -8.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7129 components: - type: Transform @@ -109210,7 +109286,7 @@ entities: pos: -2.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7155 components: - type: Transform @@ -109218,7 +109294,7 @@ entities: pos: -13.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7339 components: - type: Transform @@ -109231,7 +109307,7 @@ entities: pos: 37.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7389 components: - type: Transform @@ -109239,7 +109315,7 @@ entities: pos: 1.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7724 components: - type: Transform @@ -109247,7 +109323,7 @@ entities: pos: 17.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7802 components: - type: Transform @@ -109255,7 +109331,7 @@ entities: pos: -5.5,56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7803 components: - type: Transform @@ -109263,14 +109339,14 @@ entities: pos: 1.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9223 components: - type: Transform pos: -17.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9335 components: - type: Transform @@ -109278,7 +109354,7 @@ entities: pos: -24.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9337 components: - type: Transform @@ -109286,7 +109362,7 @@ entities: pos: -26.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9940 components: - type: Transform @@ -109294,21 +109370,21 @@ entities: pos: 12.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10165 components: - type: Transform pos: 2.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10789 components: - type: Transform pos: -9.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10790 components: - type: Transform @@ -109316,14 +109392,14 @@ entities: pos: -58.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10792 components: - type: Transform pos: -58.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10796 components: - type: Transform @@ -109331,14 +109407,14 @@ entities: pos: -54.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10798 components: - type: Transform pos: -39.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10800 components: - type: Transform @@ -109346,14 +109422,14 @@ entities: pos: -21.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10801 components: - type: Transform pos: -0.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11057 components: - type: Transform @@ -109361,7 +109437,7 @@ entities: pos: 51.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11432 components: - type: Transform @@ -109375,7 +109451,7 @@ entities: pos: 60.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11834 components: - type: Transform @@ -109386,7 +109462,7 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12032 components: - type: Transform @@ -109394,14 +109470,14 @@ entities: pos: 52.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12050 components: - type: Transform pos: 52.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12102 components: - type: Transform @@ -109409,7 +109485,7 @@ entities: pos: 16.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12105 components: - type: Transform @@ -109417,7 +109493,7 @@ entities: pos: 16.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12116 components: - type: Transform @@ -109425,7 +109501,7 @@ entities: pos: 8.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12121 components: - type: Transform @@ -109433,7 +109509,7 @@ entities: pos: 16.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12123 components: - type: Transform @@ -109441,7 +109517,7 @@ entities: pos: -21.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12125 components: - type: Transform @@ -109449,7 +109525,7 @@ entities: pos: -4.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12130 components: - type: Transform @@ -109457,7 +109533,7 @@ entities: pos: 29.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12141 components: - type: Transform @@ -109465,21 +109541,21 @@ entities: pos: 29.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12143 components: - type: Transform pos: 26.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12151 components: - type: Transform pos: 22.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12401 components: - type: Transform @@ -109487,7 +109563,7 @@ entities: pos: 51.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12586 components: - type: Transform @@ -109495,7 +109571,7 @@ entities: pos: 42.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12695 components: - type: Transform @@ -109503,7 +109579,7 @@ entities: pos: 30.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12729 components: - type: Transform @@ -109511,7 +109587,7 @@ entities: pos: 31.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12754 components: - type: Transform @@ -109519,7 +109595,7 @@ entities: pos: 27.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12757 components: - type: Transform @@ -109527,21 +109603,21 @@ entities: pos: 38.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12794 components: - type: Transform pos: 29.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12796 components: - type: Transform pos: 13.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12833 components: - type: Transform @@ -109549,7 +109625,7 @@ entities: pos: 37.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12834 components: - type: Transform @@ -109557,7 +109633,7 @@ entities: pos: 38.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12835 components: - type: Transform @@ -109565,28 +109641,28 @@ entities: pos: 31.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12995 components: - type: Transform pos: 20.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12996 components: - type: Transform pos: 26.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13005 components: - type: Transform pos: 33.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13026 components: - type: Transform @@ -109594,14 +109670,14 @@ entities: pos: 46.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13028 components: - type: Transform pos: 33.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13029 components: - type: Transform @@ -109609,7 +109685,7 @@ entities: pos: 27.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13030 components: - type: Transform @@ -109617,7 +109693,7 @@ entities: pos: 37.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13045 components: - type: Transform @@ -109625,7 +109701,7 @@ entities: pos: 30.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14231 components: - type: Transform @@ -109633,7 +109709,7 @@ entities: pos: -20.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14660 components: - type: Transform @@ -109641,14 +109717,14 @@ entities: pos: -7.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14728 components: - type: Transform pos: -25.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14729 components: - type: Transform @@ -109656,7 +109732,7 @@ entities: pos: -35.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14733 components: - type: Transform @@ -109664,7 +109740,7 @@ entities: pos: -15.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14741 components: - type: Transform @@ -109672,7 +109748,7 @@ entities: pos: -20.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14742 components: - type: Transform @@ -109680,7 +109756,7 @@ entities: pos: -14.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14924 components: - type: Transform @@ -109688,7 +109764,7 @@ entities: pos: -27.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15261 components: - type: Transform @@ -109696,7 +109772,7 @@ entities: pos: -7.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15262 components: - type: Transform @@ -109704,7 +109780,7 @@ entities: pos: -34.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15263 components: - type: Transform @@ -109712,21 +109788,21 @@ entities: pos: -24.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15305 components: - type: Transform pos: -35.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15307 components: - type: Transform pos: -23.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15319 components: - type: Transform @@ -109734,14 +109810,14 @@ entities: pos: -20.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15332 components: - type: Transform pos: -11.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15333 components: - type: Transform @@ -109749,7 +109825,7 @@ entities: pos: -11.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15334 components: - type: Transform @@ -109757,7 +109833,7 @@ entities: pos: -15.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15348 components: - type: Transform @@ -109765,7 +109841,7 @@ entities: pos: -17.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15541 components: - type: Transform @@ -109773,7 +109849,7 @@ entities: pos: -20.5,-54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15542 components: - type: Transform @@ -109781,7 +109857,7 @@ entities: pos: -24.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16117 components: - type: Transform @@ -109789,7 +109865,7 @@ entities: pos: -15.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16399 components: - type: Transform @@ -109821,7 +109897,7 @@ entities: pos: -28.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17704 components: - type: Transform @@ -109829,28 +109905,28 @@ entities: pos: -28.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20659 components: - type: Transform pos: -2.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20992 components: - type: Transform pos: 10.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21003 components: - type: Transform pos: 21.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21005 components: - type: Transform @@ -109858,7 +109934,7 @@ entities: pos: 24.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21011 components: - type: Transform @@ -109866,14 +109942,14 @@ entities: pos: 8.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21020 components: - type: Transform pos: 2.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21021 components: - type: Transform @@ -109881,7 +109957,7 @@ entities: pos: 3.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21027 components: - type: Transform @@ -109889,7 +109965,7 @@ entities: pos: 10.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21068 components: - type: Transform @@ -109897,14 +109973,14 @@ entities: pos: 25.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21074 components: - type: Transform pos: 7.5,-54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21075 components: - type: Transform @@ -109912,7 +109988,7 @@ entities: pos: 9.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21097 components: - type: Transform @@ -109920,21 +109996,21 @@ entities: pos: 25.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21098 components: - type: Transform pos: 20.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21099 components: - type: Transform pos: 15.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21107 components: - type: Transform @@ -109942,7 +110018,7 @@ entities: pos: 14.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21161 components: - type: Transform @@ -109950,7 +110026,7 @@ entities: pos: 32.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21562 components: - type: Transform @@ -109958,7 +110034,7 @@ entities: pos: -30.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21563 components: - type: Transform @@ -109966,7 +110042,7 @@ entities: pos: -25.5,-67.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21564 components: - type: Transform @@ -109974,7 +110050,7 @@ entities: pos: -16.5,-73.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21608 components: - type: Transform @@ -109982,14 +110058,14 @@ entities: pos: 1.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21645 components: - type: Transform pos: -5.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21646 components: - type: Transform @@ -109997,7 +110073,7 @@ entities: pos: -7.5,-71.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22019 components: - type: Transform @@ -110005,7 +110081,7 @@ entities: pos: -2.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22021 components: - type: Transform @@ -110013,7 +110089,7 @@ entities: pos: -2.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22023 components: - type: Transform @@ -110021,7 +110097,7 @@ entities: pos: -2.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22183 components: - type: Transform @@ -110029,7 +110105,7 @@ entities: pos: 19.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22189 components: - type: Transform @@ -110037,7 +110113,7 @@ entities: pos: 23.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23381 components: - type: Transform @@ -110048,7 +110124,7 @@ entities: deviceLists: - 23906 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23383 components: - type: Transform @@ -110058,7 +110134,7 @@ entities: deviceLists: - 23905 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23384 components: - type: Transform @@ -110068,7 +110144,7 @@ entities: deviceLists: - 23905 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23509 components: - type: Transform @@ -110076,7 +110152,7 @@ entities: pos: 70.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24334 components: - type: Transform @@ -110084,7 +110160,7 @@ entities: pos: -21.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25920 components: - type: Transform @@ -110132,7 +110208,7 @@ entities: pos: 12.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27502 components: - type: Transform @@ -110163,7 +110239,7 @@ entities: pos: 52.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10949 components: - type: Transform @@ -110171,7 +110247,7 @@ entities: pos: 52.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24302 components: - type: Transform @@ -118578,6 +118654,685 @@ entities: rot: 1.5707963267948966 rad pos: 72.83539,-31.5 parent: 5350 +- proto: Holopad + entities: + - uid: 27647 + components: + - type: MetaData + name: holopad (Security - Evac) + - type: Transform + pos: 1.5,-71.5 + parent: 5350 + - type: Label + currentLabel: Security - Evac + - type: NameModifier + baseName: holopad +- proto: HolopadAiBackupPower + entities: + - uid: 27585 + components: + - type: Transform + pos: 110.5,0.5 + parent: 5350 +- proto: HolopadAiChute + entities: + - uid: 9164 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 5350 +- proto: HolopadAiCore + entities: + - uid: 27587 + components: + - type: Transform + pos: 104.5,5.5 + parent: 5350 +- proto: HolopadAiEntrance + entities: + - uid: 27591 + components: + - type: Transform + pos: 93.5,0.5 + parent: 5350 +- proto: HolopadAiMain + entities: + - uid: 11149 + components: + - type: Transform + pos: 104.5,0.5 + parent: 5350 +- proto: HolopadAiUpload + entities: + - uid: 27628 + components: + - type: Transform + pos: -10.5,16.5 + parent: 5350 +- proto: HolopadCargoBay + entities: + - uid: 27629 + components: + - type: Transform + pos: -40.5,15.5 + parent: 5350 + - uid: 27633 + components: + - type: MetaData + name: holopad (Cargo - Mailroom) + - type: Transform + pos: -40.5,4.5 + parent: 5350 + - type: Label + currentLabel: Cargo - Mailroom + - type: NameModifier + baseName: holopad +- proto: HolopadCargoBayLongRange + entities: + - uid: 27630 + components: + - type: Transform + pos: -40.5,19.5 + parent: 5350 +- proto: HolopadCargoBreakroom + entities: + - uid: 27631 + components: + - type: Transform + pos: -31.5,11.5 + parent: 5350 +- proto: HolopadCargoFront + entities: + - uid: 27632 + components: + - type: Transform + pos: -32.5,5.5 + parent: 5350 +- proto: HolopadCargoSalvageBay + entities: + - uid: 23354 + components: + - type: Transform + pos: -42.5,26.5 + parent: 5350 +- proto: HolopadCommandBridge + entities: + - uid: 27600 + components: + - type: Transform + pos: -3.5,2.5 + parent: 5350 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 27601 + components: + - type: Transform + pos: -1.5,2.5 + parent: 5350 +- proto: HolopadCommandCaptain + entities: + - uid: 27605 + components: + - type: Transform + pos: 10.5,5.5 + parent: 5350 + - uid: 27606 + components: + - type: MetaData + name: holopad (Command - Captain's Office) + - type: Transform + pos: 9.5,-2.5 + parent: 5350 + - type: Label + currentLabel: Command - Captain's Office + - type: NameModifier + baseName: holopad +- proto: HolopadCommandCe + entities: + - uid: 16232 + components: + - type: Transform + pos: 45.5,8.5 + parent: 5350 +- proto: HolopadCommandCmo + entities: + - uid: 27652 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 5350 +- proto: HolopadCommandHop + entities: + - uid: 27602 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 5350 +- proto: HolopadCommandHos + entities: + - uid: 27649 + components: + - type: Transform + pos: 8.5,45.5 + parent: 5350 +- proto: HolopadCommandLounge + entities: + - uid: 27603 + components: + - type: MetaData + name: holopad (Command - Showroom) + - type: Transform + pos: -2.5,-15.5 + parent: 5350 + - type: Label + currentLabel: Command - Showroom + - type: NameModifier + baseName: holopad +- proto: HolopadCommandMeetingRoom + entities: + - uid: 27604 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 5350 +- proto: HolopadCommandQm + entities: + - uid: 27651 + components: + - type: Transform + pos: -30.5,15.5 + parent: 5350 +- proto: HolopadCommandRd + entities: + - uid: 27648 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 5350 +- proto: HolopadCommandVault + entities: + - uid: 27607 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 5350 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 11262 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 5350 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 10974 + components: + - type: Transform + pos: 56.5,-21.5 + parent: 5350 + - uid: 11282 + components: + - type: MetaData + name: holopad (Atmos - Main Upper) + - type: Transform + pos: 60.5,-9.5 + parent: 5350 + - type: Label + currentLabel: Atmos - Main Upper + - type: NameModifier + baseName: holopad +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 3922 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 5350 + - uid: 26846 + components: + - type: MetaData + name: holopad (Atmos - TEG Breakroom) + - type: Transform + pos: 76.5,-26.5 + parent: 5350 + - type: Label + currentLabel: Atmos - TEG Breakroom + - type: NameModifier + baseName: holopad +- proto: HolopadEngineeringBreakroom + entities: + - uid: 9091 + components: + - type: Transform + pos: 50.5,14.5 + parent: 5350 +- proto: HolopadEngineeringFront + entities: + - uid: 23958 + components: + - type: Transform + pos: 50.5,3.5 + parent: 5350 +- proto: HolopadEngineeringStorage + entities: + - uid: 4097 + components: + - type: Transform + pos: 51.5,23.5 + parent: 5350 +- proto: HolopadEngineeringTechVault + entities: + - uid: 9092 + components: + - type: Transform + pos: 37.5,9.5 + parent: 5350 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 14148 + components: + - type: Transform + pos: 104.5,-3.5 + parent: 5350 + - uid: 14294 + components: + - type: MetaData + name: holopad (Engineering - Telecoms Main) + - type: Transform + pos: 104.5,-9.5 + parent: 5350 + - type: Label + currentLabel: Engineering - Telecoms Main + - type: NameModifier + baseName: holopad +- proto: HolopadGeneralArrivals + entities: + - uid: 27613 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 5350 +- proto: HolopadGeneralCryosleep + entities: + - uid: 27611 + components: + - type: Transform + pos: 35.5,18.5 + parent: 5350 +- proto: HolopadGeneralDisposals + entities: + - uid: 27614 + components: + - type: Transform + pos: -36.5,40.5 + parent: 5350 +- proto: HolopadGeneralEvac + entities: + - uid: 27612 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 5350 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 27608 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 5350 +- proto: HolopadGeneralLounge + entities: + - uid: 27610 + components: + - type: Transform + pos: 22.5,16.5 + parent: 5350 +- proto: HolopadGeneralTheater + entities: + - uid: 11145 + components: + - type: MetaData + name: holopad (Service - Theater Show) + - type: Transform + pos: 37.5,-5.5 + parent: 5350 + - type: Label + currentLabel: Service - Theater Show + - type: NameModifier + baseName: holopad + - uid: 27586 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 5350 +- proto: HolopadGeneralTools + entities: + - uid: 27590 + components: + - type: Transform + pos: 21.5,7.5 + parent: 5350 + - uid: 27609 + components: + - type: Transform + pos: -20.5,14.5 + parent: 5350 +- proto: HolopadMedicalChemistry + entities: + - uid: 15042 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 5350 +- proto: HolopadMedicalCryopods + entities: + - uid: 27653 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 5350 +- proto: HolopadMedicalFront + entities: + - uid: 27636 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 5350 +- proto: HolopadMedicalMedbay + entities: + - uid: 27637 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 5350 +- proto: HolopadMedicalMorgue + entities: + - uid: 27638 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 5350 +- proto: HolopadMedicalParamed + entities: + - uid: 27640 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 5350 +- proto: HolopadMedicalSurgery + entities: + - uid: 27641 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 5350 + - uid: 27642 + components: + - type: MetaData + name: holopad (Medical - Surgery West) + - type: Transform + pos: -32.5,-51.5 + parent: 5350 + - type: Label + currentLabel: Medical - Surgery West + - type: NameModifier + baseName: holopad + - uid: 27643 + components: + - type: MetaData + name: holopad (Medical - Surgery East) + - type: Transform + pos: -26.5,-51.5 + parent: 5350 + - type: Label + currentLabel: Medical - Surgery East + - type: NameModifier + baseName: holopad +- proto: HolopadMedicalVirology + entities: + - uid: 27644 + components: + - type: MetaData + name: holopad (Medical - Virology North) + - type: Transform + pos: -51.5,-47.5 + parent: 5350 + - type: Label + currentLabel: Medical - Virology North + - type: NameModifier + baseName: holopad + - uid: 27645 + components: + - type: MetaData + name: holopad (Medical - Virology South) + - type: Transform + pos: -50.5,-53.5 + parent: 5350 + - type: Label + currentLabel: Medical - Virology South + - type: NameModifier + baseName: holopad +- proto: HolopadScienceAnomaly + entities: + - uid: 27592 + components: + - type: MetaData + name: holopad (Science - Anomaly South) + - type: Transform + pos: 14.5,-50.5 + parent: 5350 + - type: Label + currentLabel: Science - Anomaly South + - type: NameModifier + baseName: holopad + - uid: 27593 + components: + - type: MetaData + name: holopad (Science - Anomaly North) + - type: Transform + pos: 19.5,-30.5 + parent: 5350 + - type: Label + currentLabel: Science - Anomaly North + - type: NameModifier + baseName: holopad + - uid: 27598 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 5350 +- proto: HolopadScienceBreakroom + entities: + - uid: 27595 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 5350 + - uid: 27597 + components: + - type: MetaData + name: holopad (Science - Lower Breakroom) + - type: Transform + pos: 24.5,-57.5 + parent: 5350 + - type: Label + currentLabel: Science - Lower Breakroom + - type: NameModifier + baseName: holopad +- proto: HolopadScienceFront + entities: + - uid: 27594 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 5350 +- proto: HolopadScienceRnd + entities: + - uid: 27599 + components: + - type: MetaData + name: holopad (Science - Anomaly Chunnel) + - type: Transform + pos: 23.5,-42.5 + parent: 5350 + - type: Label + currentLabel: Science - Anomaly Chunnel + - type: NameModifier + baseName: holopad +- proto: HolopadScienceRobotics + entities: + - uid: 27596 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 5350 +- proto: HolopadSecurityArmory + entities: + - uid: 27618 + components: + - type: Transform + pos: -4.5,37.5 + parent: 5350 +- proto: HolopadSecurityBreakroom + entities: + - uid: 27627 + components: + - type: Transform + pos: 9.5,38.5 + parent: 5350 +- proto: HolopadSecurityBrig + entities: + - uid: 27619 + components: + - type: Transform + pos: -10.5,31.5 + parent: 5350 +- proto: HolopadSecurityCourtroom + entities: + - uid: 27620 + components: + - type: Transform + pos: 4.5,19.5 + parent: 5350 +- proto: HolopadSecurityDetective + entities: + - uid: 27621 + components: + - type: Transform + pos: 11.5,27.5 + parent: 5350 +- proto: HolopadSecurityFront + entities: + - uid: 27624 + components: + - type: Transform + pos: 1.5,27.5 + parent: 5350 +- proto: HolopadSecurityInterrogation + entities: + - uid: 27622 + components: + - type: Transform + pos: 17.5,32.5 + parent: 5350 +- proto: HolopadSecurityLawyer + entities: + - uid: 27623 + components: + - type: Transform + pos: 13.5,19.5 + parent: 5350 +- proto: HolopadSecurityPerma + entities: + - uid: 27626 + components: + - type: Transform + pos: -8.5,56.5 + parent: 5350 +- proto: HolopadSecurityWarden + entities: + - uid: 27625 + components: + - type: Transform + pos: -3.5,29.5 + parent: 5350 +- proto: HolopadServiceBar + entities: + - uid: 27589 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 5350 +- proto: HolopadServiceBotany + entities: + - uid: 14900 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 5350 +- proto: HolopadServiceBoxer + entities: + - uid: 27650 + components: + - type: MetaData + name: holopad (Service - Boxing Ring) + - type: Transform + pos: 32.5,41.5 + parent: 5350 + - type: Label + currentLabel: Service - Boxing Ring + - type: NameModifier + baseName: holopad +- proto: HolopadServiceChapel + entities: + - uid: 27616 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 5350 + - uid: 27646 + components: + - type: MetaData + name: holopad (Service - Chapel Office) + - type: Transform + pos: -25.5,-66.5 + parent: 5350 + - type: Label + currentLabel: Service - Chapel Office + - type: NameModifier + baseName: holopad +- proto: HolopadServiceJanitor + entities: + - uid: 19140 + components: + - type: Transform + pos: -25.5,27.5 + parent: 5350 +- proto: HolopadServiceKitchen + entities: + - uid: 11094 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 5350 +- proto: HolopadServiceLibrary + entities: + - uid: 23353 + components: + - type: MetaData + name: holopad (Service - Library Meeting) + - type: Transform + pos: -33.5,-15.5 + parent: 5350 + - type: Label + currentLabel: Service - Library Meeting + - type: NameModifier + baseName: holopad + - uid: 27615 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 5350 - proto: HospitalCurtainsOpen entities: - uid: 7215 @@ -118916,7 +119671,7 @@ entities: - uid: 12035 components: - type: Transform - pos: 45.50215,-5.5220656 + pos: 45.621765,-5.6755776 parent: 5350 - proto: IngotGold entities: @@ -120089,10 +120844,10 @@ entities: parent: 5350 - proto: LockerEngineerFilledHardsuit entities: - - uid: 21814 + - uid: 3921 components: - type: Transform - pos: 70.5,8.5 + pos: 69.5,5.5 parent: 5350 - uid: 23601 components: @@ -121492,7 +122247,7 @@ entities: - uid: 3943 components: - type: Transform - pos: -34.416153,2.6476355 + pos: -34.30339,2.5575073 parent: 5350 - uid: 9241 components: @@ -122337,7 +123092,7 @@ entities: - uid: 3944 components: - type: Transform - pos: -34.431778,3.6007605 + pos: -34.67839,2.5887573 parent: 5350 - uid: 12072 components: @@ -122545,10 +123300,10 @@ entities: parent: 5350 - proto: OreProcessor entities: - - uid: 3921 + - uid: 27194 components: - type: Transform - pos: -32.5,5.5 + pos: -34.5,3.5 parent: 5350 - proto: OxygenCanister entities: @@ -124985,12 +125740,231 @@ entities: parent: 5350 - proto: PoweredDimSmallLight entities: + - uid: 6206 + components: + - type: Transform + pos: -47.5,8.5 + parent: 5350 + - uid: 10731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,27.5 + parent: 5350 + - uid: 10736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,33.5 + parent: 5350 + - uid: 12024 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 5350 + - uid: 12026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 5350 + - uid: 12027 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 5350 + - uid: 13764 + components: + - type: Transform + pos: 18.5,28.5 + parent: 5350 + - uid: 13765 + components: + - type: Transform + pos: 21.5,37.5 + parent: 5350 + - uid: 14060 + components: + - type: Transform + pos: -21.5,-59.5 + parent: 5350 + - uid: 15609 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 5350 + - uid: 17529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-41.5 + parent: 5350 + - uid: 17530 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 5350 + - uid: 18401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-16.5 + parent: 5350 + - uid: 18520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,39.5 + parent: 5350 + - uid: 19011 + components: + - type: Transform + pos: 28.5,-45.5 + parent: 5350 + - uid: 22564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-63.5 + parent: 5350 + - uid: 22638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-31.5 + parent: 5350 + - uid: 22726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-21.5 + parent: 5350 + - uid: 22727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-28.5 + parent: 5350 + - uid: 22758 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 5350 + - uid: 22778 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 5350 + - uid: 22880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,37.5 + parent: 5350 + - uid: 23113 + components: + - type: Transform + pos: -27.5,41.5 + parent: 5350 + - uid: 23114 + components: + - type: Transform + pos: 26.5,10.5 + parent: 5350 + - uid: 24056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,22.5 + parent: 5350 + - uid: 24131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,28.5 + parent: 5350 + - uid: 24151 + components: + - type: Transform + pos: 64.5,33.5 + parent: 5350 - uid: 27522 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-30.5 parent: 5350 + - uid: 27669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-39.5 + parent: 5350 + - uid: 27670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-49.5 + parent: 5350 + - uid: 27671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-56.5 + parent: 5350 + - uid: 27672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-46.5 + parent: 5350 + - uid: 27673 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 5350 + - uid: 27674 + components: + - type: Transform + pos: -13.5,-57.5 + parent: 5350 + - uid: 27675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-61.5 + parent: 5350 + - uid: 27676 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 5350 + - uid: 27677 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 5350 + - uid: 27678 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 5350 + - uid: 27679 + components: + - type: Transform + pos: -21.5,34.5 + parent: 5350 + - uid: 27680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,36.5 + parent: 5350 + - uid: 27681 + components: + - type: Transform + pos: 25.5,43.5 + parent: 5350 - proto: Poweredlight entities: - uid: 382 @@ -127929,13 +128903,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6206 - components: - - type: Transform - pos: -47.5,8.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6563 components: - type: Transform @@ -128090,19 +129057,9 @@ entities: - uid: 10730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,33.5 + rot: 3.141592653589793 rad + pos: -37.5,38.5 parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,27.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10732 components: - type: Transform @@ -128126,14 +129083,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,38.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10738 components: - type: Transform @@ -128230,13 +129179,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-18.5 parent: 5350 - - uid: 12024 - components: - - type: Transform - pos: 47.5,-13.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12025 components: - type: Transform @@ -128244,21 +129186,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-16.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12027 - components: - - type: Transform - pos: 42.5,-5.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12287 components: - type: Transform @@ -128404,20 +129331,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13764 - components: - - type: Transform - pos: 18.5,28.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13765 - components: - - type: Transform - pos: 21.5,37.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 13766 components: - type: Transform @@ -128471,13 +129384,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-13.5 parent: 5350 - - uid: 15609 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 15610 components: - type: Transform @@ -128656,21 +129562,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 17529 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-41.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 17531 components: - type: Transform @@ -128717,13 +129608,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 18401 - components: - - type: Transform - pos: -47.5,-16.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 18519 components: - type: Transform @@ -128731,14 +129615,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 18520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-16.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 18935 components: - type: Transform @@ -128763,14 +129639,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 19011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,36.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 19441 components: - type: Transform @@ -128972,13 +129840,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22564 - components: - - type: Transform - pos: 28.5,-45.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22617 components: - type: Transform @@ -128986,14 +129847,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-63.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22644 components: - type: Transform @@ -129002,28 +129855,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-31.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-20.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-28.5 - parent: 5350 - uid: 22777 components: - type: Transform @@ -129031,13 +129862,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22778 - components: - - type: Transform - pos: -42.5,-16.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22790 components: - type: Transform @@ -129045,13 +129869,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22880 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 22902 components: - type: Transform @@ -129068,21 +129885,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 23113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23114 - components: - - type: Transform - pos: -27.5,41.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23135 components: - type: Transform @@ -129152,13 +129954,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 5350 - - uid: 24056 - components: - - type: Transform - pos: 26.5,10.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 24074 components: - type: Transform @@ -129182,27 +129977,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 24131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 24151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,28.5 - parent: 5350 - - uid: 24152 - components: - - type: Transform - pos: 64.5,33.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 26342 components: - type: Transform @@ -129338,6 +130112,16 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-27.5 parent: 5350 + - uid: 27588 + components: + - type: Transform + pos: 63.5,8.5 + parent: 5350 + - uid: 27668 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 5350 - proto: Protolathe entities: - uid: 9805 @@ -131214,13 +131998,16 @@ entities: entities: - uid: 12579 components: + - type: MetaData + name: compressed matter - type: Transform - pos: 43.381737,8.657005 + pos: 46.278725,8.980059 parent: 5350 + - type: Label - uid: 12580 components: - type: Transform - pos: 43.631737,8.657005 + pos: 46.528725,9.058184 parent: 5350 - uid: 27062 components: @@ -137411,6 +138198,25 @@ entities: rot: 1.5707963267948966 rad pos: -53.4983,1.6983032 parent: 5350 +- proto: SignDirectionalSolar + entities: + - uid: 24152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,31.5 + parent: 5350 + - uid: 27663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,32.5 + parent: 5350 + - uid: 27667 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 5350 - proto: SignDirectionalSupply entities: - uid: 3600 @@ -137885,6 +138691,13 @@ entities: - type: Transform pos: -0.5,-33.5 parent: 5350 +- proto: SignSalvage + entities: + - uid: 27634 + components: + - type: Transform + pos: -39.5,22.5 + parent: 5350 - proto: SignScience entities: - uid: 9789 @@ -137974,11 +138787,6 @@ entities: - type: Transform pos: -12.5,11.5 parent: 5350 - - uid: 14060 - components: - - type: Transform - pos: 55.5,31.5 - parent: 5350 - uid: 15605 components: - type: Transform @@ -138005,6 +138813,12 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-3.5 parent: 5350 + - uid: 27664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,31.5 + parent: 5350 - proto: SignSecureMedRed entities: - uid: 10471 @@ -138088,13 +138902,6 @@ entities: - type: Transform pos: -0.5,22.5 parent: 5350 -- proto: SignShipDock - entities: - - uid: 4097 - components: - - type: Transform - pos: -39.5,22.5 - parent: 5350 - proto: SignSmoking entities: - uid: 11369 @@ -138515,23 +139322,40 @@ entities: - type: Transform pos: -52.5,-49.5 parent: 5350 -- proto: SMESBasic +- proto: SMESAdvanced entities: - - uid: 9091 + - uid: 23355 components: - type: Transform pos: 43.5,17.5 parent: 5350 - - uid: 9092 + - uid: 23805 components: - type: Transform pos: 43.5,16.5 parent: 5350 - - uid: 9164 + - uid: 23806 components: - type: Transform pos: 43.5,18.5 parent: 5350 + - uid: 23807 + components: + - type: Transform + pos: 72.5,-26.5 + parent: 5350 + - uid: 23808 + components: + - type: Transform + pos: 71.5,-26.5 + parent: 5350 + - uid: 23877 + components: + - type: Transform + pos: 70.5,-26.5 + parent: 5350 +- proto: SMESBasic + entities: - uid: 9200 components: - type: Transform @@ -138549,21 +139373,11 @@ entities: - type: Transform pos: -33.5,44.5 parent: 5350 - - uid: 11262 - components: - - type: Transform - pos: 72.5,-26.5 - parent: 5350 - uid: 11281 components: - type: Transform pos: 47.5,-23.5 parent: 5350 - - uid: 11282 - components: - - type: Transform - pos: 71.5,-26.5 - parent: 5350 - uid: 13977 components: - type: MetaData @@ -138619,11 +139433,6 @@ entities: - type: Transform pos: 55.5,30.5 parent: 5350 - - uid: 27251 - components: - - type: Transform - pos: 70.5,-26.5 - parent: 5350 - proto: SmokingPipeFilledCannabis entities: - uid: 24641 @@ -142049,17 +142858,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Telecomms - - uid: 25814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,1.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Tunnel - uid: 26400 components: - type: Transform @@ -142211,17 +143009,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Telecomms Command Room - - uid: 26846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,2.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Tunnel - uid: 26928 components: - type: Transform @@ -142455,17 +143242,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering South - - uid: 23877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,6.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME - uid: 24054 components: - type: Transform @@ -144477,11 +145253,6 @@ entities: - type: Transform pos: -34.5,2.5 parent: 5350 - - uid: 3922 - components: - - type: Transform - pos: -34.5,3.5 - parent: 5350 - uid: 3926 components: - type: Transform @@ -145687,11 +146458,6 @@ entities: - type: Transform pos: 53.5,-5.5 parent: 5350 - - uid: 23958 - components: - - type: Transform - pos: 45.5,-8.5 - parent: 5350 - uid: 23975 components: - type: Transform @@ -146563,11 +147329,6 @@ entities: - type: Transform pos: 43.5,9.5 parent: 5350 - - uid: 9057 - components: - - type: Transform - pos: 43.5,8.5 - parent: 5350 - uid: 9776 components: - type: Transform @@ -172643,7 +173404,7 @@ entities: - uid: 23960 components: - type: Transform - pos: 45.520813,-8.421944 + pos: 45.488922,-6.3474526 parent: 5350 - uid: 26803 components: From c1b229aea5082b87634288502eb25e6877b8994b Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Wed, 18 Dec 2024 19:48:14 -0800 Subject: [PATCH 162/263] Packed Power Rebalance + Gas Sensors Adjustments (#33955) * fix packed power * fix that * fix that as well * even more fixes * fix power, again --- Resources/Maps/packed.yml | 4265 ++++++++++++++++++++----------------- 1 file changed, 2277 insertions(+), 1988 deletions(-) diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 60063f7c0e..375c272f0a 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -84,7 +84,7 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: awAAAAAAWwAAAAADWwAAAAABewAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAABZAAAAAADewAAAAAAewAAAAAAewAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAADewAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAABZAAAAAABZAAAAAACewAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAABWwAAAAAAWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACHQAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADHQAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAABHQAAAAABHQAAAAABWwAAAAACWwAAAAADWwAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADHQAAAAADewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAD + tiles: awAAAAAAWwAAAAADWwAAAAABewAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAZAAAAAACZAAAAAABZAAAAAADewAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAABZAAAAAABZAAAAAACewAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAABWwAAAAAAWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACHQAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADHQAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAABHQAAAAABHQAAAAABWwAAAAACWwAAAAADWwAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADHQAAAAADewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAD version: 6 0,-3: ind: 0,-3 @@ -92,7 +92,7 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAHQAAAAABWwAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAHQAAAAABHQAAAAADewAAAAAAHQAAAAACHQAAAAADewAAAAAAHQAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAABHQAAAAACewAAAAAAHQAAAAACWwAAAAAAewAAAAAAHQAAAAACHQAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABHQAAAAAAewAAAAAAHQAAAAADWwAAAAADewAAAAAAHQAAAAACHQAAAAABewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAAAWwAAAAACHQAAAAACWwAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAHQAAAAACHQAAAAACHQAAAAACewAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAAAWwAAAAACWwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABewAAAAAAHQAAAAADHQAAAAACewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAABZAAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAWwAAAAACWwAAAAAAewAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAACZAAAAAACZAAAAAADZAAAAAAD + tiles: AAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAHQAAAAABWwAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAHQAAAAABHQAAAAADewAAAAAAHQAAAAACHQAAAAADewAAAAAAHQAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAABHQAAAAACewAAAAAAHQAAAAACWwAAAAAAewAAAAAAHQAAAAACHQAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABHQAAAAAAewAAAAAAHQAAAAADWwAAAAADewAAAAAAHQAAAAACHQAAAAABewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAAAWwAAAAACHQAAAAACWwAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAHQAAAAACHQAAAAACHQAAAAACewAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAAAWwAAAAACWwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABewAAAAAAHQAAAAADHQAAAAACewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAWwAAAAACWwAAAAAAewAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAZAAAAAACZAAAAAADZAAAAAAD version: 6 2,-2: ind: 2,-2 @@ -2127,13 +2127,6 @@ entities: 4061: 31,-28 4062: 21,-26 4063: 35,-48 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bot - decals: - 303: 24,-34 - 304: 28,-34 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2214,6 +2207,12 @@ entities: id: Box decals: 448: 21,-43 + 4097: 27,-35 + 4098: 27,-33 + 4099: 25,-33 + 4100: 25,-35 + 4101: 25,-34 + 4102: 27,-34 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -2691,6 +2690,29 @@ entities: decals: 2224: 78,-2 2225: 78,-1 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 4173: 26,-36 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 4176: 28,-34 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 4174: 26,-32 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution + decals: + 4175: 24,-34 - node: color: '#1F820993' id: CheckerNESW @@ -3012,18 +3034,11 @@ entities: 694: 30,-33 695: 29,-33 696: 29,-32 - 697: 28,-32 698: 31,-32 699: 32,-31 - 700: 27,-34 - 701: 27,-33 - 702: 26,-33 - 703: 25,-34 - 704: 24,-32 705: 23,-32 706: 22,-31 707: 22,-33 - 708: 24,-33 851: 43,-11 852: 42,-10 853: 30,-13 @@ -3138,6 +3153,7 @@ entities: 4084: 24,-24 4085: 27,-25 4091: 25,-28 + 4206: 28,-34 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -3153,14 +3169,10 @@ entities: decals: 286: 21,-33 287: 20,-33 - 288: 28,-34 - 289: 28,-33 290: 31,-33 426: 40,-41 427: 40,-40 428: 41,-40 - 482: 24,-37 - 483: 30,-37 484: 31,-36 618: 18,-31 619: 19,-29 @@ -3220,6 +3232,10 @@ entities: 3952: 46,35 4076: 29,-27 4086: 24,-25 + 4184: 28,-32 + 4272: 24,-36 + 4273: 25,-37 + 4274: 30,-37 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3307,6 +3323,18 @@ entities: 4089: 25,-24 4092: 27,-28 4093: 26,-30 + 4189: 24,-34 + 4190: 24,-32 + 4191: 25,-32 + 4192: 28,-34 + 4193: 28,-33 + 4198: 27,-37 + 4199: 26,-37 + 4284: 22,-36 + 4285: 26,-37 + 4286: 24,-37 + 4287: 28,-36 + 4288: 32,-37 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3334,8 +3362,6 @@ entities: decals: 291: 31,-32 292: 30,-33 - 293: 25,-33 - 294: 24,-33 295: 23,-31 296: 23,-33 297: 31,-31 @@ -3348,15 +3374,6 @@ entities: 485: 31,-37 489: 32,-36 490: 32,-35 - 491: 29,-36 - 492: 29,-37 - 493: 27,-37 - 494: 27,-36 - 495: 25,-37 - 496: 25,-36 - 497: 24,-36 - 498: 23,-37 - 499: 22,-37 500: 20,-37 501: 17,-36 502: 18,-35 @@ -3509,6 +3526,18 @@ entities: 4094: 24,-29 4095: 28,-29 4096: 26,-27 + 4185: 27,-32 + 4186: 24,-33 + 4187: 24,-35 + 4188: 28,-35 + 4203: 26,-36 + 4204: 25,-32 + 4275: 30,-36 + 4276: 28,-37 + 4277: 28,-36 + 4278: 27,-37 + 4279: 27,-36 + 4280: 25,-36 - node: cleanable: True angle: 3.141592653589793 rad @@ -3538,10 +3567,7 @@ entities: 478: 23,-39 479: 21,-37 480: 18,-36 - 481: 26,-36 486: 31,-35 - 487: 30,-36 - 488: 28,-37 614: 21,-28 615: 14,-26 616: 13,-25 @@ -3598,6 +3624,9 @@ entities: 3954: 46,34 4077: 29,-28 4088: 25,-25 + 4281: 25,-36 + 4282: 24,-37 + 4283: 22,-37 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3761,21 +3790,6 @@ entities: 268: 31,-33 269: 30,-33 270: 29,-33 - 271: 28,-33 - 272: 28,-34 - 273: 28,-32 - 274: 27,-34 - 275: 27,-33 - 276: 27,-32 - 277: 26,-32 - 278: 26,-33 - 279: 26,-34 - 280: 25,-34 - 281: 25,-33 - 282: 25,-32 - 283: 24,-32 - 284: 24,-33 - 285: 24,-34 - node: color: '#FFFFFFFF' id: Grassd1 @@ -3911,12 +3925,6 @@ entities: color: '#EFCC4193' id: HalfTileOverlayGreyscale decals: - 305: 25,-36 - 306: 24,-36 - 307: 23,-36 - 308: 27,-36 - 309: 28,-36 - 310: 29,-36 313: 32,-35 316: 20,-35 317: 19,-35 @@ -4037,18 +4045,18 @@ entities: 2937: 36,30 2938: 43,30 3929: 35,30 + - node: + color: '#EFC24193' + id: HalfTileOverlayGreyscale180 + decals: + 4179: 27,-37 + 4180: 26,-37 - node: color: '#EFCC4193' id: HalfTileOverlayGreyscale180 decals: 333: 16,-37 334: 17,-37 - 335: 25,-37 - 336: 26,-37 - 337: 27,-37 - 338: 28,-37 - 339: 29,-37 - 340: 30,-37 343: 16,-29 344: 15,-29 345: 14,-29 @@ -4062,6 +4070,13 @@ entities: 460: 20,-44 461: 21,-44 462: 22,-44 + - node: + color: '#EFCF5093' + id: HalfTileOverlayGreyscale180 + decals: + 4267: 25,-37 + 4268: 28,-37 + 4269: 24,-37 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -4583,7 +4598,6 @@ entities: color: '#EFCC4193' id: QuarterTileOverlayGreyscale decals: - 311: 30,-36 328: 17,-34 - node: color: '#0E7F1BFF' @@ -5386,7 +5400,6 @@ entities: color: '#EFCC4193' id: QuarterTileOverlayGreyscale90 decals: - 314: 22,-36 318: 18,-35 359: 22,-27 - node: @@ -5775,6 +5788,7 @@ entities: 3014: 46,33 3533: 6,33 3919: 18,-46 + 4255: 24,-36 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -5783,6 +5797,7 @@ entities: 2560: 41,-49 2974: 53,33 3920: 24,-46 + 4254: 28,-36 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -5791,6 +5806,7 @@ entities: 2563: 39,-45 2848: 46,36 3653: 6,39 + 4160: 24,-32 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5798,6 +5814,7 @@ entities: 2562: 41,-45 2852: 53,36 4068: 33,-26 + 4161: 28,-32 - node: color: '#FFFFFFFF' id: WarnFull @@ -5824,10 +5841,13 @@ entities: 1008: 24,-29 1009: 31,-30 1010: 31,-34 - 1011: 26,-35 1012: 21,-34 1013: 21,-30 2426: 61,-9 + 4257: 23,-36 + 4258: 23,-37 + 4259: 29,-36 + 4260: 29,-37 - node: color: '#FFFFFFFF' id: WarnLineE @@ -5854,6 +5874,9 @@ entities: 4050: 49,-47 4051: 49,-48 4052: 49,-49 + 4170: 24,-33 + 4171: 24,-34 + 4172: 24,-35 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5889,6 +5912,10 @@ entities: 1889: 9,-4 3170: 23,-40 3171: 17,-40 + 4261: 28,-36 + 4262: 28,-37 + 4263: 22,-36 + 4264: 22,-37 - node: color: '#52B4E996' id: WarnLineGreyscaleN @@ -5901,7 +5928,6 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 375: 26,-36 376: 31,-35 377: 21,-35 378: 26,-28 @@ -5977,6 +6003,10 @@ entities: 1898: 8,-10 3169: 19,-40 3177: 25,-40 + 4265: 30,-36 + 4266: 30,-37 + 4270: 24,-36 + 4271: 24,-37 - node: color: '#FFFFFFFF' id: WarnLineN @@ -5998,6 +6028,10 @@ entities: 4064: 30,-26 4065: 31,-26 4066: 32,-26 + 4164: 25,-32 + 4165: 26,-32 + 4166: 27,-32 + 4256: 22,-37 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6023,6 +6057,9 @@ entities: 3224: 6,23 4047: 46,-49 4067: 33,-27 + 4157: 28,-33 + 4158: 28,-34 + 4159: 28,-35 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6068,6 +6105,9 @@ entities: 3916: 21,-46 3917: 22,-46 3918: 23,-46 + 4168: 26,-36 + 4252: 25,-36 + 4253: 27,-36 - node: color: '#FED83DFF' id: WarningLine @@ -6075,10 +6115,7 @@ entities: 0: 19,-37 1: 20,-37 2: 21,-37 - 3: 22,-37 - 4: 23,-37 5: 18,-37 - 6: 24,-37 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -6464,21 +6501,6 @@ entities: 648: 16.544615,-35.22728 649: 17.183504,-34.74117 650: 17.502949,-35.222652 - 673: 26.49693,-36.713375 - 674: 27.137554,-36.369625 - 675: 27.46568,-36.69775 - 676: 28.02818,-36.275875 - 677: 28.668804,-36.588375 - 678: 29.15318,-36.088375 - 679: 29.856304,-36.604 - 680: 30.325054,-36.104 - 681: 30.856304,-36.604 - 682: 21.875406,-36.6665 - 683: 22.328531,-36.1665 - 684: 23.266031,-36.604 - 685: 23.500406,-36.119625 - 686: 24.422281,-36.463375 - 687: 25.219156,-36.400875 - node: color: '#47422E3E' id: footprint @@ -6496,7 +6518,6 @@ entities: 530: 20.730148,-37.89044 531: 21.209316,-37.64739 532: 21.056538,-37.286278 - 533: 21.227804,-36.8777 534: 20.790304,-36.912422 535: 20.873638,-36.572144 - node: @@ -6509,19 +6530,11 @@ entities: 538: 21.352804,-37.419365 539: 20.998638,-37.009644 540: 20.53336,-36.822144 - 541: 21.276415,-36.558254 - 542: 21.200026,-36.23881 543: 20.727804,-36.07909 544: 20.838915,-35.481865 545: 20.991693,-35.842976 546: 21.262526,-35.099922 - 547: 25.855373,-34.212444 - 548: 26.214748,-34.056194 - 549: 25.964748,-33.868694 - 550: 26.402248,-33.54057 - 551: 25.995998,-33.337444 552: 25.995998,-32.72807 - 553: 26.433498,-32.88432 570: 21.16965,-32.87221 571: 21.216524,-32.262836 572: 20.8259,-31.512836 @@ -6583,7 +6596,6 @@ entities: 668: 18.78239,-35.983646 669: 19.25114,-36.702396 670: 20.266766,-36.03052 - 671: 21.485516,-36.56177 672: 20.25114,-36.514896 - node: angle: 3.141592653589793 rad @@ -6697,6 +6709,13 @@ entities: - type: Transform pos: 48.345963,-21.521229 parent: 2 +- proto: AcousticGuitarInstrument + entities: + - uid: 15325 + components: + - type: Transform + pos: 12.501018,-34.058125 + parent: 2 - proto: ActionToggleInternals entities: - uid: 5500 @@ -6713,6 +6732,13 @@ entities: container: 10847 - proto: ActionToggleLight entities: + - uid: 8692 + components: + - type: Transform + parent: 13472 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 13472 - uid: 13568 components: - type: Transform @@ -6738,6 +6764,12 @@ entities: - 14736 - 429 - 8203 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 2 - uid: 138 components: - type: Transform @@ -6825,14 +6857,23 @@ entities: parent: 2 - type: DeviceList devices: - - 5657 - - 5656 - - 1018 - - 169 - - 1024 - - 5684 + - 865 + - 5774 + - 12396 - 1305 - 1625 + - 4551 + - 1018 + - 169 + - 868 + - 886 + - 4267 + - 874 + - 882 + - 5693 + - 5690 + - 1024 + - 5657 - uid: 1520 components: - type: Transform @@ -7151,6 +7192,13 @@ entities: - type: DeviceList devices: - 8659 + - 1018 + - 5693 + - 5690 + - 868 + - 5774 + - 5775 + - 5776 - uid: 10988 components: - type: Transform @@ -7244,27 +7292,6 @@ entities: devices: - 5189 - 10128 - - uid: 11990 - components: - - type: Transform - pos: 23.5,-34.5 - parent: 2 - - type: DeviceList - devices: - - 12396 - - 5619 - - 5620 - - 1018 - - 5656 - - 5657 - - 5617 - - 5618 - - 831 - - 802 - - 5621 - - 5622 - - 4552 - - 4551 - uid: 12152 components: - type: Transform @@ -8021,10 +8048,29 @@ entities: - type: Transform pos: 21.5,-33.5 parent: 2 - - uid: 8272 + - uid: 883 components: - type: Transform - pos: 26.5,-34.5 + rot: 3.141592653589793 rad + pos: 23.5,-35.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-35.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-36.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-36.5 parent: 2 - uid: 8273 components: @@ -9636,11 +9682,6 @@ entities: - type: Transform pos: 26.5,-27.5 parent: 2 - - uid: 5684 - components: - - type: Transform - pos: 26.5,-33.5 - parent: 2 - uid: 6636 components: - type: Transform @@ -9676,6 +9717,9 @@ entities: - type: Transform pos: 17.5,-32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10930 - uid: 8923 components: - type: Transform @@ -9725,6 +9769,9 @@ entities: - type: Transform pos: 26.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 - uid: 12402 components: - type: Transform @@ -10013,6 +10060,23 @@ entities: - type: Transform pos: 28.5,-39.5 parent: 2 +- proto: AmePartFlatpack + entities: + - uid: 15328 + components: + - type: Transform + pos: 28.354391,-41.23593 + parent: 2 + - uid: 15329 + components: + - type: Transform + pos: 28.416891,-41.64218 + parent: 2 + - uid: 15330 + components: + - type: Transform + pos: 28.698141,-41.39218 + parent: 2 - proto: AnomalyScanner entities: - uid: 1838 @@ -18372,11 +18436,6 @@ entities: - type: Transform pos: 24.5,-32.5 parent: 2 - - uid: 10036 - components: - - type: Transform - pos: 25.5,-32.5 - parent: 2 - uid: 10037 components: - type: Transform @@ -18385,12 +18444,7 @@ entities: - uid: 10038 components: - type: Transform - pos: 27.5,-32.5 - parent: 2 - - uid: 10039 - components: - - type: Transform - pos: 28.5,-32.5 + pos: 28.5,-31.5 parent: 2 - uid: 10040 components: @@ -21827,6 +21881,51 @@ entities: - type: Transform pos: 41.5,-12.5 parent: 2 + - uid: 15317 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 15319 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 15320 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 15331 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 15332 + components: + - type: Transform + pos: 28.5,-34.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 - proto: CableApcStack entities: - uid: 5386 @@ -21898,6 +21997,21 @@ entities: - type: Transform pos: 13.5,35.5 parent: 2 + - uid: 135 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 - uid: 603 components: - type: Transform @@ -21908,6 +22022,11 @@ entities: - type: Transform pos: 60.5,18.5 parent: 2 + - uid: 682 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 - uid: 803 components: - type: Transform @@ -21923,6 +22042,11 @@ entities: - type: Transform pos: 17.5,-41.5 parent: 2 + - uid: 859 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 - uid: 1015 components: - type: Transform @@ -21933,6 +22057,11 @@ entities: - type: Transform pos: 25.5,-36.5 parent: 2 + - uid: 1602 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 - uid: 1941 components: - type: Transform @@ -22113,6 +22242,11 @@ entities: - type: Transform pos: 23.5,-41.5 parent: 2 + - uid: 4074 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 - uid: 4123 components: - type: Transform @@ -22286,57 +22420,37 @@ entities: - uid: 4536 components: - type: Transform - pos: 26.5,-34.5 - parent: 2 - - uid: 4537 - components: - - type: Transform - pos: 26.5,-33.5 - parent: 2 - - uid: 4538 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - - uid: 4541 - components: - - type: Transform - pos: 25.5,-32.5 + pos: 24.5,-31.5 parent: 2 - uid: 4542 components: - type: Transform - pos: 27.5,-32.5 - parent: 2 - - uid: 4543 - components: - - type: Transform - pos: 25.5,-31.5 + pos: 27.5,-34.5 parent: 2 - uid: 4544 components: - type: Transform - pos: 26.5,-31.5 + pos: 25.5,-33.5 parent: 2 - uid: 4545 components: - type: Transform - pos: 27.5,-31.5 + pos: 24.5,-34.5 parent: 2 - uid: 4546 components: - type: Transform - pos: 25.5,-30.5 + pos: 28.5,-34.5 parent: 2 - uid: 4547 components: - type: Transform - pos: 26.5,-30.5 + pos: 28.5,-31.5 parent: 2 - uid: 4548 components: - type: Transform - pos: 27.5,-30.5 + pos: 26.5,-34.5 parent: 2 - uid: 4549 components: @@ -22348,6 +22462,11 @@ entities: - type: Transform pos: 26.5,-28.5 parent: 2 + - uid: 4552 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 - uid: 4585 components: - type: Transform @@ -22853,6 +22972,31 @@ entities: - type: Transform pos: 41.5,41.5 parent: 2 + - uid: 5660 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 - uid: 5726 components: - type: Transform @@ -22863,6 +23007,11 @@ entities: - type: Transform pos: 50.5,-18.5 parent: 2 + - uid: 5780 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 - uid: 5873 components: - type: Transform @@ -25368,6 +25517,11 @@ entities: - type: Transform pos: 14.5,28.5 parent: 2 + - uid: 7297 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 - uid: 7782 components: - type: Transform @@ -27471,7 +27625,7 @@ entities: - uid: 4665 components: - type: Transform - pos: 25.5,-32.5 + pos: 24.5,-34.5 parent: 2 - uid: 4666 components: @@ -30053,6 +30207,11 @@ entities: - type: Transform pos: 55.5,35.5 parent: 2 + - uid: 10036 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 - uid: 10044 components: - type: Transform @@ -32538,6 +32697,31 @@ entities: - type: Transform pos: 38.5,-12.5 parent: 2 + - uid: 15315 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 15322 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 15323 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 - proto: CableMVStack entities: - uid: 5628 @@ -32552,22 +32736,16 @@ entities: parent: 2 - proto: CableTerminal entities: - - uid: 338 + - uid: 858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-32.5 + rot: 1.5707963267948966 rad + pos: 26.5,-33.5 parent: 2 - - uid: 682 + - uid: 864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-32.5 - parent: 2 - - uid: 886 - components: - - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: 26.5,-32.5 parent: 2 - uid: 2120 @@ -32581,6 +32759,12 @@ entities: - type: Transform pos: 13.5,36.5 parent: 2 + - uid: 4543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 2 - uid: 4872 components: - type: Transform @@ -32604,12 +32788,30 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,33.5 parent: 2 + - uid: 8272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 2 - uid: 12647 components: - type: Transform rot: 3.141592653589793 rad pos: 112.5,-18.5 parent: 2 + - uid: 13453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-32.5 + parent: 2 - uid: 14393 components: - type: Transform @@ -36322,24 +36524,6 @@ entities: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 15225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-31.5 - parent: 2 - - uid: 15226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-31.5 - parent: 2 - - uid: 15227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-31.5 - parent: 2 - uid: 15228 components: - type: Transform @@ -36400,6 +36584,24 @@ entities: - type: Transform pos: 35.5,-38.5 parent: 2 + - uid: 15312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-34.5 + parent: 2 + - uid: 15313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-33.5 + parent: 2 + - uid: 15314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-32.5 + parent: 2 - proto: Cautery entities: - uid: 7791 @@ -40512,18 +40714,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-32.5 parent: 2 - - uid: 5779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-32.5 - parent: 2 - - uid: 5780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-33.5 - parent: 2 - uid: 5781 components: - type: Transform @@ -41058,24 +41248,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-32.5 parent: 2 - - uid: 5774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-32.5 - parent: 2 - - uid: 5775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-32.5 - parent: 2 - - uid: 5776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-32.5 - parent: 2 - uid: 5784 components: - type: Transform @@ -43028,12 +43200,6 @@ entities: - type: Transform pos: 16.5,-33.5 parent: 2 - - uid: 5693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 2 - uid: 5694 components: - type: Transform @@ -43258,11 +43424,6 @@ entities: - type: Transform pos: 17.5,7.5 parent: 2 - - uid: 7297 - components: - - type: Transform - pos: 27.5,-33.5 - parent: 2 - uid: 7300 components: - type: Transform @@ -43641,6 +43802,13 @@ entities: - type: Transform pos: 107.25198,-16.370739 parent: 2 +- proto: DrinkRootBeerGlass + entities: + - uid: 15327 + components: + - type: Transform + pos: 10.590071,-42.418964 + parent: 2 - proto: DrinkShaker entities: - uid: 590 @@ -44419,7 +44587,6 @@ entities: - 12396 - 5620 - 5619 - - 5656 - 5657 - 5617 - 5618 @@ -44482,11 +44649,9 @@ entities: - type: DeviceList devices: - 5657 - - 5656 - 1018 - 169 - 1024 - - 5684 - uid: 5077 components: - type: Transform @@ -45118,6 +45283,43 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-38.5 parent: 2 + - uid: 868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 + - 10930 + - uid: 874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 + - uid: 882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 + - uid: 886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 - uid: 1103 components: - type: Transform @@ -45175,6 +45377,15 @@ entities: - type: Transform pos: 51.5,1.5 parent: 2 + - uid: 4267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 - uid: 4557 components: - type: Transform @@ -45272,6 +45483,36 @@ entities: - type: Transform pos: 18.5,-28.5 parent: 2 + - uid: 5690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 + - 10930 + - uid: 5693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 + - 10930 + - uid: 5774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 + - 10930 - uid: 5899 components: - type: Transform @@ -45934,6 +46175,9 @@ entities: - type: Transform pos: 21.5,-29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 - uid: 554 components: - type: Transform @@ -45959,11 +46203,18 @@ entities: - type: Transform pos: 21.5,-33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 + - 10930 - uid: 1024 components: - type: Transform pos: 31.5,-29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 - uid: 1162 components: - type: Transform @@ -46014,16 +46265,14 @@ entities: - type: Transform pos: 39.5,1.5 parent: 2 - - uid: 5656 - components: - - type: Transform - pos: 26.5,-34.5 - parent: 2 - uid: 5657 components: - type: Transform pos: 31.5,-33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 - uid: 6473 components: - type: Transform @@ -46930,7 +47179,7 @@ entities: pos: 44.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3455 components: - type: Transform @@ -46950,7 +47199,7 @@ entities: pos: 59.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - proto: GasMinerCarbonDioxide entities: - uid: 5220 @@ -46992,6 +47241,8 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasMixerFlipped entities: - uid: 1557 @@ -47007,7 +47258,7 @@ entities: pos: 42.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1933 components: - type: Transform @@ -47063,6 +47314,8 @@ entities: - type: Transform pos: 35.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 4434 components: - type: Transform @@ -47176,7 +47429,7 @@ entities: pos: 11.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 87 components: - type: Transform @@ -47184,7 +47437,7 @@ entities: pos: 61.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 383 components: - type: Transform @@ -47192,7 +47445,7 @@ entities: pos: 27.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 387 components: - type: Transform @@ -47200,7 +47453,7 @@ entities: pos: 26.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 393 components: - type: Transform @@ -47208,13 +47461,15 @@ entities: pos: 3.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 746 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 885 components: - type: Transform @@ -47222,7 +47477,7 @@ entities: pos: 30.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 889 components: - type: Transform @@ -47230,14 +47485,14 @@ entities: pos: 26.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 891 components: - type: Transform pos: 27.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1039 components: - type: Transform @@ -47245,7 +47500,7 @@ entities: pos: 33.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1040 components: - type: Transform @@ -47253,7 +47508,7 @@ entities: pos: 33.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1149 components: - type: Transform @@ -47261,7 +47516,7 @@ entities: pos: 35.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1235 components: - type: Transform @@ -47275,7 +47530,7 @@ entities: pos: 31.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1330 components: - type: Transform @@ -47283,7 +47538,7 @@ entities: pos: 8.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1456 components: - type: Transform @@ -47291,7 +47546,7 @@ entities: pos: 17.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1506 components: - type: Transform @@ -47299,7 +47554,7 @@ entities: pos: 41.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1534 components: - type: Transform @@ -47307,7 +47562,7 @@ entities: pos: 62.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1685 components: - type: Transform @@ -47315,7 +47570,7 @@ entities: pos: 31.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1691 components: - type: Transform @@ -47323,7 +47578,7 @@ entities: pos: 18.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1698 components: - type: Transform @@ -47331,7 +47586,7 @@ entities: pos: 40.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1799 components: - type: Transform @@ -47339,7 +47594,7 @@ entities: pos: 12.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1807 components: - type: Transform @@ -47347,7 +47602,7 @@ entities: pos: 25.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1814 components: - type: Transform @@ -47355,7 +47610,7 @@ entities: pos: 11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1816 components: - type: Transform @@ -47363,7 +47618,7 @@ entities: pos: 11.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1819 components: - type: Transform @@ -47371,7 +47626,7 @@ entities: pos: 11.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1820 components: - type: Transform @@ -47379,7 +47634,7 @@ entities: pos: 11.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2073 components: - type: Transform @@ -47387,7 +47642,7 @@ entities: pos: 39.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2290 components: - type: Transform @@ -47395,7 +47650,7 @@ entities: pos: 40.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2383 components: - type: Transform @@ -47403,7 +47658,7 @@ entities: pos: 39.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3066 components: - type: Transform @@ -47411,7 +47666,7 @@ entities: pos: 67.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3518 components: - type: Transform @@ -47425,7 +47680,7 @@ entities: pos: 55.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3690 components: - type: Transform @@ -47433,7 +47688,7 @@ entities: pos: 62.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3780 components: - type: Transform @@ -47446,7 +47701,7 @@ entities: pos: 38.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3956 components: - type: Transform @@ -47461,7 +47716,7 @@ entities: pos: 44.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3961 components: - type: Transform @@ -47469,7 +47724,7 @@ entities: pos: 38.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4015 components: - type: Transform @@ -47477,7 +47732,7 @@ entities: pos: 32.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4016 components: - type: Transform @@ -47485,7 +47740,7 @@ entities: pos: 32.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4028 components: - type: Transform @@ -47493,7 +47748,7 @@ entities: pos: 30.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4050 components: - type: Transform @@ -47501,7 +47756,7 @@ entities: pos: 17.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4091 components: - type: Transform @@ -47509,7 +47764,7 @@ entities: pos: 10.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4097 components: - type: Transform @@ -47529,7 +47784,7 @@ entities: pos: 31.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4130 components: - type: Transform @@ -47537,14 +47792,14 @@ entities: pos: 45.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4219 components: - type: Transform pos: 41.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4362 components: - type: Transform @@ -47552,7 +47807,7 @@ entities: pos: 56.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4427 components: - type: Transform @@ -47583,7 +47838,7 @@ entities: pos: 32.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5010 components: - type: Transform @@ -47591,7 +47846,7 @@ entities: pos: 47.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5028 components: - type: Transform @@ -47605,7 +47860,7 @@ entities: pos: 46.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5109 components: - type: Transform @@ -47613,7 +47868,7 @@ entities: pos: 46.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5286 components: - type: Transform @@ -47621,14 +47876,14 @@ entities: pos: 7.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6428 components: - type: Transform pos: 32.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6489 components: - type: Transform @@ -47636,7 +47891,7 @@ entities: pos: 44.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6499 components: - type: Transform @@ -47644,7 +47899,7 @@ entities: pos: 42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6500 components: - type: Transform @@ -47652,7 +47907,7 @@ entities: pos: 46.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6521 components: - type: Transform @@ -47660,7 +47915,7 @@ entities: pos: 46.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6569 components: - type: Transform @@ -47668,7 +47923,7 @@ entities: pos: 42.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6777 components: - type: Transform @@ -47676,14 +47931,14 @@ entities: pos: 5.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7217 components: - type: Transform pos: 14.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8023 components: - type: Transform @@ -47691,7 +47946,7 @@ entities: pos: 16.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8205 components: - type: Transform @@ -47699,14 +47954,14 @@ entities: pos: 13.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8206 components: - type: Transform pos: 13.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8338 components: - type: Transform @@ -47714,7 +47969,7 @@ entities: pos: 26.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8599 components: - type: Transform @@ -47722,7 +47977,7 @@ entities: pos: 40.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8620 components: - type: Transform @@ -47730,7 +47985,7 @@ entities: pos: 35.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8621 components: - type: Transform @@ -47738,7 +47993,7 @@ entities: pos: 33.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8628 components: - type: Transform @@ -47746,14 +48001,14 @@ entities: pos: 38.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8662 components: - type: Transform pos: 47.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8663 components: - type: Transform @@ -47761,7 +48016,7 @@ entities: pos: 33.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9545 components: - type: Transform @@ -47769,7 +48024,7 @@ entities: pos: 28.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9547 components: - type: Transform @@ -47777,14 +48032,14 @@ entities: pos: 22.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9555 components: - type: Transform pos: 28.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9556 components: - type: Transform @@ -47792,7 +48047,7 @@ entities: pos: 28.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9572 components: - type: Transform @@ -47800,7 +48055,7 @@ entities: pos: 18.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10169 components: - type: Transform @@ -47808,7 +48063,7 @@ entities: pos: 9.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10200 components: - type: Transform @@ -47816,7 +48071,7 @@ entities: pos: 8.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10334 components: - type: Transform @@ -47824,7 +48079,7 @@ entities: pos: 47.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10335 components: - type: Transform @@ -47832,7 +48087,7 @@ entities: pos: 54.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10364 components: - type: Transform @@ -47840,7 +48095,7 @@ entities: pos: 50.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10382 components: - type: Transform @@ -47848,7 +48103,7 @@ entities: pos: 55.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10384 components: - type: Transform @@ -47856,7 +48111,7 @@ entities: pos: 63.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10399 components: - type: Transform @@ -47864,14 +48119,14 @@ entities: pos: 55.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10639 components: - type: Transform pos: 29.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10644 components: - type: Transform @@ -47879,7 +48134,7 @@ entities: pos: 36.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10645 components: - type: Transform @@ -47887,7 +48142,7 @@ entities: pos: 36.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10667 components: - type: Transform @@ -47900,7 +48155,7 @@ entities: pos: 65.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11579 components: - type: Transform @@ -47923,7 +48178,7 @@ entities: pos: 71.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11720 components: - type: Transform @@ -47931,7 +48186,7 @@ entities: pos: 64.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11721 components: - type: Transform @@ -47939,7 +48194,7 @@ entities: pos: 66.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11722 components: - type: Transform @@ -47947,7 +48202,7 @@ entities: pos: 66.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11765 components: - type: Transform @@ -47955,37 +48210,45 @@ entities: pos: 61.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11768 components: - type: Transform pos: 61.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11786 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-1.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11789 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-1.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11797 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11798 components: - type: Transform pos: 56.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11799 components: - type: Transform @@ -47993,7 +48256,7 @@ entities: pos: 56.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11954 components: - type: Transform @@ -48001,7 +48264,7 @@ entities: pos: 72.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11955 components: - type: Transform @@ -48009,7 +48272,7 @@ entities: pos: 73.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12858 components: - type: Transform @@ -48076,7 +48339,7 @@ entities: pos: 56.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13521 components: - type: Transform @@ -48084,7 +48347,7 @@ entities: pos: 56.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13549 components: - type: Transform @@ -48092,7 +48355,7 @@ entities: pos: 45.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13550 components: - type: Transform @@ -48100,7 +48363,7 @@ entities: pos: 46.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13993 components: - type: Transform @@ -48108,7 +48371,7 @@ entities: pos: -5.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13994 components: - type: Transform @@ -48116,7 +48379,7 @@ entities: pos: -6.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14010 components: - type: Transform @@ -48124,7 +48387,7 @@ entities: pos: -22.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14011 components: - type: Transform @@ -48132,7 +48395,7 @@ entities: pos: -24.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14059 components: - type: Transform @@ -48140,7 +48403,7 @@ entities: pos: -22.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14060 components: - type: Transform @@ -48148,7 +48411,7 @@ entities: pos: -24.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14381 components: - type: Transform @@ -48202,7 +48465,7 @@ entities: pos: 64.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14603 components: - type: Transform @@ -48210,14 +48473,14 @@ entities: pos: 67.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14604 components: - type: Transform pos: 69.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14605 components: - type: Transform @@ -48225,7 +48488,7 @@ entities: pos: 69.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14611 components: - type: Transform @@ -48233,7 +48496,7 @@ entities: pos: 72.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14617 components: - type: Transform @@ -48249,7 +48512,7 @@ entities: pos: 5.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14959 components: - type: Transform @@ -48257,7 +48520,7 @@ entities: pos: 5.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15241 components: - type: Transform @@ -48289,21 +48552,21 @@ entities: pos: 35.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 350 components: - type: Transform pos: 19.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 463 components: - type: Transform pos: 18.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3965 components: - type: Transform @@ -48317,98 +48580,110 @@ entities: pos: 55.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4770 components: - type: Transform pos: 12.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5169 components: - type: Transform pos: 72.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5181 components: - type: Transform pos: 25.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5200 components: - type: Transform pos: 42.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5240 components: - type: Transform pos: 44.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6520 components: - type: Transform pos: 46.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6623 components: - type: Transform pos: 35.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8581 components: - type: Transform pos: 39.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8589 components: - type: Transform pos: 40.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10054 components: - type: Transform pos: 59.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10374 components: - type: Transform pos: 58.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11732 components: - type: Transform pos: 60.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11787 components: - type: Transform pos: 57.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' +- proto: GasPipeSensor + entities: + - uid: 11796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: Label + currentLabel: Cryogenics - proto: GasPipeSensorDistribution entities: - uid: 4496 @@ -48417,7 +48692,7 @@ entities: pos: 31.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeSensorMixedAir entities: - uid: 6514 @@ -48426,6 +48701,8 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeSensorTEGCold entities: - uid: 4474 @@ -48454,7 +48731,7 @@ entities: pos: 30.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 26 @@ -48464,7 +48741,7 @@ entities: pos: 23.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 33 components: - type: Transform @@ -48472,21 +48749,21 @@ entities: pos: 12.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 53 components: - type: Transform pos: 19.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 68 components: - type: Transform pos: 33.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 74 components: - type: Transform @@ -48494,7 +48771,7 @@ entities: pos: 48.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 86 components: - type: Transform @@ -48502,7 +48779,7 @@ entities: pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 91 components: - type: Transform @@ -48510,14 +48787,14 @@ entities: pos: -1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 107 components: - type: Transform pos: 11.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 117 components: - type: Transform @@ -48525,7 +48802,7 @@ entities: pos: 9.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 121 components: - type: Transform @@ -48533,7 +48810,7 @@ entities: pos: 16.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 122 components: - type: Transform @@ -48541,7 +48818,7 @@ entities: pos: 17.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 143 components: - type: Transform @@ -48549,7 +48826,7 @@ entities: pos: 11.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 153 components: - type: Transform @@ -48557,7 +48834,7 @@ entities: pos: 11.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 168 components: - type: Transform @@ -48565,7 +48842,7 @@ entities: pos: 27.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 175 components: - type: Transform @@ -48573,7 +48850,7 @@ entities: pos: 6.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 234 components: - type: Transform @@ -48581,7 +48858,7 @@ entities: pos: 19.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 235 components: - type: Transform @@ -48589,7 +48866,7 @@ entities: pos: 9.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 236 components: - type: Transform @@ -48597,7 +48874,7 @@ entities: pos: 9.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 318 components: - type: Transform @@ -48605,28 +48882,28 @@ entities: pos: 45.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 352 components: - type: Transform pos: 3.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 353 components: - type: Transform pos: 3.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 354 components: - type: Transform pos: 3.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 373 components: - type: Transform @@ -48634,42 +48911,42 @@ entities: pos: -10.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 375 components: - type: Transform pos: 3.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 390 components: - type: Transform pos: 3.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 395 components: - type: Transform pos: 3.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 396 components: - type: Transform pos: 3.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 402 components: - type: Transform pos: 3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 425 components: - type: Transform @@ -48677,14 +48954,14 @@ entities: pos: 43.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 431 components: - type: Transform pos: 7.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 432 components: - type: Transform @@ -48692,7 +48969,7 @@ entities: pos: 44.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 436 components: - type: Transform @@ -48700,7 +48977,7 @@ entities: pos: 34.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 439 components: - type: Transform @@ -48708,7 +48985,7 @@ entities: pos: 31.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 440 components: - type: Transform @@ -48716,35 +48993,35 @@ entities: pos: 16.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 442 components: - type: Transform pos: 25.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 444 components: - type: Transform pos: 25.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 447 components: - type: Transform pos: 25.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 448 components: - type: Transform pos: 7.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 512 components: - type: Transform @@ -48752,7 +49029,7 @@ entities: pos: 12.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 583 components: - type: Transform @@ -48767,14 +49044,14 @@ entities: pos: 32.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 609 components: - type: Transform pos: 10.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 611 components: - type: Transform @@ -48782,7 +49059,7 @@ entities: pos: 11.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 617 components: - type: Transform @@ -48790,7 +49067,7 @@ entities: pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 666 components: - type: Transform @@ -48798,14 +49075,14 @@ entities: pos: 25.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 667 components: - type: Transform pos: 55.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 668 components: - type: Transform @@ -48813,7 +49090,7 @@ entities: pos: 24.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 670 components: - type: Transform @@ -48821,14 +49098,14 @@ entities: pos: 30.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 671 components: - type: Transform pos: 46.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 672 components: - type: Transform @@ -48836,13 +49113,15 @@ entities: pos: 29.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 678 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 695 components: - type: Transform @@ -48850,26 +49129,30 @@ entities: pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 743 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 755 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 817 components: - type: Transform pos: 42.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 818 components: - type: Transform @@ -48877,7 +49160,7 @@ entities: pos: 32.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 820 components: - type: Transform @@ -48885,28 +49168,28 @@ entities: pos: 28.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 825 components: - type: Transform pos: 42.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 833 components: - type: Transform pos: 42.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 835 components: - type: Transform pos: 42.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 871 components: - type: Transform @@ -48920,7 +49203,7 @@ entities: pos: 27.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 888 components: - type: Transform @@ -48928,7 +49211,7 @@ entities: pos: 27.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 890 components: - type: Transform @@ -48936,7 +49219,7 @@ entities: pos: 27.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 893 components: - type: Transform @@ -48944,7 +49227,7 @@ entities: pos: 27.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 894 components: - type: Transform @@ -48952,7 +49235,7 @@ entities: pos: 27.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 896 components: - type: Transform @@ -48960,7 +49243,7 @@ entities: pos: 21.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 897 components: - type: Transform @@ -48968,7 +49251,7 @@ entities: pos: 20.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 898 components: - type: Transform @@ -48976,7 +49259,7 @@ entities: pos: 27.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 899 components: - type: Transform @@ -48990,7 +49273,7 @@ entities: pos: 49.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 902 components: - type: Transform @@ -49021,7 +49304,7 @@ entities: pos: 25.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 908 components: - type: Transform @@ -49029,7 +49312,7 @@ entities: pos: 27.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 910 components: - type: Transform @@ -49037,7 +49320,7 @@ entities: pos: 28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 911 components: - type: Transform @@ -49045,21 +49328,21 @@ entities: pos: 29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 912 components: - type: Transform pos: 25.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 914 components: - type: Transform pos: 25.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 923 components: - type: Transform @@ -49078,7 +49361,7 @@ entities: pos: 25.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 946 components: - type: Transform @@ -49098,21 +49381,21 @@ entities: pos: -8.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1019 components: - type: Transform pos: 25.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1020 components: - type: Transform pos: 25.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1037 components: - type: Transform @@ -49120,7 +49403,7 @@ entities: pos: 37.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1038 components: - type: Transform @@ -49128,14 +49411,14 @@ entities: pos: 36.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1043 components: - type: Transform pos: 25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1044 components: - type: Transform @@ -49143,7 +49426,7 @@ entities: pos: 37.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1051 components: - type: Transform @@ -49151,7 +49434,7 @@ entities: pos: -7.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1105 components: - type: Transform @@ -49159,7 +49442,7 @@ entities: pos: -7.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1106 components: - type: Transform @@ -49167,7 +49450,7 @@ entities: pos: 41.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1107 components: - type: Transform @@ -49175,7 +49458,7 @@ entities: pos: 14.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1108 components: - type: Transform @@ -49183,7 +49466,7 @@ entities: pos: -6.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1157 components: - type: Transform @@ -49191,7 +49474,7 @@ entities: pos: 10.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1158 components: - type: Transform @@ -49199,7 +49482,7 @@ entities: pos: 7.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1181 components: - type: Transform @@ -49207,7 +49490,7 @@ entities: pos: 12.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1183 components: - type: Transform @@ -49215,7 +49498,7 @@ entities: pos: 13.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1206 components: - type: Transform @@ -49223,14 +49506,14 @@ entities: pos: 18.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1207 components: - type: Transform pos: 25.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1212 components: - type: Transform @@ -49238,7 +49521,7 @@ entities: pos: 15.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1213 components: - type: Transform @@ -49246,7 +49529,7 @@ entities: pos: 8.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1214 components: - type: Transform @@ -49254,7 +49537,7 @@ entities: pos: 10.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1217 components: - type: Transform @@ -49269,7 +49552,7 @@ entities: pos: 46.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1224 components: - type: Transform @@ -49293,7 +49576,7 @@ entities: pos: 31.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1237 components: - type: Transform @@ -49343,21 +49626,21 @@ entities: pos: 39.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1328 components: - type: Transform pos: 7.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1329 components: - type: Transform pos: 7.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1335 components: - type: Transform @@ -49365,7 +49648,7 @@ entities: pos: -11.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1346 components: - type: Transform @@ -49378,7 +49661,7 @@ entities: pos: 31.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1373 components: - type: Transform @@ -49403,14 +49686,14 @@ entities: pos: 31.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1488 components: - type: Transform pos: 31.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1489 components: - type: Transform @@ -49418,7 +49701,7 @@ entities: pos: 30.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1490 components: - type: Transform @@ -49426,7 +49709,7 @@ entities: pos: 31.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1521 components: - type: Transform @@ -49434,14 +49717,14 @@ entities: pos: 22.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1528 components: - type: Transform pos: 42.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1538 components: - type: Transform @@ -49449,7 +49732,7 @@ entities: pos: 30.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1541 components: - type: Transform @@ -49457,7 +49740,7 @@ entities: pos: 29.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1548 components: - type: Transform @@ -49476,14 +49759,14 @@ entities: pos: 55.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1562 components: - type: Transform pos: 55.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1564 components: - type: Transform @@ -49491,7 +49774,7 @@ entities: pos: 58.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1572 components: - type: Transform @@ -49499,7 +49782,7 @@ entities: pos: 27.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1573 components: - type: Transform @@ -49507,7 +49790,7 @@ entities: pos: 26.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1574 components: - type: Transform @@ -49515,7 +49798,7 @@ entities: pos: 25.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1594 components: - type: Transform @@ -49523,7 +49806,7 @@ entities: pos: 24.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1595 components: - type: Transform @@ -49531,7 +49814,7 @@ entities: pos: 23.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1600 components: - type: Transform @@ -49539,7 +49822,7 @@ entities: pos: 21.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1601 components: - type: Transform @@ -49547,15 +49830,7 @@ entities: pos: 20.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1603 components: - type: Transform @@ -49563,56 +49838,56 @@ entities: pos: 18.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1604 components: - type: Transform pos: 17.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1606 components: - type: Transform pos: 17.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1607 components: - type: Transform pos: 17.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1608 components: - type: Transform pos: 17.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1609 components: - type: Transform pos: 17.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1610 components: - type: Transform pos: 17.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1611 components: - type: Transform pos: 17.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1612 components: - type: Transform @@ -49620,7 +49895,7 @@ entities: pos: 18.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1620 components: - type: Transform @@ -49628,7 +49903,7 @@ entities: pos: 25.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1621 components: - type: Transform @@ -49636,7 +49911,7 @@ entities: pos: 24.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1624 components: - type: Transform @@ -49644,7 +49919,7 @@ entities: pos: 19.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1631 components: - type: Transform @@ -49652,7 +49927,7 @@ entities: pos: 21.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1632 components: - type: Transform @@ -49660,7 +49935,7 @@ entities: pos: 21.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1633 components: - type: Transform @@ -49668,7 +49943,7 @@ entities: pos: 20.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1636 components: - type: Transform @@ -49676,56 +49951,56 @@ entities: pos: 19.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1654 components: - type: Transform pos: 33.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1666 components: - type: Transform pos: 18.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1667 components: - type: Transform pos: 18.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1668 components: - type: Transform pos: 18.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1669 components: - type: Transform pos: 18.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1670 components: - type: Transform pos: 18.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1671 components: - type: Transform pos: 18.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1672 components: - type: Transform @@ -49733,7 +50008,7 @@ entities: pos: 19.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1676 components: - type: Transform @@ -49741,7 +50016,7 @@ entities: pos: 22.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1677 components: - type: Transform @@ -49749,7 +50024,7 @@ entities: pos: 23.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1679 components: - type: Transform @@ -49757,7 +50032,7 @@ entities: pos: 25.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1680 components: - type: Transform @@ -49765,7 +50040,7 @@ entities: pos: 26.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1681 components: - type: Transform @@ -49773,7 +50048,7 @@ entities: pos: 27.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1682 components: - type: Transform @@ -49781,7 +50056,7 @@ entities: pos: 23.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1683 components: - type: Transform @@ -49789,7 +50064,7 @@ entities: pos: 28.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1684 components: - type: Transform @@ -49797,7 +50072,7 @@ entities: pos: 29.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1686 components: - type: Transform @@ -49805,7 +50080,7 @@ entities: pos: 22.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1687 components: - type: Transform @@ -49813,7 +50088,7 @@ entities: pos: 21.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1689 components: - type: Transform @@ -49821,7 +50096,7 @@ entities: pos: 20.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1693 components: - type: Transform @@ -49829,7 +50104,7 @@ entities: pos: 23.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1696 components: - type: Transform @@ -49837,112 +50112,112 @@ entities: pos: 24.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1719 components: - type: Transform pos: 25.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1730 components: - type: Transform pos: 25.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1749 components: - type: Transform pos: 25.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1762 components: - type: Transform pos: 25.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1764 components: - type: Transform pos: 25.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1769 components: - type: Transform pos: 25.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1770 components: - type: Transform pos: 25.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1771 components: - type: Transform pos: 25.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1772 components: - type: Transform pos: 25.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1774 components: - type: Transform pos: 25.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1800 components: - type: Transform pos: 25.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1801 components: - type: Transform pos: 25.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1803 components: - type: Transform pos: 25.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1804 components: - type: Transform pos: 25.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1805 components: - type: Transform pos: 25.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1822 components: - type: Transform @@ -49950,7 +50225,7 @@ entities: pos: 24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1823 components: - type: Transform @@ -49958,7 +50233,7 @@ entities: pos: 23.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1824 components: - type: Transform @@ -49966,7 +50241,7 @@ entities: pos: 22.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1825 components: - type: Transform @@ -49974,7 +50249,7 @@ entities: pos: 21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1826 components: - type: Transform @@ -49982,7 +50257,7 @@ entities: pos: 20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1827 components: - type: Transform @@ -49990,7 +50265,7 @@ entities: pos: 19.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1829 components: - type: Transform @@ -49998,7 +50273,7 @@ entities: pos: 18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1830 components: - type: Transform @@ -50006,7 +50281,7 @@ entities: pos: 17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1832 components: - type: Transform @@ -50014,7 +50289,7 @@ entities: pos: 15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1834 components: - type: Transform @@ -50022,7 +50297,7 @@ entities: pos: 13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1835 components: - type: Transform @@ -50030,7 +50305,7 @@ entities: pos: 12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1836 components: - type: Transform @@ -50038,7 +50313,7 @@ entities: pos: 10.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1837 components: - type: Transform @@ -50046,7 +50321,7 @@ entities: pos: 9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1839 components: - type: Transform @@ -50054,7 +50329,7 @@ entities: pos: 7.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1840 components: - type: Transform @@ -50062,7 +50337,7 @@ entities: pos: 6.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1841 components: - type: Transform @@ -50070,7 +50345,7 @@ entities: pos: 5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1844 components: - type: Transform @@ -50078,7 +50353,7 @@ entities: pos: -3.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1845 components: - type: Transform @@ -50086,7 +50361,7 @@ entities: pos: -2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1846 components: - type: Transform @@ -50094,7 +50369,7 @@ entities: pos: -1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1848 components: - type: Transform @@ -50102,7 +50377,7 @@ entities: pos: 0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1849 components: - type: Transform @@ -50110,7 +50385,7 @@ entities: pos: 1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1850 components: - type: Transform @@ -50118,7 +50393,7 @@ entities: pos: 2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1860 components: - type: Transform @@ -50126,7 +50401,7 @@ entities: pos: 4.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1861 components: - type: Transform @@ -50134,7 +50409,7 @@ entities: pos: 5.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1862 components: - type: Transform @@ -50142,7 +50417,7 @@ entities: pos: 6.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1863 components: - type: Transform @@ -50150,7 +50425,7 @@ entities: pos: 7.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1864 components: - type: Transform @@ -50158,7 +50433,7 @@ entities: pos: 8.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1867 components: - type: Transform @@ -50166,7 +50441,7 @@ entities: pos: 10.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1868 components: - type: Transform @@ -50174,7 +50449,7 @@ entities: pos: 11.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1869 components: - type: Transform @@ -50182,7 +50457,7 @@ entities: pos: 12.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1870 components: - type: Transform @@ -50190,7 +50465,7 @@ entities: pos: 13.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1871 components: - type: Transform @@ -50198,7 +50473,7 @@ entities: pos: 14.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1872 components: - type: Transform @@ -50206,7 +50481,7 @@ entities: pos: 15.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1873 components: - type: Transform @@ -50214,7 +50489,7 @@ entities: pos: 16.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1874 components: - type: Transform @@ -50222,28 +50497,28 @@ entities: pos: 17.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1875 components: - type: Transform pos: 18.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1876 components: - type: Transform pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1878 components: - type: Transform pos: 18.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1879 components: - type: Transform @@ -50251,7 +50526,7 @@ entities: pos: 19.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1880 components: - type: Transform @@ -50259,7 +50534,7 @@ entities: pos: 20.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1881 components: - type: Transform @@ -50267,7 +50542,7 @@ entities: pos: 21.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1882 components: - type: Transform @@ -50275,7 +50550,7 @@ entities: pos: 22.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1883 components: - type: Transform @@ -50283,7 +50558,7 @@ entities: pos: 23.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1884 components: - type: Transform @@ -50291,7 +50566,7 @@ entities: pos: 24.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1885 components: - type: Transform @@ -50299,7 +50574,7 @@ entities: pos: 26.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1886 components: - type: Transform @@ -50307,7 +50582,7 @@ entities: pos: 27.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1887 components: - type: Transform @@ -50315,7 +50590,7 @@ entities: pos: 28.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1888 components: - type: Transform @@ -50323,7 +50598,7 @@ entities: pos: 29.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1890 components: - type: Transform @@ -50331,7 +50606,7 @@ entities: pos: 31.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1891 components: - type: Transform @@ -50339,7 +50614,7 @@ entities: pos: 32.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1892 components: - type: Transform @@ -50347,7 +50622,7 @@ entities: pos: 33.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1893 components: - type: Transform @@ -50355,7 +50630,7 @@ entities: pos: 34.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1894 components: - type: Transform @@ -50363,7 +50638,7 @@ entities: pos: 35.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1895 components: - type: Transform @@ -50371,7 +50646,7 @@ entities: pos: 36.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1896 components: - type: Transform @@ -50379,7 +50654,7 @@ entities: pos: 37.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1897 components: - type: Transform @@ -50387,7 +50662,7 @@ entities: pos: 38.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1898 components: - type: Transform @@ -50395,7 +50670,7 @@ entities: pos: 39.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1899 components: - type: Transform @@ -50403,7 +50678,7 @@ entities: pos: 44.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1900 components: - type: Transform @@ -50411,7 +50686,7 @@ entities: pos: 43.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1901 components: - type: Transform @@ -50419,7 +50694,7 @@ entities: pos: 42.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1903 components: - type: Transform @@ -50427,7 +50702,7 @@ entities: pos: 40.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1904 components: - type: Transform @@ -50435,7 +50710,7 @@ entities: pos: 40.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1905 components: - type: Transform @@ -50443,7 +50718,7 @@ entities: pos: 40.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1906 components: - type: Transform @@ -50451,7 +50726,7 @@ entities: pos: 40.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1907 components: - type: Transform @@ -50459,7 +50734,7 @@ entities: pos: 40.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1908 components: - type: Transform @@ -50467,7 +50742,7 @@ entities: pos: 40.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1909 components: - type: Transform @@ -50475,7 +50750,7 @@ entities: pos: 40.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1912 components: - type: Transform @@ -50483,7 +50758,7 @@ entities: pos: 40.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1913 components: - type: Transform @@ -50491,7 +50766,7 @@ entities: pos: 40.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1914 components: - type: Transform @@ -50499,7 +50774,7 @@ entities: pos: 40.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1915 components: - type: Transform @@ -50507,7 +50782,7 @@ entities: pos: 40.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1916 components: - type: Transform @@ -50515,7 +50790,7 @@ entities: pos: 51.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1917 components: - type: Transform @@ -50523,7 +50798,7 @@ entities: pos: 50.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1918 components: - type: Transform @@ -50531,35 +50806,35 @@ entities: pos: 49.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1919 components: - type: Transform pos: 42.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1920 components: - type: Transform pos: 42.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1921 components: - type: Transform pos: 42.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1934 components: - type: Transform pos: 42.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1935 components: - type: Transform @@ -50567,7 +50842,7 @@ entities: pos: 5.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1937 components: - type: Transform @@ -50575,7 +50850,7 @@ entities: pos: 22.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1938 components: - type: Transform @@ -50594,7 +50869,7 @@ entities: pos: 44.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1944 components: - type: Transform @@ -50608,7 +50883,7 @@ entities: pos: 5.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1960 components: - type: Transform @@ -50616,14 +50891,14 @@ entities: pos: 5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1961 components: - type: Transform pos: 21.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1962 components: - type: Transform @@ -50631,7 +50906,7 @@ entities: pos: 24.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1963 components: - type: Transform @@ -50639,7 +50914,7 @@ entities: pos: 27.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1964 components: - type: Transform @@ -50647,7 +50922,7 @@ entities: pos: 29.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1965 components: - type: Transform @@ -50655,7 +50930,7 @@ entities: pos: 27.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1966 components: - type: Transform @@ -50663,7 +50938,7 @@ entities: pos: 27.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1969 components: - type: Transform @@ -50671,7 +50946,7 @@ entities: pos: 43.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1970 components: - type: Transform @@ -50679,7 +50954,7 @@ entities: pos: 33.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1971 components: - type: Transform @@ -50687,7 +50962,7 @@ entities: pos: 27.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2003 components: - type: Transform @@ -50695,7 +50970,7 @@ entities: pos: 8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2021 components: - type: Transform @@ -50703,21 +50978,21 @@ entities: pos: -6.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2029 components: - type: Transform pos: 11.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2032 components: - type: Transform pos: 11.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2052 components: - type: Transform @@ -50725,21 +51000,21 @@ entities: pos: 36.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2062 components: - type: Transform pos: 10.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2063 components: - type: Transform pos: 25.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2071 components: - type: Transform @@ -50753,7 +51028,7 @@ entities: pos: 41.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2116 components: - type: Transform @@ -50767,7 +51042,7 @@ entities: pos: 40.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2135 components: - type: Transform @@ -50775,7 +51050,7 @@ entities: pos: 7.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2139 components: - type: Transform @@ -50783,7 +51058,7 @@ entities: pos: 38.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2143 components: - type: Transform @@ -50797,7 +51072,7 @@ entities: pos: 8.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2148 components: - type: Transform @@ -50811,7 +51086,7 @@ entities: pos: 50.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2216 components: - type: Transform @@ -50819,7 +51094,7 @@ entities: pos: 40.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2289 components: - type: Transform @@ -50827,14 +51102,14 @@ entities: pos: 43.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2302 components: - type: Transform pos: 40.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2304 components: - type: Transform @@ -50842,35 +51117,35 @@ entities: pos: 37.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2305 components: - type: Transform pos: 40.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2316 components: - type: Transform pos: 25.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2317 components: - type: Transform pos: 25.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2322 components: - type: Transform pos: 25.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2326 components: - type: Transform @@ -50878,7 +51153,7 @@ entities: pos: 42.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2381 components: - type: Transform @@ -50886,7 +51161,7 @@ entities: pos: 43.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2384 components: - type: Transform @@ -50894,7 +51169,7 @@ entities: pos: 26.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2385 components: - type: Transform @@ -50902,7 +51177,7 @@ entities: pos: 27.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2386 components: - type: Transform @@ -50910,7 +51185,7 @@ entities: pos: 30.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2388 components: - type: Transform @@ -50918,14 +51193,14 @@ entities: pos: 29.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2396 components: - type: Transform pos: 25.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2397 components: - type: Transform @@ -50933,7 +51208,7 @@ entities: pos: 31.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2398 components: - type: Transform @@ -50941,7 +51216,7 @@ entities: pos: 5.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2399 components: - type: Transform @@ -50949,7 +51224,7 @@ entities: pos: 9.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2412 components: - type: Transform @@ -50957,7 +51232,7 @@ entities: pos: 27.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2413 components: - type: Transform @@ -50965,7 +51240,7 @@ entities: pos: 27.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2414 components: - type: Transform @@ -50978,14 +51253,14 @@ entities: pos: 42.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2416 components: - type: Transform pos: 42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2417 components: - type: Transform @@ -50993,7 +51268,7 @@ entities: pos: 51.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2418 components: - type: Transform @@ -51001,7 +51276,7 @@ entities: pos: 27.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2419 components: - type: Transform @@ -51009,7 +51284,7 @@ entities: pos: 13.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2423 components: - type: Transform @@ -51017,7 +51292,7 @@ entities: pos: 46.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2436 components: - type: Transform @@ -51025,21 +51300,21 @@ entities: pos: 47.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2452 components: - type: Transform pos: 27.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2453 components: - type: Transform pos: 27.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2454 components: - type: Transform @@ -51047,7 +51322,7 @@ entities: pos: 33.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2455 components: - type: Transform @@ -51055,7 +51330,7 @@ entities: pos: 32.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2472 components: - type: Transform @@ -51063,7 +51338,7 @@ entities: pos: 27.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2484 components: - type: Transform @@ -51071,7 +51346,7 @@ entities: pos: 42.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2487 components: - type: Transform @@ -51079,21 +51354,21 @@ entities: pos: 35.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2488 components: - type: Transform pos: 25.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2490 components: - type: Transform pos: 25.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2530 components: - type: Transform @@ -51101,7 +51376,7 @@ entities: pos: 31.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2532 components: - type: Transform @@ -51109,21 +51384,21 @@ entities: pos: 28.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2546 components: - type: Transform pos: 25.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2560 components: - type: Transform pos: 25.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2561 components: - type: Transform @@ -51131,7 +51406,7 @@ entities: pos: 17.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2667 components: - type: Transform @@ -51139,7 +51414,7 @@ entities: pos: 7.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2718 components: - type: Transform @@ -51159,7 +51434,7 @@ entities: pos: 27.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2751 components: - type: Transform @@ -51185,7 +51460,7 @@ entities: pos: -11.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3216 components: - type: Transform @@ -51193,7 +51468,7 @@ entities: pos: 40.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3217 components: - type: Transform @@ -51201,7 +51476,7 @@ entities: pos: 41.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3223 components: - type: Transform @@ -51209,14 +51484,14 @@ entities: pos: 44.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3252 components: - type: Transform pos: 46.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3257 components: - type: Transform @@ -51224,7 +51499,7 @@ entities: pos: 49.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3289 components: - type: Transform @@ -51274,7 +51549,7 @@ entities: pos: 43.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3553 components: - type: Transform @@ -51282,7 +51557,7 @@ entities: pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3592 components: - type: Transform @@ -51290,7 +51565,7 @@ entities: pos: 27.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3595 components: - type: Transform @@ -51298,7 +51573,7 @@ entities: pos: 23.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3657 components: - type: Transform @@ -51306,7 +51581,7 @@ entities: pos: 25.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3686 components: - type: Transform @@ -51314,7 +51589,7 @@ entities: pos: 22.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3695 components: - type: Transform @@ -51322,14 +51597,14 @@ entities: pos: 55.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3704 components: - type: Transform pos: 21.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3736 components: - type: Transform @@ -51337,7 +51612,7 @@ entities: pos: 28.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3775 components: - type: Transform @@ -51345,7 +51620,7 @@ entities: pos: 26.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3835 components: - type: Transform @@ -51353,7 +51628,7 @@ entities: pos: 40.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3843 components: - type: Transform @@ -51361,7 +51636,7 @@ entities: pos: 44.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3845 components: - type: Transform @@ -51369,7 +51644,7 @@ entities: pos: 38.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3846 components: - type: Transform @@ -51377,7 +51652,7 @@ entities: pos: 34.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3947 components: - type: Transform @@ -51385,7 +51660,7 @@ entities: pos: 41.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3952 components: - type: Transform @@ -51393,7 +51668,7 @@ entities: pos: 45.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3954 components: - type: Transform @@ -51416,7 +51691,7 @@ entities: pos: 37.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3959 components: - type: Transform @@ -51424,7 +51699,7 @@ entities: pos: 39.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3962 components: - type: Transform @@ -51432,7 +51707,7 @@ entities: pos: 42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3963 components: - type: Transform @@ -51440,7 +51715,7 @@ entities: pos: 40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3974 components: - type: Transform @@ -51448,7 +51723,7 @@ entities: pos: 5.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3975 components: - type: Transform @@ -51456,7 +51731,7 @@ entities: pos: 27.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3976 components: - type: Transform @@ -51464,7 +51739,7 @@ entities: pos: 5.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3997 components: - type: Transform @@ -51472,7 +51747,7 @@ entities: pos: 5.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4003 components: - type: Transform @@ -51480,7 +51755,7 @@ entities: pos: 5.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4004 components: - type: Transform @@ -51488,7 +51763,7 @@ entities: pos: 5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4007 components: - type: Transform @@ -51496,14 +51771,14 @@ entities: pos: 36.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4009 components: - type: Transform pos: 19.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4013 components: - type: Transform @@ -51511,14 +51786,14 @@ entities: pos: 27.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4022 components: - type: Transform pos: 19.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4023 components: - type: Transform @@ -51526,7 +51801,7 @@ entities: pos: 18.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4024 components: - type: Transform @@ -51534,7 +51809,7 @@ entities: pos: 17.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4025 components: - type: Transform @@ -51542,7 +51817,7 @@ entities: pos: 16.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4032 components: - type: Transform @@ -51550,7 +51825,7 @@ entities: pos: 28.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4043 components: - type: Transform @@ -51558,7 +51833,7 @@ entities: pos: 6.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4045 components: - type: Transform @@ -51566,7 +51841,7 @@ entities: pos: -3.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4048 components: - type: Transform @@ -51574,7 +51849,7 @@ entities: pos: 48.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4058 components: - type: Transform @@ -51582,7 +51857,7 @@ entities: pos: 29.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4060 components: - type: Transform @@ -51590,7 +51865,7 @@ entities: pos: 28.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4062 components: - type: Transform @@ -51598,7 +51873,7 @@ entities: pos: 34.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4063 components: - type: Transform @@ -51606,7 +51881,7 @@ entities: pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4064 components: - type: Transform @@ -51614,7 +51889,7 @@ entities: pos: 31.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4065 components: - type: Transform @@ -51622,7 +51897,7 @@ entities: pos: 32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4067 components: - type: Transform @@ -51630,14 +51905,14 @@ entities: pos: 35.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4068 components: - type: Transform pos: 25.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4069 components: - type: Transform @@ -51645,7 +51920,7 @@ entities: pos: 30.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4070 components: - type: Transform @@ -51653,7 +51928,7 @@ entities: pos: 45.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4072 components: - type: Transform @@ -51661,7 +51936,7 @@ entities: pos: 31.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4073 components: - type: Transform @@ -51669,7 +51944,7 @@ entities: pos: 8.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4080 components: - type: Transform @@ -51695,14 +51970,14 @@ entities: pos: 33.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4085 components: - type: Transform pos: 19.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4087 components: - type: Transform @@ -51734,7 +52009,7 @@ entities: pos: 30.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4104 components: - type: Transform @@ -51742,7 +52017,7 @@ entities: pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4105 components: - type: Transform @@ -51750,7 +52025,7 @@ entities: pos: 3.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4106 components: - type: Transform @@ -51758,7 +52033,7 @@ entities: pos: 4.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4108 components: - type: Transform @@ -51766,7 +52041,7 @@ entities: pos: 27.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4109 components: - type: Transform @@ -51774,7 +52049,7 @@ entities: pos: 27.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4111 components: - type: Transform @@ -51782,7 +52057,7 @@ entities: pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4114 components: - type: Transform @@ -51790,7 +52065,7 @@ entities: pos: 27.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4124 components: - type: Transform @@ -51798,7 +52073,7 @@ entities: pos: 27.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4125 components: - type: Transform @@ -51806,7 +52081,7 @@ entities: pos: 27.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4133 components: - type: Transform @@ -51814,7 +52089,7 @@ entities: pos: 42.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4135 components: - type: Transform @@ -51822,7 +52097,7 @@ entities: pos: 26.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4155 components: - type: Transform @@ -51830,7 +52105,7 @@ entities: pos: 27.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4159 components: - type: Transform @@ -51846,7 +52121,7 @@ entities: pos: 27.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4161 components: - type: Transform @@ -51854,7 +52129,7 @@ entities: pos: 27.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4162 components: - type: Transform @@ -51862,7 +52137,7 @@ entities: pos: 27.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4163 components: - type: Transform @@ -51870,7 +52145,7 @@ entities: pos: 27.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4164 components: - type: Transform @@ -51878,7 +52153,7 @@ entities: pos: 27.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4180 components: - type: Transform @@ -51886,14 +52161,14 @@ entities: pos: 27.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4184 components: - type: Transform pos: 46.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4185 components: - type: Transform @@ -51901,7 +52176,7 @@ entities: pos: -4.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4192 components: - type: Transform @@ -51909,7 +52184,7 @@ entities: pos: 27.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4193 components: - type: Transform @@ -51917,7 +52192,7 @@ entities: pos: 25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4194 components: - type: Transform @@ -51925,7 +52200,7 @@ entities: pos: 19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4195 components: - type: Transform @@ -51933,7 +52208,7 @@ entities: pos: 23.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4196 components: - type: Transform @@ -51941,7 +52216,7 @@ entities: pos: 18.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4197 components: - type: Transform @@ -51949,7 +52224,7 @@ entities: pos: 22.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4198 components: - type: Transform @@ -51957,7 +52232,7 @@ entities: pos: 17.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4200 components: - type: Transform @@ -51965,7 +52240,7 @@ entities: pos: 26.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4201 components: - type: Transform @@ -51973,21 +52248,21 @@ entities: pos: 27.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4202 components: - type: Transform pos: 42.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4203 components: - type: Transform pos: 42.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4205 components: - type: Transform @@ -51995,7 +52270,7 @@ entities: pos: 40.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4206 components: - type: Transform @@ -52003,7 +52278,7 @@ entities: pos: 38.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4207 components: - type: Transform @@ -52011,7 +52286,7 @@ entities: pos: 36.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4208 components: - type: Transform @@ -52019,7 +52294,7 @@ entities: pos: 46.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4209 components: - type: Transform @@ -52027,7 +52302,7 @@ entities: pos: 35.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4210 components: - type: Transform @@ -52035,7 +52310,7 @@ entities: pos: 33.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4211 components: - type: Transform @@ -52043,7 +52318,7 @@ entities: pos: 34.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4212 components: - type: Transform @@ -52051,7 +52326,7 @@ entities: pos: 31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4214 components: - type: Transform @@ -52059,7 +52334,7 @@ entities: pos: 29.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4216 components: - type: Transform @@ -52067,7 +52342,7 @@ entities: pos: 30.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4217 components: - type: Transform @@ -52075,7 +52350,7 @@ entities: pos: 28.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4221 components: - type: Transform @@ -52083,7 +52358,7 @@ entities: pos: 21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4222 components: - type: Transform @@ -52091,7 +52366,7 @@ entities: pos: 15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4223 components: - type: Transform @@ -52099,7 +52374,7 @@ entities: pos: 20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4224 components: - type: Transform @@ -52107,7 +52382,7 @@ entities: pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4225 components: - type: Transform @@ -52115,7 +52390,7 @@ entities: pos: 14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4226 components: - type: Transform @@ -52123,7 +52398,7 @@ entities: pos: 24.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4228 components: - type: Transform @@ -52131,7 +52406,7 @@ entities: pos: 27.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4231 components: - type: Transform @@ -52139,7 +52414,7 @@ entities: pos: 23.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4232 components: - type: Transform @@ -52147,7 +52422,7 @@ entities: pos: 24.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4233 components: - type: Transform @@ -52155,7 +52430,7 @@ entities: pos: 27.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4234 components: - type: Transform @@ -52163,7 +52438,7 @@ entities: pos: 25.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4235 components: - type: Transform @@ -52171,7 +52446,7 @@ entities: pos: 32.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4237 components: - type: Transform @@ -52179,7 +52454,7 @@ entities: pos: 45.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4238 components: - type: Transform @@ -52187,7 +52462,7 @@ entities: pos: 27.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4239 components: - type: Transform @@ -52195,7 +52470,7 @@ entities: pos: 27.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4240 components: - type: Transform @@ -52203,7 +52478,7 @@ entities: pos: 27.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4241 components: - type: Transform @@ -52211,7 +52486,7 @@ entities: pos: 37.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4242 components: - type: Transform @@ -52219,7 +52494,7 @@ entities: pos: 39.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4274 components: - type: Transform @@ -52227,7 +52502,7 @@ entities: pos: 27.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4281 components: - type: Transform @@ -52235,14 +52510,14 @@ entities: pos: 25.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4283 components: - type: Transform pos: 19.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4285 components: - type: Transform @@ -52250,7 +52525,7 @@ entities: pos: 39.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4286 components: - type: Transform @@ -52258,7 +52533,7 @@ entities: pos: 38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4287 components: - type: Transform @@ -52266,35 +52541,35 @@ entities: pos: 36.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4288 components: - type: Transform pos: 25.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4289 components: - type: Transform pos: 25.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4290 components: - type: Transform pos: 25.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4291 components: - type: Transform pos: 25.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4352 components: - type: Transform @@ -52302,7 +52577,7 @@ entities: pos: 35.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4353 components: - type: Transform @@ -52310,12 +52585,14 @@ entities: pos: 34.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4356 components: - type: Transform pos: 35.5,-33.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 4357 components: - type: Transform @@ -52338,7 +52615,7 @@ entities: pos: 49.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4420 components: - type: Transform @@ -52387,63 +52664,63 @@ entities: pos: 32.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4445 components: - type: Transform pos: 32.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4446 components: - type: Transform pos: 31.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4448 components: - type: Transform pos: 31.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4449 components: - type: Transform pos: 32.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4451 components: - type: Transform pos: 32.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4461 components: - type: Transform pos: 22.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4462 components: - type: Transform pos: 20.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4463 components: - type: Transform pos: 20.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4480 components: - type: Transform @@ -52480,28 +52757,28 @@ entities: pos: 7.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4907 components: - type: Transform pos: 7.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4970 components: - type: Transform pos: 27.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5009 components: - type: Transform pos: 55.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5023 components: - type: Transform @@ -52509,7 +52786,7 @@ entities: pos: 60.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5024 components: - type: Transform @@ -52517,7 +52794,7 @@ entities: pos: 59.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5025 components: - type: Transform @@ -52525,18 +52802,22 @@ entities: pos: 58.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5036 components: - type: Transform pos: 56.5,-0.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 5038 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 5040 components: - type: Transform @@ -52544,7 +52825,7 @@ entities: pos: 60.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5042 components: - type: Transform @@ -52552,7 +52833,7 @@ entities: pos: 58.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5044 components: - type: Transform @@ -52572,14 +52853,14 @@ entities: pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5083 components: - type: Transform pos: 57.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5102 components: - type: Transform @@ -52587,35 +52868,35 @@ entities: pos: 53.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5110 components: - type: Transform pos: 46.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5184 components: - type: Transform pos: 57.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5192 components: - type: Transform pos: 55.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5206 components: - type: Transform pos: 57.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5208 components: - type: Transform @@ -52645,21 +52926,21 @@ entities: pos: 26.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5302 components: - type: Transform pos: 7.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5303 components: - type: Transform pos: 55.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5429 components: - type: Transform @@ -52667,21 +52948,21 @@ entities: pos: 11.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5430 components: - type: Transform pos: 11.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5580 components: - type: Transform pos: 8.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5666 components: - type: Transform @@ -52689,15 +52970,7 @@ entities: pos: 17.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5668 components: - type: Transform @@ -52705,7 +52978,7 @@ entities: pos: 15.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5669 components: - type: Transform @@ -52713,7 +52986,7 @@ entities: pos: 14.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5670 components: - type: Transform @@ -52721,7 +52994,7 @@ entities: pos: 16.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5671 components: - type: Transform @@ -52729,7 +53002,7 @@ entities: pos: 15.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5672 components: - type: Transform @@ -52737,14 +53010,14 @@ entities: pos: 14.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5673 components: - type: Transform pos: 10.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5683 components: - type: Transform @@ -52759,7 +53032,7 @@ entities: pos: 48.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6338 components: - type: Transform @@ -52767,7 +53040,7 @@ entities: pos: 47.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6339 components: - type: Transform @@ -52775,7 +53048,7 @@ entities: pos: 47.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6425 components: - type: Transform @@ -52783,7 +53056,7 @@ entities: pos: 32.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6426 components: - type: Transform @@ -52791,7 +53064,7 @@ entities: pos: 32.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6479 components: - type: Transform @@ -52799,28 +53072,28 @@ entities: pos: 30.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6482 components: - type: Transform pos: 33.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6484 components: - type: Transform pos: 33.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6488 components: - type: Transform pos: 46.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6490 components: - type: Transform @@ -52828,21 +53101,21 @@ entities: pos: 43.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6498 components: - type: Transform pos: 44.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6503 components: - type: Transform pos: 27.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6507 components: - type: Transform @@ -52850,14 +53123,14 @@ entities: pos: 35.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6508 components: - type: Transform pos: 46.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6536 components: - type: Transform @@ -52865,119 +53138,119 @@ entities: pos: 47.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6550 components: - type: Transform pos: 33.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6551 components: - type: Transform pos: 33.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6553 components: - type: Transform pos: 33.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6554 components: - type: Transform pos: 33.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6556 components: - type: Transform pos: 35.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6557 components: - type: Transform pos: 35.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6559 components: - type: Transform pos: 35.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6560 components: - type: Transform pos: 35.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6561 components: - type: Transform pos: 35.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6562 components: - type: Transform pos: 35.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6563 components: - type: Transform pos: 35.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6564 components: - type: Transform pos: 35.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6566 components: - type: Transform pos: 44.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6567 components: - type: Transform pos: 46.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6575 components: - type: Transform pos: 42.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6576 components: - type: Transform pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6577 components: - type: Transform @@ -52985,7 +53258,7 @@ entities: pos: 40.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6579 components: - type: Transform @@ -52993,7 +53266,7 @@ entities: pos: 38.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6580 components: - type: Transform @@ -53001,7 +53274,7 @@ entities: pos: 37.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6581 components: - type: Transform @@ -53009,7 +53282,7 @@ entities: pos: 36.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6585 components: - type: Transform @@ -53017,7 +53290,7 @@ entities: pos: 34.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6586 components: - type: Transform @@ -53025,7 +53298,7 @@ entities: pos: 33.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6587 components: - type: Transform @@ -53033,7 +53306,7 @@ entities: pos: 32.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6589 components: - type: Transform @@ -53046,7 +53319,7 @@ entities: pos: 33.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6596 components: - type: Transform @@ -53054,7 +53327,7 @@ entities: pos: 34.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6597 components: - type: Transform @@ -53062,7 +53335,7 @@ entities: pos: 35.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6598 components: - type: Transform @@ -53070,7 +53343,7 @@ entities: pos: 36.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6599 components: - type: Transform @@ -53078,7 +53351,7 @@ entities: pos: 37.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6600 components: - type: Transform @@ -53086,7 +53359,7 @@ entities: pos: 38.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6602 components: - type: Transform @@ -53094,7 +53367,7 @@ entities: pos: 39.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6603 components: - type: Transform @@ -53102,7 +53375,7 @@ entities: pos: 39.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6604 components: - type: Transform @@ -53110,7 +53383,7 @@ entities: pos: 39.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6605 components: - type: Transform @@ -53118,7 +53391,7 @@ entities: pos: 39.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6606 components: - type: Transform @@ -53126,7 +53399,7 @@ entities: pos: 39.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6612 components: - type: Transform @@ -53134,7 +53407,7 @@ entities: pos: 27.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6613 components: - type: Transform @@ -53142,7 +53415,7 @@ entities: pos: 28.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6624 components: - type: Transform @@ -53150,7 +53423,7 @@ entities: pos: 35.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6625 components: - type: Transform @@ -53158,7 +53431,7 @@ entities: pos: 36.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6626 components: - type: Transform @@ -53166,7 +53439,7 @@ entities: pos: 37.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6672 components: - type: Transform @@ -53174,7 +53447,7 @@ entities: pos: 47.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6818 components: - type: Transform @@ -53182,7 +53455,7 @@ entities: pos: -6.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6835 components: - type: Transform @@ -53190,14 +53463,14 @@ entities: pos: -6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6844 components: - type: Transform pos: 7.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6859 components: - type: Transform @@ -53205,7 +53478,7 @@ entities: pos: -5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6865 components: - type: Transform @@ -53213,7 +53486,7 @@ entities: pos: 43.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6909 components: - type: Transform @@ -53221,28 +53494,28 @@ entities: pos: 6.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6915 components: - type: Transform pos: 10.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6916 components: - type: Transform pos: 10.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6917 components: - type: Transform pos: 10.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6918 components: - type: Transform @@ -53250,7 +53523,7 @@ entities: pos: 9.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6919 components: - type: Transform @@ -53258,35 +53531,35 @@ entities: pos: -6.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6946 components: - type: Transform pos: 18.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6947 components: - type: Transform pos: 18.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6948 components: - type: Transform pos: 18.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7006 components: - type: Transform pos: 27.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7170 components: - type: Transform @@ -53294,7 +53567,7 @@ entities: pos: 17.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7171 components: - type: Transform @@ -53302,7 +53575,7 @@ entities: pos: 14.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7172 components: - type: Transform @@ -53310,7 +53583,7 @@ entities: pos: 14.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7218 components: - type: Transform @@ -53318,7 +53591,7 @@ entities: pos: 13.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7220 components: - type: Transform @@ -53326,7 +53599,7 @@ entities: pos: 16.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7224 components: - type: Transform @@ -53334,7 +53607,7 @@ entities: pos: 15.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7242 components: - type: Transform @@ -53342,21 +53615,21 @@ entities: pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7247 components: - type: Transform pos: 9.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7249 components: - type: Transform pos: 9.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7410 components: - type: Transform @@ -53364,7 +53637,7 @@ entities: pos: -6.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7411 components: - type: Transform @@ -53372,7 +53645,7 @@ entities: pos: -6.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7413 components: - type: Transform @@ -53380,7 +53653,7 @@ entities: pos: -6.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7416 components: - type: Transform @@ -53388,7 +53661,7 @@ entities: pos: -6.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7418 components: - type: Transform @@ -53396,7 +53669,7 @@ entities: pos: -6.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7419 components: - type: Transform @@ -53404,7 +53677,7 @@ entities: pos: -6.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7420 components: - type: Transform @@ -53412,7 +53685,7 @@ entities: pos: -6.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7421 components: - type: Transform @@ -53420,7 +53693,7 @@ entities: pos: -5.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7422 components: - type: Transform @@ -53428,7 +53701,7 @@ entities: pos: -5.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7423 components: - type: Transform @@ -53436,7 +53709,7 @@ entities: pos: -5.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7424 components: - type: Transform @@ -53444,7 +53717,7 @@ entities: pos: -5.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7425 components: - type: Transform @@ -53452,7 +53725,7 @@ entities: pos: -5.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7426 components: - type: Transform @@ -53460,7 +53733,7 @@ entities: pos: -5.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7427 components: - type: Transform @@ -53468,7 +53741,7 @@ entities: pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7429 components: - type: Transform @@ -53476,7 +53749,7 @@ entities: pos: -5.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7430 components: - type: Transform @@ -53484,7 +53757,7 @@ entities: pos: -5.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7431 components: - type: Transform @@ -53492,7 +53765,7 @@ entities: pos: -5.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7432 components: - type: Transform @@ -53500,7 +53773,7 @@ entities: pos: -5.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7472 components: - type: Transform @@ -53508,7 +53781,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7483 components: - type: Transform @@ -53516,7 +53789,7 @@ entities: pos: -12.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7503 components: - type: Transform @@ -53524,7 +53797,7 @@ entities: pos: -14.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7504 components: - type: Transform @@ -53532,7 +53805,7 @@ entities: pos: -14.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7578 components: - type: Transform @@ -53540,14 +53813,14 @@ entities: pos: 62.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7745 components: - type: Transform pos: 8.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7758 components: - type: Transform @@ -53555,7 +53828,7 @@ entities: pos: 55.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7789 components: - type: Transform @@ -53563,7 +53836,7 @@ entities: pos: 58.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7790 components: - type: Transform @@ -53571,7 +53844,7 @@ entities: pos: 54.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7819 components: - type: Transform @@ -53594,7 +53867,7 @@ entities: pos: 7.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8012 components: - type: Transform @@ -53602,21 +53875,21 @@ entities: pos: 13.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8013 components: - type: Transform pos: 12.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8014 components: - type: Transform pos: 12.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8015 components: - type: Transform @@ -53624,42 +53897,42 @@ entities: pos: 14.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8018 components: - type: Transform pos: 16.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8019 components: - type: Transform pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8020 components: - type: Transform pos: 16.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8021 components: - type: Transform pos: 16.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8022 components: - type: Transform pos: 16.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8111 components: - type: Transform @@ -53667,7 +53940,7 @@ entities: pos: 8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8179 components: - type: Transform @@ -53675,7 +53948,7 @@ entities: pos: 25.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8180 components: - type: Transform @@ -53683,7 +53956,7 @@ entities: pos: 24.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8181 components: - type: Transform @@ -53691,7 +53964,7 @@ entities: pos: 23.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8183 components: - type: Transform @@ -53699,7 +53972,7 @@ entities: pos: 21.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8184 components: - type: Transform @@ -53707,7 +53980,7 @@ entities: pos: 20.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8186 components: - type: Transform @@ -53715,7 +53988,7 @@ entities: pos: 18.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8187 components: - type: Transform @@ -53723,7 +53996,7 @@ entities: pos: 17.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8188 components: - type: Transform @@ -53731,7 +54004,7 @@ entities: pos: 16.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8190 components: - type: Transform @@ -53739,7 +54012,7 @@ entities: pos: 14.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8191 components: - type: Transform @@ -53747,7 +54020,7 @@ entities: pos: 24.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8193 components: - type: Transform @@ -53755,7 +54028,7 @@ entities: pos: 22.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8194 components: - type: Transform @@ -53763,7 +54036,7 @@ entities: pos: 21.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8195 components: - type: Transform @@ -53771,7 +54044,7 @@ entities: pos: 20.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8196 components: - type: Transform @@ -53779,21 +54052,21 @@ entities: pos: 19.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8198 components: - type: Transform pos: 7.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8204 components: - type: Transform pos: 7.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8209 components: - type: Transform @@ -53801,7 +54074,7 @@ entities: pos: 12.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8210 components: - type: Transform @@ -53809,7 +54082,7 @@ entities: pos: 11.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8211 components: - type: Transform @@ -53817,28 +54090,28 @@ entities: pos: 10.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8213 components: - type: Transform pos: 8.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8214 components: - type: Transform pos: 8.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8215 components: - type: Transform pos: 8.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8224 components: - type: Transform @@ -53846,7 +54119,7 @@ entities: pos: 12.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8225 components: - type: Transform @@ -53854,7 +54127,7 @@ entities: pos: 11.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8226 components: - type: Transform @@ -53862,7 +54135,7 @@ entities: pos: 10.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8295 components: - type: Transform @@ -53870,7 +54143,7 @@ entities: pos: 24.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8297 components: - type: Transform @@ -53878,7 +54151,7 @@ entities: pos: 25.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8298 components: - type: Transform @@ -53886,7 +54159,7 @@ entities: pos: 26.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8300 components: - type: Transform @@ -53894,21 +54167,21 @@ entities: pos: 24.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8303 components: - type: Transform pos: 27.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8308 components: - type: Transform pos: 27.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8310 components: - type: Transform @@ -53916,21 +54189,21 @@ entities: pos: 34.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8318 components: - type: Transform pos: 27.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8321 components: - type: Transform pos: 27.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8322 components: - type: Transform @@ -53938,7 +54211,7 @@ entities: pos: 29.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8384 components: - type: Transform @@ -53946,7 +54219,7 @@ entities: pos: 47.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8397 components: - type: Transform @@ -53954,7 +54227,7 @@ entities: pos: 47.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8398 components: - type: Transform @@ -53962,7 +54235,7 @@ entities: pos: 47.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8399 components: - type: Transform @@ -53970,7 +54243,7 @@ entities: pos: 50.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8400 components: - type: Transform @@ -53978,7 +54251,7 @@ entities: pos: 45.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8401 components: - type: Transform @@ -53986,7 +54259,7 @@ entities: pos: 47.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8402 components: - type: Transform @@ -53994,7 +54267,7 @@ entities: pos: 42.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8403 components: - type: Transform @@ -54002,7 +54275,7 @@ entities: pos: 44.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8406 components: - type: Transform @@ -54010,7 +54283,7 @@ entities: pos: 51.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8409 components: - type: Transform @@ -54018,7 +54291,7 @@ entities: pos: 51.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8410 components: - type: Transform @@ -54026,7 +54299,7 @@ entities: pos: 52.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8549 components: - type: Transform @@ -54034,7 +54307,7 @@ entities: pos: 27.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8550 components: - type: Transform @@ -54042,7 +54315,7 @@ entities: pos: 28.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8551 components: - type: Transform @@ -54050,7 +54323,7 @@ entities: pos: 29.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8552 components: - type: Transform @@ -54058,7 +54331,7 @@ entities: pos: 30.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8553 components: - type: Transform @@ -54066,7 +54339,7 @@ entities: pos: 31.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8554 components: - type: Transform @@ -54074,7 +54347,7 @@ entities: pos: 32.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8556 components: - type: Transform @@ -54082,7 +54355,7 @@ entities: pos: 28.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8557 components: - type: Transform @@ -54090,7 +54363,7 @@ entities: pos: 29.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8558 components: - type: Transform @@ -54098,7 +54371,7 @@ entities: pos: 30.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8559 components: - type: Transform @@ -54106,7 +54379,7 @@ entities: pos: 31.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8560 components: - type: Transform @@ -54114,7 +54387,7 @@ entities: pos: 32.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8576 components: - type: Transform @@ -54122,7 +54395,7 @@ entities: pos: 35.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8577 components: - type: Transform @@ -54130,7 +54403,7 @@ entities: pos: 36.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8578 components: - type: Transform @@ -54138,7 +54411,7 @@ entities: pos: 37.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8579 components: - type: Transform @@ -54146,7 +54419,7 @@ entities: pos: 38.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8580 components: - type: Transform @@ -54154,7 +54427,7 @@ entities: pos: 39.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8582 components: - type: Transform @@ -54162,7 +54435,7 @@ entities: pos: 41.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8583 components: - type: Transform @@ -54170,7 +54443,7 @@ entities: pos: 42.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8586 components: - type: Transform @@ -54178,7 +54451,7 @@ entities: pos: 42.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8587 components: - type: Transform @@ -54186,7 +54459,7 @@ entities: pos: 41.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8588 components: - type: Transform @@ -54194,7 +54467,7 @@ entities: pos: 40.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8590 components: - type: Transform @@ -54202,7 +54475,7 @@ entities: pos: 38.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8591 components: - type: Transform @@ -54210,7 +54483,7 @@ entities: pos: 37.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8593 components: - type: Transform @@ -54218,7 +54491,7 @@ entities: pos: 36.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8600 components: - type: Transform @@ -54226,7 +54499,7 @@ entities: pos: 40.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8604 components: - type: Transform @@ -54234,7 +54507,7 @@ entities: pos: 40.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8605 components: - type: Transform @@ -54242,7 +54515,7 @@ entities: pos: 39.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8606 components: - type: Transform @@ -54250,70 +54523,70 @@ entities: pos: 39.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8611 components: - type: Transform pos: 33.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8612 components: - type: Transform pos: 33.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8613 components: - type: Transform pos: 33.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8614 components: - type: Transform pos: 35.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8615 components: - type: Transform pos: 35.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8616 components: - type: Transform pos: 35.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8617 components: - type: Transform pos: 35.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8618 components: - type: Transform pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8619 components: - type: Transform pos: 35.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8622 components: - type: Transform @@ -54321,7 +54594,7 @@ entities: pos: 34.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8623 components: - type: Transform @@ -54329,7 +54602,7 @@ entities: pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8624 components: - type: Transform @@ -54337,7 +54610,7 @@ entities: pos: 36.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8625 components: - type: Transform @@ -54345,7 +54618,7 @@ entities: pos: 37.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8626 components: - type: Transform @@ -54353,7 +54626,7 @@ entities: pos: 36.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8627 components: - type: Transform @@ -54361,7 +54634,7 @@ entities: pos: 37.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8631 components: - type: Transform @@ -54369,7 +54642,7 @@ entities: pos: 33.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8632 components: - type: Transform @@ -54377,7 +54650,7 @@ entities: pos: 33.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8633 components: - type: Transform @@ -54385,7 +54658,7 @@ entities: pos: 33.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8634 components: - type: Transform @@ -54393,7 +54666,7 @@ entities: pos: 33.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8636 components: - type: Transform @@ -54401,7 +54674,7 @@ entities: pos: 34.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8637 components: - type: Transform @@ -54409,7 +54682,7 @@ entities: pos: 35.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8638 components: - type: Transform @@ -54424,7 +54697,7 @@ entities: pos: 36.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8655 components: - type: Transform @@ -54432,7 +54705,7 @@ entities: pos: 37.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8660 components: - type: Transform @@ -54440,7 +54713,7 @@ entities: pos: 38.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8672 components: - type: Transform @@ -54448,7 +54721,7 @@ entities: pos: 47.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8673 components: - type: Transform @@ -54456,7 +54729,7 @@ entities: pos: 53.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8678 components: - type: Transform @@ -54464,7 +54737,7 @@ entities: pos: 42.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8680 components: - type: Transform @@ -54472,7 +54745,7 @@ entities: pos: 42.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8681 components: - type: Transform @@ -54480,7 +54753,7 @@ entities: pos: 41.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8683 components: - type: Transform @@ -54488,7 +54761,7 @@ entities: pos: 41.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8713 components: - type: Transform @@ -54496,7 +54769,7 @@ entities: pos: 54.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8924 components: - type: Transform @@ -54520,70 +54793,70 @@ entities: pos: 67.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9534 components: - type: Transform pos: 26.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9535 components: - type: Transform pos: 26.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9537 components: - type: Transform pos: 26.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9538 components: - type: Transform pos: 26.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9539 components: - type: Transform pos: 26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9540 components: - type: Transform pos: 26.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9541 components: - type: Transform pos: 25.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9542 components: - type: Transform pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9543 components: - type: Transform pos: 25.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9544 components: - type: Transform @@ -54591,7 +54864,7 @@ entities: pos: 27.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9548 components: - type: Transform @@ -54599,7 +54872,7 @@ entities: pos: 25.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9549 components: - type: Transform @@ -54607,7 +54880,7 @@ entities: pos: 24.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9550 components: - type: Transform @@ -54615,28 +54888,28 @@ entities: pos: 23.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9551 components: - type: Transform pos: 22.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9552 components: - type: Transform pos: 22.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9553 components: - type: Transform pos: 22.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9561 components: - type: Transform @@ -54644,7 +54917,7 @@ entities: pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9562 components: - type: Transform @@ -54652,7 +54925,7 @@ entities: pos: 24.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9563 components: - type: Transform @@ -54660,7 +54933,7 @@ entities: pos: 23.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9564 components: - type: Transform @@ -54668,7 +54941,7 @@ entities: pos: 22.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9566 components: - type: Transform @@ -54676,7 +54949,7 @@ entities: pos: 21.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9567 components: - type: Transform @@ -54684,7 +54957,7 @@ entities: pos: 20.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9568 components: - type: Transform @@ -54692,7 +54965,7 @@ entities: pos: 19.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9575 components: - type: Transform @@ -54700,7 +54973,7 @@ entities: pos: 18.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9576 components: - type: Transform @@ -54708,7 +54981,7 @@ entities: pos: 18.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9577 components: - type: Transform @@ -54716,7 +54989,7 @@ entities: pos: 18.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9578 components: - type: Transform @@ -54724,7 +54997,7 @@ entities: pos: 17.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9579 components: - type: Transform @@ -54732,7 +55005,7 @@ entities: pos: 16.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9580 components: - type: Transform @@ -54740,7 +55013,7 @@ entities: pos: 15.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9629 components: - type: Transform @@ -54748,7 +55021,7 @@ entities: pos: 44.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9630 components: - type: Transform @@ -54756,7 +55029,7 @@ entities: pos: 44.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9631 components: - type: Transform @@ -54764,7 +55037,7 @@ entities: pos: 47.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9632 components: - type: Transform @@ -54772,7 +55045,7 @@ entities: pos: 47.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9633 components: - type: Transform @@ -54780,7 +55053,7 @@ entities: pos: 47.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9634 components: - type: Transform @@ -54788,7 +55061,7 @@ entities: pos: 47.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9654 components: - type: Transform @@ -54801,7 +55074,7 @@ entities: pos: 52.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10046 components: - type: Transform @@ -54809,7 +55082,7 @@ entities: pos: 53.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10049 components: - type: Transform @@ -54817,7 +55090,7 @@ entities: pos: 59.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10050 components: - type: Transform @@ -54825,7 +55098,7 @@ entities: pos: 59.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10051 components: - type: Transform @@ -54833,7 +55106,7 @@ entities: pos: 59.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10052 components: - type: Transform @@ -54841,7 +55114,7 @@ entities: pos: 59.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10053 components: - type: Transform @@ -54849,7 +55122,7 @@ entities: pos: 59.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10055 components: - type: Transform @@ -54857,7 +55130,7 @@ entities: pos: 59.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10056 components: - type: Transform @@ -54865,7 +55138,7 @@ entities: pos: 59.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10058 components: - type: Transform @@ -54873,7 +55146,7 @@ entities: pos: 58.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10059 components: - type: Transform @@ -54881,7 +55154,7 @@ entities: pos: 57.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10060 components: - type: Transform @@ -54889,7 +55162,7 @@ entities: pos: 56.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10061 components: - type: Transform @@ -54897,7 +55170,7 @@ entities: pos: 55.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10063 components: - type: Transform @@ -54905,7 +55178,7 @@ entities: pos: 53.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10064 components: - type: Transform @@ -54913,7 +55186,7 @@ entities: pos: 52.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10065 components: - type: Transform @@ -54921,7 +55194,7 @@ entities: pos: 51.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10066 components: - type: Transform @@ -54929,7 +55202,7 @@ entities: pos: 50.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10067 components: - type: Transform @@ -54937,7 +55210,7 @@ entities: pos: 49.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10068 components: - type: Transform @@ -54945,7 +55218,7 @@ entities: pos: 48.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10076 components: - type: Transform @@ -54957,7 +55230,7 @@ entities: pos: 57.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10115 components: - type: Transform @@ -54965,56 +55238,56 @@ entities: pos: 57.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10117 components: - type: Transform pos: 77.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10127 components: - type: Transform pos: 55.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10134 components: - type: Transform pos: 57.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10145 components: - type: Transform pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10146 components: - type: Transform pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10147 components: - type: Transform pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10148 components: - type: Transform pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10149 components: - type: Transform @@ -55022,7 +55295,7 @@ entities: pos: 2.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10150 components: - type: Transform @@ -55030,7 +55303,7 @@ entities: pos: 3.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10151 components: - type: Transform @@ -55038,7 +55311,7 @@ entities: pos: 0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10152 components: - type: Transform @@ -55046,7 +55319,7 @@ entities: pos: -0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10153 components: - type: Transform @@ -55054,7 +55327,7 @@ entities: pos: 9.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10154 components: - type: Transform @@ -55062,7 +55335,7 @@ entities: pos: 9.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10155 components: - type: Transform @@ -55070,7 +55343,7 @@ entities: pos: 9.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10156 components: - type: Transform @@ -55078,7 +55351,7 @@ entities: pos: 9.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10158 components: - type: Transform @@ -55086,7 +55359,7 @@ entities: pos: 9.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10159 components: - type: Transform @@ -55094,7 +55367,7 @@ entities: pos: 9.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10160 components: - type: Transform @@ -55102,7 +55375,7 @@ entities: pos: 9.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10161 components: - type: Transform @@ -55110,7 +55383,7 @@ entities: pos: 9.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10162 components: - type: Transform @@ -55118,7 +55391,7 @@ entities: pos: 8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10164 components: - type: Transform @@ -55126,7 +55399,7 @@ entities: pos: 6.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10165 components: - type: Transform @@ -55134,7 +55407,7 @@ entities: pos: 5.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10166 components: - type: Transform @@ -55142,7 +55415,7 @@ entities: pos: 4.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10167 components: - type: Transform @@ -55150,7 +55423,7 @@ entities: pos: 3.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10168 components: - type: Transform @@ -55158,7 +55431,7 @@ entities: pos: 2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10175 components: - type: Transform @@ -55166,7 +55439,7 @@ entities: pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10176 components: - type: Transform @@ -55174,7 +55447,7 @@ entities: pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10177 components: - type: Transform @@ -55182,28 +55455,28 @@ entities: pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10183 components: - type: Transform pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10184 components: - type: Transform pos: 4.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10185 components: - type: Transform pos: 4.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10186 components: - type: Transform @@ -55211,7 +55484,7 @@ entities: pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10187 components: - type: Transform @@ -55219,7 +55492,7 @@ entities: pos: -4.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10188 components: - type: Transform @@ -55227,7 +55500,7 @@ entities: pos: -3.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10189 components: - type: Transform @@ -55235,7 +55508,7 @@ entities: pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10190 components: - type: Transform @@ -55243,7 +55516,7 @@ entities: pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10191 components: - type: Transform @@ -55251,7 +55524,7 @@ entities: pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10192 components: - type: Transform @@ -55259,56 +55532,56 @@ entities: pos: 9.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10193 components: - type: Transform pos: 8.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10194 components: - type: Transform pos: 8.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10195 components: - type: Transform pos: 8.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10196 components: - type: Transform pos: 8.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10197 components: - type: Transform pos: 8.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10198 components: - type: Transform pos: 8.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10199 components: - type: Transform pos: 8.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10209 components: - type: Transform @@ -55316,7 +55589,7 @@ entities: pos: 26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10210 components: - type: Transform @@ -55324,7 +55597,7 @@ entities: pos: 25.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10211 components: - type: Transform @@ -55332,7 +55605,7 @@ entities: pos: 24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10212 components: - type: Transform @@ -55340,7 +55613,7 @@ entities: pos: 24.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10213 components: - type: Transform @@ -55348,7 +55621,7 @@ entities: pos: 23.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10242 components: - type: Transform @@ -55356,7 +55629,7 @@ entities: pos: 26.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10243 components: - type: Transform @@ -55364,7 +55637,7 @@ entities: pos: 26.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10244 components: - type: Transform @@ -55372,7 +55645,7 @@ entities: pos: 26.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10245 components: - type: Transform @@ -55380,7 +55653,7 @@ entities: pos: 26.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10247 components: - type: Transform @@ -55388,28 +55661,28 @@ entities: pos: 26.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10323 components: - type: Transform pos: 54.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10324 components: - type: Transform pos: 54.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10325 components: - type: Transform pos: 54.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10326 components: - type: Transform @@ -55417,7 +55690,7 @@ entities: pos: 53.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10327 components: - type: Transform @@ -55425,7 +55698,7 @@ entities: pos: 52.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10328 components: - type: Transform @@ -55433,7 +55706,7 @@ entities: pos: 51.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10329 components: - type: Transform @@ -55441,7 +55714,7 @@ entities: pos: 50.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10330 components: - type: Transform @@ -55449,7 +55722,7 @@ entities: pos: 49.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10332 components: - type: Transform @@ -55457,7 +55730,7 @@ entities: pos: 47.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10333 components: - type: Transform @@ -55465,28 +55738,28 @@ entities: pos: 47.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10337 components: - type: Transform pos: 62.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10338 components: - type: Transform pos: 62.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10339 components: - type: Transform pos: 62.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10340 components: - type: Transform @@ -55494,7 +55767,7 @@ entities: pos: 61.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10341 components: - type: Transform @@ -55502,7 +55775,7 @@ entities: pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10342 components: - type: Transform @@ -55510,7 +55783,7 @@ entities: pos: 63.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10344 components: - type: Transform @@ -55518,7 +55791,7 @@ entities: pos: 65.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10345 components: - type: Transform @@ -55526,7 +55799,7 @@ entities: pos: 66.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10348 components: - type: Transform @@ -55534,7 +55807,7 @@ entities: pos: 58.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10349 components: - type: Transform @@ -55542,7 +55815,7 @@ entities: pos: 57.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10350 components: - type: Transform @@ -55550,7 +55823,7 @@ entities: pos: 56.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10353 components: - type: Transform @@ -55558,7 +55831,7 @@ entities: pos: 60.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10354 components: - type: Transform @@ -55566,14 +55839,14 @@ entities: pos: 61.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10359 components: - type: Transform pos: 46.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10361 components: - type: Transform @@ -55581,7 +55854,7 @@ entities: pos: 48.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10362 components: - type: Transform @@ -55589,7 +55862,7 @@ entities: pos: 49.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10367 components: - type: Transform @@ -55597,7 +55870,7 @@ entities: pos: 51.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10368 components: - type: Transform @@ -55605,7 +55878,7 @@ entities: pos: 52.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10369 components: - type: Transform @@ -55613,7 +55886,7 @@ entities: pos: 53.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10370 components: - type: Transform @@ -55621,7 +55894,7 @@ entities: pos: 54.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10371 components: - type: Transform @@ -55629,7 +55902,7 @@ entities: pos: 55.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10372 components: - type: Transform @@ -55637,7 +55910,7 @@ entities: pos: 56.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10373 components: - type: Transform @@ -55645,7 +55918,7 @@ entities: pos: 57.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10376 components: - type: Transform @@ -55653,7 +55926,7 @@ entities: pos: 58.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10377 components: - type: Transform @@ -55661,7 +55934,7 @@ entities: pos: 58.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10378 components: - type: Transform @@ -55669,7 +55942,7 @@ entities: pos: 58.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10379 components: - type: Transform @@ -55677,28 +55950,28 @@ entities: pos: 58.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10385 components: - type: Transform pos: 63.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10386 components: - type: Transform pos: 63.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10387 components: - type: Transform pos: 63.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10388 components: - type: Transform @@ -55706,7 +55979,7 @@ entities: pos: 64.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10389 components: - type: Transform @@ -55714,7 +55987,7 @@ entities: pos: 65.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10390 components: - type: Transform @@ -55722,7 +55995,7 @@ entities: pos: 66.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10391 components: - type: Transform @@ -55730,7 +56003,7 @@ entities: pos: 62.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10392 components: - type: Transform @@ -55738,7 +56011,7 @@ entities: pos: 61.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10393 components: - type: Transform @@ -55746,7 +56019,7 @@ entities: pos: 60.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10394 components: - type: Transform @@ -55754,7 +56027,7 @@ entities: pos: 59.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10395 components: - type: Transform @@ -55762,7 +56035,7 @@ entities: pos: 56.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10396 components: - type: Transform @@ -55770,7 +56043,7 @@ entities: pos: 55.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10397 components: - type: Transform @@ -55778,7 +56051,7 @@ entities: pos: 55.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10398 components: - type: Transform @@ -55786,28 +56059,28 @@ entities: pos: 55.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10405 components: - type: Transform pos: 58.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10406 components: - type: Transform pos: 58.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10407 components: - type: Transform pos: 58.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10408 components: - type: Transform @@ -55815,7 +56088,7 @@ entities: pos: 59.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10409 components: - type: Transform @@ -55823,7 +56096,7 @@ entities: pos: 60.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10410 components: - type: Transform @@ -55831,7 +56104,7 @@ entities: pos: 61.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10428 components: - type: Transform @@ -55879,7 +56152,7 @@ entities: pos: 28.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10640 components: - type: Transform @@ -55887,7 +56160,7 @@ entities: pos: 28.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10641 components: - type: Transform @@ -55895,7 +56168,7 @@ entities: pos: 27.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10642 components: - type: Transform @@ -55903,7 +56176,7 @@ entities: pos: 29.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10646 components: - type: Transform @@ -55911,7 +56184,7 @@ entities: pos: 35.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10647 components: - type: Transform @@ -55919,7 +56192,7 @@ entities: pos: 34.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10648 components: - type: Transform @@ -55927,7 +56200,7 @@ entities: pos: 33.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10649 components: - type: Transform @@ -55935,7 +56208,7 @@ entities: pos: 37.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10650 components: - type: Transform @@ -55943,7 +56216,7 @@ entities: pos: 38.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10651 components: - type: Transform @@ -55951,7 +56224,7 @@ entities: pos: 39.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10663 components: - type: Transform @@ -55964,7 +56237,7 @@ entities: pos: 27.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11101 components: - type: Transform @@ -55978,7 +56251,7 @@ entities: pos: 52.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11281 components: - type: Transform @@ -55986,7 +56259,7 @@ entities: pos: 53.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11282 components: - type: Transform @@ -55994,7 +56267,7 @@ entities: pos: 54.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11290 components: - type: Transform @@ -56002,21 +56275,21 @@ entities: pos: 55.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11305 components: - type: Transform pos: 62.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11306 components: - type: Transform pos: 62.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11313 components: - type: Transform @@ -56024,7 +56297,7 @@ entities: pos: 54.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11314 components: - type: Transform @@ -56032,7 +56305,7 @@ entities: pos: 53.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11315 components: - type: Transform @@ -56040,7 +56313,7 @@ entities: pos: 52.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11318 components: - type: Transform @@ -56048,7 +56321,7 @@ entities: pos: 64.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11326 components: - type: Transform @@ -56056,7 +56329,7 @@ entities: pos: 66.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11327 components: - type: Transform @@ -56064,7 +56337,7 @@ entities: pos: 67.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11328 components: - type: Transform @@ -56072,7 +56345,7 @@ entities: pos: 68.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11330 components: - type: Transform @@ -56080,7 +56353,7 @@ entities: pos: 69.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11331 components: - type: Transform @@ -56088,7 +56361,7 @@ entities: pos: 70.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11336 components: - type: Transform @@ -56096,7 +56369,7 @@ entities: pos: 72.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11337 components: - type: Transform @@ -56104,7 +56377,7 @@ entities: pos: 73.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11338 components: - type: Transform @@ -56112,7 +56385,7 @@ entities: pos: 74.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11339 components: - type: Transform @@ -56120,7 +56393,7 @@ entities: pos: 75.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11340 components: - type: Transform @@ -56128,7 +56401,7 @@ entities: pos: 76.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11341 components: - type: Transform @@ -56136,7 +56409,7 @@ entities: pos: 62.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11342 components: - type: Transform @@ -56144,7 +56417,7 @@ entities: pos: 63.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11343 components: - type: Transform @@ -56152,7 +56425,7 @@ entities: pos: 64.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11344 components: - type: Transform @@ -56160,7 +56433,7 @@ entities: pos: 65.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11345 components: - type: Transform @@ -56168,7 +56441,7 @@ entities: pos: 66.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11346 components: - type: Transform @@ -56176,7 +56449,7 @@ entities: pos: 67.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11347 components: - type: Transform @@ -56184,7 +56457,7 @@ entities: pos: 68.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11348 components: - type: Transform @@ -56192,7 +56465,7 @@ entities: pos: 69.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11350 components: - type: Transform @@ -56200,7 +56473,7 @@ entities: pos: 70.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11352 components: - type: Transform @@ -56208,7 +56481,7 @@ entities: pos: 71.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11356 components: - type: Transform @@ -56216,7 +56489,7 @@ entities: pos: 73.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11357 components: - type: Transform @@ -56224,7 +56497,7 @@ entities: pos: 74.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11358 components: - type: Transform @@ -56232,7 +56505,7 @@ entities: pos: 75.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11359 components: - type: Transform @@ -56240,35 +56513,35 @@ entities: pos: 76.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11361 components: - type: Transform pos: 77.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11362 components: - type: Transform pos: 77.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11363 components: - type: Transform pos: 77.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11364 components: - type: Transform pos: 77.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11517 components: - type: Transform @@ -56276,7 +56549,7 @@ entities: pos: 66.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11518 components: - type: Transform @@ -56284,7 +56557,7 @@ entities: pos: 66.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11519 components: - type: Transform @@ -56292,7 +56565,7 @@ entities: pos: 65.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11523 components: - type: Transform @@ -56300,7 +56573,7 @@ entities: pos: 65.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11524 components: - type: Transform @@ -56308,7 +56581,7 @@ entities: pos: 65.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11525 components: - type: Transform @@ -56316,7 +56589,7 @@ entities: pos: 65.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11528 components: - type: Transform @@ -56324,7 +56597,7 @@ entities: pos: 65.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11529 components: - type: Transform @@ -56332,7 +56605,7 @@ entities: pos: 65.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11530 components: - type: Transform @@ -56340,7 +56613,7 @@ entities: pos: 67.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11699 components: - type: Transform @@ -56348,7 +56621,7 @@ entities: pos: 68.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11700 components: - type: Transform @@ -56356,7 +56629,7 @@ entities: pos: 69.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11701 components: - type: Transform @@ -56364,42 +56637,42 @@ entities: pos: 70.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11702 components: - type: Transform pos: 71.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11703 components: - type: Transform pos: 71.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11704 components: - type: Transform pos: 71.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11705 components: - type: Transform pos: 71.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11706 components: - type: Transform pos: 71.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11711 components: - type: Transform @@ -56407,7 +56680,7 @@ entities: pos: 56.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11712 components: - type: Transform @@ -56415,7 +56688,7 @@ entities: pos: 57.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11713 components: - type: Transform @@ -56423,7 +56696,7 @@ entities: pos: 58.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11714 components: - type: Transform @@ -56431,7 +56704,7 @@ entities: pos: 59.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11716 components: - type: Transform @@ -56439,7 +56712,7 @@ entities: pos: 61.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11717 components: - type: Transform @@ -56447,7 +56720,7 @@ entities: pos: 62.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11718 components: - type: Transform @@ -56455,7 +56728,7 @@ entities: pos: 63.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11723 components: - type: Transform @@ -56463,35 +56736,35 @@ entities: pos: 65.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11724 components: - type: Transform pos: 66.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11725 components: - type: Transform pos: 66.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11727 components: - type: Transform pos: 72.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11728 components: - type: Transform pos: 72.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11738 components: - type: Transform @@ -56499,7 +56772,7 @@ entities: pos: 55.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11739 components: - type: Transform @@ -56507,7 +56780,7 @@ entities: pos: 54.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11740 components: - type: Transform @@ -56515,7 +56788,7 @@ entities: pos: 53.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11741 components: - type: Transform @@ -56523,7 +56796,7 @@ entities: pos: 54.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11742 components: - type: Transform @@ -56531,7 +56804,7 @@ entities: pos: 53.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11756 components: - type: Transform @@ -56544,6 +56817,8 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11788 components: - type: Transform @@ -56551,95 +56826,91 @@ entities: pos: 57.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11790 components: - type: Transform pos: 61.5,-0.5 parent: 2 - - uid: 11796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 - parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11925 components: - type: Transform pos: 61.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11926 components: - type: Transform pos: 61.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11927 components: - type: Transform pos: 61.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11928 components: - type: Transform pos: 61.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11929 components: - type: Transform pos: 61.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11930 components: - type: Transform pos: 61.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11931 components: - type: Transform pos: 61.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11932 components: - type: Transform pos: 60.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11933 components: - type: Transform pos: 60.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11934 components: - type: Transform pos: 60.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11935 components: - type: Transform pos: 60.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11949 components: - type: Transform @@ -56647,7 +56918,7 @@ entities: pos: 71.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11950 components: - type: Transform @@ -56655,7 +56926,7 @@ entities: pos: 71.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11951 components: - type: Transform @@ -56663,7 +56934,7 @@ entities: pos: 71.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11952 components: - type: Transform @@ -56671,7 +56942,7 @@ entities: pos: 72.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12301 components: - type: Transform @@ -56686,14 +56957,14 @@ entities: pos: 8.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12821 components: - type: Transform pos: 8.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12859 components: - type: Transform @@ -56747,7 +57018,7 @@ entities: pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13144 components: - type: Transform @@ -56755,7 +57026,7 @@ entities: pos: -13.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13279 components: - type: Transform @@ -56763,26 +57034,30 @@ entities: pos: -8.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13435 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13448 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13498 components: - type: Transform pos: 46.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13519 components: - type: Transform @@ -56790,7 +57065,7 @@ entities: pos: 55.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13522 components: - type: Transform @@ -56798,7 +57073,7 @@ entities: pos: 55.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13524 components: - type: Transform @@ -56806,7 +57081,7 @@ entities: pos: 54.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13525 components: - type: Transform @@ -56814,7 +57089,7 @@ entities: pos: 56.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13548 components: - type: Transform @@ -56822,7 +57097,7 @@ entities: pos: 45.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13551 components: - type: Transform @@ -56830,7 +57105,7 @@ entities: pos: 46.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13552 components: - type: Transform @@ -56838,7 +57113,7 @@ entities: pos: 45.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13553 components: - type: Transform @@ -56846,7 +57121,7 @@ entities: pos: 45.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13554 components: - type: Transform @@ -56854,7 +57129,7 @@ entities: pos: 52.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13555 components: - type: Transform @@ -56862,14 +57137,14 @@ entities: pos: 47.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13575 components: - type: Transform pos: 46.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13986 components: - type: Transform @@ -56877,7 +57152,7 @@ entities: pos: -6.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13987 components: - type: Transform @@ -56885,7 +57160,7 @@ entities: pos: -6.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13988 components: - type: Transform @@ -56893,7 +57168,7 @@ entities: pos: -6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13989 components: - type: Transform @@ -56901,7 +57176,7 @@ entities: pos: -5.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13990 components: - type: Transform @@ -56909,7 +57184,7 @@ entities: pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13991 components: - type: Transform @@ -56917,7 +57192,7 @@ entities: pos: -5.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13992 components: - type: Transform @@ -56925,7 +57200,7 @@ entities: pos: -5.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13995 components: - type: Transform @@ -56933,7 +57208,7 @@ entities: pos: -15.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13996 components: - type: Transform @@ -56941,7 +57216,7 @@ entities: pos: -16.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13997 components: - type: Transform @@ -56949,7 +57224,7 @@ entities: pos: -17.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13998 components: - type: Transform @@ -56957,7 +57232,7 @@ entities: pos: -18.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13999 components: - type: Transform @@ -56965,7 +57240,7 @@ entities: pos: -19.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14000 components: - type: Transform @@ -56973,7 +57248,7 @@ entities: pos: -20.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14001 components: - type: Transform @@ -56981,7 +57256,7 @@ entities: pos: -21.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14002 components: - type: Transform @@ -56989,7 +57264,7 @@ entities: pos: -22.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14003 components: - type: Transform @@ -56997,7 +57272,7 @@ entities: pos: -15.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14004 components: - type: Transform @@ -57005,7 +57280,7 @@ entities: pos: -16.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14005 components: - type: Transform @@ -57013,7 +57288,7 @@ entities: pos: -17.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14006 components: - type: Transform @@ -57021,7 +57296,7 @@ entities: pos: -18.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14007 components: - type: Transform @@ -57029,7 +57304,7 @@ entities: pos: -19.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14008 components: - type: Transform @@ -57037,7 +57312,7 @@ entities: pos: -20.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14009 components: - type: Transform @@ -57045,7 +57320,7 @@ entities: pos: -21.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14016 components: - type: Transform @@ -57053,7 +57328,7 @@ entities: pos: -24.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14017 components: - type: Transform @@ -57061,7 +57336,7 @@ entities: pos: -24.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14018 components: - type: Transform @@ -57069,7 +57344,7 @@ entities: pos: -24.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14019 components: - type: Transform @@ -57077,7 +57352,7 @@ entities: pos: -24.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14020 components: - type: Transform @@ -57085,7 +57360,7 @@ entities: pos: -24.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14021 components: - type: Transform @@ -57093,7 +57368,7 @@ entities: pos: -24.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14022 components: - type: Transform @@ -57101,7 +57376,7 @@ entities: pos: -24.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14024 components: - type: Transform @@ -57109,7 +57384,7 @@ entities: pos: -22.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14025 components: - type: Transform @@ -57117,7 +57392,7 @@ entities: pos: -22.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14026 components: - type: Transform @@ -57125,7 +57400,7 @@ entities: pos: -22.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14027 components: - type: Transform @@ -57133,7 +57408,7 @@ entities: pos: -22.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14034 components: - type: Transform @@ -57141,7 +57416,7 @@ entities: pos: -22.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14035 components: - type: Transform @@ -57149,7 +57424,7 @@ entities: pos: -22.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14036 components: - type: Transform @@ -57157,7 +57432,7 @@ entities: pos: -22.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14037 components: - type: Transform @@ -57165,7 +57440,7 @@ entities: pos: -22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14038 components: - type: Transform @@ -57173,7 +57448,7 @@ entities: pos: -22.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14039 components: - type: Transform @@ -57181,7 +57456,7 @@ entities: pos: -22.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14040 components: - type: Transform @@ -57189,7 +57464,7 @@ entities: pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14042 components: - type: Transform @@ -57197,7 +57472,7 @@ entities: pos: -22.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14043 components: - type: Transform @@ -57205,7 +57480,7 @@ entities: pos: -22.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14044 components: - type: Transform @@ -57213,7 +57488,7 @@ entities: pos: -22.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14045 components: - type: Transform @@ -57221,7 +57496,7 @@ entities: pos: -22.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14046 components: - type: Transform @@ -57229,7 +57504,7 @@ entities: pos: -22.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14047 components: - type: Transform @@ -57237,7 +57512,7 @@ entities: pos: -22.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14048 components: - type: Transform @@ -57245,7 +57520,7 @@ entities: pos: -24.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14049 components: - type: Transform @@ -57253,7 +57528,7 @@ entities: pos: -24.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14050 components: - type: Transform @@ -57261,7 +57536,7 @@ entities: pos: -24.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14051 components: - type: Transform @@ -57269,7 +57544,7 @@ entities: pos: -24.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14052 components: - type: Transform @@ -57277,7 +57552,7 @@ entities: pos: -24.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14053 components: - type: Transform @@ -57285,7 +57560,7 @@ entities: pos: -24.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14054 components: - type: Transform @@ -57293,7 +57568,7 @@ entities: pos: -24.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14055 components: - type: Transform @@ -57301,7 +57576,7 @@ entities: pos: -24.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14056 components: - type: Transform @@ -57309,7 +57584,7 @@ entities: pos: -24.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14057 components: - type: Transform @@ -57317,7 +57592,7 @@ entities: pos: -24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14058 components: - type: Transform @@ -57325,7 +57600,7 @@ entities: pos: -24.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14171 components: - type: Transform @@ -57333,7 +57608,7 @@ entities: pos: 64.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14172 components: - type: Transform @@ -57349,7 +57624,7 @@ entities: pos: 65.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14370 components: - type: Transform @@ -57514,7 +57789,7 @@ entities: pos: 66.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14585 components: - type: Transform @@ -57522,7 +57797,7 @@ entities: pos: 67.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14588 components: - type: Transform @@ -57530,7 +57805,7 @@ entities: pos: 64.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14589 components: - type: Transform @@ -57538,7 +57813,7 @@ entities: pos: 64.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14601 components: - type: Transform @@ -57546,7 +57821,7 @@ entities: pos: 67.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14602 components: - type: Transform @@ -57554,7 +57829,7 @@ entities: pos: 67.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14606 components: - type: Transform @@ -57562,21 +57837,21 @@ entities: pos: 68.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14607 components: - type: Transform pos: 69.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14608 components: - type: Transform pos: 69.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14609 components: - type: Transform @@ -57584,7 +57859,7 @@ entities: pos: 70.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14610 components: - type: Transform @@ -57592,7 +57867,7 @@ entities: pos: 71.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14612 components: - type: Transform @@ -57600,7 +57875,7 @@ entities: pos: 72.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14618 components: - type: Transform @@ -57631,21 +57906,21 @@ entities: pos: 8.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14666 components: - type: Transform pos: 8.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14668 components: - type: Transform pos: 7.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14957 components: - type: Transform @@ -57653,7 +57928,7 @@ entities: pos: 6.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14961 components: - type: Transform @@ -57661,7 +57936,7 @@ entities: pos: 5.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14962 components: - type: Transform @@ -57674,7 +57949,7 @@ entities: pos: 5.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15162 components: - type: Transform @@ -57753,7 +58028,7 @@ entities: pos: 31.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15292 components: - type: Transform @@ -57761,7 +58036,7 @@ entities: pos: 33.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15293 components: - type: Transform @@ -57769,7 +58044,7 @@ entities: pos: 32.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15294 components: - type: Transform @@ -57777,7 +58052,7 @@ entities: pos: 34.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15295 components: - type: Transform @@ -57785,7 +58060,7 @@ entities: pos: 35.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 14 @@ -57795,7 +58070,7 @@ entities: pos: 31.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 39 components: - type: Transform @@ -57803,14 +58078,14 @@ entities: pos: 18.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 347 components: - type: Transform pos: 18.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 355 components: - type: Transform @@ -57818,35 +58093,35 @@ entities: pos: 13.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 356 components: - type: Transform pos: 13.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 362 components: - type: Transform pos: 22.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 426 components: - type: Transform pos: 9.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 434 components: - type: Transform pos: 11.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 756 components: - type: Transform @@ -57854,14 +58129,14 @@ entities: pos: 27.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 892 components: - type: Transform pos: 19.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1036 components: - type: Transform @@ -57869,7 +58144,7 @@ entities: pos: 17.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1148 components: - type: Transform @@ -57877,7 +58152,7 @@ entities: pos: 33.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1221 components: - type: Transform @@ -57885,14 +58160,14 @@ entities: pos: 30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1259 components: - type: Transform pos: 26.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1260 components: - type: Transform @@ -57900,14 +58175,14 @@ entities: pos: 28.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1261 components: - type: Transform pos: 22.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1262 components: - type: Transform @@ -57915,28 +58190,28 @@ entities: pos: 18.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1263 components: - type: Transform pos: 20.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1304 components: - type: Transform pos: 24.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1372 components: - type: Transform pos: 26.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1516 components: - type: Transform @@ -57944,7 +58219,7 @@ entities: pos: 27.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1529 components: - type: Transform @@ -57952,7 +58227,7 @@ entities: pos: 31.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1619 components: - type: Transform @@ -57960,14 +58235,14 @@ entities: pos: 26.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1653 components: - type: Transform pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1690 components: - type: Transform @@ -57975,14 +58250,14 @@ entities: pos: 21.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1692 components: - type: Transform pos: 21.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1694 components: - type: Transform @@ -57990,7 +58265,7 @@ entities: pos: 21.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1695 components: - type: Transform @@ -57998,7 +58273,7 @@ entities: pos: 21.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1717 components: - type: Transform @@ -58006,14 +58281,14 @@ entities: pos: 40.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1718 components: - type: Transform pos: 40.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1806 components: - type: Transform @@ -58021,7 +58296,7 @@ entities: pos: 25.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1813 components: - type: Transform @@ -58029,14 +58304,14 @@ entities: pos: 3.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1821 components: - type: Transform pos: 25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1939 components: - type: Transform @@ -58051,14 +58326,14 @@ entities: pos: -6.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2068 components: - type: Transform pos: -5.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2069 components: - type: Transform @@ -58071,7 +58346,7 @@ entities: pos: 5.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2435 components: - type: Transform @@ -58085,14 +58360,14 @@ entities: pos: 32.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2608 components: - type: Transform pos: -4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3124 components: - type: Transform @@ -58100,7 +58375,7 @@ entities: pos: -2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3258 components: - type: Transform @@ -58108,7 +58383,7 @@ entities: pos: 50.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3691 components: - type: Transform @@ -58116,7 +58391,7 @@ entities: pos: 42.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3694 components: - type: Transform @@ -58124,7 +58399,7 @@ entities: pos: 57.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3902 components: - type: Transform @@ -58153,7 +58428,7 @@ entities: pos: 3.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4011 components: - type: Transform @@ -58161,7 +58436,7 @@ entities: pos: 25.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4014 components: - type: Transform @@ -58177,7 +58452,7 @@ entities: pos: 26.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4036 components: - type: Transform @@ -58185,7 +58460,7 @@ entities: pos: 26.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4037 components: - type: Transform @@ -58193,7 +58468,7 @@ entities: pos: 27.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4039 components: - type: Transform @@ -58201,7 +58476,7 @@ entities: pos: 25.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4059 components: - type: Transform @@ -58209,21 +58484,21 @@ entities: pos: 27.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4089 components: - type: Transform pos: 16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4126 components: - type: Transform pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4131 components: - type: Transform @@ -58231,7 +58506,7 @@ entities: pos: 33.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4188 components: - type: Transform @@ -58239,14 +58514,14 @@ entities: pos: 39.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4199 components: - type: Transform pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4236 components: - type: Transform @@ -58254,7 +58529,7 @@ entities: pos: 42.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4361 components: - type: Transform @@ -58262,7 +58537,7 @@ entities: pos: 47.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4494 components: - type: Transform @@ -58270,12 +58545,29 @@ entities: pos: 27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4498 components: - type: Transform pos: 39.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 4537 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4768 components: - type: Transform @@ -58283,7 +58575,7 @@ entities: pos: 5.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5019 components: - type: Transform @@ -58291,7 +58583,7 @@ entities: pos: 27.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5029 components: - type: Transform @@ -58302,20 +58594,22 @@ entities: - type: Transform pos: 57.5,0.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 5041 components: - type: Transform pos: 59.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5076 components: - type: Transform pos: 25.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5099 components: - type: Transform @@ -58323,14 +58617,14 @@ entities: pos: 56.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5104 components: - type: Transform pos: 45.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5113 components: - type: Transform @@ -58338,14 +58632,14 @@ entities: pos: 27.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5114 components: - type: Transform pos: 26.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5115 components: - type: Transform @@ -58353,35 +58647,35 @@ entities: pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5118 components: - type: Transform pos: 9.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5138 components: - type: Transform pos: 8.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5160 components: - type: Transform pos: 4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5161 components: - type: Transform pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5162 components: - type: Transform @@ -58389,14 +58683,14 @@ entities: pos: 63.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5163 components: - type: Transform pos: 30.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5165 components: - type: Transform @@ -58404,7 +58698,7 @@ entities: pos: 65.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5168 components: - type: Transform @@ -58412,7 +58706,7 @@ entities: pos: 71.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5170 components: - type: Transform @@ -58420,14 +58714,14 @@ entities: pos: 55.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5171 components: - type: Transform pos: 61.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5177 components: - type: Transform @@ -58435,14 +58729,14 @@ entities: pos: 40.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5178 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5179 components: - type: Transform @@ -58450,7 +58744,7 @@ entities: pos: 41.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5180 components: - type: Transform @@ -58458,7 +58752,7 @@ entities: pos: -6.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5233 components: - type: Transform @@ -58466,7 +58760,7 @@ entities: pos: 47.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5237 components: - type: Transform @@ -58474,7 +58768,7 @@ entities: pos: 32.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5238 components: - type: Transform @@ -58482,7 +58776,7 @@ entities: pos: 25.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5239 components: - type: Transform @@ -58490,7 +58784,7 @@ entities: pos: 41.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5241 components: - type: Transform @@ -58498,14 +58792,14 @@ entities: pos: 27.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5242 components: - type: Transform pos: 26.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5284 components: - type: Transform @@ -58513,7 +58807,7 @@ entities: pos: 25.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5509 components: - type: Transform @@ -58521,14 +58815,14 @@ entities: pos: 64.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6336 components: - type: Transform pos: 48.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6423 components: - type: Transform @@ -58536,7 +58830,7 @@ entities: pos: 27.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6552 components: - type: Transform @@ -58544,7 +58838,7 @@ entities: pos: 33.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6555 components: - type: Transform @@ -58552,14 +58846,14 @@ entities: pos: 33.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6558 components: - type: Transform pos: 34.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6565 components: - type: Transform @@ -58567,14 +58861,14 @@ entities: pos: 44.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6578 components: - type: Transform pos: 39.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6584 components: - type: Transform @@ -58582,7 +58876,7 @@ entities: pos: 35.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6588 components: - type: Transform @@ -58596,7 +58890,7 @@ entities: pos: 39.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6611 components: - type: Transform @@ -58604,7 +58898,7 @@ entities: pos: 26.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6819 components: - type: Transform @@ -58612,7 +58906,7 @@ entities: pos: 47.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7169 components: - type: Transform @@ -58620,7 +58914,7 @@ entities: pos: 15.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7219 components: - type: Transform @@ -58628,7 +58922,7 @@ entities: pos: 14.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7244 components: - type: Transform @@ -58636,7 +58930,7 @@ entities: pos: 9.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7245 components: - type: Transform @@ -58644,13 +58938,15 @@ entities: pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7274 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-1.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7409 components: - type: Transform @@ -58658,7 +58954,7 @@ entities: pos: -6.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7428 components: - type: Transform @@ -58666,14 +58962,14 @@ entities: pos: -5.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7519 components: - type: Transform pos: -12.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7532 components: - type: Transform @@ -58681,7 +58977,7 @@ entities: pos: -10.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7802 components: - type: Transform @@ -58694,7 +58990,7 @@ entities: pos: 8.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8163 components: - type: Transform @@ -58702,7 +58998,7 @@ entities: pos: 7.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8182 components: - type: Transform @@ -58710,7 +59006,7 @@ entities: pos: 23.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8185 components: - type: Transform @@ -58718,7 +59014,7 @@ entities: pos: 19.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8192 components: - type: Transform @@ -58726,7 +59022,7 @@ entities: pos: 22.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8197 components: - type: Transform @@ -58734,7 +59030,7 @@ entities: pos: 18.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8208 components: - type: Transform @@ -58742,14 +59038,14 @@ entities: pos: 8.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8309 components: - type: Transform pos: 27.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8555 components: - type: Transform @@ -58757,21 +59053,21 @@ entities: pos: 33.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8561 components: - type: Transform pos: 33.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8562 components: - type: Transform pos: 34.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8563 components: - type: Transform @@ -58779,14 +59075,14 @@ entities: pos: 34.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8594 components: - type: Transform pos: 35.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8981 components: - type: Transform @@ -58799,13 +59095,15 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-1.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9533 components: - type: Transform pos: 26.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9536 components: - type: Transform @@ -58813,7 +59111,7 @@ entities: pos: 26.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9559 components: - type: Transform @@ -58821,7 +59119,7 @@ entities: pos: 27.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9560 components: - type: Transform @@ -58829,7 +59127,7 @@ entities: pos: 26.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9573 components: - type: Transform @@ -58837,7 +59135,7 @@ entities: pos: 18.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10047 components: - type: Transform @@ -58845,14 +59143,14 @@ entities: pos: 56.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10048 components: - type: Transform pos: 59.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10057 components: - type: Transform @@ -58860,14 +59158,14 @@ entities: pos: 59.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10062 components: - type: Transform pos: 54.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10116 components: - type: Transform @@ -58875,7 +59173,7 @@ entities: pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10141 components: - type: Transform @@ -58883,7 +59181,7 @@ entities: pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10142 components: - type: Transform @@ -58891,7 +59189,7 @@ entities: pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10143 components: - type: Transform @@ -58899,7 +59197,7 @@ entities: pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10144 components: - type: Transform @@ -58907,7 +59205,7 @@ entities: pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10157 components: - type: Transform @@ -58915,14 +59213,14 @@ entities: pos: 9.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10174 components: - type: Transform pos: 7.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10246 components: - type: Transform @@ -58930,14 +59228,14 @@ entities: pos: 26.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10336 components: - type: Transform pos: 62.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10357 components: - type: Transform @@ -58945,7 +59243,7 @@ entities: pos: 48.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10360 components: - type: Transform @@ -58953,7 +59251,7 @@ entities: pos: 25.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10363 components: - type: Transform @@ -58961,7 +59259,7 @@ entities: pos: 50.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10380 components: - type: Transform @@ -58969,7 +59267,7 @@ entities: pos: 58.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10381 components: - type: Transform @@ -58977,7 +59275,7 @@ entities: pos: 57.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10383 components: - type: Transform @@ -58985,14 +59283,14 @@ entities: pos: 63.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10404 components: - type: Transform pos: 58.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10846 components: - type: Transform @@ -59000,28 +59298,28 @@ entities: pos: 40.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10907 components: - type: Transform pos: 29.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11360 components: - type: Transform pos: 77.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11510 components: - type: Transform pos: 65.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11511 components: - type: Transform @@ -59029,7 +59327,7 @@ entities: pos: 66.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11513 components: - type: Transform @@ -59037,7 +59335,7 @@ entities: pos: 66.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11710 components: - type: Transform @@ -59045,14 +59343,14 @@ entities: pos: 64.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11715 components: - type: Transform pos: 56.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11745 components: - type: Transform @@ -59060,13 +59358,15 @@ entities: pos: 40.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11766 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-1.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12863 components: - type: Transform @@ -59167,14 +59467,14 @@ entities: pos: 46.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14012 components: - type: Transform pos: -23.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14013 components: - type: Transform @@ -59182,7 +59482,7 @@ entities: pos: -22.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14023 components: - type: Transform @@ -59190,7 +59490,7 @@ entities: pos: -24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14033 components: - type: Transform @@ -59198,7 +59498,7 @@ entities: pos: -22.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14372 components: - type: Transform @@ -59271,7 +59571,7 @@ entities: pos: 24.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4038 components: - type: Transform @@ -59433,7 +59733,7 @@ entities: pos: 30.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4033 components: - type: Transform @@ -59441,7 +59741,7 @@ entities: pos: 27.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5037 components: - type: Transform @@ -59449,7 +59749,7 @@ entities: pos: 57.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' - uid: 5112 components: - type: Transform @@ -59464,7 +59764,7 @@ entities: pos: 31.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7803 components: - type: Transform @@ -59472,7 +59772,7 @@ entities: pos: 51.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7883 components: - type: Transform @@ -59512,7 +59812,7 @@ entities: pos: 31.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14374 components: - type: Transform @@ -59560,6 +59860,8 @@ entities: - type: Transform pos: 59.5,-0.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12989 components: - type: Transform @@ -59634,7 +59936,7 @@ entities: pos: 26.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 429 components: - type: Transform @@ -59644,7 +59946,7 @@ entities: deviceLists: - 5 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 851 components: - type: Transform @@ -59652,7 +59954,7 @@ entities: pos: 39.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1161 components: - type: Transform @@ -59662,7 +59964,7 @@ entities: deviceLists: - 14067 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1560 components: - type: Transform @@ -59670,15 +59972,18 @@ entities: pos: 21.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1625 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2301 components: - type: Transform @@ -59689,14 +59994,14 @@ entities: deviceLists: - 10988 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2393 components: - type: Transform pos: 30.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3152 components: - type: Transform @@ -59706,7 +60011,7 @@ entities: deviceLists: - 13512 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3692 components: - type: Transform @@ -59714,7 +60019,7 @@ entities: pos: 41.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4027 components: - type: Transform @@ -59722,7 +60027,7 @@ entities: pos: 15.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4035 components: - type: Transform @@ -59730,7 +60035,7 @@ entities: pos: 19.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4460 components: - type: Transform @@ -59738,7 +60043,7 @@ entities: pos: 32.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4465 components: - type: Transform @@ -59746,22 +60051,25 @@ entities: pos: 20.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4551 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5103 components: - type: Transform pos: 41.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5189 components: - type: Transform @@ -59769,7 +60077,7 @@ entities: pos: 57.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5422 components: - type: Transform @@ -59777,7 +60085,7 @@ entities: pos: 11.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5533 components: - type: Transform @@ -59785,7 +60093,7 @@ entities: pos: 36.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5678 components: - type: Transform @@ -59793,7 +60101,18 @@ entities: pos: 13.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 5776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10930 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5964 components: - type: Transform @@ -59801,7 +60120,7 @@ entities: pos: 11.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6570 components: - type: Transform @@ -59809,7 +60128,7 @@ entities: pos: 45.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6590 components: - type: Transform @@ -59823,7 +60142,7 @@ entities: pos: 35.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6609 components: - type: Transform @@ -59831,7 +60150,7 @@ entities: pos: 38.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6620 components: - type: Transform @@ -59839,7 +60158,7 @@ entities: pos: 36.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6627 components: - type: Transform @@ -59847,14 +60166,14 @@ entities: pos: 34.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6640 components: - type: Transform pos: 46.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6774 components: - type: Transform @@ -59864,7 +60183,7 @@ entities: deviceLists: - 10988 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6778 components: - type: Transform @@ -59872,14 +60191,14 @@ entities: pos: 4.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6804 components: - type: Transform pos: 26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6908 components: - type: Transform @@ -59890,7 +60209,7 @@ entities: deviceLists: - 7962 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6927 components: - type: Transform @@ -59898,7 +60217,7 @@ entities: pos: 22.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6951 components: - type: Transform @@ -59906,7 +60225,7 @@ entities: pos: 20.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7469 components: - type: Transform @@ -59916,7 +60235,7 @@ entities: deviceLists: - 14067 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7801 components: - type: Transform @@ -59933,14 +60252,14 @@ entities: deviceLists: - 2124 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8009 components: - type: Transform pos: 12.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8016 components: - type: Transform @@ -59948,7 +60267,7 @@ entities: pos: 15.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8236 components: - type: Transform @@ -59958,21 +60277,21 @@ entities: deviceLists: - 14754 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8240 components: - type: Transform pos: 26.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8242 components: - type: Transform pos: 22.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8296 components: - type: Transform @@ -59980,7 +60299,7 @@ entities: pos: 26.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8301 components: - type: Transform @@ -59988,7 +60307,7 @@ entities: pos: 23.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8344 components: - type: Transform @@ -59996,7 +60315,7 @@ entities: pos: 31.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8349 components: - type: Transform @@ -60007,14 +60326,14 @@ entities: deviceLists: - 13512 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8575 components: - type: Transform pos: 34.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8596 components: - type: Transform @@ -60022,7 +60341,7 @@ entities: pos: 43.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8597 components: - type: Transform @@ -60030,35 +60349,35 @@ entities: pos: 39.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8607 components: - type: Transform pos: 39.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8629 components: - type: Transform pos: 38.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8684 components: - type: Transform pos: 42.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9358 components: - type: Transform pos: 32.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9558 components: - type: Transform @@ -60066,21 +60385,21 @@ entities: pos: 27.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9570 components: - type: Transform pos: 26.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9581 components: - type: Transform pos: 18.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9582 components: - type: Transform @@ -60088,14 +60407,14 @@ entities: pos: 14.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9635 components: - type: Transform pos: 47.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10163 components: - type: Transform @@ -60103,7 +60422,7 @@ entities: pos: 7.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10170 components: - type: Transform @@ -60111,7 +60430,7 @@ entities: pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10171 components: - type: Transform @@ -60119,7 +60438,7 @@ entities: pos: 10.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10172 components: - type: Transform @@ -60127,7 +60446,7 @@ entities: pos: 4.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10173 components: - type: Transform @@ -60135,7 +60454,7 @@ entities: pos: -1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10178 components: - type: Transform @@ -60143,7 +60462,7 @@ entities: pos: -2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10214 components: - type: Transform @@ -60151,7 +60470,7 @@ entities: pos: 23.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10248 components: - type: Transform @@ -60159,14 +60478,14 @@ entities: pos: 26.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10331 components: - type: Transform pos: 48.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10346 components: - type: Transform @@ -60174,7 +60493,7 @@ entities: pos: 62.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10347 components: - type: Transform @@ -60182,7 +60501,7 @@ entities: pos: 67.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10351 components: - type: Transform @@ -60190,7 +60509,7 @@ entities: pos: 55.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10352 components: - type: Transform @@ -60198,7 +60517,7 @@ entities: pos: 57.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10355 components: - type: Transform @@ -60206,7 +60525,7 @@ entities: pos: 62.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10356 components: - type: Transform @@ -60214,7 +60533,7 @@ entities: pos: 60.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10358 components: - type: Transform @@ -60222,7 +60541,7 @@ entities: pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10452 components: - type: Transform @@ -60233,7 +60552,7 @@ entities: deviceLists: - 12528 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10643 components: - type: Transform @@ -60241,7 +60560,7 @@ entities: pos: 29.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11365 components: - type: Transform @@ -60249,7 +60568,7 @@ entities: pos: 77.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11366 components: - type: Transform @@ -60257,7 +60576,7 @@ entities: pos: 78.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11514 components: - type: Transform @@ -60265,14 +60584,14 @@ entities: pos: 64.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11515 components: - type: Transform pos: 66.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11516 components: - type: Transform @@ -60280,14 +60599,14 @@ entities: pos: 66.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11709 components: - type: Transform pos: 71.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11743 components: - type: Transform @@ -60295,7 +60614,7 @@ entities: pos: 52.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11924 components: - type: Transform @@ -60303,7 +60622,7 @@ entities: pos: 56.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11937 components: - type: Transform @@ -60311,21 +60630,21 @@ entities: pos: 61.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11945 components: - type: Transform pos: 63.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11956 components: - type: Transform pos: 71.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13980 components: - type: Transform @@ -60336,7 +60655,7 @@ entities: deviceLists: - 2124 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14014 components: - type: Transform @@ -60347,7 +60666,7 @@ entities: deviceLists: - 13984 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14029 components: - type: Transform @@ -60358,7 +60677,7 @@ entities: deviceLists: - 13984 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14030 components: - type: Transform @@ -60369,7 +60688,7 @@ entities: deviceLists: - 13984 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14384 components: - type: Transform @@ -60422,7 +60741,7 @@ entities: deviceLists: - 14615 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14669 components: - type: Transform @@ -60432,7 +60751,7 @@ entities: deviceLists: - 14670 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14736 components: - type: Transform @@ -60442,7 +60761,7 @@ entities: deviceLists: - 5 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15296 components: - type: Transform @@ -60453,9 +60772,19 @@ entities: deviceLists: - 15297 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: + - uid: 865 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1232 components: - type: Transform @@ -60466,15 +60795,18 @@ entities: deviceLists: - 14067 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1305 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1017 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1324 components: - type: Transform @@ -60482,7 +60814,7 @@ entities: pos: 10.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1336 components: - type: Transform @@ -60493,7 +60825,7 @@ entities: deviceLists: - 14067 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2263 components: - type: Transform @@ -60504,7 +60836,7 @@ entities: deviceLists: - 12528 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3475 components: - type: Transform @@ -60517,7 +60849,7 @@ entities: pos: 41.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4092 components: - type: Transform @@ -60525,7 +60857,7 @@ entities: pos: 15.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4183 components: - type: Transform @@ -60533,7 +60865,7 @@ entities: pos: 19.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4414 components: - type: Transform @@ -60543,7 +60875,7 @@ entities: deviceLists: - 13512 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4447 components: - type: Transform @@ -60551,7 +60883,7 @@ entities: pos: 31.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4464 components: - type: Transform @@ -60559,14 +60891,7 @@ entities: pos: 22.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4552 - components: - - type: Transform - pos: 28.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4553 components: - type: Transform @@ -60574,14 +60899,24 @@ entities: pos: 26.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5679 components: - type: Transform pos: 13.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 5775 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10930 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5968 components: - type: Transform @@ -60589,7 +60924,7 @@ entities: pos: 9.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6571 components: - type: Transform @@ -60597,7 +60932,7 @@ entities: pos: 43.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6595 components: - type: Transform @@ -60605,7 +60940,7 @@ entities: pos: 33.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6610 components: - type: Transform @@ -60613,7 +60948,7 @@ entities: pos: 39.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6614 components: - type: Transform @@ -60621,7 +60956,7 @@ entities: pos: 29.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6621 components: - type: Transform @@ -60629,7 +60964,7 @@ entities: pos: 32.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6622 components: - type: Transform @@ -60637,7 +60972,7 @@ entities: pos: 38.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6628 components: - type: Transform @@ -60645,7 +60980,7 @@ entities: pos: 45.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6629 components: - type: Transform @@ -60653,14 +60988,14 @@ entities: pos: 34.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6805 components: - type: Transform pos: 26.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6911 components: - type: Transform @@ -60671,7 +61006,7 @@ entities: deviceLists: - 7962 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6949 components: - type: Transform @@ -60679,7 +61014,7 @@ entities: pos: 18.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6950 components: - type: Transform @@ -60687,7 +61022,7 @@ entities: pos: 20.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7708 components: - type: Transform @@ -60695,7 +61030,7 @@ entities: pos: 4.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7760 components: - type: Transform @@ -60706,7 +61041,7 @@ entities: deviceLists: - 10988 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7837 components: - type: Transform @@ -60717,7 +61052,7 @@ entities: deviceLists: - 2124 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8010 components: - type: Transform @@ -60725,7 +61060,7 @@ entities: pos: 14.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8017 components: - type: Transform @@ -60733,7 +61068,7 @@ entities: pos: 15.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8203 components: - type: Transform @@ -60743,7 +61078,7 @@ entities: deviceLists: - 5 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8235 components: - type: Transform @@ -60753,14 +61088,14 @@ entities: deviceLists: - 14754 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8243 components: - type: Transform pos: 23.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8564 components: - type: Transform @@ -60768,7 +61103,7 @@ entities: pos: 34.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8595 components: - type: Transform @@ -60776,7 +61111,7 @@ entities: pos: 43.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8598 components: - type: Transform @@ -60784,14 +61119,14 @@ entities: pos: 39.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8610 components: - type: Transform pos: 40.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8630 components: - type: Transform @@ -60799,14 +61134,14 @@ entities: pos: 38.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8685 components: - type: Transform pos: 41.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8810 components: - type: Transform @@ -60814,7 +61149,7 @@ entities: pos: 26.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9359 components: - type: Transform @@ -60822,14 +61157,14 @@ entities: pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9546 components: - type: Transform pos: 28.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9554 components: - type: Transform @@ -60837,7 +61172,7 @@ entities: pos: 22.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9557 components: - type: Transform @@ -60845,7 +61180,7 @@ entities: pos: 27.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9569 components: - type: Transform @@ -60853,14 +61188,14 @@ entities: pos: 23.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9636 components: - type: Transform pos: 44.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10128 components: - type: Transform @@ -60868,7 +61203,7 @@ entities: pos: 55.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10179 components: - type: Transform @@ -60876,7 +61211,7 @@ entities: pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10180 components: - type: Transform @@ -60884,7 +61219,7 @@ entities: pos: 4.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10181 components: - type: Transform @@ -60892,7 +61227,7 @@ entities: pos: -2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10182 components: - type: Transform @@ -60900,7 +61235,7 @@ entities: pos: 10.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10215 components: - type: Transform @@ -60908,7 +61243,7 @@ entities: pos: 22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10217 components: - type: Transform @@ -60916,14 +61251,14 @@ entities: pos: 29.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10249 components: - type: Transform pos: 26.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10365 components: - type: Transform @@ -60931,7 +61266,7 @@ entities: pos: 45.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10366 components: - type: Transform @@ -60939,7 +61274,7 @@ entities: pos: 50.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10375 components: - type: Transform @@ -60947,7 +61282,7 @@ entities: pos: 59.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10400 components: - type: Transform @@ -60955,7 +61290,7 @@ entities: pos: 67.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10401 components: - type: Transform @@ -60963,7 +61298,7 @@ entities: pos: 63.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10402 components: - type: Transform @@ -60971,14 +61306,14 @@ entities: pos: 54.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10403 components: - type: Transform pos: 57.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10411 components: - type: Transform @@ -60986,7 +61321,7 @@ entities: pos: 62.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10412 components: - type: Transform @@ -60994,7 +61329,7 @@ entities: pos: 57.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10652 components: - type: Transform @@ -61002,7 +61337,7 @@ entities: pos: 32.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11367 components: - type: Transform @@ -61010,7 +61345,7 @@ entities: pos: 77.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11719 components: - type: Transform @@ -61018,7 +61353,7 @@ entities: pos: 64.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11726 components: - type: Transform @@ -61026,7 +61361,7 @@ entities: pos: 67.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11729 components: - type: Transform @@ -61034,7 +61369,7 @@ entities: pos: 72.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11744 components: - type: Transform @@ -61042,14 +61377,14 @@ entities: pos: 52.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11923 components: - type: Transform pos: 60.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11936 components: - type: Transform @@ -61057,21 +61392,21 @@ entities: pos: 60.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11938 components: - type: Transform pos: 56.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11957 components: - type: Transform pos: 73.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13517 components: - type: Transform @@ -61082,7 +61417,7 @@ entities: deviceLists: - 13512 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13985 components: - type: Transform @@ -61093,7 +61428,7 @@ entities: deviceLists: - 2124 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14015 components: - type: Transform @@ -61104,7 +61439,7 @@ entities: deviceLists: - 13984 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14031 components: - type: Transform @@ -61115,7 +61450,7 @@ entities: deviceLists: - 13984 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14032 components: - type: Transform @@ -61126,7 +61461,7 @@ entities: deviceLists: - 13984 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14373 components: - type: Transform @@ -61190,7 +61525,7 @@ entities: deviceLists: - 14670 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14735 components: - type: Transform @@ -61201,7 +61536,7 @@ entities: deviceLists: - 5 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14960 components: - type: Transform @@ -61212,7 +61547,7 @@ entities: deviceLists: - 7962 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - uid: 1238 @@ -61373,16 +61708,6 @@ entities: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 129 - components: - - type: Transform - pos: 26.5,-30.5 - parent: 2 - - uid: 147 - components: - - type: Transform - pos: 27.5,-30.5 - parent: 2 - uid: 244 components: - type: Transform @@ -61544,6 +61869,12 @@ entities: - type: Transform pos: 27.5,-26.5 parent: 2 + - uid: 837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-30.5 + parent: 2 - uid: 854 components: - type: Transform @@ -61557,22 +61888,14 @@ entities: - uid: 856 components: - type: Transform - pos: 24.5,-34.5 + rot: 3.141592653589793 rad + pos: 27.5,-30.5 parent: 2 - uid: 857 components: - type: Transform - pos: 25.5,-34.5 - parent: 2 - - uid: 858 - components: - - type: Transform - pos: 28.5,-34.5 - parent: 2 - - uid: 859 - components: - - type: Transform - pos: 27.5,-34.5 + rot: 3.141592653589793 rad + pos: 26.5,-30.5 parent: 2 - uid: 860 components: @@ -62979,11 +63302,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 - - uid: 4074 - components: - - type: Transform - pos: 25.5,-30.5 - parent: 2 - uid: 4153 components: - type: Transform @@ -67826,8 +68144,24 @@ entities: - uid: 13472 components: - type: Transform - pos: 9.400621,-42.048656 + pos: 9.418196,-42.27834 parent: 2 + - type: HandheldLight + toggleActionEntity: 8692 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 8692 + - type: Physics + canCollide: True + - type: ActionsContainer - proto: LampInterrogator entities: - uid: 13567 @@ -68045,11 +68379,6 @@ entities: parent: 2 - proto: LockerElectricalSuppliesFilled entities: - - uid: 882 - components: - - type: Transform - pos: 28.5,-33.5 - parent: 2 - uid: 1760 components: - type: Transform @@ -68333,13 +68662,6 @@ entities: - type: Transform pos: 37.5,19.5 parent: 2 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 883 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 2 - proto: MachineAnomalyGenerator entities: - uid: 5363 @@ -69081,6 +69403,14 @@ entities: - type: Transform pos: 43.5,19.5 parent: 2 +- proto: PaperOffice + entities: + - uid: 15337 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: 9.980696,-42.55959 + parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: - uid: 4800 @@ -69234,6 +69564,12 @@ entities: - type: Transform pos: 51.110676,4.5944533 parent: 2 + - uid: 15338 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: 10.268833,-42.383278 + parent: 2 - proto: PersonalAI entities: - uid: 7414 @@ -69428,6 +69764,13 @@ entities: - type: Transform pos: 6.0254927,-3.2604024 parent: 2 +- proto: PlushieArachind + entities: + - uid: 15326 + components: + - type: Transform + pos: 9.854231,-41.59095 + parent: 2 - proto: PlushieNar entities: - uid: 5400 @@ -72489,8 +72832,8 @@ entities: - type: Transform anchored: False rot: 3.141592653589793 rad - pos: 49.9375,-48.015625 - parent: 126 + pos: 49.5,-48.5 + parent: 2 - uid: 12981 components: - type: Transform @@ -72777,6 +73120,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,40.5 parent: 2 + - uid: 10039 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 - uid: 10303 components: - type: Transform @@ -73202,11 +73550,6 @@ entities: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 5690 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 2 - uid: 5691 components: - type: Transform @@ -73748,26 +74091,6 @@ entities: - type: Transform pos: 19.5,-32.5 parent: 2 - - uid: 864 - components: - - type: Transform - pos: 27.5,-34.5 - parent: 2 - - uid: 865 - components: - - type: Transform - pos: 28.5,-34.5 - parent: 2 - - uid: 866 - components: - - type: Transform - pos: 25.5,-34.5 - parent: 2 - - uid: 867 - components: - - type: Transform - pos: 24.5,-34.5 - parent: 2 - uid: 928 components: - type: Transform @@ -78361,26 +78684,35 @@ entities: parent: 2 - proto: SMESAdvanced entities: - - uid: 13453 - components: - - type: MetaData - name: SMES Bank 3 - - type: Transform - pos: 27.5,-31.5 - parent: 2 - uid: 14526 components: - - type: MetaData - name: SMES Bank 2 - type: Transform - pos: 26.5,-31.5 + pos: 25.5,-32.5 parent: 2 - uid: 14565 components: - - type: MetaData - name: SMES Bank 1 - type: Transform - pos: 25.5,-31.5 + pos: 27.5,-32.5 + parent: 2 + - uid: 15225 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 15226 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 15335 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 15336 + components: + - type: Transform + pos: 27.5,-33.5 parent: 2 - proto: SMESBasic entities: @@ -79324,10 +79656,10 @@ entities: parent: 2 - proto: SpawnPointChiefEngineer entities: - - uid: 8692 + - uid: 15339 components: - type: Transform - pos: 11.5,-34.5 + pos: 10.5,-41.5 parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: @@ -79630,20 +79962,20 @@ entities: parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 5660 + - uid: 15227 components: - type: Transform - pos: 26.5,-32.5 + pos: 20.5,-27.5 parent: 2 - - uid: 5661 + - uid: 15310 components: - type: Transform - pos: 25.5,-32.5 + pos: 20.5,-25.5 parent: 2 - - uid: 5662 + - uid: 15311 components: - type: Transform - pos: 27.5,-32.5 + pos: 15.5,-26.5 parent: 2 - proto: SpawnPointWarden entities: @@ -80570,17 +80902,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engi Entrance - - uid: 12790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Locker Room - uid: 13542 components: - type: Transform @@ -82448,16 +82769,6 @@ entities: - type: Transform pos: 70.5,27.5 parent: 2 - - uid: 13473 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 2 - - uid: 13475 - components: - - type: Transform - pos: 9.5,-42.5 - parent: 2 - proto: TableCounterWood entities: - uid: 9735 @@ -83072,6 +83383,16 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,18.5 parent: 2 + - uid: 13473 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 2 - proto: TargetClown entities: - uid: 9607 @@ -95157,31 +95478,6 @@ entities: - type: Transform pos: 36.5,20.5 parent: 2 -- proto: WardrobeAtmosphericsFilled - entities: - - uid: 4267 - components: - - type: Transform - pos: 28.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeBlueFilled entities: - uid: 4220 @@ -95196,13 +95492,6 @@ entities: - type: Transform pos: 32.5,9.5 parent: 2 -- proto: WardrobeEngineeringFilled - entities: - - uid: 4268 - components: - - type: Transform - pos: 24.5,-31.5 - parent: 2 - proto: WardrobeGreenFilled entities: - uid: 10813 @@ -96453,12 +96742,6 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 2 - uid: 224 components: - type: Transform @@ -96468,36 +96751,31 @@ entities: - uid: 673 components: - type: Transform - pos: 27.5,-30.5 + pos: 26.5,-30.5 parent: 2 - uid: 836 - components: - - type: Transform - pos: 25.5,-30.5 - parent: 2 - - uid: 837 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-30.5 + pos: 25.5,-30.5 parent: 2 - uid: 849 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-30.5 + pos: 27.5,-30.5 parent: 2 - - uid: 868 - components: - - type: Transform - pos: 26.5,-30.5 - parent: 2 - - uid: 874 + - uid: 866 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-30.5 parent: 2 + - uid: 867 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 - uid: 2158 components: - type: Transform @@ -96528,12 +96806,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-38.5 parent: 2 - - uid: 4276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 2 - uid: 4555 components: - type: Transform @@ -96546,6 +96818,17 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,48.5 parent: 2 + - uid: 5656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-30.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 - uid: 5808 components: - type: Transform @@ -96827,6 +97110,12 @@ entities: - type: Transform pos: 46.5,37.5 parent: 2 + - uid: 12790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-30.5 + parent: 2 - uid: 13121 components: - type: Transform From 66ea113eda929d3ec8f61016d3bbfffc1aa8c65b Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Wed, 18 Dec 2024 21:13:01 -0800 Subject: [PATCH 163/263] Omega Power Rebalance (#33956) * fix packed power * Revert "fix packed power" This reverts commit 4f44d0673e0a597bea39c594f5b7ace3069433ea. * fic the entire thing again --- Resources/Maps/omega.yml | 568 +++++++++++++++++++-------------------- 1 file changed, 274 insertions(+), 294 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 6b9177554b..598ae42e23 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -174,7 +174,7 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAC + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAC version: 6 -3,-2: ind: -3,-2 @@ -451,6 +451,10 @@ entities: id: Box decals: 1607: -13,-39 + 2334: -46,-2 + 2335: -46,-3 + 2336: -44,-3 + 2337: -44,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -1568,9 +1572,6 @@ entities: 776: -40,-6 777: -41,-6 778: -43,-2 - 779: -44,-2 - 780: -45,-2 - 781: -46,-2 877: -48,-12 878: -49,-12 879: -50,-12 @@ -2922,12 +2923,14 @@ entities: 932: 21,5 1902: 26,14 2139: -57,5 + 2340: -47,-4 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 929: 25,1 931: 23,5 + 2341: -43,-4 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -2980,6 +2983,8 @@ entities: 2098: -60,1 2099: -60,2 2146: -35,20 + 2338: -47,-3 + 2339: -47,-2 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -3063,6 +3068,8 @@ entities: 2168: -37,15 2169: -37,16 2179: -36,18 + 2342: -43,-3 + 2343: -43,-2 - node: color: '#FFFFFFFF' id: WarnLineW @@ -3084,6 +3091,9 @@ entities: 2095: -48,5 2138: -56,5 2145: -36,21 + 2344: -44,-4 + 2345: -45,-4 + 2346: -46,-4 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4705,14 +4715,11 @@ entities: - type: Transform pos: -10.386757,8.623476 parent: 4812 -- proto: ActionToggleInternals - entities: - - uid: 9710 + - uid: 12118 components: - type: Transform - parent: 12116 - - type: InstantAction - container: 12116 + pos: -49.383278,-8.450993 + parent: 4812 - proto: ActionToggleLight entities: - uid: 6594 @@ -4728,24 +4735,13 @@ entities: parent: 1481 - type: InstantAction container: 1481 - - uid: 9534 - components: - - type: Transform - parent: 12119 - - type: InstantAction - container: 12119 - uid: 9825 components: - type: Transform - parent: 6364 + parent: 10704 - type: InstantAction - container: 6364 - - uid: 9826 - components: - - type: Transform - parent: 12487 - - type: InstantAction - container: 12487 + originalIconColor: '#FFFFFFFF' + container: 10704 - proto: AirAlarm entities: - uid: 4981 @@ -6007,12 +6003,17 @@ entities: parent: 4812 - proto: AirlockEngineeringGlassLocked entities: - - uid: 2964 + - uid: 8733 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-3.5 parent: 4812 + - uid: 9518 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 4812 - uid: 9565 components: - type: Transform @@ -7898,13 +7899,6 @@ entities: - type: Transform pos: -42.5,-10.5 parent: 4812 -- proto: AmeJar - entities: - - uid: 4233 - components: - - type: Transform - pos: -46.253944,-2.360939 - parent: 4812 - proto: AmePartFlatpack entities: - uid: 9429 @@ -8345,7 +8339,7 @@ entities: - uid: 13656 components: - type: Transform - pos: -44.452446,3.5162945 + pos: -45.176956,3.5024316 parent: 4812 - proto: AsimovCircuitBoard entities: @@ -11232,18 +11226,11 @@ entities: - Wood - Glass - Cloth - - uid: 10700 + - uid: 12119 components: - type: Transform pos: -28.5,-7.5 parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - proto: BananaPhoneInstrument entities: - uid: 12492 @@ -12017,7 +12004,7 @@ entities: - uid: 10712 components: - type: Transform - pos: -31.22427,-7.3718886 + pos: -31.287058,-7.4169555 parent: 4812 - uid: 11329 components: @@ -21371,6 +21358,11 @@ entities: - type: Transform pos: 5.5,4.5 parent: 4812 + - uid: 1934 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 4812 - uid: 2080 components: - type: Transform @@ -21681,6 +21673,11 @@ entities: - type: Transform pos: 13.5,32.5 parent: 4812 + - uid: 2964 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 4812 - uid: 2969 components: - type: Transform @@ -22126,6 +22123,11 @@ entities: - type: Transform pos: 10.5,56.5 parent: 4812 + - uid: 4233 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 4812 - uid: 4235 components: - type: Transform @@ -22186,6 +22188,11 @@ entities: - type: Transform pos: -26.5,-30.5 parent: 4812 + - uid: 5546 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 4812 - uid: 5914 components: - type: Transform @@ -22471,6 +22478,11 @@ entities: - type: Transform pos: 16.5,-31.5 parent: 4812 + - uid: 6363 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 4812 - uid: 6519 components: - type: Transform @@ -22481,6 +22493,11 @@ entities: - type: Transform pos: -50.5,3.5 parent: 4812 + - uid: 6606 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 4812 - uid: 6638 components: - type: Transform @@ -22806,6 +22823,11 @@ entities: - type: Transform pos: 7.5,-11.5 parent: 4812 + - uid: 7192 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 4812 - uid: 7280 components: - type: Transform @@ -22956,6 +22978,11 @@ entities: - type: Transform pos: -15.5,10.5 parent: 4812 + - uid: 8382 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 4812 - uid: 8551 components: - type: Transform @@ -22971,25 +22998,20 @@ entities: - type: Transform pos: -48.5,2.5 parent: 4812 + - uid: 8734 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 4812 - uid: 8738 components: - type: Transform - pos: -45.5,-3.5 - parent: 4812 - - uid: 8739 - components: - - type: Transform - pos: -44.5,-3.5 + pos: -48.5,-5.5 parent: 4812 - uid: 8741 components: - type: Transform - pos: -45.5,-1.5 - parent: 4812 - - uid: 8742 - components: - - type: Transform - pos: -44.5,-1.5 + pos: -45.5,-2.5 parent: 4812 - uid: 8743 components: @@ -23031,26 +23053,16 @@ entities: - type: Transform pos: -42.5,-5.5 parent: 4812 + - uid: 9050 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 4812 - uid: 9222 components: - type: Transform pos: -51.5,3.5 parent: 4812 - - uid: 9450 - components: - - type: Transform - pos: -48.5,-3.5 - parent: 4812 - - uid: 9487 - components: - - type: Transform - pos: -47.5,-3.5 - parent: 4812 - - uid: 9507 - components: - - type: Transform - pos: -46.5,-3.5 - parent: 4812 - uid: 9522 components: - type: Transform @@ -24676,15 +24688,10 @@ entities: - type: Transform pos: -49.5,3.5 parent: 4812 - - uid: 12112 + - uid: 12117 components: - type: Transform - pos: -44.5,-2.5 - parent: 4812 - - uid: 12114 - components: - - type: Transform - pos: -45.5,-2.5 + pos: -43.5,-1.5 parent: 4812 - uid: 12125 components: @@ -24696,6 +24703,11 @@ entities: - type: Transform pos: -48.5,-1.5 parent: 4812 + - uid: 12785 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 4812 - uid: 13069 components: - type: Transform @@ -24706,11 +24718,6 @@ entities: - type: Transform pos: -38.5,3.5 parent: 4812 - - uid: 13551 - components: - - type: Transform - pos: -48.5,-2.5 - parent: 4812 - proto: CableHVStack entities: - uid: 8587 @@ -27849,23 +27856,35 @@ entities: parent: 4812 - proto: CableTerminal entities: + - uid: 2908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 4812 - uid: 3794 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,46.5 parent: 4812 - - uid: 5546 + - uid: 8752 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-3.5 + pos: -44.5,-1.5 parent: 4812 - - uid: 6363 + - uid: 9317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-3.5 + rot: -1.5707963267948966 rad + pos: -44.5,-2.5 + parent: 4812 + - uid: 9450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-2.5 parent: 4812 - uid: 10167 components: @@ -27883,6 +27902,12 @@ entities: - type: Transform pos: 33.5,-38.5 parent: 4812 + - uid: 12116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 4812 - proto: CandyBowl entities: - uid: 10667 @@ -28573,11 +28598,6 @@ entities: - type: Transform pos: 1.5,14.5 parent: 4812 - - uid: 1934 - components: - - type: Transform - pos: -48.5,-3.5 - parent: 4812 - uid: 2905 components: - type: Transform @@ -29014,6 +29034,17 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,7.5 parent: 4812 + - uid: 8742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-2.5 + parent: 4812 + - uid: 8754 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 4812 - uid: 8786 components: - type: Transform @@ -29032,12 +29063,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,8.5 parent: 4812 - - uid: 9050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-2.5 - parent: 4812 - uid: 9131 components: - type: Transform @@ -29055,6 +29080,12 @@ entities: - type: Transform pos: -37.5,2.5 parent: 4812 + - uid: 9285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-3.5 + parent: 4812 - uid: 9302 components: - type: Transform @@ -29172,6 +29203,11 @@ entities: - type: Transform pos: -39.5,5.5 parent: 4812 + - uid: 9534 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 4812 - uid: 9682 components: - type: Transform @@ -32535,7 +32571,7 @@ entities: - uid: 10714 components: - type: Transform - pos: -31.802395,-7.4187636 + pos: -31.904114,-7.496018 parent: 4812 - uid: 12498 components: @@ -32737,27 +32773,6 @@ entities: - type: Transform pos: -24.594517,-34.532703 parent: 4812 -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 12119 - components: - - type: Transform - pos: -46.503944,-1.1517658 - parent: 4812 - - type: HandheldLight - toggleActionEntity: 9534 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9534 - - type: ActionsContainer - proto: ClothingHeadHatHardhatYellow entities: - uid: 12120 @@ -33217,18 +33232,6 @@ entities: - type: Transform pos: 28.696922,-41.322342 parent: 4812 -- proto: ClothingOuterVestHazard - entities: - - uid: 12117 - components: - - type: Transform - pos: -46.33728,-1.485331 - parent: 4812 - - uid: 12118 - components: - - type: Transform - pos: -46.660194,-1.4749074 - parent: 4812 - proto: ClothingShoesBootsJack entities: - uid: 9194 @@ -33253,16 +33256,6 @@ entities: - type: Transform pos: 5.5251036,14.520996 parent: 4812 - - uid: 10772 - components: - - type: Transform - pos: -30.706427,-9.213518 - parent: 4812 - - uid: 10773 - components: - - type: Transform - pos: -30.264002,-9.749746 - parent: 4812 - proto: ClothingShoesBootsWork entities: - uid: 8784 @@ -33992,12 +33985,23 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-25.5 parent: 4812 + - uid: 12487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 4812 - uid: 13788 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-39.5 parent: 4812 + - uid: 13829 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 4812 - proto: ComputerStationRecords entities: - uid: 1077 @@ -38070,19 +38074,6 @@ entities: parent: 4812 - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 12116 - components: - - type: Transform - pos: -46.597694,-2.4130588 - parent: 4812 - - type: GasTank - toggleActionEntity: 9710 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 9710 - uid: 13153 components: - type: Transform @@ -38307,7 +38298,7 @@ entities: - uid: 13654 components: - type: Transform - pos: -44.827446,3.7351964 + pos: -44.926956,3.7368066 parent: 4812 - proto: DrinkMugOne entities: @@ -38323,6 +38314,13 @@ entities: - type: Transform pos: -38.3488,12.713839 parent: 4812 +- proto: DrinkRootBeerGlass + entities: + - uid: 9507 + components: + - type: Transform + pos: -44.409157,3.574606 + parent: 4812 - proto: DrinkShaker entities: - uid: 1654 @@ -39759,7 +39757,7 @@ entities: - uid: 10718 components: - type: Transform - pos: -30.464754,-7.2781386 + pos: -30.416489,-7.3276486 parent: 4812 - proto: FirelockGlass entities: @@ -40411,25 +40409,6 @@ entities: parent: 4812 - proto: FlashlightLantern entities: - - uid: 6364 - components: - - type: Transform - pos: -46.410194,-1.9127116 - parent: 4812 - - type: HandheldLight - toggleActionEntity: 9825 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9825 - - type: ActionsContainer - uid: 8597 components: - type: Transform @@ -40475,25 +40454,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 12487 - components: - - type: Transform - pos: -46.722694,-1.9439831 - parent: 4812 - - type: HandheldLight - toggleActionEntity: 9826 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9826 - - type: ActionsContainer - uid: 12488 components: - type: Transform @@ -58589,10 +58549,17 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,8.5 parent: 4812 - - uid: 8752 + - uid: 8731 components: - type: Transform - pos: -44.5,-4.5 + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 4812 + - uid: 8739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-0.5 parent: 4812 - uid: 8753 components: @@ -58757,12 +58724,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,22.5 parent: 4812 - - uid: 9285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 4812 - uid: 9298 components: - type: Transform @@ -58781,12 +58742,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,22.5 parent: 4812 - - uid: 9317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-0.5 - parent: 4812 - uid: 9336 components: - type: Transform @@ -59460,6 +59415,12 @@ entities: - type: Transform pos: -10.5,-56.5 parent: 4812 + - uid: 12112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 4812 - uid: 12124 components: - type: Transform @@ -60240,6 +60201,11 @@ entities: - type: Transform pos: -61.5,15.5 parent: 4812 + - uid: 13551 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 4812 - uid: 13620 components: - type: Transform @@ -60255,6 +60221,11 @@ entities: - type: Transform pos: -57.5,16.5 parent: 4812 + - uid: 13683 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 4812 - uid: 13691 components: - type: Transform @@ -61798,8 +61769,10 @@ entities: - uid: 10704 components: - type: Transform - pos: -28.442137,-5.370996 + pos: -28.458933,-5.183518 parent: 4812 + - type: HandheldLight + toggleActionEntity: 9825 - type: ContainerContainer containers: cellslot_cell_container: !type:ContainerSlot @@ -61810,6 +61783,14 @@ entities: showEnts: False occludes: True ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 9825 + - type: Physics + canCollide: True + - type: ActionsContainer - proto: LampBanana entities: - uid: 1706 @@ -62019,6 +62000,8 @@ entities: - Pressed: Toggle 13775: - Pressed: Toggle + 13532: + - Pressed: Toggle - proto: LockableButtonHeadOfSecurity entities: - uid: 13826 @@ -64068,6 +64051,13 @@ entities: - type: Transform pos: 10.5,52.5 parent: 4812 +- proto: PlushieArachind + entities: + - uid: 9487 + components: + - type: Transform + pos: -44.48728,4.471773 + parent: 4812 - proto: PlushieBee entities: - uid: 11334 @@ -66319,6 +66309,12 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 4812 + - uid: 13830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-15.5 + parent: 4812 - proto: PoweredlightEmpty entities: - uid: 11249 @@ -67990,15 +67986,25 @@ entities: - uid: 10767 components: - type: Transform - pos: -48.51471,-8.421415 + pos: -48.508278,-8.451414 parent: 4812 - proto: RCDAmmo entities: + - uid: 6364 + components: + - type: Transform + pos: -48.492653,-8.217039 + parent: 4812 - uid: 10768 components: - type: Transform pos: -48.249084,-8.265165 parent: 4812 + - uid: 13831 + components: + - type: Transform + pos: -48.320778,-8.217039 + parent: 4812 - proto: ReagentContainerFlour entities: - uid: 1645 @@ -69839,12 +69845,6 @@ entities: - type: Transform pos: -21.5,26.5 parent: 4812 - - uid: 8382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-0.5 - parent: 4812 - uid: 8468 components: - type: Transform @@ -69939,11 +69939,6 @@ entities: - type: Transform pos: 23.5,18.5 parent: 4812 - - uid: 8734 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 4812 - uid: 8735 components: - type: Transform @@ -70098,6 +70093,11 @@ entities: - type: Transform pos: -41.5,-9.5 parent: 4812 + - uid: 9932 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 4812 - uid: 10154 components: - type: Transform @@ -70129,6 +70129,11 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,4.5 parent: 4812 + - uid: 10772 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 4812 - uid: 10928 components: - type: Transform @@ -70229,6 +70234,12 @@ entities: - type: Transform pos: 32.5,-37.5 parent: 4812 + - uid: 12114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 4812 - uid: 12139 components: - type: Transform @@ -70544,12 +70555,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-0.5 parent: 4812 - - uid: 13532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 4812 - uid: 13534 components: - type: Transform @@ -70560,6 +70565,18 @@ entities: - type: Transform pos: -58.5,6.5 parent: 4812 + - uid: 13741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 4812 + - uid: 13827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 4812 - proto: ResearchAndDevelopmentServer entities: - uid: 6252 @@ -71203,6 +71220,11 @@ entities: - type: Transform pos: -8.5,-19.5 parent: 4812 + - uid: 13532 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 4812 - uid: 13663 components: - type: Transform @@ -71833,11 +71855,6 @@ entities: parent: 4812 - proto: SignElectricalMed entities: - - uid: 2908 - components: - - type: Transform - pos: -43.5,-0.5 - parent: 4812 - uid: 3978 components: - type: Transform @@ -71858,11 +71875,6 @@ entities: - type: Transform pos: -9.5,-31.5 parent: 4812 - - uid: 8754 - components: - - type: Transform - pos: -45.5,-4.5 - parent: 4812 - uid: 10601 components: - type: Transform @@ -71886,6 +71898,12 @@ entities: - type: Transform pos: -43.5,-10.5 parent: 4812 + - uid: 13828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 4812 - proto: SignEngineering entities: - uid: 8687 @@ -71895,11 +71913,6 @@ entities: parent: 4812 - proto: SignEVA entities: - - uid: 9932 - components: - - type: Transform - pos: -47.5,-2.5 - parent: 4812 - uid: 13460 components: - type: Transform @@ -72343,6 +72356,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-2.5 parent: 4812 + - uid: 10773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-2.5 + parent: 4812 - uid: 11694 components: - type: Transform @@ -72508,20 +72527,26 @@ entities: parent: 4812 - proto: SMESAdvanced entities: - - uid: 13683 + - uid: 9710 components: - - type: MetaData - name: SMES Bank 2 - type: Transform - pos: -44.5,-2.5 + pos: -43.5,-2.5 parent: 4812 - - uid: 13741 + - uid: 9826 components: - - type: MetaData - name: SMES Bank 1 - type: Transform pos: -45.5,-2.5 parent: 4812 + - uid: 10699 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 4812 + - uid: 10700 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 4812 - proto: SMESBasic entities: - uid: 3699 @@ -75606,21 +75631,11 @@ entities: - type: Transform pos: -1.5,-27.5 parent: 4812 - - uid: 6606 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 4812 - uid: 7189 components: - type: Transform pos: -18.5,-14.5 parent: 4812 - - uid: 7192 - components: - - type: Transform - pos: -46.5,-2.5 - parent: 4812 - uid: 7571 components: - type: Transform @@ -76489,11 +76504,6 @@ entities: - type: Transform pos: -48.5,-8.5 parent: 4812 - - uid: 10699 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 4812 - uid: 10703 components: - type: Transform @@ -77289,11 +77299,6 @@ entities: - type: Transform pos: -16.515034,8.474278 parent: 4812 - - uid: 13827 - components: - - type: Transform - pos: -28.524622,-6.0613008 - parent: 4812 - proto: ToolboxEmergencyFilled entities: - uid: 4541 @@ -77350,11 +77355,6 @@ entities: - type: Transform pos: 26.489439,14.7007885 parent: 4812 - - uid: 13828 - components: - - type: Transform - pos: -28.524622,-6.3635936 - parent: 4812 - proto: TorsoHuman entities: - uid: 12423 @@ -78059,11 +78059,6 @@ entities: - type: Transform pos: 7.5,15.5 parent: 4812 - - uid: 12785 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 4812 - uid: 13249 components: - type: Transform @@ -81872,21 +81867,11 @@ entities: - type: Transform pos: -46.5,-4.5 parent: 4812 - - uid: 8731 - components: - - type: Transform - pos: -43.5,-0.5 - parent: 4812 - uid: 8732 components: - type: Transform pos: -42.5,-0.5 parent: 4812 - - uid: 8733 - components: - - type: Transform - pos: -45.5,-4.5 - parent: 4812 - uid: 8736 components: - type: Transform @@ -82452,11 +82437,6 @@ entities: - type: Transform pos: -47.5,-5.5 parent: 4812 - - uid: 9518 - components: - - type: Transform - pos: -48.5,-5.5 - parent: 4812 - uid: 9519 components: - type: Transform From 043510fb5120373e3995a20ac5cf47eea7015da2 Mon Sep 17 00:00:00 2001 From: TytosB <54259736+TytosB@users.noreply.github.com> Date: Thu, 19 Dec 2024 03:38:22 -0600 Subject: [PATCH 164/263] New mid pop station: Loop (#33697) * many changes * contentingregrationtests * serialized invalid removed * blank * "Changes and fixes as suggested" * blank * blank * added desk bells * engi rework rework rework * added gate to content integration * tweaks * aaa * bbb * added holopads * ccc * Update default.yml --------- Co-authored-by: Emisse <99158783+Emisse@users.noreply.github.com> --- .../Tests/PostMapInitTest.cs | 5 +- Resources/Maps/loop.yml | 105403 +++++++++++++++ Resources/Prototypes/Maps/Pools/default.yml | 1 + Resources/Prototypes/Maps/loop.yml | 65 + 4 files changed, 105473 insertions(+), 1 deletion(-) create mode 100644 Resources/Maps/loop.yml create mode 100644 Resources/Prototypes/Maps/loop.yml diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 7ac8ea0e4d..635a9dbe0f 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -63,7 +63,10 @@ namespace Content.IntegrationTests.Tests "Oasis", "Cog", "Gate", - "Amber" + "Amber", + "Loop" + + }; /// diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml new file mode 100644 index 0000000000..c2a71a1415 --- /dev/null +++ b/Resources/Maps/loop.yml @@ -0,0 +1,105403 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 34: Space + 41: FloorArcadeBlue2 + 47: FloorAstroSnow + 35: FloorBlueCircuit + 51: FloorBoxing + 49: FloorBrokenWood + 52: FloorCarpetClown + 44: FloorDark + 50: FloorDarkMini + 0: FloorDarkMono + 56: FloorDarkPlastic + 43: FloorDirt + 45: FloorFreezer + 54: FloorGold + 36: FloorGrayConcrete + 57: FloorGreenCircuit + 53: FloorMime + 32: FloorReinforced + 30: FloorSteel + 48: FloorSteelCheckerDark + 46: FloorSteelCheckerLight + 55: FloorSteelDamaged + 42: FloorSteelDirty + 33: FloorTechMaint + 38: FloorTechMaint2 + 39: FloorWhitePlastic + 37: FloorWood + 40: FloorWoodTile + 31: Lattice + 29: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: 5.375742,-1.5783513 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: IAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: HwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: IgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: HwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: HQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJwAAAAAAJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAJwAAAAAAJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAJwAAAAAAJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: HQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: HgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALQAAAAAALQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: HQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: KQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAA + version: 6 + -5,1: + ind: -5,1 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -5,2: + ind: -5,2 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: MQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAMQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: MAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALQAAAAAALQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA + version: 6 + -4,3: + ind: -4,3 + tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALwAAAAAALwAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + version: 6 + -5,3: + ind: -5,3 + tiles: IgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: LAAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: MgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAA + version: 6 + -4,4: + ind: -4,4 + tiles: HQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -5,4: + ind: -5,4 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAANgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALAAAAAAALAAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAANwAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAA + version: 6 + -2,4: + ind: -2,4 + tiles: JQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -6,3: + ind: -6,3 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -6,4: + ind: -6,4 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -1,5: + ind: -1,5 + tiles: HwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAANwAAAAAAKgAAAAAANwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 0,5: + ind: 0,5 + tiles: NwAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: IgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: HQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAA + version: 6 + -4,5: + ind: -4,5 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -2,5: + ind: -2,5 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOAAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAIwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAIwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAA + version: 6 + -2,6: + ind: -2,6 + tiles: IgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: HwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -5,5: + ind: -5,5 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: HwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -1,6: + ind: -1,6 + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -3,5: + ind: -3,5 + tiles: HwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -6,-1: + ind: -6,-1 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAA + version: 6 + -6,0: + ind: -6,0 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + version: 6 + -6,1: + ind: -6,1 + tiles: IgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + -7,0: + ind: -7,0 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + version: 6 + -7,1: + ind: -7,1 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 238: -33,52 + 239: -32,52 + 272: 8,70 + 273: 9,70 + 274: 10,70 + 275: 11,70 + 276: 12,70 + 277: 12,69 + 278: 11,69 + 279: 10,69 + 280: 9,69 + 281: 8,69 + 284: 8,68 + 285: 9,68 + 286: 10,68 + 287: 11,68 + 288: 12,68 + 289: 5,73 + 290: 5,75 + 294: 6,75 + 295: 7,75 + 314: 8,61 + 315: 9,61 + 317: 8,60 + 318: 9,60 + 320: 8,59 + 321: 9,59 + 1300: -19,4 + 1301: -19,3 + 1302: -19,2 + 1359: 4,20 + 1360: 5,20 + 1361: 6,20 + 1362: 10,20 + 1363: 10,21 + 1364: 10,22 + 1365: 10,23 + 1366: 8,22 + 1367: 7,22 + 1368: 6,22 + 1369: 5,22 + 1370: 4,22 + 1371: 4,23 + 1372: 5,23 + 1373: 6,23 + 1374: 7,23 + 1375: 8,23 + 1384: 20,31 + 1385: 21,31 + 1386: 22,31 + 1387: 22,30 + 1388: 20,30 + 1389: 20,29 + 1390: 21,29 + 1391: 22,29 + 1413: -38,61 + 1414: -38,60 + 1415: -38,59 + 1418: -38,62 + 1481: 5,76 + 1482: 6,76 + 1483: 7,76 + 1484: 7,77 + 1485: 6,77 + 1487: 5,77 + 1488: 8,77 + 1489: 8,76 + 1490: 8,75 + 1492: 8,73 + 1566: 7,73 + 1567: 7,72 + 1569: 5,72 + 1570: 8,72 + 1571: 6,72 + 1572: 6,73 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1392: 21,30 + 1705: 11,72 + 1706: 12,73 + 1707: 13,72 + 1708: 12,71 + - node: + color: '#00B400FF' + id: BrickBoxOverlay + decals: + 1690: -36,10 + 1691: -29,10 + - node: + color: '#00FF00FF' + id: BrickBoxOverlay + decals: + 1688: -36,10 + 1689: -29,10 + - node: + color: '#DE3A3A96' + id: BrickBoxOverlay + decals: + 348: -30,50 + 349: -30,49 + 350: -28,49 + 351: -28,50 + 1686: -36,9 + 1687: -29,9 + - node: + color: '#EFB34196' + id: BrickBoxOverlay + decals: + 1682: -36,11 + 1683: -29,11 + - node: + color: '#FFFF0093' + id: BrickBoxOverlay + decals: + 1698: -36,8 + 1699: -29,8 + - node: + color: '#334E6DC8' + id: BrickCornerOverlayNE + decals: + 1029: -21,64 + - node: + color: '#3EB38896' + id: BrickCornerOverlayNE + decals: + 1114: 2,17 + 1594: 1,13 + 1606: -5,13 + - node: + color: '#52B4E996' + id: BrickCornerOverlayNE + decals: + 1631: -5,28 + - node: + color: '#D381C996' + id: BrickCornerOverlayNE + decals: + 964: 23,33 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNE + decals: + 1086: -7,17 + 1636: -7,35 + - node: + color: '#EFB34196' + id: BrickCornerOverlayNE + decals: + 1148: -11,17 + 1200: -28,17 + 1207: -31,16 + 1667: -19,12 + - node: + color: '#334E6DC8' + id: BrickCornerOverlayNW + decals: + 1030: -25,64 + - node: + color: '#3EB38896' + id: BrickCornerOverlayNW + decals: + 1580: -5,17 + 1595: -3,13 + - node: + color: '#D381C996' + id: BrickCornerOverlayNW + decals: + 965: 18,33 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNW + decals: + 1087: -9,17 + - node: + color: '#EFB34196' + id: BrickCornerOverlayNW + decals: + 1149: -17,17 + 1201: -36,17 + 1208: -33,16 + 1244: -17,13 + 1668: -25,12 + 1680: -26,17 + - node: + color: '#334E6DC8' + id: BrickCornerOverlaySE + decals: + 1032: -21,60 + - node: + color: '#3EB38896' + id: BrickCornerOverlaySE + decals: + 1102: 2,19 + 1116: 2,16 + 1120: 1,8 + 1582: 1,15 + - node: + color: '#52B4E996' + id: BrickCornerOverlaySE + decals: + 1575: -13,38 + 1630: -5,27 + 1633: -7,34 + - node: + color: '#D381C996' + id: BrickCornerOverlaySE + decals: + 963: 19,27 + 966: 23,28 + 1412: 16,28 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySE + decals: + 1088: -7,15 + - node: + color: '#EFB34196' + id: BrickCornerOverlaySE + decals: + 1150: -11,15 + 1202: -28,14 + 1210: -31,15 + 1241: -19,0 + 1679: -19,14 + - node: + color: '#334E6DC8' + id: BrickCornerOverlaySW + decals: + 1031: -25,60 + - node: + color: '#3EB38896' + id: BrickCornerOverlaySW + decals: + 1581: -5,15 + 1596: -3,8 + - node: + color: '#52B4E996' + id: BrickCornerOverlaySW + decals: + 1573: -16,38 + - node: + color: '#D381C996' + id: BrickCornerOverlaySW + decals: + 962: 18,27 + 1411: 15,28 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySW + decals: + 1089: -9,15 + - node: + color: '#EFB34196' + id: BrickCornerOverlaySW + decals: + 1151: -17,15 + 1203: -36,14 + 1211: -33,15 + 1240: -25,0 + 1243: -11,3 + 1673: -17,7 + 1681: -26,14 + - node: + color: '#52B4E996' + id: BrickEndOverlayE + decals: + 1685: -32,11 + - node: + color: '#9FED5896' + id: BrickEndOverlayE + decals: + 1693: -32,9 + - node: + color: '#A4610696' + id: BrickEndOverlayE + decals: + 1694: -32,10 + - node: + color: '#D381C996' + id: BrickEndOverlayE + decals: + 1697: -32,8 + - node: + color: '#52B4E996' + id: BrickEndOverlayW + decals: + 1684: -33,11 + - node: + color: '#9FED5896' + id: BrickEndOverlayW + decals: + 1692: -33,9 + - node: + color: '#A4610696' + id: BrickEndOverlayW + decals: + 1695: -33,10 + - node: + color: '#D381C996' + id: BrickEndOverlayW + decals: + 1696: -33,8 + - node: + color: '#334E6DC8' + id: BrickLineOverlayE + decals: + 1042: -21,61 + 1043: -21,62 + 1044: -21,63 + 1045: -38,63 + 1047: -38,61 + 1048: -38,60 + 1049: -38,59 + - node: + color: '#3EB38896' + id: BrickLineOverlayE + decals: + 1103: 2,20 + 1104: 2,21 + 1105: 2,22 + 1106: 2,23 + 1107: 2,24 + 1128: 1,12 + 1129: 1,11 + 1130: 1,10 + 1131: 1,9 + 1607: -5,12 + 1608: -5,11 + 1609: -5,10 + 1610: -5,9 + 1611: -5,8 + 1612: -5,7 + 1613: -5,6 + 1614: -5,5 + 1615: -5,4 + - node: + color: '#52B4E996' + id: BrickLineOverlayE + decals: + 987: -44,23 + 988: -44,24 + 989: -44,25 + 990: -44,26 + 991: -44,27 + 992: -44,28 + 993: -44,22 + - node: + color: '#D381C996' + id: BrickLineOverlayE + decals: + 936: 13,32 + 937: 13,31 + 938: 13,30 + 939: 13,29 + 940: 13,28 + 953: 16,34 + 954: 16,33 + 955: 16,32 + 956: 16,31 + 957: 16,30 + 958: 16,29 + 979: 23,29 + 980: 23,30 + 981: 23,31 + 982: 23,32 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayE + decals: + 1093: -7,16 + - node: + color: '#EFB34196' + id: BrickLineOverlayE + decals: + 1146: -11,16 + 1204: -28,15 + 1205: -28,16 + 1297: -19,1 + 1298: -19,5 + 1299: -19,6 + 1662: -19,7 + 1663: -19,8 + 1664: -19,9 + 1665: -19,10 + 1666: -19,11 + - node: + color: '#FA750096' + id: BrickLineOverlayE + decals: + 1012: -44,29 + 1013: -44,30 + 1014: -44,31 + 1015: -44,32 + 1016: -44,33 + - node: + color: '#334E6DC8' + id: BrickLineOverlayN + decals: + 1017: -31,58 + 1018: -30,58 + 1019: -29,58 + 1020: -28,58 + 1021: -27,58 + 1022: -26,58 + 1023: -25,58 + 1024: -24,58 + 1025: -23,58 + 1026: -22,58 + 1027: -21,58 + 1028: -20,58 + 1036: -24,64 + 1037: -23,64 + 1038: -22,64 + - node: + color: '#3EB38896' + id: BrickLineOverlayN + decals: + 1111: -1,17 + 1112: 0,17 + 1113: 1,17 + 1590: -4,17 + 1591: -3,17 + 1592: -2,17 + 1598: -1,13 + 1599: -2,13 + 1600: 0,13 + - node: + color: '#52B4E996' + id: BrickLineOverlayN + decals: + 994: -43,21 + 995: -42,21 + 996: -41,21 + 997: -40,21 + 998: -39,21 + 999: -38,21 + 1000: -37,21 + 1001: -36,21 + 1002: -35,21 + 1003: -34,21 + 1004: -33,21 + 1005: -32,21 + 1006: -31,21 + 1007: -30,21 + 1008: -29,21 + 1009: -28,21 + 1010: -27,21 + 1011: -26,21 + - node: + color: '#D381C996' + id: BrickLineOverlayN + decals: + 933: 10,33 + 934: 11,33 + 935: 12,33 + 975: 19,33 + 976: 20,33 + 977: 21,33 + 978: 22,33 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayN + decals: + 1083: -9,13 + 1084: -8,13 + 1092: -8,17 + 1616: -7,13 + 1617: -6,13 + 1642: -8,35 + - node: + color: '#EFB34196' + id: BrickLineOverlayN + decals: + 1137: -15,17 + 1138: -14,17 + 1139: -13,17 + 1140: -12,17 + 1152: -16,17 + 1193: -35,17 + 1194: -34,17 + 1195: -33,17 + 1196: -32,17 + 1197: -31,17 + 1198: -30,17 + 1199: -29,17 + 1213: -32,16 + 1269: -16,13 + 1270: -15,13 + 1271: -14,13 + 1272: -12,13 + 1273: -13,13 + 1274: -11,13 + 1275: -10,13 + 1276: -18,12 + 1278: -20,12 + 1279: -21,12 + 1280: -22,12 + 1281: -23,12 + 1282: -24,12 + - node: + color: '#334E6DC8' + id: BrickLineOverlayS + decals: + 1033: -24,60 + 1035: -22,60 + 1644: -23,60 + - node: + color: '#3EB38896' + id: BrickLineOverlayS + decals: + 1098: -1,19 + 1099: -2,19 + 1100: 0,19 + 1101: 1,19 + 1132: -1,8 + 1133: 0,8 + 1576: -3,19 + 1577: -4,19 + 1578: -5,19 + 1579: -6,19 + 1583: -4,15 + 1585: -3,15 + 1586: -3,15 + 1587: -2,15 + 1588: -1,15 + 1589: 0,15 + 1597: -2,8 + - node: + color: '#52B4E996' + id: BrickLineOverlayS + decals: + 1574: -14,38 + 1632: -7,27 + 1643: -8,34 + - node: + color: '#D381C996' + id: BrickLineOverlayS + decals: + 930: 10,27 + 931: 11,27 + 932: 12,27 + 972: 20,28 + 973: 21,28 + 974: 22,28 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayS + decals: + 322: -30,52 + 323: -31,52 + 324: -29,52 + 325: -28,52 + 326: -27,52 + 327: -26,52 + 328: -25,52 + 329: -24,52 + 330: -23,52 + 331: -22,52 + 332: -21,52 + 333: -20,52 + 334: -19,52 + 335: -18,52 + 336: -16,52 + 337: -17,52 + 338: -34,52 + 339: -35,52 + 340: -36,52 + 341: -37,52 + 342: -38,52 + 343: -39,52 + 344: -40,52 + 345: -41,52 + 346: -42,52 + 347: -43,52 + 362: -31,44 + 363: -30,44 + 364: -29,44 + 365: -28,44 + 366: -27,44 + 367: -26,44 + 368: -25,44 + 369: -24,44 + 370: -23,44 + 371: -22,44 + 1080: -9,19 + 1081: -8,19 + 1082: -7,19 + 1090: -8,15 + - node: + color: '#EFB34196' + id: BrickLineOverlayS + decals: + 1050: -37,19 + 1051: -36,19 + 1052: -34,19 + 1053: -35,19 + 1054: -33,19 + 1055: -32,19 + 1056: -31,19 + 1057: -30,19 + 1058: -29,19 + 1059: -28,19 + 1060: -27,19 + 1061: -26,19 + 1062: -25,19 + 1063: -24,19 + 1064: -23,19 + 1065: -22,19 + 1066: -21,19 + 1067: -20,19 + 1068: -19,19 + 1069: -18,19 + 1070: -17,19 + 1071: -16,19 + 1072: -15,19 + 1073: -14,19 + 1074: -13,19 + 1075: -12,19 + 1076: -11,19 + 1077: -10,19 + 1141: -16,15 + 1142: -15,15 + 1143: -14,15 + 1144: -13,15 + 1145: -12,15 + 1186: -35,14 + 1187: -34,14 + 1188: -33,14 + 1189: -32,14 + 1190: -31,14 + 1191: -30,14 + 1192: -29,14 + 1212: -32,15 + 1256: -10,3 + 1257: -9,3 + 1258: -8,3 + 1262: -12,7 + 1263: -13,7 + 1264: -14,7 + 1265: -15,7 + 1266: -16,7 + 1291: -24,0 + 1292: -23,0 + 1293: -22,0 + 1294: -21,0 + 1296: -20,0 + 1618: -7,3 + 1619: -6,3 + - node: + color: '#334E6DC8' + id: BrickLineOverlayW + decals: + 1040: -25,63 + 1041: -25,62 + 1645: -25,61 + - node: + color: '#3EB38896' + id: BrickLineOverlayW + decals: + 1593: -5,16 + 1601: -3,12 + 1602: -3,11 + 1603: -3,10 + 1604: -3,10 + - node: + color: '#D381C996' + id: BrickLineOverlayW + decals: + 941: 9,28 + 942: 9,29 + 943: 9,31 + 944: 9,30 + 945: 9,32 + 947: 15,29 + 948: 15,30 + 949: 15,31 + 950: 15,32 + 951: 15,33 + 952: 15,34 + 967: 18,28 + 968: 18,29 + 969: 18,30 + 970: 18,31 + 971: 18,32 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayW + decals: + 353: -34,49 + 354: -34,48 + 355: -34,47 + 356: -34,46 + 357: -34,45 + 358: -34,44 + 359: -34,43 + 360: -34,42 + 361: -21,43 + 1091: -9,16 + - node: + color: '#EFB34196' + id: BrickLineOverlayW + decals: + 1147: -17,16 + 1206: -36,15 + 1259: -11,4 + 1260: -11,5 + 1261: -11,6 + 1284: -25,7 + 1285: -25,6 + 1286: -25,4 + 1287: -25,3 + 1288: -25,2 + 1289: -25,1 + 1290: -25,5 + 1669: -25,11 + 1670: -25,10 + 1671: -25,9 + 1672: -25,8 + 1674: -17,8 + 1675: -17,9 + 1676: -17,10 + 1677: -17,11 + 1678: -17,12 + - node: + color: '#43990996' + id: BrickTileWhiteCornerNe + decals: + 811: -2,33 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 681: -29,25 + 739: -18,33 + 758: -20,25 + 785: -13,25 + 806: -11,33 + 1622: -23,34 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 587: -58,43 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 605: 11,65 + 1520: 14,78 + 1544: 5,69 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 826: 5,41 + 866: 8,45 + 893: 19,40 + 920: 16,45 + 925: 13,33 + 1557: 22,37 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 593: -32,50 + 596: -10,45 + 598: -2,44 + 844: 5,45 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerNe + decals: + 627: -33,26 + 638: -33,33 + - node: + color: '#43990996' + id: BrickTileWhiteCornerNw + decals: + 1395: -7,32 + 1398: -5,33 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 682: -31,25 + 756: -31,33 + 757: -27,25 + 787: -18,25 + 807: -16,33 + 1621: -29,34 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 586: -60,43 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 600: -1,69 + 1499: 7,65 + 1519: 3,78 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 837: 3,41 + 867: 7,45 + 921: 10,45 + 926: 9,33 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 592: -34,50 + 597: -11,45 + 845: 4,45 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerNw + decals: + 628: -42,26 + 637: -42,33 + - node: + color: '#43990996' + id: BrickTileWhiteCornerSe + decals: + 813: -2,30 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 615: -33,23 + 684: -29,23 + 740: -18,30 + 759: -20,23 + 788: -13,23 + 808: -11,30 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 603: 14,67 + 604: 11,62 + 607: 10,57 + 1553: 5,60 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 827: 5,35 + 900: 22,35 + 923: 16,42 + 924: 13,27 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 595: -32,41 + 599: -2,43 + 846: 5,43 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerSe + decals: + 640: -33,28 + - node: + color: '#43990996' + id: BrickTileWhiteCornerSw + decals: + 810: -7,30 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 614: -42,23 + 683: -31,23 + 690: -31,27 + 760: -27,23 + 786: -18,23 + 809: -16,30 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 613: -1,60 + 1507: 7,67 + 1538: 3,71 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 838: 3,35 + 865: 7,35 + 922: 10,42 + 927: 9,27 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 847: 4,43 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerSw + decals: + 639: -42,28 + - node: + color: '#43990996' + id: BrickTileWhiteLineE + decals: + 824: -2,31 + 825: -2,32 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 516: -13,39 + 517: -13,40 + 518: -13,41 + 519: -13,42 + 618: -33,24 + 619: -33,25 + 686: -29,24 + 735: -22,29 + 741: -18,31 + 742: -18,32 + 762: -20,24 + 784: -13,24 + 802: -11,31 + 803: -11,32 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 588: -58,42 + 589: -58,41 + 590: -58,40 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 422: -3,61 + 423: -3,62 + 424: -3,63 + 425: -3,64 + 426: -3,65 + 427: -3,66 + 428: -3,60 + 429: -3,59 + 430: -3,58 + 431: -3,57 + 432: -3,56 + 433: -3,55 + 452: 14,72 + 453: 14,73 + 454: 14,74 + 455: 14,75 + 492: 10,58 + 493: 10,59 + 494: 10,60 + 495: 10,61 + 497: 11,63 + 498: 11,64 + 1532: 14,77 + 1533: 14,76 + 1534: 14,71 + 1535: 14,70 + 1536: 14,69 + 1537: 14,68 + 1545: 5,68 + 1546: 5,67 + 1547: 5,66 + 1548: 5,65 + 1549: 5,64 + 1550: 5,62 + 1551: 5,63 + 1552: 5,61 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 828: 5,36 + 829: 5,37 + 830: 5,38 + 831: 5,39 + 832: 5,40 + 868: 8,44 + 869: 8,42 + 871: 8,43 + 872: 8,41 + 894: 19,39 + 895: 19,38 + 916: 16,44 + 917: 16,43 + 1560: 22,36 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 415: -32,42 + 416: -32,43 + 417: -32,48 + 418: -32,49 + 848: 5,44 + 851: 2,43 + 852: 2,44 + 853: 2,45 + 854: 2,42 + - node: + color: '#FA750096' + id: BrickTileWhiteLineE + decals: + 666: -33,29 + 667: -33,30 + 668: -33,31 + 669: -33,32 + - node: + color: '#43990996' + id: BrickTileWhiteLineN + decals: + 820: -4,33 + 821: -3,33 + 1400: -6,32 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 688: -30,25 + 720: -6,28 + 721: -7,28 + 722: -8,28 + 723: -10,28 + 724: -11,28 + 725: -12,28 + 726: -13,28 + 727: -14,28 + 728: -15,28 + 729: -16,28 + 730: -17,28 + 731: -18,28 + 732: -19,28 + 733: -20,28 + 734: -21,28 + 743: -19,33 + 745: -20,33 + 746: -21,33 + 747: -22,33 + 755: -30,33 + 769: -26,25 + 770: -25,25 + 771: -24,25 + 772: -23,25 + 773: -22,25 + 774: -21,25 + 775: -17,25 + 776: -16,25 + 777: -15,25 + 778: -14,25 + 790: -15,26 + 791: -17,29 + 792: -15,33 + 793: -14,33 + 796: -13,33 + 797: -12,33 + 1623: -27,34 + 1624: -28,34 + 1625: -26,34 + 1626: -25,34 + 1627: -24,34 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 591: -59,43 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 464: 0,69 + 465: 1,69 + 466: 2,69 + 500: 10,65 + 501: 9,65 + 502: 8,65 + 1521: 13,78 + 1522: 12,78 + 1523: 11,78 + 1524: 10,78 + 1525: 9,78 + 1526: 8,78 + 1527: 7,78 + 1528: 6,78 + 1530: 5,78 + 1531: 4,78 + 1542: 3,69 + 1543: 4,69 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 835: 4,41 + 880: 9,40 + 881: 10,40 + 882: 11,40 + 883: 12,40 + 884: 13,40 + 885: 14,40 + 886: 15,40 + 887: 16,40 + 890: 18,40 + 891: 17,40 + 911: 11,45 + 912: 12,45 + 913: 13,45 + 914: 15,45 + 915: 14,45 + 1559: 21,37 + 1561: 20,37 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 393: -3,44 + 394: -4,44 + 395: -5,44 + 396: -6,44 + 397: -7,44 + 398: -8,44 + 399: -9,44 + 400: -12,44 + 401: -13,44 + 402: -14,44 + 403: -15,44 + 404: -17,46 + 406: -20,46 + 407: -23,46 + 408: -26,46 + 409: -28,47 + 410: -29,47 + 411: -30,47 + 412: -31,47 + 434: -4,66 + 594: -33,50 + - node: + color: '#FA750096' + id: BrickTileWhiteLineN + decals: + 629: -41,26 + 630: -40,26 + 631: -39,26 + 632: -38,26 + 633: -37,26 + 634: -36,26 + 635: -35,26 + 636: -34,26 + 653: -41,33 + 655: -40,33 + 656: -39,33 + 657: -38,33 + 658: -37,33 + 659: -36,33 + 660: -35,33 + 661: -34,33 + - node: + color: '#43990996' + id: BrickTileWhiteLineS + decals: + 814: -6,30 + 815: -4,30 + 816: -5,30 + 817: -3,30 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 504: -16,43 + 505: -15,43 + 506: -14,43 + 507: -13,43 + 509: -15,38 + 620: -41,23 + 621: -40,23 + 622: -39,23 + 623: -38,23 + 624: -37,23 + 625: -35,23 + 626: -34,23 + 687: -30,23 + 691: -30,27 + 692: -29,27 + 693: -27,27 + 694: -28,27 + 695: -26,27 + 696: -25,27 + 697: -24,27 + 698: -23,27 + 699: -22,27 + 700: -21,27 + 701: -20,27 + 702: -19,27 + 703: -18,27 + 704: -16,27 + 705: -17,27 + 706: -15,27 + 707: -14,27 + 708: -13,27 + 709: -12,27 + 710: -11,27 + 711: -10,27 + 712: -9,27 + 713: -8,27 + 715: -6,27 + 736: -21,30 + 737: -20,30 + 738: -19,30 + 763: -26,23 + 764: -25,23 + 765: -24,23 + 766: -23,23 + 767: -22,23 + 768: -21,23 + 779: -17,23 + 780: -16,23 + 781: -15,23 + 782: -14,23 + 798: -15,30 + 799: -14,30 + 800: -13,30 + 801: -12,30 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 473: 8,67 + 474: 9,67 + 475: 10,67 + 476: 11,67 + 477: 12,67 + 478: 13,67 + 489: 7,57 + 490: 8,57 + 491: 9,57 + 609: 3,60 + 610: 2,60 + 611: 1,60 + 612: 0,60 + 1539: 4,71 + 1540: 5,71 + 1541: 6,71 + 1554: 4,60 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 833: 4,35 + 873: 8,35 + 874: 9,35 + 875: 10,35 + 876: 11,35 + 877: 12,35 + 878: 13,35 + 879: 14,35 + 901: 21,35 + 902: 20,35 + 903: 19,35 + 904: 18,35 + 905: 17,35 + 906: 11,42 + 907: 12,42 + 908: 13,42 + 909: 14,42 + 910: 15,42 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 376: -21,43 + 377: -20,43 + 378: -19,43 + 379: -18,43 + 380: -17,43 + 381: -12,43 + 382: -11,43 + 383: -10,43 + 384: -9,43 + 385: -8,43 + 386: -7,43 + 387: -6,43 + 388: -5,43 + 389: -4,43 + 390: -3,43 + 413: -33,41 + - node: + color: '#FA750096' + id: BrickTileWhiteLineS + decals: + 641: -41,28 + 642: -40,28 + 643: -39,28 + 644: -38,28 + 647: -36,28 + 648: -37,28 + 649: -35,28 + 650: -34,28 + - node: + color: '#43990996' + id: BrickTileWhiteLineW + decals: + 822: -7,31 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 512: -16,39 + 513: -16,40 + 514: -16,41 + 515: -16,42 + 616: -42,24 + 617: -42,25 + 685: -31,24 + 761: -27,24 + 783: -18,24 + 804: -16,31 + 805: -16,32 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 577: -46,43 + 578: -46,42 + 579: -46,41 + 580: -46,40 + 581: -46,39 + 582: -46,38 + 583: -60,40 + 584: -60,41 + 585: -60,42 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 456: -1,66 + 457: -1,65 + 458: -1,64 + 459: -1,63 + 460: -1,62 + 461: -1,61 + 488: 6,57 + 1501: 7,64 + 1502: 7,63 + 1503: 7,62 + 1504: 7,61 + 1505: 7,60 + 1506: 7,59 + 1508: 7,68 + 1509: 7,69 + 1510: 7,70 + 1513: 3,72 + 1514: 3,73 + 1515: 3,74 + 1516: 3,75 + 1517: 3,76 + 1518: 3,77 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 839: 3,36 + 840: 3,37 + 841: 3,38 + 842: 3,39 + 843: 3,40 + 859: 7,41 + 860: 7,40 + 861: 7,39 + 862: 7,38 + 863: 7,37 + 864: 7,36 + 918: 10,43 + 919: 10,44 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 435: -1,68 + 850: 4,44 + 855: 7,42 + 856: 7,43 + 857: 7,44 + - node: + color: '#FA750096' + id: BrickTileWhiteLineW + decals: + 662: -42,32 + 663: -42,31 + 664: -42,30 + 665: -42,29 + 670: -31,28 + 671: -31,30 + 672: -31,29 + 673: -31,31 + 674: -31,32 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 1495: -1.2506938,80.23881 + - node: + color: '#FFFFFFFF' + id: Bushh3 + decals: + 1493: -2.8444438,80.08256 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 1494: -2.0788188,79.89506 + - node: + color: '#DE3A3A96' + id: Delivery + decals: + 372: -25,46 + 373: -22,46 + 374: -19,46 + 375: -16,46 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 1214: -21,15 + 1215: -21,16 + 1216: -21,17 + 1217: -20,17 + 1218: -19,17 + 1219: -19,16 + 1220: -19,15 + 1221: -20,15 + 1222: -25,-3 + 1223: -26,-3 + 1224: -27,-3 + 1225: -28,-3 + 1226: -29,-3 + 1230: -28,-5 + 1231: -26,-5 + 1232: -27,-5 + 1233: -25,-5 + 1234: -13,-3 + 1417: -38,63 + 1620: -5,3 + 1640: -9,34 + 1641: -9,35 + 1646: -28,-5 + 1647: -29,-5 + 1704: 12,72 + 1709: 11,71 + 1710: 11,73 + 1711: 13,73 + 1712: 13,71 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 251: -24,31 + 252: -25,30 + 253: -24,30 + 254: -23,30 + 255: -24,29 + 261: -36,24 + 262: -37,24 + 263: -35,24 + 264: -36,25 + 265: -36,23 + 266: -29,30 + 267: -29,31 + 268: -30,30 + 269: -28,30 + 270: -29,29 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 565: -55,40 + 566: -54,40 + 567: -53,40 + 568: -52,40 + 569: -51,40 + 570: -50,40 + 571: -55,41 + 572: -54,41 + 573: -53,41 + 574: -52,41 + 575: -51,41 + 576: -50,41 + - node: + color: '#FA750096' + id: FullTileOverlayGreyscale + decals: + 675: -39,30 + 676: -38,30 + 677: -37,30 + 678: -35,29 + 679: -35,30 + 680: -35,31 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 552: -55,43 + 553: -54,43 + 554: -52,43 + 555: -51,43 + 556: -50,43 + 561: -49,43 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 544: -49,38 + 545: -50,38 + 546: -51,38 + 547: -52,38 + 548: -53,38 + 549: -54,38 + 550: -55,38 + 551: -56,38 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 532: -56,42 + 533: -56,41 + 534: -56,40 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 557: -48,42 + 558: -48,41 + 559: -48,40 + 560: -48,39 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNe + decals: + 1700: 10,38 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNw + decals: + 1701: 9,38 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSe + decals: + 1702: 10,37 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSw + decals: + 1703: 9,37 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 1565: -64,2 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 1437: -71,-1 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 1438: -69,2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 151: -26,53 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 150: -25,53 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 149: -24,53 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 148: -23,53 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 152: -22,53 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 153: -21,53 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 155: -20,53 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 928: 9,32 + 929: 9,27 + 1303: -19,3 + 1304: -17,3 + 1713: 12,71 + 1714: 11,72 + 1715: 13,72 + 1716: 12,73 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 531: -56,43 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 564: -48,38 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 562: -48,43 + - node: + color: '#EFB34196' + id: WarnBox + decals: + 57: -11,-5 + 58: -10,-5 + 59: -9,-5 + 62: -7,-5 + 64: -8,-5 + - node: + color: '#EFEC0893' + id: WarnBox + decals: + 84: -11,-5 + 85: -10,-5 + 86: -9,-5 + 87: -8,-5 + 88: -7,-5 + - node: + color: '#FFFF0093' + id: WarnBox + decals: + 105: -11,-5 + 106: -10,-5 + 107: -9,-5 + 108: -8,-5 + 109: -7,-5 + - node: + color: '#EFB34196' + id: WarnCornerNE + decals: + 67: -7,0 + - node: + color: '#EFEC0893' + id: WarnCornerNE + decals: + 92: -7,0 + - node: + color: '#FFFF0093' + id: WarnCornerNE + decals: + 111: -7,0 + - node: + color: '#EFB34196' + id: WarnCornerNW + decals: + 68: -11,0 + - node: + color: '#EFEC0893' + id: WarnCornerNW + decals: + 91: -11,0 + - node: + color: '#FFFF0093' + id: WarnCornerNW + decals: + 112: -11,0 + - node: + color: '#EFB34196' + id: WarnCornerSE + decals: + 66: -7,-4 + - node: + color: '#EFEC0893' + id: WarnCornerSE + decals: + 90: -7,-4 + - node: + color: '#FFFF0093' + id: WarnCornerSE + decals: + 110: -7,-4 + - node: + color: '#EFB34196' + id: WarnCornerSW + decals: + 65: -11,-4 + - node: + color: '#EFEC0893' + id: WarnCornerSW + decals: + 89: -11,-4 + - node: + color: '#FFFF0093' + id: WarnCornerSW + decals: + 113: -11,-4 + - node: + color: '#EFB34196' + id: WarnLineE + decals: + 69: -7,-3 + 70: -7,-2 + 79: -7,-1 + - node: + color: '#EFEC0893' + id: WarnLineE + decals: + 99: -7,-2 + 100: -7,-3 + 101: -7,-1 + - node: + color: '#FFFF0093' + id: WarnLineE + decals: + 114: -7,-3 + 115: -7,-2 + 116: -7,-1 + - node: + color: '#EFB34196' + id: WarnLineN + decals: + 81: -10,-4 + 82: -9,-4 + 83: -8,-4 + - node: + color: '#EFEC0893' + id: WarnLineN + decals: + 102: -10,-4 + 103: -9,-4 + 104: -8,-4 + - node: + color: '#FFFF0093' + id: WarnLineN + decals: + 123: -10,-4 + 124: -9,-4 + 125: -8,-4 + - node: + color: '#EFB34196' + id: WarnLineS + decals: + 72: -11,-3 + 73: -11,-2 + 74: -11,-1 + - node: + color: '#EFEC0893' + id: WarnLineS + decals: + 96: -11,-3 + 97: -11,-2 + 98: -11,-1 + - node: + color: '#FFFF0093' + id: WarnLineS + decals: + 117: -11,-3 + 118: -11,-2 + 119: -11,-1 + - node: + color: '#EFB34196' + id: WarnLineW + decals: + 76: -9,0 + 77: -8,0 + 80: -10,0 + - node: + color: '#EFEC0893' + id: WarnLineW + decals: + 93: -10,0 + 94: -9,0 + 95: -8,0 + - node: + color: '#FFFF0093' + id: WarnLineW + decals: + 120: -10,0 + 121: -9,0 + 122: -8,0 + - node: + color: '#FFFFFFFF' + id: bushsnowa1 + decals: + 1401: -24,70 + 1402: -23,70 + 1403: -22,70 + - node: + color: '#FFFFFFFF' + id: bushsnowb1 + decals: + 1442: -69,1 + - node: + color: '#FFFFFFFF' + id: bushsnowb2 + decals: + 1650: -36.990356,55.55721 + 1651: -37.052856,54.93221 + 1652: -36.990356,56.072834 + 1653: -7.994808,54.916584 + 1654: -7.994808,55.447834 + 1655: -7.963558,56.05721 + - node: + color: '#FFFFFFFF' + id: bushsnowb3 + decals: + 1441: -71,2 + - node: + color: '#DE3A3A96' + id: exclamationmark + decals: + 1563: -64,0 + - node: + color: '#FFFFFFFF' + id: grasssnow + decals: + 156: -34,56 + 157: -34,55 + 158: -33,56 + 159: -33,55 + 160: -32,55 + 161: -32,56 + 162: -31,56 + 163: -31,56 + 164: -30,56 + 165: -30,55 + 166: -31,55 + 167: -15,56 + 168: -14,56 + 169: -13,56 + 170: -12,56 + 171: -11,56 + 172: -11,55 + 173: -12,55 + 174: -13,55 + 175: -14,55 + 176: -15,55 + 177: -24,54 + 178: -24,55 + 179: -24,56 + 180: -23,56 + 181: -23,55 + 182: -22,56 + 183: -22,55 + 186: -23,54 + 187: -22,54 + 206: -60,39 + 207: -60,38 + 208: -59,39 + 209: -59,38 + 210: -59,39 + 211: -58,39 + 212: -58,38 + 213: -57,39 + 215: -57,38 + 1404: -24,70 + 1405: -23,70 + 1406: -22,70 + 1426: -72,40 + 1427: -72,41 + 1428: -72,42 + 1429: -72,43 + 1430: -72,44 + 1431: -72,45 + 1432: -72,46 + 1556: -23,63 + - node: + color: '#FFFFFFFF' + id: grasssnow02 + decals: + 1467: -68.87945,2.9204502 + - node: + color: '#FFFFFFFF' + id: grasssnow04 + decals: + 1475: -70.18346,-0.81155574 + 1476: -69.66783,-1.3740556 + - node: + color: '#FFFFFFFF' + id: grasssnow05 + decals: + 1465: -71.87945,0.20170009 + 1466: -70.11382,2.9673252 + - node: + color: '#FFFFFFFF' + id: grasssnow06 + decals: + 1469: -68.00445,2.0923252 + 1470: -68.0357,-1.220175 + - node: + color: '#FFFFFFFF' + id: grasssnow08 + decals: + 1464: -72.08257,-1.0483 + - node: + color: '#FFFFFFFF' + id: grasssnow10 + decals: + 139: -23,61 + 147: -23,62 + 1444: -71,-1 + 1446: -70,0 + 1447: -69,0 + 1448: -70,0 + 1449: -68,1 + 1450: -69,0 + 1457: -70.42632,-0.4545499 + 1458: -69.7232,-0.3920499 + 1459: -68.9107,0.3579501 + 1460: -68.31695,0.2798251 + 1461: -68.36382,1.1235751 + - node: + color: '#FFFFFFFF' + id: grasssnow13 + decals: + 1463: -71.89507,-1.720175 + 1468: -68.56695,3.17045 + - node: + color: '#FFFFFFFF' + id: grasssnowa1 + decals: + 1424: -72,41 + - node: + color: '#FFFFFFFF' + id: grasssnowa2 + decals: + 1451: -71,3 + 1452: -71.0982,2.4985752 + 1453: -71.30132,1.6392002 + 1454: -70.86382,1.4673251 + 1455: -71.30132,0.9985751 + 1456: -70.86382,0.3579501 + 1472: -68.0357,-1.813925 + 1473: -69.71471,-1.3428056 + 1474: -69.93346,-1.8428056 + - node: + color: '#FFFFFFFF' + id: grasssnowb1 + decals: + 1421: -72,44 + 1656: -7.994808,55.90096 + 1657: -7.994808,55.27596 + - node: + color: '#FFFFFFFF' + id: grasssnowb2 + decals: + 1422: -72,43 + - node: + color: '#FFFFFFFF' + id: grasssnowb3 + decals: + 1555: -23,63 + - node: + color: '#FFFFFFFF' + id: grasssnowc1 + decals: + 143: -23,61 + 146: -23,62 + 1419: -72,46 + 1420: -72,45 + 1423: -72,42 + 1440: -71,0 + - node: + color: '#FFFFFFFF' + id: grasssnowc2 + decals: + 1648: -37,56 + 1649: -37,55 + 1661: -18.00116,11.9928 + - node: + color: '#FFFFFFFF' + id: grasssnowc3 + decals: + 1407: -24,70 + 1408: -23,70 + 1409: -22,70 + 1425: -72,40 + 1462: -70.4732,-1.6108 + - node: + color: '#52B4E996' + id: med + decals: + 983: -29,21 + 984: -30,21 + 985: -44,24 + 986: -44,25 + - node: + color: '#9B0000FF' + id: rune1 + decals: + 1433: -50,11 + - node: + color: '#9B0000FF' + id: rune4 + decals: + 1436: -50,9 + - node: + color: '#9B0000FF' + id: rune5 + decals: + 1435: -49,10 + - node: + color: '#9B0000FF' + id: rune6 + decals: + 1434: -51,10 + - node: + color: '#571212FF' + id: splatter + decals: + 1477: -65.526375,1.5339541 + 1478: -64.245125,1.3777041 + 1479: -64.417,2.5808291 + - node: + color: '#DE3A3A96' + id: trade + decals: + 1564: -59,72 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 61166 + 0,1: + 0: 40959 + -1,1: + 0: 3839 + 0,2: + 0: 48059 + -1,2: + 0: 61166 + 0,3: + 0: 14523 + -1,3: + 0: 63726 + 0,4: + 0: 30079 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 1,-1: + 0: 65535 + 1,4: + 0: 36863 + 2,0: + 0: 30583 + 2,1: + 0: 30583 + 2,2: + 0: 30583 + 2,3: + 0: 30583 + 2,-1: + 0: 32512 + 1: 6 + 2,4: + 0: 6007 + 3,0: + 2: 16368 + 1: 49152 + 3,1: + 2: 4369 + 1: 192 + 3: 49152 + 3,2: + 2: 4369 + 1: 49344 + 3,3: + 2: 4369 + 1: 192 + 4: 49152 + 3,-1: + 0: 65280 + 2: 7 + 3,4: + 2: 61713 + 5: 192 + 4,0: + 2: 18288 + 1: 4096 + 4,1: + 1: 16 + 3: 4096 + 2: 17476 + 4,2: + 1: 4112 + 2: 17476 + 4,3: + 1: 16 + 4: 4096 + 2: 17476 + -4,0: + 0: 65535 + -5,0: + 0: 48059 + -4,1: + 0: 61695 + -5,1: + 0: 46011 + -4,2: + 0: 65535 + -5,2: + 0: 49147 + -4,3: + 0: 62463 + -5,3: + 0: 45963 + -4,4: + 0: 62463 + -4,-1: + 0: 57594 + -3,1: + 0: 65262 + -3,2: + 0: 65535 + -3,3: + 0: 45311 + -3,0: + 0: 57582 + -3,4: + 0: 61883 + -3,-1: + 0: 61183 + -2,0: + 0: 63931 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 47615 + -2,-1: + 0: 48059 + -2,4: + 0: 61883 + -1,4: + 0: 63743 + 0,-4: + 2: 29491 + 0,-5: + 2: 16159 + -1,-4: + 2: 43690 + 0,-3: + 2: 13107 + -1,-3: + 2: 63674 + 0,-2: + 2: 23 + 0: 64512 + -1,-2: + 2: 255 + 0: 30464 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65391 + 1,-5: + 0: 18176 + 2: 15 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 15 + 1: 26112 + 3,-4: + 0: 13107 + 2: 34952 + 3,-3: + 0: 13107 + 2: 34952 + 3,-2: + 0: 3 + 2: 32712 + 3,-5: + 2: 36815 + 4,-4: + 2: 273 + 4,-1: + 0: 62924 + -8,0: + 2: 4096 + 0: 49356 + -9,0: + 2: 61713 + -8,1: + 0: 3548 + -9,1: + 0: 19952 + -8,2: + 0: 65535 + -9,2: + 0: 65535 + -8,3: + 0: 65327 + -9,3: + 0: 65295 + -8,4: + 0: 61695 + -7,0: + 0: 47547 + -7,1: + 0: 35835 + -7,2: + 0: 49083 + -7,3: + 0: 57099 + -7,4: + 0: 61661 + -7,-1: + 0: 36863 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65359 + -6,4: + 0: 61695 + -5,-1: + 0: 16383 + -5,4: + 0: 61627 + -8,-4: + 2: 10383 + 0: 32816 + -8,-5: + 0: 12336 + 2: 34959 + -9,-4: + 2: 15 + 0: 240 + -8,-3: + 2: 3 + 0: 51336 + -9,-3: + 2: 34959 + -8,-2: + 2: 1 + 0: 52236 + -9,-2: + 2: 34952 + -8,-1: + 2: 1 + 0: 3276 + -9,-1: + 2: 4383 + -7,-4: + 2: 43791 + 0: 224 + -7,-3: + 0: 4128 + 2: 17486 + -7,-2: + 0: 61713 + 2: 196 + -7,-5: + 0: 57568 + 2: 2063 + -6,-4: + 2: 15 + 0: 16 + -6,-3: + 2: 15 + -6,-2: + 2: 240 + 0: 45056 + -6,-1: + 0: 3003 + -6,-5: + 0: 4112 + 2: 15 + -5,-4: + 2: 61167 + -5,-3: + 2: 61167 + -5,-2: + 2: 254 + 0: 61440 + -5,-5: + 2: 61167 + -4,-3: + 2: 61666 + -4,-2: + 2: 255 + 0: 41472 + -4,-4: + 2: 43690 + -4,-5: + 2: 64170 + -3,-4: + 2: 63628 + -3,-3: + 2: 63736 + -3,-2: + 2: 255 + 0: 61440 + -3,-5: + 2: 64648 + -2,-4: + 2: 63625 + -2,-3: + 2: 61680 + -2,-2: + 2: 255 + 0: 47104 + -2,-5: + 2: 63880 + -1,-1: + 0: 1911 + -1,-5: + 2: 64170 + -4,-8: + 2: 65280 + -5,-8: + 2: 52292 + -4,-7: + 2: 65295 + -5,-7: + 2: 61007 + -4,-6: + 2: 41696 + -3,-8: + 2: 65280 + -3,-7: + 2: 65423 + -3,-6: + 2: 63736 + -2,-8: + 2: 65280 + -2,-7: + 2: 65295 + -2,-6: + 2: 61680 + -1,-8: + 2: 65280 + -1,-7: + 2: 65295 + -1,-6: + 2: 43704 + 0,-8: + 2: 61696 + 0,-7: + 2: 4369 + 0,-6: + 2: 62259 + -8,-8: + 0: 12288 + 2: 34816 + -8,-7: + 2: 34959 + 0: 12336 + -9,-8: + 0: 61440 + 2: 2184 + -9,-7: + 2: 15 + 0: 61680 + -8,-6: + 2: 34959 + 0: 12336 + -9,-6: + 2: 15 + 0: 61680 + -9,-5: + 2: 15 + 0: 61680 + -7,-7: + 2: 2063 + 0: 57568 + -7,-6: + 2: 2063 + 0: 57568 + -7,-8: + 0: 57344 + -6,-8: + 0: 4096 + -6,-7: + 2: 15 + 0: 4112 + -6,-6: + 2: 1 + 0: 4112 + -5,-6: + 2: 61166 + -5,-9: + 2: 28672 + 1,-8: + 2: 12288 + 1,-6: + 2: 29766 + 1,-7: + 2: 11810 + 2,-7: + 2: 3840 + 2,-5: + 2: 3855 + 3,-7: + 2: 3840 + 4,-7: + 2: 4352 + 4,-5: + 2: 4369 + -4,5: + 0: 61695 + -5,5: + 0: 53503 + -4,6: + 0: 61951 + -5,6: + 0: 61661 + -4,7: + 0: 65359 + -5,7: + 0: 32527 + -4,8: + 0: 62207 + -3,5: + 0: 57599 + -3,6: + 0: 61678 + -3,7: + 0: 48015 + -3,8: + 0: 63675 + -2,5: + 0: 57599 + -2,6: + 0: 63727 + -2,7: + 0: 60943 + -2,8: + 0: 62350 + -1,5: + 0: 28927 + -1,6: + 0: 57463 + -1,7: + 0: 30470 + -1,8: + 0: 62071 + 0,5: + 0: 30711 + 0,6: + 0: 30711 + 0,7: + 0: 30583 + -9,4: + 0: 62207 + -8,5: + 0: 60671 + -9,5: + 0: 61695 + -8,6: + 0: 60671 + -9,6: + 0: 28671 + -8,7: + 0: 65278 + -9,7: + 0: 65535 + -8,8: + 0: 14574 + -7,5: + 0: 61695 + -7,6: + 0: 61695 + -7,7: + 0: 65535 + -7,8: + 0: 4095 + -6,5: + 0: 61695 + -6,6: + 0: 62719 + -6,7: + 0: 65407 + -6,8: + 0: 33791 + -5,8: + 0: 61559 + -12,4: + 0: 61627 + -12,3: + 0: 39742 + -12,5: + 0: 56783 + -13,4: + 0: 62054 + -13,5: + 0: 64799 + -12,6: + 0: 56781 + -13,6: + 0: 64797 + -12,7: + 0: 57293 + -13,7: + 0: 65309 + -12,8: + 0: 64733 + -11,4: + 0: 62207 + -11,5: + 0: 53759 + -11,6: + 0: 7679 + -11,7: + 0: 64989 + -11,3: + 0: 65311 + -11,8: + 0: 61917 + -10,4: + 0: 62566 + -10,5: + 0: 61695 + -10,6: + 0: 49151 + -10,7: + 0: 65535 + -10,3: + 0: 32358 + -10,8: + 0: 61695 + -9,8: + 0: 62719 + -12,0: + 0: 36792 + -12,-1: + 0: 56704 + 2: 2 + -13,0: + 0: 36856 + -12,1: + 0: 43955 + -13,1: + 0: 24831 + -12,2: + 0: 58026 + -13,2: + 0: 61166 + -13,3: + 0: 28384 + -11,0: + 0: 65520 + -11,1: + 0: 65520 + -11,2: + 0: 62207 + -11,-1: + 0: 13056 + 2: 34956 + -10,0: + 0: 10080 + -10,2: + 0: 30310 + -10,-1: + 2: 61455 + -10,1: + 0: 28390 + 0,8: + 0: 63351 + 1,5: + 0: 65535 + 1,6: + 0: 49392 + 2: 4096 + 1,7: + 2: 4113 + 0: 49356 + 1,8: + 2: 17 + 0: 45260 + 2,5: + 0: 30583 + 2,6: + 0: 58098 + 2,7: + 0: 61167 + 2,8: + 0: 62703 + 3,5: + 0: 8176 + 3,6: + 0: 14557 + 3,7: + 0: 64443 + 3,8: + 0: 63675 + 4,4: + 5: 16 + 2: 29764 + 4,5: + 0: 4080 + 4,6: + 0: 53247 + 4,7: + 0: 64989 + 5,0: + 0: 4369 + 5,1: + 0: 65297 + 5,2: + 0: 65535 + 5,3: + 0: 65521 + 5,-1: + 0: 4096 + 5,4: + 0: 65535 + 6,3: + 0: 4368 + 6,4: + 0: 4369 + 2: 49152 + 4,8: + 0: 61917 + 5,5: + 0: 43953 + 5,7: + 0: 65535 + 5,6: + 0: 3810 + 5,8: + 0: 28927 + 6,5: + 0: 13104 + 2: 32768 + 6,6: + 0: 26416 + 2: 8 + 6,7: + 0: 26238 + 6,8: + 0: 30310 + 7,4: + 2: 61440 + 7,5: + 2: 61440 + 7,6: + 2: 17 + 0: 28672 + 7,7: + 0: 127 + 8,4: + 2: 61440 + 8,5: + 2: 12834 + 8,6: + 2: 36608 + 8,7: + 2: 18319 + -12,-3: + 2: 8751 + -13,-3: + 2: 15 + -13,-1: + 0: 56704 + -12,-2: + 2: 8738 + -11,-3: + 2: 34959 + -11,-4: + 2: 34952 + -11,-5: + 2: 34952 + -10,-3: + 2: 15 + -11,-2: + 2: 34952 + -10,-4: + 2: 12 + 0: 192 + -10,-5: + 0: 49344 + 2: 15 + -11,-8: + 2: 34952 + -11,-9: + 2: 32768 + -11,-7: + 2: 34952 + -10,-7: + 2: 15 + 0: 49344 + -11,-6: + 2: 34952 + -10,-8: + 0: 49152 + -10,-6: + 2: 12 + 0: 49344 + -9,-9: + 2: 61440 + -16,0: + 0: 29631 + -16,-1: + 0: 65280 + 2: 8 + -17,0: + 0: 56797 + -16,1: + 0: 3952 + -17,1: + 0: 4080 + -16,2: + 0: 65262 + -17,2: + 0: 65535 + -16,3: + 0: 61166 + -17,3: + 0: 4095 + -16,4: + 0: 57598 + -15,0: + 0: 65535 + -15,1: + 0: 4095 + -15,2: + 0: 65535 + -15,3: + 0: 65535 + -15,-1: + 0: 65280 + -15,4: + 0: 65279 + -14,0: + 0: 3545 + -14,1: + 0: 49631 + -14,2: + 0: 65535 + -14,3: + 0: 65535 + -14,-1: + 0: 56704 + -14,4: + 0: 61695 + -17,4: + 0: 61167 + -16,5: + 0: 65534 + -17,5: + 0: 28262 + -16,6: + 0: 65535 + -16,7: + 0: 35599 + -16,8: + 0: 61619 + -15,5: + 0: 47935 + -15,6: + 0: 47931 + -15,7: + 0: 64283 + -14,5: + 0: 64399 + -14,6: + 0: 64395 + -14,7: + 0: 64395 + -15,8: + 0: 61608 + -14,8: + 0: 61883 + -13,8: + 0: 61695 + 4,9: + 0: 65535 + 3,9: + 0: 65535 + 4,10: + 0: 56655 + 3,10: + 0: 65295 + 4,11: + 0: 56477 + 3,11: + 0: 61695 + 4,12: + 0: 241 + 5,9: + 0: 24695 + 5,10: + 0: 30534 + 5,11: + 0: 30471 + 6,9: + 0: 63351 + 6,10: + 0: 47871 + 6,11: + 0: 55800 + 6,12: + 0: 221 + 7,9: + 0: 4096 + 2: 3072 + 7,10: + 0: 12307 + 7,11: + 0: 12339 + 7,12: + 0: 51 + 8,9: + 2: 500 + -17,8: + 0: 62574 + -16,9: + 0: 30479 + -17,9: + 0: 26191 + -16,10: + 0: 30583 + -17,10: + 0: 28262 + -16,11: + 0: 65522 + -16,12: + 0: 61439 + -15,9: + 0: 65295 + -15,10: + 0: 32631 + -15,11: + 0: 65524 + -15,12: + 0: 65535 + -14,9: + 0: 65295 + -14,10: + 0: 65535 + -14,11: + 0: 64984 + -14,12: + 0: 57311 + -13,9: + 0: 65295 + -13,10: + 0: 65535 + -13,11: + 0: 65532 + -13,12: + 0: 4351 + 6: 57344 + -12,9: + 0: 56783 + -12,10: + 0: 65503 + -12,11: + 0: 65500 + -12,12: + 0: 60639 + 6: 4096 + -11,9: + 0: 56605 + -11,10: + 0: 56605 + -11,11: + 0: 40413 + -11,12: + 0: 7645 + -10,9: + 0: 65039 + -10,10: + 0: 65294 + -10,11: + 0: 4095 + -10,12: + 0: 3822 + -9,9: + 0: 47879 + -9,10: + 0: 56723 + -9,11: + 0: 52735 + -9,12: + 0: 36319 + -8,9: + 0: 56607 + -8,10: + 0: 7645 + -8,11: + 0: 65535 + -20,4: + 0: 7 + 2: 61440 + -20,3: + 0: 63247 + -21,4: + 2: 50288 + -19,4: + 2: 12288 + -19,3: + 0: 65287 + -19,5: + 2: 198 + -18,4: + 0: 65327 + -18,5: + 2: 8752 + -18,3: + 0: 30535 + -18,6: + 2: 57890 + -18,7: + 2: 57890 + -18,8: + 2: 34 + 0: 61440 + -17,6: + 0: 26214 + -17,7: + 0: 26214 + -20,9: + 0: 3072 + -20,10: + 0: 12 + -20,11: + 0: 3072 + -20,12: + 0: 12 + -19,9: + 0: 53196 + -19,10: + 0: 52431 + 2: 4352 + -19,11: + 0: 53196 + 2: 1 + -19,12: + 0: 52431 + -19,8: + 0: 49152 + -18,9: + 0: 65407 + -18,10: + 0: 65535 + -18,11: + 0: 65535 + -18,12: + 0: 53759 + -17,11: + 0: 26215 + -17,12: + 0: 30310 + -20,0: + 0: 65311 + -20,-1: + 0: 61440 + -21,0: + 0: 52224 + 2: 256 + -20,1: + 0: 65535 + -21,1: + 0: 36044 + 2: 256 + -20,2: + 0: 65535 + -21,2: + 0: 3242 + 2: 256 + -21,3: + 0: 61440 + 2: 16 + -19,0: + 0: 30479 + -19,1: + 0: 32631 + -19,2: + 0: 30583 + -19,-1: + 0: 28672 + 2: 68 + -18,0: + 0: 65535 + -18,1: + 0: 32754 + -18,2: + 0: 30579 + -18,-1: + 0: 65280 + -17,-1: + 0: 56576 + -4,9: + 0: 65327 + -5,9: + 0: 30478 + -4,10: + 0: 65535 + -4,11: + 0: 56799 + -5,10: + 0: 62327 + -5,11: + 0: 49151 + -4,12: + 0: 3357 + -3,9: + 0: 65256 + -3,10: + 0: 62702 + -3,11: + 0: 58991 + -3,12: + 0: 4079 + -2,9: + 0: 30576 + -2,10: + 0: 61559 + -2,11: + 0: 65295 + -2,12: + 0: 4095 + -1,9: + 0: 30704 + -1,10: + 0: 61815 + -1,11: + 0: 30471 + -1,12: + 0: 1911 + 0,9: + 0: 65535 + 0,10: + 0: 30719 + 0,11: + 0: 63359 + -8,12: + 0: 21845 + -7,9: + 0: 62735 + 7: 2560 + -7,10: + 0: 8189 + 7: 2 + -7,11: + 0: 57343 + -7,12: + 0: 7645 + -6,9: + 0: 47887 + -6,10: + 0: 37819 + -6,11: + 0: 28671 + -6,12: + 0: 1638 + -5,12: + 0: 3003 + 0,12: + 0: 30583 + 1,9: + 0: 65471 + 1,10: + 0: 47295 + 1,11: + 0: 61631 + 1,12: + 0: 8191 + 2,9: + 0: 65535 + 2,10: + 0: 56735 + 2,11: + 0: 61917 + 2,12: + 0: 4095 + 3,12: + 0: 143 + 2: 29440 + -12,13: + 6: 1 + 0: 65484 + -13,13: + 6: 14 + 0: 65280 + -12,14: + 0: 65535 + -13,14: + 0: 65528 + -12,15: + 0: 65535 + -13,15: + 0: 65535 + -11,13: + 0: 65535 + -11,14: + 0: 65535 + -11,15: + 0: 65535 + -11,16: + 0: 30577 + -10,13: + 0: 65535 + -10,14: + 0: 32767 + -10,15: + 0: 63351 + -10,16: + 0: 30577 + -9,13: + 0: 65535 + -9,14: + 0: 4095 + -9,15: + 0: 65535 + -9,16: + 0: 30479 + -8,13: + 0: 65535 + -8,14: + 0: 8191 + -8,15: + 0: 48059 + -16,13: + 0: 65535 + -17,13: + 0: 30495 + -16,14: + 0: 65535 + -16,15: + 0: 65423 + -17,15: + 0: 65303 + -16,16: + 0: 65524 + -15,13: + 0: 65535 + -15,14: + 0: 65535 + -15,15: + 0: 65295 + -15,16: + 0: 56788 + -14,13: + 0: 65293 + -14,15: + 0: 65518 + -14,14: + 0: 61152 + -13,16: + 0: 65524 + -20,13: + 0: 65280 + -21,13: + 0: 65280 + -20,14: + 0: 31 + -21,14: + 0: 15 + -19,13: + 0: 65484 + -19,14: + 0: 52431 + -19,15: + 0: 52428 + -19,16: + 0: 52428 + -18,13: + 0: 56597 + -18,14: + 0: 56829 + -18,15: + 0: 65309 + -18,16: + 0: 7637 + -17,14: + 0: 30583 + -17,16: + 0: 17749 + -8,16: + 0: 47899 + -7,13: + 0: 65535 + -7,14: + 0: 8191 + -7,15: + 0: 48059 + -7,16: + 0: 65291 + -6,13: + 0: 65535 + -6,14: + 0: 32767 + -6,15: + 0: 65535 + -6,16: + 0: 65407 + -5,13: + 0: 65535 + -5,14: + 0: 4095 + -5,15: + 0: 61166 + -5,16: + 0: 45295 + -4,13: + 0: 65535 + -4,14: + 0: 8191 + -4,15: + 0: 65535 + -4,16: + 0: 61695 + -3,13: + 0: 65535 + -3,14: + 0: 20479 + -3,15: + 0: 61166 + -3,16: + 0: 19982 + -2,13: + 0: 65535 + -2,14: + 0: 61439 + -2,15: + 0: 61166 + -2,16: + 0: 12014 + -1,13: + 0: 16383 + -1,14: + 0: 15291 + -1,15: + 0: 49147 + -1,16: + 0: 40959 + 0,13: + 0: 1911 + 0,14: + 0: 36319 + 0,15: + 0: 65535 + -16,17: + 0: 4088 + -17,17: + 0: 16375 + -16,18: + 0: 4095 + -17,18: + 0: 14779 + -16,19: + 0: 768 + 2: 3072 + -17,19: + 0: 16179 + -15,17: + 0: 12272 + -15,18: + 0: 4095 + -15,19: + 2: 7953 + -15,20: + 2: 4369 + 0: 43690 + -14,16: + 0: 30576 + -14,17: + 0: 4082 + -14,18: + 0: 4095 + -14,19: + 2: 7953 + -14,20: + 2: 4369 + 0: 43690 + -13,17: + 0: 4084 + -13,19: + 2: 7953 + -13,18: + 0: 3822 + -13,20: + 2: 4369 + 0: 43690 + -12,16: + 0: 56784 + -12,17: + 0: 53232 + -12,18: + 0: 285 + 2: 17408 + -12,19: + 2: 40772 + -20,16: + 0: 4096 + -20,17: + 0: 4095 + -21,17: + 0: 4095 + -20,18: + 2: 3840 + -21,18: + 2: 3840 + -19,17: + 0: 4095 + -19,18: + 0: 238 + 2: 36864 + -19,19: + 2: 34959 + -18,17: + 0: 52733 + -18,18: + 0: 33023 + -19,20: + 2: 136 + -18,19: + 0: 34952 + -17,20: + 2: 248 + -12,20: + 2: 39321 + 0: 8738 + -11,17: + 0: 65520 + -11,18: + 0: 15 + -10,17: + 0: 26238 + -10,18: + 0: 238 + -9,17: + 0: 18295 + -9,18: + 0: 511 + -8,17: + 0: 57535 + -8,18: + 0: 7 + 2: 58880 + 4,14: + 2: 119 + 3,14: + 2: 29932 + 0: 16 + 4,15: + 2: 4369 + 3,15: + 2: 15 + 0: 30208 + 4,16: + 2: 4369 + 5,12: + 0: 240 + 0,16: + 0: 65535 + 1,13: + 0: 56829 + 1,14: + 0: 36817 + 1,15: + 0: 48059 + 1,16: + 0: 46011 + 2,13: + 0: 30711 + 2,14: + 0: 30705 + 2,15: + 0: 65399 + 2,16: + 0: 62463 + 3,13: + 0: 48 + 2: 29764 + 3,16: + 0: 28774 + 0,17: + 0: 47359 + -1,17: + 0: 55487 + 0,18: + 0: 47291 + -1,18: + 0: 54749 + 0,19: + 0: 15243 + -1,19: + 0: 65309 + 0,20: + 0: 12287 + 1,17: + 0: 63743 + 1,18: + 0: 65535 + 1,19: + 0: 4095 + 1,20: + 0: 36863 + 2,17: + 0: 65535 + 2,18: + 0: 65535 + 2,19: + 0: 8191 + 2,20: + 0: 12287 + 3,17: + 0: 30583 + 3,18: + 0: 63351 + 3,19: + 0: 2039 + 4,17: + 2: 4369 + 4,18: + 2: 1 + 0: 29440 + 4,19: + 0: 880 + -4,17: + 0: 4095 + -5,17: + 0: 15355 + -4,18: + 0: 11003 + -5,18: + 0: 65535 + -4,19: + 0: 8738 + 2: 23944 + -5,19: + 2: 2288 + -4,20: + 2: 54613 + 0: 8738 + -3,17: + 0: 3838 + -3,18: + 0: 4095 + -3,19: + 2: 136 + -2,19: + 2: 48 + 0: 34952 + -2,17: + 0: 58982 + -2,18: + 0: 44686 + -2,20: + 0: 2184 + 2: 12288 + -1,20: + 0: 36863 + -7,17: + 0: 65535 + -7,18: + 0: 52991 + -8,19: + 2: 34952 + -7,19: + 0: 4369 + 2: 224 + -8,20: + 2: 34952 + -7,20: + 0: 4369 + 2: 57344 + -6,17: + 0: 65535 + -6,18: + 0: 65535 + -6,19: + 2: 43696 + 0: 17472 + -6,20: + 2: 47786 + 0: 17476 + -24,13: + 0: 51200 + -24,14: + 0: 8 + -23,13: + 0: 64256 + -23,14: + 0: 11 + -22,13: + 0: 65280 + -22,14: + 0: 47 + -24,18: + 2: 3976 + -24,17: + 0: 2248 + -23,17: + 0: 3067 + -23,18: + 2: 3840 + -22,17: + 0: 4095 + -22,18: + 2: 3976 + -22,16: + 0: 8192 + -4,21: + 2: 5 + 0: 8738 + -5,20: + 2: 61440 + -5,21: + 2: 15 + 0: 65280 + -4,22: + 0: 13107 + 2: 8 + -5,22: + 0: 48015 + -4,23: + 2: 4224 + -4,24: + 2: 287 + -3,20: + 2: 61440 + -3,22: + 2: 4369 + -3,23: + 2: 4369 + -3,21: + 2: 4369 + -3,24: + 2: 1 + -1,21: + 0: 2184 + 0,21: + 0: 546 + 2: 8 + 1,21: + 2: 3 + 0: 2184 + 2,21: + 0: 546 + -10,-9: + 2: 61440 + -8,-9: + 2: 61440 + -7,-9: + 2: 61440 + -6,-9: + 2: 61440 + 8,8: + 2: 17476 + 9,4: + 2: 61440 + 9,6: + 0: 1365 + 2: 8738 + 9,7: + 2: 8751 + 0: 21760 + 9,5: + 0: 21840 + 2: 8736 + 9,8: + 0: 21845 + 2: 8738 + 10,4: + 2: 61440 + 10,7: + 2: 8751 + 0: 21760 + 10,5: + 0: 21840 + 2: 8738 + 10,6: + 0: 1365 + 2: 8738 + 10,8: + 0: 21845 + 2: 8738 + 11,4: + 2: 61440 + 11,7: + 2: 8751 + 0: 21760 + 11,5: + 0: 21840 + 2: 8736 + 11,6: + 0: 1365 + 2: 8738 + 11,8: + 0: 21845 + 2: 8738 + 12,4: + 2: 61440 + 12,7: + 2: 8751 + 0: 21760 + 12,5: + 0: 21840 + 2: 8736 + 12,6: + 0: 1365 + 2: 10786 + 12,8: + 0: 21845 + 2: 8866 + 13,4: + 2: 12288 + 13,6: + 2: 18210 + 13,7: + 2: 5957 + 13,8: + 2: 4369 + 13,5: + 2: 8738 + 9,9: + 2: 240 + 10,9: + 2: 242 + 11,9: + 2: 240 + 12,9: + 2: 240 + 13,9: + 2: 17 + -20,-3: + 2: 29772 + -21,-3: + 2: 61440 + -19,-3: + 2: 17487 + -19,-2: + 2: 17476 + -18,-3: + 2: 15 + -17,-3: + 2: 15 + -16,-3: + 2: 34959 + -15,-3: + 2: 15 + -16,-2: + 2: 34952 + -14,-3: + 2: 15 + -16,20: + 2: 8752 + 0: 34952 + -16,21: + 2: 8802 + 0: 34952 + -16,22: + 2: 8738 + 0: 136 + -16,23: + 2: 226 + -15,21: + 2: 4433 + 0: 43690 + -15,22: + 2: 61713 + 0: 170 + -15,23: + 2: 240 + -14,21: + 2: 4433 + 0: 43690 + -14,22: + 2: 61713 + 0: 170 + -14,23: + 2: 61780 + -13,21: + 2: 4433 + 0: 43690 + -13,22: + 2: 61713 + 0: 170 + -13,23: + 2: 4592 + -12,21: + 2: 39385 + 0: 8738 + -12,22: + 2: 39321 + 0: 34 + -12,23: + 2: 248 + -8,21: + 2: 12734 + -8,22: + 2: 12561 + 0: 34952 + -9,21: + 2: 61440 + -8,23: + 2: 29969 + -9,23: + 2: 15 + -8,24: + 2: 3140 + -7,21: + 0: 63505 + 2: 14 + -7,22: + 0: 47931 + -7,23: + 0: 136 + -6,21: + 2: 11 + 0: 65284 + -6,22: + 0: 24399 + -6,23: + 0: 3861 + -5,23: + 0: 307 + -7,24: + 2: 3840 + -6,24: + 2: 3904 + -5,24: + 2: 3840 + -18,20: + 2: 240 + 4,-3: + 0: 61152 + 4,-2: + 0: 52420 + 5,-3: + 0: 30576 + -11,21: + 2: 2288 + -11,23: + 2: 15 + -10,21: + 2: 36608 + -10,23: + 2: 15 + 4,-6: + 2: 4369 + -22,-1: + 2: 12000 + -22,0: + 2: 12066 + -21,-1: + 2: 1809 + -21,-2: + 2: 4369 + -24,0: + 2: 12032 + -25,0: + 2: 12032 + -24,1: + 0: 21845 + 2: 10786 + -25,1: + 2: 10786 + 0: 21845 + -24,2: + 0: 21845 + 2: 10786 + -25,2: + 2: 10786 + 0: 21845 + -24,3: + 0: 85 + 2: 61986 + -25,3: + 2: 61986 + 0: 85 + -24,4: + 2: 242 + -23,0: + 2: 12032 + -23,1: + 0: 21845 + 2: 10786 + -23,2: + 0: 21845 + 2: 10786 + -23,3: + 2: 61986 + 0: 85 + -23,4: + 2: 242 + -22,1: + 0: 21845 + 2: 10786 + -22,2: + 0: 21845 + 2: 10786 + -22,3: + 2: 62114 + 0: 85 + -22,4: + 2: 242 + -25,4: + 2: 242 + -26,0: + 2: 11776 + -26,1: + 2: 11810 + -26,2: + 2: 11810 + -26,3: + 2: 41506 + -26,4: + 2: 226 + 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 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap + - type: BecomesStation + id: Loop +- proto: AcousticGuitarInstrument + entities: + - uid: 2659 + components: + - type: Transform + pos: -28.379654,6.5276575 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: -51.653458,67.47801 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: -17.44476,38.603394 + parent: 2 +- proto: ActionToggleInternals + entities: + - uid: 5996 + components: + - type: Transform + parent: 5994 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5994 + - uid: 13520 + components: + - type: Transform + parent: 5511 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5511 + - uid: 13768 + components: + - type: Transform + parent: 5512 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5512 +- proto: ActionToggleJetpack + entities: + - uid: 5995 + components: + - type: Transform + parent: 5994 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5994 + - uid: 13519 + components: + - type: Transform + parent: 5511 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5511 + - uid: 13532 + components: + - type: Transform + parent: 5512 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5512 +- proto: ActionToggleLight + entities: + - uid: 6242 + components: + - type: Transform + parent: 6530 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 6530 + - uid: 6714 + components: + - type: Transform + parent: 6713 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 6713 + - uid: 6717 + components: + - type: Transform + parent: 6715 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 6715 +- proto: AirAlarm + entities: + - uid: 21 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 3394 + - 14397 + - 12590 + - 11592 + - 11604 + - 12610 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 11556 + - 11472 + - 11501 + - 11502 + - 11871 + - 6197 + - 6198 + - 6199 + - 4222 + - 6202 + - 6201 + - 6200 + - uid: 158 + components: + - type: Transform + pos: -33.5,65.5 + parent: 2 + - type: DeviceList + devices: + - 7344 + - 11371 + - 11367 + - 2645 + - 10470 + - 11828 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 11316 + - 11318 + - 1957 + - 11936 + - uid: 936 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 4823 + - 218 + - 1196 + - 11607 + - 12612 + - 605 + - uid: 2728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 12247 + - 5713 + - 4822 + - 11455 + - 11451 + - 5569 + - 11453 + - 11454 + - uid: 3024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 11472 + - 11468 + - 1615 + - 11467 + - 6159 + - uid: 4285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 11528 + - 12427 + - uid: 4374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 11526 + - 12402 + - 11521 + - 6175 + - 6178 + - 11530 + - 11515 + - uid: 5595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,85.5 + parent: 2 + - type: DeviceList + devices: + - 10480 + - 10489 + - 10481 + - 10519 + - 10494 + - uid: 5603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 9750 + - 5036 + - 5034 + - 5604 + - 430 + - 12071 + - uid: 5658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 10535 + - 11399 + - 1169 + - 10472 + - 12009 + - uid: 5700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,60.5 + parent: 2 + - type: DeviceList + devices: + - 3020 + - 11320 + - 11319 + - 11321 + - 4608 + - 4950 + - 4352 + - 11962 + - uid: 5853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 1356 + - 5721 + - 11449 + - 11466 + - 11465 + - 11453 + - 12237 + - uid: 5941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 12251 + - 12207 + - 11435 + - 5659 + - 5908 + - 1872 + - 11430 + - 5720 + - 11433 + - 11432 + - 11431 + - 11434 + - uid: 6231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,73.5 + parent: 2 + - type: DeviceList + devices: + - 11364 + - 6267 + - 11365 + - uid: 6600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 11419 + - 11197 + - 6286 + - 6285 + - 6284 + - 6283 + - 6282 + - 6280 + - 6279 + - 6278 + - 6277 + - 469 + - 6967 + - 6589 + - 6219 + - 6222 + - 6276 + - 7297 + - 12152 + - 12165 + - 13579 + - 1798 + - uid: 6838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,61.5 + parent: 2 + - type: DeviceList + devices: + - 1420 + - 11332 + - 11331 + - 11827 + - 3523 + - uid: 9991 + components: + - type: Transform + pos: -51.5,50.5 + parent: 2 + - type: DeviceList + devices: + - 1981 + - 1982 + - 6183 + - 11418 + - 11415 + - 6275 + - 6967 + - 469 + - 11419 + - 10504 + - 11423 + - 12145 + - 10003 + - 8251 + - uid: 10270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,43.5 + parent: 2 + - type: DeviceList + devices: + - 6286 + - 6285 + - 6284 + - 6283 + - 6282 + - 6280 + - 6279 + - 6278 + - 6277 + - 3132 + - 11424 + - 2719 + - 7297 + - 10186 + - 11419 + - 12164 + - 361 + - uid: 10324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 6276 + - 11425 + - 6275 + - 10504 + - 10824 + - 10823 + - 6273 + - 11417 + - 11416 + - 11426 + - 11423 + - 12151 + - 10003 + - uid: 10350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,43.5 + parent: 2 + - type: DeviceList + devices: + - 12761 + - 12760 + - 12759 + - 10526 + - 11506 + - 6304 + - 6303 + - 12705 + - 12704 + - 12703 + - 12702 + - 10978 + - 6301 + - 6300 + - 361 + - uid: 10453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,60.5 + parent: 2 + - type: DeviceList + devices: + - 6227 + - 6228 + - 1421 + - 1160 + - 2054 + - 3512 + - 6300 + - 6301 + - 10978 + - 5036 + - 5034 + - 9750 + - 10447 + - 10513 + - 10405 + - 10526 + - 12035 + - 12036 + - uid: 10456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 2566 + - 2428 + - 11373 + - 11372 + - 11886 + - uid: 10457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 11323 + - 11314 + - 1959 + - 6269 + - 6268 + - 1957 + - 6270 + - 6271 + - 6182 + - 11935 + - 16394 + - 14720 + - 13029 + - 13028 + - uid: 10458 + components: + - type: Transform + pos: -19.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 15388 + - 11325 + - 11867 + - 10460 + - 6250 + - 6249 + - 6248 + - 5937 + - 4763 + - 6239 + - 6238 + - 6237 + - 6234 + - 6233 + - 2645 + - 2654 + - 6108 + - 6246 + - 6245 + - 6244 + - 6241 + - 3523 + - 1420 + - 1984 + - 11866 + - uid: 10462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,60.5 + parent: 2 + - type: DeviceList + devices: + - 11324 + - 11322 + - 6268 + - 6269 + - 6270 + - 6271 + - 6182 + - 1959 + - 6267 + - 3523 + - 6241 + - 6244 + - 6245 + - 6246 + - 6203 + - 6204 + - 6205 + - 11868 + - 181 + - 182 + - 183 + - uid: 10463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 11343 + - 11341 + - 6252 + - 6253 + - 6254 + - 7344 + - 2014 + - 6265 + - 6264 + - 6262 + - 6259 + - 6258 + - 6257 + - 6256 + - 11344 + - 11838 + - 11837 + - 11851 + - uid: 10464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,71.5 + parent: 2 + - type: DeviceList + devices: + - 11343 + - 11344 + - 11342 + - 6256 + - 6257 + - 6258 + - 6259 + - 6262 + - 6264 + - 6265 + - 4634 + - 11837 + - uid: 10465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 11333 + - 11330 + - 1984 + - 1452 + - 11825 + - uid: 10466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,62.5 + parent: 2 + - type: DeviceList + devices: + - 6250 + - 6249 + - 6248 + - 11327 + - 11328 + - 1452 + - 6252 + - 6253 + - 6254 + - 11343 + - 11826 + - uid: 10467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 11400 + - 10527 + - 1171 + - 10472 + - 11136 + - uid: 10471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 11408 + - 326 + - 342 + - 10472 + - 12010 + - 345 + - 5854 + - uid: 10475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,66.5 + parent: 2 + - type: DeviceList + devices: + - 2014 + - 11362 + - 2443 + - 11351 + - 4634 + - 11352 + - 11363 + - 11851 + - 11852 + - uid: 10476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 2535 + - 11409 + - 11402 + - 11410 + - 12011 + - uid: 10477 + components: + - type: Transform + pos: 9.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 10461 + - 11321 + - 4608 + - 4352 + - 11952 + - uid: 10520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 6307 + - 6308 + - 11396 + - 11394 + - 11376 + - 11397 + - uid: 10521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,61.5 + parent: 2 + - type: DeviceList + devices: + - 2535 + - 342 + - 326 + - 6589 + - 11411 + - 11410 + - 6229 + - 4273 + - 6227 + - 6228 + - 2532 + - 10523 + - 11409 + - 12014 + - 12087 + - 11414 + - uid: 10522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 10451 + - 10452 + - 4273 + - 3512 + - 10992 + - 12091 + - 361 + - uid: 10524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 11376 + - 11375 + - 709 + - 6308 + - 6307 + - uid: 10525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 11396 + - 11397 + - 11395 + - 6229 + - uid: 10531 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + pos: -85.5,71.5 + parent: 2 + - type: DeviceList + devices: + - 5598 + - 2879 + - 1160 + - 1421 + - 2054 + - 12070 + - uid: 11052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 1196 + - 4823 + - 4368 + - 6226 + - 10485 + - 10484 + - 11606 + - 11594 + - 11604 + - 11603 + - 11611 + - 11607 + - 11608 + - 12612 + - 12620 + - 12573 + - 12572 + - 218 + - 3387 + - 12534 + - 11596 + - 3385 + - 12807 + - 12590 + - uid: 11427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 11423 + - 11422 + - 2097 + - 2105 + - 2107 + - 1981 + - 1982 + - 6183 + - 10823 + - 10824 + - 6273 + - 6215 + - 6216 + - 6217 + - 11418 + - 11417 + - 11407 + - 11428 + - 12170 + - 4557 + - uid: 11429 + components: + - type: Transform + pos: -37.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 11434 + - 11431 + - 11432 + - 11433 + - 5720 + - 11430 + - 1872 + - 5908 + - 5659 + - 11435 + - 12207 + - 12251 + - uid: 11440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 11439 + - 11438 + - 5659 + - 12252 + - uid: 11442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 1453 + - 11459 + - 11457 + - 11453 + - 11435 + - 12183 + - uid: 11443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 11460 + - 11456 + - 1587 + - 11453 + - 12208 + - uid: 11444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 5152 + - 5713 + - 11454 + - 1356 + - 5721 + - 11465 + - 11466 + - 4822 + - 1587 + - 1453 + - 6179 + - 6177 + - 6180 + - 11453 + - 11449 + - 12209 + - 12246 + - uid: 11474 + components: + - type: Transform + pos: 3.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 4357 + - 6174 + - 6205 + - 6204 + - 6203 + - 1615 + - 6197 + - 4684 + - 6198 + - 6199 + - 6315 + - 6311 + - 6312 + - 6313 + - 11472 + - 11473 + - 11324 + - 11869 + - uid: 11495 + components: + - type: Transform + pos: 10.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 1907 + - 6314 + - 4357 + - 6315 + - 6311 + - 6312 + - 6313 + - 2778 + - 10468 + - 10469 + - 2868 + - 2803 + - 11489 + - 11490 + - 11492 + - 11493 + - 12481 + - 12524 + - 12503 + - uid: 11496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 1907 + - 11475 + - 11490 + - 11489 + - 12501 + - uid: 11497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 11476 + - 11491 + - 2868 + - 11480 + - 11481 + - 11489 + - 12514 + - uid: 11498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 11493 + - 2775 + - 11494 + - 11486 + - 12513 + - uid: 11499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 11487 + - 11492 + - 11493 + - 2825 + - 2778 + - 2776 + - 12480 + - uid: 11500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 2825 + - 11485 + - 11493 + - 2775 + - 10469 + - 10468 + - 12525 + - uid: 11507 + components: + - type: Transform + pos: -51.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 6217 + - 6216 + - 6215 + - 4673 + - 6214 + - 6213 + - 6212 + - 11428 + - 11504 + - 11506 + - 12256 + - 14162 + - 14394 + - 3396 + - uid: 11508 + components: + - type: Transform + pos: -60.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 11506 + - 11505 + - 6297 + - 6298 + - 6304 + - 6303 + - 12257 + - 361 + - 14162 + - 14394 + - uid: 11531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 11509 + - 11510 + - 10825 + - 10826 + - 2214 + - 10827 + - 10828 + - 6173 + - 11544 + - 11511 + - 11543 + - 12356 + - 12783 + - uid: 11532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 507 + - 955 + - 2214 + - 10827 + - 10828 + - 10826 + - 2975 + - 3009 + - 11511 + - 11512 + - 11514 + - 11543 + - 12357 + - uid: 11534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 6176 + - 1151 + - 1140 + - 480 + - 6173 + - 6178 + - 11516 + - 11515 + - 11514 + - 11530 + - 12383 + - 12783 + - uid: 11535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 6175 + - 5787 + - 1151 + - 1140 + - 11530 + - 11515 + - 12404 + - 4914 + - uid: 11536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11520 + - 11541 + - 11530 + - 5787 + - 12403 + - uid: 11537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11515 + - 6979 + - 11514 + - 11002 + - 6978 + - 12382 + - 11517 + - 11542 + - 6176 + - uid: 11538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11527 + - 11522 + - 4311 + - uid: 11539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 11514 + - 11002 + - 6979 + - 6978 + - 769 + - 5683 + - 955 + - 507 + - 5682 + - 480 + - 12364 + - 11513 + - 11511 + - 11547 + - 11515 + - uid: 11548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 11546 + - 11545 + - 11543 + - 11547 + - 11428 + - 1433 + - 6212 + - 6213 + - 6214 + - 2975 + - 3009 + - 10825 + - 6288 + - 6287 + - 6211 + - 6210 + - 6206 + - 1159 + - 11550 + - 12287 + - 12297 + - uid: 11551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11555 + - 11554 + - 3133 + - 1679 + - 2905 + - 11687 + - 13542 + - uid: 11561 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 6208 + - 6207 + - 6209 + - 1164 + - 6971 + - 3051 + - 11556 + - 11560 + - 7255 + - 7172 + - 3638 + - 1679 + - 6202 + - 6201 + - 6200 + - 11501 + - 11872 + - 12466 + - uid: 11562 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11557 + - 11559 + - 769 + - 5033 + - 1983 + - 6206 + - 6210 + - 6211 + - 6209 + - 6207 + - 6208 + - 11543 + - 11556 + - 12464 + - 12465 + - uid: 11580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 4480 + - 4479 + - 11585 + - 1976 + - 4953 + - 11586 + - 11545 + - 11546 + - 12330 + - 1166 + - 1329 + - 3966 + - uid: 11581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 4953 + - 1976 + - 11546 + - 11579 + - 6288 + - 6287 + - 11543 + - 12321 + - uid: 11582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 11578 + - 11567 + - 1329 + - 1166 + - 4966 + - 12320 + - 3966 + - uid: 11583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 11575 + - 11577 + - 11576 + - 4966 + - 11545 + - 11578 + - 12334 + - 3396 + - uid: 11584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 11545 + - 11568 + - 4480 + - 4479 + - 11576 + - 1433 + - 11543 + - 11585 + - 12333 + - uid: 11614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 11590 + - 11602 + - 6221 + - 5033 + - 6225 + - 11604 + - 11603 + - 12611 + - uid: 11615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 6225 + - 6226 + - 11589 + - 11603 + - 11606 + - 11602 + - 12554 + - uid: 11619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11624 + - 11593 + - 4368 + - 11606 + - 12581 + - uid: 11620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 11608 + - 11610 + - 4823 + - uid: 11621 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 3385 + - 11612 + - 12626 + - uid: 11623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 6184 + - 3387 + - 11613 + - 11597 + - 3051 + - 6971 + - 1164 + - 11556 + - 11611 + - 12533 + - uid: 11628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11627 + - 11625 + - 1159 + - 11543 + - 12300 + - uid: 11636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 11649 + - 11630 + - 7255 + - 4563 + - 11881 + - 7172 + - 3638 + - 3562 + - 14038 + - 11885 + - 14676 + - uid: 11638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 3133 + - 3562 + - 11632 + - 11633 + - 131 + - 122 + - 13542 + - uid: 11651 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 11634 + - 4011 + - 1951 + - 11633 + - uid: 13598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 7255 + - 7172 + - 3638 + - 3562 + - 14038 + - 11885 + - 14676 + - 12807 + - uid: 13611 + components: + - type: Transform + pos: -30.5,48.5 + parent: 2 + - type: DeviceList + devices: + - 12184 + - 11464 + - 6177 + - 6179 + - 6180 + - 4763 + - 5937 + - 6108 + - 2654 + - 5720 + - 1872 + - 5908 + - 5155 + - 6181 + - 1453 + - 1441 + - 11435 + - 11453 + - uid: 14025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + pos: -39.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 2107 + - 2105 + - 2097 + - 11407 + - 11398 + - 10472 + - 6219 + - 6239 + - 6238 + - 6237 + - 6234 + - 6233 + - 1171 + - 1169 + - 10535 + - 10527 + - 11408 + - 10470 + - 11965 + - 11964 + - 4557 + - 6222 + - 438 + - uid: 15383 + components: + - type: Transform + pos: -26.5,59.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,66.5 + parent: 2 + - type: DeviceList + devices: + - 4950 + - 11311 + - 11309 + - 11313 + - 11938 + - 10568 + - 11951 + - 16394 + - 16396 + - 13029 + - 13028 + - uid: 15865 + components: + - type: Transform + pos: -9.5,71.5 + parent: 2 + - type: DeviceList + devices: + - 2014 + - 11362 + - 2443 + - 11351 + - 4634 + - 11352 + - 11363 + - 11851 + - 11852 + - uid: 16070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 7312 + - 7309 + - 7311 + - 7315 + - 16164 + - 16068 + - 2699 + - 2697 + - 16062 + - 16053 + - 16069 + - uid: 16071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 16164 + - 16069 + - 16053 + - 16062 +- proto: AirCanister + entities: + - uid: 1390 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 14314 + components: + - type: Transform + pos: -74.5,73.5 + parent: 2 + - uid: 15156 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 +- proto: Airlock + entities: + - uid: 13873 + components: + - type: Transform + pos: -53.5,27.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + pos: -53.5,23.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: -50.5,27.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: -46.5,30.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + pos: -59.5,29.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: -67.5,61.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 13964 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 583 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 14063 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 14427 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 14900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 14003 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 14398 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 14033 + components: + - type: Transform + pos: -62.5,44.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,48.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,47.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,47.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,47.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,45.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,47.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,45.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,68.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,67.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,44.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,18.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,64.5 + parent: 2 + - uid: 14276 + components: + - type: Transform + pos: 6.5,44.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 12116 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 13955 + components: + - type: Transform + pos: -40.5,47.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + pos: -31.5,40.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + pos: -34.5,44.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + pos: -34.5,45.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 +- proto: AirlockCaptainGlassLocked + entities: + - uid: 14047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,69.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 14046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,69.5 + parent: 2 + - uid: 15212 + components: + - type: Transform + pos: -9.5,67.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 173 + components: + - type: Transform + pos: -1.5,62.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,68.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,69.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,61.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 7322 + components: + - type: Transform + pos: -63.5,11.5 + parent: 2 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 13927 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 13930 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 1550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,5.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 4604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 13932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,26.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 13972 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 6469 + components: + - type: Transform + pos: -21.5,59.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,65.5 + parent: 2 + - uid: 14050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,65.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,65.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: -23.5,59.5 + parent: 2 + - uid: 14779 + components: + - type: Transform + pos: -22.5,59.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,59.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 5629 + components: + - type: Transform + pos: -28.5,71.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + pos: -13.5,73.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 12878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,42.5 + parent: 2 + - uid: 14981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,37.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,13.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-0.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 14009 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,15.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: 1.5,56.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: -64.5,32.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + pos: -76.5,15.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + pos: -5.5,74.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,51.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,72.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - uid: 13970 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - type: AccessReader + access: + - - Brig + - - Engineering + - uid: 14017 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 3669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3670: + - DoorStatus: DoorBolt + - uid: 3670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3669: + - DoorStatus: DoorBolt + - uid: 4325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 354: + - DoorStatus: DoorBolt + 15451: + - DoorStatus: DoorBolt + - uid: 15451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 354: + - DoorStatus: DoorBolt + 4325: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,83.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: -0.5,83.5 + parent: 2 + - uid: 9814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,83.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,46.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,48.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,40.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,38.5 + parent: 2 + - uid: 15459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,83.5 + parent: 2 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 5913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,57.5 + parent: 2 + - type: AccessReader + access: + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5936: + - DoorStatus: DoorBolt + - uid: 5936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,57.5 + parent: 2 + - type: AccessReader + access: + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5913: + - DoorStatus: DoorBolt + - uid: 16431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,77.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,75.5 + parent: 2 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 354 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 4325: + - DoorStatus: DoorBolt + 15451: + - DoorStatus: DoorBolt + - uid: 999 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8100: + - DoorStatus: DoorBolt + - uid: 2714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7337: + - DoorStatus: DoorBolt + - uid: 3822 + components: + - type: Transform + pos: -62.5,78.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3823: + - DoorStatus: DoorBolt + - uid: 3823 + components: + - type: Transform + pos: -65.5,78.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3822: + - DoorStatus: DoorBolt + - uid: 4618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,53.5 + parent: 2 + - type: AccessReader + access: + - - Engineering + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4797: + - DoorStatus: DoorBolt + - uid: 4797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,53.5 + parent: 2 + - type: AccessReader + access: + - - Engineering + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4618: + - DoorStatus: DoorBolt + - uid: 7337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2714: + - DoorStatus: DoorBolt + - uid: 8100 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 999: + - DoorStatus: DoorBolt + - uid: 13402 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + pos: -80.5,15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14634: + - DoorStatus: DoorBolt + - uid: 14634 + components: + - type: Transform + pos: -83.5,15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14633: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 1200 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5219: + - DoorStatus: DoorBolt + - uid: 5219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,74.5 + parent: 2 + - type: AccessReader + access: + - - Command + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 1200: + - DoorStatus: DoorBolt + - uid: 15778 + components: + - type: Transform + pos: -89.5,69.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + pos: -89.5,55.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 1149 + components: + - type: Transform + pos: -79.5,67.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,57.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -86.5,67.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,57.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 3017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,46.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,38.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,40.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,48.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 1754 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,40.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,74.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 2569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,86.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,86.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,86.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,86.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,69.5 + parent: 2 + - uid: 15797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,55.5 + parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5225: + - DoorStatus: DoorBolt + - uid: 5225 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - type: AccessReader + access: + - - ResearchDirector + - type: DeviceLinkSink + invokeCounter: 5 + - type: DeviceLinkSource + linkedPorts: + 215: + - DoorStatus: DoorBolt +- proto: AirlockExternalShuttleLocked + entities: + - uid: 15471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,77.5 + parent: 2 + - uid: 16416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,75.5 + parent: 2 +- proto: AirlockFreezer + entities: + - uid: 7354 + components: + - type: Transform + pos: -11.5,50.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 4562 + components: + - type: Transform + pos: -46.5,51.5 + parent: 2 + - uid: 15203 + components: + - type: Transform + pos: -51.5,51.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 471 + components: + - type: Transform + pos: -58.5,18.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: -43.5,50.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,59.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: -36.5,57.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: -36.5,54.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: -36.5,53.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,54.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,62.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: -36.5,52.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + pos: -73.5,53.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + pos: -71.5,53.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: -72.5,53.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,34.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + pos: -1.5,54.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: -36.5,58.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: -56.5,18.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: -57.5,18.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + pos: -72.5,6.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,55.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: -55.5,62.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + pos: -44.5,50.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,54.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,55.5 + parent: 2 + - uid: 12407 + components: + - type: Transform + pos: -1.5,53.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + pos: -55.5,63.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: -1.5,52.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + pos: -53.5,31.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + pos: -46.5,20.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + pos: -46.5,19.5 + parent: 2 + - uid: 13887 + components: + - type: Transform + pos: -42.5,24.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 13890 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 13891 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 13894 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + pos: -42.5,18.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 13900 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 13902 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + pos: -45.5,37.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + pos: -44.5,37.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + pos: -43.5,37.5 + parent: 2 + - uid: 13915 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 13916 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + pos: -68.5,36.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + pos: -68.5,35.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + pos: -45.5,50.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,57.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,63.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + pos: -7.5,58.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + pos: -7.5,57.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: -7.5,54.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 7137 + components: + - type: Transform + pos: -31.5,59.5 + parent: 2 + - uid: 14042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,65.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,68.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 14915 + components: + - type: Transform + pos: -35.5,41.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 14914 + components: + - type: Transform + pos: -39.5,39.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 14032 + components: + - type: Transform + pos: -46.5,40.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 14030 + components: + - type: Transform + pos: -57.5,44.5 + parent: 2 + - uid: 14031 + components: + - type: Transform + pos: -56.5,42.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 1526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,71.5 + parent: 2 + - uid: 15345 + components: + - type: Transform + pos: -36.5,68.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 14029 + components: + - type: Transform + pos: -52.5,44.5 + parent: 2 + - type: AccessReader + access: + - - Hydroponics + - - Kitchen +- proto: AirlockKitchenLocked + entities: + - uid: 12617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,50.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,44.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,67.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: -79.5,1.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + pos: -70.5,17.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 13933 + components: + - type: Transform + pos: -65.5,37.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + pos: -67.5,53.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: -72.5,0.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 3571 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 14027 + components: + - type: Transform + pos: -64.5,42.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 12409 + components: + - type: Transform + pos: 8.5,79.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + pos: 3.5,59.5 + parent: 2 +- proto: AirlockMaintChemLocked + entities: + - uid: 13931 + components: + - type: Transform + pos: -33.5,34.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 1502 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 14026 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - uid: 14035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,53.5 + parent: 2 + - type: AccessReader + access: + - - Engineering + - - Salvage +- proto: AirlockMaintLocked + entities: + - uid: 1684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,46.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,13.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,17.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,0.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,3.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,0.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,10.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,64.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,22.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,35.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,11.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,35.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,69.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,52.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,18.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,18.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,35.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,42.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,47.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,34.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,69.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,25.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - uid: 13008 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 14606 + components: + - type: Transform + pos: -38.5,64.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 3636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,34.5 + parent: 2 + - uid: 13938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,34.5 + parent: 2 + - uid: 13967 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - type: AccessReader + access: + - - Brig + - - Medical +- proto: AirlockMaintRnDLocked + entities: + - uid: 13995 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 13996 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 14067 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 14069 + components: + - type: Transform + pos: 8.5,46.5 + parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 14034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,58.5 + parent: 2 +- proto: AirlockMaintTheatreLocked + entities: + - uid: 13242 + components: + - type: Transform + pos: -60.5,68.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + pos: -54.5,68.5 + parent: 2 + - uid: 13245 + components: + - type: Transform + pos: -49.5,68.5 + parent: 2 +- proto: AirlockMedical + entities: + - uid: 13977 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: -21.5,26.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 13975 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 13976 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 +- proto: AirlockMedicalMorgueLocked + entities: + - uid: 1952 + components: + - type: MetaData + name: morgue + - type: Transform + pos: -8.5,36.5 + parent: 2 + - type: AccessReader + access: + - - Brig + - - Medical + - uid: 1953 + components: + - type: MetaData + name: morgue + - type: Transform + pos: -11.5,39.5 + parent: 2 + - type: AccessReader + access: + - - Brig + - - Medical + - uid: 13969 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 14040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,70.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 11003 + components: + - type: Transform + pos: -1.5,74.5 + parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 5344 + components: + - type: Transform + pos: -25.5,87.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: -21.5,89.5 + parent: 2 + - uid: 13982 + components: + - type: Transform + pos: 18.5,41.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 13981 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 14036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,56.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,66.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 5922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,63.5 + parent: 2 +- proto: AirlockScience + entities: + - uid: 13986 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 1397 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 13949 + components: + - type: Transform + pos: -29.5,51.5 + parent: 2 + - uid: 13950 + components: + - type: Transform + pos: -27.5,51.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + pos: -29.5,48.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: -27.5,48.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 13954 + components: + - type: Transform + pos: -9.5,59.5 + parent: 2 + - uid: 14653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,64.5 + parent: 2 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 13953 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 14057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,64.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,65.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 11447 + components: + - type: Transform + pos: -57.5,64.5 + parent: 2 + - uid: 13926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,61.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,64.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,64.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5603 + - uid: 2719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - uid: 2879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10799 + - uid: 7041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 10405 + components: + - type: Transform + pos: -76.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - uid: 10451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10522 + - uid: 10460 + components: + - type: Transform + pos: -16.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - uid: 10461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10477 + - uid: 10472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5658 + - 10467 + - 10471 + - 15346 + - uid: 10489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,87.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5595 + - uid: 10526 + components: + - type: Transform + pos: -76.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 10350 + - uid: 10527 + components: + - type: Transform + pos: -50.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10467 + - 15346 + - uid: 10535 + components: + - type: Transform + pos: -44.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5658 + - 15346 + - uid: 11311 + components: + - type: Transform + pos: 10.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - uid: 11313 + components: + - type: Transform + pos: 8.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - uid: 11315 + components: + - type: Transform + pos: 1.5,69.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: 0.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 431 + - uid: 11320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5700 + - uid: 11323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10457 + - uid: 11324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 11474 + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10466 + - uid: 11332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6838 + - uid: 11333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10465 + - uid: 11343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10466 + - 10463 + - 10464 + - uid: 11344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 10464 + - uid: 11362 + components: + - type: Transform + pos: -13.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10475 + - 15865 + - uid: 11363 + components: + - type: Transform + pos: -9.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10475 + - 15865 + - uid: 11365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6231 + - uid: 11367 + components: + - type: Transform + pos: -33.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 158 + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10456 + - uid: 11376 + components: + - type: Transform + pos: -45.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 10520 + - uid: 11396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10520 + - 10525 + - uid: 11397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10520 + - 10525 + - uid: 11407 + components: + - type: Transform + pos: -44.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 15346 + - uid: 11408 + components: + - type: Transform + pos: -56.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10471 + - 15346 + - uid: 11409 + components: + - type: Transform + pos: -60.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10476 + - 10521 + - uid: 11410 + components: + - type: Transform + pos: -63.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10476 + - 10521 + - uid: 11417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - 11427 + - uid: 11418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 9991 + - uid: 11419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - 9991 + - uid: 11423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - 11427 + - 9991 + - uid: 11426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - uid: 11428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 11507 + - 11548 + - uid: 11432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 5941 + - uid: 11433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 5941 + - uid: 11434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 5941 + - uid: 11435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 11442 + - 13611 + - 5941 + - uid: 11439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11440 + - uid: 11449 + components: + - type: Transform + pos: -8.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 5853 + - uid: 11453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11443 + - 11444 + - 11442 + - 2728 + - 13611 + - 5853 + - uid: 11454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 2728 + - uid: 11455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2728 + - uid: 11456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11443 + - uid: 11457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11442 + - uid: 11468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3024 + - uid: 11472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3024 + - 11474 + - 148 + - uid: 11489 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11496 + - 11497 + - 11495 + - uid: 11490 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11496 + - 11495 + - uid: 11491 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11497 + - uid: 11492 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11499 + - 11495 + - uid: 11493 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11499 + - 11500 + - 11498 + - 11495 + - uid: 11494 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11498 + - uid: 11501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 148 + - 11561 + - uid: 11506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 + - 10350 + - uid: 11510 + components: + - type: Transform + pos: -39.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11531 + - uid: 11511 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - 11532 + - 11531 + - uid: 11514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11534 + - 11539 + - 11532 + - 11537 + - uid: 11515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11535 + - 4374 + - 11537 + - 11534 + - 11539 + - uid: 11526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4374 + - uid: 11527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11538 + - uid: 11528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4285 + - uid: 11530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11535 + - 11536 + - 11534 + - 4374 + - uid: 11541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11536 + - uid: 11542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11537 + - uid: 11543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11532 + - 11531 + - 11548 + - 11562 + - 11584 + - 11581 + - 11628 + - uid: 11545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11583 + - 11584 + - 11580 + - uid: 11546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11580 + - 11581 + - uid: 11547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11539 + - uid: 11555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11551 + - uid: 11556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - 11561 + - 11623 + - 148 + - uid: 11557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - uid: 11577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11583 + - uid: 11578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11583 + - 11582 + - uid: 11585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11584 + - 11580 + - uid: 11602 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11614 + - 11615 + - uid: 11603 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11614 + - 11615 + - 11052 + - uid: 11604 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 11614 + - 11052 + - uid: 11606 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11619 + - 11615 + - 11052 + - uid: 11607 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 936 + - 11052 + - uid: 11608 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11620 + - 11052 + - uid: 11611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11623 + - 11052 + - uid: 11612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11621 + - uid: 11613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11623 + - uid: 11624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11619 + - uid: 11625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11628 + - uid: 11630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11636 + - uid: 11631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - uid: 11632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11638 + - uid: 11633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11638 + - 11651 + - uid: 11634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11651 + - uid: 12760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10350 + - uid: 12761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10350 + - uid: 15388 + components: + - type: Transform + pos: -26.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - uid: 16068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - uid: 16069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - 16071 + - uid: 16789 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 +- proto: AltarFangs + entities: + - uid: 9726 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 14290 + components: + - type: Transform + pos: -57.5,10.5 + parent: 2 +- proto: AmeController + entities: + - uid: 358 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 +- proto: AmeJar + entities: + - uid: 118 + components: + - type: Transform + pos: -22.409061,-4.4524755 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -22.694414,-4.455243 + parent: 2 +- proto: AmmoniaCanister + entities: + - uid: 1403 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 +- proto: AnalysisComputerCircuitboard + entities: + - uid: 5770 + components: + - type: Transform + pos: 13.476511,33.138874 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 5731 + components: + - type: Transform + pos: 14.432539,42.69932 + parent: 2 +- proto: APCBasic + entities: + - uid: 101 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,43.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,89.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + pos: -28.5,70.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,63.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,68.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,68.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: -48.5,68.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: -68.5,67.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,32.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,41.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,40.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,22.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,40.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,37.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,41.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,59.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,57.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,70.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,42.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,42.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: -64.5,15.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,16.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,21.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,25.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,59.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + pos: -12.5,59.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,42.5 + parent: 2 + - uid: 9631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,42.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: -50.5,50.5 + parent: 2 + - uid: 9898 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - uid: 9917 + components: + - type: Transform + pos: -56.5,37.5 + parent: 2 + - uid: 10830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,45.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: -40.5,64.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + pos: -36.5,51.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + pos: -75.5,13.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 14481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,20.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,56.5 + parent: 2 + - uid: 15961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,4.5 + parent: 2 + - uid: 15986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,75.5 + parent: 2 + - uid: 16633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - uid: 16647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,9.5 + parent: 2 + - uid: 16669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,66.5 + parent: 2 + - uid: 16670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 2 +- proto: AppraisalTool + entities: + - uid: 6118 + components: + - type: Transform + pos: 14.37081,71.63749 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 12692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,67.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,53.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,71.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,64.5 + parent: 2 +- proto: ArtifactAnalyzerMachineCircuitboard + entities: + - uid: 5769 + components: + - type: Transform + pos: 13.507761,32.87325 + parent: 2 +- proto: ArtistCircuitBoard + entities: + - uid: 5326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.627998,89.74103 + parent: 2 +- proto: Ashtray + entities: + - uid: 6077 + components: + - type: Transform + pos: -0.64450264,73.02575 + parent: 2 + - uid: 6503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.719476,9.595207 + parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 5328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.627998,89.24884 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 3546 + components: + - type: Transform + pos: -0.5,86.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,74.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,77.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,75.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,57.5 + parent: 2 + - uid: 14544 + components: + - type: Transform + pos: 1.5,86.5 + parent: 2 + - uid: 14545 + components: + - type: Transform + pos: 7.5,86.5 + parent: 2 + - uid: 14546 + components: + - type: Transform + pos: 9.5,86.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,57.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: -86.5,67.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: -79.5,67.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,69.5 + parent: 2 + - uid: 15834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,55.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,48.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,46.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,40.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,38.5 + parent: 2 + - uid: 15842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,40.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,13.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 2 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - uid: 800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 + - uid: 954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,3.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,3.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,3.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 9761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 1322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,51.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,51.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,52.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,52.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,52.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,52.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,51.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,51.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 1311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 1314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,17.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 1072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 518 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: 5.5,61.5 + parent: 2 +- proto: BalloonSyn + entities: + - uid: 12865 + components: + - type: Transform + pos: 23.253674,21.601675 + parent: 2 +- proto: BananaPhoneInstrument + entities: + - uid: 6531 + components: + - type: Transform + pos: -59.232162,65.48914 + parent: 2 +- proto: BannerSyndicate + entities: + - uid: 6988 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 +- proto: Barricade + entities: + - uid: 14368 + components: + - type: Transform + pos: -58.5,71.5 + parent: 2 + - uid: 15924 + components: + - type: Transform + pos: -71.5,7.5 + parent: 2 + - uid: 15925 + components: + - type: Transform + pos: -71.5,6.5 + parent: 2 + - uid: 15926 + components: + - type: Transform + pos: -71.5,5.5 + parent: 2 + - uid: 15927 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 9163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,34.5 + parent: 2 + - uid: 15921 + components: + - type: Transform + pos: -72.5,6.5 + parent: 2 + - uid: 15922 + components: + - type: Transform + pos: -72.5,0.5 + parent: 2 + - uid: 15923 + components: + - type: Transform + pos: -79.5,1.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: -6.5,67.5 + parent: 2 +- proto: BarSignEmprah + entities: + - uid: 7009 + components: + - type: Transform + pos: -48.5,53.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,49.5 + parent: 2 +- proto: BarSignTheSun + entities: + - uid: 16368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,4.5 + parent: 2 +- proto: Beaker + entities: + - uid: 14366 + components: + - type: Transform + pos: -57.422333,-1.2973032 + parent: 2 + - uid: 14485 + components: + - type: Transform + pos: -57.187958,-1.1723032 + parent: 2 +- proto: Bed + entities: + - uid: 2108 + components: + - type: Transform + pos: -62.5,38.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: -41.5,40.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: 22.5,47.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: -63.5,67.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: -51.5,67.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: -56.5,28.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: -56.5,22.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -47.5,22.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: -47.5,28.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: -25.5,50.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: -19.5,50.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: -30.5,69.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: 1.5,76.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: -9.5,70.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + pos: -67.5,14.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + pos: -56.5,67.5 + parent: 2 + - uid: 14154 + components: + - type: Transform + pos: -47.5,74.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 7445 + components: + - type: Transform + pos: -9.5,70.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 4760 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 4697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,67.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 4761 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 +- proto: BedsheetCosmos + entities: + - uid: 14155 + components: + - type: Transform + pos: -47.5,74.5 + parent: 2 +- proto: BedsheetCult + entities: + - uid: 9851 + components: + - type: Transform + pos: -67.5,14.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 5514 + components: + - type: Transform + pos: -30.5,69.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 4669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,40.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,42.5 + parent: 2 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,41.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: -28.5,34.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + pos: -30.5,33.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 + - uid: 16683 + components: + - type: Transform + pos: -22.5,27.5 + parent: 2 + - uid: 16684 + components: + - type: Transform + pos: -24.5,27.5 + parent: 2 + - uid: 16687 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 +- proto: BedsheetMime + entities: + - uid: 4700 + components: + - type: Transform + pos: -56.5,67.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 10393 + components: + - type: Transform + pos: 1.5,76.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 4765 + components: + - type: Transform + pos: 22.5,47.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 4752 + components: + - type: Transform + pos: -56.5,22.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: -56.5,28.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: -47.5,28.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: -47.5,22.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: -62.5,38.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: -25.5,50.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: -19.5,50.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: -51.5,67.5 + parent: 2 +- proto: BedsheetSyndie + entities: + - uid: 5149 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 15844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,78.5 + parent: 2 + - uid: 16418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,74.5 + parent: 2 +- proto: BlastDoorEngineering + entities: + - uid: 3578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 254 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 +- proto: BlastDoorScience + entities: + - uid: 1862 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 +- proto: BlockGameArcade + entities: + - uid: 5097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,50.5 + parent: 2 +- proto: Bloodpack + entities: + - uid: 5655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.400427,31.381618 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: -26.38037,30.616966 + parent: 2 +- proto: BodyBagFolded + entities: + - uid: 9918 + components: + - type: Transform + pos: -25.88037,31.632591 + parent: 2 + - uid: 15599 + components: + - type: Transform + pos: -64.56967,8.813036 + parent: 2 +- proto: Bonfire + entities: + - uid: 14315 + components: + - type: Transform + pos: -71.5,19.5 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 6565 + components: + - type: Transform + pos: 1.271421,11.559552 + parent: 2 +- proto: BookChemicalCompendium + entities: + - uid: 15199 + components: + - type: Transform + pos: -34.52333,30.327538 + parent: 2 +- proto: BookEngineersHandbook + entities: + - uid: 6562 + components: + - type: Transform + pos: -21.433304,9.863619 + parent: 2 +- proto: BookHowToCookForFortySpaceman + entities: + - uid: 6563 + components: + - type: Transform + pos: -50.02948,47.828167 + parent: 2 +- proto: BookHowToRockAndStone + entities: + - uid: 1393 + components: + - type: Transform + pos: 7.4506817,59.564632 + parent: 2 +- proto: BookNames + entities: + - uid: 14193 + components: + - type: Transform + pos: -53.578575,72.572136 + parent: 2 +- proto: BookNarsieLegend + entities: + - uid: 12068 + components: + - type: Transform + pos: -49.468697,10.638125 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 2451 + components: + - type: Transform + pos: -4.6819863,62.73608 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: -4.2913613,62.470455 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: -39.507072,23.619274 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: -35.54614,23.5724 + parent: 2 +- proto: BooksBag + entities: + - uid: 9700 + components: + - type: Transform + pos: -69.4556,59.497017 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 1215 + components: + - type: Transform + pos: -68.5,56.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: -68.5,60.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: -69.5,54.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: -68.5,54.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: -66.5,54.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: -69.5,58.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: -68.5,58.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -69.5,60.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: -69.5,56.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: -52.5,10.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: -65.5,54.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: -60.5,8.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: -61.5,8.5 + parent: 2 + - uid: 14287 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 14288 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 14461 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 +- proto: BookSpaceLaw + entities: + - uid: 1174 + components: + - type: Transform + pos: -13.471112,63.584015 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -17.520126,63.538567 + parent: 2 + - uid: 7148 + components: + - type: Transform + pos: -10.15158,63.567593 + parent: 2 + - uid: 14462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.506857,8.558547 + parent: 2 +- proto: BookTruth + entities: + - uid: 14192 + components: + - type: Transform + pos: -54.4067,72.572136 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 4630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,46.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,50.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,2.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 5322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,91.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,91.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,33.5 + parent: 2 +- proto: BorgModuleAppraisal + entities: + - uid: 6121 + components: + - type: Transform + pos: 14.405367,71.09781 + parent: 2 +- proto: BorgModuleMining + entities: + - uid: 6119 + components: + - type: Transform + pos: 7.1167555,60.634823 + parent: 2 +- proto: BoxAgrichem + entities: + - uid: 15200 + components: + - type: Transform + pos: -57.608055,42.841152 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 4246 + components: + - type: Transform + pos: -37.880226,30.640572 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 5167 + components: + - type: Transform + pos: -10.52976,38.511383 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: -10.549391,38.135056 + parent: 2 +- proto: BoxCandle + entities: + - uid: 13923 + components: + - type: Transform + pos: -58.49537,8.627481 + parent: 2 +- proto: BoxCleanerGrenades + entities: + - uid: 6630 + components: + - type: Transform + pos: -35.676624,69.6852 + parent: 2 +- proto: BoxDarts + entities: + - uid: 5114 + components: + - type: Transform + pos: -4.832646,46.54087 + parent: 2 + - uid: 15026 + components: + - type: Transform + pos: -13.835531,9.846153 + parent: 2 +- proto: BoxFlare + entities: + - uid: 6014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.332811,62.798985 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: -21.573818,3.2183256 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 5176 + components: + - type: Transform + pos: -38.03322,42.556965 + parent: 2 +- proto: BoxFolderBase + entities: + - uid: 4940 + components: + - type: Transform + pos: -37.641014,40.39001 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 3967 + components: + - type: Transform + pos: -65.99897,12.61907 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: -33.630547,42.726795 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: -26.200731,3.6134644 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: -16.421322,86.49219 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 4965 + components: + - type: Transform + pos: -12.564862,63.584015 + parent: 2 + - uid: 5576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.54729,25.631472 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: -21.668135,72.49294 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: -15.640824,68.583305 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: -16.765072,86.75781 + parent: 2 + - uid: 10346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.598816,24.982796 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 5834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.456499,38.61601 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 20.391369,43.956947 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: -0.557034,76.6445 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: -30.65436,66.64929 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: -21.18376,72.50857 + parent: 2 + - uid: 9041 + components: + - type: Transform + pos: -35.100624,62.530506 + parent: 2 +- proto: BoxFolderGreen + entities: + - uid: 6685 + components: + - type: Transform + pos: -21.855635,72.63357 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 4743 + components: + - type: Transform + pos: -42.50612,66.587814 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 1435 + components: + - type: Transform + pos: -18.36792,63.56839 + parent: 2 + - uid: 5420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.8500519,39.637623 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: -6.3863225,15.530378 + parent: 2 +- proto: BoxingBell + entities: + - uid: 10012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,56.5 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 5851 + components: + - type: Transform + pos: -1.5329025,33.59672 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 9697 + components: + - type: Transform + pos: -34.63178,70.354965 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 5841 + components: + - type: Transform + pos: -5.9790416,30.579687 + parent: 2 + - uid: 15202 + components: + - type: Transform + pos: -57.514305,42.450527 + parent: 2 +- proto: BoxNitrileGloves + entities: + - uid: 5692 + components: + - type: Transform + pos: -17.581963,24.664034 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: -5.3227916,30.564062 + parent: 2 +- proto: BoxShotgunFlare + entities: + - uid: 3447 + components: + - type: Transform + pos: -22.073818,0.5313511 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: -61.546997,41.56668 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 5840 + components: + - type: Transform + pos: -6.5727916,30.610937 + parent: 2 +- proto: BoxSyringe + entities: + - uid: 5621 + components: + - type: Transform + pos: -21.4899,23.679731 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: -13.634802,33.615993 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: -27.55496,30.679504 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 5160 + components: + - type: Transform + pos: -38.839447,44.591007 + parent: 2 +- proto: BriefcaseBrownFilled + entities: + - uid: 5449 + components: + - type: Transform + pos: -14.531449,67.53643 + parent: 2 +- proto: BrigTimer + entities: + - uid: 1845 + components: + - type: Transform + pos: -26.5,47.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,47.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,47.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,47.5 + parent: 2 +- proto: BrokenBottle + entities: + - uid: 15879 + components: + - type: Transform + pos: -79.81804,4.4116125 + parent: 2 + - uid: 15880 + components: + - type: Transform + pos: -75.59894,7.707241 + parent: 2 + - uid: 15881 + components: + - type: Transform + pos: -78.09894,12.035365 + parent: 2 +- proto: Brutepack + entities: + - uid: 5189 + components: + - type: Transform + pos: -27.270994,31.320091 + parent: 2 +- proto: Bucket + entities: + - uid: 2123 + components: + - type: Transform + pos: -56.54387,39.435905 + parent: 2 + - uid: 15489 + components: + - type: Transform + pos: -54.61139,40.83942 + parent: 2 +- proto: ButchCleaver + entities: + - uid: 14365 + components: + - type: Transform + pos: -58.047333,-1.3441782 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 13 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 12.5,73.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 13.5,73.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: -22.5,65.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -23.5,60.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -23.5,61.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -33.5,14.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -29.5,13.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -33.5,13.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: -29.5,12.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 4.5,72.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -33.5,16.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: -12.5,48.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -12.5,59.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -70.5,73.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: -71.5,73.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: -72.5,73.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -29.5,63.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: -30.5,8.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: -40.5,63.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: -69.5,73.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: -71.5,42.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: -65.5,24.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: -65.5,25.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -65.5,22.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: -23.5,90.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: -17.5,73.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -21.5,92.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: -56.5,54.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: -56.5,52.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: -21.5,91.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: -85.5,15.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: -18.5,90.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: -18.5,91.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -1.5,74.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: -21.5,90.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: -20.5,90.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: -15.5,60.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: -65.5,23.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: -62.5,17.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: -69.5,57.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: -70.5,56.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: -67.5,72.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: -67.5,73.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: -68.5,73.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 7.5,69.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: -50.5,18.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: -50.5,19.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: -47.5,5.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: -11.5,50.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: -50.5,51.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: -48.5,51.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: -49.5,51.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: 5.5,71.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: -1.5,72.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 5702 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: -8.5,29.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: 12.5,59.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: -15.5,89.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: -86.5,16.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: -86.5,15.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: -4.5,76.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + pos: -4.5,77.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: -1.5,75.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: 28.5,48.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: -8.5,31.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: -16.5,73.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: -68.5,57.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: -67.5,57.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: -67.5,55.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: -67.5,56.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -67.5,54.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: -23.5,58.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: 13.5,59.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: -48.5,54.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: -53.5,54.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + pos: -52.5,54.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + pos: -51.5,54.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: -50.5,54.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: -0.5,70.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: -46.5,54.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: -45.5,54.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: -49.5,54.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: -12.5,50.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: -47.5,54.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: -55.5,54.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: -54.5,54.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: -54.5,50.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: -56.5,51.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: -55.5,50.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: -48.5,3.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: -48.5,2.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: -27.5,60.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: -88.5,55.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: -90.5,55.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: -91.5,55.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: -89.5,55.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 8077 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: -52.5,23.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + pos: -53.5,23.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + pos: -54.5,23.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + pos: -55.5,23.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + pos: -48.5,23.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + pos: -52.5,24.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + pos: -52.5,25.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + pos: -52.5,26.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + pos: -52.5,27.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: -53.5,27.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + pos: -54.5,27.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + pos: -55.5,27.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + pos: -50.5,27.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + pos: -51.5,27.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + pos: -48.5,27.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + pos: -49.5,27.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + pos: -51.5,28.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 8133 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - uid: 8134 + components: + - type: Transform + pos: -51.5,31.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + pos: -50.5,32.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + pos: -48.5,32.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + pos: -47.5,32.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + pos: -49.5,32.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: -52.5,31.5 + parent: 2 + - uid: 8141 + components: + - type: Transform + pos: -53.5,31.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + pos: -55.5,31.5 + parent: 2 + - uid: 8143 + components: + - type: Transform + pos: -54.5,31.5 + parent: 2 + - uid: 8144 + components: + - type: Transform + pos: -56.5,31.5 + parent: 2 + - uid: 8145 + components: + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 8146 + components: + - type: Transform + pos: -58.5,30.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: -59.5,30.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + pos: -60.5,30.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + pos: -61.5,30.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + pos: -62.5,30.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + pos: -64.5,25.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + pos: -63.5,25.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + pos: -62.5,25.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + pos: -62.5,26.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + pos: -62.5,26.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + pos: -62.5,27.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + pos: -61.5,27.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + pos: -60.5,27.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + pos: -59.5,27.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + pos: -62.5,24.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + pos: -62.5,23.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + pos: -62.5,22.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + pos: -61.5,22.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + pos: -60.5,22.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + pos: -59.5,22.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: -59.5,21.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + pos: -59.5,20.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + pos: -59.5,19.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: -57.5,19.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: -56.5,19.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + pos: -58.5,19.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + pos: -64.5,41.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: -63.5,41.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: -62.5,41.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + pos: -62.5,40.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + pos: -62.5,39.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + pos: -61.5,39.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + pos: -62.5,42.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + pos: -62.5,43.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + pos: -62.5,44.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + pos: -62.5,45.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + pos: -62.5,46.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: -62.5,47.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: -62.5,48.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + pos: -62.5,49.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: -62.5,50.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: -62.5,51.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + pos: -56.5,40.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + pos: -56.5,38.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + pos: -56.5,37.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + pos: -56.5,36.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + pos: -57.5,36.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + pos: -59.5,36.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + pos: -60.5,36.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + pos: -58.5,36.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + pos: -61.5,36.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + pos: -65.5,41.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: -62.5,36.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + pos: -55.5,36.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + pos: -50.5,36.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + pos: -48.5,36.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: -49.5,36.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + pos: -46.5,36.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + pos: -65.5,40.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + pos: -65.5,39.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + pos: -65.5,38.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + pos: -65.5,37.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + pos: -65.5,36.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + pos: -66.5,36.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + pos: -67.5,36.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + pos: -67.5,45.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + pos: -62.5,53.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + pos: -62.5,52.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + pos: -61.5,53.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + pos: -59.5,53.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + pos: -58.5,53.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + pos: -57.5,53.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: -56.5,53.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + pos: -60.5,53.5 + parent: 2 + - uid: 8236 + components: + - type: Transform + pos: -55.5,59.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + pos: -56.5,59.5 + parent: 2 + - uid: 8238 + components: + - type: Transform + pos: -57.5,59.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + pos: -59.5,59.5 + parent: 2 + - uid: 8240 + components: + - type: Transform + pos: -60.5,59.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + pos: -61.5,59.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + pos: -62.5,59.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + pos: -58.5,59.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + pos: -62.5,56.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + pos: -62.5,57.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + pos: -62.5,55.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + pos: -50.5,49.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + pos: -50.5,50.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + pos: -50.5,48.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + pos: -51.5,48.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + pos: -52.5,48.5 + parent: 2 + - uid: 8256 + components: + - type: Transform + pos: -53.5,48.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + pos: -49.5,48.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + pos: -48.5,48.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + pos: -48.5,47.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + pos: -48.5,46.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: -48.5,45.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + pos: -49.5,45.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + pos: -51.5,45.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: -52.5,45.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: -47.5,47.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + pos: -55.5,40.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + pos: -54.5,40.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + pos: -54.5,39.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: -53.5,39.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + pos: -52.5,39.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: -51.5,39.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: -50.5,39.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: -49.5,39.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + pos: -48.5,39.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + pos: -54.5,41.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + pos: -54.5,42.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + pos: -53.5,42.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + pos: -51.5,42.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + pos: -50.5,42.5 + parent: 2 + - uid: 8281 + components: + - type: Transform + pos: -49.5,42.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: -52.5,42.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: -48.5,42.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + pos: -47.5,42.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + pos: -46.5,42.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + pos: -47.5,39.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: -46.5,39.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + pos: -57.5,40.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: -58.5,40.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: -58.5,41.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: -58.5,42.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: -58.5,43.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: -70.5,57.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: -69.5,58.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + pos: -69.5,59.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: -68.5,59.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: -67.5,59.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + pos: -66.5,59.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: -71.5,57.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: -72.5,57.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: -72.5,56.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: -72.5,55.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: -83.5,55.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: -73.5,55.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + pos: -74.5,55.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + pos: -76.5,55.5 + parent: 2 + - uid: 8308 + components: + - type: Transform + pos: -77.5,55.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + pos: -78.5,55.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + pos: -79.5,55.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + pos: -80.5,55.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + pos: -81.5,55.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + pos: -75.5,55.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: -82.5,55.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: -84.5,55.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: -85.5,55.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + pos: -86.5,55.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: -87.5,55.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + pos: -72.5,58.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: -72.5,60.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: -72.5,61.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: -72.5,63.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: -72.5,59.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + pos: -72.5,64.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: -72.5,65.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + pos: -72.5,66.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + pos: -72.5,62.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: -72.5,68.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: -72.5,69.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + pos: -72.5,67.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + pos: -73.5,69.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + pos: -74.5,69.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + pos: -76.5,69.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + pos: -77.5,69.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + pos: -78.5,69.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: -79.5,69.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: -80.5,69.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: -81.5,69.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + pos: -75.5,69.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: -82.5,69.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: -85.5,69.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + pos: -84.5,69.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + pos: -86.5,69.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + pos: -87.5,69.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + pos: -83.5,69.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: -48.5,68.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: -48.5,67.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + pos: -48.5,66.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + pos: -49.5,66.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: -49.5,65.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: -49.5,64.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: -49.5,63.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + pos: -50.5,63.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: -51.5,63.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: -53.5,63.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: -54.5,63.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: -55.5,63.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: -56.5,63.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + pos: -57.5,63.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: -58.5,63.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: -59.5,63.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + pos: -52.5,63.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: -60.5,63.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + pos: -61.5,63.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: -61.5,64.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: -61.5,65.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + pos: -61.5,66.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: -62.5,66.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: -60.5,66.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: -55.5,64.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: -55.5,65.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: -55.5,66.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: -56.5,66.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: -54.5,66.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: -48.5,63.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: -47.5,63.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: -46.5,63.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: -45.5,63.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: -44.5,63.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: -43.5,63.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: -43.5,64.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: -43.5,65.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: -43.5,66.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: -44.5,66.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: -42.5,66.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: -50.5,66.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + pos: -48.5,69.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: -47.5,69.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: -45.5,69.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: -44.5,69.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: -43.5,69.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: -42.5,69.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + pos: -41.5,69.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + pos: -46.5,69.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + pos: -68.5,67.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + pos: -68.5,66.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + pos: -68.5,65.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + pos: -69.5,65.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + pos: -68.5,67.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + pos: -68.5,68.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: -67.5,70.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: -32.5,68.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: -33.5,68.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: -34.5,68.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: -34.5,69.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + pos: -34.5,67.5 + parent: 2 + - uid: 8442 + components: + - type: Transform + pos: -30.5,63.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: -31.5,63.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: -33.5,63.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + pos: -34.5,63.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: -32.5,63.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: -34.5,62.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + pos: -34.5,60.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: -34.5,61.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: -31.5,62.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: -31.5,61.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: -31.5,60.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: -31.5,65.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: -31.5,66.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: -29.5,68.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: -28.5,70.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: -27.5,70.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: -27.5,69.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: -27.5,71.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: -28.5,71.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: -29.5,71.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: -30.5,71.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: -27.5,68.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: -27.5,66.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: -27.5,67.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: -26.5,66.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: -25.5,66.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: -24.5,66.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: -22.5,66.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: -21.5,66.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: -20.5,66.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: -23.5,66.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: -26.5,71.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: -24.5,71.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: -23.5,71.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: -22.5,71.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + pos: -21.5,71.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: -20.5,71.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: -19.5,71.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + pos: -18.5,71.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: -18.5,72.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + pos: -18.5,73.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: -18.5,74.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: -20.5,74.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: -21.5,74.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: -22.5,74.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: -19.5,74.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: -23.5,74.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: -24.5,74.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: -25.5,74.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: -19.5,70.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: -11.5,68.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: -10.5,68.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: -10.5,69.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: -10.5,70.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: -10.5,72.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: -10.5,73.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: -11.5,73.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: -11.5,73.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: -12.5,73.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: -13.5,73.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: -11.5,69.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: -12.5,69.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: -13.5,69.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: -14.5,69.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: -17.5,69.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + pos: -15.5,68.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: -15.5,67.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: -14.5,73.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + pos: -14.5,75.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: -14.5,76.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: -14.5,76.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: -22.5,89.5 + parent: 2 + - uid: 8525 + components: + - type: Transform + pos: -22.5,88.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: -22.5,87.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: -23.5,87.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: -25.5,87.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + pos: -26.5,87.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + pos: -27.5,87.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: -24.5,87.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + pos: -27.5,88.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: -27.5,90.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: -27.5,91.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: -27.5,89.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: -21.5,87.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + pos: -19.5,87.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + pos: -18.5,87.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: -20.5,87.5 + parent: 2 + - uid: 8540 + components: + - type: Transform + pos: -17.5,87.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: -16.5,88.5 + parent: 2 + - uid: 8543 + components: + - type: Transform + pos: -15.5,88.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: -14.5,88.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + pos: -14.5,85.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + pos: -14.5,86.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + pos: -22.5,90.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: -23.5,91.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + pos: -23.5,92.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: -23.5,93.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: -17.5,65.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: -17.5,64.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: -15.5,64.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: -16.5,64.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + pos: -14.5,64.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + pos: -13.5,64.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: -13.5,63.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: -13.5,61.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: -13.5,60.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + pos: -13.5,62.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: -14.5,60.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: -17.5,60.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: -16.5,60.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: -17.5,61.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: -17.5,62.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: -15.5,58.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: -12.5,58.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: -11.5,58.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: -10.5,58.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: -9.5,58.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + pos: -14.5,58.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: -9.5,59.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: -9.5,60.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + pos: -9.5,63.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: -9.5,61.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + pos: -9.5,67.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: -28.5,63.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: -27.5,63.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + pos: -27.5,62.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + pos: -27.5,61.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: -36.5,51.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + pos: -36.5,50.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + pos: -36.5,49.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + pos: -36.5,48.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + pos: -35.5,48.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + pos: -37.5,48.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: -38.5,48.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + pos: -39.5,48.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + pos: -40.5,48.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: -41.5,48.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: -33.5,48.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + pos: -32.5,48.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: -32.5,47.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: -32.5,45.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: -32.5,44.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: -32.5,46.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + pos: -33.5,44.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: -35.5,44.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: -36.5,44.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: -37.5,44.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: -34.5,44.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: -39.5,44.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: -38.5,44.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: -33.5,40.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + pos: -35.5,40.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: -36.5,40.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: -37.5,38.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: -38.5,38.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: -38.5,38.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: -38.5,39.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: -39.5,39.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: -40.5,39.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: -36.5,43.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: -18.5,46.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: -16.5,46.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: -25.5,37.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: -26.5,39.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: -27.5,39.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: -28.5,39.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: -28.5,40.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: -28.5,42.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: -28.5,41.5 + parent: 2 + - uid: 8653 + components: + - type: Transform + pos: -27.5,42.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: -25.5,42.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 + - uid: 8657 + components: + - type: Transform + pos: -26.5,42.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + pos: -23.5,39.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + pos: -24.5,39.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: -23.5,40.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 8664 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 8665 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + pos: -17.5,44.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 8671 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: -19.5,40.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: -15.5,43.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: -12.5,39.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: -11.5,41.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: -9.5,40.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + pos: -8.5,40.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -9.5,39.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 8696 + components: + - type: Transform + pos: -9.5,38.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 8699 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 8700 + components: + - type: Transform + pos: -5.5,37.5 + parent: 2 + - uid: 8701 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 8704 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 8705 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 8706 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 8707 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 8709 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: -12.5,45.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: -12.5,47.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: -5.5,47.5 + parent: 2 + - uid: 8719 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 8720 + components: + - type: Transform + pos: -9.5,47.5 + parent: 2 + - uid: 8721 + components: + - type: Transform + pos: -8.5,47.5 + parent: 2 + - uid: 8722 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 8723 + components: + - type: Transform + pos: -9.5,49.5 + parent: 2 + - uid: 8724 + components: + - type: Transform + pos: -10.5,49.5 + parent: 2 + - uid: 8728 + components: + - type: Transform + pos: -8.5,49.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 + - uid: 8730 + components: + - type: Transform + pos: -5.5,49.5 + parent: 2 + - uid: 8731 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 8732 + components: + - type: Transform + pos: -3.5,49.5 + parent: 2 + - uid: 8733 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 8734 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - uid: 8735 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 8736 + components: + - type: Transform + pos: -26.5,46.5 + parent: 2 + - uid: 8737 + components: + - type: Transform + pos: -27.5,46.5 + parent: 2 + - uid: 8738 + components: + - type: Transform + pos: -27.5,47.5 + parent: 2 + - uid: 8739 + components: + - type: Transform + pos: -27.5,48.5 + parent: 2 + - uid: 8740 + components: + - type: Transform + pos: -28.5,48.5 + parent: 2 + - uid: 8741 + components: + - type: Transform + pos: -29.5,48.5 + parent: 2 + - uid: 8742 + components: + - type: Transform + pos: -29.5,49.5 + parent: 2 + - uid: 8743 + components: + - type: Transform + pos: -29.5,50.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + pos: -29.5,50.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: -29.5,51.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + pos: -28.5,51.5 + parent: 2 + - uid: 8747 + components: + - type: Transform + pos: -27.5,51.5 + parent: 2 + - uid: 8748 + components: + - type: Transform + pos: -32.5,49.5 + parent: 2 + - uid: 8749 + components: + - type: Transform + pos: -32.5,50.5 + parent: 2 + - uid: 8750 + components: + - type: Transform + pos: -32.5,43.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + pos: -31.5,43.5 + parent: 2 + - uid: 8752 + components: + - type: Transform + pos: -31.5,42.5 + parent: 2 + - uid: 8753 + components: + - type: Transform + pos: -31.5,40.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: -31.5,39.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + pos: -31.5,38.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + pos: -31.5,41.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: -1.5,73.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: -1.5,70.5 + parent: 2 + - uid: 8769 + components: + - type: Transform + pos: -0.5,71.5 + parent: 2 + - uid: 8772 + components: + - type: Transform + pos: -0.5,75.5 + parent: 2 + - uid: 8773 + components: + - type: Transform + pos: 0.5,75.5 + parent: 2 + - uid: 8774 + components: + - type: Transform + pos: 1.5,75.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + pos: -0.5,69.5 + parent: 2 + - uid: 8776 + components: + - type: Transform + pos: -0.5,68.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + pos: -3.5,67.5 + parent: 2 + - uid: 8781 + components: + - type: Transform + pos: -0.5,67.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + pos: 0.5,71.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + pos: 1.5,71.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: 1.5,72.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 8786 + components: + - type: Transform + pos: 2.5,60.5 + parent: 2 + - uid: 8787 + components: + - type: Transform + pos: 2.5,61.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + pos: 0.5,61.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + pos: -0.5,61.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + pos: 1.5,61.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: -0.5,62.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + pos: -0.5,63.5 + parent: 2 + - uid: 8793 + components: + - type: Transform + pos: -0.5,65.5 + parent: 2 + - uid: 8794 + components: + - type: Transform + pos: -0.5,64.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: 3.5,61.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: 3.5,62.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + pos: 3.5,64.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + pos: 3.5,65.5 + parent: 2 + - uid: 8799 + components: + - type: Transform + pos: 3.5,66.5 + parent: 2 + - uid: 8800 + components: + - type: Transform + pos: 3.5,63.5 + parent: 2 + - uid: 8801 + components: + - type: Transform + pos: 3.5,67.5 + parent: 2 + - uid: 8802 + components: + - type: Transform + pos: 3.5,68.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + pos: 4.5,68.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + pos: 7.5,68.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: 9.5,68.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + pos: 10.5,68.5 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: 12.5,68.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: 13.5,68.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + pos: 5.5,69.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: 8.5,68.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + pos: 11.5,68.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + pos: 7.5,70.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + pos: 9.5,70.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: 10.5,70.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: 11.5,70.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + pos: 12.5,70.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + pos: 8.5,70.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + pos: 13.5,70.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 9.5,71.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: 9.5,72.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + pos: 9.5,73.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: 9.5,74.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + pos: 8.5,74.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: 6.5,74.5 + parent: 2 + - uid: 8830 + components: + - type: Transform + pos: 5.5,74.5 + parent: 2 + - uid: 8831 + components: + - type: Transform + pos: 4.5,74.5 + parent: 2 + - uid: 8832 + components: + - type: Transform + pos: 7.5,74.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + pos: 4.5,75.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: 4.5,76.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + pos: 9.5,75.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + pos: 11.5,75.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + pos: 12.5,75.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: 10.5,75.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + pos: 13.5,75.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + pos: 14.5,75.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + pos: 5.5,57.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + pos: 7.5,57.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + pos: 8.5,57.5 + parent: 2 + - uid: 8844 + components: + - type: Transform + pos: 9.5,57.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + pos: 10.5,57.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + pos: 11.5,57.5 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: 12.5,57.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + pos: 13.5,57.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: 6.5,57.5 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: 8.5,57.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: 8.5,55.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: 8.5,54.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: 8.5,53.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: 8.5,56.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: 9.5,53.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: 11.5,53.5 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: 10.5,53.5 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: 13.5,53.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: 12.5,53.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + pos: 7.5,53.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: 6.5,53.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + pos: 5.5,53.5 + parent: 2 + - uid: 8863 + components: + - type: Transform + pos: 8.5,58.5 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: 8.5,60.5 + parent: 2 + - uid: 8865 + components: + - type: Transform + pos: 8.5,61.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: 8.5,59.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: 8.5,62.5 + parent: 2 + - uid: 8868 + components: + - type: Transform + pos: 8.5,63.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: 11.5,64.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: 10.5,64.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: 11.5,63.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: 12.5,63.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: 13.5,63.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: 14.5,63.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: 13.5,64.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: 9.5,61.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: 10.5,61.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: 7.5,64.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 8882 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 8884 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 + - uid: 8887 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: 9.5,32.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + pos: 9.5,32.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 8904 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 8915 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 8916 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 8920 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 8940 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 8941 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 8942 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 8943 + components: + - type: Transform + pos: 7.5,43.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: 7.5,44.5 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: 6.5,44.5 + parent: 2 + - uid: 8946 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + pos: 4.5,44.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: 7.5,41.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: 7.5,39.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 8960 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 8961 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 8963 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + pos: 11.5,42.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: 11.5,43.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: 15.5,43.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + pos: 11.5,44.5 + parent: 2 + - uid: 8972 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - uid: 8974 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 8975 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 8976 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - uid: 8977 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 8978 + components: + - type: Transform + pos: 16.5,37.5 + parent: 2 + - uid: 8979 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 8981 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 8982 + components: + - type: Transform + pos: 18.5,36.5 + parent: 2 + - uid: 8983 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 8986 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 + - uid: 8987 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 8988 + components: + - type: Transform + pos: 22.5,39.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - uid: 8991 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 8993 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + pos: 19.5,46.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - uid: 8997 + components: + - type: Transform + pos: 20.5,46.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + pos: 20.5,47.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + pos: 21.5,47.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 9031 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + pos: -33.5,32.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -35.5,32.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: -36.5,32.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: -37.5,32.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - uid: 9083 + components: + - type: Transform + pos: -40.5,31.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + pos: -40.5,28.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: -39.5,28.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: -37.5,28.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + pos: -35.5,28.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: -33.5,28.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + pos: -33.5,29.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + pos: -36.5,31.5 + parent: 2 + - uid: 9101 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: -37.5,24.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 9106 + components: + - type: Transform + pos: -40.5,24.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + pos: -38.5,24.5 + parent: 2 + - uid: 9108 + components: + - type: Transform + pos: -41.5,24.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + pos: -42.5,24.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + pos: -35.5,24.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: -32.5,24.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: -37.5,26.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: -28.5,24.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: -28.5,23.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + pos: -26.5,24.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 9126 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + pos: -21.5,24.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: -23.5,24.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + pos: -23.5,28.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + pos: -24.5,28.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + pos: -25.5,28.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: -22.5,28.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + pos: -11.5,28.5 + parent: 2 + - uid: 9148 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + pos: -2.5,24.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: -5.5,24.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + pos: -8.5,24.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 9159 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: -10.5,24.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 9168 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 9169 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 9175 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 9181 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 9182 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 9183 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 9186 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 9187 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 9189 + components: + - type: Transform + pos: -12.5,33.5 + parent: 2 + - uid: 9190 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 9191 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 + - uid: 9192 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 9193 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 9194 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 9195 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 9198 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 + - uid: 9199 + components: + - type: Transform + pos: -18.5,30.5 + parent: 2 + - uid: 9200 + components: + - type: Transform + pos: -18.5,31.5 + parent: 2 + - uid: 9201 + components: + - type: Transform + pos: -18.5,32.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 9203 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 9204 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - uid: 9205 + components: + - type: Transform + pos: -26.5,33.5 + parent: 2 + - uid: 9206 + components: + - type: Transform + pos: -26.5,32.5 + parent: 2 + - uid: 9207 + components: + - type: Transform + pos: -27.5,32.5 + parent: 2 + - uid: 9208 + components: + - type: Transform + pos: -29.5,32.5 + parent: 2 + - uid: 9209 + components: + - type: Transform + pos: -28.5,32.5 + parent: 2 + - uid: 9210 + components: + - type: Transform + pos: -25.5,32.5 + parent: 2 + - uid: 9211 + components: + - type: Transform + pos: -23.5,32.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: -22.5,32.5 + parent: 2 + - uid: 9213 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + pos: -24.5,32.5 + parent: 2 + - uid: 9215 + components: + - type: Transform + pos: -27.5,31.5 + parent: 2 + - uid: 9216 + components: + - type: Transform + pos: -27.5,29.5 + parent: 2 + - uid: 9217 + components: + - type: Transform + pos: -27.5,30.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + pos: -27.5,28.5 + parent: 2 + - uid: 9219 + components: + - type: Transform + pos: -28.5,28.5 + parent: 2 + - uid: 9220 + components: + - type: Transform + pos: -30.5,28.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + pos: -29.5,28.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + pos: -30.5,29.5 + parent: 2 + - uid: 9223 + components: + - type: Transform + pos: -30.5,30.5 + parent: 2 + - uid: 9224 + components: + - type: Transform + pos: -1.5,65.5 + parent: 2 + - uid: 9226 + components: + - type: Transform + pos: -3.5,65.5 + parent: 2 + - uid: 9227 + components: + - type: Transform + pos: -4.5,65.5 + parent: 2 + - uid: 9228 + components: + - type: Transform + pos: -5.5,65.5 + parent: 2 + - uid: 9229 + components: + - type: Transform + pos: -5.5,64.5 + parent: 2 + - uid: 9230 + components: + - type: Transform + pos: -5.5,63.5 + parent: 2 + - uid: 9231 + components: + - type: Transform + pos: -5.5,61.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + pos: -5.5,60.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + pos: -5.5,59.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - uid: 9235 + components: + - type: Transform + pos: -5.5,57.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + pos: -5.5,56.5 + parent: 2 + - uid: 9237 + components: + - type: Transform + pos: -5.5,54.5 + parent: 2 + - uid: 9238 + components: + - type: Transform + pos: -5.5,62.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: -5.5,55.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 9241 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: -2.5,53.5 + parent: 2 + - uid: 9243 + components: + - type: Transform + pos: -1.5,53.5 + parent: 2 + - uid: 9244 + components: + - type: Transform + pos: -0.5,53.5 + parent: 2 + - uid: 9245 + components: + - type: Transform + pos: 0.5,53.5 + parent: 2 + - uid: 9246 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 9247 + components: + - type: Transform + pos: 1.5,53.5 + parent: 2 + - uid: 9248 + components: + - type: Transform + pos: 2.5,53.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: -3.5,64.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: -3.5,62.5 + parent: 2 + - uid: 9251 + components: + - type: Transform + pos: -3.5,63.5 + parent: 2 + - uid: 9252 + components: + - type: Transform + pos: -3.5,61.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: -3.5,59.5 + parent: 2 + - uid: 9254 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 9255 + components: + - type: Transform + pos: -3.5,57.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + pos: -3.5,56.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + pos: -3.5,55.5 + parent: 2 + - uid: 9258 + components: + - type: Transform + pos: -3.5,60.5 + parent: 2 + - uid: 9259 + components: + - type: Transform + pos: -43.5,62.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + pos: -40.5,62.5 + parent: 2 + - uid: 9262 + components: + - type: Transform + pos: -39.5,62.5 + parent: 2 + - uid: 9263 + components: + - type: Transform + pos: -41.5,62.5 + parent: 2 + - uid: 9264 + components: + - type: Transform + pos: -37.5,62.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + pos: -38.5,62.5 + parent: 2 + - uid: 9266 + components: + - type: Transform + pos: -39.5,61.5 + parent: 2 + - uid: 9267 + components: + - type: Transform + pos: -39.5,59.5 + parent: 2 + - uid: 9268 + components: + - type: Transform + pos: -39.5,58.5 + parent: 2 + - uid: 9269 + components: + - type: Transform + pos: -39.5,57.5 + parent: 2 + - uid: 9270 + components: + - type: Transform + pos: -39.5,56.5 + parent: 2 + - uid: 9271 + components: + - type: Transform + pos: -39.5,55.5 + parent: 2 + - uid: 9272 + components: + - type: Transform + pos: -39.5,60.5 + parent: 2 + - uid: 9273 + components: + - type: Transform + pos: -62.5,63.5 + parent: 2 + - uid: 9274 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - uid: 9275 + components: + - type: Transform + pos: -63.5,63.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: -65.5,63.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + pos: -66.5,63.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: -68.5,63.5 + parent: 2 + - uid: 9279 + components: + - type: Transform + pos: -67.5,63.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + pos: -69.5,63.5 + parent: 2 + - uid: 9281 + components: + - type: Transform + pos: -70.5,63.5 + parent: 2 + - uid: 9282 + components: + - type: Transform + pos: -49.5,62.5 + parent: 2 + - uid: 9283 + components: + - type: Transform + pos: -49.5,60.5 + parent: 2 + - uid: 9284 + components: + - type: Transform + pos: -49.5,59.5 + parent: 2 + - uid: 9285 + components: + - type: Transform + pos: -49.5,58.5 + parent: 2 + - uid: 9286 + components: + - type: Transform + pos: -49.5,61.5 + parent: 2 + - uid: 9287 + components: + - type: Transform + pos: -50.5,58.5 + parent: 2 + - uid: 9288 + components: + - type: Transform + pos: -52.5,58.5 + parent: 2 + - uid: 9289 + components: + - type: Transform + pos: -53.5,58.5 + parent: 2 + - uid: 9290 + components: + - type: Transform + pos: -51.5,58.5 + parent: 2 + - uid: 9291 + components: + - type: Transform + pos: -49.5,57.5 + parent: 2 + - uid: 9292 + components: + - type: Transform + pos: -50.5,60.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: -52.5,60.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + pos: -53.5,60.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + pos: -51.5,60.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + pos: -52.5,61.5 + parent: 2 + - uid: 9297 + components: + - type: Transform + pos: -54.5,59.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + pos: -54.5,60.5 + parent: 2 + - uid: 9299 + components: + - type: Transform + pos: -54.5,58.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + pos: -15.5,57.5 + parent: 2 + - uid: 9301 + components: + - type: Transform + pos: -16.5,57.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + pos: -18.5,57.5 + parent: 2 + - uid: 9303 + components: + - type: Transform + pos: -19.5,57.5 + parent: 2 + - uid: 9304 + components: + - type: Transform + pos: -20.5,57.5 + parent: 2 + - uid: 9305 + components: + - type: Transform + pos: -21.5,57.5 + parent: 2 + - uid: 9306 + components: + - type: Transform + pos: -22.5,57.5 + parent: 2 + - uid: 9307 + components: + - type: Transform + pos: -23.5,57.5 + parent: 2 + - uid: 9308 + components: + - type: Transform + pos: -17.5,57.5 + parent: 2 + - uid: 9309 + components: + - type: Transform + pos: -24.5,57.5 + parent: 2 + - uid: 9310 + components: + - type: Transform + pos: -27.5,57.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: -26.5,57.5 + parent: 2 + - uid: 9312 + components: + - type: Transform + pos: -28.5,57.5 + parent: 2 + - uid: 9313 + components: + - type: Transform + pos: -29.5,57.5 + parent: 2 + - uid: 9314 + components: + - type: Transform + pos: -30.5,57.5 + parent: 2 + - uid: 9315 + components: + - type: Transform + pos: -31.5,57.5 + parent: 2 + - uid: 9316 + components: + - type: Transform + pos: -32.5,57.5 + parent: 2 + - uid: 9317 + components: + - type: Transform + pos: -25.5,57.5 + parent: 2 + - uid: 9318 + components: + - type: Transform + pos: -33.5,57.5 + parent: 2 + - uid: 9319 + components: + - type: Transform + pos: -34.5,57.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + pos: -35.5,57.5 + parent: 2 + - uid: 9321 + components: + - type: Transform + pos: -36.5,57.5 + parent: 2 + - uid: 9322 + components: + - type: Transform + pos: -36.5,56.5 + parent: 2 + - uid: 9323 + components: + - type: Transform + pos: -36.5,54.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: -36.5,53.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: -36.5,55.5 + parent: 2 + - uid: 9326 + components: + - type: Transform + pos: -20.5,53.5 + parent: 2 + - uid: 9327 + components: + - type: Transform + pos: -19.5,53.5 + parent: 2 + - uid: 9328 + components: + - type: Transform + pos: -18.5,53.5 + parent: 2 + - uid: 9329 + components: + - type: Transform + pos: -26.5,53.5 + parent: 2 + - uid: 9330 + components: + - type: Transform + pos: -15.5,53.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + pos: -14.5,53.5 + parent: 2 + - uid: 9332 + components: + - type: Transform + pos: -17.5,53.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: -13.5,53.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + pos: -11.5,53.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + pos: -16.5,53.5 + parent: 2 + - uid: 9336 + components: + - type: Transform + pos: -10.5,53.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + pos: -9.5,53.5 + parent: 2 + - uid: 9338 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - uid: 9339 + components: + - type: Transform + pos: -12.5,53.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + pos: -35.5,53.5 + parent: 2 + - uid: 9341 + components: + - type: Transform + pos: -33.5,53.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + pos: -32.5,53.5 + parent: 2 + - uid: 9343 + components: + - type: Transform + pos: -31.5,53.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + pos: -30.5,53.5 + parent: 2 + - uid: 9345 + components: + - type: Transform + pos: -34.5,53.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: -29.5,53.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: -28.5,53.5 + parent: 2 + - uid: 9348 + components: + - type: Transform + pos: -27.5,53.5 + parent: 2 + - uid: 9349 + components: + - type: Transform + pos: -25.5,53.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + pos: -24.5,53.5 + parent: 2 + - uid: 9351 + components: + - type: Transform + pos: -23.5,53.5 + parent: 2 + - uid: 9352 + components: + - type: Transform + pos: -22.5,53.5 + parent: 2 + - uid: 9353 + components: + - type: Transform + pos: -21.5,53.5 + parent: 2 + - uid: 9354 + components: + - type: Transform + pos: -8.5,55.5 + parent: 2 + - uid: 9355 + components: + - type: Transform + pos: -8.5,57.5 + parent: 2 + - uid: 9356 + components: + - type: Transform + pos: -8.5,56.5 + parent: 2 + - uid: 9357 + components: + - type: Transform + pos: -8.5,54.5 + parent: 2 + - uid: 9358 + components: + - type: Transform + pos: -18.5,54.5 + parent: 2 + - uid: 9359 + components: + - type: Transform + pos: -18.5,56.5 + parent: 2 + - uid: 9360 + components: + - type: Transform + pos: -27.5,56.5 + parent: 2 + - uid: 9361 + components: + - type: Transform + pos: -27.5,54.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + pos: -40.5,54.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: -39.5,54.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + pos: -41.5,54.5 + parent: 2 + - uid: 9365 + components: + - type: Transform + pos: -42.5,54.5 + parent: 2 + - uid: 9366 + components: + - type: Transform + pos: -44.5,54.5 + parent: 2 + - uid: 9368 + components: + - type: Transform + pos: -43.5,54.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + pos: -44.5,52.5 + parent: 2 + - uid: 9370 + components: + - type: Transform + pos: -44.5,53.5 + parent: 2 + - uid: 9371 + components: + - type: Transform + pos: -44.5,51.5 + parent: 2 + - uid: 9372 + components: + - type: Transform + pos: -46.5,47.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + pos: -45.5,47.5 + parent: 2 + - uid: 9374 + components: + - type: Transform + pos: -44.5,47.5 + parent: 2 + - uid: 9375 + components: + - type: Transform + pos: -44.5,48.5 + parent: 2 + - uid: 9376 + components: + - type: Transform + pos: -44.5,49.5 + parent: 2 + - uid: 9377 + components: + - type: Transform + pos: -44.5,46.5 + parent: 2 + - uid: 9378 + components: + - type: Transform + pos: -44.5,45.5 + parent: 2 + - uid: 9379 + components: + - type: Transform + pos: -44.5,43.5 + parent: 2 + - uid: 9380 + components: + - type: Transform + pos: -44.5,42.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + pos: -44.5,44.5 + parent: 2 + - uid: 9382 + components: + - type: Transform + pos: -44.5,40.5 + parent: 2 + - uid: 9383 + components: + - type: Transform + pos: -44.5,41.5 + parent: 2 + - uid: 9384 + components: + - type: Transform + pos: -44.5,39.5 + parent: 2 + - uid: 9386 + components: + - type: Transform + pos: -23.5,62.5 + parent: 2 + - uid: 9387 + components: + - type: Transform + pos: -23.5,63.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + pos: -22.5,63.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + pos: -21.5,63.5 + parent: 2 + - uid: 9390 + components: + - type: Transform + pos: -20.5,63.5 + parent: 2 + - uid: 9391 + components: + - type: Transform + pos: -20.5,62.5 + parent: 2 + - uid: 9392 + components: + - type: Transform + pos: -20.5,64.5 + parent: 2 + - uid: 9393 + components: + - type: Transform + pos: -22.5,64.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 9406 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 9409 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 9413 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 9414 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 9415 + components: + - type: Transform + pos: -50.5,20.5 + parent: 2 + - uid: 9416 + components: + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 9417 + components: + - type: Transform + pos: -48.5,20.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: -46.5,20.5 + parent: 2 + - uid: 9419 + components: + - type: Transform + pos: -45.5,20.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + pos: -44.5,20.5 + parent: 2 + - uid: 9421 + components: + - type: Transform + pos: -47.5,20.5 + parent: 2 + - uid: 9422 + components: + - type: Transform + pos: -44.5,21.5 + parent: 2 + - uid: 9423 + components: + - type: Transform + pos: -44.5,22.5 + parent: 2 + - uid: 9424 + components: + - type: Transform + pos: -44.5,24.5 + parent: 2 + - uid: 9425 + components: + - type: Transform + pos: -44.5,25.5 + parent: 2 + - uid: 9426 + components: + - type: Transform + pos: -44.5,26.5 + parent: 2 + - uid: 9427 + components: + - type: Transform + pos: -44.5,27.5 + parent: 2 + - uid: 9428 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 9429 + components: + - type: Transform + pos: -44.5,23.5 + parent: 2 + - uid: 9430 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + pos: -44.5,31.5 + parent: 2 + - uid: 9432 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 9438 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + pos: -42.5,20.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 9441 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 9442 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + pos: -42.5,18.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + pos: -41.5,15.5 + parent: 2 + - uid: 9447 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 9449 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 9450 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 9454 + components: + - type: Transform + pos: -38.5,14.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 9462 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 9463 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 9464 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 9467 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 9468 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 9469 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 9472 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 9475 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 9476 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 9477 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 9480 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 9481 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 9482 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 9483 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 9484 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 9486 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 9487 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 9488 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 9489 + components: + - type: Transform + pos: -21.5,20.5 + parent: 2 + - uid: 9490 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 9491 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 9492 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 9494 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 9495 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 9496 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 9497 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 9498 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 9501 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 9502 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 9503 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 9504 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 9505 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 9509 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 9510 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 9511 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 9513 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - uid: 9515 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 9516 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 9517 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - uid: 9520 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - uid: 9523 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 9524 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 9525 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 + - uid: 9526 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 9527 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 9530 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 9531 + components: + - type: Transform + pos: 1.5,45.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - uid: 9535 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - uid: 9536 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - uid: 9538 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 9539 + components: + - type: Transform + pos: 1.5,52.5 + parent: 2 + - uid: 9540 + components: + - type: Transform + pos: -63.5,35.5 + parent: 2 + - uid: 9541 + components: + - type: Transform + pos: -64.5,35.5 + parent: 2 + - uid: 9542 + components: + - type: Transform + pos: -63.5,36.5 + parent: 2 + - uid: 9547 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 9548 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 9549 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 9550 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 9551 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 9553 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 9555 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 9560 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 9561 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 9562 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 9563 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 9565 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 9566 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 9568 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 9570 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 9607 + components: + - type: Transform + pos: -44.5,70.5 + parent: 2 + - uid: 9608 + components: + - type: Transform + pos: -44.5,71.5 + parent: 2 + - uid: 9609 + components: + - type: Transform + pos: -44.5,72.5 + parent: 2 + - uid: 9610 + components: + - type: Transform + pos: -43.5,72.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + pos: -42.5,72.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + pos: -41.5,72.5 + parent: 2 + - uid: 9613 + components: + - type: Transform + pos: -35.5,68.5 + parent: 2 + - uid: 9614 + components: + - type: Transform + pos: -36.5,68.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: -37.5,68.5 + parent: 2 + - uid: 9616 + components: + - type: Transform + pos: -38.5,68.5 + parent: 2 + - uid: 9617 + components: + - type: Transform + pos: -38.5,67.5 + parent: 2 + - uid: 9618 + components: + - type: Transform + pos: -38.5,66.5 + parent: 2 + - uid: 9619 + components: + - type: Transform + pos: -38.5,65.5 + parent: 2 + - uid: 9620 + components: + - type: Transform + pos: -38.5,69.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + pos: -38.5,70.5 + parent: 2 + - uid: 9622 + components: + - type: Transform + pos: -38.5,71.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + pos: -38.5,72.5 + parent: 2 + - uid: 9624 + components: + - type: Transform + pos: -37.5,72.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + pos: -35.5,72.5 + parent: 2 + - uid: 9626 + components: + - type: Transform + pos: -34.5,72.5 + parent: 2 + - uid: 9627 + components: + - type: Transform + pos: -33.5,72.5 + parent: 2 + - uid: 9628 + components: + - type: Transform + pos: -36.5,72.5 + parent: 2 + - uid: 9629 + components: + - type: Transform + pos: -33.5,71.5 + parent: 2 + - uid: 9636 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 9637 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - uid: 9638 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 + - uid: 9639 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 + - uid: 9640 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - uid: 9643 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 9646 + components: + - type: Transform + pos: 28.5,42.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + pos: 28.5,41.5 + parent: 2 + - uid: 9648 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 9649 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 9651 + components: + - type: Transform + pos: 27.5,38.5 + parent: 2 + - uid: 9652 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 9653 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 9654 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 9656 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 9658 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 9659 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 9662 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 9665 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 9670 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + pos: -1.5,71.5 + parent: 2 + - uid: 9809 + components: + - type: Transform + pos: 11.5,73.5 + parent: 2 + - uid: 9815 + components: + - type: Transform + pos: 6.5,71.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + pos: -4.5,66.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + pos: -65.5,26.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + pos: -65.5,27.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + pos: -65.5,28.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + pos: -65.5,29.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + pos: -65.5,31.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + pos: -65.5,32.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + pos: -65.5,33.5 + parent: 2 + - uid: 10546 + components: + - type: Transform + pos: -65.5,30.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 10562 + components: + - type: Transform + pos: -58.5,18.5 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 10564 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 10565 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + pos: 22.5,47.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: 11.5,45.5 + parent: 2 + - uid: 10573 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + pos: -12.5,46.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 12120 + components: + - type: Transform + pos: -15.5,73.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + pos: -56.5,50.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + pos: -13.5,50.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + pos: -67.5,44.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + pos: -67.5,43.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + pos: -68.5,45.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + pos: -68.5,47.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + pos: -68.5,48.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + pos: -68.5,46.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + pos: -69.5,48.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + pos: -71.5,48.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + pos: -72.5,48.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + pos: -73.5,48.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + pos: -70.5,48.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + pos: -71.5,49.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + pos: -71.5,51.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + pos: -71.5,52.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + pos: -71.5,50.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + pos: -72.5,52.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: -73.5,47.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + pos: -73.5,45.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + pos: -73.5,46.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: -68.5,43.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: -70.5,43.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: -71.5,43.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + pos: -72.5,43.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: -69.5,43.5 + parent: 2 + - uid: 12731 + components: + - type: Transform + pos: -73.5,43.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: -73.5,42.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: -73.5,41.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + pos: -73.5,40.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: -73.5,39.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + pos: -73.5,38.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + pos: -73.5,37.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: -73.5,36.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: -72.5,36.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + pos: -70.5,36.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + pos: -69.5,36.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: -71.5,36.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: -71.5,40.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: -71.5,39.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + pos: -71.5,41.5 + parent: 2 + - uid: 12746 + components: + - type: Transform + pos: -69.5,46.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + pos: -70.5,46.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + pos: -19.5,90.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + pos: -40.5,64.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: -88.5,69.5 + parent: 2 + - uid: 12824 + components: + - type: Transform + pos: -88.5,68.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 4.5,77.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + pos: 4.5,78.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + pos: -27.5,59.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + pos: 10.5,55.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + pos: 10.5,73.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + pos: -14.5,84.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: -14.5,82.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: -14.5,81.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: -14.5,80.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + pos: -14.5,79.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + pos: -14.5,83.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: 14.5,57.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: 15.5,57.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: 16.5,57.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: 17.5,57.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: 14.5,58.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + pos: 14.5,59.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + pos: 14.5,60.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + pos: 15.5,60.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + pos: 14.5,56.5 + parent: 2 + - uid: 13320 + components: + - type: Transform + pos: 14.5,55.5 + parent: 2 + - uid: 13321 + components: + - type: Transform + pos: 14.5,52.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + pos: 14.5,54.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + pos: 14.5,51.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + pos: 14.5,53.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + pos: 13.5,51.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: 4.5,53.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: 4.5,54.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + pos: 4.5,52.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: 4.5,50.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: 4.5,49.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: 4.5,48.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: 7.5,48.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: 8.5,48.5 + parent: 2 + - uid: 13342 + components: + - type: Transform + pos: 6.5,48.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 13350 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 13352 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 13359 + components: + - type: Transform + pos: -65.5,35.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + pos: -65.5,33.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + pos: -65.5,34.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 13364 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 13365 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 13366 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 13367 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 13372 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 13374 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 13376 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 13377 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 13378 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 13379 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 13380 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 13381 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 13382 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 13386 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 13387 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 13388 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 13389 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 + - uid: 13391 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 13394 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 2 + - uid: 13395 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 13396 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 13399 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: 27.5,46.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: 27.5,47.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + pos: 27.5,48.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + pos: -61.5,4.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 14010 + components: + - type: Transform + pos: 29.5,48.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: -62.5,5.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + pos: -66.5,73.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + pos: -64.5,73.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + pos: -63.5,73.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: -62.5,73.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + pos: -65.5,73.5 + parent: 2 + - uid: 14149 + components: + - type: Transform + pos: -61.5,73.5 + parent: 2 + - uid: 14150 + components: + - type: Transform + pos: -59.5,73.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + pos: -60.5,73.5 + parent: 2 + - uid: 14152 + components: + - type: Transform + pos: -59.5,74.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - uid: 14243 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 14289 + components: + - type: Transform + pos: -64.5,5.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + pos: -65.5,5.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + pos: -43.5,14.5 + parent: 2 + - uid: 14353 + components: + - type: Transform + pos: -43.5,13.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 14357 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 14373 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 14412 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 14424 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 14430 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 14465 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 14487 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 14490 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 14495 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 14497 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 14649 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 14677 + components: + - type: Transform + pos: -66.5,5.5 + parent: 2 + - uid: 14681 + components: + - type: Transform + pos: -75.5,13.5 + parent: 2 + - uid: 14682 + components: + - type: Transform + pos: -75.5,15.5 + parent: 2 + - uid: 14683 + components: + - type: Transform + pos: -75.5,14.5 + parent: 2 + - uid: 14684 + components: + - type: Transform + pos: -76.5,15.5 + parent: 2 + - uid: 14685 + components: + - type: Transform + pos: -77.5,15.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + pos: -78.5,15.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + pos: -79.5,15.5 + parent: 2 + - uid: 14688 + components: + - type: Transform + pos: -80.5,15.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + pos: -81.5,15.5 + parent: 2 + - uid: 14690 + components: + - type: Transform + pos: -82.5,15.5 + parent: 2 + - uid: 14691 + components: + - type: Transform + pos: -83.5,15.5 + parent: 2 + - uid: 14692 + components: + - type: Transform + pos: -84.5,15.5 + parent: 2 + - uid: 14712 + components: + - type: Transform + pos: -68.5,5.5 + parent: 2 + - uid: 14751 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 14756 + components: + - type: Transform + pos: -67.5,75.5 + parent: 2 + - uid: 14785 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 14786 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 14787 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 14788 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 14789 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 14796 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 14797 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 14798 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 14800 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 14803 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 14806 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 14809 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 14810 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 14814 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 14816 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 14820 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: -67.5,76.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + pos: -67.5,77.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + pos: -67.5,5.5 + parent: 2 + - uid: 15011 + components: + - type: Transform + pos: -67.5,78.5 + parent: 2 + - uid: 15018 + components: + - type: Transform + pos: -66.5,78.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + pos: -65.5,78.5 + parent: 2 + - uid: 15020 + components: + - type: Transform + pos: -64.5,78.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + pos: -63.5,78.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + pos: -62.5,78.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + pos: -61.5,78.5 + parent: 2 + - uid: 15024 + components: + - type: Transform + pos: -60.5,78.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + pos: -69.5,5.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + pos: -70.5,5.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + pos: -59.5,78.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: -59.5,77.5 + parent: 2 + - uid: 15177 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 15178 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 15179 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - uid: 15180 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 15181 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 15182 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 + - uid: 15224 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 15313 + components: + - type: Transform + pos: -15.5,90.5 + parent: 2 + - uid: 15314 + components: + - type: Transform + pos: -15.5,91.5 + parent: 2 + - uid: 15343 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 15360 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 15378 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -92.5,55.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + pos: -89.5,69.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -90.5,69.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + pos: -92.5,69.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: -91.5,69.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + pos: -93.5,69.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + pos: 10.5,59.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + pos: 11.5,59.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + pos: -75.5,12.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: -76.5,10.5 + parent: 2 + - uid: 15893 + components: + - type: Transform + pos: -76.5,9.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + pos: -76.5,8.5 + parent: 2 + - uid: 15895 + components: + - type: Transform + pos: -80.5,3.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + pos: -79.5,3.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + pos: -78.5,3.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + pos: -78.5,5.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + pos: -78.5,6.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: -80.5,8.5 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: -79.5,8.5 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: -78.5,8.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + pos: -73.5,3.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: -73.5,4.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + pos: -73.5,5.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: -73.5,6.5 + parent: 2 + - uid: 15907 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 + - uid: 15908 + components: + - type: Transform + pos: -79.5,2.5 + parent: 2 + - uid: 15909 + components: + - type: Transform + pos: -79.5,0.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + pos: -78.5,0.5 + parent: 2 + - uid: 15911 + components: + - type: Transform + pos: -77.5,0.5 + parent: 2 + - uid: 15912 + components: + - type: Transform + pos: -75.5,0.5 + parent: 2 + - uid: 15913 + components: + - type: Transform + pos: -74.5,0.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + pos: -76.5,0.5 + parent: 2 + - uid: 15915 + components: + - type: Transform + pos: -73.5,0.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + pos: -77.5,7.5 + parent: 2 + - uid: 15917 + components: + - type: Transform + pos: -78.5,7.5 + parent: 2 + - uid: 15918 + components: + - type: Transform + pos: -74.5,11.5 + parent: 2 + - uid: 15919 + components: + - type: Transform + pos: -73.5,11.5 + parent: 2 + - uid: 15930 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 15962 + components: + - type: Transform + pos: -74.5,15.5 + parent: 2 + - uid: 15963 + components: + - type: Transform + pos: -73.5,15.5 + parent: 2 + - uid: 15964 + components: + - type: Transform + pos: -72.5,15.5 + parent: 2 + - uid: 15965 + components: + - type: Transform + pos: -71.5,15.5 + parent: 2 + - uid: 15966 + components: + - type: Transform + pos: -71.5,16.5 + parent: 2 + - uid: 15967 + components: + - type: Transform + pos: -70.5,16.5 + parent: 2 + - uid: 15968 + components: + - type: Transform + pos: -70.5,17.5 + parent: 2 + - uid: 15973 + components: + - type: Transform + pos: -6.5,67.5 + parent: 2 + - uid: 15974 + components: + - type: Transform + pos: -6.5,69.5 + parent: 2 + - uid: 15975 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - uid: 15976 + components: + - type: Transform + pos: -6.5,71.5 + parent: 2 + - uid: 15977 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 15978 + components: + - type: Transform + pos: -5.5,71.5 + parent: 2 + - uid: 15979 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 15980 + components: + - type: Transform + pos: -4.5,72.5 + parent: 2 + - uid: 15981 + components: + - type: Transform + pos: -4.5,74.5 + parent: 2 + - uid: 15982 + components: + - type: Transform + pos: -4.5,73.5 + parent: 2 + - uid: 15983 + components: + - type: Transform + pos: -4.5,75.5 + parent: 2 + - uid: 15984 + components: + - type: Transform + pos: -3.5,75.5 + parent: 2 + - uid: 15985 + components: + - type: Transform + pos: -2.5,75.5 + parent: 2 + - uid: 15993 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 15994 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - uid: 15995 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 15998 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 15999 + components: + - type: Transform + pos: -56.5,1.5 + parent: 2 + - uid: 16000 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 + - uid: 16001 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 16002 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 16005 + components: + - type: Transform + pos: -57.5,0.5 + parent: 2 + - uid: 16006 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - uid: 16007 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 16008 + components: + - type: Transform + pos: -60.5,0.5 + parent: 2 + - uid: 16009 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - uid: 16010 + components: + - type: Transform + pos: -62.5,0.5 + parent: 2 + - uid: 16011 + components: + - type: Transform + pos: -63.5,0.5 + parent: 2 + - uid: 16012 + components: + - type: Transform + pos: -64.5,0.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + pos: -64.5,15.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + pos: -64.5,13.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + pos: -64.5,12.5 + parent: 2 + - uid: 16075 + components: + - type: Transform + pos: -64.5,11.5 + parent: 2 + - uid: 16076 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + pos: -64.5,9.5 + parent: 2 + - uid: 16078 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + pos: -65.5,9.5 + parent: 2 + - uid: 16080 + components: + - type: Transform + pos: -67.5,9.5 + parent: 2 + - uid: 16081 + components: + - type: Transform + pos: -66.5,9.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + pos: -67.5,10.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 16084 + components: + - type: Transform + pos: -67.5,13.5 + parent: 2 + - uid: 16085 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 16086 + components: + - type: Transform + pos: -64.5,8.5 + parent: 2 + - uid: 16087 + components: + - type: Transform + pos: -63.5,11.5 + parent: 2 + - uid: 16088 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + pos: -60.5,11.5 + parent: 2 + - uid: 16090 + components: + - type: Transform + pos: -59.5,11.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 16092 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: -62.5,11.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + pos: -55.5,11.5 + parent: 2 + - uid: 16095 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 16096 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 16098 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 16101 + components: + - type: Transform + pos: -54.5,16.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: -61.5,12.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + pos: -61.5,14.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + pos: -61.5,15.5 + parent: 2 + - uid: 16107 + components: + - type: Transform + pos: -61.5,16.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - uid: 16109 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 + - uid: 16113 + components: + - type: Transform + pos: -55.5,9.5 + parent: 2 + - uid: 16114 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 + - uid: 16116 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: -59.5,9.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -60.5,9.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 16122 + components: + - type: Transform + pos: -60.5,17.5 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: -59.5,17.5 + parent: 2 + - uid: 16124 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -56.5,17.5 + parent: 2 + - uid: 16126 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: 5.5,70.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: 7.5,71.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + pos: 9.5,76.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: 9.5,77.5 + parent: 2 + - uid: 16436 + components: + - type: Transform + pos: 10.5,77.5 + parent: 2 + - uid: 16437 + components: + - type: Transform + pos: 12.5,77.5 + parent: 2 + - uid: 16438 + components: + - type: Transform + pos: 13.5,77.5 + parent: 2 + - uid: 16439 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + pos: 14.5,77.5 + parent: 2 + - uid: 16441 + components: + - type: Transform + pos: 15.5,77.5 + parent: 2 + - uid: 16442 + components: + - type: Transform + pos: 16.5,77.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + pos: 17.5,77.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + pos: 17.5,75.5 + parent: 2 + - uid: 16445 + components: + - type: Transform + pos: 16.5,75.5 + parent: 2 + - uid: 16446 + components: + - type: Transform + pos: 15.5,75.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + pos: -4.5,78.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + pos: -4.5,79.5 + parent: 2 + - uid: 16522 + components: + - type: Transform + pos: -4.5,80.5 + parent: 2 + - uid: 16523 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 + - uid: 16524 + components: + - type: Transform + pos: -3.5,82.5 + parent: 2 + - uid: 16525 + components: + - type: Transform + pos: -4.5,82.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + pos: -3.5,78.5 + parent: 2 + - uid: 16527 + components: + - type: Transform + pos: -2.5,78.5 + parent: 2 + - uid: 16528 + components: + - type: Transform + pos: -1.5,78.5 + parent: 2 + - uid: 16529 + components: + - type: Transform + pos: -0.5,78.5 + parent: 2 + - uid: 16530 + components: + - type: Transform + pos: 0.5,78.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: 1.5,78.5 + parent: 2 + - uid: 16532 + components: + - type: Transform + pos: 1.5,79.5 + parent: 2 + - uid: 16533 + components: + - type: Transform + pos: 1.5,80.5 + parent: 2 + - uid: 16534 + components: + - type: Transform + pos: 1.5,81.5 + parent: 2 + - uid: 16535 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 16536 + components: + - type: Transform + pos: 4.5,81.5 + parent: 2 + - uid: 16537 + components: + - type: Transform + pos: 5.5,81.5 + parent: 2 + - uid: 16538 + components: + - type: Transform + pos: 6.5,81.5 + parent: 2 + - uid: 16539 + components: + - type: Transform + pos: 7.5,81.5 + parent: 2 + - uid: 16540 + components: + - type: Transform + pos: 8.5,81.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + pos: 9.5,81.5 + parent: 2 + - uid: 16542 + components: + - type: Transform + pos: 10.5,81.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + pos: 3.5,81.5 + parent: 2 + - uid: 16544 + components: + - type: Transform + pos: -2.5,82.5 + parent: 2 + - uid: 16545 + components: + - type: Transform + pos: -1.5,82.5 + parent: 2 + - uid: 16546 + components: + - type: Transform + pos: -0.5,82.5 + parent: 2 + - uid: 16547 + components: + - type: Transform + pos: 1.5,82.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: 1.5,83.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: 1.5,84.5 + parent: 2 + - uid: 16550 + components: + - type: Transform + pos: 1.5,85.5 + parent: 2 + - uid: 16551 + components: + - type: Transform + pos: -0.5,83.5 + parent: 2 + - uid: 16552 + components: + - type: Transform + pos: -0.5,84.5 + parent: 2 + - uid: 16553 + components: + - type: Transform + pos: -0.5,85.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: 7.5,82.5 + parent: 2 + - uid: 16555 + components: + - type: Transform + pos: 7.5,83.5 + parent: 2 + - uid: 16556 + components: + - type: Transform + pos: 7.5,84.5 + parent: 2 + - uid: 16557 + components: + - type: Transform + pos: 7.5,85.5 + parent: 2 + - uid: 16558 + components: + - type: Transform + pos: 9.5,82.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + pos: 9.5,84.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + pos: 9.5,85.5 + parent: 2 + - uid: 16561 + components: + - type: Transform + pos: 9.5,83.5 + parent: 2 + - uid: 16562 + components: + - type: Transform + pos: -74.5,46.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + pos: -75.5,46.5 + parent: 2 + - uid: 16564 + components: + - type: Transform + pos: -76.5,46.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + pos: -74.5,48.5 + parent: 2 + - uid: 16566 + components: + - type: Transform + pos: -75.5,48.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + pos: -76.5,48.5 + parent: 2 + - uid: 16568 + components: + - type: Transform + pos: -74.5,40.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + pos: -75.5,40.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + pos: -76.5,40.5 + parent: 2 + - uid: 16571 + components: + - type: Transform + pos: -74.5,38.5 + parent: 2 + - uid: 16572 + components: + - type: Transform + pos: -75.5,38.5 + parent: 2 + - uid: 16573 + components: + - type: Transform + pos: -76.5,38.5 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 16609 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 16610 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 16611 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 16612 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 16613 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 16614 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 16615 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 16634 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 16638 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 16639 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 16640 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 16645 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 16665 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 16666 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 16667 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - uid: 16671 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 16677 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 16679 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 16800 + components: + - type: Transform + pos: 12.5,66.5 + parent: 2 + - uid: 16801 + components: + - type: Transform + pos: 12.5,67.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 5976 + components: + - type: Transform + pos: 10.312778,55.682655 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: 10.548349,55.53229 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: -59.544456,74.58728 + parent: 2 + - uid: 16763 + components: + - type: Transform + pos: 6.5580187,78.61492 + parent: 2 +- proto: CablecuffsBroken + entities: + - uid: 16150 + components: + - type: Transform + pos: -75.471176,6.65005 + parent: 2 +- proto: CableHV + entities: + - uid: 6 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -21.5,65.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: -35.5,14.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -34.5,72.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: -38.5,72.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -35.5,72.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -36.5,72.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -29.5,72.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: -37.5,72.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: -24.5,90.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -24.5,91.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -23.5,90.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -32.5,72.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: -67.5,54.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: -67.5,52.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: -67.5,53.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -31.5,72.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: -24.5,92.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -68.5,79.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: -66.5,79.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: -69.5,15.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: -64.5,78.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: -62.5,78.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: -50.5,85.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: -66.5,78.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: -50.5,86.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: -68.5,75.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: -65.5,78.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: -63.5,78.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: -67.5,79.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: -50.5,84.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: -50.5,83.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: -52.5,87.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: -52.5,88.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: -52.5,89.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: -52.5,80.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: -52.5,84.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: -70.5,15.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: -72.5,15.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -52.5,81.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -52.5,85.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -52.5,86.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -52.5,82.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: -65.5,16.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: -48.5,82.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: -23.5,92.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: -23.5,91.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: -21.5,89.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: -21.5,90.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: -41.5,11.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: 4.5,48.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: -64.5,17.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: -64.5,19.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: -65.5,26.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: -65.5,27.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: -65.5,28.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: -65.5,30.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: -65.5,31.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: -65.5,32.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: -65.5,29.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: -65.5,33.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: -65.5,33.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -65.5,35.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: -65.5,36.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: -65.5,37.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -65.5,38.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: -65.5,39.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: -65.5,40.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: -65.5,41.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: -65.5,34.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: -65.5,43.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: -65.5,45.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: -65.5,44.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: -65.5,42.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: 27.5,42.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: 26.5,45.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: 24.5,45.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: 25.5,45.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: 24.5,49.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: 24.5,47.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: 23.5,49.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: 21.5,49.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: 20.5,49.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: 19.5,49.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: 22.5,49.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: 16.5,49.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: 18.5,49.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: 17.5,49.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: 16.5,48.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: 16.5,47.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: 15.5,47.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 11.5,47.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 8.5,47.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: 10.5,47.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: 7.5,47.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 6.5,47.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 4.5,50.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 4.5,49.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: 4.5,52.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: 4.5,53.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 4.5,55.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: 4.5,54.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: 4.5,56.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: 3.5,56.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: 1.5,56.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: 0.5,56.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 2.5,56.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 0.5,57.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 0.5,58.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -67.5,55.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: -67.5,57.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: -67.5,58.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: -67.5,59.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: -67.5,60.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: -67.5,61.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: -67.5,62.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: -67.5,56.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: -67.5,63.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: -65.5,64.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: -65.5,65.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: -65.5,67.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: -65.5,68.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: -65.5,66.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: -65.5,69.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -64.5,69.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -62.5,69.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: -61.5,69.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: -60.5,69.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: -59.5,69.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: -63.5,69.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: -58.5,69.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: -56.5,69.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: -55.5,69.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: -53.5,69.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: -54.5,69.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: -52.5,69.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: -51.5,69.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: -50.5,69.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -49.5,69.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: -57.5,69.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -47.5,69.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: -46.5,69.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: -45.5,69.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: -43.5,69.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -44.5,69.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: -42.5,69.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: -40.5,69.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: -38.5,69.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -41.5,69.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -39.5,69.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: -48.5,69.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: -38.5,70.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: -38.5,71.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: -38.5,46.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: -38.5,57.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: -38.5,68.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -38.5,66.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: -38.5,65.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: -38.5,64.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: -38.5,63.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: -38.5,67.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: -38.5,62.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: -38.5,61.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: -38.5,60.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: -38.5,59.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: -38.5,58.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: -38.5,56.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: -38.5,55.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: -38.5,54.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: -38.5,53.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: -38.5,52.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: -20.5,69.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: -20.5,66.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: -20.5,67.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: -0.5,35.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -28.5,36.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: -20.5,68.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: -21.5,66.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: -20.5,70.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: -66.5,45.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: -73.5,15.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: -74.5,15.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: -52.5,83.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: -67.5,75.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: -68.5,76.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: -68.5,77.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: -66.5,69.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: -67.5,70.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: -50.5,88.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: -50.5,80.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: -50.5,81.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: -50.5,82.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: -67.5,73.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: -70.5,8.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: -58.5,83.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: -46.5,86.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: -60.5,87.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: -60.5,83.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: -58.5,87.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: -48.5,86.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: -46.5,85.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: -46.5,87.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: -58.5,86.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: -60.5,85.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: -46.5,81.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: -58.5,81.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: -58.5,89.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: -48.5,84.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: -46.5,88.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: -48.5,80.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: -46.5,89.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: -66.5,48.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: -66.5,47.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: -76.5,15.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: -71.5,15.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + pos: -70.5,7.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: -70.5,6.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: -66.5,46.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: -65.5,22.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: -70.5,10.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: -47.5,5.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: -69.5,11.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: -69.5,6.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: -68.5,6.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: -67.5,6.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 4019 + components: + - type: Transform + pos: 36.5,30.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: 36.5,35.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 4025 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: 50.5,26.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: -48.5,87.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: -48.5,83.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: -48.5,85.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: -60.5,88.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: -60.5,86.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: -60.5,84.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: -58.5,88.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -58.5,84.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -58.5,85.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: -46.5,83.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: -46.5,80.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: -46.5,84.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: -68.5,78.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: -64.5,32.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: -63.5,32.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: -30.5,36.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: -29.5,71.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: -27.5,71.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: -26.5,71.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: -28.5,71.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: -24.5,71.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: -23.5,71.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: -22.5,71.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: -20.5,71.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: -21.5,71.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: -20.5,72.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: -18.5,72.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: -17.5,72.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: -19.5,72.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: -15.5,72.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: -14.5,72.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + pos: -14.5,73.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: -14.5,75.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: -14.5,76.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: -14.5,78.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: -14.5,81.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: -14.5,82.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: -14.5,83.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -14.5,79.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: -14.5,85.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: -14.5,80.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: -14.5,84.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: -14.5,86.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: -14.5,88.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: -14.5,88.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -16.5,88.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: -17.5,88.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: -18.5,88.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: -19.5,88.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: -20.5,88.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: -21.5,88.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: -15.5,88.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: -22.5,90.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: -93.5,4.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: -85.5,4.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: -85.5,6.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + pos: -85.5,7.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: -98.5,15.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -84.5,15.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: -99.5,15.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: -85.5,13.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: -82.5,15.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: -31.5,36.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: -31.5,38.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: -27.5,72.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: -27.5,73.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: -66.5,50.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + pos: -67.5,16.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: -69.5,10.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: -75.5,15.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: -69.5,14.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + pos: -69.5,13.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: -69.5,16.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: -69.5,12.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + pos: -69.5,51.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: -65.5,23.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: -65.5,24.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + pos: -65.5,25.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: -14.5,73.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: -8.5,73.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: -68.5,51.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: -65.5,63.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: -27.5,36.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: -22.5,36.5 + parent: 2 + - uid: 9398 + components: + - type: Transform + pos: -30.5,72.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + pos: -67.5,72.5 + parent: 2 + - uid: 9606 + components: + - type: Transform + pos: -60.5,82.5 + parent: 2 + - uid: 9642 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 9686 + components: + - type: Transform + pos: -66.5,6.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 9703 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 9704 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 9705 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 9744 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 9845 + components: + - type: Transform + pos: -29.5,36.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: -24.5,36.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + pos: -25.5,36.5 + parent: 2 + - uid: 10163 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 10373 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 10561 + components: + - type: Transform + pos: -77.5,15.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + pos: -66.5,51.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + pos: -33.5,72.5 + parent: 2 + - uid: 11770 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + pos: -67.5,51.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + pos: -69.5,52.5 + parent: 2 + - uid: 12113 + components: + - type: Transform + pos: -6.5,75.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + pos: -66.5,63.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + pos: -60.5,81.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + pos: -60.5,89.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + pos: -23.5,36.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + pos: -48.5,88.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + pos: -61.5,78.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + pos: -60.5,78.5 + parent: 2 + - uid: 13688 + components: + - type: Transform + pos: -53.5,92.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + pos: -50.5,87.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + pos: -50.5,89.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: -48.5,89.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: -48.5,81.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + pos: -53.5,93.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: -46.5,82.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: -58.5,82.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + pos: -58.5,80.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + pos: -60.5,80.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: -52.5,4.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: -100.5,15.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 14271 + components: + - type: Transform + pos: -66.5,49.5 + parent: 2 + - uid: 14379 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + pos: -21.5,63.5 + parent: 2 + - uid: 14418 + components: + - type: Transform + pos: -21.5,62.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 14612 + components: + - type: Transform + pos: -77.5,14.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + pos: -78.5,14.5 + parent: 2 + - uid: 14614 + components: + - type: Transform + pos: -79.5,14.5 + parent: 2 + - uid: 14615 + components: + - type: Transform + pos: -80.5,15.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: -81.5,15.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + pos: -79.5,15.5 + parent: 2 + - uid: 14620 + components: + - type: Transform + pos: -83.5,15.5 + parent: 2 + - uid: 14623 + components: + - type: Transform + pos: -37.5,52.5 + parent: 2 + - uid: 14654 + components: + - type: Transform + pos: -35.5,52.5 + parent: 2 + - uid: 14655 + components: + - type: Transform + pos: -34.5,52.5 + parent: 2 + - uid: 14770 + components: + - type: Transform + pos: -33.5,52.5 + parent: 2 + - uid: 14780 + components: + - type: Transform + pos: -21.5,61.5 + parent: 2 + - uid: 14790 + components: + - type: Transform + pos: -21.5,60.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: -21.5,59.5 + parent: 2 + - uid: 14792 + components: + - type: Transform + pos: -21.5,58.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + pos: -21.5,64.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: -20.5,58.5 + parent: 2 + - uid: 14840 + components: + - type: Transform + pos: -18.5,58.5 + parent: 2 + - uid: 14841 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: -16.5,58.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: -15.5,58.5 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: -19.5,58.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + pos: -12.5,58.5 + parent: 2 + - uid: 14847 + components: + - type: Transform + pos: -11.5,58.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + pos: -32.5,52.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + pos: -36.5,52.5 + parent: 2 + - uid: 14969 + components: + - type: Transform + pos: -10.5,58.5 + parent: 2 + - uid: 14972 + components: + - type: Transform + pos: -14.5,58.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: -9.5,58.5 + parent: 2 + - uid: 15025 + components: + - type: Transform + pos: -32.5,51.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + pos: -32.5,49.5 + parent: 2 + - uid: 15256 + components: + - type: Transform + pos: -32.5,48.5 + parent: 2 + - uid: 15283 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 15285 + components: + - type: Transform + pos: -32.5,50.5 + parent: 2 + - uid: 15286 + components: + - type: Transform + pos: -32.5,46.5 + parent: 2 + - uid: 15287 + components: + - type: Transform + pos: -32.5,45.5 + parent: 2 + - uid: 15288 + components: + - type: Transform + pos: -32.5,47.5 + parent: 2 + - uid: 15289 + components: + - type: Transform + pos: -32.5,43.5 + parent: 2 + - uid: 15290 + components: + - type: Transform + pos: -32.5,44.5 + parent: 2 + - uid: 15291 + components: + - type: Transform + pos: -32.5,42.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + pos: -31.5,42.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + pos: -8.5,58.5 + parent: 2 + - uid: 15319 + components: + - type: Transform + pos: -7.5,58.5 + parent: 2 + - uid: 15320 + components: + - type: Transform + pos: -6.5,58.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + pos: -6.5,59.5 + parent: 2 + - uid: 15322 + components: + - type: Transform + pos: -6.5,60.5 + parent: 2 + - uid: 15323 + components: + - type: Transform + pos: -6.5,62.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + pos: -6.5,63.5 + parent: 2 + - uid: 15325 + components: + - type: Transform + pos: -6.5,64.5 + parent: 2 + - uid: 15326 + components: + - type: Transform + pos: -6.5,65.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + pos: -6.5,61.5 + parent: 2 + - uid: 15328 + components: + - type: Transform + pos: -6.5,66.5 + parent: 2 + - uid: 15329 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 15330 + components: + - type: Transform + pos: -6.5,69.5 + parent: 2 + - uid: 15331 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - uid: 15332 + components: + - type: Transform + pos: -6.5,71.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + pos: -6.5,67.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + pos: -5.5,71.5 + parent: 2 + - uid: 15335 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 15336 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 15337 + components: + - type: Transform + pos: -4.5,73.5 + parent: 2 + - uid: 15338 + components: + - type: Transform + pos: -4.5,74.5 + parent: 2 + - uid: 15339 + components: + - type: Transform + pos: -4.5,72.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: -5.5,74.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 15357 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 15358 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 15362 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 15364 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 15370 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 15373 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + pos: -31.5,41.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + pos: -31.5,40.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + pos: -31.5,39.5 + parent: 2 + - uid: 16165 + components: + - type: Transform + pos: -85.5,8.5 + parent: 2 + - uid: 16166 + components: + - type: Transform + pos: -85.5,9.5 + parent: 2 + - uid: 16167 + components: + - type: Transform + pos: -85.5,10.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + pos: -85.5,11.5 + parent: 2 + - uid: 16169 + components: + - type: Transform + pos: -85.5,5.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + pos: -85.5,12.5 + parent: 2 + - uid: 16171 + components: + - type: Transform + pos: -87.5,4.5 + parent: 2 + - uid: 16172 + components: + - type: Transform + pos: -87.5,6.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + pos: -87.5,5.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + pos: -87.5,7.5 + parent: 2 + - uid: 16175 + components: + - type: Transform + pos: -87.5,8.5 + parent: 2 + - uid: 16176 + components: + - type: Transform + pos: -87.5,9.5 + parent: 2 + - uid: 16177 + components: + - type: Transform + pos: -87.5,11.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + pos: -87.5,12.5 + parent: 2 + - uid: 16179 + components: + - type: Transform + pos: -87.5,13.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + pos: -87.5,10.5 + parent: 2 + - uid: 16181 + components: + - type: Transform + pos: -89.5,4.5 + parent: 2 + - uid: 16182 + components: + - type: Transform + pos: -89.5,5.5 + parent: 2 + - uid: 16183 + components: + - type: Transform + pos: -89.5,7.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + pos: -89.5,8.5 + parent: 2 + - uid: 16185 + components: + - type: Transform + pos: -89.5,9.5 + parent: 2 + - uid: 16186 + components: + - type: Transform + pos: -89.5,10.5 + parent: 2 + - uid: 16187 + components: + - type: Transform + pos: -89.5,11.5 + parent: 2 + - uid: 16188 + components: + - type: Transform + pos: -89.5,12.5 + parent: 2 + - uid: 16189 + components: + - type: Transform + pos: -89.5,13.5 + parent: 2 + - uid: 16190 + components: + - type: Transform + pos: -89.5,6.5 + parent: 2 + - uid: 16191 + components: + - type: Transform + pos: -91.5,4.5 + parent: 2 + - uid: 16192 + components: + - type: Transform + pos: -91.5,6.5 + parent: 2 + - uid: 16193 + components: + - type: Transform + pos: -91.5,7.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + pos: -91.5,8.5 + parent: 2 + - uid: 16195 + components: + - type: Transform + pos: -91.5,9.5 + parent: 2 + - uid: 16196 + components: + - type: Transform + pos: -91.5,10.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + pos: -91.5,11.5 + parent: 2 + - uid: 16198 + components: + - type: Transform + pos: -91.5,5.5 + parent: 2 + - uid: 16199 + components: + - type: Transform + pos: -91.5,12.5 + parent: 2 + - uid: 16200 + components: + - type: Transform + pos: -91.5,13.5 + parent: 2 + - uid: 16201 + components: + - type: Transform + pos: -93.5,6.5 + parent: 2 + - uid: 16202 + components: + - type: Transform + pos: -93.5,7.5 + parent: 2 + - uid: 16203 + components: + - type: Transform + pos: -93.5,8.5 + parent: 2 + - uid: 16204 + components: + - type: Transform + pos: -93.5,9.5 + parent: 2 + - uid: 16205 + components: + - type: Transform + pos: -93.5,10.5 + parent: 2 + - uid: 16206 + components: + - type: Transform + pos: -93.5,11.5 + parent: 2 + - uid: 16207 + components: + - type: Transform + pos: -93.5,5.5 + parent: 2 + - uid: 16208 + components: + - type: Transform + pos: -93.5,12.5 + parent: 2 + - uid: 16209 + components: + - type: Transform + pos: -93.5,13.5 + parent: 2 + - uid: 16210 + components: + - type: Transform + pos: -95.5,4.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + pos: -95.5,6.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + pos: -95.5,7.5 + parent: 2 + - uid: 16213 + components: + - type: Transform + pos: -95.5,8.5 + parent: 2 + - uid: 16214 + components: + - type: Transform + pos: -95.5,9.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: -95.5,10.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + pos: -95.5,11.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + pos: -95.5,5.5 + parent: 2 + - uid: 16218 + components: + - type: Transform + pos: -95.5,13.5 + parent: 2 + - uid: 16219 + components: + - type: Transform + pos: -95.5,12.5 + parent: 2 + - uid: 16220 + components: + - type: Transform + pos: -97.5,4.5 + parent: 2 + - uid: 16221 + components: + - type: Transform + pos: -97.5,6.5 + parent: 2 + - uid: 16222 + components: + - type: Transform + pos: -97.5,7.5 + parent: 2 + - uid: 16223 + components: + - type: Transform + pos: -97.5,8.5 + parent: 2 + - uid: 16224 + components: + - type: Transform + pos: -97.5,9.5 + parent: 2 + - uid: 16225 + components: + - type: Transform + pos: -97.5,10.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: -97.5,11.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + pos: -97.5,12.5 + parent: 2 + - uid: 16228 + components: + - type: Transform + pos: -97.5,13.5 + parent: 2 + - uid: 16229 + components: + - type: Transform + pos: -97.5,5.5 + parent: 2 + - uid: 16230 + components: + - type: Transform + pos: -99.5,4.5 + parent: 2 + - uid: 16231 + components: + - type: Transform + pos: -99.5,6.5 + parent: 2 + - uid: 16232 + components: + - type: Transform + pos: -99.5,7.5 + parent: 2 + - uid: 16233 + components: + - type: Transform + pos: -99.5,8.5 + parent: 2 + - uid: 16234 + components: + - type: Transform + pos: -99.5,9.5 + parent: 2 + - uid: 16235 + components: + - type: Transform + pos: -99.5,10.5 + parent: 2 + - uid: 16236 + components: + - type: Transform + pos: -99.5,11.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + pos: -99.5,5.5 + parent: 2 + - uid: 16238 + components: + - type: Transform + pos: -99.5,13.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + pos: -99.5,12.5 + parent: 2 + - uid: 16384 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 5975 + components: + - type: Transform + pos: 9.578403,55.38578 + parent: 2 + - uid: 14336 + components: + - type: Transform + pos: -68.52856,79.265366 + parent: 2 + - uid: 14611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.4812,14.499657 + parent: 2 + - uid: 15356 + components: + - type: Transform + pos: -29.608511,-7.3505936 + parent: 2 +- proto: CableHVStack10 + entities: + - uid: 6578 + components: + - type: Transform + pos: -62.509514,33.268566 + parent: 2 +- proto: CableMV + entities: + - uid: 9 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: -67.5,75.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: -69.5,51.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: -67.5,52.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -24.5,90.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -40.5,64.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: -23.5,90.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: -23.5,90.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -31.5,40.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: -31.5,39.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: -30.5,72.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: -27.5,2.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: -69.5,52.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: -8.5,31.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -65.5,24.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: -65.5,22.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: -65.5,25.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: -68.5,51.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: -67.5,44.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: -27.5,69.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: -67.5,53.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: -67.5,51.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: -4.5,76.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: -27.5,45.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: -66.5,44.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: -69.5,15.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: -65.5,23.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: -57.5,18.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: -54.5,19.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: -62.5,17.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: -40.5,63.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: -27.5,4.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: -57.5,19.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: -70.5,56.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -68.5,56.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: -69.5,56.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: -56.5,19.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: -51.5,19.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: -60.5,17.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: -59.5,17.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: -50.5,19.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: -68.5,75.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: -70.5,72.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: -67.5,72.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: -67.5,73.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: -58.5,17.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: -74.5,15.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: -75.5,14.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: -71.5,15.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: -65.5,32.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: -63.5,32.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: -64.5,32.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: -25.5,47.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: -25.5,48.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: -25.5,49.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: -25.5,50.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: -25.5,51.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: -24.5,51.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: -20.5,51.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: -19.5,51.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: -18.5,51.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -17.5,51.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: -16.5,51.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: -23.5,51.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -15.5,51.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: -18.5,45.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: -17.5,45.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: -16.5,45.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: -6.5,45.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -15.5,45.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -15.5,51.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: -13.5,51.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: -14.5,51.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: -22.5,90.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: -22.5,89.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + pos: -8.5,29.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: -28.5,70.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: -70.5,15.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: -4.5,74.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: -5.5,74.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: -4.5,75.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: -4.5,77.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: -29.5,72.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: -28.5,71.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: -29.5,71.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: -27.5,71.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: -27.5,70.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: -27.5,68.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: -28.5,68.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: -31.5,68.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: -31.5,66.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: -31.5,65.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: -31.5,63.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: -30.5,63.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: -29.5,63.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: -29.5,68.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: -26.5,70.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + pos: -24.5,70.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: -23.5,70.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + pos: -22.5,70.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: -21.5,70.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + pos: -25.5,70.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + pos: -20.5,70.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + pos: -18.5,70.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: -19.5,70.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: -18.5,69.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: -17.5,69.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: -14.5,69.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: -13.5,69.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: -12.5,69.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: -12.5,68.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: -11.5,68.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: -18.5,69.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: -18.5,68.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -18.5,67.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: -18.5,66.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: -32.5,68.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: -67.5,68.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: -67.5,70.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: -68.5,68.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: -68.5,67.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: -49.5,69.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: -48.5,69.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: -57.5,69.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: -65.5,69.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + pos: -64.5,69.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + pos: -63.5,69.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: -62.5,69.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: -61.5,69.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + pos: -60.5,69.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: -59.5,69.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: -66.5,69.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: -58.5,69.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: -55.5,69.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + pos: -56.5,69.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: -54.5,69.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + pos: -53.5,69.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: -52.5,69.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + pos: -51.5,69.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: -50.5,69.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: -48.5,68.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + pos: -69.5,68.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + pos: -69.5,69.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + pos: -70.5,69.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + pos: -67.5,54.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + pos: -67.5,56.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: -67.5,55.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: -75.5,13.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: 18.5,42.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: 18.5,41.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: 18.5,40.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + pos: 0.5,58.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: 0.5,57.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: 0.5,56.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + pos: 1.5,56.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + pos: 2.5,56.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: 3.5,56.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: 2.5,57.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: 4.5,56.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + pos: 4.5,57.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: 4.5,58.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: 5.5,57.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + pos: 6.5,57.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: 7.5,57.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: 8.5,57.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: 8.5,58.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 8.5,60.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: 8.5,61.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: 8.5,62.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + pos: 8.5,63.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: 8.5,59.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 9.5,65.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + pos: 9.5,66.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: 9.5,67.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: 8.5,67.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: 6.5,67.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + pos: 5.5,67.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + pos: 4.5,67.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + pos: 2.5,67.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: 1.5,67.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: 7.5,67.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + pos: 0.5,67.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: 3.5,67.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: 0.5,68.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: -0.5,68.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: -0.5,69.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: -0.5,70.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: -1.5,70.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + pos: -65.5,33.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: -65.5,34.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + pos: -65.5,35.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -65.5,36.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + pos: -65.5,37.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + pos: -65.5,39.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: -65.5,38.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: -65.5,40.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + pos: -65.5,41.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: -64.5,41.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + pos: -63.5,41.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: -62.5,41.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: -62.5,42.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: -62.5,44.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: -62.5,45.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: -62.5,43.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: -61.5,45.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: -59.5,45.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: -58.5,45.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: -57.5,45.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: -60.5,45.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: -57.5,43.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + pos: -57.5,42.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: -57.5,41.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + pos: -57.5,44.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: -57.5,40.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: -56.5,40.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + pos: -55.5,40.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: -57.5,46.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: -57.5,48.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: -57.5,47.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: -56.5,48.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: -54.5,48.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + pos: -53.5,48.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + pos: -52.5,48.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: -51.5,48.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: -50.5,48.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: -55.5,48.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + pos: -50.5,49.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + pos: -26.5,45.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: -29.5,45.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: -30.5,45.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: -31.5,45.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: -32.5,45.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: -28.5,45.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + pos: -32.5,46.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: -32.5,48.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: -32.5,47.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + pos: -33.5,48.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: -35.5,48.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: -36.5,48.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + pos: -36.5,49.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + pos: -36.5,50.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + pos: -36.5,51.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + pos: -31.5,41.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: -31.5,42.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: -31.5,43.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: -31.5,44.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + pos: -33.5,45.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: -34.5,45.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + pos: -35.5,45.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: -35.5,44.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: -35.5,42.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: -35.5,41.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: -35.5,40.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: -35.5,43.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: -33.5,40.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + pos: -11.5,41.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: -2.5,43.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + pos: -23.5,43.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + pos: -23.5,40.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: -23.5,39.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: -24.5,39.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + pos: -25.5,37.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -22.5,27.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -24.5,27.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: -12.5,27.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + pos: -17.5,27.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: -16.5,27.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: -18.5,27.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + pos: -21.5,27.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + pos: -28.5,24.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + pos: -32.5,24.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + pos: -35.5,24.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: -30.5,35.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: -31.5,35.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: -33.5,35.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: -33.5,34.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: -33.5,32.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: -33.5,33.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: -50.5,18.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: -75.5,15.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: -72.5,15.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: -65.5,16.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: -64.5,15.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: -67.5,16.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: -64.5,17.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: -64.5,19.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: -50.5,20.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: -64.5,25.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: -65.5,42.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: -65.5,44.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: -65.5,45.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: -65.5,43.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: -55.5,49.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: -55.5,50.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: -55.5,51.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: -55.5,52.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: -55.5,53.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: -54.5,54.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: -55.5,54.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: -53.5,54.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -52.5,54.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: -51.5,54.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: -50.5,54.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: -49.5,54.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -48.5,54.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: -48.5,55.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: -48.5,56.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: -49.5,57.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: -49.5,58.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: -49.5,59.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: -50.5,59.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: -52.5,59.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + pos: -53.5,59.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + pos: -54.5,59.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: -55.5,59.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: -51.5,59.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: -17.5,65.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: -17.5,64.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: -16.5,64.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: -16.5,63.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: -15.5,63.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + pos: -15.5,62.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + pos: -15.5,61.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + pos: -15.5,60.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + pos: -14.5,60.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + pos: -13.5,60.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + pos: -12.5,60.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + pos: -12.5,59.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: -69.5,10.5 + parent: 2 + - uid: 9174 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 9582 + components: + - type: Transform + pos: -70.5,10.5 + parent: 2 + - uid: 9583 + components: + - type: Transform + pos: -69.5,11.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + pos: -69.5,13.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + pos: -69.5,12.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: -69.5,14.5 + parent: 2 + - uid: 9596 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 9597 + components: + - type: Transform + pos: -69.5,16.5 + parent: 2 + - uid: 9598 + components: + - type: Transform + pos: -73.5,15.5 + parent: 2 + - uid: 9632 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - uid: 9633 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 9634 + components: + - type: Transform + pos: 27.5,42.5 + parent: 2 + - uid: 9635 + components: + - type: Transform + pos: 28.5,42.5 + parent: 2 + - uid: 9899 + components: + - type: Transform + pos: 0.5,66.5 + parent: 2 + - uid: 9900 + components: + - type: Transform + pos: -0.5,66.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + pos: -2.5,66.5 + parent: 2 + - uid: 9902 + components: + - type: Transform + pos: -3.5,66.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + pos: -4.5,66.5 + parent: 2 + - uid: 9904 + components: + - type: Transform + pos: -1.5,66.5 + parent: 2 + - uid: 9905 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + pos: -55.5,39.5 + parent: 2 + - uid: 9914 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + pos: -55.5,37.5 + parent: 2 + - uid: 9916 + components: + - type: Transform + pos: -56.5,37.5 + parent: 2 + - uid: 9921 + components: + - type: Transform + pos: -31.5,72.5 + parent: 2 + - uid: 9922 + components: + - type: Transform + pos: -33.5,72.5 + parent: 2 + - uid: 9923 + components: + - type: Transform + pos: -34.5,72.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + pos: -35.5,72.5 + parent: 2 + - uid: 9925 + components: + - type: Transform + pos: -36.5,72.5 + parent: 2 + - uid: 9926 + components: + - type: Transform + pos: -37.5,72.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + pos: -32.5,72.5 + parent: 2 + - uid: 9928 + components: + - type: Transform + pos: -38.5,72.5 + parent: 2 + - uid: 9929 + components: + - type: Transform + pos: -38.5,71.5 + parent: 2 + - uid: 9930 + components: + - type: Transform + pos: -38.5,69.5 + parent: 2 + - uid: 9931 + components: + - type: Transform + pos: -38.5,68.5 + parent: 2 + - uid: 9932 + components: + - type: Transform + pos: -38.5,67.5 + parent: 2 + - uid: 9933 + components: + - type: Transform + pos: -38.5,70.5 + parent: 2 + - uid: 9934 + components: + - type: Transform + pos: -38.5,64.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: -38.5,65.5 + parent: 2 + - uid: 9936 + components: + - type: Transform + pos: -38.5,66.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + pos: -30.5,36.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + pos: -27.5,36.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: -25.5,36.5 + parent: 2 + - uid: 10157 + components: + - type: Transform + pos: -28.5,36.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - uid: 11404 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 11830 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + pos: -6.5,75.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: -67.5,45.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + pos: -63.5,17.5 + parent: 2 + - uid: 13934 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 13940 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 13942 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 13944 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 13998 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 14607 + components: + - type: Transform + pos: -39.5,63.5 + parent: 2 + - uid: 14624 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 15235 + components: + - type: Transform + pos: -50.5,50.5 + parent: 2 + - uid: 15574 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 15946 + components: + - type: Transform + pos: -70.5,8.5 + parent: 2 + - uid: 15947 + components: + - type: Transform + pos: -70.5,7.5 + parent: 2 + - uid: 15948 + components: + - type: Transform + pos: -70.5,6.5 + parent: 2 + - uid: 15949 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - uid: 15950 + components: + - type: Transform + pos: -69.5,6.5 + parent: 2 + - uid: 15951 + components: + - type: Transform + pos: -67.5,6.5 + parent: 2 + - uid: 15952 + components: + - type: Transform + pos: -66.5,6.5 + parent: 2 + - uid: 15953 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 15954 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 15955 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 15956 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 15957 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 15958 + components: + - type: Transform + pos: -68.5,6.5 + parent: 2 + - uid: 15959 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 15960 + components: + - type: Transform + pos: -61.5,4.5 + parent: 2 + - uid: 15987 + components: + - type: Transform + pos: -3.5,75.5 + parent: 2 + - uid: 15988 + components: + - type: Transform + pos: -2.5,75.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 16393 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 16595 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 16626 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 16631 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 16635 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 16636 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 16646 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 16648 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 16649 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 16650 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 16651 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 16652 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 16653 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 16654 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 16655 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 16656 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 16658 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 16659 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 16660 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 16661 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 16663 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 16664 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 16673 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 16674 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 16675 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 16735 + components: + - type: Transform + pos: 10.5,67.5 + parent: 2 + - uid: 16736 + components: + - type: Transform + pos: 11.5,67.5 + parent: 2 + - uid: 16764 + components: + - type: Transform + pos: -24.5,36.5 + parent: 2 + - uid: 16765 + components: + - type: Transform + pos: -22.5,36.5 + parent: 2 + - uid: 16766 + components: + - type: Transform + pos: -29.5,36.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + pos: -23.5,36.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 16775 + components: + - type: Transform + pos: -0.5,35.5 + parent: 2 + - uid: 16798 + components: + - type: Transform + pos: 12.5,67.5 + parent: 2 + - uid: 16799 + components: + - type: Transform + pos: 12.5,66.5 + parent: 2 + - uid: 16802 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 16803 + components: + - type: Transform + pos: -48.5,57.5 + parent: 2 + - uid: 16804 + components: + - type: Transform + pos: -38.5,63.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 5974 + components: + - type: Transform + pos: 9.359653,55.651405 + parent: 2 +- proto: CableTerminal + entities: + - uid: 1182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,92.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,28.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,78.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-4.5 + parent: 2 + - uid: 14020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: -79.5,15.5 + parent: 2 + - uid: 15354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 +- proto: CandleBlack + entities: + - uid: 2099 + components: + - type: Transform + pos: -65.607796,8.505755 + parent: 2 + - uid: 8090 + components: + - type: Transform + pos: -65.264046,8.568255 + parent: 2 +- proto: CandleRedInfinite + entities: + - uid: 14126 + components: + - type: Transform + pos: -49.51554,9.52997 + parent: 2 + - uid: 14139 + components: + - type: Transform + pos: -48.531166,10.576845 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: -50.499916,10.608095 + parent: 2 + - uid: 14213 + components: + - type: Transform + pos: -49.51554,11.545595 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 15992 + components: + - type: Transform + pos: -42.471054,7.4323015 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 7124 + components: + - type: Transform + pos: -16.500198,68.56768 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 64 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 +- proto: Carpet + entities: + - uid: 15027 + components: + - type: Transform + pos: -37.5,39.5 + parent: 2 + - uid: 15028 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 15029 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - uid: 15030 + components: + - type: Transform + pos: -37.5,38.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + pos: -41.5,40.5 + parent: 2 + - uid: 15158 + components: + - type: Transform + pos: -40.5,40.5 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: -40.5,39.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: -41.5,39.5 + parent: 2 + - uid: 15161 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 15162 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 1740 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,55.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,54.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,54.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,55.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,55.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,55.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,54.5 + parent: 2 + - uid: 9709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,54.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,54.5 + parent: 2 + - uid: 13248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,55.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + pos: -48.5,23.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + pos: -59.5,26.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + pos: -59.5,25.5 + parent: 2 + - uid: 15071 + components: + - type: Transform + pos: -59.5,24.5 + parent: 2 + - uid: 15072 + components: + - type: Transform + pos: -59.5,23.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + pos: -62.5,27.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: -62.5,26.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + pos: -62.5,25.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + pos: -62.5,23.5 + parent: 2 + - uid: 15077 + components: + - type: Transform + pos: -61.5,27.5 + parent: 2 + - uid: 15078 + components: + - type: Transform + pos: -61.5,26.5 + parent: 2 + - uid: 15079 + components: + - type: Transform + pos: -61.5,25.5 + parent: 2 + - uid: 15080 + components: + - type: Transform + pos: -61.5,24.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + pos: -61.5,23.5 + parent: 2 + - uid: 15082 + components: + - type: Transform + pos: -62.5,24.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + pos: -60.5,26.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + pos: -60.5,27.5 + parent: 2 + - uid: 15085 + components: + - type: Transform + pos: -60.5,25.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + pos: -60.5,23.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + pos: -59.5,27.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: -60.5,24.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: -20.5,40.5 + parent: 2 + - uid: 15128 + components: + - type: Transform + pos: -20.5,38.5 + parent: 2 + - uid: 15129 + components: + - type: Transform + pos: -20.5,39.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + pos: -19.5,40.5 + parent: 2 + - uid: 15131 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 + - uid: 15132 + components: + - type: Transform + pos: -19.5,38.5 + parent: 2 + - uid: 15169 + components: + - type: Transform + pos: -51.5,67.5 + parent: 2 + - uid: 15170 + components: + - type: Transform + pos: -51.5,65.5 + parent: 2 + - uid: 15171 + components: + - type: Transform + pos: -50.5,67.5 + parent: 2 + - uid: 15172 + components: + - type: Transform + pos: -50.5,66.5 + parent: 2 + - uid: 15173 + components: + - type: Transform + pos: -50.5,65.5 + parent: 2 + - uid: 15174 + components: + - type: Transform + pos: -51.5,66.5 + parent: 2 + - uid: 16063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,15.5 + parent: 2 + - uid: 16064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,13.5 + parent: 2 + - uid: 16065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,14.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,11.5 + parent: 2 + - uid: 16067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,12.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 14551 + components: + - type: Transform + pos: -32.5,63.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + pos: -32.5,61.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + pos: -31.5,63.5 + parent: 2 + - uid: 14666 + components: + - type: Transform + pos: -32.5,62.5 + parent: 2 + - uid: 14667 + components: + - type: Transform + pos: -31.5,62.5 + parent: 2 + - uid: 14668 + components: + - type: Transform + pos: -31.5,61.5 + parent: 2 + - uid: 14877 + components: + - type: Transform + pos: -55.5,23.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + pos: -31.5,68.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 15133 + components: + - type: Transform + pos: -3.5,49.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 15135 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 15136 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 15137 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 15138 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 10789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,16.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,16.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,15.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: -60.5,15.5 + parent: 2 + - uid: 10793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,14.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,12.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,12.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,14.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,11.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + pos: -60.5,11.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: -66.5,10.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,10.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,11.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,11.5 + parent: 2 + - uid: 14293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,11.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,13.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,15.5 + parent: 2 + - uid: 14296 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 + - uid: 14297 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: -55.5,11.5 + parent: 2 + - uid: 14299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,12.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,14.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,16.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,16.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,14.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,12.5 + parent: 2 + - uid: 16031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,13.5 + parent: 2 + - uid: 16033 + components: + - type: Transform + pos: -60.5,13.5 + parent: 2 +- proto: CarpetCyan + entities: + - uid: 14876 + components: + - type: Transform + pos: -48.5,27.5 + parent: 2 + - uid: 15163 + components: + - type: Transform + pos: -37.5,50.5 + parent: 2 + - uid: 15164 + components: + - type: Transform + pos: -37.5,49.5 + parent: 2 + - uid: 15165 + components: + - type: Transform + pos: -36.5,49.5 + parent: 2 + - uid: 15166 + components: + - type: Transform + pos: -35.5,50.5 + parent: 2 + - uid: 15167 + components: + - type: Transform + pos: -35.5,49.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: -36.5,50.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 1209 + components: + - type: Transform + pos: 0.5,76.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 0.5,75.5 + parent: 2 + - uid: 14875 + components: + - type: Transform + pos: -55.5,27.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + pos: 1.5,76.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + pos: 1.5,75.5 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: -66.5,55.5 + parent: 2 + - uid: 15090 + components: + - type: Transform + pos: -66.5,57.5 + parent: 2 + - uid: 15091 + components: + - type: Transform + pos: -66.5,58.5 + parent: 2 + - uid: 15092 + components: + - type: Transform + pos: -65.5,55.5 + parent: 2 + - uid: 15093 + components: + - type: Transform + pos: -65.5,56.5 + parent: 2 + - uid: 15094 + components: + - type: Transform + pos: -66.5,56.5 + parent: 2 + - uid: 15095 + components: + - type: Transform + pos: -65.5,57.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + pos: -65.5,58.5 + parent: 2 + - uid: 15097 + components: + - type: Transform + pos: -67.5,55.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: -67.5,57.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: -67.5,58.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: -67.5,56.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 15062 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 15064 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 1756 + components: + - type: Transform + pos: -62.5,58.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + pos: -60.5,58.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: -58.5,58.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: -61.5,58.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: -57.5,58.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + pos: -59.5,58.5 + parent: 2 + - uid: 15043 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 15045 + components: + - type: Transform + pos: 20.5,44.5 + parent: 2 + - uid: 15046 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 15047 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 + - uid: 15048 + components: + - type: Transform + pos: 20.5,47.5 + parent: 2 + - uid: 15049 + components: + - type: Transform + pos: 20.5,46.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + pos: 19.5,46.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: -62.5,41.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: -62.5,39.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + pos: -61.5,41.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + pos: -61.5,40.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + pos: -61.5,39.5 + parent: 2 + - uid: 15106 + components: + - type: Transform + pos: -62.5,40.5 + parent: 2 + - uid: 15139 + components: + - type: Transform + pos: -61.5,57.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + pos: -60.5,57.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + pos: -59.5,57.5 + parent: 2 + - uid: 15147 + components: + - type: Transform + pos: -58.5,57.5 + parent: 2 + - uid: 15151 + components: + - type: Transform + pos: -62.5,57.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + pos: -57.5,57.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 6194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,24.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,23.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + pos: -14.5,69.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + pos: -9.5,69.5 + parent: 2 + - uid: 15052 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + pos: -10.5,24.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 15059 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 22 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-3.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-3.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 2 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-3.5 + parent: 2 + - uid: 696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 2 + - uid: 734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 2 + - uid: 735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - uid: 736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 2 + - uid: 740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - uid: 741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 + - uid: 742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 2 + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 2 + - uid: 744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 2 + - uid: 791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: -62.5,78.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,25.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,25.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,25.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,25.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,25.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,8.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,10.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,11.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,12.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,9.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,13.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,14.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,15.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,16.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,17.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,35.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,35.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,35.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: -75.5,15.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,35.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: -41.5,11.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: -74.5,15.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,34.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,32.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,24.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,25.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,35.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,36.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,38.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,37.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,69.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -67.5,77.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: -67.5,78.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -66.5,78.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,68.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,36.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -65.5,26.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -65.5,27.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -65.5,28.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -65.5,29.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: -65.5,30.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: -65.5,31.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -65.5,32.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: -40.5,35.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,36.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,36.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,35.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,36.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,36.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,36.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 26.5,45.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,31.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,21.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,23.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 25.5,45.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: 24.5,45.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 24.5,49.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 24.5,47.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: 23.5,49.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 22.5,49.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: 20.5,49.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 19.5,49.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 18.5,49.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 17.5,49.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 16.5,49.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 21.5,49.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 16.5,48.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 16.5,47.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 15.5,47.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: 10.5,47.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 7.5,47.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: 11.5,47.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 6.5,47.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 8.5,47.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 3.5,56.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: 0.5,55.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: 0.5,56.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -0.5,55.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 0.5,55.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: 0.5,57.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 4.5,48.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: 4.5,50.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: 4.5,52.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: 4.5,53.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: 4.5,54.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 4.5,55.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: 4.5,56.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: 4.5,49.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 4.5,57.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 2.5,56.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 0.5,56.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 1.5,56.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,41.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: -38.5,66.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: -38.5,67.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,65.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,70.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,71.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,36.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,35.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,36.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: -70.5,8.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: -70.5,6.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: -66.5,49.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: -66.5,50.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: -66.5,45.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: -66.5,48.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,28.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: -66.5,47.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: -67.5,75.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: -67.5,76.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: -70.5,7.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: -67.5,73.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: -66.5,46.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: -69.5,10.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: -69.5,13.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: -69.5,12.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: -65.5,16.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: -47.5,5.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: -52.5,4.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: -69.5,16.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: -69.5,15.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: -70.5,10.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 4907 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,36.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,36.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,36.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + pos: -99.5,15.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,35.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: -39.5,65.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,35.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: -67.5,16.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: -69.5,14.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: -71.5,15.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: -64.5,17.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: -64.5,19.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: -65.5,78.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -66.5,6.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,25.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: -14.5,76.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: -14.5,78.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: -14.5,75.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: -14.5,80.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: -14.5,82.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: -14.5,79.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: -14.5,83.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: -14.5,84.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: -14.5,85.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: -14.5,86.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: -14.5,81.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + pos: -64.5,78.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,20.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,23.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,22.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,19.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,24.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,21.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: -63.5,78.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: -69.5,6.5 + parent: 2 + - uid: 9039 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 9040 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 9590 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 9593 + components: + - type: Transform + pos: -69.5,11.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + pos: -79.5,15.5 + parent: 2 + - uid: 9716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,35.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - uid: 10375 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 10376 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 10377 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 10378 + components: + - type: Transform + pos: -67.5,6.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + pos: -68.5,6.5 + parent: 2 + - uid: 10553 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + pos: -70.5,15.5 + parent: 2 + - uid: 10555 + components: + - type: Transform + pos: -72.5,15.5 + parent: 2 + - uid: 10556 + components: + - type: Transform + pos: -76.5,15.5 + parent: 2 + - uid: 10559 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: -81.5,15.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + pos: -73.5,15.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,72.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - uid: 12341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,33.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,37.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,38.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,40.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,42.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,43.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,44.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,39.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,45.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,51.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,51.5 + parent: 2 + - uid: 12905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,52.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,69.5 + parent: 2 + - uid: 12908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,69.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,69.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,69.5 + parent: 2 + - uid: 12911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,69.5 + parent: 2 + - uid: 12913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,66.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,67.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,68.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,65.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,69.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,69.5 + parent: 2 + - uid: 12919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,69.5 + parent: 2 + - uid: 12920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,69.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,69.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,69.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,69.5 + parent: 2 + - uid: 12925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,69.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,69.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,69.5 + parent: 2 + - uid: 12928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,69.5 + parent: 2 + - uid: 12929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,69.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,69.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,69.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,69.5 + parent: 2 + - uid: 12933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,69.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,69.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,69.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,69.5 + parent: 2 + - uid: 12937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,69.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,69.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,69.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,69.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,69.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,69.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,72.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,72.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,72.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,72.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,72.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,72.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,72.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,72.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,72.5 + parent: 2 + - uid: 12954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,70.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,58.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,53.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,53.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,53.5 + parent: 2 + - uid: 12966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,53.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,53.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,53.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,53.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,53.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,53.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,57.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,57.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,57.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,38.5 + parent: 2 + - uid: 12988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,38.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,38.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,40.5 + parent: 2 + - uid: 12991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,40.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,40.5 + parent: 2 + - uid: 12993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,46.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,46.5 + parent: 2 + - uid: 12995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,46.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,48.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,48.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,48.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,53.5 + parent: 2 + - uid: 13001 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 13405 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 13501 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 13502 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 13503 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 13504 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 13782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,7.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,5.5 + parent: 2 + - uid: 13784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,6.5 + parent: 2 + - uid: 13962 + components: + - type: Transform + pos: -30.5,71.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 14011 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 14013 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 14044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + pos: -67.5,72.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + pos: -77.5,15.5 + parent: 2 + - uid: 14258 + components: + - type: Transform + pos: -82.5,15.5 + parent: 2 + - uid: 14259 + components: + - type: Transform + pos: -78.5,15.5 + parent: 2 + - uid: 14423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 2 + - uid: 14512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 2 + - uid: 14513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - uid: 14514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - uid: 14515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 2 + - uid: 14516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - uid: 14517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 + - uid: 14518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - uid: 14519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + - uid: 14520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,17.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,11.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 + - uid: 14524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - uid: 14525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,5.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 2 + - uid: 14581 + components: + - type: Transform + pos: -83.5,15.5 + parent: 2 + - uid: 14595 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 14617 + components: + - type: Transform + pos: -80.5,15.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + pos: -83.5,15.5 + parent: 2 + - uid: 14636 + components: + - type: Transform + pos: -84.5,15.5 + parent: 2 + - uid: 14637 + components: + - type: Transform + pos: -85.5,15.5 + parent: 2 + - uid: 14638 + components: + - type: Transform + pos: -87.5,15.5 + parent: 2 + - uid: 14639 + components: + - type: Transform + pos: -88.5,15.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: -89.5,15.5 + parent: 2 + - uid: 14641 + components: + - type: Transform + pos: -90.5,15.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: -91.5,15.5 + parent: 2 + - uid: 14643 + components: + - type: Transform + pos: -92.5,15.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + pos: -93.5,15.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: -94.5,15.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + pos: -86.5,15.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: -95.5,15.5 + parent: 2 + - uid: 14648 + components: + - type: Transform + pos: -98.5,15.5 + parent: 2 + - uid: 14675 + components: + - type: Transform + pos: -97.5,15.5 + parent: 2 + - uid: 14679 + components: + - type: Transform + pos: -96.5,15.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-4.5 + parent: 2 + - uid: 16485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,83.5 + parent: 2 + - uid: 16486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,85.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,86.5 + parent: 2 + - uid: 16488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,84.5 + parent: 2 + - uid: 16489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,83.5 + parent: 2 + - uid: 16490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,85.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,86.5 + parent: 2 + - uid: 16492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,84.5 + parent: 2 + - uid: 16493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,83.5 + parent: 2 + - uid: 16494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,84.5 + parent: 2 + - uid: 16495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,86.5 + parent: 2 + - uid: 16496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,85.5 + parent: 2 + - uid: 16497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,83.5 + parent: 2 + - uid: 16498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,85.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,86.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,84.5 + parent: 2 + - uid: 16644 + components: + - type: Transform + pos: -29.5,71.5 + parent: 2 +- proto: Cautery + entities: + - uid: 15530 + components: + - type: Transform + pos: -24.72412,31.070091 + parent: 2 +- proto: Chair + entities: + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,47.5 + parent: 2 + - uid: 664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,23.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,23.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,23.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,60.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,64.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,63.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,61.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: -41.5,50.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,50.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,49.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,50.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,23.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,49.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,80.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,80.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,47.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: 26.5,49.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: -73.5,73.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,38.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,40.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,46.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,62.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,62.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,62.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,50.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: -33.5,54.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: -32.5,54.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: -31.5,54.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: -30.5,54.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + pos: -29.5,54.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: -14.5,54.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + pos: -13.5,54.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: -12.5,54.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + pos: -11.5,54.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + pos: -10.5,54.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,61.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,61.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,61.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,60.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,60.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,60.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,61.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,61.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,61.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,60.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,60.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,60.5 + parent: 2 + - uid: 10368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,46.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,80.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,80.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,62.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: -53.5,73.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,72.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,72.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,45.5 + parent: 2 + - uid: 14552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,42.5 + parent: 2 + - uid: 14553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,41.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,42.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,45.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,44.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-1.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-0.5 + parent: 2 + - uid: 14597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,2.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,2.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,46.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,41.5 + parent: 2 + - uid: 14858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,44.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,35.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,35.5 + parent: 2 + - uid: 14892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,43.5 + parent: 2 + - uid: 14976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,43.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,40.5 + parent: 2 + - uid: 16134 + components: + - type: Transform + pos: -75.5,7.5 + parent: 2 + - uid: 16135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,6.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,6.5 + parent: 2 + - uid: 16137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,8.5 + parent: 2 + - uid: 16138 + components: + - type: Transform + pos: -73.5,10.5 + parent: 2 + - uid: 16139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,12.5 + parent: 2 + - uid: 16140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,9.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,9.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,12.5 + parent: 2 + - uid: 16510 + components: + - type: Transform + pos: -2.5,79.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + pos: -1.5,79.5 + parent: 2 + - uid: 16512 + components: + - type: Transform + pos: -0.5,79.5 + parent: 2 + - uid: 16513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,81.5 + parent: 2 + - uid: 16514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,81.5 + parent: 2 + - uid: 16515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,81.5 + parent: 2 + - uid: 16599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + - uid: 16601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 6385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.556023,53.8809 + parent: 2 + - uid: 6465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.368523,53.8809 + parent: 2 + - uid: 6850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.506104,61.71549 + parent: 2 + - uid: 6851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.506104,60.71549 + parent: 2 + - uid: 6852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.443604,59.59049 + parent: 2 + - uid: 6853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.42798,58.574863 + parent: 2 + - uid: 6854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.443604,57.65299 + parent: 2 + - uid: 6855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.443604,56.71549 + parent: 2 + - uid: 6857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.537354,57.731113 + parent: 2 + - uid: 6858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.52173,58.71549 + parent: 2 + - uid: 6859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.55298,59.71549 + parent: 2 + - uid: 6860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.474854,60.84049 + parent: 2 + - uid: 6861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.52173,61.668613 + parent: 2 + - uid: 6862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.365654,61.699863 + parent: 2 + - uid: 6863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.50628,60.74674 + parent: 2 + - uid: 6864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.428154,59.574863 + parent: 2 + - uid: 6865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.490654,58.62174 + parent: 2 + - uid: 6866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.490654,57.74674 + parent: 2 + - uid: 6867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.47503,56.52799 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.563465,72.61863 + parent: 2 + - uid: 4920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.496109,40.761044 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: -32.505547,42.656483 + parent: 2 + - uid: 5772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.500065,39.662216 + parent: 2 + - uid: 5877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.597977,43.849842 + parent: 2 + - uid: 5878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.566727,43.818592 + parent: 2 + - uid: 6255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.363758,63.695774 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: -28.451696,6.5310707 + parent: 2 + - uid: 6484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.460061,4.5917788 + parent: 2 + - uid: 6544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.515135,17.655678 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: -22.32909,73.603004 + parent: 2 + - uid: 6667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.39159,71.74363 + parent: 2 + - uid: 6668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.563465,72.634254 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: -20.51659,73.603004 + parent: 2 + - uid: 6670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.469715,71.83738 + parent: 2 + - uid: 7063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.3776512,17.680063 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: -17.487452,87.659294 + parent: 2 + - uid: 9173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.54984474,72.83825 + parent: 2 + - uid: 15176 + components: + - type: Transform + pos: -2.4808834,40.56486 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 4745 + components: + - type: Transform + pos: -41.450005,66.61128 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: -39.33168,28.640572 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: -36.45098,32.69692 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: -41.51348,32.48598 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: -26.492,24.705412 + parent: 2 + - uid: 5846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.381362,32.744434 + parent: 2 + - uid: 9720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.325226,24.876038 + parent: 2 +- proto: ChairRitual + entities: + - uid: 12051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.49105,8.774844 + parent: 2 + - uid: 12060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.49105,9.634219 + parent: 2 + - uid: 12064 + components: + - type: Transform + pos: -50.537926,11.665469 + parent: 2 + - uid: 12067 + components: + - type: Transform + pos: -48.42855,11.634219 + parent: 2 +- proto: ChairWood + entities: + - uid: 1076 + components: + - type: Transform + pos: -14.2749605,11.596153 + parent: 2 + - uid: 1382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.4312105,9.658653 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: -65.61953,58.65674 + parent: 2 + - uid: 2982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.447655,55.547363 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: -59.84017,55.41412 + parent: 2 + - uid: 3926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.675293,52.086903 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: -61.500122,42.480743 + parent: 2 + - uid: 4638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.476685,40.699493 + parent: 2 + - uid: 4648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.421455,46.5468 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: -57.46833,48.49211 + parent: 2 + - uid: 4651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.515205,50.601486 + parent: 2 + - uid: 5090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.386574,61.188812 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: -12.512095,65.76947 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: -66.416405,58.65674 + parent: 2 + - uid: 5573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.469165,25.537722 + parent: 2 + - uid: 5675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.605324,61.141937 + parent: 2 + - uid: 6901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.394043,52.243153 + parent: 2 + - uid: 6932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.24642,54.585995 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: -9.481424,64.5676 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: -61.40606,27.572046 + parent: 2 + - uid: 7420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.53106,25.790796 + parent: 2 + - uid: 7421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.452934,23.540796 + parent: 2 + - uid: 7422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.452934,23.540796 + parent: 2 + - uid: 9057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.46517,53.66412 + parent: 2 + - uid: 9595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.418297,53.742245 + parent: 2 + - uid: 10359 + components: + - type: Transform + pos: -66.39231,13.504635 + parent: 2 + - uid: 10507 + components: + - type: Transform + pos: -51.93345,58.641937 + parent: 2 + - uid: 12059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.02341,11.619953 + parent: 2 + - uid: 12065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.77341,11.635578 + parent: 2 + - uid: 12103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.43203,55.547363 + parent: 2 + - uid: 12104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.43203,55.547363 + parent: 2 + - uid: 12115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.739723,57.676697 + parent: 2 + - uid: 12117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.333473,57.645447 + parent: 2 + - uid: 12119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.49595,59.782562 + parent: 2 + - uid: 14476 + components: + - type: Transform + pos: 23.446238,14.877729 + parent: 2 + - uid: 14477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.336863,13.876686 + parent: 2 + - uid: 14478 + components: + - type: Transform + pos: 24.414988,15.174913 + parent: 2 + - uid: 14479 + components: + - type: Transform + pos: 21.446238,14.564903 + parent: 2 + - uid: 14601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.3943,19.602953 + parent: 2 + - uid: 14603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.73805,18.884203 + parent: 2 + - uid: 14604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5193,18.587328 + parent: 2 + - uid: 15689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.49845,-0.39728022 + parent: 2 + - uid: 15698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.4047,-0.38165522 + parent: 2 + - uid: 16386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5249605,8.752403 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 7424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.470306,24.781784 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 4229 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: -36.5,33.5 + parent: 2 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 15531 + components: + - type: Transform + pos: -26.59912,31.413841 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: -26.833494,30.601341 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 4241 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: -38.5,30.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 1126 + components: + - type: Transform + pos: -41.5,28.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -37.5,33.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: -41.5,33.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 5111 + components: + - type: Transform + pos: -6.551396,46.462746 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: -8.26495,11.178183 + parent: 2 + - uid: 7423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.36093,26.563034 + parent: 2 + - uid: 14473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.477488,13.595143 + parent: 2 +- proto: ChurchBell + entities: + - uid: 14280 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 14281 + components: + - type: Transform + pos: -62.5,15.5 + parent: 2 +- proto: Cigar + entities: + - uid: 6504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.555413,9.876457 + parent: 2 +- proto: CigarCase + entities: + - uid: 4945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.453514,38.42126 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: -2.6188245,39.638313 + parent: 2 + - uid: 15635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.76014,9.862439 + parent: 2 +- proto: CigarGold + entities: + - uid: 6076 + components: + - type: Transform + pos: -0.44137764,72.8695 + parent: 2 + - uid: 7127 + components: + - type: Transform + pos: -15.078324,68.69268 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 6138 + components: + - type: Transform + pos: -8.440418,73.640205 + parent: 2 +- proto: CigPackMixedMedical + entities: + - uid: 5579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.95354,23.537722 + parent: 2 +- proto: CigPackRed + entities: + - uid: 6505 + components: + - type: Transform + pos: -9.36127,11.600058 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 1782 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 5174 + components: + - type: Transform + pos: -36.5,42.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: 16.5,43.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 2050 + components: + - type: Transform + pos: -52.5,52.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 160 + components: + - type: Transform + pos: -68.5,47.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: -32.5,73.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: 11.5,82.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: -54.5,57.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: -68.5,42.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + pos: -68.5,43.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 29.5,44.5 + parent: 2 + - uid: 9024 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: -66.5,31.5 + parent: 2 + - uid: 9028 + components: + - type: Transform + pos: -67.5,68.5 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: -4.5,66.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 + - uid: 9033 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + pos: 11.5,80.5 + parent: 2 + - uid: 14575 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 14577 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + pos: -52.5,5.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: -90.5,56.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + pos: -92.5,70.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + pos: -92.5,56.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + pos: -90.5,70.5 + parent: 2 + - uid: 16619 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 +- proto: ClosetEmergencyN2 + entities: + - uid: 9068 + components: + - type: Transform + pos: -54.5,58.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 4795 + components: + - type: Transform + pos: -33.5,73.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 11.5,81.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: -37.5,66.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 + - uid: 14578 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: -91.5,56.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + pos: -91.5,70.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: -68.5,48.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + pos: -68.5,49.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + pos: -66.5,39.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 1482 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 9016 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 9019 + components: + - type: Transform + pos: -66.5,32.5 + parent: 2 + - uid: 9020 + components: + - type: Transform + pos: -68.5,68.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + pos: -5.5,66.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + pos: 24.5,37.5 + parent: 2 + - uid: 14579 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 14580 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 6631 + components: + - type: Transform + pos: -33.5,67.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 5680 + components: + - type: Transform + pos: -35.5,66.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 3508 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 14506 + components: + - type: Transform + pos: -60.5,1.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14565 + - 14564 + - 14511 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1481 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: -65.5,48.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 29.5,45.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 9003 + components: + - type: Transform + pos: -66.5,33.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + pos: -69.5,68.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + pos: -37.5,65.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + pos: -3.5,71.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + pos: -3.5,72.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + pos: 15.5,49.5 + parent: 2 + - uid: 9011 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 9012 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 9013 + components: + - type: Transform + pos: -34.5,36.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + pos: -65.5,47.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 13810 + components: + - type: Transform + pos: 28.5,47.5 + parent: 2 + - uid: 14587 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 14590 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 15118 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + pos: -71.5,14.5 + parent: 2 + - uid: 16603 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 767 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 14586 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 5695 + components: + - type: Transform + pos: -17.566338,23.632784 + parent: 2 + - uid: 15399 + components: + - type: Transform + pos: -13.572019,38.72765 + parent: 2 +- proto: ClothingBeltChampion + entities: + - uid: 6150 + components: + - type: Transform + pos: -43.446762,58.440586 + parent: 2 +- proto: ClothingBeltMedicalEMTFilled + entities: + - uid: 12671 + components: + - type: Transform + pos: -27.565609,24.395536 + parent: 2 +- proto: ClothingBeltMedicalFilled + entities: + - uid: 15206 + components: + - type: Transform + pos: -25.565277,34.570515 + parent: 2 + - uid: 15207 + components: + - type: Transform + pos: -25.431105,27.586369 + parent: 2 +- proto: ClothingBeltPlantFilled + entities: + - uid: 5119 + components: + - type: Transform + pos: -7.535784,49.787212 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: -40.51986,5.581151 + parent: 2 +- proto: ClothingBeltUtility + entities: + - uid: 15386 + components: + - type: Transform + pos: 3.5045795,78.60506 + parent: 2 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 15572 + components: + - type: Transform + pos: -8.586155,5.112493 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 5524 + components: + - type: Transform + pos: -44.445335,15.615026 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: 13.873081,38.641415 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: 11.082247,67.57121 + parent: 2 +- proto: ClothingEyesEyepatchHudMedical + entities: + - uid: 15527 + components: + - type: Transform + pos: -24.94287,31.460716 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 5998 + components: + - type: Transform + pos: 10.499004,65.4505 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: -62.55639,33.69044 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 7149 + components: + - type: Transform + pos: -9.55783,63.755093 + parent: 2 + - uid: 7150 + components: + - type: Transform + pos: -9.55783,63.458218 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: -47.456314,67.004974 + parent: 2 +- proto: ClothingEyesHudMedSec + entities: + - uid: 5019 + components: + - type: Transform + pos: -12.50883,38.366013 + parent: 2 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 2323 + components: + - type: Transform + pos: -46.35959,56.558147 + parent: 2 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 2325 + components: + - type: Transform + pos: -41.687714,56.573772 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 2324 + components: + - type: Transform + pos: -41.625214,61.386272 + parent: 2 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 2326 + components: + - type: Transform + pos: -46.343964,61.386272 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 5530 + components: + - type: Transform + pos: -40.52346,17.380651 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: 10.514629,65.73175 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: -32.45865,38.48124 + parent: 2 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 5531 + components: + - type: Transform + pos: -40.513947,17.748589 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: -40.507835,17.177526 + parent: 2 +- proto: ClothingHeadHatBeretBrigmedic + entities: + - uid: 15864 + components: + - type: Transform + pos: -13.101215,38.58796 + parent: 2 +- proto: ClothingHeadHatBeretFrench + entities: + - uid: 4726 + components: + - type: Transform + pos: -53.248,66.49748 + parent: 2 +- proto: ClothingHeadHatCardborg + entities: + - uid: 6927 + components: + - type: Transform + pos: -62.304802,60.836147 + parent: 2 +- proto: ClothingHeadHatCargosoftFlipped + entities: + - uid: 15387 + components: + - type: Transform + pos: 4.5201473,78.69908 + parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 14511 + components: + - type: Transform + parent: 14506 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatChickenhead + entities: + - uid: 14160 + components: + - type: Transform + pos: -50.325394,74.470055 + parent: 2 +- proto: ClothingHeadHatHoodMoth + entities: + - uid: 3915 + components: + - type: Transform + parent: 3914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodNunHood + entities: + - uid: 14284 + components: + - type: Transform + pos: -52.56874,15.747155 + parent: 2 +- proto: ClothingHeadHatPirate + entities: + - uid: 16779 + components: + - type: Transform + pos: -68.356544,19.12735 + parent: 2 +- proto: ClothingHeadHatPirateTricord + entities: + - uid: 16784 + components: + - type: Transform + pos: -71.52842,18.68985 + parent: 2 + - uid: 16787 + components: + - type: Transform + pos: -70.43467,19.37735 + parent: 2 +- proto: ClothingHeadHatSantahat + entities: + - uid: 6843 + components: + - type: Transform + pos: -40.568184,46.637524 + parent: 2 + - uid: 6845 + components: + - type: Transform + pos: -40.58381,45.77815 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: -40.58381,45.77815 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: -40.536934,44.793774 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: -40.630684,43.71565 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: -40.599434,42.8094 + parent: 2 +- proto: ClothingHeadHatSkub + entities: + - uid: 6930 + components: + - type: Transform + pos: -61.711052,60.586147 + parent: 2 +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 5696 + components: + - type: Transform + pos: -17.675713,24.085909 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 6585 + components: + - type: Transform + pos: -0.5284686,57.66649 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 5898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.465345,33.503014 + parent: 2 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 5811 + components: + - type: Transform + pos: 14.542616,38.670082 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 14178 + components: + - type: Transform + pos: -64.52047,72.571655 + parent: 2 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 4851 + components: + - type: Transform + pos: -22.714003,39.312107 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: -22.36244,39.312107 + parent: 2 +- proto: ClothingHeadsetMining + entities: + - uid: 6015 + components: + - type: Transform + pos: 13.832811,62.611485 + parent: 2 +- proto: ClothingMaskBat + entities: + - uid: 3917 + components: + - type: Transform + parent: 3914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBear + entities: + - uid: 3919 + components: + - type: Transform + parent: 3914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBee + entities: + - uid: 3918 + components: + - type: Transform + parent: 3914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreath + entities: + - uid: 5894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.812508,24.777704 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 5694 + components: + - type: Transform + pos: -17.535088,23.851534 + parent: 2 +- proto: ClothingMaskClownBanana + entities: + - uid: 3921 + components: + - type: Transform + parent: 3914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskFox + entities: + - uid: 3920 + components: + - type: Transform + parent: 3914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasExplorer + entities: + - uid: 2863 + components: + - type: Transform + pos: 7.6011305,60.541073 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: -46.47209,14.488183 + parent: 2 +- proto: ClothingMaskJackal + entities: + - uid: 3916 + components: + - type: Transform + parent: 3914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSadMime + entities: + - uid: 4703 + components: + - type: Transform + pos: -56.165558,65.59429 + parent: 2 +- proto: ClothingMaskScaredMime + entities: + - uid: 4702 + components: + - type: Transform + pos: -55.415558,65.73492 + parent: 2 +- proto: ClothingMaskSexyMime + entities: + - uid: 4701 + components: + - type: Transform + pos: -55.759308,65.51617 + parent: 2 +- proto: ClothingNeckBling + entities: + - uid: 6137 + components: + - type: Transform + pos: -8.68362,73.72177 + parent: 2 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 7147 + components: + - type: Transform + pos: -10.621851,63.645718 + parent: 2 +- proto: ClothingNeckScarfStripedSyndieGreen + entities: + - uid: 6104 + components: + - type: Transform + parent: 6992 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 2484 + components: + - type: Transform + parent: 6992 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckStoleChaplain + entities: + - uid: 14278 + components: + - type: Transform + pos: -57.698494,8.689981 + parent: 2 +- proto: ClothingOuterApronChef + entities: + - uid: 14564 + components: + - type: Transform + parent: 14506 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 4849 + components: + - type: Transform + pos: -22.73744,39.56992 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -22.36244,39.546482 + parent: 2 +- proto: ClothingOuterArmorReflective + entities: + - uid: 4847 + components: + - type: Transform + pos: -22.760878,40.530857 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: -22.339003,40.530857 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: -22.491274,40.507305 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 4853 + components: + - type: Transform + pos: -22.714003,39.687107 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: -22.315565,39.687107 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: -22.45619,39.593357 + parent: 2 +- proto: ClothingOuterCardborg + entities: + - uid: 3925 + components: + - type: Transform + pos: -62.351677,60.539272 + parent: 2 +- proto: ClothingOuterCoatPirate + entities: + - uid: 16778 + components: + - type: Transform + pos: -68.37217,18.7211 + parent: 2 +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 4856 + components: + - type: Transform + pos: -22.750301,38.59426 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: -22.258114,38.6177 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: -22.469051,38.570824 + parent: 2 +- proto: ClothingOuterHoodieChaplain + entities: + - uid: 14285 + components: + - type: Transform + pos: -52.53749,16.575281 + parent: 2 +- proto: ClothingOuterNunRobe + entities: + - uid: 14283 + components: + - type: Transform + pos: -52.615616,15.465905 + parent: 2 +- proto: ClothingOuterRobesJudge + entities: + - uid: 2259 + components: + - type: Transform + pos: -15.480845,64.753845 + parent: 2 +- proto: ClothingOuterSanta + entities: + - uid: 6839 + components: + - type: Transform + pos: -40.58381,42.71565 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: -40.58381,43.5594 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: -40.58381,44.65315 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: -40.58381,45.543774 + parent: 2 + - uid: 6844 + components: + - type: Transform + pos: -40.568184,46.575024 + parent: 2 +- proto: ClothingOuterSkub + entities: + - uid: 6929 + components: + - type: Transform + pos: -61.695427,60.445522 + parent: 2 +- proto: ClothingOuterStraightjacket + entities: + - uid: 5014 + components: + - type: Transform + pos: -15.579143,38.694138 + parent: 2 +- proto: ClothingOuterSuitChicken + entities: + - uid: 14159 + components: + - type: Transform + pos: -50.637894,74.67318 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 5505 + components: + - type: Transform + pos: -28.663073,64.71843 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: -28.358385,64.50749 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: -28.706043,64.55704 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: -26.409168,64.71329 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: -26.694323,64.671555 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: -26.413073,64.484055 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: -64.504845,74.509155 + parent: 2 +- proto: ClothingShoesClownBanana + entities: + - uid: 4717 + components: + - type: Transform + pos: -62.42988,67.67224 + parent: 2 +- proto: ClothingUnderSocksCoder + entities: + - uid: 14574 + components: + - type: Transform + pos: -64.48061,-0.4007933 + parent: 2 +- proto: ClothingUniformJumpskirtBrigmedic + entities: + - uid: 5017 + components: + - type: Transform + pos: -12.719768,38.530075 + parent: 2 +- proto: ClothingUniformJumpskirtSyndieFormalDress + entities: + - uid: 1125 + components: + - type: Transform + parent: 6992 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitBrigmedic + entities: + - uid: 5018 + components: + - type: Transform + pos: -12.297893,38.553513 + parent: 2 +- proto: ClothingUniformJumpsuitChef + entities: + - uid: 14565 + components: + - type: Transform + parent: 14506 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 16783 + components: + - type: Transform + pos: -68.24717,19.361725 + parent: 2 +- proto: ClusterBangFull + entities: + - uid: 5177 + components: + - type: Transform + pos: -38.141457,44.585876 + parent: 2 +- proto: CombatKnife + entities: + - uid: 6128 + components: + - type: Transform + pos: 5.00206,45.653374 + parent: 2 + - uid: 16146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.89439,12.66863 + parent: 2 +- proto: ComfyChair + entities: + - uid: 2215 + components: + - type: Transform + pos: -15.5,65.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,39.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,39.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,67.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,35.5 + parent: 2 +- proto: CommandmentCircuitBoard + entities: + - uid: 5336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.370186,89.64728 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 6472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,72.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 5740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,29.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 5909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 6069 + components: + - type: Transform + pos: -0.5,67.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 4490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,72.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,63.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,71.5 + parent: 2 +- proto: ComputerCargoShuttle + entities: + - uid: 2716 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 5401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,67.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: -21.5,75.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 5138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,40.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,23.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: -25.5,75.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,62.5 + parent: 2 + - uid: 10172 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,40.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: -68.5,66.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,39.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: -38.5,40.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,41.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + pos: -16.5,75.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 6612 + components: + - type: Transform + pos: -14.5,70.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: -22.5,75.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: -35.5,64.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 4738 + components: + - type: Transform + pos: -41.5,67.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 6661 + components: + - type: Transform + pos: -24.5,75.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 2974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,73.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 6474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: -17.5,75.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 2558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,39.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: 21.5,44.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,37.5 + parent: 2 +- proto: ComputerRoboticsControl + entities: + - uid: 5884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,44.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,87.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 16370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,62.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 16433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,76.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 1727 + components: + - type: Transform + pos: -67.5,79.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,4.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: -26.5,74.5 + parent: 2 + - uid: 14609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,14.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 5415 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: -20.5,75.5 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: -34.5,64.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 4923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,41.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + pos: -18.5,75.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,87.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 4292 + components: + - type: Transform + pos: -43.5,67.5 + parent: 2 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 10362 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 4647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,51.5 + parent: 2 + - uid: 10005 + components: + - type: Transform + pos: -48.5,67.5 + parent: 2 +- proto: ContainmentFieldGeneratorFlatpack + entities: + - uid: 3 + components: + - type: Transform + pos: -1.718478,-1.2119987 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: -12.741269,1.7977606 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: -12.295957,1.5399481 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -12.272519,1.7743231 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: -12.717832,1.4930731 + parent: 2 + - uid: 13538 + components: + - type: Transform + pos: -1.734103,-1.5088737 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: -1.3401647,-1.4603853 + parent: 2 + - uid: 14466 + components: + - type: Transform + pos: -1.3739104,-1.1578448 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,74.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 3.5,69.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,71.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,61.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,59.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,74.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,74.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,74.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,74.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,71.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,71.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,74.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,74.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,74.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,59.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,59.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,59.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,60.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,71.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,59.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,74.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,74.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + pos: 3.5,72.5 + parent: 2 + - uid: 10370 + components: + - type: Transform + pos: 3.5,73.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + pos: 3.5,71.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + pos: 3.5,74.5 + parent: 2 + - uid: 11635 + components: + - type: Transform + pos: 3.5,70.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,78.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,78.5 + parent: 2 + - uid: 16423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,78.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,78.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,78.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,78.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,78.5 + parent: 2 + - uid: 16428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,78.5 + parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 5327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.60456,89.45978 + parent: 2 +- proto: CowToolboxFilled + entities: + - uid: 14180 + components: + - type: Transform + pos: -62.45797,72.571655 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 4968 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 10364 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 +- proto: CrateCoffin + entities: + - uid: 10796 + components: + - type: Transform + pos: -67.5,10.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + pos: -52.5,14.5 + parent: 2 +- proto: CrateContrabandStorageSecure + entities: + - uid: 9723 + components: + - type: Transform + pos: -20.5,38.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 15126 + components: + - type: Transform + pos: 10.5,49.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 119 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 6468 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 13920 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 16014 + components: + - type: Transform + pos: -65.5,51.5 + parent: 2 + - uid: 16593 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 +- proto: CrateEngineeringSecure + entities: + - uid: 1030 + components: + - type: MetaData + name: Grounding Rod Crate + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4508 + - 4349 + - 3628 + - 3386 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1064 + components: + - type: MetaData + name: Radiation Collector Crate + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4514 + - 4709 + - 4710 + - 4711 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8086 + components: + - type: MetaData + name: Radiation Collector Crate + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6322 + - 6266 + - 6193 + - 5011 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9810 + components: + - type: MetaData + name: Tesla Coil Crate + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7075 + - 7071 + - 6621 + - 6498 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11174 + components: + - type: MetaData + name: Plasma Tank Crate + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7076 + - 7372 + - 8085 + - 8091 + - 8103 + - 8104 + - 8105 + - 8106 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11184 + components: + - type: MetaData + name: Radiation Collector Crate + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9394 + - 8111 + - 8108 + - 8107 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringShuttle + entities: + - uid: 5958 + components: + - type: Transform + pos: 10.5,52.5 + parent: 2 +- proto: CrateEngineeringSolar + entities: + - uid: 3757 + components: + - type: Transform + pos: -68.5,77.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: -68.5,76.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 5832 + components: + - type: Transform + pos: 8.5,73.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: 10.5,69.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: 8.5,76.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: 5.5,73.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: 6.5,75.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: 7.5,75.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: 5.5,77.5 + parent: 2 + - uid: 14228 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 14369 + components: + - type: Transform + pos: -72.5,73.5 + parent: 2 + - uid: 14370 + components: + - type: Transform + pos: -50.5,70.5 + parent: 2 + - uid: 14371 + components: + - type: Transform + pos: -58.5,74.5 + parent: 2 + - uid: 14372 + components: + - type: Transform + pos: -6.5,72.5 + parent: 2 + - uid: 14374 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 14375 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,6.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 15472 + components: + - type: Transform + pos: 8.5,70.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + pos: -39.5,36.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 8232 + components: + - type: Transform + pos: -50.5,52.5 + parent: 2 + - uid: 14358 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14359 + - 14360 + - 14361 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateGenericSteel + entities: + - uid: 2277 + components: + - type: Transform + pos: 6.5,72.5 + parent: 2 + - uid: 3914 + components: + - type: MetaData + desc: Full of Theatre Masks + name: Mask Crate + - type: Transform + pos: -63.5,60.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3915 + - 3916 + - 3917 + - 3918 + - 3919 + - 3920 + - 3921 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6048 + components: + - type: Transform + pos: 12.5,70.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: 7.5,73.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: 11.5,70.5 + parent: 2 + - uid: 16759 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 +- proto: CrateHydroponicsSeeds + entities: + - uid: 14678 + components: + - type: Transform + pos: -44.5,5.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 5690 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 +- proto: CrateMindShieldImplants + entities: + - uid: 4675 + components: + - type: Transform + pos: -26.5,40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6440 + - 6441 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateNPCChicken + entities: + - uid: 4609 + components: + - type: Transform + pos: -56.5,38.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + pos: -48.5,74.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 6610 + components: + - type: Transform + pos: -15.5,70.5 + parent: 2 +- proto: CratePlastic + entities: + - uid: 7166 + components: + - type: Transform + pos: 5.5,75.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + pos: 8.5,72.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + pos: 11.5,69.5 + parent: 2 +- proto: CratePrivateSecure + entities: + - uid: 6145 + components: + - type: Transform + pos: -11.5,74.5 + parent: 2 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 5956 + components: + - type: Transform + pos: -34.5,70.5 + parent: 2 +- proto: CrateSurgery + entities: + - uid: 5887 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 +- proto: CrateTrackingImplants + entities: + - uid: 4898 + components: + - type: Transform + pos: -25.5,40.5 + parent: 2 +- proto: CrayonBox + entities: + - uid: 4721 + components: + - type: Transform + pos: -62.294876,67.83342 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -2.2941089,50.63421 + parent: 2 +- proto: CrayonMime + entities: + - uid: 4722 + components: + - type: Transform + pos: -53.55269,66.61467 + parent: 2 +- proto: Crematorium + entities: + - uid: 10352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,8.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 13747 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 +- proto: Crowbar + entities: + - uid: 16163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.71725,4.540292 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 5821 + components: + - type: Transform + pos: 16.759571,38.531643 + parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 15219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,69.5 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 1507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,32.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,33.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 4729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,33.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 5667 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 + - uid: 15185 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 +- proto: CryostasisBeaker + entities: + - uid: 5881 + components: + - type: Transform + pos: 20.479704,44.634933 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 7320 + components: + - type: Transform + pos: -19.651268,33.77071 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: -19.370018,33.817585 + parent: 2 +- proto: CurtainsPurple + entities: + - uid: 14263 + components: + - type: Transform + pos: -63.5,59.5 + parent: 2 + - uid: 14264 + components: + - type: Transform + pos: -61.5,59.5 + parent: 2 + - uid: 14265 + components: + - type: Transform + pos: -60.5,59.5 + parent: 2 + - uid: 14266 + components: + - type: Transform + pos: -62.5,59.5 + parent: 2 + - uid: 14267 + components: + - type: Transform + pos: -57.5,59.5 + parent: 2 + - uid: 14268 + components: + - type: Transform + pos: -56.5,59.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + pos: -59.5,59.5 + parent: 2 + - uid: 14270 + components: + - type: Transform + pos: -58.5,59.5 + parent: 2 +- proto: CurtainsRed + entities: + - uid: 5411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,40.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,39.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: -37.5,41.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: -36.5,41.5 + parent: 2 +- proto: CurtainsWhite + entities: + - uid: 6746 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - type: Door + secondsUntilStateChange: -232555.16 + state: Opening + - uid: 6747 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - type: Door + secondsUntilStateChange: -232555.86 + state: Opening + - uid: 6749 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - type: Door + secondsUntilStateChange: -232554.42 + state: Opening + - uid: 6750 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - type: Door + secondsUntilStateChange: -232553.8 + state: Opening +- proto: CyberPen + entities: + - uid: 12866 + components: + - type: Transform + pos: 23.706799,21.695425 + parent: 2 +- proto: CyborgEndoskeleton + entities: + - uid: 15382 + components: + - type: Transform + pos: 21.472296,30.627846 + parent: 2 +- proto: d20Dice + entities: + - uid: 6165 + components: + - type: Transform + pos: -65.56924,56.949608 + parent: 2 +- proto: d6Dice + entities: + - uid: 6500 + components: + - type: Transform + pos: -13.835531,10.596153 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: -14.179281,10.502403 + parent: 2 + - uid: 14469 + components: + - type: Transform + pos: 23.470129,16.59238 + parent: 2 + - uid: 14470 + components: + - type: Transform + pos: 23.782629,16.59238 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: 23.188879,16.576756 + parent: 2 + - uid: 16147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.36314,12.746755 + parent: 2 +- proto: DecoratedFirTree + entities: + - uid: 6828 + components: + - type: Transform + pos: -31.5,56.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: -12.5,56.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: -60.5,10.5 + parent: 2 +- proto: DefaultStationBeacon + entities: + - uid: 5479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,55.5 + parent: 2 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 5473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,87.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 5445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 5455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,43.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 4373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,41.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 1150 + components: + - type: Transform + pos: -73.5,62.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 5475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 774 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 5450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,49.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 5451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,40.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 5474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,72.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 5462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,68.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 5458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,69.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 5457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,64.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 5446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 14286 + components: + - type: Transform + pos: -58.5,13.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 5442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,31.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 5443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,24.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 4482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,62.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 5476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,32.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 5477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,32.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 5422 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 5464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,70.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 5478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,24.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 764 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 15969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-0.5 + parent: 2 + - uid: 15971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,72.5 + parent: 2 + - uid: 15972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,40.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 1187 + components: + - type: Transform + pos: -71.5,44.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 5480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,15.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 5463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,62.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 5433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,38.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 531 + components: + - type: Transform + pos: -34.5,68.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 5452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,48.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 4483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,62.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 5481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,58.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 5441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,30.5 + parent: 2 +- proto: DefaultStationBeaconMedical + entities: + - uid: 5472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,24.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 5440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,40.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 5434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,48.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 5444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 5460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,72.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 5454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,43.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 5456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,37.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 5453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,30.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 5459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,63.5 + parent: 2 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 5435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,45.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 5436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,68.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,65.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 2095 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 5447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 5470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,28.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + pos: -78.5,16.5 + parent: 2 + - uid: 14698 + components: + - type: Transform + pos: -66.5,76.5 + parent: 2 +- proto: DefaultStationBeaconSupply + entities: + - uid: 5482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,73.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 5483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,24.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 3462 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 5467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,57.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 1766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,15.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 5461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,73.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 5484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,40.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 2045 + components: + - type: Transform + pos: -22.5,35.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,40.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: -28.5,35.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,61.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,29.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,22.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + pos: -23.5,26.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 16790 + components: + - type: Transform + pos: -46.514275,46.57406 + parent: 2 + - uid: 16791 + components: + - type: Transform + pos: -32.406414,51.581593 + parent: 2 + - uid: 16792 + components: + - type: Transform + pos: -36.522537,63.59507 + parent: 2 + - uid: 16793 + components: + - type: Transform + pos: -1.5525522,66.46035 + parent: 2 + - uid: 16794 + components: + - type: Transform + pos: 6.59581,39.08716 + parent: 2 + - uid: 16795 + components: + - type: Transform + pos: -14.747101,18.545668 + parent: 2 + - uid: 16796 + components: + - type: Transform + pos: -0.093538284,18.590553 + parent: 2 + - uid: 16797 + components: + - type: Transform + pos: -27.548687,24.775618 + parent: 2 +- proto: DiceBag + entities: + - uid: 7427 + components: + - type: Transform + pos: -60.737946,26.542727 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 2024 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 +- proto: DisgustingSweptSoup + entities: + - uid: 7426 + components: + - type: Transform + pos: -55.560196,49.580147 + parent: 2 +- proto: DisposalBend + entities: + - uid: 487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -40.5,71.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,32.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,62.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,43.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,36.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,35.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,17.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,37.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,48.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,56.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,28.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,35.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,41.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,71.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,71.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,54.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,54.5 + parent: 2 + - uid: 9493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,53.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,41.5 + parent: 2 + - uid: 9735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,69.5 + parent: 2 + - uid: 9737 + components: + - type: Transform + pos: -38.5,69.5 + parent: 2 + - uid: 9751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,56.5 + parent: 2 + - uid: 9795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,54.5 + parent: 2 + - uid: 9797 + components: + - type: Transform + pos: -1.5,54.5 + parent: 2 + - uid: 9801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,53.5 + parent: 2 + - uid: 9820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,67.5 + parent: 2 + - uid: 9828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,62.5 + parent: 2 + - uid: 9843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,29.5 + parent: 2 + - uid: 9849 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,69.5 + parent: 2 + - uid: 9867 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,44.5 + parent: 2 + - uid: 9962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,43.5 + parent: 2 + - uid: 9995 + components: + - type: Transform + pos: -55.5,49.5 + parent: 2 + - uid: 10063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,70.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,69.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,36.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,45.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 10184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - uid: 10223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,19.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,32.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,32.5 + parent: 2 + - uid: 10264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,12.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 10305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,44.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + pos: -28.5,45.5 + parent: 2 + - uid: 10326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,24.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,67.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,72.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,72.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,37.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,72.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,68.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,68.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 16034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,13.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 2365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,45.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,62.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,62.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,19.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,35.5 + parent: 2 + - uid: 9677 + components: + - type: Transform + pos: -31.5,44.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,57.5 + parent: 2 + - uid: 9779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,57.5 + parent: 2 + - uid: 9830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,62.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,36.5 + parent: 2 + - uid: 9873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,49.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,35.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,42.5 + parent: 2 + - uid: 10103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,69.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,35.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,24.5 + parent: 2 + - uid: 10224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,20.5 + parent: 2 + - uid: 10505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,54.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 2918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,24.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,57.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,35.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,70.5 + parent: 2 + - uid: 9743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,63.5 + parent: 2 + - uid: 9802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,53.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - uid: 9988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,48.5 + parent: 2 + - uid: 10023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,20.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,36.5 + parent: 2 + - uid: 10160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,35.5 + parent: 2 + - uid: 10213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,19.5 + parent: 2 + - uid: 10222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,20.5 + parent: 2 + - uid: 10261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,20.5 + parent: 2 + - uid: 10298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,35.5 + parent: 2 + - uid: 720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,18.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,35.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,54.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,36.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,33.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,54.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,36.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,36.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,35.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,12.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,54.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,62.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,63.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,36.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,36.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,36.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,36.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,54.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,62.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,54.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,54.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,35.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,29.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,36.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,36.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,33.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: 0.5,68.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,33.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,32.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,31.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,57.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: 14.5,72.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,54.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: -44.5,53.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,12.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,71.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,71.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,71.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,71.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,71.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,71.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,54.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,71.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 8770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,71.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,70.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,19.5 + parent: 2 + - uid: 9171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,54.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,43.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,42.5 + parent: 2 + - uid: 9715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,18.5 + parent: 2 + - uid: 9736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,69.5 + parent: 2 + - uid: 9738 + components: + - type: Transform + pos: -38.5,68.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + pos: -38.5,67.5 + parent: 2 + - uid: 9740 + components: + - type: Transform + pos: -38.5,66.5 + parent: 2 + - uid: 9741 + components: + - type: Transform + pos: -38.5,65.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + pos: -38.5,64.5 + parent: 2 + - uid: 9745 + components: + - type: Transform + pos: -38.5,61.5 + parent: 2 + - uid: 9746 + components: + - type: Transform + pos: -38.5,60.5 + parent: 2 + - uid: 9747 + components: + - type: Transform + pos: -38.5,59.5 + parent: 2 + - uid: 9748 + components: + - type: Transform + pos: -38.5,58.5 + parent: 2 + - uid: 9752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,57.5 + parent: 2 + - uid: 9753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,57.5 + parent: 2 + - uid: 9754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,57.5 + parent: 2 + - uid: 9755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,20.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,57.5 + parent: 2 + - uid: 9757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,57.5 + parent: 2 + - uid: 9760 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 9762 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - uid: 9763 + components: + - type: Transform + pos: -9.5,40.5 + parent: 2 + - uid: 9764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,57.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,57.5 + parent: 2 + - uid: 9767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,57.5 + parent: 2 + - uid: 9768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,57.5 + parent: 2 + - uid: 9769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,57.5 + parent: 2 + - uid: 9770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,57.5 + parent: 2 + - uid: 9771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,57.5 + parent: 2 + - uid: 9772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,57.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,57.5 + parent: 2 + - uid: 9774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,57.5 + parent: 2 + - uid: 9775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,57.5 + parent: 2 + - uid: 9776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,57.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,57.5 + parent: 2 + - uid: 9780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,57.5 + parent: 2 + - uid: 9781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,57.5 + parent: 2 + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,57.5 + parent: 2 + - uid: 9783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,57.5 + parent: 2 + - uid: 9784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,57.5 + parent: 2 + - uid: 9785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,57.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,57.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,57.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,57.5 + parent: 2 + - uid: 9789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,57.5 + parent: 2 + - uid: 9790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,57.5 + parent: 2 + - uid: 9792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,58.5 + parent: 2 + - uid: 9793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,56.5 + parent: 2 + - uid: 9794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,55.5 + parent: 2 + - uid: 9796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,54.5 + parent: 2 + - uid: 9798 + components: + - type: Transform + pos: -8.5,31.5 + parent: 2 + - uid: 9799 + components: + - type: Transform + pos: -8.5,29.5 + parent: 2 + - uid: 9803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,53.5 + parent: 2 + - uid: 9804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,53.5 + parent: 2 + - uid: 9805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,52.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + pos: 5.5,69.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 9821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,67.5 + parent: 2 + - uid: 9822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,67.5 + parent: 2 + - uid: 9823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,67.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,66.5 + parent: 2 + - uid: 9825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,65.5 + parent: 2 + - uid: 9826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,64.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,63.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,62.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,62.5 + parent: 2 + - uid: 9833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,62.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,62.5 + parent: 2 + - uid: 9836 + components: + - type: Transform + pos: -4.5,59.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + pos: -4.5,60.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + pos: -4.5,61.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + pos: -28.5,28.5 + parent: 2 + - uid: 9842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,29.5 + parent: 2 + - uid: 9844 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 9846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,20.5 + parent: 2 + - uid: 9847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,17.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,17.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,69.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,69.5 + parent: 2 + - uid: 9854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,69.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,34.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,35.5 + parent: 2 + - uid: 9859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,35.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,35.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,35.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,36.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,36.5 + parent: 2 + - uid: 9865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,36.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - uid: 9875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,36.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,36.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 9879 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 9881 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: 1.5,45.5 + parent: 2 + - uid: 9886 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - uid: 9888 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - uid: 9889 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 9890 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - uid: 9891 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 9894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,31.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - uid: 9941 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 9942 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 9944 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 9945 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 9947 + components: + - type: Transform + pos: -39.5,43.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 2 + - uid: 9959 + components: + - type: Transform + pos: -69.5,40.5 + parent: 2 + - uid: 9960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,17.5 + parent: 2 + - uid: 9964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 2 + - uid: 9965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + pos: -55.5,48.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,21.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,23.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 2 + - uid: 9974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,48.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,43.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,44.5 + parent: 2 + - uid: 9980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,45.5 + parent: 2 + - uid: 9981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,46.5 + parent: 2 + - uid: 9982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,47.5 + parent: 2 + - uid: 9983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,48.5 + parent: 2 + - uid: 9985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,46.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,48.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,49.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,47.5 + parent: 2 + - uid: 9996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,49.5 + parent: 2 + - uid: 9997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,51.5 + parent: 2 + - uid: 9998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,52.5 + parent: 2 + - uid: 10001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,54.5 + parent: 2 + - uid: 10002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,54.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,54.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,54.5 + parent: 2 + - uid: 10019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,55.5 + parent: 2 + - uid: 10020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,52.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,51.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,50.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + pos: -9.5,38.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 10027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,36.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,36.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,36.5 + parent: 2 + - uid: 10030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,36.5 + parent: 2 + - uid: 10031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,36.5 + parent: 2 + - uid: 10032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,36.5 + parent: 2 + - uid: 10033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,36.5 + parent: 2 + - uid: 10034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,36.5 + parent: 2 + - uid: 10035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,36.5 + parent: 2 + - uid: 10036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,36.5 + parent: 2 + - uid: 10037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,36.5 + parent: 2 + - uid: 10038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,36.5 + parent: 2 + - uid: 10039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,36.5 + parent: 2 + - uid: 10040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,36.5 + parent: 2 + - uid: 10041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,36.5 + parent: 2 + - uid: 10042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,36.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,36.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,36.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,36.5 + parent: 2 + - uid: 10046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,36.5 + parent: 2 + - uid: 10047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,36.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,36.5 + parent: 2 + - uid: 10051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,37.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,39.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,40.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,41.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,43.5 + parent: 2 + - uid: 10057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,45.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,46.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,38.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,47.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,44.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,69.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,69.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,69.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,69.5 + parent: 2 + - uid: 10069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,69.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,69.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,69.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,69.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,69.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,69.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,69.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,69.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,69.5 + parent: 2 + - uid: 10078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,69.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,69.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,69.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,69.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,69.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,69.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,69.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,69.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,69.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,69.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,69.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,69.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,69.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,69.5 + parent: 2 + - uid: 10092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,69.5 + parent: 2 + - uid: 10093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,69.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,68.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,66.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,65.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,64.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,63.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,62.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,61.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,67.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,60.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,35.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,35.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,35.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,35.5 + parent: 2 + - uid: 10122 + components: + - type: Transform + pos: -69.5,39.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + pos: -69.5,37.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,19.5 + parent: 2 + - uid: 10127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,35.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,35.5 + parent: 2 + - uid: 10129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - uid: 10131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,29.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,35.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,36.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,38.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,37.5 + parent: 2 + - uid: 10139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,39.5 + parent: 2 + - uid: 10140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,40.5 + parent: 2 + - uid: 10141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,41.5 + parent: 2 + - uid: 10142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,42.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,43.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,29.5 + parent: 2 + - uid: 10146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,46.5 + parent: 2 + - uid: 10158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,62.5 + parent: 2 + - uid: 10161 + components: + - type: Transform + pos: -69.5,38.5 + parent: 2 + - uid: 10164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,44.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,44.5 + parent: 2 + - uid: 10166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,62.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,44.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,44.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,44.5 + parent: 2 + - uid: 10171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,34.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,35.5 + parent: 2 + - uid: 10174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,35.5 + parent: 2 + - uid: 10175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,35.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,35.5 + parent: 2 + - uid: 10177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,35.5 + parent: 2 + - uid: 10178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,35.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,35.5 + parent: 2 + - uid: 10180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,35.5 + parent: 2 + - uid: 10181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - uid: 10183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,36.5 + parent: 2 + - uid: 10185 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: -9.5,39.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,69.5 + parent: 2 + - uid: 10193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,24.5 + parent: 2 + - uid: 10194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,24.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,25.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,26.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,27.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,29.5 + parent: 2 + - uid: 10200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,30.5 + parent: 2 + - uid: 10201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,31.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,32.5 + parent: 2 + - uid: 10203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,28.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,19.5 + parent: 2 + - uid: 10207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,19.5 + parent: 2 + - uid: 10208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,19.5 + parent: 2 + - uid: 10209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,19.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,19.5 + parent: 2 + - uid: 10211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,19.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,19.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,19.5 + parent: 2 + - uid: 10215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,19.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,19.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,19.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,19.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,19.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,19.5 + parent: 2 + - uid: 10225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,21.5 + parent: 2 + - uid: 10226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,23.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,22.5 + parent: 2 + - uid: 10228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,32.5 + parent: 2 + - uid: 10233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,32.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + pos: -52.5,22.5 + parent: 2 + - uid: 10235 + components: + - type: Transform + pos: -52.5,21.5 + parent: 2 + - uid: 10236 + components: + - type: Transform + pos: -52.5,20.5 + parent: 2 + - uid: 10237 + components: + - type: Transform + pos: -52.5,24.5 + parent: 2 + - uid: 10238 + components: + - type: Transform + pos: -52.5,31.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 10240 + components: + - type: Transform + pos: -52.5,28.5 + parent: 2 + - uid: 10241 + components: + - type: Transform + pos: -52.5,30.5 + parent: 2 + - uid: 10242 + components: + - type: Transform + pos: -52.5,27.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + pos: -52.5,26.5 + parent: 2 + - uid: 10244 + components: + - type: Transform + pos: -52.5,23.5 + parent: 2 + - uid: 10245 + components: + - type: Transform + pos: -52.5,25.5 + parent: 2 + - uid: 10247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,20.5 + parent: 2 + - uid: 10248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,20.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,20.5 + parent: 2 + - uid: 10250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,20.5 + parent: 2 + - uid: 10251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,20.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,20.5 + parent: 2 + - uid: 10253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,20.5 + parent: 2 + - uid: 10254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,20.5 + parent: 2 + - uid: 10255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,20.5 + parent: 2 + - uid: 10257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,20.5 + parent: 2 + - uid: 10258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,20.5 + parent: 2 + - uid: 10259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,44.5 + parent: 2 + - uid: 10260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,20.5 + parent: 2 + - uid: 10265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,13.5 + parent: 2 + - uid: 10266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,15.5 + parent: 2 + - uid: 10267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,16.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,44.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,44.5 + parent: 2 + - uid: 10271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,44.5 + parent: 2 + - uid: 10273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,19.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,16.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,8.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,10.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,11.5 + parent: 2 + - uid: 10280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,12.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,9.5 + parent: 2 + - uid: 10282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,13.5 + parent: 2 + - uid: 10283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 2 + - uid: 10287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,20.5 + parent: 2 + - uid: 10288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,20.5 + parent: 2 + - uid: 10289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,20.5 + parent: 2 + - uid: 10290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,20.5 + parent: 2 + - uid: 10291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,20.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,20.5 + parent: 2 + - uid: 10293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 2 + - uid: 10294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,20.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,44.5 + parent: 2 + - uid: 10300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,44.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,44.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 + - uid: 10303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,44.5 + parent: 2 + - uid: 10304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,44.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,69.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,69.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,63.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,63.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,63.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,63.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,63.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,63.5 + parent: 2 + - uid: 10317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,63.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,63.5 + parent: 2 + - uid: 10319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,63.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,63.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,63.5 + parent: 2 + - uid: 10322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,45.5 + parent: 2 + - uid: 10327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,24.5 + parent: 2 + - uid: 10328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,24.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,24.5 + parent: 2 + - uid: 10330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,24.5 + parent: 2 + - uid: 10331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,24.5 + parent: 2 + - uid: 10332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,24.5 + parent: 2 + - uid: 10333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,24.5 + parent: 2 + - uid: 10334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,24.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,24.5 + parent: 2 + - uid: 10336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,24.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,24.5 + parent: 2 + - uid: 10338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,24.5 + parent: 2 + - uid: 10341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,29.5 + parent: 2 + - uid: 10342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,28.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,28.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,28.5 + parent: 2 + - uid: 10347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,29.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,36.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: -3.5,77.5 + parent: 2 + - uid: 10381 + components: + - type: Transform + pos: -3.5,76.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + pos: -3.5,74.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + pos: -3.5,75.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + pos: -6.5,63.5 + parent: 2 + - uid: 10386 + components: + - type: Transform + pos: -6.5,65.5 + parent: 2 + - uid: 10387 + components: + - type: Transform + pos: -6.5,66.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + pos: -6.5,67.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + pos: -6.5,69.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: -6.5,64.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,72.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,72.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,73.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,62.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,62.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,62.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,57.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,31.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,31.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + pos: 18.5,40.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: 18.5,41.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,36.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,37.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,72.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,72.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: -19.5,71.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: -19.5,70.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: -19.5,69.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,68.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,68.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,68.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,68.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,68.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,68.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,68.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,68.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,68.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,68.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,68.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + pos: -31.5,65.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: -31.5,63.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: -31.5,66.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,53.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + pos: 18.5,42.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + pos: -57.5,50.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + pos: -6.5,71.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,14.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,54.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,54.5 + parent: 2 + - uid: 11478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,54.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,12.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,54.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + pos: -58.5,18.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + pos: -58.5,17.5 + parent: 2 + - uid: 16026 + components: + - type: Transform + pos: -58.5,16.5 + parent: 2 + - uid: 16027 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + pos: -58.5,15.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,13.5 + parent: 2 + - uid: 16030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,13.5 + parent: 2 + - uid: 16032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,13.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 2703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,13.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,62.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: -47.5,49.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,29.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: 0.5,69.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: 14.5,73.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,41.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,56.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,71.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,42.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,43.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,32.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,17.5 + parent: 2 + - uid: 9778 + components: + - type: Transform + pos: -16.5,58.5 + parent: 2 + - uid: 9800 + components: + - type: Transform + pos: 2.5,54.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,35.5 + parent: 2 + - uid: 9952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,41.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,45.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + pos: -30.5,47.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,59.5 + parent: 2 + - uid: 10111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,42.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,43.5 + parent: 2 + - uid: 10191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,23.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,19.5 + parent: 2 + - uid: 10229 + components: + - type: Transform + pos: -49.5,33.5 + parent: 2 + - uid: 10262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,19.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,7.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,15.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,63.5 + parent: 2 + - uid: 10345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,28.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 18.5,43.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,72.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,12.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 711 + components: + - type: Transform + pos: -51.5,63.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: -26.5,12.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: 0.5,69.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + pos: -30.5,62.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: -68.5,41.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: -39.5,42.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: -16.5,58.5 + parent: 2 + - uid: 9225 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + pos: 2.5,54.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: -55.5,45.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + pos: -59.5,43.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + pos: -49.5,33.5 + parent: 2 + - uid: 9714 + components: + - type: Transform + pos: -61.5,19.5 + parent: 2 + - uid: 9717 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 9718 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 9722 + components: + - type: Transform + pos: -30.5,47.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: -8.5,43.5 + parent: 2 + - uid: 9727 + components: + - type: Transform + pos: -71.5,59.5 + parent: 2 + - uid: 9728 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 9729 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 9730 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 9732 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 9733 + components: + - type: Transform + pos: -43.5,42.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 10182 + components: + - type: Transform + pos: -21.5,29.5 + parent: 2 + - uid: 10296 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 10365 + components: + - type: Transform + pos: -28.5,56.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: 18.5,43.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: -47.5,49.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + pos: 14.5,73.5 + parent: 2 + - uid: 16023 + components: + - type: Transform + pos: -62.5,13.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 2267 + components: + - type: Transform + pos: 1.5,67.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,35.5 + parent: 2 + - uid: 9791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,57.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + pos: -4.5,62.5 + parent: 2 +- proto: DogBed + entities: + - uid: 1436 + components: + - type: Transform + pos: -33.5,64.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: -20.5,39.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: -10.5,68.5 + parent: 2 + - uid: 9724 + components: + - type: Transform + pos: 1.5,75.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 6970 + components: + - type: Transform + pos: -8.5,69.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 6324 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 2166 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 4727 + components: + - type: Transform + pos: -50.5,67.5 + parent: 2 + - uid: 10515 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 + - uid: 14157 + components: + - type: Transform + pos: -47.5,73.5 + parent: 2 + - uid: 14863 + components: + - type: Transform + pos: -54.5,24.5 + parent: 2 + - uid: 14864 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 14865 + components: + - type: Transform + pos: -49.5,26.5 + parent: 2 + - uid: 14866 + components: + - type: Transform + pos: -54.5,28.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 8444 + components: + - type: Transform + pos: -31.5,69.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 6692 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 15826 + components: + - type: Transform + pos: 0.5,76.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 5869 + components: + - type: Transform + pos: 22.5,46.5 + parent: 2 +- proto: DrinkChampagneBottleFull + entities: + - uid: 6149 + components: + - type: Transform + pos: -12.402811,72.57427 + parent: 2 +- proto: DrinkChangelingStingCan + entities: + - uid: 5466 + components: + - type: Transform + pos: -51.552223,57.69232 + parent: 2 +- proto: DrinkColaBottleFull + entities: + - uid: 7425 + components: + - type: Transform + pos: -61.29062,25.625534 + parent: 2 +- proto: DrinkColaCan + entities: + - uid: 12755 + components: + - type: Transform + pos: -34.350624,62.76488 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: -34.319374,62.780506 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 15608 + components: + - type: Transform + pos: 22.328705,-9.970287 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: -77.67033,-0.31915522 + parent: 2 + - uid: 15700 + components: + - type: Transform + pos: -77.2797,-0.49103022 + parent: 2 + - uid: 16161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.7485,4.696542 + parent: 2 + - uid: 16162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.54537,3.743417 + parent: 2 + - uid: 16597 + components: + - type: Transform + pos: 22.734955,-10.095287 + parent: 2 + - uid: 16598 + components: + - type: Transform + pos: 22.40683,-10.423412 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 1575 + components: + - type: Transform + pos: -41.931023,54.66215 + parent: 2 + - uid: 6148 + components: + - type: Transform + pos: -11.387186,72.57427 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 8761 + components: + - type: Transform + pos: -5.583191,24.59217 + parent: 2 +- proto: DrinkIceCreamGlass + entities: + - uid: 3590 + components: + - type: MetaData + desc: Its got the extra whip cream. Yummers. + name: Space Shack Milkshake + - type: Transform + pos: -55.515892,6.667796 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 13781 + components: + - type: Transform + pos: 26.519358,48.558224 + parent: 2 +- proto: DrinkNukieCan + entities: + - uid: 12869 + components: + - type: Transform + pos: 25.80153,22.762358 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 4635 + components: + - type: Transform + pos: -63.515747,39.574493 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 217 + components: + - type: Transform + pos: -7.1582937,10.990683 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: -7.1426687,10.568808 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: -8.048919,10.709433 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 1611 + components: + - type: Transform + pos: -41.274773,54.6934 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: -41.540398,54.5059 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 6525 + components: + - type: Transform + pos: -7.5489187,10.865683 + parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 13357 + components: + - type: Transform + pos: -62.651497,10.798875 + parent: 2 +- proto: DrinkWineGlass + entities: + - uid: 13557 + components: + - type: Transform + pos: -62.276497,10.40825 + parent: 2 + - uid: 13585 + components: + - type: Transform + pos: -62.745247,10.1895 + parent: 2 + - uid: 13669 + components: + - type: Transform + pos: -62.38587,9.986375 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 1998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,14.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,49.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,49.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,54.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,52.5 + parent: 2 + - uid: 12984 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + pos: -35.5,58.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,52.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 13529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,19.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,19.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,19.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,22.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,25.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,22.5 + parent: 2 + - uid: 13575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,32.5 + parent: 2 + - uid: 13576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,38.5 + parent: 2 + - uid: 13577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,46.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,38.5 + parent: 2 + - uid: 13581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,62.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,58.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,54.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,68.5 + parent: 2 + - uid: 13586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,61.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + pos: -47.5,63.5 + parent: 2 + - uid: 13588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,52.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,61.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,60.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,67.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,37.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,27.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,23.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,15.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,6.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,38.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,47.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,43.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,66.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,72.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,15.5 + parent: 2 +- proto: EmitterFlatpack + entities: + - uid: 959 + components: + - type: Transform + pos: -1.7224569,-1.9108117 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -1.2693319,-1.9264529 + parent: 2 + - uid: 3134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.68869,0.6273031 + parent: 2 + - uid: 3136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.290253,0.43980312 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: -1.6577296,-2.3674276 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: -1.2358546,-2.3674276 + parent: 2 + - uid: 16757 + components: + - type: Transform + pos: -16.639637,0.34823167 + parent: 2 + - uid: 16758 + components: + - type: Transform + pos: -16.249012,0.6607317 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 630 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 467 + components: + - type: Transform + pos: 3.5,75.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: -34.5,39.5 + parent: 2 + - type: FaxMachine + name: HOS Office + - uid: 3842 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - type: FaxMachine + name: QM's Office + - uid: 4691 + components: + - type: Transform + pos: -42.5,67.5 + parent: 2 + - type: FaxMachine + name: Reporter's Office + - uid: 5159 + components: + - type: Transform + pos: -39.5,44.5 + parent: 2 + - type: FaxMachine + name: Security + - uid: 5633 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - type: FaxMachine + name: RD's Office + - uid: 6167 + components: + - type: Transform + pos: -66.5,57.5 + parent: 2 + - type: FaxMachine + name: Library + - uid: 6618 + components: + - type: Transform + pos: -12.5,70.5 + parent: 2 + - type: FaxMachine + name: Captain's Office + - uid: 6677 + components: + - type: Transform + pos: -23.5,75.5 + parent: 2 + - type: FaxMachine + name: Bridge + - uid: 6700 + components: + - type: Transform + pos: -30.5,61.5 + parent: 2 + - type: FaxMachine + name: HOP's Office + - uid: 7154 + components: + - type: Transform + pos: -10.5,64.5 + parent: 2 + - type: FaxMachine + name: Law Office + - uid: 10358 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - type: FaxMachine + name: Chaplain's Office + - uid: 14022 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - type: FaxMachine + name: Engineering + - uid: 15760 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - type: FaxMachine + name: CMO's Office + - uid: 15762 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - type: FaxMachine + name: CE's Office +- proto: filingCabinetDrawerRandom + entities: + - uid: 4741 + components: + - type: Transform + pos: -44.5,67.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 10832 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 5826 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: -30.5,60.5 + parent: 2 +- proto: FireAxeCabinetFilled + entities: + - uid: 1049 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,71.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 6006 + components: + - type: Transform + pos: 7.5073805,61.212948 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 7.1480055,61.166073 + parent: 2 +- proto: Firelock + entities: + - uid: 7307 + components: + - type: Transform + pos: -72.5,6.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: -79.5,1.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11531 + - 11534 +- proto: FirelockGlass + entities: + - uid: 122 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11638 + - uid: 131 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11638 + - uid: 181 + components: + - type: Transform + pos: -1.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - uid: 182 + components: + - type: Transform + pos: -1.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - uid: 183 + components: + - type: Transform + pos: -1.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - uid: 191 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 936 + - 11052 + - uid: 326 + components: + - type: Transform + pos: -55.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - 10471 + - uid: 342 + components: + - type: Transform + pos: -55.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - 10471 + - uid: 345 + components: + - type: Transform + pos: -57.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10471 + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10350 + - 11508 + - 10270 + - 10522 + - uid: 438 + components: + - type: Transform + pos: -38.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15346 + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6600 + - 9991 + - uid: 480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11534 + - 11539 + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - 11532 + - uid: 601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,26.5 + parent: 2 + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - uid: 769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - 11562 + - uid: 955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - 11532 + - uid: 1140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11535 + - 11534 + - uid: 1151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11535 + - 11534 + - uid: 1159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11628 + - uid: 1160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 10799 + - uid: 1164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11561 + - 11623 + - uid: 1166 + components: + - type: Transform + pos: -55.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11580 + - 11582 + - uid: 1169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5658 + - 15346 + - uid: 1171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10467 + - 15346 + - uid: 1196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 936 + - 11052 + - uid: 1329 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11580 + - 11582 + - uid: 1356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 5853 + - uid: 1420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6838 + - 10458 + - uid: 1421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 10799 + - uid: 1433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11584 + - uid: 1441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13611 + - uid: 1452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10465 + - 10466 + - uid: 1453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 11442 + - 13611 + - uid: 1587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11443 + - 11444 + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3024 + - 11474 + - uid: 1679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11551 + - 11561 + - uid: 1736 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6600 + - uid: 1801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 13611 + - 5941 + - uid: 1907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11496 + - 11495 + - uid: 1951 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11651 + - uid: 1957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 431 + - 10457 + - uid: 1959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 10457 + - uid: 1976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11580 + - 11581 + - uid: 1981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 9991 + - uid: 1982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 9991 + - uid: 1983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - uid: 1984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 10465 + - uid: 2014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 10475 + - 15865 + - uid: 2054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 10799 + - uid: 2097 + components: + - type: Transform + pos: -43.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 15346 + - uid: 2105 + components: + - type: Transform + pos: -44.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 15346 + - uid: 2107 + components: + - type: Transform + pos: -45.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 15346 + - uid: 2214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11532 + - 11531 + - uid: 2307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,34.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10456 + - uid: 2443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10475 + - 15865 + - uid: 2532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - uid: 2535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10476 + - 10521 + - uid: 2566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10456 + - uid: 2645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 158 + - uid: 2654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 13611 + - uid: 2775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11500 + - 11498 + - uid: 2776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11499 + - uid: 2778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11495 + - 11499 + - uid: 2825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11499 + - 11500 + - uid: 2868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11495 + - 11497 + - uid: 2905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11551 + - uid: 2975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11532 + - 11548 + - uid: 3009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11532 + - 11548 + - uid: 3020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5700 + - uid: 3051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11561 + - 11623 + - uid: 3132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - uid: 3133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11551 + - 11638 + - uid: 3385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11621 + - 11052 + - uid: 3387 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11623 + - 11052 + - uid: 3394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - uid: 3396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11583 + - uid: 3512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10522 + - 10453 + - uid: 3523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6838 + - 10458 + - 10462 + - uid: 3562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11638 + - 13598 + - 11636 + - uid: 3638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11561 + - 13598 + - 11636 + - uid: 3709 + components: + - type: Transform + pos: -48.5,3.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: -66.5,20.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: -64.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11582 + - 11580 + - uid: 3975 + components: + - type: Transform + pos: -69.5,13.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11651 + - uid: 4222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 148 + - uid: 4223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,42.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - 10522 + - uid: 4352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10477 + - 5700 + - uid: 4357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - 11495 + - uid: 4368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11619 + - 11052 + - uid: 4479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11584 + - 11580 + - uid: 4480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11584 + - 11580 + - uid: 4557 + components: + - type: Transform + pos: -46.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 15346 + - uid: 4563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11636 + - uid: 4608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10477 + - 5700 + - uid: 4634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10464 + - 10475 + - 15865 + - uid: 4650 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - uid: 4674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - uid: 4763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 13611 + - uid: 4822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 2728 + - uid: 4823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11620 + - 936 + - 11052 + - uid: 4914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11535 + - uid: 4950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5700 + - 15479 + - uid: 4953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11580 + - 11581 + - uid: 4966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11583 + - 11582 + - uid: 5033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - 11614 + - uid: 5034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 5603 + - uid: 5036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 5603 + - uid: 5152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - uid: 5155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13611 + - uid: 5317 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: -64.5,70.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2728 + - uid: 5659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 11440 + - 5941 + - uid: 5682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - uid: 5683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - uid: 5713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 2728 + - uid: 5720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 13611 + - 5941 + - uid: 5721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 5853 + - uid: 5787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11535 + - 11536 + - uid: 5908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 13611 + - 5941 + - uid: 5937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 13611 + - uid: 6108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 13611 + - uid: 6173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11534 + - 11531 + - uid: 6174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - uid: 6175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11535 + - 4374 + - uid: 6176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11537 + - 11534 + - uid: 6177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 13611 + - uid: 6178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4374 + - 11534 + - uid: 6179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 13611 + - uid: 6180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 13611 + - uid: 6181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13611 + - uid: 6182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10457 + - 10462 + - uid: 6183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 9991 + - uid: 6184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11623 + - uid: 6197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - 148 + - uid: 6198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - 148 + - uid: 6199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - 148 + - uid: 6200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 148 + - 11561 + - uid: 6201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 148 + - 11561 + - uid: 6202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 148 + - 11561 + - uid: 6203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 11474 + - uid: 6204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 11474 + - uid: 6205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 11474 + - uid: 6206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11562 + - uid: 6207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - 11561 + - uid: 6208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - 11561 + - uid: 6209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - 11561 + - uid: 6210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11562 + - uid: 6211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11562 + - uid: 6212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11548 + - uid: 6213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11548 + - uid: 6214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11548 + - uid: 6215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 11507 + - uid: 6216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 11507 + - uid: 6217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - 11507 + - uid: 6219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6600 + - 15346 + - uid: 6221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11614 + - uid: 6222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6600 + - 15346 + - uid: 6225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11614 + - 11615 + - uid: 6226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11615 + - 11052 + - uid: 6227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - 10453 + - uid: 6228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - 10453 + - uid: 6229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10525 + - 10521 + - uid: 6230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,69.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 15346 + - uid: 6234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 15346 + - uid: 6237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 15346 + - uid: 6238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 15346 + - uid: 6239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 15346 + - uid: 6241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 10458 + - uid: 6244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 10458 + - uid: 6245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 10458 + - uid: 6246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 10458 + - uid: 6248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 10466 + - uid: 6249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 10466 + - uid: 6250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - 10466 + - uid: 6252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10466 + - 10463 + - uid: 6253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10466 + - 10463 + - uid: 6254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10466 + - 10463 + - uid: 6256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 10464 + - uid: 6257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 10464 + - uid: 6258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 10464 + - uid: 6259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 10464 + - uid: 6262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 10464 + - uid: 6264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 10464 + - uid: 6265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 10464 + - uid: 6267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6231 + - 10462 + - uid: 6268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 10457 + - uid: 6269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - 10457 + - uid: 6270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10457 + - 10462 + - uid: 6271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10457 + - 10462 + - uid: 6273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - 11427 + - uid: 6275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - 9991 + - uid: 6276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - 6600 + - uid: 6277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 6278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 6279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 6280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 6281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,49.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 6283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 6284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 6285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 6286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - 6600 + - uid: 6287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11581 + - uid: 6288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - 11581 + - uid: 6294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,11.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11508 + - uid: 6298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11508 + - uid: 6300 + components: + - type: Transform + pos: -73.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 10350 + - uid: 6301 + components: + - type: Transform + pos: -72.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 10350 + - uid: 6303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11508 + - 10350 + - uid: 6304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11508 + - 10350 + - uid: 6307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10520 + - 10524 + - uid: 6308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10520 + - 10524 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - 11495 + - uid: 6312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - 11495 + - uid: 6313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - 11495 + - uid: 6314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11495 + - uid: 6315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - 11495 + - uid: 6316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,22.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,47.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,48.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - 6600 + - uid: 6967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6600 + - 9991 + - uid: 6971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11561 + - 11623 + - uid: 6978 + components: + - type: Transform + pos: -27.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - 11537 + - uid: 6979 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - 11537 + - uid: 7172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11561 + - 13598 + - 11636 + - uid: 7255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11561 + - 13598 + - 11636 + - uid: 7305 + components: + - type: Transform + pos: -76.5,15.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: -57.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - uid: 7310 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + pos: -56.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - uid: 7312 + components: + - type: Transform + pos: -58.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - uid: 7313 + components: + - type: Transform + pos: -50.5,18.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + pos: -63.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - uid: 7317 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - 158 + - uid: 8251 + components: + - type: Transform + pos: -54.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9991 + - uid: 9688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,20.5 + parent: 2 + - uid: 9750 + components: + - type: Transform + pos: -82.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 5603 + - uid: 10003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - 9991 + - uid: 10468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11495 + - 11500 + - uid: 10469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11495 + - 11500 + - uid: 10470 + components: + - type: Transform + pos: -36.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 158 + - 15346 + - uid: 10481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,87.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5595 + - uid: 10484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11052 + - uid: 10485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11052 + - uid: 10494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,87.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5595 + - uid: 10504 + components: + - type: Transform + pos: -48.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - 9991 + - uid: 10519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,89.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5595 + - uid: 10523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - uid: 10823 + components: + - type: Transform + pos: -46.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - 11427 + - uid: 10824 + components: + - type: Transform + pos: -46.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - 11427 + - uid: 10825 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11531 + - 11548 + - uid: 10826 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11532 + - 11531 + - uid: 10827 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11532 + - 11531 + - uid: 10828 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11532 + - 11531 + - uid: 10978 + components: + - type: Transform + pos: -71.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - 10350 + - uid: 10992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10522 + - uid: 11002 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - 11537 + - uid: 11424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - uid: 11425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - uid: 11430 + components: + - type: Transform + pos: -40.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 5941 + - uid: 11465 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 5853 + - uid: 11466 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - 5853 + - uid: 11480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11497 + - uid: 11481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11497 + - uid: 11544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11531 + - uid: 11576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11583 + - 11584 + - uid: 12590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11052 + - 21 + - uid: 12702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10350 + - uid: 12703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10350 + - uid: 12704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10350 + - uid: 12705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10350 + - uid: 12807 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13598 + - 11052 + - uid: 13028 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - 10457 + - uid: 13029 + components: + - type: Transform + pos: 3.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - 10457 + - uid: 13542 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11551 + - 11638 + - uid: 13579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6600 + - uid: 13945 + components: + - type: Transform + pos: -64.5,69.5 + parent: 2 + - uid: 14038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13598 + - 11636 + - uid: 14162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11508 + - 11507 + - uid: 14394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11508 + - 11507 + - uid: 14397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - uid: 15191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,74.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + pos: -3.5,77.5 + parent: 2 + - uid: 15562 + components: + - type: Transform + pos: -4.5,77.5 + parent: 2 + - uid: 16164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - 16071 + - uid: 16394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10457 + - 15479 + - uid: 16396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 +- proto: Fireplace + entities: + - uid: 6651 + components: + - type: Transform + pos: -32.5,64.5 + parent: 2 + - uid: 14475 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 +- proto: Flash + entities: + - uid: 6125 + components: + - type: Transform + pos: -2.7633898,69.60134 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 5533 + components: + - type: Transform + pos: -44.52346,17.740026 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: -21.261318,3.5464506 + parent: 2 + - type: HandheldLight + toggleActionEntity: 6714 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6714 + - type: ActionsContainer + - uid: 6715 + components: + - type: Transform + pos: -21.636318,3.7964506 + parent: 2 + - type: HandheldLight + toggleActionEntity: 6717 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6717 + - type: ActionsContainer +- proto: FlippoEngravedLighter + entities: + - uid: 4946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.31289,38.79626 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: -2.1807637,39.543873 + parent: 2 +- proto: FloodlightBroken + entities: + - uid: 16586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.4819975,82.144295 + parent: 2 +- proto: FloorDrain + entities: + - uid: 4269 + components: + - type: Transform + pos: -37.5,31.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7433 + components: + - type: Transform + pos: -59.5,31.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7634 + components: + - type: Transform + pos: -48.5,51.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 9696 + components: + - type: Transform + pos: -34.5,67.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloraTreeChristmas01 + entities: + - uid: 6220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.172295,56.391037 + parent: 2 + - uid: 15310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.498674,70.553856 + parent: 2 +- proto: FloraTreeChristmas02 + entities: + - uid: 6793 + components: + - type: Transform + pos: -22.4959,55.647743 + parent: 2 +- proto: FloraTreeConifer + entities: + - uid: 14321 + components: + - type: Transform + pos: -69.45763,0.6511259 + parent: 2 +- proto: FloraTreeSnow + entities: + - uid: 14322 + components: + - type: Transform + pos: -68.17972,-1.0051241 + parent: 2 +- proto: FoamCutlass + entities: + - uid: 1639 + components: + - type: Transform + pos: -68.46592,19.4711 + parent: 2 +- proto: FoodBanana + entities: + - uid: 5850 + components: + - type: Transform + pos: -2.4597583,30.485937 + parent: 2 +- proto: FoodBowlBigTrash + entities: + - uid: 16149 + components: + - type: Transform + pos: -78.533676,9.665675 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 2726 + components: + - type: Transform + pos: -36.5531,49.66268 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: -37.568985,44.778774 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: -37.381485,44.403774 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: -23.386885,72.63357 + parent: 2 +- proto: FoodBoxPizzaFilled + entities: + - uid: 14837 + components: + - type: Transform + pos: 13.352598,67.8449 + parent: 2 +- proto: FoodBreadPlain + entities: + - uid: 13670 + components: + - type: Transform + pos: -62.47962,9.34575 + parent: 2 +- proto: FoodBurgerBacon + entities: + - uid: 2713 + components: + - type: Transform + pos: 3.2655935,77.670845 + parent: 2 +- proto: FoodBurgerChicken + entities: + - uid: 7455 + components: + - type: Transform + pos: -54.52363,48.514103 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: -50.55977,73.54818 + parent: 2 +- proto: FoodBurgerClown + entities: + - uid: 4718 + components: + - type: Transform + pos: -61.46894,67.55505 + parent: 2 +- proto: FoodBurgerCrazy + entities: + - uid: 7454 + components: + - type: Transform + pos: -46.445503,47.732853 + parent: 2 +- proto: FoodBurgerMcrib + entities: + - uid: 7073 + components: + - type: Transform + pos: 0.29068708,11.49038 + parent: 2 +- proto: FoodBurgerMothRoach + entities: + - uid: 6326 + components: + - type: Transform + pos: -21.530424,2.6089506 + parent: 2 +- proto: FoodBurgerRobot + entities: + - uid: 7457 + components: + - type: Transform + pos: 23.56244,30.58716 + parent: 2 +- proto: FoodBurgerSpell + entities: + - uid: 3923 + components: + - type: Transform + pos: -57.581543,51.540028 + parent: 2 +- proto: FoodCakeLemon + entities: + - uid: 6147 + components: + - type: Transform + pos: -12.012186,72.63677 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 4546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,51.5 + parent: 2 +- proto: FoodCartHot + entities: + - uid: 4569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,52.5 + parent: 2 +- proto: FoodMeat + entities: + - uid: 14359 + components: + - type: Transform + parent: 14358 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14360 + components: + - type: Transform + parent: 14358 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14361 + components: + - type: Transform + parent: 14358 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatChickenCooked + entities: + - uid: 14164 + components: + - type: Transform + pos: -50.53392,72.72682 + parent: 2 +- proto: FoodMeatChickenFried + entities: + - uid: 14165 + components: + - type: Transform + pos: -50.294144,72.64193 + parent: 2 +- proto: FoodMeatCooked + entities: + - uid: 5471 + components: + - type: Transform + pos: -52.583473,57.56732 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 4713 + components: + - type: Transform + pos: -60.51777,65.71529 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: -60.072456,65.50435 + parent: 2 +- proto: FoodPizzaArnold + entities: + - uid: 4560 + components: + - type: Transform + pos: -50.56073,47.843792 + parent: 2 +- proto: FoodPlate + entities: + - uid: 4287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.6420264,48.645206 + parent: 2 + - uid: 5107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.1732764,48.34052 + parent: 2 + - uid: 5196 + components: + - type: Transform + pos: -52.5991,57.72357 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: -50.49727,72.89193 + parent: 2 +- proto: FoodPlateTrash + entities: + - uid: 16152 + components: + - type: Transform + pos: -75.47371,12.807511 + parent: 2 +- proto: FoodShakerPepper + entities: + - uid: 5115 + components: + - type: Transform + pos: -60.043602,54.563835 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: -52.0366,57.832947 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: -57.532455,52.29821 + parent: 2 + - uid: 16785 + components: + - type: Transform + pos: -51.37095,61.016937 + parent: 2 +- proto: FoodShakerSalt + entities: + - uid: 4356 + components: + - type: Transform + pos: -51.989723,57.44232 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: -57.32148,52.428528 + parent: 2 + - uid: 12519 + components: + - type: Transform + pos: -59.82148,54.475403 + parent: 2 + - uid: 16780 + components: + - type: Transform + pos: -51.6522,60.954437 + parent: 2 +- proto: FoodSnackRaisins + entities: + - uid: 14177 + components: + - type: Transform + pos: -63.504845,74.52478 + parent: 2 +- proto: FoodSnackSyndi + entities: + - uid: 12870 + components: + - type: Transform + pos: 25.27469,22.639818 + parent: 2 +- proto: FoodTacoShell + entities: + - uid: 4219 + components: + - type: Transform + pos: -50.59677,73.1865 + parent: 2 +- proto: FrenchHornInstrument + entities: + - uid: 4725 + components: + - type: Transform + pos: -53.45894,65.60686 + parent: 2 +- proto: GameMasterCircuitBoard + entities: + - uid: 5329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.627998,88.99103 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 5768 + components: + - type: Transform + pos: 13.445261,32.513874 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 16151 + components: + - type: Transform + pos: -73.5,12.5 + parent: 2 +- proto: GasFilter + entities: + - uid: 4322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,31.5 + parent: 2 +- proto: GasMinerCarbonDioxide + entities: + - uid: 747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 +- proto: GasMinerNitrogenStation + entities: + - uid: 746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 +- proto: GasMinerOxygenStation + entities: + - uid: 745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 5761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,31.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - uid: 776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 2 + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - uid: 778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 2 + - uid: 780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 + - uid: 781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,17.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 2 + - uid: 449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,3.5 + parent: 2 + - uid: 726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 2 + - uid: 750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 2 + - uid: 758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 2 + - uid: 759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - uid: 760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,17.5 + parent: 2 + - uid: 762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,31.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: 7.5,31.5 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 5760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 89 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: -10.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,31.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,31.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8021 + components: + - type: Transform + pos: -18.5,30.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,24.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10502 + components: + - type: Transform + pos: -14.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10609 + components: + - type: Transform + pos: 1.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10626 + components: + - type: Transform + pos: -3.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10708 + components: + - type: Transform + pos: -38.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10715 + components: + - type: Transform + pos: -39.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10776 + components: + - type: Transform + pos: -72.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11009 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11051 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11129 + components: + - type: Transform + pos: -18.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11173 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11262 + components: + - type: Transform + pos: 16.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11339 + components: + - type: Transform + pos: -15.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11348 + components: + - type: Transform + pos: -24.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11368 + components: + - type: Transform + pos: -31.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11378 + components: + - type: Transform + pos: -43.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11463 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11470 + components: + - type: Transform + pos: -1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11483 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11488 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11571 + components: + - type: Transform + pos: -52.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11749 + components: + - type: Transform + pos: 2.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11797 + components: + - type: Transform + pos: -20.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11857 + components: + - type: Transform + pos: -15.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11912 + components: + - type: Transform + pos: -33.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12045 + components: + - type: Transform + pos: -73.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12200 + components: + - type: Transform + pos: -31.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12240 + components: + - type: Transform + pos: -9.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12490 + components: + - type: Transform + pos: 8.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12584 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12750 + components: + - type: Transform + pos: -71.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,30.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway + entities: + - uid: 4282 + components: + - type: Transform + pos: -18.5,32.5 + parent: 2 + - uid: 10575 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10723 + components: + - type: Transform + pos: -45.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11070 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11127 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11128 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11226 + components: + - type: Transform + pos: 2.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11238 + components: + - type: Transform + pos: 9.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11260 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11937 + components: + - type: Transform + pos: 7.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12038 + components: + - type: Transform + pos: -73.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12185 + components: + - type: Transform + pos: -29.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12561 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12570 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 81 + components: + - type: Transform + pos: -14.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 + - uid: 802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - uid: 805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 + - uid: 806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 + - uid: 807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 2 + - uid: 808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 2 + - uid: 810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - uid: 811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - uid: 813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 + - uid: 817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 2 + - uid: 818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - uid: 819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 2 + - uid: 820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + - uid: 822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 + - uid: 823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 2 + - uid: 824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 2 + - uid: 826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 2 + - uid: 827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - uid: 828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 + - uid: 829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - uid: 830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 2 + - uid: 832 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + - uid: 834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 2 + - uid: 835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,18.5 + parent: 2 + - uid: 837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 + - uid: 839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 2 + - uid: 840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - uid: 841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 2 + - uid: 842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 2 + - uid: 843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - uid: 845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 2 + - uid: 846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - uid: 848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2 + - uid: 849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 2 + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 + - uid: 852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - uid: 853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 2 + - uid: 854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 2 + - uid: 855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - uid: 856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - uid: 857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2191 + components: + - type: Transform + pos: -56.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2702 + components: + - type: Transform + pos: -57.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3207 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3231 + components: + - type: Transform + pos: -66.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3392 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3951 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4314 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4330 + components: + - type: Transform + pos: -72.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4442 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4503 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4764 + components: + - type: Transform + pos: -4.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5092 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5093 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5112 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5671 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5681 + components: + - type: Transform + pos: -48.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6272 + components: + - type: Transform + pos: -14.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 7046 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10353 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10413 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10454 + components: + - type: Transform + pos: -67.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10455 + components: + - type: Transform + pos: -67.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10493 + components: + - type: Transform + pos: -14.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10495 + components: + - type: Transform + pos: -14.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10496 + components: + - type: Transform + pos: -14.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10497 + components: + - type: Transform + pos: -14.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10498 + components: + - type: Transform + pos: -14.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10499 + components: + - type: Transform + pos: -14.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10500 + components: + - type: Transform + pos: -14.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10501 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10503 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10506 + components: + - type: Transform + pos: -14.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10510 + components: + - type: Transform + pos: -14.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10529 + components: + - type: Transform + pos: -58.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10572 + components: + - type: Transform + pos: -72.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10576 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10577 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10578 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10581 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10582 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10583 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10585 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10586 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10587 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10588 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10589 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10590 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10594 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10604 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10605 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10606 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10607 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10608 + components: + - type: Transform + pos: 1.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10771 + components: + - type: Transform + pos: -72.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10772 + components: + - type: Transform + pos: -72.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10773 + components: + - type: Transform + pos: -72.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10774 + components: + - type: Transform + pos: -72.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10775 + components: + - type: Transform + pos: -72.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10797 + components: + - type: Transform + pos: -72.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10800 + components: + - type: Transform + pos: -72.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10801 + components: + - type: Transform + pos: -72.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10876 + components: + - type: Transform + pos: -45.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10880 + components: + - type: Transform + pos: -45.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10881 + components: + - type: Transform + pos: -45.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10967 + components: + - type: Transform + pos: -27.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10968 + components: + - type: Transform + pos: -27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,32.5 + parent: 2 + - uid: 10980 + components: + - type: Transform + pos: -21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10981 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10982 + components: + - type: Transform + pos: -21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10983 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10987 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11042 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11043 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11044 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11045 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11046 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11047 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11048 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11059 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11060 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11062 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11063 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11064 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11065 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11066 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11067 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11068 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11069 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11087 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11088 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11089 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11090 + components: + - type: Transform + pos: -15.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11091 + components: + - type: Transform + pos: -31.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11092 + components: + - type: Transform + pos: -31.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11093 + components: + - type: Transform + pos: -31.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11094 + components: + - type: Transform + pos: -31.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11095 + components: + - type: Transform + pos: -31.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11096 + components: + - type: Transform + pos: -31.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11097 + components: + - type: Transform + pos: -31.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11098 + components: + - type: Transform + pos: -27.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11099 + components: + - type: Transform + pos: -27.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11100 + components: + - type: Transform + pos: -27.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11101 + components: + - type: Transform + pos: -27.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11102 + components: + - type: Transform + pos: -27.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11103 + components: + - type: Transform + pos: -27.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11104 + components: + - type: Transform + pos: -9.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11105 + components: + - type: Transform + pos: -9.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11106 + components: + - type: Transform + pos: -9.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11107 + components: + - type: Transform + pos: -9.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11108 + components: + - type: Transform + pos: -9.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11109 + components: + - type: Transform + pos: -9.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11130 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11131 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11132 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11133 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11134 + components: + - type: Transform + pos: -18.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11141 + components: + - type: Transform + pos: -13.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11142 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11143 + components: + - type: Transform + pos: -13.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11144 + components: + - type: Transform + pos: -13.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11151 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11152 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11153 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11163 + components: + - type: Transform + pos: -35.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11164 + components: + - type: Transform + pos: -35.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11165 + components: + - type: Transform + pos: -35.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11166 + components: + - type: Transform + pos: -35.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11195 + components: + - type: Transform + pos: -58.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11196 + components: + - type: Transform + pos: -58.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11198 + components: + - type: Transform + pos: -58.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11259 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11263 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11264 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11265 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11266 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11272 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11273 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11274 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11292 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11293 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11294 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11312 + components: + - type: Transform + pos: 9.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11317 + components: + - type: Transform + pos: -0.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11340 + components: + - type: Transform + pos: -9.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11366 + components: + - type: Transform + pos: -31.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11403 + components: + - type: Transform + pos: -61.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11405 + components: + - type: Transform + pos: -49.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11406 + components: + - type: Transform + pos: -43.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11412 + components: + - type: Transform + pos: -69.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11413 + components: + - type: Transform + pos: -69.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11436 + components: + - type: Transform + pos: -35.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11437 + components: + - type: Transform + pos: -35.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11523 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11558 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11640 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11641 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11642 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11643 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11644 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11656 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11662 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11665 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11666 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11667 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11670 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11688 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11691 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11692 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11693 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11695 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11696 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11697 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11698 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11699 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11700 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11701 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11702 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11703 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11704 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11705 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11728 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11729 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11738 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11740 + components: + - type: Transform + pos: 2.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11741 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11742 + components: + - type: Transform + pos: 2.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11743 + components: + - type: Transform + pos: 2.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11744 + components: + - type: Transform + pos: 2.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11745 + components: + - type: Transform + pos: 2.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11746 + components: + - type: Transform + pos: 2.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11750 + components: + - type: Transform + pos: 2.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11758 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11759 + components: + - type: Transform + pos: -5.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11760 + components: + - type: Transform + pos: -5.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11761 + components: + - type: Transform + pos: -5.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11762 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11764 + components: + - type: Transform + pos: -5.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11765 + components: + - type: Transform + pos: -5.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11767 + components: + - type: Transform + pos: -5.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11769 + components: + - type: Transform + pos: -5.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11787 + components: + - type: Transform + pos: -20.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11788 + components: + - type: Transform + pos: -20.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11789 + components: + - type: Transform + pos: -20.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11790 + components: + - type: Transform + pos: -20.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11791 + components: + - type: Transform + pos: -20.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11792 + components: + - type: Transform + pos: -20.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11793 + components: + - type: Transform + pos: -20.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11794 + components: + - type: Transform + pos: -20.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11796 + components: + - type: Transform + pos: -20.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11829 + components: + - type: Transform + pos: -21.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11832 + components: + - type: Transform + pos: -21.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11833 + components: + - type: Transform + pos: -21.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11834 + components: + - type: Transform + pos: -21.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11835 + components: + - type: Transform + pos: -21.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11836 + components: + - type: Transform + pos: -21.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11858 + components: + - type: Transform + pos: -16.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11859 + components: + - type: Transform + pos: -16.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11882 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11883 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11884 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11904 + components: + - type: Transform + pos: -37.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11905 + components: + - type: Transform + pos: -37.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11906 + components: + - type: Transform + pos: -37.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11910 + components: + - type: Transform + pos: -33.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11911 + components: + - type: Transform + pos: -33.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11926 + components: + - type: Transform + pos: 3.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11927 + components: + - type: Transform + pos: 3.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11928 + components: + - type: Transform + pos: 0.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11930 + components: + - type: Transform + pos: 0.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11931 + components: + - type: Transform + pos: 0.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11932 + components: + - type: Transform + pos: 0.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11933 + components: + - type: Transform + pos: 0.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11976 + components: + - type: Transform + pos: -47.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11977 + components: + - type: Transform + pos: -47.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11978 + components: + - type: Transform + pos: -47.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11979 + components: + - type: Transform + pos: -47.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12004 + components: + - type: Transform + pos: -42.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12005 + components: + - type: Transform + pos: -54.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12006 + components: + - type: Transform + pos: -60.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12007 + components: + - type: Transform + pos: -48.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12012 + components: + - type: Transform + pos: -60.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12013 + components: + - type: Transform + pos: -60.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12030 + components: + - type: Transform + pos: -73.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12031 + components: + - type: Transform + pos: -73.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12032 + components: + - type: Transform + pos: -73.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12033 + components: + - type: Transform + pos: -73.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12034 + components: + - type: Transform + pos: -73.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12042 + components: + - type: Transform + pos: -73.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12043 + components: + - type: Transform + pos: -73.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12044 + components: + - type: Transform + pos: -73.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12082 + components: + - type: Transform + pos: -73.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12083 + components: + - type: Transform + pos: -73.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12084 + components: + - type: Transform + pos: -73.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12085 + components: + - type: Transform + pos: -73.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12088 + components: + - type: Transform + pos: -66.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12089 + components: + - type: Transform + pos: -66.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12090 + components: + - type: Transform + pos: -66.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12122 + components: + - type: Transform + pos: -43.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12123 + components: + - type: Transform + pos: -43.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12124 + components: + - type: Transform + pos: -43.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12125 + components: + - type: Transform + pos: -43.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12126 + components: + - type: Transform + pos: -43.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12127 + components: + - type: Transform + pos: -43.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12128 + components: + - type: Transform + pos: -43.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12129 + components: + - type: Transform + pos: -43.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12171 + components: + - type: Transform + pos: -43.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12172 + components: + - type: Transform + pos: -43.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12173 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12174 + components: + - type: Transform + pos: -43.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12186 + components: + - type: Transform + pos: -29.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12187 + components: + - type: Transform + pos: -29.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12188 + components: + - type: Transform + pos: -27.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12189 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12190 + components: + - type: Transform + pos: -27.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12201 + components: + - type: Transform + pos: -31.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12202 + components: + - type: Transform + pos: -31.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12238 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12239 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12275 + components: + - type: Transform + pos: -43.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12276 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12277 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12278 + components: + - type: Transform + pos: -43.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12279 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12282 + components: + - type: Transform + pos: -43.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12283 + components: + - type: Transform + pos: -43.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12284 + components: + - type: Transform + pos: -43.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12293 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12298 + components: + - type: Transform + pos: -41.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12299 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12335 + components: + - type: Transform + pos: -59.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12336 + components: + - type: Transform + pos: -59.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12337 + components: + - type: Transform + pos: -59.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12338 + components: + - type: Transform + pos: -59.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12339 + components: + - type: Transform + pos: -59.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12365 + components: + - type: Transform + pos: -30.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12366 + components: + - type: Transform + pos: -30.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12367 + components: + - type: Transform + pos: -30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12380 + components: + - type: Transform + pos: -22.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12396 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12397 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12398 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12399 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12400 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12401 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12428 + components: + - type: Transform + pos: -5.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12474 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12475 + components: + - type: Transform + pos: 12.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12476 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12477 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12478 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12483 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12484 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12486 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12487 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12488 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12496 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12505 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12506 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12515 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12526 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12532 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12565 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12566 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12567 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12568 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12569 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12571 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12609 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12623 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12624 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12751 + components: + - type: Transform + pos: -71.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12752 + components: + - type: Transform + pos: -71.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12756 + components: + - type: Transform + pos: -72.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12757 + components: + - type: Transform + pos: -72.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15380 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16035 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16036 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16037 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16038 + components: + - type: Transform + pos: -57.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16039 + components: + - type: Transform + pos: -56.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16040 + components: + - type: Transform + pos: -56.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16041 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16042 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16043 + components: + - type: Transform + pos: -56.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3229 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4422 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6042 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6067 + components: + - type: Transform + pos: -57.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6068 + components: + - type: Transform + pos: -56.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6158 + components: + - type: Transform + pos: -13.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10533 + components: + - type: Transform + pos: -5.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10665 + components: + - type: Transform + pos: -27.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10741 + components: + - type: Transform + pos: -48.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10764 + components: + - type: Transform + pos: -67.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10879 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10896 + components: + - type: Transform + pos: -54.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10918 + components: + - type: Transform + pos: -34.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10933 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10947 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10956 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10985 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10986 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11022 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11054 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11074 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11162 + components: + - type: Transform + pos: -35.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11349 + components: + - type: Transform + pos: -22.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11361 + components: + - type: Transform + pos: -12.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11393 + components: + - type: Transform + pos: -53.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11569 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11645 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11675 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11720 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11730 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11807 + components: + - type: Transform + pos: -29.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11974 + components: + - type: Transform + pos: -43.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11982 + components: + - type: Transform + pos: -41.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11985 + components: + - type: Transform + pos: -47.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12018 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12026 + components: + - type: Transform + pos: -66.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12158 + components: + - type: Transform + pos: -57.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12182 + components: + - type: Transform + pos: -36.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12191 + components: + - type: Transform + pos: -27.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12220 + components: + - type: Transform + pos: -16.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12228 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12274 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12295 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12379 + components: + - type: Transform + pos: -22.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12392 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12463 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12473 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12494 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12502 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12528 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12543 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12544 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12560 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12706 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,32.5 + parent: 2 + - uid: 15187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,32.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 5754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,28.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,31.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: 10.5,32.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,18.5 + parent: 2 + - uid: 859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 2 + - uid: 860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,14.5 + parent: 2 + - uid: 861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - uid: 863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 + - uid: 864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,31.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,28.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 +- proto: GasRecycler + entities: + - uid: 9692 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 +- proto: GasThermoMachineFreezer + entities: + - uid: 692 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 6823 + components: + - type: Transform + pos: -47.5,52.5 + parent: 2 + - uid: 15188 + components: + - type: Transform + pos: -17.5,33.5 + parent: 2 +- proto: GasValve + entities: + - uid: 7048 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 150 + components: + - type: Transform + pos: -9.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 936 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2803 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11495 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10799 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5603 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10471 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7394 + components: + - type: Transform + pos: -10.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10522 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10459 + components: + - type: Transform + pos: -17.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,87.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5595 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10513 + components: + - type: Transform + pos: -75.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10568 + components: + - type: Transform + pos: 9.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6600 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11314 + components: + - type: Transform + pos: 2.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10457 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11318 + components: + - type: Transform + pos: -0.5,72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 431 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5700 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10477 + - 5700 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11325 + components: + - type: Transform + pos: -26.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10466 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10465 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6838 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10464 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10475 + - 15865 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10475 + - 15865 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6231 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11371 + components: + - type: Transform + pos: -33.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 158 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10456 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11375 + components: + - type: Transform + pos: -42.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10520 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10525 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11398 + components: + - type: Transform + pos: -45.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15346 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11399 + components: + - type: Transform + pos: -43.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5658 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11400 + components: + - type: Transform + pos: -49.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10467 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11402 + components: + - type: Transform + pos: -61.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10476 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11411 + components: + - type: Transform + pos: -62.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11414 + components: + - type: Transform + pos: -69.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9991 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 5941 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11440 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2728 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11442 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11443 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11464 + components: + - type: Transform + pos: -32.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13611 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3024 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11473 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11475 + components: + - type: Transform + pos: 11.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11496 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11497 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11500 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11498 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11499 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 148 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11504 + components: + - type: Transform + pos: -50.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11508 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11509 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11531 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11512 + components: + - type: Transform + pos: -34.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11532 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11516 + components: + - type: Transform + pos: -27.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11534 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11537 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11536 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11521 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4374 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11538 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11551 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11561 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11567 + components: + - type: Transform + pos: -60.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11582 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11584 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11583 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11581 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11580 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11615 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11590 + components: + - type: Transform + pos: -29.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11614 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11619 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11052 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11596 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11052 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11623 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11620 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11628 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11636 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11650 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13598 + - 11636 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10457 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15866 + components: + - type: Transform + pos: -19.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15867 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15868 + components: + - type: Transform + pos: -25.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15869 + components: + - type: Transform + pos: -16.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - 16071 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 2699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11538 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3024 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + pos: -48.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10467 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11687 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11551 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11825 + components: + - type: Transform + pos: -16.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10465 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10466 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6838 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11828 + components: + - type: Transform + pos: -33.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 158 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11837 + components: + - type: Transform + pos: -21.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10464 + - 10463 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10463 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10475 + - 10463 + - 15865 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10475 + - 15865 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11867 + components: + - type: Transform + pos: -28.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10458 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10462 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11474 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 148 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11872 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11561 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11636 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11885 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13598 + - 11636 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10456 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10457 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 431 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11951 + components: + - type: Transform + pos: 7.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15479 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10477 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5700 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15346 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15346 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12009 + components: + - type: Transform + pos: -42.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5658 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12010 + components: + - type: Transform + pos: -54.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10471 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12011 + components: + - type: Transform + pos: -60.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10476 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10453 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10799 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5603 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12087 + components: + - type: Transform + pos: -67.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10521 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10522 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9991 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10324 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6600 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10270 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6600 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11427 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11442 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13611 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 5941 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11443 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5853 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11444 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2728 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11429 + - 5941 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11440 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11508 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12297 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11548 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11628 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11582 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12321 + components: + - type: Transform + pos: -53.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11581 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11580 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12333 + components: + - type: Transform + pos: -52.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11584 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12334 + components: + - type: Transform + pos: -59.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11583 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12356 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11531 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12357 + components: + - type: Transform + pos: -35.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11532 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11539 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11537 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11534 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12402 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4374 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11536 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11535 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12427 + components: + - type: Transform + pos: -5.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4285 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12464 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12465 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11562 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12466 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11561 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11499 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11495 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12501 + components: + - type: Transform + pos: 13.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11496 + - uid: 12503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11495 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11498 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12514 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11497 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11495 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11500 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11623 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11052 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12554 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11615 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11052 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11052 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11619 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12611 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11614 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 936 + - 11052 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11052 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11621 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16070 + - 16071 + - type: AtmosPipeColor + color: '#990000FF' +- proto: Gauze + entities: + - uid: 2384 + components: + - type: Transform + pos: -27.41162,31.585716 + parent: 2 +- proto: GeneratorBasic + entities: + - uid: 7464 + components: + - type: Transform + pos: -24.5,91.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: -24.5,91.5 + parent: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 9401 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 +- proto: Girder + entities: + - uid: 14198 + components: + - type: Transform + pos: -52.5,74.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + pos: -65.5,70.5 + parent: 2 + - uid: 14200 + components: + - type: Transform + pos: -69.5,71.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 14377 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: -57.5,1.5 + parent: 2 + - uid: 15111 + components: + - type: Transform + pos: -69.5,9.5 + parent: 2 + - uid: 15113 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + pos: 5.5,50.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 15990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,40.5 + parent: 2 + - uid: 15991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,46.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + pos: -66.5,41.5 + parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 6609 + components: + - type: Transform + pos: -16.5,70.5 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 6001 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 +- proto: GrenadeFlashBang + entities: + - uid: 6127 + components: + - type: Transform + pos: 4.40831,45.622124 + parent: 2 +- proto: Grille + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,84.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: -85.5,74.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + - uid: 284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-4.5 + parent: 2 + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,16.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: -88.5,74.5 + parent: 2 + - uid: 486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,18.5 + parent: 2 + - uid: 503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,18.5 + parent: 2 + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,18.5 + parent: 2 + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,18.5 + parent: 2 + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,18.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,15.5 + parent: 2 + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,16.5 + parent: 2 + - uid: 707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - uid: 724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 2 + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 2 + - uid: 727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 2 + - uid: 728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 2 + - uid: 730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 + - uid: 731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2 + - uid: 732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 2 + - uid: 751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - uid: 753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - uid: 755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - uid: 757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - uid: 995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -82.5,14.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -82.5,16.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: -68.5,64.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,85.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: -49.5,93.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: -41.5,18.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: -62.5,79.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -72.5,78.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: -65.5,81.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: -63.5,77.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: -64.5,79.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: -66.5,81.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -71.5,81.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -63.5,79.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,50.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,51.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,51.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,51.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,51.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: -92.5,74.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: -86.5,74.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,51.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,51.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,51.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: -62.5,77.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,51.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 4.5,70.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: -36.5,41.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,70.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: -93.5,74.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,45.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,43.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,45.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: -39.5,49.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,84.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,44.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,43.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,44.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,45.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,42.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,43.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: -2.5,67.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: -1.5,69.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: -64.5,77.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,65.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: -68.5,81.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,37.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: -69.5,81.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,73.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,73.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,73.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,73.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,73.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,74.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,74.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,74.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: -76.5,74.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: -70.5,81.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: -81.5,14.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: -72.5,81.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,34.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,8.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,31.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,33.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 30.5,47.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 28.5,50.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,26.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,27.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,29.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,27.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,29.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,27.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: -67.5,81.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: -51.5,93.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: -53.5,95.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: -52.5,95.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: -63.5,81.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: -72.5,8.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: -72.5,9.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: -72.5,10.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: -72.5,11.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: -67.5,26.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: -67.5,4.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: -68.5,4.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: -77.5,74.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: -74.5,16.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: -37.5,27.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: -31.5,28.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: -83.5,14.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: -25.5,61.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: -25.5,64.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -37.5,41.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: -34.5,43.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -30.5,41.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: -30.5,42.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,70.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,43.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,40.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,39.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,41.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,40.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,39.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,40.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,39.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,41.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,41.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: -6.5,45.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,39.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: -41.5,64.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,51.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,48.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,63.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: -42.5,64.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,44.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,34.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,34.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,29.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,26.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: -83.5,16.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: -81.5,16.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: -39.5,50.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: -67.5,24.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: -55.5,94.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: -51.5,95.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: -51.5,95.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: -51.5,94.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,74.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,26.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,64.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,26.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,83.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,42.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,42.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: -34.5,42.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,83.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,13.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,59.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,75.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,76.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,76.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,76.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,76.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,76.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,76.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,76.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,76.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,76.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,75.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,77.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,75.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,76.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,77.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,76.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: -36.5,62.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,59.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,22.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,26.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,74.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + pos: 11.5,54.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: 11.5,56.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: 11.5,58.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + pos: 11.5,52.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + pos: 12.5,58.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: 13.5,58.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: 12.5,56.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: 13.5,56.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: 12.5,54.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: 13.5,54.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 12.5,52.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: 13.5,52.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: -94.5,74.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: -95.5,74.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,86.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,86.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: -76.5,53.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: -77.5,53.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: -67.5,23.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: -69.5,20.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: -22.5,85.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: -19.5,85.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: -21.5,85.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + pos: -23.5,85.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + pos: -20.5,85.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,63.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,70.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,62.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,50.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + pos: -33.5,59.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: -36.5,60.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: 6.5,63.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,42.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: -39.5,48.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: -75.5,-1.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: -76.5,-1.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: -78.5,-1.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -61.5,1.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -67.5,25.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,50.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,50.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,50.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,50.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,45.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,37.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,36.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,31.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,32.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,33.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + pos: -75.5,16.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: -70.5,55.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,24.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: 6.5,64.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: -89.5,56.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: -89.5,54.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: -89.5,70.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: -89.5,68.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: -84.5,67.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -82.5,67.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + pos: -83.5,67.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: -81.5,67.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + pos: -77.5,67.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: -76.5,67.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: -88.5,67.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: -74.5,65.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: -74.5,63.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: -74.5,62.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + pos: -74.5,64.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -74.5,61.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + pos: -74.5,60.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: -74.5,59.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + pos: -76.5,57.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: -77.5,57.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: -81.5,57.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + pos: -82.5,57.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + pos: -83.5,57.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + pos: -84.5,57.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + pos: -88.5,57.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + pos: -88.5,53.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + pos: -86.5,53.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: -85.5,53.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -84.5,53.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: -78.5,53.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + pos: -87.5,53.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: -90.5,74.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: -89.5,74.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: -91.5,74.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: -84.5,74.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: -83.5,74.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: -69.5,-2.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: -72.5,77.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: -72.5,79.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: -54.5,18.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: -79.5,74.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: -74.5,76.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: -75.5,76.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: -78.5,74.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: -81.5,74.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: -60.5,18.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: -53.5,18.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: -61.5,18.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: -87.5,74.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: -62.5,88.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: -62.5,93.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: -77.5,-1.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,13.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: -62.5,86.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + pos: -62.5,82.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: -62.5,81.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -62.5,92.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + pos: -62.5,91.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + pos: -61.5,93.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,41.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,39.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: -62.5,87.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: -62.5,83.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: -54.5,95.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,84.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,26.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 2 + - uid: 9544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,85.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,84.5 + parent: 2 + - uid: 9571 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 9572 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 9573 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 9601 + components: + - type: Transform + pos: -62.5,89.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + pos: -70.5,20.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,26.5 + parent: 2 + - uid: 9687 + components: + - type: Transform + pos: -73.5,16.5 + parent: 2 + - uid: 9707 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 9731 + components: + - type: Transform + pos: -82.5,9.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,56.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,18.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,18.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,68.5 + parent: 2 + - uid: 10514 + components: + - type: Transform + pos: -65.5,61.5 + parent: 2 + - uid: 10528 + components: + - type: Transform + pos: -66.5,61.5 + parent: 2 + - uid: 10538 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,22.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,26.5 + parent: 2 + - uid: 11007 + components: + - type: Transform + pos: 6.5,62.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 2 + - uid: 11529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,56.5 + parent: 2 + - uid: 11572 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 11637 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 11639 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 11660 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 12414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,44.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 2 + - uid: 12416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,70.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,46.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,43.5 + parent: 2 + - uid: 12684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,44.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,39.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,47.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: -36.5,61.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,41.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,39.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,41.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,39.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,37.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,45.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,45.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,47.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,47.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,49.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,49.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,47.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,49.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,45.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,41.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,39.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,37.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,85.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,86.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + pos: -25.5,62.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: -82.5,7.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + pos: -82.5,3.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: -82.5,4.5 + parent: 2 + - uid: 12978 + components: + - type: Transform + pos: -82.5,5.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,49.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,50.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 13410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-26.5 + parent: 2 + - uid: 13411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 2 + - uid: 13412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 2 + - uid: 13413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-11.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 2 + - uid: 13415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-13.5 + parent: 2 + - uid: 13416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-15.5 + parent: 2 + - uid: 13417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-16.5 + parent: 2 + - uid: 13418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-17.5 + parent: 2 + - uid: 13419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-14.5 + parent: 2 + - uid: 13420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-19.5 + parent: 2 + - uid: 13421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-20.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-22.5 + parent: 2 + - uid: 13423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-23.5 + parent: 2 + - uid: 13424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-24.5 + parent: 2 + - uid: 13425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 2 + - uid: 13426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-28.5 + parent: 2 + - uid: 13427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-29.5 + parent: 2 + - uid: 13428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-30.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-32.5 + parent: 2 + - uid: 13431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-32.5 + parent: 2 + - uid: 13432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-32.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-32.5 + parent: 2 + - uid: 13434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-32.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-32.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-32.5 + parent: 2 + - uid: 13437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-32.5 + parent: 2 + - uid: 13438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-32.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-32.5 + parent: 2 + - uid: 13440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-32.5 + parent: 2 + - uid: 13441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-32.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-32.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-32.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 2 + - uid: 13448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 2 + - uid: 13449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-29.5 + parent: 2 + - uid: 13457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 2 + - uid: 13465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-3.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - uid: 13517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,83.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,56.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,23.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,23.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,23.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,23.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,22.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,19.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,19.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,19.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,19.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,19.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,19.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,19.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,19.5 + parent: 2 + - uid: 13628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,19.5 + parent: 2 + - uid: 13629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,19.5 + parent: 2 + - uid: 13630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,19.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,19.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 + - uid: 13634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,19.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,19.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,20.5 + parent: 2 + - uid: 13637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,22.5 + parent: 2 + - uid: 13638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,23.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,21.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,26.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,26.5 + parent: 2 + - uid: 13642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,27.5 + parent: 2 + - uid: 13643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,28.5 + parent: 2 + - uid: 13644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,32.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,34.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,37.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,35.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,37.5 + parent: 2 + - uid: 13653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,37.5 + parent: 2 + - uid: 13654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,37.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,37.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,37.5 + parent: 2 + - uid: 13657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,37.5 + parent: 2 + - uid: 13658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,37.5 + parent: 2 + - uid: 13659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,37.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,37.5 + parent: 2 + - uid: 13661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,37.5 + parent: 2 + - uid: 13662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,37.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,37.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,36.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,35.5 + parent: 2 + - uid: 13666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,33.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,32.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,34.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,98.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + pos: -57.5,93.5 + parent: 2 + - uid: 13683 + components: + - type: Transform + pos: -58.5,93.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + pos: -60.5,93.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + pos: -59.5,93.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,84.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,84.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,85.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,85.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,86.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,88.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,90.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,89.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,92.5 + parent: 2 + - uid: 13709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,94.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,95.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,93.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,95.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,95.5 + parent: 2 + - uid: 13714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,96.5 + parent: 2 + - uid: 13715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,97.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,98.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,98.5 + parent: 2 + - uid: 13718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,98.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,98.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,98.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,98.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,98.5 + parent: 2 + - uid: 13723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,98.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,98.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,98.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,98.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,98.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,98.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,98.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,96.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,97.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,96.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,96.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,96.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,96.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,95.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,95.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,94.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,92.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,91.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,90.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,89.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,87.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,85.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,84.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,86.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + pos: -55.5,95.5 + parent: 2 + - uid: 13872 + components: + - type: Transform + pos: -55.5,93.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,84.5 + parent: 2 + - uid: 14070 + components: + - type: Transform + pos: 30.5,44.5 + parent: 2 + - uid: 14071 + components: + - type: Transform + pos: -47.5,93.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + pos: -46.5,93.5 + parent: 2 + - uid: 14073 + components: + - type: Transform + pos: -45.5,93.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: -44.5,93.5 + parent: 2 + - uid: 14075 + components: + - type: Transform + pos: -48.5,93.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + pos: -44.5,91.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: -44.5,89.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + pos: -44.5,88.5 + parent: 2 + - uid: 14079 + components: + - type: Transform + pos: -44.5,87.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: -44.5,86.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + pos: -44.5,90.5 + parent: 2 + - uid: 14082 + components: + - type: Transform + pos: -44.5,83.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + pos: -44.5,84.5 + parent: 2 + - uid: 14084 + components: + - type: Transform + pos: -44.5,82.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: -44.5,80.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + pos: -44.5,79.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: -44.5,81.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: -44.5,78.5 + parent: 2 + - uid: 14098 + components: + - type: Transform + pos: -61.5,75.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + pos: -60.5,75.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + pos: -58.5,75.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: -56.5,75.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: -52.5,75.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 14106 + components: + - type: Transform + pos: -50.5,75.5 + parent: 2 + - uid: 14107 + components: + - type: Transform + pos: -48.5,75.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: -49.5,75.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + pos: -69.5,70.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + pos: -69.5,70.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,34.5 + parent: 2 + - uid: 14385 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 14387 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 14388 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 14389 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 14390 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 14391 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 14392 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 14393 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 14420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 2 + - uid: 14605 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 14758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,83.5 + parent: 2 + - uid: 14775 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 15195 + components: + - type: Transform + pos: -18.5,29.5 + parent: 2 + - uid: 15196 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 15410 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 15411 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 15414 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 15428 + components: + - type: Transform + pos: -25.5,63.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - uid: 15454 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,79.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,79.5 + parent: 2 + - uid: 15463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,79.5 + parent: 2 + - uid: 15464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,73.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,73.5 + parent: 2 + - uid: 15470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,73.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,56.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,68.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,70.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,54.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + pos: -41.5,92.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: -34.5,87.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: -36.5,87.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: -35.5,87.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: -36.5,86.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + pos: -38.5,86.5 + parent: 2 + - uid: 15851 + components: + - type: Transform + pos: -39.5,86.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + pos: -37.5,86.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: -40.5,86.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + pos: -40.5,85.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + pos: -41.5,85.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: -42.5,85.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: -39.5,92.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: -38.5,92.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: -37.5,92.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: -36.5,92.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: -34.5,92.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + pos: -40.5,92.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: -35.5,92.5 + parent: 2 + - uid: 16320 + components: + - type: Transform + pos: -81.5,17.5 + parent: 2 + - uid: 16321 + components: + - type: Transform + pos: -82.5,17.5 + parent: 2 + - uid: 16322 + components: + - type: Transform + pos: -83.5,17.5 + parent: 2 + - uid: 16323 + components: + - type: Transform + pos: -84.5,17.5 + parent: 2 + - uid: 16324 + components: + - type: Transform + pos: -87.5,17.5 + parent: 2 + - uid: 16325 + components: + - type: Transform + pos: -89.5,17.5 + parent: 2 + - uid: 16326 + components: + - type: Transform + pos: -90.5,17.5 + parent: 2 + - uid: 16327 + components: + - type: Transform + pos: -88.5,17.5 + parent: 2 + - uid: 16328 + components: + - type: Transform + pos: -93.5,17.5 + parent: 2 + - uid: 16329 + components: + - type: Transform + pos: -91.5,17.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + pos: -92.5,17.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: -95.5,17.5 + parent: 2 + - uid: 16332 + components: + - type: Transform + pos: -96.5,17.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: -98.5,17.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: -99.5,17.5 + parent: 2 + - uid: 16335 + components: + - type: Transform + pos: -100.5,17.5 + parent: 2 + - uid: 16336 + components: + - type: Transform + pos: -101.5,17.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: -102.5,17.5 + parent: 2 + - uid: 16338 + components: + - type: Transform + pos: -97.5,17.5 + parent: 2 + - uid: 16339 + components: + - type: Transform + pos: -102.5,16.5 + parent: 2 + - uid: 16340 + components: + - type: Transform + pos: -102.5,14.5 + parent: 2 + - uid: 16341 + components: + - type: Transform + pos: -102.5,15.5 + parent: 2 + - uid: 16342 + components: + - type: Transform + pos: -102.5,12.5 + parent: 2 + - uid: 16343 + components: + - type: Transform + pos: -102.5,10.5 + parent: 2 + - uid: 16344 + components: + - type: Transform + pos: -102.5,9.5 + parent: 2 + - uid: 16345 + components: + - type: Transform + pos: -102.5,8.5 + parent: 2 + - uid: 16346 + components: + - type: Transform + pos: -102.5,11.5 + parent: 2 + - uid: 16347 + components: + - type: Transform + pos: -102.5,5.5 + parent: 2 + - uid: 16348 + components: + - type: Transform + pos: -102.5,4.5 + parent: 2 + - uid: 16349 + components: + - type: Transform + pos: -102.5,3.5 + parent: 2 + - uid: 16350 + components: + - type: Transform + pos: -102.5,2.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + pos: -101.5,2.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + pos: -100.5,2.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + pos: -99.5,2.5 + parent: 2 + - uid: 16354 + components: + - type: Transform + pos: -97.5,2.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: -95.5,2.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + pos: -94.5,2.5 + parent: 2 + - uid: 16357 + components: + - type: Transform + pos: -93.5,2.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + pos: -96.5,2.5 + parent: 2 + - uid: 16359 + components: + - type: Transform + pos: -92.5,2.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + pos: -91.5,2.5 + parent: 2 + - uid: 16361 + components: + - type: Transform + pos: -90.5,2.5 + parent: 2 + - uid: 16362 + components: + - type: Transform + pos: -89.5,2.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + pos: -88.5,2.5 + parent: 2 + - uid: 16364 + components: + - type: Transform + pos: -87.5,2.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + pos: -85.5,2.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + pos: -83.5,2.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + pos: -84.5,2.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + pos: 6.5,67.5 + parent: 2 + - uid: 16422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,85.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,86.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,83.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,83.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,83.5 + parent: 2 + - uid: 16451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,79.5 + parent: 2 + - uid: 16452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,81.5 + parent: 2 + - uid: 16453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,80.5 + parent: 2 + - uid: 16454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,86.5 + parent: 2 + - uid: 16455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,85.5 + parent: 2 + - uid: 16456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,84.5 + parent: 2 + - uid: 16457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,86.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,85.5 + parent: 2 + - uid: 16680 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 16690 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 16691 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 16692 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - uid: 16693 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 16694 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 + - uid: 16695 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 16696 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 16697 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 16698 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 16699 + components: + - type: Transform + pos: -68.5,-11.5 + parent: 2 + - uid: 16700 + components: + - type: Transform + pos: -58.5,-11.5 + parent: 2 + - uid: 16701 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 16703 + components: + - type: Transform + pos: -62.5,-11.5 + parent: 2 + - uid: 16704 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + pos: -64.5,-11.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 16708 + components: + - type: Transform + pos: -70.5,-11.5 + parent: 2 + - uid: 16709 + components: + - type: Transform + pos: -71.5,-11.5 + parent: 2 + - uid: 16710 + components: + - type: Transform + pos: -72.5,-11.5 + parent: 2 + - uid: 16711 + components: + - type: Transform + pos: -69.5,-11.5 + parent: 2 + - uid: 16712 + components: + - type: Transform + pos: -74.5,-11.5 + parent: 2 + - uid: 16713 + components: + - type: Transform + pos: -76.5,-11.5 + parent: 2 + - uid: 16714 + components: + - type: Transform + pos: -75.5,-11.5 + parent: 2 + - uid: 16715 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 16716 + components: + - type: Transform + pos: -77.5,-10.5 + parent: 2 + - uid: 16717 + components: + - type: Transform + pos: -77.5,-8.5 + parent: 2 + - uid: 16718 + components: + - type: Transform + pos: -77.5,-9.5 + parent: 2 + - uid: 16719 + components: + - type: Transform + pos: -79.5,-8.5 + parent: 2 + - uid: 16720 + components: + - type: Transform + pos: -81.5,-8.5 + parent: 2 + - uid: 16721 + components: + - type: Transform + pos: -82.5,-8.5 + parent: 2 + - uid: 16722 + components: + - type: Transform + pos: -83.5,-8.5 + parent: 2 + - uid: 16723 + components: + - type: Transform + pos: -80.5,-8.5 + parent: 2 + - uid: 16724 + components: + - type: Transform + pos: -83.5,-7.5 + parent: 2 + - uid: 16725 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 + - uid: 16726 + components: + - type: Transform + pos: -83.5,-5.5 + parent: 2 + - uid: 16727 + components: + - type: Transform + pos: -83.5,-3.5 + parent: 2 + - uid: 16728 + components: + - type: Transform + pos: -83.5,-2.5 + parent: 2 + - uid: 16729 + components: + - type: Transform + pos: -83.5,-4.5 + parent: 2 + - uid: 16730 + components: + - type: Transform + pos: -85.5,-2.5 + parent: 2 + - uid: 16731 + components: + - type: Transform + pos: -86.5,-2.5 + parent: 2 + - uid: 16732 + components: + - type: Transform + pos: -86.5,-1.5 + parent: 2 + - uid: 16733 + components: + - type: Transform + pos: -86.5,0.5 + parent: 2 + - uid: 16734 + components: + - type: Transform + pos: -86.5,-0.5 + parent: 2 + - uid: 16737 + components: + - type: Transform + pos: -70.5,22.5 + parent: 2 + - uid: 16738 + components: + - type: Transform + pos: -70.5,24.5 + parent: 2 + - uid: 16739 + components: + - type: Transform + pos: -70.5,25.5 + parent: 2 + - uid: 16740 + components: + - type: Transform + pos: -70.5,26.5 + parent: 2 + - uid: 16741 + components: + - type: Transform + pos: -70.5,23.5 + parent: 2 + - uid: 16742 + components: + - type: Transform + pos: -70.5,32.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + pos: -70.5,31.5 + parent: 2 + - uid: 16744 + components: + - type: Transform + pos: -70.5,29.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + pos: -70.5,28.5 + parent: 2 + - uid: 16746 + components: + - type: Transform + pos: -70.5,30.5 + parent: 2 + - uid: 16747 + components: + - type: Transform + pos: -80.5,19.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + pos: -78.5,19.5 + parent: 2 + - uid: 16749 + components: + - type: Transform + pos: -77.5,19.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + pos: -76.5,19.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + pos: -75.5,19.5 + parent: 2 + - uid: 16752 + components: + - type: Transform + pos: -74.5,19.5 + parent: 2 + - uid: 16753 + components: + - type: Transform + pos: -79.5,19.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 10550 + components: + - type: Transform + pos: -82.5,8.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + pos: -68.5,70.5 + parent: 2 +- proto: GrilleSpawner + entities: + - uid: 411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,6.5 + parent: 2 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: -58.5,3.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: -61.5,-0.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: -57.5,73.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: -57.5,74.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,1.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + pos: -58.5,1.5 + parent: 2 + - uid: 15112 + components: + - type: Transform + pos: -69.5,7.5 + parent: 2 + - uid: 15491 + components: + - type: Transform + pos: -53.5,74.5 + parent: 2 + - uid: 15539 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 16020 + components: + - type: Transform + pos: -66.5,42.5 + parent: 2 + - uid: 16021 + components: + - type: Transform + pos: -66.5,38.5 + parent: 2 +- proto: GunSafeDisabler + entities: + - uid: 5169 + components: + - type: Transform + pos: -19.5,38.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 13034 + components: + - type: Transform + pos: -26.5,38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6442 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafePistolMk58 + entities: + - uid: 4506 + components: + - type: Transform + pos: -23.5,38.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 4505 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 +- proto: GunSafeShotgunKammerer + entities: + - uid: 13031 + components: + - type: Transform + pos: -24.5,38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6443 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 4507 + components: + - type: Transform + pos: -27.5,38.5 + parent: 2 +- proto: Handcuffs + entities: + - uid: 6126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.2946398,69.61697 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: -6.5581975,15.967878 + parent: 2 +- proto: HandheldHealthAnalyzer + entities: + - uid: 5015 + components: + - type: Transform + pos: -15.532268,39.631638 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: -15.291052,31.740993 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: -24.59912,30.601341 + parent: 2 +- proto: HandheldStationMap + entities: + - uid: 6328 + components: + - type: Transform + pos: -27.443884,6.0623207 + parent: 2 + - uid: 14965 + components: + - type: Transform + pos: -22.54888,72.55596 + parent: 2 +- proto: HandLabeler + entities: + - uid: 4934 + components: + - type: Transform + pos: -20.63226,40.78308 + parent: 2 + - uid: 15400 + components: + - type: Transform + pos: 14.453609,70.63473 + parent: 2 +- proto: HarmonicaInstrument + entities: + - uid: 5108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.4076514,48.270206 + parent: 2 + - uid: 5109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.4779639,50.30927 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 13965 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 4962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.7397442,11.575177 + parent: 2 +- proto: Holopad + entities: + - uid: 16852 + components: + - type: Transform + pos: -61.5,22.5 + parent: 2 + - uid: 16853 + components: + - type: Transform + pos: -65.5,9.5 + parent: 2 + - uid: 16854 + components: + - type: Transform + pos: -65.5,9.5 + parent: 2 +- proto: HolopadAiCore + entities: + - uid: 16805 + components: + - type: Transform + pos: -21.5,87.5 + parent: 2 +- proto: HolopadAiUpload + entities: + - uid: 16806 + components: + - type: Transform + pos: -26.5,89.5 + parent: 2 +- proto: HolopadCargoBay + entities: + - uid: 16822 + components: + - type: Transform + pos: 10.5,72.5 + parent: 2 +- proto: HolopadCargoFront + entities: + - uid: 16821 + components: + - type: Transform + pos: 3.5,64.5 + parent: 2 +- proto: HolopadCargoSalvageBay + entities: + - uid: 16844 + components: + - type: Transform + pos: 10.5,64.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 16816 + components: + - type: Transform + pos: -23.5,73.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 16820 + components: + - type: Transform + pos: -13.5,69.5 + parent: 2 +- proto: HolopadCommandCe + entities: + - uid: 16818 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 16819 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 +- proto: HolopadCommandHop + entities: + - uid: 16832 + components: + - type: Transform + pos: -34.5,61.5 + parent: 2 +- proto: HolopadCommandHos + entities: + - uid: 16831 + components: + - type: Transform + pos: -38.5,38.5 + parent: 2 +- proto: HolopadCommandQm + entities: + - uid: 16840 + components: + - type: Transform + pos: -1.5,72.5 + parent: 2 +- proto: HolopadCommandRd + entities: + - uid: 16842 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 16851 + components: + - type: Transform + pos: -11.5,73.5 + parent: 2 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 16811 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 16810 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 16848 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 16829 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 +- proto: HolopadEngineeringFront + entities: + - uid: 16828 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 16849 + components: + - type: Transform + pos: -32.5,12.5 + parent: 2 +- proto: HolopadGeneralArrivals + entities: + - uid: 16809 + components: + - type: Transform + pos: -72.5,63.5 + parent: 2 +- proto: HolopadGeneralEvac + entities: + - uid: 16830 + components: + - type: Transform + pos: -69.5,43.5 + parent: 2 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 16826 + components: + - type: Transform + pos: -31.5,49.5 + parent: 2 + - uid: 16827 + components: + - type: Transform + pos: -27.5,63.5 + parent: 2 +- proto: HolopadGeneralTools + entities: + - uid: 16850 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 +- proto: HolopadMedicalChemistry + entities: + - uid: 16823 + components: + - type: Transform + pos: -35.5,31.5 + parent: 2 +- proto: HolopadMedicalFront + entities: + - uid: 16836 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 16837 + components: + - type: Transform + pos: -28.5,30.5 + parent: 2 +- proto: HolopadMedicalSurgery + entities: + - uid: 16847 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 +- proto: HolopadScienceAnomaly + entities: + - uid: 16808 + components: + - type: Transform + pos: 12.5,44.5 + parent: 2 +- proto: HolopadScienceArtifact + entities: + - uid: 16812 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 +- proto: HolopadScienceFront + entities: + - uid: 16845 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 +- proto: HolopadScienceRnd + entities: + - uid: 16841 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 +- proto: HolopadScienceRobotics + entities: + - uid: 16843 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 +- proto: HolopadSecurityArmory + entities: + - uid: 16807 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 16817 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 +- proto: HolopadSecurityCourtroom + entities: + - uid: 16825 + components: + - type: Transform + pos: -14.5,65.5 + parent: 2 +- proto: HolopadSecurityFront + entities: + - uid: 16846 + components: + - type: Transform + pos: -30.5,52.5 + parent: 2 +- proto: HolopadSecurityInterrogation + entities: + - uid: 16833 + components: + - type: Transform + pos: -38.5,49.5 + parent: 2 +- proto: HolopadSecurityLawyer + entities: + - uid: 16835 + components: + - type: Transform + pos: -8.5,63.5 + parent: 2 +- proto: HolopadSecurityPerma + entities: + - uid: 16839 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 16813 + components: + - type: Transform + pos: -60.5,52.5 + parent: 2 +- proto: HolopadServiceBotany + entities: + - uid: 16814 + components: + - type: Transform + pos: -52.5,42.5 + parent: 2 +- proto: HolopadServiceBoxer + entities: + - uid: 16815 + components: + - type: Transform + pos: -42.5,55.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 16824 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 +- proto: HolopadServiceKitchen + entities: + - uid: 16834 + components: + - type: Transform + pos: -51.5,48.5 + parent: 2 +- proto: HolopadServiceNewsroom + entities: + - uid: 16838 + components: + - type: Transform + pos: -43.5,65.5 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 7090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,62.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,63.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 3732 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 14231 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 14318 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 + - uid: 14319 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 14324 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 14325 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 14326 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 +- proto: HydroponicsToolScythe + entities: + - uid: 14339 + components: + - type: Transform + pos: -40.37137,5.574462 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 2339 + components: + - type: Transform + pos: -49.5,43.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,50.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,50.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,43.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: -51.5,38.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: -49.5,38.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: -48.5,38.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: -54.5,43.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: -53.5,38.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: -53.5,43.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: -51.5,41.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: -52.5,41.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: -53.5,41.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: -51.5,43.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: -50.5,43.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: -49.5,41.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: -54.5,41.5 + parent: 2 +- proto: InflatableWall + entities: + - uid: 14378 + components: + - type: Transform + pos: -81.5,9.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + pos: -81.5,8.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: -81.5,7.5 + parent: 2 +- proto: IngotGold + entities: + - uid: 6136 + components: + - type: Transform + pos: -8.43362,74.25302 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 6627 + components: + - type: Transform + pos: -34.5,66.5 + parent: 2 +- proto: JetpackMiniFilled + entities: + - uid: 5511 + components: + - type: Transform + pos: -26.550102,62.775665 + parent: 2 + - type: GasTank + toggleActionEntity: 13520 + - type: Jetpack + toggleActionEntity: 13519 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 13519 + - 13520 + - uid: 5512 + components: + - type: Transform + pos: -26.409477,62.431915 + parent: 2 + - type: GasTank + toggleActionEntity: 13768 + - type: Jetpack + toggleActionEntity: 13532 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 13532 + - 13768 + - uid: 5994 + components: + - type: Transform + pos: 13.317186,62.392735 + parent: 2 + - type: GasTank + toggleActionEntity: 5996 + - type: Jetpack + toggleActionEntity: 5995 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 5995 + - 5996 +- proto: JetpackSecurityFilled + entities: + - uid: 4429 + components: + - type: Transform + pos: -28.73388,38.59426 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: -28.288567,38.59426 + parent: 2 +- proto: Jukebox + entities: + - uid: 15425 + components: + - type: Transform + pos: -58.5,45.5 + parent: 2 + - uid: 16602 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 15504 + components: + - type: Transform + pos: -50.5,46.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: -49.5,46.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 4558 + components: + - type: Transform + pos: -51.5,47.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: -5.5,48.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: -51.5,46.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 4251 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: -60.5,45.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + pos: -49.5,47.5 + parent: 2 + - uid: 9992 + components: + - type: Transform + pos: -49.5,47.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 2157 + components: + - type: Transform + pos: -48.5,52.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 1230 + components: + - type: Transform + pos: -6.1008997,48.588818 + parent: 2 +- proto: Lamp + entities: + - uid: 5182 + components: + - type: Transform + pos: -33.349297,42.633045 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 20.610119,43.816322 + parent: 2 +- proto: LampGold + entities: + - uid: 4941 + components: + - type: Transform + pos: -37.242577,39.73376 + parent: 2 + - uid: 5578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.45354,23.881472 + parent: 2 + - uid: 6107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.389595,12.915945 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: -6.7891417,11.615683 + parent: 2 + - type: HandheldLight + toggleActionEntity: 6242 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6242 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 7128 + components: + - type: Transform + pos: -14.500199,68.833305 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: -35.585,62.874256 + parent: 2 + - uid: 16681 + components: + - type: Transform + pos: -65.95524,57.727394 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 2817 + components: + - type: Transform + pos: -36.506226,50.709557 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: -1.4542012,39.871998 + parent: 2 +- proto: Lantern + entities: + - uid: 10795 + components: + - type: Transform + pos: -56.68287,8.689981 + parent: 2 + - uid: 12069 + components: + - type: Transform + pos: -57.198494,8.611856 + parent: 2 +- proto: LauncherCreamPie + entities: + - uid: 4712 + components: + - type: Transform + pos: -59.509956,65.62154 + parent: 2 +- proto: Lighter + entities: + - uid: 6506 + components: + - type: Transform + pos: -8.85342,11.490683 + parent: 2 +- proto: LightTubeBroken + entities: + - uid: 16589 + components: + - type: Transform + parent: 16588 + - type: Physics + canCollide: False +- proto: LightTubeOld + entities: + - uid: 16520 + components: + - type: Transform + parent: 16519 + - type: Physics + canCollide: False +- proto: LiveLetLiveCircuitBoard + entities: + - uid: 5330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.674873,88.733215 + parent: 2 +- proto: LockableButtonAtmospherics + entities: + - uid: 14443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - uid: 14444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4526: + - Pressed: Toggle + 3578: + - Pressed: Toggle + 6171: + - Pressed: Toggle +- proto: LockableButtonBrig + entities: + - uid: 15056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,46.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15055: + - Pressed: Toggle + 15053: + - Pressed: Toggle + 15051: + - Pressed: Toggle + 15040: + - Pressed: Toggle + 15039: + - Pressed: Toggle + 14916: + - Pressed: Toggle + 14897: + - Pressed: Toggle + 10603: + - Pressed: Toggle +- proto: LockableButtonCargo + entities: + - uid: 6009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,76.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15844: + - Pressed: Toggle + 16418: + - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 603 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3617: + - Pressed: Toggle + 4912: + - Pressed: Toggle + 254: + - Pressed: Toggle + 3618: + - Pressed: Toggle + - uid: 604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3617: + - Pressed: Toggle + 4912: + - Pressed: Toggle + 3618: + - Pressed: Toggle + 254: + - Pressed: Toggle + - uid: 4539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4523: + - Pressed: Toggle + 4524: + - Pressed: Toggle + 4525: + - Pressed: Toggle +- proto: LockableButtonKitchen + entities: + - uid: 1783 + components: + - type: Transform + pos: -49.5,50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3873: + - Pressed: Toggle + 3872: + - Pressed: Toggle + 3874: + - Pressed: Toggle + 14273: + - Pressed: Toggle + 14274: + - Pressed: Toggle +- proto: LockableButtonResearch + entities: + - uid: 4540 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4522: + - Pressed: Toggle + 4521: + - Pressed: Toggle + 4520: + - Pressed: Toggle + - uid: 4541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4519: + - Pressed: Toggle + 4518: + - Pressed: Toggle + 1862: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 6057 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 14023 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 4619 + components: + - type: Transform + pos: -63.5,38.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: -63.5,40.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + pos: -73.5,-0.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 4602 + components: + - type: Transform + pos: -59.5,41.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: -59.5,40.5 + parent: 2 +- proto: LockerBotanistLoot + entities: + - uid: 14337 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 6601 + components: + - type: Transform + pos: -8.5,68.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 4236 + components: + - type: Transform + pos: -35.5,33.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 2921 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 5580 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 +- proto: LockerClown + entities: + - uid: 1945 + components: + - type: Transform + pos: -59.5,67.5 + parent: 2 +- proto: LockerDetectiveFilled + entities: + - uid: 4280 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 6509 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: -0.5,58.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 2398 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 11605 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 11616 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 6734 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: -15.5,45.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 8233 + components: + - type: Transform + pos: -49.5,52.5 + parent: 2 +- proto: LockerFreezerVaultFilled + entities: + - uid: 6131 + components: + - type: Transform + pos: -12.5,74.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 6645 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 4670 + components: + - type: Transform + pos: -40.5,40.5 + parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 1857 + components: + - type: Transform + pos: -10.5,31.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: -10.5,32.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: -10.5,33.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: -15.5,42.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 5665 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: -10.5,30.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: -29.5,33.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + pos: -27.5,34.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 +- proto: LockerMime + entities: + - uid: 2438 + components: + - type: Transform + pos: -53.5,67.5 + parent: 2 +- proto: LockerParamedicFilled + entities: + - uid: 11000 + components: + - type: Transform + pos: -24.5,23.5 + parent: 2 + - uid: 11001 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 6063 + components: + - type: Transform + pos: -1.5,76.5 + parent: 2 +- proto: LockerResearchDirectorFilled + entities: + - uid: 5867 + components: + - type: Transform + pos: 18.5,47.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 5919 + components: + - type: Transform + pos: 14.5,65.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: 14.5,64.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: 14.5,63.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 5742 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 523 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: -69.5,66.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + pos: -41.5,42.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -41.5,43.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: -41.5,44.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: -41.5,45.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: -41.5,46.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: -36.5,46.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: -37.5,46.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: -35.5,46.5 + parent: 2 +- proto: LockerSteel + entities: + - uid: 4690 + components: + - type: Transform + pos: -51.5,65.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: -45.5,67.5 + parent: 2 +- proto: LockerSyndicate + entities: + - uid: 6992 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1125 + - 2484 + - 6104 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWardenFilledHardsuit + entities: + - uid: 4937 + components: + - type: Transform + pos: -18.5,38.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 6508 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 10551 + components: + - type: Transform + pos: 10.5,50.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 6688 + components: + - type: Transform + pos: -20.543135,72.60232 + parent: 2 + - uid: 13821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.714352,61.65068 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 1795 + components: + - type: Transform + pos: 15.5,44.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 2840 + components: + - type: Transform + pos: 12.5,45.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + pos: 10.5,45.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: 11.5,45.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 2837 + components: + - type: Transform + pos: 10.5,43.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: 10.5,42.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + pos: 16.5,42.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 2826 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 4268 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 4258 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 2542 + components: + - type: Transform + pos: -34.31289,40.249386 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: -34.66445,40.03845 + parent: 2 +- proto: MagicDiceBag + entities: + - uid: 6164 + components: + - type: Transform + pos: -66.08486,56.949608 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: -60.620758,26.167727 + parent: 2 + - uid: 14472 + components: + - type: Transform + pos: 24.282629,16.96738 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 13003 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + pos: -59.5,73.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: -69.5,73.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + pos: -66.5,25.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 + - uid: 14224 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 14456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 2 + - uid: 14588 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,69.5 + parent: 2 + - uid: 15236 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 15818 + components: + - type: Transform + pos: -33.5,36.5 + parent: 2 + - uid: 16620 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 6172 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 9599 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + pos: -45.5,72.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + pos: -52.5,73.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + pos: -47.5,70.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + pos: -66.5,28.5 + parent: 2 + - uid: 14222 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 14227 + components: + - type: Transform + pos: 3.5,57.5 + parent: 2 + - uid: 14229 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 14664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 2 + - uid: 15311 + components: + - type: Transform + pos: -64.5,5.5 + parent: 2 + - uid: 15312 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: -40.5,36.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 14206 + components: + - type: Transform + pos: -48.5,70.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + pos: -66.5,29.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + pos: 12.5,48.5 + parent: 2 + - uid: 14458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 2 + - uid: 14589 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 15377 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 14205 + components: + - type: Transform + pos: -49.5,70.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 14226 + components: + - type: Transform + pos: 2.5,57.5 + parent: 2 + - uid: 14457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 2 + - uid: 14596 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 9170 + components: + - type: Transform + pos: -34.335,60.51488 + parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 6146 + components: + - type: Transform + pos: -12.637186,72.55865 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 5847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.6475,60.76488 + parent: 2 + - uid: 16688 + components: + - type: Transform + pos: -13.294653,33.547 + parent: 2 +- proto: MaterialHideBear + entities: + - uid: 9919 + components: + - type: Transform + pos: -64.27997,2.4627147 + parent: 2 +- proto: MaterialWoodPlank + entities: + - uid: 15920 + components: + - type: Transform + pos: -78.72712,4.537286 + parent: 2 +- proto: MechEquipmentGrabberSmall + entities: + - uid: 11310 + components: + - type: Transform + pos: 7.1447277,78.72652 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: 6.9884777,78.49214 + parent: 2 +- proto: MedicalBed + entities: + - uid: 2413 + components: + - type: Transform + pos: -30.5,33.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: -12.5,42.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: -28.5,34.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - uid: 12665 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 + - uid: 12666 + components: + - type: Transform + pos: -24.5,27.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + pos: -22.5,27.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 5622 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 5010 + components: + - type: Transform + pos: -15.483648,41.795757 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: -23.54414,23.590565 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: 7.4917555,61.666073 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 3949 + components: + - type: Transform + pos: -46.338676,56.983215 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: -23.051952,23.63744 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: -15.7005,32.788635 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: -15.184875,32.788635 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 5616 + components: + - type: Transform + pos: -22.60664,23.63744 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: -15.718107,33.13569 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: -15.218107,33.13569 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 5577 + components: + - type: Transform + pos: -9.500415,23.553347 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 1603 + components: + - type: Transform + pos: -63.45173,21.569286 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -15.452398,41.295235 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: -15.499273,40.87292 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -15.666052,32.16287 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: -15.166052,32.19412 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: -28.492191,67.478546 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: -1.5103459,65.46932 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 5619 + components: + - type: Transform + pos: -23.545715,23.41713 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -15.681677,32.459743 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: -15.166052,32.459743 + parent: 2 + - uid: 14882 + components: + - type: Transform + pos: -15.483648,40.3724 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 5617 + components: + - type: Transform + pos: -23.119865,23.394785 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: -15.693133,33.480526 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: -15.224383,33.480526 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 5618 + components: + - type: Transform + pos: -22.57299,23.508427 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: -15.723933,33.744137 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: -15.270808,33.744137 + parent: 2 + - uid: 15374 + components: + - type: Transform + pos: -63.23223,43.68208 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 3033 + components: + - type: Transform + pos: -42.507744,67.10619 + parent: 2 + - uid: 13761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.477898,54.5684 + parent: 2 +- proto: MindShieldImplanter + entities: + - uid: 6440 + components: + - type: Transform + parent: 4675 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6441 + components: + - type: Transform + parent: 4675 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MiningDrill + entities: + - uid: 5999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.139629,65.638 + parent: 2 +- proto: MonkeyCubeBox + entities: + - uid: 2909 + components: + - type: Transform + pos: -48.50329,51.656883 + parent: 2 +- proto: MopBucket + entities: + - uid: 6628 + components: + - type: Transform + pos: -33.5,66.5 + parent: 2 +- proto: MopItem + entities: + - uid: 6629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.460297,66.52985 + parent: 2 +- proto: Morgue + entities: + - uid: 2063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,40.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,41.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,39.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,39.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,39.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,39.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + pos: -6.5,41.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 9004 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,8.5 + parent: 2 + - uid: 15488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 1762 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 15585 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: -46.5,70.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 +- proto: Multitool + entities: + - uid: 5810 + components: + - type: Transform + pos: 14.136366,38.607582 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: 13.75725,32.570263 + parent: 2 + - uid: 15390 + components: + - type: Transform + pos: 3.4062185,76.170845 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 799 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: -38.5,36.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + pos: 6.5,57.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 14504 + components: + - type: Transform + pos: 8.5,50.5 + parent: 2 + - uid: 14594 + components: + - type: Transform + pos: -43.5,3.5 + parent: 2 + - uid: 14670 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 14674 + components: + - type: Transform + pos: -55.5,70.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + pos: -49.5,13.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 788 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 5893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.343758,24.340204 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 5331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.651436,88.49884 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 6151 + components: + - type: Transform + pos: -9.5,74.5 + parent: 2 +- proto: NutimovCircuitBoard + entities: + - uid: 5332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.674873,88.2879 + parent: 2 +- proto: Ointment + entities: + - uid: 6103 + components: + - type: Transform + pos: -27.00537,31.413841 + parent: 2 +- proto: OperatingTable + entities: + - uid: 5686 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 +- proto: OreBag + entities: + - uid: 6000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.608379,65.559875 + parent: 2 +- proto: OreBox + entities: + - uid: 5990 + components: + - type: Transform + pos: 12.5,60.5 + parent: 2 + - uid: 10108 + components: + - type: Transform + pos: 13.5,60.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 15478 + components: + - type: Transform + pos: 8.5,66.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 202 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: -39.5,66.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: -41.5,36.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: 7.5,57.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 + - uid: 14669 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 14673 + components: + - type: Transform + pos: -56.5,70.5 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: -50.5,13.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + pos: 6.5,50.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 4640 + components: + - type: Transform + pos: -61.5,44.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: -77.5,1.5 + parent: 2 +- proto: PaintingOldGuitarist + entities: + - uid: 2666 + components: + - type: Transform + pos: -27.5,7.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 4698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,68.5 + parent: 2 +- proto: PaintingSaturn + entities: + - uid: 14429 + components: + - type: Transform + pos: -7.5,69.5 + parent: 2 +- proto: PaintingSkeletonBoof + entities: + - uid: 14480 + components: + - type: Transform + pos: -51.5,34.5 + parent: 2 +- proto: PaladinCircuitBoard + entities: + - uid: 5333 + components: + - type: Transform + pos: -28.32331,89.764465 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 5118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,50.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 2 + - uid: 13822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,61.5 + parent: 2 + - uid: 16632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 2 +- proto: PaperCNCSheet + entities: + - uid: 6026 + components: + - type: Transform + pos: -66.58486,56.824608 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: -66.44424,56.887108 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: -66.69424,56.996483 + parent: 2 +- proto: PaperOffice + entities: + - uid: 12867 + components: + - type: Transform + pos: 23.503674,21.476675 + parent: 2 + - type: Paper + content: >- + Murder is ok + + + -John Cybersun +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 561 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 +- proto: ParticleAcceleratorEmitterForeUnfinished + entities: + - uid: 4278 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 3494 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 6247 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 562 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 560 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 598 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 5968 + components: + - type: Transform + pos: 6.511981,55.526405 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: -21.457458,8.941744 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: 2.5573368,6.61458 + parent: 2 +- proto: PenCentcom + entities: + - uid: 7125 + components: + - type: Transform + pos: -16.047073,68.645805 + parent: 2 +- proto: PersonalAI + entities: + - uid: 4307 + components: + - type: Transform + pos: -53.449074,57.66107 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: -13.993704,68.58214 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 10.403913,67.50303 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: -18.482632,67.391785 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -59.46517,54.44537 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: -61.394196,24.644289 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: -18.487452,86.54992 + parent: 2 + - uid: 12105 + components: + - type: Transform + pos: -65.55703,58.84424 + parent: 2 + - uid: 16127 + components: + - type: Transform + pos: -63.326843,3.1033397 + parent: 2 + - uid: 16128 + components: + - type: Transform + pos: -81.491394,4.6182446 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 4939 + components: + - type: Transform + pos: -37.50039,40.6947 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: -13.531449,68.645805 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 3799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,58.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 15401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.4194317,59.611507 + parent: 2 + - uid: 16762 + components: + - type: Transform + pos: 7.48149,78.63226 + parent: 2 +- proto: PillCanisterTricordrazine + entities: + - uid: 5653 + components: + - type: Transform + pos: -15.759802,31.678493 + parent: 2 +- proto: PinpointerNuclear + entities: + - uid: 6603 + components: + - type: Transform + pos: -8.284235,70.678246 + parent: 2 +- proto: PirateHandyFlag + entities: + - uid: 16782 + components: + - type: Transform + pos: -68.575294,18.799225 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 783 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 6446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,45.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,45.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,45.5 + parent: 2 +- proto: PlasmaTankFilled + entities: + - uid: 7076 + components: + - type: Transform + parent: 11174 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7372 + components: + - type: Transform + parent: 11174 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8085 + components: + - type: Transform + parent: 11174 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8091 + components: + - type: Transform + parent: 11174 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8103 + components: + - type: Transform + parent: 11174 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8104 + components: + - type: Transform + parent: 11174 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8105 + components: + - type: Transform + parent: 11174 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8106 + components: + - type: Transform + parent: 11174 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 5028 + components: + - type: Transform + pos: -23.5,43.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 +- proto: PlasmaWindoorSecureScienceLocked + entities: + - uid: 6459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,44.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,44.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,44.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 6869 + components: + - type: Transform + pos: 15.5,74.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: 18.5,74.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: 15.5,78.5 + parent: 2 + - uid: 15476 + components: + - type: Transform + pos: 18.5,78.5 + parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 6450 + components: + - type: Transform + pos: 11.5,59.5 + parent: 2 +- proto: PlasticFlapsOpaque + entities: + - uid: 8084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,70.5 + parent: 2 +- proto: PlayerStationAi + entities: + - uid: 3021 + components: + - type: Transform + pos: -21.5,92.5 + parent: 2 +- proto: PlushieAtmosian + entities: + - uid: 15575 + components: + - type: Transform + pos: 12.495523,8.622502 + parent: 2 +- proto: PlushieDiona + entities: + - uid: 15577 + components: + - type: Transform + pos: -47.526115,23.615866 + parent: 2 + - uid: 15578 + components: + - type: Transform + pos: -49.48191,40.475338 + parent: 2 +- proto: PlushieHuman + entities: + - uid: 6375 + components: + - type: Transform + pos: -37.46559,2.5982568 + parent: 2 +- proto: PlushieLamp + entities: + - uid: 6078 + components: + - type: Transform + pos: -0.72262764,73.760124 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: -27.537634,5.6873207 + parent: 2 +- proto: PlushieMagicarp + entities: + - uid: 15755 + components: + - type: Transform + pos: -63.46846,43.643692 + parent: 2 +- proto: PlushieMoth + entities: + - uid: 15579 + components: + - type: Transform + pos: -20.504164,73.63314 + parent: 2 +- proto: PlushieNar + entities: + - uid: 12061 + components: + - type: Transform + pos: -48.86985,11.362445 + parent: 2 +- proto: PlushieNuke + entities: + - uid: 15580 + components: + - type: Transform + pos: 24.4269,22.48396 + parent: 2 +- proto: PlushieRatvar + entities: + - uid: 13552 + components: + - type: Transform + pos: 28.488108,49.620724 + parent: 2 +- proto: PlushieRGBee + entities: + - uid: 8372 + components: + - type: Transform + pos: -52.042824,58.739197 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: -55.373817,26.401688 + parent: 2 +- proto: PlushieSpaceLizard + entities: + - uid: 10205 + components: + - type: Transform + pos: 13.465258,50.308178 + parent: 2 +- proto: PlushieVox + entities: + - uid: 5804 + components: + - type: Transform + pos: -50.761574,57.59857 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 4859 + components: + - type: Transform + pos: -27.5,40.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -24.5,40.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: -28.5,47.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 5978 + components: + - type: Transform + pos: 6.5,54.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: -37.5,67.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + pos: -5.5,68.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 14584 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 15119 + components: + - type: Transform + pos: -81.5,10.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + pos: -47.5,7.5 + parent: 2 + - uid: 16606 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 9674 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 3146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.374225,3.5435266 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 2434 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 3145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.51485,2.4888391 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 6195 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 +- proto: PosterContrabandAmbrosiaVulgaris + entities: + - uid: 14738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,34.5 + parent: 2 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 10479 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 +- proto: PosterContrabandBorgFancy + entities: + - uid: 15398 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 14719 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 4696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,64.5 + parent: 2 +- proto: PosterContrabandCybersun600 + entities: + - uid: 14723 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 14724 + components: + - type: Transform + pos: -46.5,45.5 + parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 14725 + components: + - type: Transform + pos: -34.5,51.5 + parent: 2 +- proto: PosterContrabandGreyTide + entities: + - uid: 14700 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 +- proto: PosterContrabandInterdyne + entities: + - uid: 5677 + components: + - type: Transform + pos: -27.5,35.5 + parent: 2 +- proto: PosterContrabandLamarr + entities: + - uid: 5886 + components: + - type: Transform + pos: 18.5,45.5 + parent: 2 +- proto: PosterContrabandMissingGloves + entities: + - uid: 14729 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 14731 + components: + - type: Transform + pos: -10.5,75.5 + parent: 2 +- proto: PosterContrabandTools + entities: + - uid: 1680 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 +- proto: PosterLegit12Gauge + entities: + - uid: 14740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,37.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 14737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,26.5 + parent: 2 +- proto: PosterLegitBuild + entities: + - uid: 14721 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 +- proto: PosterLegitCarbonDioxide + entities: + - uid: 14722 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 +- proto: PosterLegitCarpMount + entities: + - uid: 14736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,44.5 + parent: 2 + - uid: 15941 + components: + - type: Transform + pos: -74.5,1.5 + parent: 2 +- proto: PosterLegitCleanliness + entities: + - uid: 14739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 14726 + components: + - type: Transform + pos: -30.5,43.5 + parent: 2 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 14728 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 +- proto: PosterLegitMime + entities: + - uid: 4699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,68.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 14732 + components: + - type: Transform + pos: -19.5,60.5 + parent: 2 +- proto: PosterLegitObey + entities: + - uid: 14730 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 +- proto: PosterLegitReportCrimes + entities: + - uid: 14733 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 14734 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 5150 + components: + - type: Transform + pos: -30.5,51.5 + parent: 2 + - uid: 14735 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 2136 + components: + - type: Transform + pos: -48.5,65.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: -71.5,39.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + pos: -24.5,58.5 + parent: 2 + - uid: 9021 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 9395 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + pos: -6.5,60.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + pos: -63.5,53.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: -32.5,60.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: -52.5,17.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + pos: -62.5,14.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 14777 + components: + - type: Transform + pos: -42.5,52.5 + parent: 2 + - uid: 14778 + components: + - type: Transform + pos: -28.5,52.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: -13.5,65.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: -28.5,55.5 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: -15.5,55.5 + parent: 2 + - uid: 14852 + components: + - type: Transform + pos: -71.5,61.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: -74.5,54.5 + parent: 2 + - uid: 14854 + components: + - type: Transform + pos: -80.5,70.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + pos: -54.5,22.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: -49.5,28.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: -56.5,27.5 + parent: 2 + - uid: 14879 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 14880 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 14881 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 14884 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 14887 + components: + - type: Transform + pos: 1.5,54.5 + parent: 2 + - uid: 14891 + components: + - type: Transform + pos: -12.5,67.5 + parent: 2 + - uid: 14893 + components: + - type: Transform + pos: -50.5,63.5 + parent: 2 + - uid: 14894 + components: + - type: Transform + pos: -63.5,65.5 + parent: 2 + - uid: 14896 + components: + - type: Transform + pos: -56.5,45.5 + parent: 2 + - uid: 14898 + components: + - type: Transform + pos: -61.5,39.5 + parent: 2 + - uid: 14899 + components: + - type: Transform + pos: -59.5,42.5 + parent: 2 + - uid: 14901 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + pos: -30.5,27.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 14907 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 14910 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + pos: -30.5,44.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + pos: -36.5,40.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 15008 + components: + - type: Transform + pos: -71.5,47.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 16627 + components: + - type: Transform + pos: -20.5,66.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 5872 + components: + - type: Transform + pos: 18.5,44.5 + parent: 2 +- proto: PowerCellHighPrinted + entities: + - uid: 5534 + components: + - type: Transform + pos: -40.195335,16.802526 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: -59.481956,72.64978 + parent: 2 +- proto: PowerCellMediumPrinted + entities: + - uid: 5535 + components: + - type: Transform + pos: -40.507835,16.896276 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 2751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,18.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: -28.5,66.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,43.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,67.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + pos: -15.5,91.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 +- proto: PowerDrill + entities: + - uid: 5874 + components: + - type: Transform + pos: 21.318085,46.692657 + parent: 2 +- proto: Poweredlight + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 2 + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,8.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,43.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -32.5,17.5 + parent: 2 + - uid: 679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,15.5 + parent: 2 + - uid: 680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,15.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,15.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,14.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,60.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,57.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,66.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,46.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,8.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,9.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,9.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,8.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,12.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,66.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,54.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,60.5 + parent: 2 + - uid: 9545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,77.5 + parent: 2 + - uid: 9695 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 + - uid: 9807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,70.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + pos: 12.5,78.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,51.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,56.5 + parent: 2 + - uid: 10008 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,45.5 + parent: 2 + - uid: 10120 + components: + - type: Transform + pos: -0.5,54.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 12114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,53.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + pos: 2.5,69.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,39.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,8.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,3.5 + parent: 2 + - uid: 13006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,14.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 + - uid: 13016 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,3.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,26.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,32.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,38.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,46.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,37.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,52.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,41.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,27.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: 12.5,45.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,42.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,42.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,25.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,35.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,23.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,27.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,25.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,19.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,23.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,26.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,28.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: -36.5,33.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,32.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,27.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,30.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,27.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,27.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,19.5 + parent: 2 + - uid: 13113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,19.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,30.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,36.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,35.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + pos: -61.5,36.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,35.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,39.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,52.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,52.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,52.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,52.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,52.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + pos: -29.5,58.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: -25.5,58.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + pos: -18.5,58.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + pos: -8.5,58.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: -36.5,58.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,60.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,40.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,44.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,38.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,42.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,42.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,43.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,38.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,46.5 + parent: 2 + - uid: 13158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,47.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + pos: -36.5,46.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,42.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,46.5 + parent: 2 + - uid: 13166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,61.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,60.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,61.5 + parent: 2 + - uid: 13171 + components: + - type: Transform + pos: -24.5,64.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,67.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,66.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,72.5 + parent: 2 + - uid: 13175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,71.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + pos: -18.5,75.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: -24.5,75.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,61.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + pos: -15.5,65.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,61.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,62.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,64.5 + parent: 2 + - uid: 13193 + components: + - type: Transform + pos: -5.5,66.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,57.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + pos: 10.5,65.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,64.5 + parent: 2 + - uid: 13201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,55.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,67.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,73.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,63.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,67.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + pos: -40.5,63.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + pos: -46.5,63.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + pos: -52.5,63.5 + parent: 2 + - uid: 13222 + components: + - type: Transform + pos: -58.5,63.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,62.5 + parent: 2 + - uid: 13225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,62.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,58.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,56.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + pos: -74.5,56.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,68.5 + parent: 2 + - uid: 13231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,65.5 + parent: 2 + - uid: 13232 + components: + - type: Transform + pos: -45.5,67.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: -51.5,67.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + pos: -56.5,67.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + pos: -62.5,67.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,65.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + pos: -59.5,60.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,56.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,56.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,47.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,45.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + pos: -54.5,43.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,38.5 + parent: 2 + - uid: 13254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,38.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,45.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,49.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,52.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,35.5 + parent: 2 + - uid: 13263 + components: + - type: Transform + pos: -69.5,49.5 + parent: 2 + - uid: 13264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,50.5 + parent: 2 + - uid: 13265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,41.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + pos: -87.5,56.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,54.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + pos: -83.5,70.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,68.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: -56.5,20.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - uid: 13935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + - uid: 14426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,60.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + pos: -78.5,16.5 + parent: 2 + - uid: 14783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 2 + - uid: 14784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 2 + - uid: 14793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 14890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,45.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + pos: 6.5,78.5 + parent: 2 + - uid: 15303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,86.5 + parent: 2 + - uid: 15304 + components: + - type: Transform + pos: -23.5,88.5 + parent: 2 + - uid: 15305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,89.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,90.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,91.5 + parent: 2 + - uid: 15317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,91.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + pos: -48.5,49.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + pos: -91.5,56.5 + parent: 2 + - uid: 15799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,68.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,66.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,71.5 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: -76.5,0.5 + parent: 2 + - uid: 15943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,2.5 + parent: 2 + - uid: 15944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,6.5 + parent: 2 + - uid: 15945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,7.5 + parent: 2 + - uid: 16110 + components: + - type: Transform + pos: -59.5,17.5 + parent: 2 + - uid: 16516 + components: + - type: Transform + pos: -3.5,82.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,80.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,78.5 + parent: 2 + - type: PointLight + enabled: False + - type: DamageOnInteract + isDamageActive: False + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 16520 + - type: ApcPowerReceiver + powerLoad: 10 + - uid: 16588 + components: + - type: Transform + pos: 10.5,82.5 + parent: 2 + - type: PointLight + enabled: False + - type: DamageOnInteract + isDamageActive: False + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 16589 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,49.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 8250 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 973 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: -86.5,17.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: 13.5,51.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + pos: -15.5,83.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + pos: -15.5,80.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: 16.5,60.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + pos: -75.5,43.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 2 + - uid: 13409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - uid: 14153 + components: + - type: Transform + pos: -59.5,76.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 16502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,84.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 14 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 2 + - uid: 559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,14.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: -38.5,73.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,34.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,51.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: -37.5,36.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,91.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: 29.5,49.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,52.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,33.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 8771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,72.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + pos: -64.5,19.5 + parent: 2 + - uid: 9699 + components: + - type: Transform + pos: -21.5,94.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,31.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,40.5 + parent: 2 + - uid: 13071 + components: + - type: Transform + pos: 20.5,47.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,12.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,24.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,24.5 + parent: 2 + - uid: 13082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,26.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,26.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,30.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,30.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,30.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + pos: -60.5,33.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,23.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,23.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,32.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,32.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,24.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,49.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,49.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,49.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,49.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,49.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,49.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,38.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,41.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,38.5 + parent: 2 + - uid: 13155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,44.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,48.5 + parent: 2 + - uid: 13160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,50.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,41.5 + parent: 2 + - uid: 13165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,39.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,39.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,67.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,62.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,75.5 + parent: 2 + - uid: 13180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,72.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,73.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + pos: -8.5,70.5 + parent: 2 + - uid: 13183 + components: + - type: Transform + pos: -10.5,66.5 + parent: 2 + - uid: 13184 + components: + - type: Transform + pos: -12.5,70.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,67.5 + parent: 2 + - uid: 13194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,68.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,55.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,52.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,75.5 + parent: 2 + - uid: 13212 + components: + - type: Transform + pos: 0.5,76.5 + parent: 2 + - uid: 13213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,73.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,65.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,69.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,72.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + pos: -67.5,66.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,41.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,38.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,71.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,38.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,43.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,55.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 + - uid: 13346 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 13353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - uid: 13354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,74.5 + parent: 2 + - uid: 13355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,66.5 + parent: 2 + - uid: 13356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,45.5 + parent: 2 + - uid: 13358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,32.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,20.5 + parent: 2 + - uid: 13968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,32.5 + parent: 2 + - uid: 14238 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 14242 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 14277 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 14602 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,77.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 14795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 + - uid: 14828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 + - uid: 14829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - uid: 14832 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 15223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,38.5 + parent: 2 + - uid: 15307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,86.5 + parent: 2 + - uid: 15315 + components: + - type: Transform + pos: -15.5,91.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - uid: 15484 + components: + - type: Transform + pos: 16.5,75.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,77.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,70.5 + parent: 2 + - uid: 16003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,0.5 + parent: 2 + - uid: 16004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-0.5 + parent: 2 + - uid: 16013 + components: + - type: Transform + pos: -67.5,6.5 + parent: 2 + - uid: 16642 + components: + - type: Transform + pos: -13.5,50.5 + parent: 2 + - uid: 16643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,47.5 + parent: 2 +- proto: PresentRandom + entities: + - uid: 5594 + components: + - type: Transform + pos: -66.74379,12.63207 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: -21.630596,55.345287 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: -21.489971,56.345287 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: -22.864971,54.892162 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: -22.005596,54.876537 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: -23.427471,55.501537 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: -23.411846,56.345287 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -39.450897,33.51881 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: -60.17829,9.635829 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: -60.943916,9.635829 + parent: 2 + - uid: 10340 + components: + - type: Transform + pos: -9.50252,10.634818 + parent: 2 + - uid: 15350 + components: + - type: Transform + pos: -57.292038,55.797287 + parent: 2 + - uid: 15351 + components: + - type: Transform + pos: -56.542038,56.391037 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: 3.5937185,77.014595 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: -1.5520172,72.67265 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: -57.792038,56.391037 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: -14.419653,32.468876 + parent: 2 + - uid: 15487 + components: + - type: Transform + pos: -60.498016,25.594759 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: -8.50803,4.330428 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: 7.4579153,35.724957 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: 14.83531,38.536007 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: -35.564705,45.56895 + parent: 2 + - uid: 15515 + components: + - type: Transform + pos: -35.564705,44.740826 + parent: 2 + - uid: 15516 + components: + - type: Transform + pos: -35.502205,43.9127 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: -35.502205,43.0377 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: -35.502205,42.615826 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: -20.72513,72.59908 + parent: 2 + - uid: 15523 + components: + - type: Transform + pos: -15.435194,65.41911 + parent: 2 + - uid: 15524 + components: + - type: Transform + pos: -9.553135,64.59099 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: -58.441887,33.360012 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -35.29947,23.620623 + parent: 2 + - uid: 15529 + components: + - type: Transform + pos: -39.315094,23.698748 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: -66.41477,55.61628 + parent: 2 +- proto: Protolathe + entities: + - uid: 15806 + components: + - type: Transform + pos: 10.5,37.5 + parent: 2 +- proto: Rack + entities: + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,2.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,3.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,79.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: -28.5,38.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: -22.5,38.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: -22.5,39.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: -62.5,33.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,38.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: -28.5,64.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: 6.5,55.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: 7.5,55.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 10.5,55.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: -69.5,73.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: -61.5,3.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 9048 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + pos: 12.5,48.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + pos: 2.5,57.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + pos: -5.5,69.5 + parent: 2 + - uid: 9052 + components: + - type: Transform + pos: -49.5,70.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + pos: -48.5,70.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + pos: -61.5,70.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: -66.5,30.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: -66.5,29.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + pos: -46.5,14.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 9061 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + pos: -66.5,25.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + pos: -66.5,75.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - uid: 14024 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + pos: -64.5,74.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + pos: -63.5,74.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: -62.5,74.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: -64.5,72.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + pos: -63.5,72.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: -62.5,72.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: -61.5,72.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 14592 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,14.5 + parent: 2 + - uid: 15155 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 15190 + components: + - type: Transform + pos: 3.5,78.5 + parent: 2 + - uid: 15269 + components: + - type: Transform + pos: 4.5,78.5 + parent: 2 + - uid: 15427 + components: + - type: Transform + pos: -26.5,62.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + pos: -70.5,14.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 + - uid: 15813 + components: + - type: Transform + pos: -33.5,36.5 + parent: 2 + - uid: 16015 + components: + - type: Transform + pos: -65.5,50.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,59.5 + parent: 2 + - uid: 16617 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 +- proto: RadiationCollectorFlatpack + entities: + - uid: 4514 + components: + - type: Transform + parent: 1064 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4709 + components: + - type: Transform + parent: 1064 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4710 + components: + - type: Transform + parent: 1064 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4711 + components: + - type: Transform + parent: 1064 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5011 + components: + - type: Transform + parent: 8086 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6193 + components: + - type: Transform + parent: 8086 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6266 + components: + - type: Transform + parent: 8086 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6322 + components: + - type: Transform + parent: 8086 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8107 + components: + - type: Transform + parent: 11184 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8108 + components: + - type: Transform + parent: 11184 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8111 + components: + - type: Transform + parent: 11184 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9394 + components: + - type: Transform + parent: 11184 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RadioHandheld + entities: + - uid: 2915 + components: + - type: Transform + pos: -22.653229,0.411201 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: -22.387604,0.723701 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: -22.746979,0.754951 + parent: 2 +- proto: RagItem + entities: + - uid: 15707 + components: + - type: Transform + pos: -77.54533,-0.44415522 + parent: 2 +- proto: Railing + entities: + - uid: 1074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,61.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,62.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,60.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,59.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,61.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,59.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,58.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,57.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,60.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,61.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,61.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,60.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,61.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,57.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,58.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,59.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: -45.5,56.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: -42.5,56.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,39.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: -59.5,57.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: -58.5,57.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: -57.5,57.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: -60.5,57.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: -61.5,57.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: -56.5,57.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,38.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,39.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,39.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,55.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,55.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: -22.5,54.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,56.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: -32.5,55.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: -31.5,55.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: -30.5,55.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,56.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,56.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,56.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,56.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,56.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,56.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: -13.5,55.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: -12.5,55.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: -11.5,55.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: -62.5,57.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: -64.5,1.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: -63.5,1.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: -62.5,1.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 2311 + components: + - type: Transform + pos: -41.5,56.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,56.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,61.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,61.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,39.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: -21.5,54.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,54.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,56.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,56.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: -29.5,55.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,56.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,56.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,55.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: -10.5,55.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,56.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,56.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,55.5 + parent: 2 +- proto: RandomArcade + entities: + - uid: 2430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,33.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: -49.5,31.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: -51.5,31.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,33.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,33.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: -47.5,31.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 5588 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: 9.5,78.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 6350 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 6928 + components: + - type: Transform + pos: -60.5,54.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: -60.5,50.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: -60.5,48.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: -57.5,47.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 16786 + components: + - type: Transform + pos: -51.5,60.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 7008 + components: + - type: Transform + pos: -51.5,61.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,66.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,65.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,67.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 6755 + components: + - type: Transform + pos: 6.5,65.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 14665 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 14706 + components: + - type: Transform + pos: -55.5,58.5 + parent: 2 + - uid: 14707 + components: + - type: Transform + pos: -46.5,64.5 + parent: 2 + - uid: 14713 + components: + - type: Transform + pos: 15.5,72.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + pos: 12.5,64.5 + parent: 2 + - uid: 14748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,25.5 + parent: 2 + - uid: 14749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,29.5 + parent: 2 + - uid: 14750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,26.5 + parent: 2 + - uid: 14757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,22.5 + parent: 2 + - uid: 14760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,12.5 + parent: 2 + - uid: 14762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,42.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,48.5 + parent: 2 + - uid: 14764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,51.5 + parent: 2 + - uid: 14771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,10.5 + parent: 2 + - uid: 14774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 2 + - uid: 15929 + components: + - type: Transform + pos: -69.5,4.5 + parent: 2 + - uid: 15931 + components: + - type: Transform + pos: -72.5,13.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + pos: -69.5,17.5 + parent: 2 + - uid: 15933 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 15934 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 15936 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - uid: 15937 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 6989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,22.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 14121 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 14693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,72.5 + parent: 2 + - uid: 14694 + components: + - type: Transform + pos: -61.5,71.5 + parent: 2 + - uid: 14695 + components: + - type: Transform + pos: -64.5,71.5 + parent: 2 + - uid: 14696 + components: + - type: Transform + pos: -64.5,39.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + pos: -64.5,27.5 + parent: 2 + - uid: 14699 + components: + - type: Transform + pos: -57.5,7.5 + parent: 2 + - uid: 14714 + components: + - type: Transform + pos: 11.5,60.5 + parent: 2 + - uid: 14759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,5.5 + parent: 2 + - uid: 15938 + components: + - type: Transform + pos: -82.5,6.5 + parent: 2 + - uid: 15939 + components: + - type: Transform + pos: -77.5,13.5 + parent: 2 + - uid: 15940 + components: + - type: Transform + pos: -76.5,1.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 12780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,42.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 14702 + components: + - type: Transform + pos: -53.5,44.5 + parent: 2 + - uid: 14703 + components: + - type: Transform + pos: -63.5,51.5 + parent: 2 + - uid: 14705 + components: + - type: Transform + pos: -58.5,61.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + pos: -28.5,59.5 + parent: 2 + - uid: 14710 + components: + - type: Transform + pos: -11.5,59.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + pos: -7.5,65.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 14718 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,47.5 + parent: 2 + - uid: 14742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,41.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,30.5 + parent: 2 + - uid: 14744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,22.5 + parent: 2 + - uid: 14745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,22.5 + parent: 2 + - uid: 14746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,18.5 + parent: 2 + - uid: 14747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,23.5 + parent: 2 + - uid: 14752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,37.5 + parent: 2 + - uid: 14754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,51.5 + parent: 2 + - uid: 14755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,71.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,67.5 + parent: 2 + - uid: 14766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,71.5 + parent: 2 + - uid: 14767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,31.5 + parent: 2 + - uid: 14768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,26.5 + parent: 2 + - uid: 14769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 2 + - uid: 14772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 2 + - uid: 14776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,37.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 9816 + components: + - type: Transform + pos: -33.5,68.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: -63.5,30.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + pos: -9.5,66.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 3912 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: -61.5,55.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: -44.5,69.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: -56.5,16.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + pos: -61.5,15.5 + parent: 2 + - uid: 15145 + components: + - type: Transform + pos: -64.5,12.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + pos: -66.5,9.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + pos: -66.5,17.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: -74.5,14.5 + parent: 2 + - uid: 15150 + components: + - type: Transform + pos: -70.5,5.5 + parent: 2 + - uid: 15152 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 15426 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 15536 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: -62.5,3.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 15672 + components: + - type: Transform + pos: -15.5,48.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 15674 + components: + - type: Transform + pos: -5.5,47.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + pos: -41.5,72.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: -49.5,73.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: -58.5,73.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: -70.5,72.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + pos: -80.5,68.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + pos: -72.5,70.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + pos: -71.5,57.5 + parent: 2 + - uid: 15704 + components: + - type: Transform + pos: -78.5,54.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: -86.5,55.5 + parent: 2 + - uid: 15706 + components: + - type: Transform + pos: -73.5,49.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + pos: -60.5,31.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: -55.5,28.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: -51.5,25.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: -50.5,32.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: -66.5,23.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: -61.5,49.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: -56.5,46.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: -52.5,48.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: -48.5,45.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: -48.5,42.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: -53.5,39.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: -56.5,52.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: -58.5,60.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: -62.5,65.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: -55.5,67.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: -50.5,65.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: -44.5,65.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: -43.5,66.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -42.5,58.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: -48.5,57.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -40.5,60.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: -63.5,42.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + pos: -68.5,55.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + pos: -66.5,60.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + pos: -54.5,74.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: -75.5,9.5 + parent: 2 + - uid: 16154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,11.5 + parent: 2 + - uid: 16155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,6.5 + parent: 2 + - uid: 16156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,4.5 + parent: 2 + - uid: 16157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,2.5 + parent: 2 + - uid: 16158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-0.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-0.5 + parent: 2 + - uid: 16160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,10.5 + parent: 2 + - uid: 16574 + components: + - type: Transform + pos: -3.5,80.5 + parent: 2 + - uid: 16575 + components: + - type: Transform + pos: -1.5,82.5 + parent: 2 + - uid: 16576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,80.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,82.5 + parent: 2 + - uid: 16578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,81.5 + parent: 2 + - uid: 16579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,80.5 + parent: 2 + - uid: 16587 + components: + - type: Transform + pos: -3.5,76.5 + parent: 2 + - uid: 16604 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 16605 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 6085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,71.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,62.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: -27.5,62.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,75.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + pos: -62.5,27.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: -26.5,57.5 + parent: 2 + - uid: 15592 + components: + - type: Transform + pos: -18.5,54.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: -8.5,57.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + pos: -3.5,61.5 + parent: 2 + - uid: 15596 + components: + - type: Transform + pos: -5.5,65.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + pos: 7.5,71.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + pos: 10.5,75.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + pos: 13.5,68.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + pos: 4.5,67.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + pos: 0.5,64.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + pos: 9.5,58.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + pos: 10.5,63.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + pos: 3.5,56.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - uid: 15614 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 15615 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + pos: 7.5,43.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + pos: 17.5,36.5 + parent: 2 + - uid: 15624 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 15629 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 15631 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 15654 + components: + - type: Transform + pos: -45.5,20.5 + parent: 2 + - uid: 15655 + components: + - type: Transform + pos: -45.5,28.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + pos: -38.5,24.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: -26.5,32.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + pos: -17.5,32.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: -27.5,39.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + pos: -31.5,47.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + pos: -38.5,50.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: -36.5,44.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: -37.5,38.5 + parent: 2 + - uid: 15671 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 + - uid: 15676 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 15678 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + pos: -21.5,64.5 + parent: 2 + - uid: 15681 + components: + - type: Transform + pos: -25.5,69.5 + parent: 2 + - uid: 15682 + components: + - type: Transform + pos: -19.5,73.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: -13.5,69.5 + parent: 2 + - uid: 15684 + components: + - type: Transform + pos: -16.5,64.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + pos: -13.5,60.5 + parent: 2 + - uid: 15686 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 + - uid: 15688 + components: + - type: Transform + pos: -32.5,63.5 + parent: 2 + - uid: 15690 + components: + - type: Transform + pos: -33.5,70.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + pos: -35.5,67.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + pos: -72.5,38.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: -69.5,46.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: -64.5,35.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: -51.5,35.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: -61.5,21.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 2772 + components: + - type: Transform + pos: 0.5,60.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: -73.5,63.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + pos: -0.5,60.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: -62.5,19.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: -58.5,25.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + pos: -73.5,64.5 + parent: 2 + - uid: 9689 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + pos: -66.5,26.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + pos: 7.5,50.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 2788 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: 22.5,36.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: -33.5,23.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: -14.5,72.5 + parent: 2 + - uid: 9669 + components: + - type: Transform + pos: -54.5,61.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + pos: 0.5,44.5 + parent: 2 + - uid: 9676 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 + - uid: 9680 + components: + - type: Transform + pos: -73.5,62.5 + parent: 2 + - uid: 10351 + components: + - type: Transform + pos: -68.5,40.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 5780 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: -68.5,39.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: -15.5,72.5 + parent: 2 + - uid: 9668 + components: + - type: Transform + pos: -54.5,60.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + pos: -43.5,27.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 9681 + components: + - type: Transform + pos: -73.5,61.5 + parent: 2 + - uid: 12118 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 15282 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 +- proto: RCD + entities: + - uid: 6329 + components: + - type: Transform + pos: -27.598383,6.502013 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: -21.489529,10.644869 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 6332 + components: + - type: Transform + pos: -27.317133,6.408263 + parent: 2 + - uid: 6333 + components: + - type: Transform + pos: -27.301508,6.548888 + parent: 2 +- proto: ReagentContainerFlour + entities: + - uid: 14364 + components: + - type: Transform + pos: -58.531708,-1.3598032 + parent: 2 +- proto: Recycler + entities: + - uid: 6451 + components: + - type: Transform + pos: 10.5,61.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,71.5 + parent: 2 +- proto: ReinforcedGirder + entities: + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,6.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + pos: -56.5,74.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - uid: 915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - uid: 917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,41.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,40.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,39.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + pos: -30.5,41.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: -30.5,42.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,31.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,33.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,27.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 9641 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 14065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 14404 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 14408 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 14414 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + - uid: 304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-4.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,16.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,15.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: -64.5,79.5 + parent: 2 + - uid: 687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,18.5 + parent: 2 + - uid: 688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,18.5 + parent: 2 + - uid: 690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - uid: 694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,16.5 + parent: 2 + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - uid: 697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,18.5 + parent: 2 + - uid: 698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,18.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: -68.5,64.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,39.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,40.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: -37.5,27.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: -25.5,61.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,29.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,29.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,26.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,27.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,27.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,27.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: -31.5,28.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,40.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,39.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,41.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -89.5,68.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: -64.5,77.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: -45.5,73.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -43.5,73.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: -42.5,73.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: -41.5,73.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: -44.5,73.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -2.5,67.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: -1.5,69.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,51.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,48.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,50.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: -20.5,42.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: -17.5,42.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,51.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,51.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,51.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,51.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,51.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,51.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,51.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,51.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: -6.5,45.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: -62.5,77.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,75.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: -25.5,64.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,75.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,76.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,76.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,76.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,76.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,76.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,76.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,76.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,76.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,76.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,75.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,77.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,76.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,77.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,76.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 6.5,43.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 6.5,45.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,63.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,65.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,64.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: 11.5,52.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: 13.5,52.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: 12.5,52.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: 11.5,54.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: 13.5,54.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: 12.5,54.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: 11.5,56.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: 13.5,56.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + pos: 12.5,56.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + pos: 11.5,58.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: 12.5,58.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: 13.5,58.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: -25.5,63.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: -25.5,62.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: -36.5,62.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: -37.5,41.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: -36.5,41.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: -34.5,42.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: -34.5,43.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,42.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,43.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,44.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: -36.5,60.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: -76.5,-1.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,45.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,50.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,50.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,50.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,50.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,50.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,31.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,33.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,32.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,36.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,37.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: 0.5,70.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: 1.5,70.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: -89.5,70.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -74.5,59.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: -76.5,53.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: -77.5,53.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + pos: -78.5,53.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + pos: -84.5,53.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: -86.5,53.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + pos: -87.5,53.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: -88.5,53.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: -85.5,53.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: -88.5,57.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -84.5,57.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: -83.5,57.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + pos: -82.5,57.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + pos: -81.5,57.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + pos: -77.5,57.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + pos: -76.5,57.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + pos: -74.5,61.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -74.5,60.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: -74.5,63.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: -74.5,65.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: -74.5,62.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: -74.5,64.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: -76.5,67.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: -77.5,67.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: -81.5,67.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: -83.5,67.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: -84.5,67.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: -82.5,67.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: -88.5,67.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: -89.5,54.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: -89.5,56.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: -62.5,79.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: -63.5,79.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: -67.5,24.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: -67.5,26.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + pos: -67.5,23.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: -67.5,25.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: -69.5,20.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + pos: -70.5,20.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: -73.5,16.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: -63.5,77.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: -74.5,16.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: -75.5,16.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: -81.5,16.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: -83.5,16.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: -82.5,16.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: -81.5,14.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: -82.5,14.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: -83.5,14.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: -82.5,7.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: -77.5,-1.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: -82.5,3.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: -82.5,4.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: -82.5,5.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: -78.5,-1.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: -75.5,-1.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: -69.5,-2.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: -42.5,44.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: -42.5,45.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: -42.5,43.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: -19.5,85.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: -21.5,85.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: -22.5,85.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: -23.5,85.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: -20.5,85.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 8725 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 8726 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 9400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 2 + - uid: 9575 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 9576 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 9581 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,18.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 11008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,39.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,68.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,41.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,74.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + pos: -36.5,61.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: -33.5,59.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,47.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,44.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,43.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,42.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,39.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,39.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,39.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,39.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,41.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,41.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,41.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,37.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,37.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,37.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,45.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,45.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,45.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,47.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,47.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,47.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,49.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,49.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,49.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,49.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,50.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + pos: 28.5,50.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + pos: 30.5,47.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: -48.5,75.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: -49.5,75.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + pos: -50.5,75.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + pos: -52.5,75.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: -56.5,75.5 + parent: 2 + - uid: 14116 + components: + - type: Transform + pos: -58.5,75.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 14118 + components: + - type: Transform + pos: -60.5,75.5 + parent: 2 + - uid: 14119 + components: + - type: Transform + pos: -61.5,75.5 + parent: 2 + - uid: 14432 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 14434 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 14435 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 14436 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 14441 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + pos: 30.5,44.5 + parent: 2 + - uid: 14782 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 14835 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 15422 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 15423 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 15453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 15465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,73.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,79.5 + parent: 2 + - uid: 15468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,73.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,79.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,73.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,74.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,74.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,74.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,74.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 15547 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 15549 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 15552 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,56.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,68.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,70.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,54.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 16417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,79.5 + parent: 2 + - uid: 16461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,84.5 + parent: 2 + - uid: 16462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,86.5 + parent: 2 + - uid: 16463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,85.5 + parent: 2 + - uid: 16464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,84.5 + parent: 2 + - uid: 16465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,86.5 + parent: 2 + - uid: 16466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,85.5 + parent: 2 + - uid: 16467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,84.5 + parent: 2 + - uid: 16468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,86.5 + parent: 2 + - uid: 16469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,85.5 + parent: 2 + - uid: 16470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,83.5 + parent: 2 + - uid: 16471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,83.5 + parent: 2 + - uid: 16472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,83.5 + parent: 2 + - uid: 16473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,84.5 + parent: 2 + - uid: 16474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,86.5 + parent: 2 + - uid: 16475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,85.5 + parent: 2 + - uid: 16476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,84.5 + parent: 2 + - uid: 16477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,86.5 + parent: 2 + - uid: 16478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,85.5 + parent: 2 + - uid: 16479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,84.5 + parent: 2 + - uid: 16480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,86.5 + parent: 2 + - uid: 16481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,85.5 + parent: 2 + - uid: 16482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,79.5 + parent: 2 + - uid: 16483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,81.5 + parent: 2 + - uid: 16484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,80.5 + parent: 2 + - uid: 16777 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 1410 + components: + - type: Transform + pos: 22.5,39.5 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 4724 + components: + - type: Transform + pos: -53.4355,66.14592 + parent: 2 +- proto: RiotBulletShield + entities: + - uid: 15381 + components: + - type: Transform + pos: -22.60423,41.45448 + parent: 2 + - uid: 15810 + components: + - type: Transform + pos: -22.32298,41.407604 + parent: 2 + - uid: 16755 + components: + - type: Transform + pos: -22.494856,41.657604 + parent: 2 +- proto: RiotLaserShield + entities: + - uid: 14727 + components: + - type: Transform + pos: -22.69798,40.54823 + parent: 2 + - uid: 15372 + components: + - type: Transform + pos: -22.26048,40.42323 + parent: 2 +- proto: RiotShield + entities: + - uid: 13800 + components: + - type: Transform + pos: -22.66673,41.657604 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: -22.29173,41.657604 + parent: 2 + - uid: 16756 + components: + - type: Transform + pos: -22.494856,41.407604 + parent: 2 +- proto: RobocopCircuitBoard + entities: + - uid: 5334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.252998,89.15509 + parent: 2 +- proto: RollerBed + entities: + - uid: 9185 + components: + - type: Transform + pos: -24.543022,25.736662 + parent: 2 +- proto: RubberChicken + entities: + - uid: 14166 + components: + - type: Transform + pos: -47.52852,72.470055 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 6065 + components: + - type: Transform + pos: -0.30075264,73.791374 + parent: 2 + - uid: 13261 + components: + - type: Transform + pos: -34.67875,62.843006 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 9172 + components: + - type: Transform + pos: -0.50387764,73.385124 + parent: 2 + - uid: 13262 + components: + - type: Transform + pos: -34.61625,62.530506 + parent: 2 +- proto: RubberStampGreytide + entities: + - uid: 16592 + components: + - type: Transform + pos: -64.50948,3.2847114 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 5935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,57.5 + parent: 2 +- proto: Scalpel + entities: + - uid: 5693 + components: + - type: Transform + pos: -12.491147,24.644745 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: -65.56092,8.724505 + parent: 2 +- proto: ScrapCamera + entities: + - uid: 16148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.502426,6.52505 + parent: 2 +- proto: Screen + entities: + - uid: 12817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,43.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,34.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,50.5 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 4840 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 2914 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: -53.5,40.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 15726 + components: + - type: Transform + pos: -82.4969,8.744164 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: -82.16878,8.322289 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: -80.48128,8.197289 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -80.13753,9.228539 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: -79.4344,8.619165 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: -79.57503,6.6347904 + parent: 2 + - uid: 16580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.4517164,80.488045 + parent: 2 + - uid: 16581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.6392164,81.363045 + parent: 2 + - uid: 16582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.6860914,82.519295 + parent: 2 + - uid: 16583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.6235914,81.44117 + parent: 2 + - uid: 16584 + components: + - type: Transform + pos: -1.2982836,78.50367 + parent: 2 + - uid: 16585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.257722,81.78492 + parent: 2 +- proto: SheetGlass + entities: + - uid: 1809 + components: + - type: Transform + pos: -12.628256,3.6315305 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: -66.38844,75.5235 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: -24.369856,42.532604 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: 15.792616,38.545082 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: 15.792616,38.545082 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 6.386981,55.57328 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: 2.6319695,60.676994 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: -35.630722,16.88498 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 200 + components: + - type: Transform + pos: -10.62297,1.5729475 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: 13.5184765,42.652447 + parent: 2 +- proto: SheetPlasma10 + entities: + - uid: 4264 + components: + - type: Transform + pos: -37.059914,30.546822 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 5969 + components: + - type: Transform + pos: 7.340106,55.495155 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: -35.522938,15.450609 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 3139 + components: + - type: Transform + pos: -12.534506,4.506531 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: -24.338606,42.595104 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: -13.254843,33.658413 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: 16.417616,38.560707 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: 16.417616,38.560707 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: 2.0382195,60.645744 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: -35.552597,16.13823 + parent: 2 +- proto: SheetSteel + entities: + - uid: 1805 + components: + - type: Transform + pos: -12.425131,2.5690305 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: 1.8698368,6.61458 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: -66.73219,75.42975 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: -66.27907,75.30475 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: -24.651106,42.57948 + parent: 2 + - uid: 5812 + components: + - type: Transform + pos: 15.230116,38.607582 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: 15.294096,38.60957 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 7.746356,55.557655 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: 1.4288445,60.63012 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: -35.521347,17.603731 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: 1.4167118,6.61458 + parent: 2 +- proto: SheetUranium + entities: + - uid: 201 + components: + - type: Transform + pos: -10.31047,1.6041975 + parent: 2 + - uid: 3141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.46994,0.41636562 + parent: 2 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 4259 + components: + - type: Transform + pos: -39.5,34.5 + parent: 2 +- proto: ShotGunCabinetOpen + entities: + - uid: 9397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,47.5 + parent: 2 + - type: AccessReader + access: + - - Bar + - - Command + - - Security +- proto: Shovel + entities: + - uid: 6011 + components: + - type: Transform + pos: 7.3355055,59.509823 + parent: 2 +- proto: ShowcaseRobot + entities: + - uid: 7472 + components: + - type: Transform + pos: -19.5,86.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: -23.5,86.5 + parent: 2 +- proto: ShowcaseRobotAntique + entities: + - uid: 7475 + components: + - type: Transform + pos: -22.5,86.5 + parent: 2 +- proto: ShowcaseRobotMarauder + entities: + - uid: 7474 + components: + - type: Transform + pos: -21.5,86.5 + parent: 2 +- proto: ShowcaseRobotWhite + entities: + - uid: 7473 + components: + - type: Transform + pos: -20.5,86.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 3087 + components: + - type: Transform + pos: -36.5,60.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: -36.5,61.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: -36.5,62.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: -36.5,63.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: -33.5,59.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,51.5 + parent: 2 + - uid: 14897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,51.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,51.5 + parent: 2 + - uid: 15039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,51.5 + parent: 2 + - uid: 15040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,51.5 + parent: 2 + - uid: 15051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,51.5 + parent: 2 + - uid: 15053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,51.5 + parent: 2 + - uid: 15055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,51.5 + parent: 2 +- proto: ShuttersWindowOpen + entities: + - uid: 3872 + components: + - type: Transform + pos: -46.5,47.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: -46.5,48.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: -46.5,46.5 + parent: 2 + - uid: 14273 + components: + - type: Transform + pos: -54.5,47.5 + parent: 2 + - uid: 14274 + components: + - type: Transform + pos: -54.5,48.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 15889 + components: + - type: Transform + pos: -49.580864,15.578938 + parent: 2 +- proto: SignAi + entities: + - uid: 7130 + components: + - type: Transform + pos: -15.5,74.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + pos: -15.5,85.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + pos: -20.5,89.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 7132 + components: + - type: Transform + pos: -25.5,86.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 3554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,64.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3090: + - Pressed: Toggle + 3089: + - Pressed: Toggle + 3088: + - Pressed: Toggle + 3087: + - Pressed: Toggle + 3203: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 14058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13874: + - Pressed: DoorBolt + - uid: 14059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13875: + - Pressed: DoorBolt + - uid: 14060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13876: + - Pressed: DoorBolt + - uid: 14061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13873: + - Pressed: DoorBolt +- proto: SignAnomaly + entities: + - uid: 1790 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 12629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,41.5 + parent: 2 +- proto: SignArcade + entities: + - uid: 4751 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 5192 + components: + - type: Transform + pos: -28.5,43.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 1423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,18.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 7134 + components: + - type: Transform + pos: -24.5,65.5 + parent: 2 +- proto: SignCans + entities: + - uid: 82 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 +- proto: SignCansScience + entities: + - uid: 1459 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 14573 + components: + - type: Transform + pos: -59.5,18.5 + parent: 2 + - uid: 16590 + components: + - type: Transform + pos: -55.5,18.5 + parent: 2 +- proto: SignChem + entities: + - uid: 5186 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,30.5 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 14994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.811966,61.670376 + parent: 2 + - uid: 15017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.480223,59.244827 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 14889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,18.5 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 1760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,21.5 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 14987 + components: + - type: Transform + pos: -0.4613104,51.105392 + parent: 2 + - uid: 14988 + components: + - type: Transform + pos: -0.4979391,36.2986 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: -0.4979391,22.903978 + parent: 2 + - uid: 14990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.512413,22.69909 + parent: 2 + - uid: 14991 + components: + - type: Transform + pos: -46.516327,34.72037 + parent: 2 + - uid: 14992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.50939,37.70288 + parent: 2 + - uid: 14993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.82759,61.8735 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 1188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,34.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,37.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,37.5 + parent: 2 + - uid: 14998 + components: + - type: Transform + pos: -70.5,53.5 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 12410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,53.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.79634,61.482876 + parent: 2 + - uid: 14999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.51287,61.87282 + parent: 2 + - uid: 15001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,51.5 + parent: 2 + - uid: 15002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.47696447,51.880978 + parent: 2 + - uid: 15003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.4973927,59.66944 + parent: 2 + - uid: 15004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5157,34.30335 + parent: 2 + - uid: 15005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.48445,21.096697 + parent: 2 + - uid: 15006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.4980688,34.307365 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 2973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,64.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,64.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.780716,61.264126 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 14935 + components: + - type: Transform + pos: -7.5008183,59.295296 + parent: 2 + - uid: 14936 + components: + - type: Transform + pos: -0.4830103,51.301132 + parent: 2 + - uid: 14937 + components: + - type: Transform + pos: -42.505264,51.285507 + parent: 2 + - uid: 14938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5044751,22.286789 + parent: 2 + - uid: 14939 + components: + - type: Transform + pos: -5.4422784,67.74931 + parent: 2 + - uid: 14940 + components: + - type: Transform + pos: -36.51826,59.29243 + parent: 2 + - uid: 14941 + components: + - type: Transform + pos: -37.495216,64.30716 + parent: 2 + - uid: 14942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.52307,61.283424 + parent: 2 + - uid: 14943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.500984,61.29788 + parent: 2 + - uid: 14944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.49649,34.712307 + parent: 2 + - uid: 14945 + components: + - type: Transform + pos: -46.486206,37.2973 + parent: 2 + - uid: 14948 + components: + - type: Transform + pos: -0.5,36.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 14958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.483894,21.718561 + parent: 2 + - uid: 14959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,36.5 + parent: 2 + - uid: 14960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.51921,51.080574 + parent: 2 + - uid: 14961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.52436,61.073807 + parent: 2 + - uid: 14962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.517715,61.893898 + parent: 2 + - uid: 15012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5148282,36.84963 + parent: 2 + - uid: 15013 + components: + - type: Transform + pos: -0.45748806,50.909634 + parent: 2 + - uid: 15014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.495637,23.719961 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: -46.51201,34.08679 + parent: 2 + - uid: 15016 + components: + - type: Transform + pos: -7.509944,59.87058 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 14923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,51.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: -7.5,59.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: -36.5,59.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,22.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,34.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.489708,21.306688 + parent: 2 + - uid: 14931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,34.5 + parent: 2 + - uid: 14932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.520805,34.30202 + parent: 2 + - uid: 14933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,61.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,61.5 + parent: 2 + - uid: 14949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.47710562,51.50554 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 12621 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 13994 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 14622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,14.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,23.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,74.5 + parent: 2 + - uid: 14629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,70.5 + parent: 2 + - uid: 14630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,64.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,15.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + pos: -64.5,23.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 14924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.45748806,51.690884 + parent: 2 + - uid: 14946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.49721146,22.698925 + parent: 2 + - uid: 14947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.4966717,34.72039 + parent: 2 + - uid: 14950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.507484,51.726326 + parent: 2 + - uid: 14951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.514282,59.70959 + parent: 2 + - uid: 14952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.514458,61.697083 + parent: 2 + - uid: 14953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.4815,61.700027 + parent: 2 + - uid: 14954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.49479,37.304173 + parent: 2 + - uid: 14955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.486397,37.711174 + parent: 2 + - uid: 14956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5054145,36.66864 + parent: 2 + - uid: 14957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.49682,22.305836 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 10125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,70.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 1229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,71.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,15.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,72.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,57.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,37.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,28.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,52.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,52.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 +- proto: SignEngine + entities: + - uid: 14008 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 1248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 1755 + components: + - type: Transform + pos: -47.5,7.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,18.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,38.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,74.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 5513 + components: + - type: Transform + pos: -25.5,59.5 + parent: 2 +- proto: SignFire + entities: + - uid: 14651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 5400 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 +- proto: SignHead + entities: + - uid: 12762 + components: + - type: Transform + pos: -32.5,59.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 7034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,44.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 2752 + components: + - type: Transform + pos: -34.5,49.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: -39.5,47.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 3030 + components: + - type: Transform + pos: -36.5,67.5 + parent: 2 +- proto: SignKitchen + entities: + - uid: 7140 + components: + - type: Transform + pos: -46.5,49.5 + parent: 2 +- proto: SignLawyer + entities: + - uid: 7145 + components: + - type: Transform + pos: -10.5,59.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,59.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 7141 + components: + - type: Transform + pos: -68.5,61.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + pos: -70.5,59.5 + parent: 2 +- proto: SignMaterials + entities: + - uid: 5661 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 1985 + components: + - type: Transform + pos: -7.5,33.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 12696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,22.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 961 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,29.5 + parent: 2 +- proto: SignNews + entities: + - uid: 7142 + components: + - type: Transform + pos: -44.5,64.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 14652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,65.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 4291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,45.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,51.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,45.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,51.5 + parent: 2 +- proto: SignRadiation + entities: + - uid: 232 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 +- proto: SignRadiationMed + entities: + - uid: 285 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 +- proto: SignReception + entities: + - uid: 12695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,22.5 + parent: 2 +- proto: SignRedFour + entities: + - uid: 1914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,26.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 1911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,22.5 + parent: 2 +- proto: SignRedThree + entities: + - uid: 1913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,26.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 1912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,22.5 + parent: 2 +- proto: SignRestroom + entities: + - uid: 6965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,31.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,32.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,29.5 + parent: 2 +- proto: SignRND + entities: + - uid: 12517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,37.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 5722 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 +- proto: SignSalvage + entities: + - uid: 5980 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,66.5 + parent: 2 +- proto: SignScience + entities: + - uid: 5733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,41.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 5185 + components: + - type: Transform + pos: -26.5,51.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,51.5 + parent: 2 +- proto: SignServer + entities: + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,12.5 + parent: 2 + - uid: 8727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,38.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,13.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 6232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,37.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + pos: -74.5,53.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 282 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 14007 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 5697 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 4468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,8.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,13.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 1681 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 +- proto: SignVault + entities: + - uid: 7144 + components: + - type: Transform + pos: -13.5,72.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 9176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,30.5 + parent: 2 +- proto: SingularityGenerator + entities: + - uid: 7982 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 +- proto: Sink + entities: + - uid: 4627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,48.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 964 + components: + - type: Transform + pos: -12.5,50.5 + parent: 2 + - uid: 14489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 4266 + components: + - type: Transform + pos: -38.5,33.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: -38.5,33.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,38.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,49.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,68.5 + parent: 2 +- proto: Sledgehammer + entities: + - uid: 5892 + components: + - type: MetaData + name: Gibinator 5000 + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.476023,24.593903 + parent: 2 +- proto: SmartFridge + entities: + - uid: 4215 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 1078 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -24.5,92.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: -66.5,79.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + anchored: False + pos: -16.5,5.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 1974 + components: + - type: Transform + anchored: False + pos: -15.5,5.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 4537 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 14537 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + pos: -79.5,14.5 + parent: 2 +- proto: SmokingPipe + entities: + - uid: 14194 + components: + - type: Transform + pos: -53.899773,72.64173 + parent: 2 +- proto: SodaDispenser + entities: + - uid: 4628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,49.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,47.5 + parent: 2 + - uid: 16596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 +- proto: SodaDispenserEmpty + entities: + - uid: 15723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,2.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 4 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -60.5,82.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: -60.5,83.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: -60.5,84.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: -60.5,85.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: -60.5,86.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: -60.5,87.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: -58.5,83.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: -60.5,88.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: -58.5,80.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: -60.5,81.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: -58.5,85.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: -58.5,89.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: -58.5,88.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: -58.5,87.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: -52.5,80.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: -52.5,84.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: -52.5,82.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: -52.5,81.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: -52.5,83.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: -52.5,85.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: -52.5,88.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: -52.5,87.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: -52.5,86.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: -52.5,89.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: -50.5,87.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: -50.5,89.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: -50.5,85.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: -50.5,86.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: -50.5,84.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: -50.5,88.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: -50.5,80.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: -50.5,81.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: -48.5,80.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: -50.5,83.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: -50.5,82.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: -48.5,81.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: -48.5,82.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 36.5,30.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: 36.5,35.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: 50.5,26.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: -60.5,89.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: -58.5,86.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: -58.5,82.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: -48.5,86.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: -48.5,84.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: -48.5,83.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: -48.5,87.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: -48.5,88.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: -48.5,89.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: -48.5,85.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: -46.5,83.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: -46.5,88.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: -46.5,86.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: -46.5,82.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: -46.5,85.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: -46.5,84.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: -46.5,87.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: -46.5,80.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: -46.5,81.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + pos: -46.5,89.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + pos: -60.5,80.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + pos: -58.5,84.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: -58.5,81.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + pos: -85.5,4.5 + parent: 2 + - uid: 16241 + components: + - type: Transform + pos: -85.5,6.5 + parent: 2 + - uid: 16242 + components: + - type: Transform + pos: -85.5,7.5 + parent: 2 + - uid: 16243 + components: + - type: Transform + pos: -85.5,8.5 + parent: 2 + - uid: 16244 + components: + - type: Transform + pos: -85.5,9.5 + parent: 2 + - uid: 16245 + components: + - type: Transform + pos: -85.5,10.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + pos: -85.5,11.5 + parent: 2 + - uid: 16247 + components: + - type: Transform + pos: -85.5,5.5 + parent: 2 + - uid: 16248 + components: + - type: Transform + pos: -85.5,12.5 + parent: 2 + - uid: 16249 + components: + - type: Transform + pos: -85.5,13.5 + parent: 2 + - uid: 16250 + components: + - type: Transform + pos: -87.5,4.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + pos: -87.5,6.5 + parent: 2 + - uid: 16252 + components: + - type: Transform + pos: -87.5,7.5 + parent: 2 + - uid: 16253 + components: + - type: Transform + pos: -87.5,8.5 + parent: 2 + - uid: 16254 + components: + - type: Transform + pos: -87.5,9.5 + parent: 2 + - uid: 16255 + components: + - type: Transform + pos: -87.5,10.5 + parent: 2 + - uid: 16256 + components: + - type: Transform + pos: -87.5,11.5 + parent: 2 + - uid: 16257 + components: + - type: Transform + pos: -87.5,12.5 + parent: 2 + - uid: 16258 + components: + - type: Transform + pos: -87.5,5.5 + parent: 2 + - uid: 16259 + components: + - type: Transform + pos: -87.5,13.5 + parent: 2 + - uid: 16260 + components: + - type: Transform + pos: -89.5,4.5 + parent: 2 + - uid: 16261 + components: + - type: Transform + pos: -89.5,6.5 + parent: 2 + - uid: 16262 + components: + - type: Transform + pos: -89.5,7.5 + parent: 2 + - uid: 16263 + components: + - type: Transform + pos: -89.5,8.5 + parent: 2 + - uid: 16264 + components: + - type: Transform + pos: -89.5,9.5 + parent: 2 + - uid: 16265 + components: + - type: Transform + pos: -89.5,10.5 + parent: 2 + - uid: 16266 + components: + - type: Transform + pos: -89.5,11.5 + parent: 2 + - uid: 16267 + components: + - type: Transform + pos: -89.5,5.5 + parent: 2 + - uid: 16268 + components: + - type: Transform + pos: -89.5,12.5 + parent: 2 + - uid: 16269 + components: + - type: Transform + pos: -89.5,13.5 + parent: 2 + - uid: 16270 + components: + - type: Transform + pos: -91.5,4.5 + parent: 2 + - uid: 16271 + components: + - type: Transform + pos: -91.5,5.5 + parent: 2 + - uid: 16272 + components: + - type: Transform + pos: -91.5,7.5 + parent: 2 + - uid: 16273 + components: + - type: Transform + pos: -91.5,8.5 + parent: 2 + - uid: 16274 + components: + - type: Transform + pos: -91.5,9.5 + parent: 2 + - uid: 16275 + components: + - type: Transform + pos: -91.5,10.5 + parent: 2 + - uid: 16276 + components: + - type: Transform + pos: -91.5,11.5 + parent: 2 + - uid: 16277 + components: + - type: Transform + pos: -91.5,12.5 + parent: 2 + - uid: 16278 + components: + - type: Transform + pos: -91.5,6.5 + parent: 2 + - uid: 16279 + components: + - type: Transform + pos: -91.5,13.5 + parent: 2 + - uid: 16280 + components: + - type: Transform + pos: -93.5,4.5 + parent: 2 + - uid: 16281 + components: + - type: Transform + pos: -93.5,6.5 + parent: 2 + - uid: 16282 + components: + - type: Transform + pos: -93.5,7.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + pos: -93.5,8.5 + parent: 2 + - uid: 16284 + components: + - type: Transform + pos: -93.5,9.5 + parent: 2 + - uid: 16285 + components: + - type: Transform + pos: -93.5,10.5 + parent: 2 + - uid: 16286 + components: + - type: Transform + pos: -93.5,11.5 + parent: 2 + - uid: 16287 + components: + - type: Transform + pos: -93.5,5.5 + parent: 2 + - uid: 16288 + components: + - type: Transform + pos: -93.5,13.5 + parent: 2 + - uid: 16289 + components: + - type: Transform + pos: -93.5,12.5 + parent: 2 + - uid: 16290 + components: + - type: Transform + pos: -95.5,4.5 + parent: 2 + - uid: 16291 + components: + - type: Transform + pos: -95.5,6.5 + parent: 2 + - uid: 16292 + components: + - type: Transform + pos: -95.5,7.5 + parent: 2 + - uid: 16293 + components: + - type: Transform + pos: -95.5,8.5 + parent: 2 + - uid: 16294 + components: + - type: Transform + pos: -95.5,9.5 + parent: 2 + - uid: 16295 + components: + - type: Transform + pos: -95.5,10.5 + parent: 2 + - uid: 16296 + components: + - type: Transform + pos: -95.5,11.5 + parent: 2 + - uid: 16297 + components: + - type: Transform + pos: -95.5,5.5 + parent: 2 + - uid: 16298 + components: + - type: Transform + pos: -95.5,12.5 + parent: 2 + - uid: 16299 + components: + - type: Transform + pos: -95.5,13.5 + parent: 2 + - uid: 16300 + components: + - type: Transform + pos: -97.5,4.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + pos: -97.5,5.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + pos: -97.5,6.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + pos: -97.5,8.5 + parent: 2 + - uid: 16304 + components: + - type: Transform + pos: -97.5,9.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: -97.5,10.5 + parent: 2 + - uid: 16306 + components: + - type: Transform + pos: -97.5,11.5 + parent: 2 + - uid: 16307 + components: + - type: Transform + pos: -97.5,12.5 + parent: 2 + - uid: 16308 + components: + - type: Transform + pos: -97.5,13.5 + parent: 2 + - uid: 16309 + components: + - type: Transform + pos: -97.5,7.5 + parent: 2 + - uid: 16310 + components: + - type: Transform + pos: -99.5,4.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + pos: -99.5,6.5 + parent: 2 + - uid: 16312 + components: + - type: Transform + pos: -99.5,7.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: -99.5,8.5 + parent: 2 + - uid: 16314 + components: + - type: Transform + pos: -99.5,9.5 + parent: 2 + - uid: 16315 + components: + - type: Transform + pos: -99.5,10.5 + parent: 2 + - uid: 16316 + components: + - type: Transform + pos: -99.5,11.5 + parent: 2 + - uid: 16317 + components: + - type: Transform + pos: -99.5,12.5 + parent: 2 + - uid: 16318 + components: + - type: Transform + pos: -99.5,5.5 + parent: 2 + - uid: 16319 + components: + - type: Transform + pos: -99.5,13.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 42 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -100.5,15.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + pos: -53.5,93.5 + parent: 2 +- proto: SolidSecretDoor + entities: + - uid: 2717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,24.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,10.5 + parent: 2 + - uid: 14138 + components: + - type: Transform + pos: -49.5,71.5 + parent: 2 +- proto: SpaceCash100 + entities: + - uid: 6075 + components: + - type: Transform + pos: -0.50387764,72.510124 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: 23.970129,17.764256 + parent: 2 + - uid: 15208 + components: + - type: Transform + pos: 23.440071,18.442648 + parent: 2 + - uid: 15209 + components: + - type: Transform + pos: 23.596321,17.036398 + parent: 2 + - uid: 15210 + components: + - type: Transform + pos: -15.60759,10.411303 + parent: 2 + - uid: 15211 + components: + - type: Transform + pos: -14.97889,10.581939 + parent: 2 + - uid: 16144 + components: + - type: Transform + pos: -79.56626,12.82488 + parent: 2 + - uid: 16145 + components: + - type: Transform + pos: -79.26939,12.54363 + parent: 2 +- proto: SpaceCash1000 + entities: + - uid: 6139 + components: + - type: Transform + pos: -8.46487,73.06552 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: -8.43362,72.84677 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: -8.43362,72.6124 + parent: 2 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 5098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,50.5 + parent: 2 +- proto: SpawnMechRipley + entities: + - uid: 15829 + components: + - type: Transform + pos: 12.5,72.5 + parent: 2 +- proto: SpawnMobAlexander + entities: + - uid: 2129 + components: + - type: Transform + pos: -53.5,50.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 5870 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 5590 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 5589 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 10360 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + pos: -24.5,29.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + pos: -35.5,68.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + pos: -61.5,52.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 2140 + components: + - type: Transform + pos: -33.5,64.5 + parent: 2 +- proto: SpawnMobCow + entities: + - uid: 4568 + components: + - type: Transform + pos: -57.5,38.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 6051 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 6625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,68.5 + parent: 2 +- proto: SpawnMobGoat + entities: + - uid: 4552 + components: + - type: Transform + pos: -49.5,51.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: -57.5,39.5 + parent: 2 +- proto: SpawnMobKangarooWillow + entities: + - uid: 2328 + components: + - type: Transform + pos: -44.5,58.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 4919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,39.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 15193 + components: + - type: Transform + pos: -22.5,31.5 + parent: 2 + - uid: 15194 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 +- proto: SpawnMobMonkey + entities: + - uid: 5849 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 4641 + components: + - type: Transform + pos: -62.5,48.5 + parent: 2 +- proto: SpawnMobParrot + entities: + - uid: 6325 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 +- proto: SpawnMobPenguin + entities: + - uid: 15928 + components: + - type: Transform + pos: -69.5,-0.5 + parent: 2 +- proto: SpawnMobPossumMorty + entities: + - uid: 4367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,39.5 + parent: 2 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 15827 + components: + - type: Transform + pos: 1.5,75.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 4948 + components: + - type: Transform + pos: -35.5,39.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 3515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,59.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 5864 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 4240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,30.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 13929 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 15284 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 15232 + components: + - type: Transform + pos: -62.5,40.5 + parent: 2 + - uid: 15233 + components: + - type: Transform + pos: -62.5,42.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 15301 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 15302 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 15228 + components: + - type: Transform + pos: -58.5,41.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + pos: -58.5,40.5 + parent: 2 +- proto: SpawnPointBoxer + entities: + - uid: 15230 + components: + - type: Transform + pos: -44.5,59.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + pos: -43.5,59.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 15220 + components: + - type: Transform + pos: -9.5,69.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 15271 + components: + - type: Transform + pos: 1.5,65.5 + parent: 2 + - uid: 15276 + components: + - type: Transform + pos: 1.5,64.5 + parent: 2 + - uid: 15277 + components: + - type: Transform + pos: 1.5,63.5 + parent: 2 + - uid: 15278 + components: + - type: Transform + pos: 1.5,62.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 10788 + components: + - type: Transform + pos: -67.5,13.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 10015 + components: + - type: Transform + pos: -52.5,49.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 15263 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 15264 + components: + - type: Transform + pos: -37.5,29.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 15226 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 15227 + components: + - type: Transform + pos: -10.5,24.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 4706 + components: + - type: Transform + pos: -63.5,66.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 5414 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 15221 + components: + - type: Transform + pos: -31.5,68.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 15222 + components: + - type: Transform + pos: -41.5,39.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 15237 + components: + - type: Transform + pos: -34.5,69.5 + parent: 2 + - uid: 15238 + components: + - type: Transform + pos: -34.5,67.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 15239 + components: + - type: Transform + pos: -8.5,64.5 + parent: 2 + - uid: 15240 + components: + - type: Transform + pos: -9.5,61.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 9701 + components: + - type: Transform + pos: -68.5,59.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 12864 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 15270 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 15272 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 15268 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 15273 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 582 + components: + - type: Transform + pos: -57.5,67.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 4707 + components: + - type: Transform + pos: -51.5,66.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 4542 + components: + - type: Transform + pos: -22.5,56.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 15274 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 15275 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 15241 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 15242 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 15246 + components: + - type: Transform + pos: -41.5,16.5 + parent: 2 + - uid: 15247 + components: + - type: Transform + pos: -41.5,15.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 15249 + components: + - type: Transform + pos: -43.5,15.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 1910 + components: + - type: Transform + pos: 0.5,75.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 10361 + components: + - type: Transform + pos: -41.5,66.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 15293 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - uid: 15294 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 15295 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - uid: 15296 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 15225 + components: + - type: Transform + pos: 21.5,47.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 15279 + components: + - type: Transform + pos: 13.5,65.5 + parent: 2 + - uid: 15280 + components: + - type: Transform + pos: 13.5,64.5 + parent: 2 + - uid: 15281 + components: + - type: Transform + pos: 13.5,63.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 15297 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 15298 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 15299 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 15300 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 15259 + components: + - type: Transform + pos: -39.5,43.5 + parent: 2 + - uid: 15260 + components: + - type: Transform + pos: -38.5,43.5 + parent: 2 + - uid: 15261 + components: + - type: Transform + pos: -37.5,43.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: -36.5,43.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 1572 + components: + - type: Transform + pos: -38.5,45.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + pos: -39.5,45.5 + parent: 2 + - uid: 15257 + components: + - type: Transform + pos: -37.5,45.5 + parent: 2 + - uid: 15258 + components: + - type: Transform + pos: -36.5,45.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 15251 + components: + - type: Transform + pos: -58.5,49.5 + parent: 2 + - uid: 15252 + components: + - type: Transform + pos: -57.5,49.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + pos: -58.5,50.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 2397 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 115 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 15254 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 +- proto: SpearReinforced + entities: + - uid: 7353 + components: + - type: Transform + pos: -61.6483,3.4229734 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: -62.52047,74.509155 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 1120 + components: + - type: Transform + pos: -35.301624,69.77895 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -15.738846,40.04271 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: -35.301624,69.45083 + parent: 2 +- proto: StairStageWood + entities: + - uid: 3978 + components: + - type: Transform + pos: -63.5,56.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 5009 + components: + - type: Transform + pos: -12.5,40.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + pos: -22.5,34.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + pos: -24.5,34.5 + parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 5295 + components: + - type: Transform + pos: -28.5,91.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: -26.5,91.5 + parent: 2 +- proto: StationAnchor + entities: + - uid: 1083 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 5335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.276436,88.639465 + parent: 2 +- proto: StationMap + entities: + - uid: 2660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,33.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,56.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,47.5 + parent: 2 + - uid: 9706 + components: + - type: Transform + pos: -0.5,55.5 + parent: 2 + - uid: 10829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,47.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,30.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,67.5 + parent: 2 + - uid: 14963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,65.5 + parent: 2 + - uid: 14964 + components: + - type: Transform + pos: -78.5,57.5 + parent: 2 + - uid: 14966 + components: + - type: Transform + pos: -30.5,59.5 + parent: 2 + - uid: 14967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,51.5 + parent: 2 + - uid: 14968 + components: + - type: Transform + pos: -13.5,59.5 + parent: 2 + - uid: 14970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,60.5 + parent: 2 + - uid: 14971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,42.5 + parent: 2 + - uid: 14973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,18.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: -53.5,64.5 + parent: 2 + - uid: 14975 + components: + - type: Transform + pos: -66.5,37.5 + parent: 2 + - uid: 14977 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 14978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,26.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,18.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,51.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 + - uid: 14985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,69.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,65.5 + parent: 2 +- proto: Stool + entities: + - uid: 3795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.421974,58.64094 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: -10.47996,47.67034 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: -9.54246,47.717216 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: -10.45298,45.709023 + parent: 2 + - uid: 5708 + components: + - type: Transform + pos: -9.54673,45.646523 + parent: 2 + - uid: 14282 + components: + - type: Transform + pos: -62.510994,16.693872 + parent: 2 +- proto: StoolBar + entities: + - uid: 4632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,50.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,49.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,48.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,47.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,46.5 + parent: 2 + - uid: 14547 + components: + - type: Transform + pos: -79.5,5.5 + parent: 2 + - uid: 14548 + components: + - type: Transform + pos: -80.5,5.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + pos: -78.5,5.5 + parent: 2 + - uid: 14550 + components: + - type: Transform + pos: -77.5,5.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 1394 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 +- proto: Stunbaton + entities: + - uid: 5161 + components: + - type: Transform + pos: -38.230072,44.56757 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 937 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -24.5,90.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + anchored: False + pos: -13.5,5.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 1979 + components: + - type: Transform + anchored: False + pos: -12.5,5.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 2167 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 0.5,58.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: -68.5,75.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: -29.5,72.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: -6.5,75.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + pos: -69.5,52.5 + parent: 2 +- proto: SuitStorageAtmos + entities: + - uid: 2028 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 6613 + components: + - type: Transform + pos: -13.5,70.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 6323 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 5581 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 3142 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 14460 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 14591 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 +- proto: SuitStorageEVAAlternate + entities: + - uid: 5496 + components: + - type: Transform + pos: -28.5,60.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: -28.5,61.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: -26.5,60.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: -26.5,61.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: -28.5,63.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: -26.5,63.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + pos: -28.5,62.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + pos: -28.5,62.5 + parent: 2 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 5089 + components: + - type: Transform + pos: -1.5,44.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: -2.5,44.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 1069 + components: + - type: Transform + pos: -34.5,38.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 5868 + components: + - type: Transform + pos: 18.5,46.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 6087 + components: + - type: Transform + pos: 7.5,64.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + pos: 7.5,65.5 + parent: 2 + - uid: 16369 + components: + - type: Transform + pos: 7.5,63.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 4510 + components: + - type: Transform + pos: -29.5,38.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: -29.5,41.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: -29.5,40.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: -29.5,39.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: -29.5,42.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 5888 + components: + - type: Transform + pos: -21.5,97.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI external north + - uid: 6366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,88.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI external East + - uid: 6382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,91.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI external west + - uid: 13007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,84.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI external South + - uid: 13816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,62.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Eva storage + - uid: 13825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,62.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HOP office + - uid: 13826 + components: + - type: Transform + pos: -14.5,67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's office + - uid: 13828 + components: + - type: Transform + pos: -25.5,66.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge south + - uid: 13829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,74.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge North + - uid: 13830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,74.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Nuclear Fission Vault + - uid: 13831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,88.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI foyer + - uid: 13832 + components: + - type: Transform + pos: -20.5,90.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core + - uid: 13833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,89.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI upload + - uid: 13836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,69.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Bedroom +- proto: SurveillanceCameraEngineering + entities: + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES + - uid: 5170 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms Server room + - uid: 13763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering supply room + - uid: 13764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE office + - uid: 13765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering break room + - uid: 13766 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering break room + - uid: 13769 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Grav and Anchor + - uid: 13770 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering main room + - uid: 13771 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering reception + - uid: 13772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Secpoint + - uid: 13773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: PA + - uid: 13777 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Reception + - uid: 13778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos lockers + - uid: 13779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos distro north + - uid: 15494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos + - uid: 15495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi East + - uid: 15507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Locker room + - uid: 15545 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Front +- proto: SurveillanceCameraGeneral + entities: + - uid: 13564 + components: + - type: Transform + pos: -59.5,35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac Hall + - uid: 13565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service-sec hall + - uid: 13566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms-Med hall + - uid: 13567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Med-Engi hall west + - uid: 13568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Med-engi hall center + - uid: 13569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Med-Atmos hall + - uid: 13780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Med-sci hallway + - uid: 13841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Boxing Ring + - uid: 13846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Boxer dining + - uid: 13855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 3 + - uid: 13856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 2 + - uid: 13857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 1 + - uid: 13858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm 4 + - uid: 13859 + components: + - type: Transform + pos: -48.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arcade + - uid: 13860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cryostasis + - uid: 13861 + components: + - type: Transform + pos: -20.5,52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Center + - uid: 13862 + components: + - type: Transform + pos: -39.5,52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall West + - uid: 13863 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall East + - uid: 13864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,60.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall North + - uid: 13866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,61.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals + - uid: 13868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tools + - uid: 13869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Sec-sci hall + - uid: 13870 + components: + - type: Transform + pos: -81.5,54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals south arm + - uid: 16856 + components: + - type: Transform + pos: -59.5,62.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance hall +- proto: SurveillanceCameraMedical + entities: + - uid: 13791 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Waiting room + - uid: 13792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemestry + - uid: 13793 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Reception + - uid: 13795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical hall + - uid: 13796 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: surgery just a week away + - uid: 13797 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: CMO office + - uid: 13798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical supply + - uid: 13799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 1503 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 13834 + components: + - type: Transform + pos: -24.5,93.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 6495 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 1529 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 1538 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 11618 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 1528 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 11617 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 1501 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 13785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xenoarchaeology + - uid: 13786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + - uid: 13787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Sci main room west + - uid: 13788 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomaly + - uid: 13789 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RD office + - uid: 13790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Sci Main room east +- proto: SurveillanceCameraSecurity + entities: + - uid: 13802 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: HOS office + - uid: 13803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Sec lockers + - uid: 13804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogations + - uid: 13805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Morgue + - uid: 13806 + components: + - type: Transform + pos: -28.5,44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security main + - uid: 13807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Lockdown + - uid: 13808 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security rear hall + - uid: 13817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,65.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Courtroom + - uid: 13818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,64.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Law office + - uid: 13819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective office + - uid: 13848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,66.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals Checkpoint +- proto: SurveillanceCameraService + entities: + - uid: 13827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,69.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitorial + - uid: 13843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,89.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: AI entrance + - uid: 13847 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 16855 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chaple + - uid: 16857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,66.5 + parent: 2 + - uid: 16858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kithcen + - uid: 16859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + - uid: 16860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,58.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + - uid: 16861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,94.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Ai Core 2 +- proto: SurveillanceCameraSupply + entities: + - uid: 3500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,61.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage + - uid: 13209 + components: + - type: Transform + pos: 12.5,67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay + - uid: 13344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,66.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Front + - uid: 13813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Reception + - uid: 13815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,60.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Front +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 4744 + components: + - type: Transform + pos: -45.5,66.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 4692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,65.5 + parent: 2 +- proto: SyringeSaline + entities: + - uid: 770 + components: + - type: Transform + pos: -25.42996,30.718536 + parent: 2 +- proto: SyringeTranexamicAcid + entities: + - uid: 11540 + components: + - type: Transform + pos: -25.927244,30.773216 + parent: 2 +- proto: Table + entities: + - uid: 230 + components: + - type: Transform + pos: -15.5,91.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 3.5,75.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 3.5,77.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 14.5,71.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 3.5,76.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,65.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -68.5,19.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,66.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,44.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,42.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,44.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,46.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,30.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,30.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: -35.5,69.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,62.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: -65.5,8.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,49.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,50.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,30.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,48.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,67.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: -42.5,66.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: -42.5,67.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -67.5,66.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: 4.5,45.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,69.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,69.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,40.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: -17.5,38.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,39.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,40.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,41.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: -12.5,38.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,48.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,48.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,48.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,48.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: -39.5,44.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: -37.5,44.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: -37.5,42.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,42.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,30.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: -44.5,15.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,23.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,23.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,23.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,23.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,23.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,38.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,38.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,38.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,38.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,62.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,65.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,65.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: 11.5,67.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: 10.5,67.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: -35.5,16.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,54.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,54.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,67.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,64.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,25.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: 2.5,60.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: 1.5,60.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: -16.5,86.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: -17.5,86.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: -18.5,86.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,23.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: -23.5,34.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,50.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,8.5 + parent: 2 + - uid: 10369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 11021 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: 14.5,70.5 + parent: 2 + - uid: 13521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,49.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + pos: -59.5,74.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + pos: -59.5,72.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + pos: -59.5,73.5 + parent: 2 + - uid: 14156 + components: + - type: Transform + pos: -50.5,72.5 + parent: 2 + - uid: 14158 + components: + - type: Transform + pos: -50.5,73.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + pos: -54.5,72.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + pos: -53.5,72.5 + parent: 2 + - uid: 14345 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 14362 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 14363 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 2 + - uid: 14453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,2.5 + parent: 2 + - uid: 15201 + components: + - type: Transform + pos: -57.5,42.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 15205 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,61.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,60.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 16600 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 16760 + components: + - type: Transform + pos: 6.5,78.5 + parent: 2 + - uid: 16761 + components: + - type: Transform + pos: 7.5,78.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 2359 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 13558 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 14380 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 14381 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 14383 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 15376 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 15634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 2 + - uid: 16132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,12.5 + parent: 2 + - uid: 16143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,12.5 + parent: 2 +- proto: TableFancyBlue + entities: + - uid: 7116 + components: + - type: Transform + pos: -15.5,68.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + pos: -16.5,68.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + pos: -14.5,68.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + pos: -13.5,68.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 2828 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: -27.5,31.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: -27.5,30.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + pos: -26.5,30.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + pos: -26.5,31.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: -24.5,30.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + pos: -24.5,31.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 5728 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 501 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,47.5 + parent: 2 + - uid: 689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,47.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -18.5,68.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,47.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,38.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: -46.5,42.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: -46.5,43.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: -54.5,47.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: -61.5,51.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: -60.5,50.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: -60.5,51.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: -60.5,49.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: -46.5,46.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: -54.5,48.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: -46.5,47.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: -60.5,45.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: -60.5,47.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: -60.5,46.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: -60.5,48.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: -46.5,48.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,51.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: -48.5,44.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,39.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,51.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,51.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,46.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: -67.5,64.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,30.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,31.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,30.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,30.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,30.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,29.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,33.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,42.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,47.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,46.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,89.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,88.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: -8.5,72.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: -8.5,74.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: -12.5,72.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: -11.5,72.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,75.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,75.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,67.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,66.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: -18.5,67.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: -36.5,63.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,43.5 + parent: 2 + - uid: 9937 + components: + - type: Transform + pos: -51.5,46.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: -50.5,49.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + pos: -49.5,49.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,29.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + pos: -51.5,49.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: -8.5,73.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + pos: -51.5,47.5 + parent: 2 + - uid: 13910 + components: + - type: Transform + pos: -49.5,47.5 + parent: 2 + - uid: 13911 + components: + - type: Transform + pos: -50.5,47.5 + parent: 2 + - uid: 13928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,44.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + pos: -50.5,46.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + pos: -49.5,46.5 + parent: 2 +- proto: TableStone + entities: + - uid: 13271 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: -62.5,8.5 + parent: 2 + - uid: 13842 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 13849 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 13924 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 +- proto: TableWood + entities: + - uid: 11 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: -8.5,70.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,56.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,56.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,5.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,65.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,39.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: -37.5,40.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: -34.5,39.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,21.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: -57.5,52.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: -37.5,39.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,73.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: -63.5,39.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: -63.5,46.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: -63.5,47.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: -63.5,49.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: -63.5,50.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: -61.5,41.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: -57.5,47.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: -57.5,51.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,66.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,67.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,65.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,65.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,65.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: -62.5,67.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: -61.5,67.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: -53.5,66.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: -53.5,65.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: -52.5,57.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: -51.5,57.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: -51.5,61.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,38.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,25.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,24.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,23.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: -15.5,64.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: 20.5,44.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: -0.5,73.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: -0.5,72.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: -65.5,57.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: -66.5,57.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + pos: -0.5,76.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: -12.5,70.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: -30.5,66.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: -20.5,72.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: -21.5,72.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: -22.5,72.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: -23.5,72.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: -59.5,54.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,63.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,63.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: -18.5,63.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + pos: -17.5,63.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + pos: -13.5,63.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + pos: -12.5,63.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,64.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,26.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,25.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,26.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,24.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + pos: -60.5,54.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: -54.5,40.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,25.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,24.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + pos: -34.5,62.5 + parent: 2 + - uid: 10159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,61.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,12.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,12.5 + parent: 2 + - uid: 10357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,12.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 11015 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 11017 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,5.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,39.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,60.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: -55.5,65.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,61.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,10.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + pos: -81.5,4.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + pos: -80.5,4.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + pos: -79.5,4.5 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: -78.5,4.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: -76.5,3.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + pos: -77.5,4.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: -76.5,4.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,13.5 + parent: 2 + - uid: 14468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,13.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + pos: -64.5,-0.5 + parent: 2 + - uid: 14871 + components: + - type: Transform + pos: -56.5,24.5 + parent: 2 + - uid: 14872 + components: + - type: Transform + pos: -47.5,24.5 + parent: 2 + - uid: 14873 + components: + - type: Transform + pos: -47.5,26.5 + parent: 2 + - uid: 14874 + components: + - type: Transform + pos: -56.5,26.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + pos: -77.5,-0.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: -81.5,2.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: -80.5,2.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + pos: -63.5,43.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + pos: -78.5,9.5 + parent: 2 + - uid: 16130 + components: + - type: Transform + pos: -73.5,9.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + pos: -75.5,12.5 + parent: 2 + - uid: 16133 + components: + - type: Transform + pos: -75.5,6.5 + parent: 2 + - uid: 16781 + components: + - type: Transform + pos: -51.5,60.5 + parent: 2 +- proto: TargetDarts + entities: + - uid: 2399 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,46.5 + parent: 2 +- proto: TegCenter + entities: + - uid: 12593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 +- proto: TegCirculator + entities: + - uid: 1552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 12591 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServerFilledCargo + entities: + - uid: 1500 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 +- proto: TelecomServerFilledCommand + entities: + - uid: 13749 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 +- proto: TelecomServerFilledCommon + entities: + - uid: 13751 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 +- proto: TelecomServerFilledEngineering + entities: + - uid: 13752 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 +- proto: TelecomServerFilledMedical + entities: + - uid: 13754 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 +- proto: TelecomServerFilledScience + entities: + - uid: 1400 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 +- proto: TelecomServerFilledSecurity + entities: + - uid: 13750 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 +- proto: TelecomServerFilledService + entities: + - uid: 1402 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 +- proto: TeslaCoilFlatpack + entities: + - uid: 6498 + components: + - type: Transform + parent: 9810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6621 + components: + - type: Transform + parent: 9810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7071 + components: + - type: Transform + parent: 9810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7075 + components: + - type: Transform + parent: 9810 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TeslaGenerator + entities: + - uid: 6187 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 +- proto: TeslaGroundingRodFlatpack + entities: + - uid: 3386 + components: + - type: Transform + parent: 1030 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3628 + components: + - type: Transform + parent: 1030 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4349 + components: + - type: Transform + parent: 1030 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4508 + components: + - type: Transform + parent: 1030 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ThrusterUnanchored + entities: + - uid: 5953 + components: + - type: Transform + pos: 6.5,52.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: 7.5,52.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: 8.5,52.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: 9.5,52.5 + parent: 2 +- proto: TintedWindow + entities: + - uid: 2691 + components: + - type: Transform + pos: -39.5,49.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: -39.5,48.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + pos: -39.5,50.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,50.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,30.5 + parent: 2 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 6594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,66.5 + parent: 2 +- proto: ToolboxArtisticFilled + entities: + - uid: 5525 + components: + - type: Transform + pos: -44.49221,16.099401 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: -63.504845,72.64978 + parent: 2 +- proto: ToolboxElectrical + entities: + - uid: 1586 + components: + - type: Transform + pos: -8.508287,6.6686907 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 3736 + components: + - type: Transform + pos: -68.486916,79.61701 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: -2.4271321,27.577143 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: -44.476585,16.521276 + parent: 2 + - uid: 15598 + components: + - type: Transform + pos: -70.46136,14.599079 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 5172 + components: + - type: Transform + pos: -38.778923,42.782146 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: -44.46096,16.990026 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 6135 + components: + - type: Transform + pos: -8.511745,74.6749 + parent: 2 +- proto: ToolboxMechanical + entities: + - uid: 5899 + components: + - type: Transform + pos: 21.496595,33.565514 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: -8.511843,6.169222 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 5173 + components: + - type: Transform + pos: -38.575798,42.54777 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: -44.46096,17.443151 + parent: 2 + - uid: 6682 + components: + - type: Transform + pos: -18.468948,68.41143 + parent: 2 +- proto: TowelColorMime + entities: + - uid: 4704 + components: + - type: Transform + pos: -56.712433,65.43804 + parent: 2 +- proto: ToyFigurineAtmosTech + entities: + - uid: 5795 + components: + - type: Transform + pos: 1.612113,11.637677 + parent: 2 +- proto: ToyFigurineBartender + entities: + - uid: 5798 + components: + - type: Transform + pos: -63.672386,39.797863 + parent: 2 +- proto: ToyFigurineBotanist + entities: + - uid: 5796 + components: + - type: Transform + pos: -48.67576,44.67549 + parent: 2 +- proto: ToyFigurineBoxer + entities: + - uid: 5803 + components: + - type: Transform + pos: -43.446762,58.54996 + parent: 2 +- proto: ToyFigurineCaptain + entities: + - uid: 6626 + components: + - type: Transform + pos: -8.70611,70.584496 + parent: 2 +- proto: ToyFigurineCargoTech + entities: + - uid: 6554 + components: + - type: Transform + pos: 11.910372,67.53996 + parent: 2 +- proto: ToyFigurineChef + entities: + - uid: 5797 + components: + - type: Transform + pos: -48.30076,44.784866 + parent: 2 +- proto: ToyFigurineChemist + entities: + - uid: 5794 + components: + - type: Transform + pos: -37.451065,30.925117 + parent: 2 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 6550 + components: + - type: Transform + pos: -26.758474,3.6595547 + parent: 2 +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 5791 + components: + - type: Transform + pos: -5.731476,25.719788 + parent: 2 +- proto: ToyFigurineClown + entities: + - uid: 5799 + components: + - type: Transform + pos: -59.922768,65.931244 + parent: 2 +- proto: ToyFigurineDetective + entities: + - uid: 5421 + components: + - type: Transform + pos: -1.7933834,39.424236 + parent: 2 +- proto: ToyFigurineEngineer + entities: + - uid: 6551 + components: + - type: Transform + pos: -8.936024,11.084433 + parent: 2 +- proto: ToyFigurineFootsoldier + entities: + - uid: 12109 + components: + - type: Transform + pos: -69.34677,55.523243 + parent: 2 +- proto: ToyFigurineGreytider + entities: + - uid: 5807 + components: + - type: Transform + pos: -44.707573,15.612088 + parent: 2 +- proto: ToyFigurineHeadOfPersonnel + entities: + - uid: 6646 + components: + - type: Transform + pos: -30.232485,66.74304 + parent: 2 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 5789 + components: + - type: Transform + pos: -37.66107,39.822132 + parent: 2 +- proto: ToyFigurineLawyer + entities: + - uid: 7153 + components: + - type: Transform + pos: -10.356424,64.17697 + parent: 2 +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 5792 + components: + - type: Transform + pos: -23.506924,34.626774 + parent: 2 +- proto: ToyFigurineMime + entities: + - uid: 5801 + components: + - type: Transform + pos: -53.26529,66.91562 + parent: 2 +- proto: ToyFigurineMusician + entities: + - uid: 5802 + components: + - type: Transform + pos: -47.644676,65.962494 + parent: 2 +- proto: ToyFigurineNukie + entities: + - uid: 1129 + components: + - type: Transform + pos: 25.55594,22.514818 + parent: 2 +- proto: ToyFigurineNukieElite + entities: + - uid: 12108 + components: + - type: Transform + pos: -69.6749,55.726368 + parent: 2 +- proto: ToyFigurineParamedic + entities: + - uid: 5793 + components: + - type: Transform + pos: -22.08365,23.664106 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: -27.534359,25.161161 + parent: 2 +- proto: ToyFigurineQuartermaster + entities: + - uid: 6555 + components: + - type: Transform + pos: -0.23825264,72.77575 + parent: 2 +- proto: ToyFigurineQueen + entities: + - uid: 12110 + components: + - type: Transform + pos: -66.49234,30.625092 + parent: 2 +- proto: ToyFigurineRatKing + entities: + - uid: 12102 + components: + - type: Transform + pos: -65.36611,57.262108 + parent: 2 +- proto: ToyFigurineResearchDirector + entities: + - uid: 5873 + components: + - type: Transform + pos: 21.755585,46.583282 + parent: 2 +- proto: ToyFigurineSalvage + entities: + - uid: 6553 + components: + - type: Transform + pos: 11.582247,67.63371 + parent: 2 +- proto: ToyFigurineScientist + entities: + - uid: 5805 + components: + - type: Transform + pos: 13.404331,38.53204 + parent: 2 +- proto: ToyFigurineSecurity + entities: + - uid: 5790 + components: + - type: Transform + pos: -33.676872,42.47227 + parent: 2 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 6161 + components: + - type: Transform + pos: -65.47727,57.63346 + parent: 2 +- proto: ToyFigurineThief + entities: + - uid: 5806 + components: + - type: Transform + pos: -10.562821,37.788357 + parent: 2 +- proto: ToyFigurineWarden + entities: + - uid: 5788 + components: + - type: Transform + pos: -17.2379,38.478382 + parent: 2 +- proto: ToyFigurineWizard + entities: + - uid: 6162 + components: + - type: Transform + pos: -65.44424,56.621483 + parent: 2 +- proto: ToySkeleton + entities: + - uid: 1216 + components: + - type: Transform + pos: -65.95986,56.574608 + parent: 2 +- proto: TrainingBomb + entities: + - uid: 13922 + components: + - type: Transform + pos: -33.5,43.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: -28.5,42.5 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 6870 + components: + - type: Transform + pos: 10.5,62.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5737: + - Left: Forward + - Right: Reverse + - Middle: Off + 6389: + - Left: Forward + - Right: Reverse + - Middle: Off + 5833: + - Left: Forward + - Right: Reverse + - Middle: Off + 2818: + - Left: Forward + - Right: Reverse + - Middle: Off + 6021: + - Left: Forward + - Right: Reverse + - Middle: Off + 6022: + - Left: Forward + - Right: Reverse + - Middle: Off + 1794: + - Left: Forward + - Right: Reverse + - Middle: Off + 6451: + - Right: Forward + - Left: Reverse + - Middle: Off + - uid: 9691 + components: + - type: Transform + pos: -43.5,70.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6023: + - Left: Forward + - Right: Reverse + - Middle: Off + 3025: + - Left: Forward + - Right: Reverse + - Middle: Off + 3026: + - Left: Forward + - Right: Reverse + - Middle: Off + 1491: + - Left: Forward + - Right: Reverse + - Middle: Off + 6871: + - Right: Forward + - Left: Reverse + - Middle: Off + - uid: 9808 + components: + - type: Transform + pos: 12.5,76.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16428: + - Left: Forward + - Right: Reverse + - Middle: Off + 16427: + - Right: Reverse + - Left: Forward + - Middle: Off + 16426: + - Left: Forward + - Right: Reverse + - Middle: Off + 16425: + - Left: Forward + - Right: Reverse + - Middle: Off + 16424: + - Left: Forward + - Right: Reverse + - Middle: Off + 16423: + - Left: Forward + - Right: Reverse + - Middle: Off + 15000: + - Left: Forward + - Right: Reverse + - Middle: Off + 14997: + - Left: Forward + - Right: Reverse + - Middle: Off + 2839: + - Left: Forward + - Right: Reverse + - Middle: Off + 3027: + - Left: Forward + - Right: Reverse + - Middle: Off + 6449: + - Right: Reverse + - Left: Forward + - Middle: Off + 2820: + - Right: Reverse + - Left: Forward + - Middle: Off + 5723: + - Left: Forward + - Right: Reverse + - Middle: Off + 2841: + - Left: Forward + - Right: Reverse + - Middle: Off + 2979: + - Left: Forward + - Right: Reverse + - Middle: Off + 6391: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 10371 + components: + - type: Transform + pos: 4.5,73.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3117: + - Left: Forward + - Right: Reverse + - Middle: Off + 432: + - Left: Forward + - Right: Reverse + - Middle: Off + 10643: + - Left: Forward + - Right: Reverse + - Middle: Off + 10370: + - Left: Forward + - Right: Reverse + - Middle: Off + 8087: + - Left: Forward + - Right: Reverse + - Middle: Off + 10482: + - Left: Forward + - Right: Reverse + - Middle: Off + 11635: + - Left: Forward + - Right: Reverse + - Middle: Off + 464: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 5900 + components: + - type: Transform + pos: -35.5,60.5 + parent: 2 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 15490 + components: + - type: Transform + pos: -54.314514,40.52692 + parent: 2 +- proto: Vaccinator + entities: + - uid: 7013 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 4614 + components: + - type: Transform + pos: -61.5,38.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 6058 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 4621 + components: + - type: Transform + pos: -63.5,45.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 719 + components: + - type: Transform + pos: 5.5,65.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 6707 + components: + - type: Transform + pos: -30.5,64.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 14279 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 4549 + components: + - type: Transform + pos: -47.5,45.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 4548 + components: + - type: Transform + pos: -53.5,46.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 9829 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 6720 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 5518 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 9672 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: -68.5,38.5 + parent: 2 + - uid: 14005 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: -65.5,49.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 207 + components: + - type: Transform + pos: -56.5,30.5 + parent: 2 + - uid: 13850 + components: + - type: Transform + pos: -58.5,28.5 + parent: 2 + - uid: 14463 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 5164 + components: + - type: Transform + pos: -33.5,50.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 10007 + components: + - type: Transform + pos: -65.5,60.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 5423 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 4547 + components: + - type: Transform + pos: -53.5,45.5 + parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 6724 + components: + - type: Transform + pos: -33.5,49.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 6379 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 6490 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 4385 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 12121 + components: + - type: Transform + pos: -71.5,58.5 + parent: 2 + - uid: 13549 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 13852 + components: + - type: Transform + pos: -58.5,26.5 + parent: 2 +- proto: VendingMachineGeneDrobe + entities: + - uid: 5632 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 4589 + components: + - type: Transform + pos: -51.5,40.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: -51.5,40.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 1118 + components: + - type: Transform + pos: -35.5,70.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 7088 + components: + - type: Transform + pos: -8.5,60.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 5626 + components: + - type: Transform + pos: -12.5,33.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: -32.5,23.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 13939 + components: + - type: Transform + pos: -5.5,28.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 5630 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 4587 + components: + - type: Transform + pos: -50.5,40.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -50.5,40.5 + parent: 2 +- proto: VendingMachineRestockBooze + entities: + - uid: 16016 + components: + - type: Transform + pos: -65.6808,50.743618 + parent: 2 +- proto: VendingMachineRestockChefvend + entities: + - uid: 9698 + components: + - type: Transform + pos: -34.459904,70.479965 + parent: 2 + - uid: 14356 + components: + - type: Transform + pos: -55.469208,0.8589468 + parent: 2 +- proto: VendingMachineRestockDonut + entities: + - uid: 16017 + components: + - type: Transform + pos: -65.35268,50.540493 + parent: 2 +- proto: VendingMachineRestockGames + entities: + - uid: 14474 + components: + - type: Transform + pos: 22.461048,13.605927 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 5749 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 5748 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 5927 + components: + - type: Transform + pos: 14.5,62.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 5747 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 5127 + components: + - type: Transform + pos: -39.5,46.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 5128 + components: + - type: Transform + pos: -38.5,46.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 4591 + components: + - type: Transform + pos: -52.5,40.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 5095 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 14464 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 5099 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 6368 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1487 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: -27.5,64.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: 11.5,62.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 4723 + components: + - type: Transform + pos: -52.5,63.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 5516 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + pos: 22.5,37.5 + parent: 2 + - uid: 16788 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 6192 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 5625 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + pos: -23.5,35.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 13851 + components: + - type: Transform + pos: -58.5,27.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 5517 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 3922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,54.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,51.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,22.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,44.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 17 + components: + - type: Transform + pos: -73.5,71.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -72.5,71.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 6.5,83.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: 11.5,83.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-3.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,78.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 2 + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-5.5 + parent: 2 + - uid: 288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,7.5 + parent: 2 + - uid: 297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,7.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - uid: 302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 2 + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,49.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,7.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: -27.5,65.5 + parent: 2 + - uid: 418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,20.5 + parent: 2 + - uid: 451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,20.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -35.5,18.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,20.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,20.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: -65.5,75.5 + parent: 2 + - uid: 578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,24.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: -32.5,68.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + - uid: 714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,18.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: -19.5,66.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -80.5,57.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 + - uid: 865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + - uid: 866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 2 + - uid: 867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - uid: 868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 2 + - uid: 869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - uid: 870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - uid: 871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 + - uid: 873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 + - uid: 874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - uid: 875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + - uid: 877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + - uid: 878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - uid: 879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - uid: 880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - uid: 881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 + - uid: 882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + - uid: 883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - uid: 884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 2 + - uid: 885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 2 + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 2 + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - uid: 889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - uid: 892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - uid: 893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 2 + - uid: 894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - uid: 895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - uid: 898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - uid: 901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 2 + - uid: 902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 + - uid: 903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - uid: 904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 + - uid: 907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 2 + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - uid: 909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 + - uid: 910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 2 + - uid: 911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -30.5,70.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: -11.5,49.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,7.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-5.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -28.5,73.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: -67.5,31.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -67.5,22.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: -67.5,29.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -67.5,33.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: -67.5,27.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: -67.5,30.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: -71.5,71.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: -31.5,70.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,53.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: -67.5,28.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: -67.5,32.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,67.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: -66.5,65.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: -66.5,66.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -66.5,67.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -67.5,67.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -68.5,67.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -69.5,67.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: -70.5,67.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: -70.5,64.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: -70.5,65.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: -70.5,66.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: -75.5,67.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: -74.5,67.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: -74.5,66.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: -74.5,58.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: -74.5,57.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -75.5,57.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -70.5,71.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -74.5,53.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: -81.5,53.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -75.5,53.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -80.5,53.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -79.5,53.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,65.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,65.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,65.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,65.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,24.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,24.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,20.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,26.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,26.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,26.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,26.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,26.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,26.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,45.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,71.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,7.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,6.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: -27.5,7.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,41.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: 2.5,77.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: 0.5,77.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: 1.5,77.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: -1.5,77.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: -2.5,77.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: -0.5,77.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: -2.5,76.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: -2.5,75.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: -80.5,11.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: -80.5,12.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,51.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: -46.5,18.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: -47.5,18.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: -65.5,80.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: -46.5,15.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: -69.5,79.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: -68.5,80.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: -84.5,71.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: -86.5,71.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: -85.5,71.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,26.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,45.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,42.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,42.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: -67.5,80.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,66.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -69.5,78.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,51.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: -32.5,66.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,31.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: -0.5,36.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: 26.5,50.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -28.5,70.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,41.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,39.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,38.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,12.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,34.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: -42.5,37.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: -42.5,39.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: -42.5,40.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: -42.5,41.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: -42.5,42.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: -42.5,38.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: -42.5,47.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -42.5,48.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: -42.5,49.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: -42.5,46.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: -42.5,50.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: -42.5,51.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: -41.5,51.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: -40.5,51.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: -37.5,51.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: -35.5,51.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: -39.5,51.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: -34.5,51.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: -33.5,51.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,70.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: -26.5,51.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: -23.5,51.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: -20.5,51.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: -17.5,51.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: -14.5,51.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: -13.5,51.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: -1.5,51.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: -0.5,51.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: -0.5,49.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: -0.5,45.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: -32.5,37.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: -23.5,37.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: -34.5,37.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: -35.5,37.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: -36.5,37.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: -37.5,37.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: -40.5,37.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -41.5,37.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,71.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,71.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,71.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,71.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: -18.5,37.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: -21.5,37.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: -22.5,37.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: -24.5,37.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: -26.5,37.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: -25.5,37.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: -27.5,37.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: -29.5,37.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: -28.5,37.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: -33.5,37.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,51.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: -0.5,74.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,24.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,23.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,23.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,23.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,37.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,41.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 17.5,47.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,23.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,23.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,45.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 23.5,38.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: -72.5,74.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 23.5,44.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,41.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,45.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,45.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 23.5,39.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,42.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 24.5,44.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 26.5,44.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 25.5,44.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 26.5,42.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,42.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 28.5,38.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 27.5,35.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,46.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,25.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 20.5,41.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,26.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,25.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 20.5,48.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 17.5,48.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 19.5,48.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 21.5,48.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,46.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,46.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,46.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,46.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 30.5,49.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,46.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,46.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,46.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,46.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,46.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,46.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,46.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,46.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,46.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 22.5,48.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 23.5,48.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 23.5,47.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 23.5,46.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: 23.5,45.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: 28.5,42.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,69.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 15.5,50.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: -0.5,28.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: 15.5,61.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: 14.5,61.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,55.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 13.5,61.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: -1.5,83.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: -4.5,69.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,72.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,76.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 12.5,61.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,68.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: -22.5,92.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 15.5,62.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: -1.5,57.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: -1.5,58.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 1.5,58.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: 1.5,57.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 1.5,55.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,71.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: -2.5,74.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: -1.5,70.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: -2.5,70.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: -2.5,71.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: -2.5,72.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,56.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,55.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,55.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 0.5,74.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: 1.5,74.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: 15.5,72.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: 15.5,73.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,70.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,50.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,50.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,76.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,73.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,71.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: -4.5,68.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: -4.5,70.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: -3.5,70.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,71.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,71.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,71.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,48.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 2.5,70.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: -71.5,74.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: -73.5,74.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: -65.5,74.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: -8.5,65.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: -9.5,65.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: -10.5,65.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: -11.5,65.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: -7.5,65.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: -28.5,59.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,34.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: -29.5,59.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: -20.5,91.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: -29.5,65.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: -30.5,65.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: -33.5,65.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: -34.5,65.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: -32.5,65.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,42.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: -70.5,74.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: -32.5,67.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: -32.5,69.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: -7.5,66.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: -7.5,67.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -7.5,68.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: -7.5,69.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: -7.5,70.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: -7.5,71.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: -7.5,72.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: -29.5,66.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: -29.5,69.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: -29.5,70.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: -29.5,67.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: -29.5,73.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,67.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,73.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,73.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,73.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,73.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,73.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,73.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,37.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,65.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,59.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,31.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,31.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,32.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,33.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: -74.5,-1.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: -72.5,-2.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: -79.5,-1.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: -66.5,64.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,77.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: -7.5,73.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,75.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,28.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: -7.5,74.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: -42.5,34.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,74.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: -41.5,34.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,27.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,30.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,30.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,26.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,26.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,65.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: -40.5,34.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: -38.5,34.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: -35.5,34.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: -39.5,34.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: -37.5,34.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: -42.5,33.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: -36.5,34.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: -65.5,76.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: -68.5,74.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: -69.5,80.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: -66.5,80.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: -66.5,74.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: -65.5,77.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: -65.5,79.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: -75.5,71.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: -82.5,71.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: -79.5,17.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: -76.5,13.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: -80.5,16.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: -80.5,14.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: -76.5,16.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: -80.5,17.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: -78.5,13.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: -77.5,13.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: -76.5,14.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: -80.5,13.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: -79.5,13.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: -79.5,71.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: -83.5,71.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: -82.5,11.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: -76.5,17.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: -78.5,17.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: -72.5,17.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,72.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: -82.5,10.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: -82.5,1.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,42.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,41.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,38.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,40.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,42.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,42.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,42.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,42.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,42.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,42.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: -14.5,46.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,41.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,42.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: -14.5,47.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: -14.5,50.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: -14.5,48.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,38.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,50.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,50.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,50.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,50.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,49.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,49.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,49.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,49.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,42.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,38.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,43.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,43.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,47.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,48.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,47.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,48.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,48.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,43.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,47.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,48.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,41.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,41.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,40.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,38.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,39.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,71.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: -78.5,57.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,74.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,75.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,75.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,75.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,75.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,75.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,75.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,75.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,59.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: -81.5,11.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: -7.5,76.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: -6.5,76.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,2.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: -72.5,18.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: -68.5,20.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: -36.5,64.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: -35.5,65.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,74.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,38.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,43.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,40.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,40.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: -28.5,43.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,39.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: 14.5,50.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: 14.5,49.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,67.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,18.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: -34.5,41.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,45.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,45.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: -11.5,46.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: -11.5,47.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,45.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: 24.5,42.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,60.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: -72.5,20.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,74.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,74.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,74.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,76.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,76.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: -13.5,85.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: -13.5,87.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: -13.5,88.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: -13.5,86.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: -13.5,89.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: -13.5,91.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: -13.5,92.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: -13.5,90.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: -14.5,92.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: -15.5,92.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: -15.5,93.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: -17.5,93.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: -16.5,93.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: -17.5,94.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: -18.5,94.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: -19.5,95.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: -21.5,95.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: -22.5,95.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: -23.5,95.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: -20.5,95.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: -25.5,94.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: -24.5,94.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: -25.5,93.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: -27.5,93.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: -26.5,93.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: -27.5,92.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: -28.5,92.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: -29.5,92.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: -29.5,91.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: -29.5,89.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: -29.5,88.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: -29.5,87.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: -29.5,90.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: -28.5,87.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: -28.5,86.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: -27.5,86.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: -26.5,86.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: -26.5,85.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: -24.5,85.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: -25.5,85.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: -18.5,85.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + pos: -17.5,85.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: -16.5,85.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: -15.5,85.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: -26.5,92.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: -25.5,92.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + pos: -17.5,92.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: -16.5,92.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: -25.5,91.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: -25.5,89.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: -25.5,90.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: -24.5,89.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: -23.5,89.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: -20.5,89.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + pos: -18.5,89.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: -17.5,89.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: -19.5,89.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: -17.5,90.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: -17.5,91.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: -25.5,86.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: -25.5,88.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: -13.5,93.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: -14.5,93.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: -15.5,94.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: -16.5,94.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: -17.5,95.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: -18.5,95.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: -19.5,96.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: -21.5,96.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: -22.5,96.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: -23.5,96.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: -20.5,96.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: -24.5,95.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: -25.5,95.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: -26.5,94.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: -27.5,94.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: -28.5,93.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: -29.5,93.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,86.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,87.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,38.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,40.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: -1.5,36.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: -29.5,61.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: -29.5,63.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: -29.5,64.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: -29.5,62.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: -78.5,71.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,73.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: -64.5,33.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,45.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,61.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,60.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: 11.5,55.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: 10.5,51.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: 11.5,51.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: 8.5,51.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: 6.5,51.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: 7.5,51.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,52.5 + parent: 2 + - uid: 6045 + components: + - type: Transform + pos: 12.5,82.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: 12.5,80.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: -87.5,71.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,71.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,75.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: -82.5,53.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: -88.5,71.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,38.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: -71.5,20.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: -77.5,17.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: 12.5,83.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: 15.5,66.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,45.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,40.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,46.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,38.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,40.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,67.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + pos: -18.5,66.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,67.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,70.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: -11.5,66.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: -15.5,66.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,68.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: -13.5,66.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: -14.5,66.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: -16.5,66.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: -12.5,66.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: -32.5,59.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: -36.5,59.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: -22.5,93.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,76.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: -13.5,49.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: -82.5,6.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: -82.5,2.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -81.5,1.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: -80.5,1.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: -80.5,-1.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: -80.5,0.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -80.5,-0.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: -85.5,57.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,42.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,42.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,50.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,50.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,20.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,20.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,20.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,20.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,23.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,22.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: -87.5,57.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: -89.5,57.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -89.5,53.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -89.5,67.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + pos: -89.5,71.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: -85.5,67.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -87.5,67.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + pos: -80.5,67.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: -78.5,67.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: -83.5,53.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: -69.5,75.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: -74.5,71.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: -76.5,71.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: -81.5,71.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: -77.5,71.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: 25.5,50.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,41.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: -28.5,72.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,42.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,47.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,38.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: -68.5,34.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: 12.5,51.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,72.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,89.5 + parent: 2 + - uid: 8767 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - uid: 9188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 2 + - uid: 9385 + components: + - type: Transform + pos: -20.5,59.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 9543 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 9644 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 9734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,37.5 + parent: 2 + - uid: 9811 + components: + - type: Transform + pos: 2.5,83.5 + parent: 2 + - uid: 9812 + components: + - type: Transform + pos: 12.5,81.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,34.5 + parent: 2 + - uid: 9892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,59.5 + parent: 2 + - uid: 9949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,42.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: -40.5,41.5 + parent: 2 + - uid: 10115 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 10372 + components: + - type: Transform + pos: -72.5,16.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + pos: -73.5,-1.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 2 + - uid: 10895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,74.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,53.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,5.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + pos: -24.5,59.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 11401 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,50.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,50.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,51.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,52.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + pos: -69.5,34.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + pos: -71.5,34.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + pos: -72.5,34.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + pos: -73.5,34.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + pos: -74.5,34.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + pos: -70.5,34.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,49.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,45.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,41.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,37.5 + parent: 2 + - uid: 12685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,50.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,52.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,51.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,36.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,35.5 + parent: 2 + - uid: 12763 + components: + - type: Transform + pos: -34.5,59.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + pos: -35.5,59.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,30.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,96.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,96.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + pos: -20.5,92.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + pos: -22.5,91.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: -21.5,93.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + pos: 12.5,50.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: -67.5,-2.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + pos: -72.5,-1.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: -45.5,17.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,74.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,74.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + pos: -20.5,93.5 + parent: 2 + - uid: 13451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 2 + - uid: 13454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 13455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 2 + - uid: 13456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 2 + - uid: 13467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-28.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-28.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 2 + - uid: 13473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-28.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-28.5 + parent: 2 + - uid: 13477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-28.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 2 + - uid: 13480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-28.5 + parent: 2 + - uid: 13482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 2 + - uid: 13490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 2 + - uid: 13491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-27.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 2 + - uid: 13495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + - uid: 13498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 2 + - uid: 13499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-27.5 + parent: 2 + - uid: 13505 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 13506 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 13561 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 2 + - uid: 13837 + components: + - type: Transform + pos: -69.5,77.5 + parent: 2 + - uid: 13838 + components: + - type: Transform + pos: -69.5,76.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,71.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 14021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 2 + - uid: 14064 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 14066 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 14068 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: -64.5,75.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: -62.5,75.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: -63.5,75.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: -46.5,75.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + pos: -46.5,74.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: -47.5,75.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + pos: -55.5,75.5 + parent: 2 + - uid: 14096 + components: + - type: Transform + pos: -59.5,75.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + pos: -51.5,75.5 + parent: 2 + - uid: 14262 + components: + - type: Transform + pos: -72.5,19.5 + parent: 2 + - uid: 14323 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 2 + - uid: 14384 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 14396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,37.5 + parent: 2 + - uid: 14405 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 14410 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 14415 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 14419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + - uid: 14428 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 14431 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,49.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,49.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 14659 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 14661 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 14662 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 14663 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 14704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 14761 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 14773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,78.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,73.5 + parent: 2 + - uid: 15110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,74.5 + parent: 2 + - uid: 15175 + components: + - type: Transform + pos: -36.5,51.5 + parent: 2 + - uid: 15379 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 15402 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 15404 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + pos: 10.5,83.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,74.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 15554 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 + - uid: 15566 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 15567 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 15568 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: -90.5,71.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + pos: -91.5,71.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: -92.5,71.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -93.5,71.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -93.5,67.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: -91.5,67.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -90.5,67.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + pos: -92.5,67.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,57.5 + parent: 2 + - uid: 15785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,53.5 + parent: 2 + - uid: 15786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,53.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,53.5 + parent: 2 + - uid: 15788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,53.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,57.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,57.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,57.5 + parent: 2 + - uid: 16397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,82.5 + parent: 2 + - uid: 16398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,83.5 + parent: 2 + - uid: 16399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,83.5 + parent: 2 + - uid: 16400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,83.5 + parent: 2 + - uid: 16401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,83.5 + parent: 2 + - uid: 16402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,79.5 + parent: 2 + - uid: 16403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,79.5 + parent: 2 + - uid: 16404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,79.5 + parent: 2 + - uid: 16405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,79.5 + parent: 2 + - uid: 16406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,79.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,79.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,79.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,79.5 + parent: 2 + - uid: 16411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,79.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,79.5 + parent: 2 + - uid: 16413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,79.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,79.5 + parent: 2 + - uid: 16415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,79.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,76.5 + parent: 2 + - uid: 16420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,76.5 + parent: 2 + - uid: 16421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,76.5 + parent: 2 + - uid: 16459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,83.5 + parent: 2 + - uid: 16460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,83.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 19 + components: + - type: Transform + pos: -70.5,61.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: -0.5,30.5 + parent: 2 + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,22.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,13.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: -62.5,37.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,52.5 + parent: 2 + - uid: 948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,7.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: -59.5,18.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: -39.5,64.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,34.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -50.5,12.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -64.5,60.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: -55.5,60.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -70.5,59.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -68.5,61.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -70.5,60.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -69.5,61.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: -70.5,56.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -34.5,49.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: -70.5,68.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -70.5,70.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -68.5,37.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: -70.5,53.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: -64.5,38.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -63.5,37.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 25.5,47.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,13.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,14.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,17.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,18.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,13.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,13.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,13.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,13.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,13.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,13.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,13.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,53.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: -48.5,7.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: -40.5,64.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: -45.5,18.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: -49.5,12.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: -45.5,14.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: -45.5,13.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: -44.5,13.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: -48.5,18.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: -66.5,2.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: -66.5,0.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,24.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,22.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,23.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,25.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,26.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: 9.5,42.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,26.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,22.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,23.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -62.5,4.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,22.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,22.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,22.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,22.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,22.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,22.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,22.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,22.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,22.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,22.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,22.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,22.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,22.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,22.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,22.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,22.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,22.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,22.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,22.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,21.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,21.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,21.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,21.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,21.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,21.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,21.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,21.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,21.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,22.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,22.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,24.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,24.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,25.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,25.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,25.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,25.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,25.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,24.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,23.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,25.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,25.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,25.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,25.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,26.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,28.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,29.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,29.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,29.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,29.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,26.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,28.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,29.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,29.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,29.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,29.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,29.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,28.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,27.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,26.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,29.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,28.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,27.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,27.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,18.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: -68.5,11.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,20.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,20.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,21.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,47.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,23.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,25.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,26.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,27.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,28.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,24.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,30.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,31.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,29.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,31.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,32.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,30.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,32.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,30.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,32.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,36.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,33.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,34.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -46.5,33.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -47.5,34.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -49.5,34.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -50.5,34.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -51.5,34.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: -48.5,34.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: -53.5,34.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: -57.5,34.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -58.5,34.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: -60.5,34.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -61.5,34.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: -64.5,34.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: -59.5,34.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: -57.5,33.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: -53.5,33.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: -10.5,34.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -11.5,34.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: -17.5,34.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: -18.5,34.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: -19.5,34.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,35.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,35.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,35.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -29.5,34.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,37.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: -30.5,34.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: -46.5,37.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: -48.5,37.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: -49.5,37.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -51.5,37.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: -52.5,37.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: -53.5,37.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: -54.5,37.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: -46.5,44.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: -64.5,49.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: -51.5,44.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: -54.5,45.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: -54.5,44.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,50.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: -46.5,45.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: -47.5,44.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: -49.5,56.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: -53.5,44.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: -46.5,49.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: -55.5,37.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: -54.5,51.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: -48.5,53.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: -46.5,53.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: -57.5,37.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: -58.5,37.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: -59.5,37.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: -60.5,37.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: -61.5,37.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: -56.5,37.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: -64.5,37.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: -64.5,41.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: -59.5,44.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: -60.5,44.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: -63.5,44.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: -61.5,44.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: -64.5,40.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: -64.5,44.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: -64.5,43.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: -64.5,45.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: -64.5,46.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: -64.5,47.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: -64.5,48.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: -64.5,51.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: -64.5,53.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: -64.5,54.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: -64.5,50.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: -64.5,55.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,42.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,59.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,61.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,47.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,59.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,60.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,59.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,47.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,64.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,47.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,59.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,47.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,59.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,59.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,59.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: -11.5,62.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,59.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: -58.5,44.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: -55.5,61.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,35.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,35.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: -68.5,8.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: -64.5,57.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: -64.5,56.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: -64.5,58.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: -55.5,56.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: -55.5,57.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: -55.5,58.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: -55.5,59.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: -64.5,59.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: -56.5,61.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: -57.5,61.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: -58.5,61.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: -59.5,61.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: -61.5,61.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: -62.5,61.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: -63.5,61.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: -64.5,61.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: -64.5,64.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: -63.5,64.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: -60.5,64.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: -59.5,64.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: -58.5,64.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: -42.5,68.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: -54.5,64.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: -41.5,68.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: -40.5,68.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: -40.5,66.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: -64.5,66.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: -64.5,67.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: -40.5,67.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: -53.5,64.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: -51.5,64.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: -50.5,64.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: -46.5,64.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: -47.5,64.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: -52.5,66.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: -52.5,67.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: -44.5,64.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: -45.5,64.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 10.5,41.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 9.5,41.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,23.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,24.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,24.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,55.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: 25.5,49.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,33.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: 3.5,49.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: -0.5,34.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: -0.5,33.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: -0.5,32.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: 3.5,52.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 3.5,53.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: 3.5,54.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: 10.5,66.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: 12.5,66.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 13.5,66.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 14.5,66.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: 11.5,66.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: 6.5,66.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: 5.5,57.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 4.5,59.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: -11.5,60.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -11.5,64.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: -0.5,31.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 5.5,55.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: -1.5,60.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: -1.5,63.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: -1.5,67.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,55.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: 16.5,41.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: -11.5,61.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,22.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,47.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,50.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,47.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: -62.5,64.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: -56.5,64.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: -52.5,64.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: -36.5,69.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: -36.5,65.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: -64.5,68.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: -62.5,68.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: -61.5,68.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: -59.5,68.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: -58.5,68.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: -57.5,68.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: -56.5,68.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: -63.5,68.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: -52.5,68.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: -53.5,68.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: -55.5,68.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: -48.5,68.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: -50.5,68.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: -51.5,68.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: -47.5,68.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: -44.5,68.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: -43.5,68.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: -45.5,68.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: -52.5,65.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: -46.5,65.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: -46.5,66.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: -46.5,67.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: -58.5,67.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: -58.5,66.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: -58.5,65.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: -63.5,51.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: -39.5,68.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,29.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: -36.5,70.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: -36.5,67.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: -36.5,66.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: -39.5,70.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,72.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,64.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,37.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,34.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: -63.5,29.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,70.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: -75.5,13.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: -72.5,-0.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: -76.5,1.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: -74.5,1.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: -75.5,1.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: -73.5,1.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,64.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,13.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,9.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,12.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: -54.5,49.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,58.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: 29.5,46.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 25.5,46.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: -12.5,34.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: -62.5,29.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: -61.5,29.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,42.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,39.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,43.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,40.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,38.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: -64.5,71.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: -65.5,72.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: -61.5,71.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: -56.5,71.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: -54.5,71.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: -57.5,71.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: -48.5,12.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: -53.5,71.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: -60.5,71.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: -59.5,71.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: -63.5,71.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: -62.5,71.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: -65.5,71.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: -78.5,1.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: -77.5,1.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: -68.5,9.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: -68.5,14.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: -68.5,7.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: -72.5,13.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: -72.5,12.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: -74.5,13.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: -73.5,13.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: -72.5,7.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: -70.5,13.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: -63.5,19.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: -71.5,13.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: -63.5,18.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: -61.5,2.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: -59.5,7.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: -58.5,7.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: -60.5,2.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: -61.5,7.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: -67.5,18.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: -66.5,4.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: -71.5,4.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: -69.5,4.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: -67.5,15.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: -66.5,15.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: -67.5,7.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,44.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: -66.5,7.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -31.5,26.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -24.5,26.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -17.5,26.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,33.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -7.5,29.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: -23.5,26.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,26.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: -58.5,29.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,31.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: -60.5,29.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,37.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,29.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,30.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,32.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,59.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,61.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,62.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,60.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,63.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,67.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: -46.5,50.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,41.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,43.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,44.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,39.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,41.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,40.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,36.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: -64.5,15.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,35.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,35.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,35.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: -34.5,46.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,41.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,38.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,43.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,42.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,40.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,30.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: -27.5,13.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,35.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: -29.5,13.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,56.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,8.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: -51.5,52.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,65.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,64.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,62.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,56.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,56.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,56.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: 6.5,65.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: 6.5,59.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: -63.5,14.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: -57.5,7.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,45.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: -45.5,6.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: -67.5,17.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: -66.5,3.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: -65.5,7.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: -65.5,15.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: -45.5,5.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: -68.5,10.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: -69.5,8.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: -47.5,3.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,54.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,53.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: -59.5,33.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: -59.5,32.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: -68.5,17.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: -69.5,17.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: -62.5,7.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: -71.5,17.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + pos: -60.5,7.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,49.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,53.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + pos: -46.5,52.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,66.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + pos: -61.5,4.5 + parent: 2 + - uid: 9605 + components: + - type: Transform + pos: -65.5,73.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,31.5 + parent: 2 + - uid: 9961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,71.5 + parent: 2 + - uid: 9999 + components: + - type: Transform + pos: -63.5,12.5 + parent: 2 + - uid: 10000 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,53.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 10167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,36.5 + parent: 2 + - uid: 10263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,12.5 + parent: 2 + - uid: 10349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,27.5 + parent: 2 + - uid: 10516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,65.5 + parent: 2 + - uid: 10557 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,53.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,71.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,71.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,71.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,53.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: -48.5,64.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,50.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,50.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + pos: -49.5,53.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,53.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + pos: -47.5,53.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,53.5 + parent: 2 + - uid: 12663 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,48.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,46.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,39.5 + parent: 2 + - uid: 12955 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 12980 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,71.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + pos: -55.5,18.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,56.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + pos: 6.5,60.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + pos: 5.5,59.5 + parent: 2 + - uid: 13210 + components: + - type: Transform + pos: 6.5,61.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,56.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,3.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: -52.5,18.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 13527 + components: + - type: Transform + pos: 26.5,46.5 + parent: 2 + - uid: 13528 + components: + - type: Transform + pos: 28.5,46.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + pos: 30.5,46.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 13677 + components: + - type: Transform + pos: -63.5,15.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + pos: -47.5,7.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,47.5 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: -72.5,2.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,50.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + pos: -45.5,10.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + pos: -52.5,71.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + pos: -51.5,71.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + pos: -55.5,71.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + pos: -51.5,72.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + pos: -51.5,74.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + pos: -51.5,73.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + pos: -46.5,72.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + pos: -47.5,71.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + pos: -48.5,71.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + pos: -50.5,71.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,50.5 + parent: 2 + - uid: 14196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,50.5 + parent: 2 + - uid: 14214 + components: + - type: Transform + pos: -63.5,16.5 + parent: 2 + - uid: 14230 + components: + - type: Transform + pos: -72.5,3.5 + parent: 2 + - uid: 14232 + components: + - type: Transform + pos: -72.5,5.5 + parent: 2 + - uid: 14233 + components: + - type: Transform + pos: -72.5,1.5 + parent: 2 + - uid: 14234 + components: + - type: Transform + pos: -68.5,15.5 + parent: 2 + - uid: 14235 + components: + - type: Transform + pos: -72.5,4.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 14260 + components: + - type: Transform + pos: -41.5,10.5 + parent: 2 + - uid: 14261 + components: + - type: Transform + pos: -60.5,3.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: -64.5,7.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 14320 + components: + - type: Transform + pos: -66.5,-1.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 2 + - uid: 14449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,12.5 + parent: 2 + - uid: 14450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,12.5 + parent: 2 + - uid: 14505 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 14536 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - uid: 14541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,29.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,29.5 + parent: 2 + - uid: 14671 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + pos: -64.5,4.5 + parent: 2 + - uid: 15234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,50.5 + parent: 2 + - uid: 16381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,70.5 + parent: 2 +- proto: WardrobeBlackFilled + entities: + - uid: 7411 + components: + - type: Transform + pos: -63.5,28.5 + parent: 2 +- proto: WardrobeBlueFilled + entities: + - uid: 7412 + components: + - type: Transform + pos: -63.5,27.5 + parent: 2 +- proto: WardrobeBotanistFilled + entities: + - uid: 14338 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 +- proto: WardrobeCargoFilled + entities: + - uid: 5003 + components: + - type: Transform + pos: 5.5,62.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: 5.5,64.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: 5.5,63.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 10781 + components: + - type: Transform + pos: -65.5,14.5 + parent: 2 +- proto: WardrobeGreenFilled + entities: + - uid: 7413 + components: + - type: Transform + pos: -63.5,26.5 + parent: 2 +- proto: WardrobeGreyFilled + entities: + - uid: 7414 + components: + - type: Transform + pos: -63.5,25.5 + parent: 2 +- proto: WardrobeMixedFilled + entities: + - uid: 3953 + components: + - type: Transform + pos: -57.5,60.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: -63.5,24.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + pos: -56.5,60.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + pos: -54.5,26.5 + parent: 2 + - uid: 14868 + components: + - type: Transform + pos: -48.5,26.5 + parent: 2 + - uid: 14869 + components: + - type: Transform + pos: -48.5,22.5 + parent: 2 + - uid: 14870 + components: + - type: Transform + pos: -55.5,24.5 + parent: 2 +- proto: WardrobePinkFilled + entities: + - uid: 7416 + components: + - type: Transform + pos: -63.5,23.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 1415 + components: + - type: Transform + pos: -21.5,50.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: -1.5,47.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: -1.5,49.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: -24.5,50.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + pos: -15.5,50.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: -18.5,50.5 + parent: 2 + - uid: 9759 + components: + - type: Transform + pos: -13.5,48.5 + parent: 2 +- proto: WardrobeWhiteFilled + entities: + - uid: 15037 + components: + - type: Transform + pos: -61.5,28.5 + parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 10473 + components: + - type: Transform + pos: -62.5,28.5 + parent: 2 +- proto: WarningCO2 + entities: + - uid: 932 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 934 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 +- proto: WarningN2O + entities: + - uid: 935 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 933 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 +- proto: WarningPlasma + entities: + - uid: 931 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 +- proto: WarningTritium + entities: + - uid: 3114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 3092 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 3115 + components: + - type: MetaData + desc: WARNING! water vapor flow tube. ensure flow is disengaged before working. + name: Water Vapor Waste Sign + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 1800 + components: + - type: Transform + pos: -54.5,59.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: -10.5,60.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: -14.5,58.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: -33.5,47.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + pos: 5.5,60.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 9062 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: -66.5,24.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: -60.5,70.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + pos: 20.5,22.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + pos: 11.5,50.5 + parent: 2 + - uid: 14328 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + pos: -36.5,36.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 4610 + components: + - type: Transform + pos: -47.5,39.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + pos: -37.5,70.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 80 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 4876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,43.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,45.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,69.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,16.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,66.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,40.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: -37.5,42.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: -19.5,75.5 + parent: 2 +- proto: WeaponCapacitorRechargerCircuitboard + entities: + - uid: 14184 + components: + - type: Transform + pos: -61.450706,72.571655 + parent: 2 +- proto: WeaponFlareGun + entities: + - uid: 6330 + components: + - type: Transform + pos: -21.276943,0.4063511 + parent: 2 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - uid: 6541 + components: + - type: Transform + pos: -21.467924,0.6558256 + parent: 2 + - type: ChamberMagazineAmmoProvider + boltClosed: True +- proto: WeaponLaserCarbine + entities: + - uid: 6442 + components: + - type: Transform + parent: 13034 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunEnforcer + entities: + - uid: 6443 + components: + - type: Transform + parent: 13031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 1941 + components: + - type: Transform + pos: -34.50039,40.60095 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 1641 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: -35.5,36.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: 10.5,54.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 9035 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: 15.5,48.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: -39.5,67.5 + parent: 2 + - uid: 9038 + components: + - type: Transform + pos: -66.5,68.5 + parent: 2 + - uid: 14585 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + pos: -75.5,14.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + pos: -71.5,12.5 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 +- proto: Windoor + entities: + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,18.5 + parent: 2 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,18.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: -44.5,56.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: -43.5,56.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,42.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: -12.5,65.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,66.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,65.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,64.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,29.5 + parent: 2 + - uid: 13823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,30.5 + parent: 2 + - type: AccessReader + access: + - - Medical + - uid: 16378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,66.5 + parent: 2 +- proto: WindoorBarLocked + entities: + - uid: 13562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,51.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 2142 + components: + - type: Transform + pos: -49.5,44.5 + parent: 2 + - uid: 13259 + components: + - type: Transform + pos: -48.5,44.5 + parent: 2 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 5198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,42.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,43.5 + parent: 2 +- proto: WindoorKitchenLocked + entities: + - uid: 6752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,44.5 + parent: 2 + - uid: 14045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,44.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 1777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,47.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,47.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,46.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,47.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,47.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,46.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,51.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,51.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,63.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 4929 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 1357 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 +- proto: WindoorSecureBrigLocked + entities: + - uid: 1142 + components: + - type: Transform + pos: -67.5,64.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: -16.5,47.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: -19.5,47.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: -22.5,47.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: -25.5,47.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,45.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,43.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,43.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,42.5 + parent: 2 + - type: AccessReader + access: + - - Brig + - - ChiefMedicalOfficer + - uid: 5121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,42.5 + parent: 2 + - type: AccessReader + access: + - - Brig + - - ChiefMedicalOfficer + - uid: 5624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,45.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 6052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,64.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,65.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,66.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 5165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,27.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,27.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,27.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,27.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,29.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 5340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,88.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,89.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: -28.5,91.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: -26.5,91.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 514 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 12782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,63.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 12655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,23.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,25.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 2850 + components: + - type: Transform + pos: 8.5,66.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 5714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,38.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,39.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: -21.5,91.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 6681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,61.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 6725 + components: + - type: Transform + pos: -32.5,51.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: -31.5,51.5 + parent: 2 +- proto: Window + entities: + - uid: 235 + components: + - type: Transform + pos: 4.5,70.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,26.5 + parent: 2 + - uid: 684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,59.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: -41.5,18.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: -66.5,61.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 6.5,64.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: -30.5,26.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,62.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: 6.5,63.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,34.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,34.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,70.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,44.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,43.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,34.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,34.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,41.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,39.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,64.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,64.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,26.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,29.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,26.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,13.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,63.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,4.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,13.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,4.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,1.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: 6.5,62.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,8.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,9.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,10.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,11.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + pos: -61.5,18.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: -60.5,18.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + pos: -54.5,18.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: -53.5,18.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 10325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 2 + - uid: 11276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,8.5 + parent: 2 + - uid: 11479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,46.5 + parent: 2 + - uid: 11591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,56.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + pos: -65.5,61.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + pos: -70.5,55.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,44.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,56.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,56.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,24.5 + parent: 2 + - uid: 13187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,59.5 + parent: 2 + - uid: 15197 + components: + - type: Transform + pos: -18.5,29.5 + parent: 2 + - uid: 15198 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 16385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,67.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,30.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,24.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,56.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,56.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,55.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,55.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,56.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,56.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: -36.5,55.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,55.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,56.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,55.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: -7.5,55.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,56.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: -71.5,40.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,45.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,44.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,44.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,45.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,43.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,42.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,41.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,40.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,46.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,46.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: -21.5,70.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: -22.5,70.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: -23.5,70.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,42.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,46.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,43.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,41.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,30.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,30.5 + parent: 2 + - uid: 13943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,61.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,61.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,62.5 + parent: 2 + - uid: 14539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,62.5 + parent: 2 + - uid: 14753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,40.5 + parent: 2 + - uid: 15041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,70.5 + parent: 2 + - uid: 15042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,70.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,70.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,70.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,70.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,34.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,34.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,33.5 + parent: 2 + - uid: 16407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,34.5 + parent: 2 + - uid: 16501 + components: + - type: Transform + pos: -2.5,80.5 + parent: 2 + - uid: 16503 + components: + - type: Transform + pos: -1.5,80.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: -0.5,80.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,80.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,80.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,80.5 + parent: 2 + - uid: 16508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,80.5 + parent: 2 + - uid: 16509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,80.5 + parent: 2 + - uid: 16621 + components: + - type: Transform + pos: -22.5,61.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,63.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,63.5 + parent: 2 + - uid: 16624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,63.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,64.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: -4.5,60.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,62.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,60.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,63.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,64.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,61.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 4401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,42.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,42.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: -28.5,90.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,91.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,91.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,65.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,61.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,61.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,61.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,61.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,61.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,61.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,46.5 + parent: 2 + - uid: 11445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,33.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -20.5,32.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 11533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,30.5 + parent: 2 + - uid: 15213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + - uid: 15214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 2 + - uid: 15215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,15.5 + parent: 2 + - uid: 15216 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 +- proto: WoodDoor + entities: + - uid: 7436 + components: + - type: Transform + pos: -60.5,32.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: -58.5,32.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: -61.5,30.5 + parent: 2 +- proto: WoodenBench + entities: + - uid: 8347 + components: + - type: Transform + pos: -59.5,12.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: -60.5,12.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: -59.5,14.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: -60.5,16.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: -59.5,16.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: -54.5,16.5 + parent: 2 + - uid: 14311 + components: + - type: Transform + pos: -55.5,16.5 + parent: 2 + - uid: 14312 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + pos: -55.5,12.5 + parent: 2 +- proto: Wrench + entities: + - uid: 6481 + components: + - type: Transform + pos: -20.579975,30.627071 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: 3.5624685,76.40522 + parent: 2 +- proto: XenoBasherGlass + entities: + - uid: 15756 + components: + - type: Transform + pos: -63.702835,43.846817 + parent: 2 +... diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 8f5ae66ccb..d43a40f83d 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -8,6 +8,7 @@ - Core - Fland #- Gate + - Loop - Marathon - Meta - Oasis diff --git a/Resources/Prototypes/Maps/loop.yml b/Resources/Prototypes/Maps/loop.yml new file mode 100644 index 0000000000..64d1e297a5 --- /dev/null +++ b/Resources/Prototypes/Maps/loop.yml @@ -0,0 +1,65 @@ +- type: gameMap + id: Loop + mapName: 'Loop Station' + mapPath: /Maps/loop.yml + minPlayers: 30 + maxPlayers: 70 + stations: + Loop: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Loop Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_wode.yml + - type: StationJobs + availableJobs: + #command + Captain: [ 1, 1 ] + #service + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 2, 2 ] + Chef: [ 2, 2 ] + Janitor: [ 2, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 3, 3 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 5, 5 ] + TechnicalAssistant: [ 5, 5 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 4, 5 ] + Paramedic: [ 2, 2 ] + MedicalIntern: [ 4, 4 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 5 ] + ResearchAssistant: [ 4, 4 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 5, 5 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 4, 4 ] + Lawyer: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 4, 4 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Reporter: [ 1, 1 ] + #silicon + StationAi: [ 1, 1 ] + Borg: [ 2, 3 ] From 2581c24bfe903c26f7b33642fa017dce245ce80c Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Dec 2024 09:39:31 +0000 Subject: [PATCH 165/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7c15eed891..c886eb0dba 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Added black suspenders for mime. - type: Add - id: 7234 - time: '2024-08-28T09:43:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29055 - author: saintmuntzer changes: - message: Riot helmet now matches security helmet colors. @@ -3936,3 +3929,10 @@ id: 7733 time: '2024-12-19T00:46:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33854 +- author: TytosB + changes: + - message: 'added new mid pop map: loop' + type: Add + id: 7734 + time: '2024-12-19T09:38:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33697 From ef45c1666797d9dad539198adb1dc6176edee824 Mon Sep 17 00:00:00 2001 From: SpaceLizard Date: Thu, 19 Dec 2024 05:15:48 -0500 Subject: [PATCH 166/263] Food Container Size Increase (#33842) * Stuff * hehe * moar. --- .../Objects/Consumable/Food/burger.yml | 6 ++-- .../Objects/Consumable/Food/ingredients.yml | 4 +-- .../Objects/Consumable/Food/meals.yml | 6 ++-- .../Objects/Consumable/Food/produce.yml | 6 ++-- .../Objects/Consumable/Food/snacks.yml | 2 +- .../Entities/Objects/Consumable/Food/soup.yml | 30 +++++++++---------- 6 files changed, 27 insertions(+), 27 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml index 1c9c7ae565..6bb88bf9b5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml @@ -405,7 +405,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment Quantity: 4 @@ -583,7 +583,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment Quantity: 6 @@ -886,7 +886,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 55 + maxVol: 90 reagents: - ReagentId: Nutriment Quantity: 44 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index 9542bd2204..af7d75b175 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -710,7 +710,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 6 + maxVol: 18 reagents: - ReagentId: Protein Quantity: 9 @@ -758,7 +758,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 5 + maxVol: 8 reagents: - ReagentId: Nutriment Quantity: 2 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml index fc056b83f1..0ba1bdf6ab 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml @@ -482,7 +482,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment Quantity: 10 @@ -538,7 +538,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 18 + maxVol: 25 reagents: - ReagentId: Nutriment Quantity: 6 @@ -563,7 +563,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 10 + maxVol: 15 reagents: - ReagentId: Nutriment Quantity: 8 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 342f2723b8..877f3d86f1 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -144,7 +144,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 7 + maxVol: 13 reagents: - ReagentId: Nutriment Quantity: 3 @@ -598,7 +598,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 18 + maxVol: 20 reagents: - ReagentId: Vitamin Quantity: 4 @@ -2592,4 +2592,4 @@ - type: FoodSequenceElement entries: Taco: AnomalyBerry - Burger: AnomalyBerryBurger \ No newline at end of file + Burger: AnomalyBerryBurger diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index e9e57f79ce..31963ca3b0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -683,7 +683,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 30 + maxVol: 45 reagents: - ReagentId: Fiber Quantity: 40 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml index d5cb4311c4..2fc551595f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml @@ -83,7 +83,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment Quantity: 10 @@ -108,7 +108,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 25 reagents: - ReagentId: Nutriment Quantity: 8 @@ -168,7 +168,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment Quantity: 8 @@ -432,7 +432,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 40 + maxVol: 40.5 reagents: - ReagentId: Nutriment Quantity: 18 @@ -566,7 +566,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 15 reagents: - ReagentId: Nutriment Quantity: 6 @@ -591,7 +591,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 30 reagents: - ReagentId: Nutriment Quantity: 7 @@ -620,7 +620,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 20 reagents: - ReagentId: Nutriment Quantity: 1 @@ -646,7 +646,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 20 reagents: - ReagentId: Nutriment Quantity: 3 @@ -701,7 +701,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 25 reagents: - ReagentId: Nutriment Quantity: 2 @@ -727,7 +727,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 25 reagents: - ReagentId: Nutriment Quantity: 5 @@ -754,7 +754,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 30.5 reagents: - ReagentId: Nutriment Quantity: 5 @@ -797,7 +797,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 25 reagents: - ReagentId: Nutriment Quantity: 8 @@ -1083,7 +1083,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 25 reagents: - ReagentId: Nutriment Quantity: 15 @@ -1137,7 +1137,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 10 + maxVol: 15 reagents: - ReagentId: Nutriment Quantity: 1 @@ -1214,7 +1214,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 15 + maxVol: 20 reagents: - ReagentId: Nutriment Quantity: 6 From 128721ee4ef8ea061a45c3c58d471a67c7c40961 Mon Sep 17 00:00:00 2001 From: Centronias Date: Thu, 19 Dec 2024 03:31:13 -0800 Subject: [PATCH 167/263] Logic Gate Compatibility with Non-Logic Signals bugfix (#33792) :) --- Content.Server/DeviceLinking/Systems/LogicGateSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs index 1280ecd5d1..e6a5b37c27 100644 --- a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs +++ b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs @@ -44,7 +44,7 @@ public sealed class LogicGateSystem : EntitySystem } if (comp.StateB == SignalState.Momentary) { - comp.StateB = SignalState.High; + comp.StateB = SignalState.Low; } // output most likely changed so update it From efa76be390f46da89fdc2c08f8a18baec0f1d2eb Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Dec 2024 11:32:19 +0000 Subject: [PATCH 168/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c886eb0dba..5975b94c4e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: saintmuntzer - changes: - - message: Riot helmet now matches security helmet colors. - type: Fix - id: 7235 - time: '2024-08-28T11:27:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31530 - author: coolboy911 changes: - message: wide-spectrum anomaly locator is now included in cyborg's anomaly module @@ -3936,3 +3929,11 @@ id: 7734 time: '2024-12-19T09:38:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33697 +- author: Centronias + changes: + - message: Fixed a bug where the B input on logic gates would get stuck in a high + state + type: Fix + id: 7735 + time: '2024-12-19T11:31:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33792 From 25980d88883b8c8b0731cbf619e42818f5759d3a Mon Sep 17 00:00:00 2001 From: LevitatingTree <114672939+LevitatingTree@users.noreply.github.com> Date: Thu, 19 Dec 2024 20:44:48 +0400 Subject: [PATCH 169/263] Remove plushie_lizard_mirrored.png (#33855) * Remove plushie_lizard_mirrored.png * Remove from meta.json * Replace mirrored state from yml --------- Co-authored-by: LevitatingTree --- .../Prototypes/Entities/Objects/Fun/toys.yml | 3 ++- Resources/Textures/Objects/Fun/toys.rsi/meta.json | 3 --- .../Fun/toys.rsi/plushie_lizard_mirrored.png | Bin 262 -> 0 bytes 3 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 Resources/Textures/Objects/Fun/toys.rsi/plushie_lizard_mirrored.png diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 2672be0622..0eeb92e02f 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -372,7 +372,8 @@ - type: Item size: Small - type: Sprite - state: plushie_lizard_mirrored + state: plushie_lizard + scale: -1, 1 - type: entity parent: BasePlushie diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index 4d86adeded..d39b47ab50 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -100,9 +100,6 @@ { "name": "plushie_arachnid" }, - { - "name": "plushie_lizard_mirrored" - }, { "name": "plushie_lizard_inversed" }, diff --git a/Resources/Textures/Objects/Fun/toys.rsi/plushie_lizard_mirrored.png b/Resources/Textures/Objects/Fun/toys.rsi/plushie_lizard_mirrored.png deleted file mode 100644 index a8ad75da91d3c2283f2370b45b4465387e65e8ba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv-2k5u*Z*ul76^E(R0~>Q9=5?e z@q$VE8Hc>1&TS7PR=lp-`mXiAg2I1W+yDRnH?#eh04ilH3GxeOaCmkj4ajNtba4#P zIG>y#5z?@C&mIO>hk!kMoCG@0{|MNyXHOu5r-Oh-K%?S?#+){n%F0T2W~T*qv6|@|cS6GJIhKvz8Db7hQCyt;U5~A$VPod;S9f=dEASYYnXz%{IL|nl zbZ6Sms_Q%|-Z56U($1Z6*tV7VMNZ0e;{p?&f))k_^L^UW7Vf(K6XX|9S3j3^P6D= From 209c1769ee7bafe67aaade573bdf74471c5a74ec Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:20:20 -0600 Subject: [PATCH 170/263] Tweaks for the holopad (#33928) * Initial commit * AIs get a warning when trying to answer long distance calls * Better handling of ending telephone calls * Fixed issue with duplicated holopad window when an AI answers a summons * Changed how ranges are handled, added the bluespace holopad * Bug fixes * More bug fixes * More bug fixes * Update Resources/Prototypes/Entities/Structures/Machines/holopad.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Resources/Prototypes/Entities/Structures/Machines/holopad.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Server/Holopad/HolopadSystem.cs | 31 ++++++++++++-- Content.Server/Telephone/TelephoneSystem.cs | 32 +++++++++------ .../Telephone/TelephoneComponent.cs | 28 ++++++++++--- Resources/Locale/en-US/holopad/holopad.ftl | 3 +- .../Entities/Mobs/Player/silicon.yml | 4 ++ .../Entities/Structures/Machines/holopad.yml | 41 ++++++++++++++----- 6 files changed, 105 insertions(+), 34 deletions(-) diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs index bd36d38bee..549bacc1a8 100644 --- a/Content.Server/Holopad/HolopadSystem.cs +++ b/Content.Server/Holopad/HolopadSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Chat.Systems; +using Content.Server.Popups; using Content.Server.Power.EntitySystems; using Content.Server.Speech.Components; using Content.Server.Telephone; @@ -31,6 +32,7 @@ public sealed class HolopadSystem : SharedHolopadSystem [Dependency] private readonly SharedStationAiSystem _stationAiSystem = default!; [Dependency] private readonly AccessReaderSystem _accessReaderSystem = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; private float _updateTimer = 1.0f; @@ -117,7 +119,22 @@ public sealed class HolopadSystem : SharedHolopadSystem var source = GetLinkedHolopads(receiver).FirstOrNull(); if (source != null) + { + // Close any AI request windows + if (_stationAiSystem.TryGetStationAiCore(args.Actor, out var stationAiCore) && stationAiCore != null) + _userInterfaceSystem.CloseUi(receiver.Owner, HolopadUiKey.AiRequestWindow, args.Actor); + + // Try to warn the AI if the source of the call is out of its range + if (TryComp(stationAiCore, out var stationAiTelephone) && + TryComp(source, out var sourceTelephone) && + !_telephoneSystem.IsSourceInRangeOfReceiver((stationAiCore.Value.Owner, stationAiTelephone), (source.Value.Owner, sourceTelephone))) + { + _popupSystem.PopupEntity(Loc.GetString("holopad-ai-is-unable-to-reach-holopad"), receiver, args.Actor); + return; + } + ActivateProjector(source.Value, args.Actor); + } return; } @@ -134,7 +151,8 @@ public sealed class HolopadSystem : SharedHolopadSystem if (IsHolopadControlLocked(entity, args.Actor)) return; - _telephoneSystem.EndTelephoneCalls((entity, entityTelephone)); + if (entityTelephone.CurrentState != TelephoneState.EndingCall && entityTelephone.CurrentState != TelephoneState.Idle) + _telephoneSystem.EndTelephoneCalls((entity, entityTelephone)); // If the user is an AI, end all calls originating from its // associated core to ensure that any broadcasts will end @@ -142,7 +160,8 @@ public sealed class HolopadSystem : SharedHolopadSystem !_stationAiSystem.TryGetStationAiCore((args.Actor, stationAiHeld), out var stationAiCore)) return; - if (TryComp(stationAiCore, out var telephone)) + if (TryComp(stationAiCore, out var telephone) && + telephone.CurrentState != TelephoneState.EndingCall && telephone.CurrentState != TelephoneState.Idle) _telephoneSystem.EndTelephoneCalls((stationAiCore.Value, telephone)); } @@ -414,7 +433,7 @@ public sealed class HolopadSystem : SharedHolopadSystem AlternativeVerb verb = new() { Act = () => ActivateProjector(entity, user), - Text = Loc.GetString("activate-holopad-projector-verb"), + Text = Loc.GetString("holopad-activate-projector-verb"), Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/vv.svg.192dpi.png")), }; @@ -594,7 +613,8 @@ public sealed class HolopadSystem : SharedHolopadSystem { _stationAiSystem.SwitchRemoteEntityMode((entity.Owner, stationAiCore), true); - if (TryComp(entity, out var stationAiCoreTelphone)) + if (TryComp(entity, out var stationAiCoreTelphone) && + stationAiCoreTelphone.CurrentState != TelephoneState.EndingCall && stationAiCoreTelphone.CurrentState != TelephoneState.Idle) _telephoneSystem.EndTelephoneCalls((entity, stationAiCoreTelphone)); } @@ -648,6 +668,9 @@ public sealed class HolopadSystem : SharedHolopadSystem var source = new Entity(stationAiCore.Value, stationAiTelephone); + if (!_telephoneSystem.IsSourceInRangeOfReceiver(source, receiver)) + return; + // Terminate any calls that the core is hosting and immediately connect to the receiver _telephoneSystem.TerminateTelephoneCalls(source); diff --git a/Content.Server/Telephone/TelephoneSystem.cs b/Content.Server/Telephone/TelephoneSystem.cs index 8507f4d507..b81a72ad23 100644 --- a/Content.Server/Telephone/TelephoneSystem.cs +++ b/Content.Server/Telephone/TelephoneSystem.cs @@ -277,6 +277,10 @@ public sealed class TelephoneSystem : SharedTelephoneSystem public void EndTelephoneCalls(Entity entity) { + // No need to end any calls if the telephone is already ending a call + if (entity.Comp.CurrentState == TelephoneState.EndingCall) + return; + HandleEndingTelephoneCalls(entity, TelephoneState.EndingCall); var ev = new TelephoneCallEndedEvent(); @@ -285,14 +289,15 @@ public sealed class TelephoneSystem : SharedTelephoneSystem public void TerminateTelephoneCalls(Entity entity) { + // No need to terminate any calls if the telephone is idle + if (entity.Comp.CurrentState == TelephoneState.Idle) + return; + HandleEndingTelephoneCalls(entity, TelephoneState.Idle); } private void HandleEndingTelephoneCalls(Entity entity, TelephoneState newState) { - if (entity.Comp.CurrentState == newState) - return; - foreach (var linkedTelephone in entity.Comp.LinkedTelephones) { if (!linkedTelephone.Comp.LinkedTelephones.Remove(entity)) @@ -431,23 +436,26 @@ public sealed class TelephoneSystem : SharedTelephoneSystem public bool IsSourceInRangeOfReceiver(Entity source, Entity receiver) { + // Check if the source and receiver have compatible transmision / reception bandwidths + if (!source.Comp.CompatibleRanges.Contains(receiver.Comp.TransmissionRange)) + return false; + var sourceXform = Transform(source); var receiverXform = Transform(receiver); + // Check if we should ignore a device thats on the same grid + if (source.Comp.IgnoreTelephonesOnSameGrid && + source.Comp.TransmissionRange != TelephoneRange.Grid && + receiverXform.GridUid == sourceXform.GridUid) + return false; + switch (source.Comp.TransmissionRange) { case TelephoneRange.Grid: - return sourceXform.GridUid != null && - receiverXform.GridUid == sourceXform.GridUid && - receiver.Comp.TransmissionRange != TelephoneRange.Long; + return sourceXform.GridUid == receiverXform.GridUid; case TelephoneRange.Map: - return sourceXform.MapID == receiverXform.MapID && - receiver.Comp.TransmissionRange != TelephoneRange.Long; - - case TelephoneRange.Long: - return sourceXform.MapID != receiverXform.MapID && - receiver.Comp.TransmissionRange == TelephoneRange.Long; + return sourceXform.MapID == receiverXform.MapID; case TelephoneRange.Unlimited: return true; diff --git a/Content.Shared/Telephone/TelephoneComponent.cs b/Content.Shared/Telephone/TelephoneComponent.cs index 7eacdb0aee..733ddfbdce 100644 --- a/Content.Shared/Telephone/TelephoneComponent.cs +++ b/Content.Shared/Telephone/TelephoneComponent.cs @@ -52,11 +52,28 @@ public sealed partial class TelephoneComponent : Component public TelephoneVolume SpeakerVolume = TelephoneVolume.Whisper; /// - /// The range at which the telephone can connect to another + /// The maximum range at which the telephone initiate a call with another /// [DataField] public TelephoneRange TransmissionRange = TelephoneRange.Grid; + /// + /// This telephone will ignore devices that share the same grid as it + /// + /// + /// This bool will be ignored if the is + /// set to + /// + [DataField] + public bool IgnoreTelephonesOnSameGrid = false; + + /// + /// The telephone can only connect with other telephones which have a + /// present in this list + /// + [DataField] + public List CompatibleRanges = new List() { TelephoneRange.Grid }; + /// /// The range at which the telephone picks up voices /// @@ -70,7 +87,7 @@ public sealed partial class TelephoneComponent : Component public bool RequiresPower = true; /// - /// This telephone does not appear on public telephone directories + /// This telephone should not appear on public telephone directories /// [DataField] public bool UnlistedNumber = false; @@ -196,8 +213,7 @@ public enum TelephoneVolume : byte [Serializable, NetSerializable] public enum TelephoneRange : byte { - Grid, // Can call grid/map range telephones that are on the same grid - Map, // Can call grid/map range telephones that are on the same map - Long, // Can only long range telephones that are on a different map - Unlimited // Can call any telephone + Grid, // Can only reach telephones that are on the same grid + Map, // Can reach any telephone that is on the same map + Unlimited, // Can reach any telephone, across any distance } diff --git a/Resources/Locale/en-US/holopad/holopad.ftl b/Resources/Locale/en-US/holopad/holopad.ftl index 4c2d92e253..47c5fbe25c 100644 --- a/Resources/Locale/en-US/holopad/holopad.ftl +++ b/Resources/Locale/en-US/holopad/holopad.ftl @@ -37,7 +37,8 @@ holopad-window-flavor-right = v3.0.9 holopad-hologram-name = hologram of {THE($name)} # Holopad actions -activate-holopad-projector-verb = Activate holopad projector +holopad-activate-projector-verb = Activate holopad projector +holopad-ai-is-unable-to-reach-holopad = You are unable to interface with the source of the call, it is too far from your core. # Mapping prototypes # General diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 9a9d66c42d..272e28e91c 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -369,6 +369,10 @@ Empty: { state: ai_empty } Occupied: { state: ai } - type: Telephone + compatibleRanges: + - Grid + - Map + - Unlimited listeningRange: 0 speakerVolume: Speak unlistedNumber: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index a5ac0d5208..d3b02fcae0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -22,6 +22,7 @@ - type: StationAiVision - type: Sprite sprite: Structures/Machines/holopad.rsi + drawdepth: FloorObjects snapCardinals: true layers: - state: base @@ -71,9 +72,8 @@ speechSounds: Borg speechBubbleOffset: 0.45 - type: Telephone - transmissionRange: Map ringTone: /Audio/Machines/double_ring.ogg - listeningRange: 4 + listeningRange: 2.5 speakerVolume: Speak - type: AccessReader access: [[ "Command" ]] @@ -104,28 +104,47 @@ node: machineFrame - !type:DoActsBehavior acts: ["Destruction"] - + - type: entity name: long-range holopad - description: "A floor-mounted device for projecting holographic images to other devices that are far away." + description: "A floor-mounted device for projecting holographic images to similar devices that are far away." parent: Holopad id: HolopadLongRange - suffix: For calls between maps components: - type: Telephone - transmissionRange: Long - + transmissionRange: Map + compatibleRanges: + - Map + - Unlimited + ignoreTelephonesOnSameGrid: true + - type: entity name: quantum entangling holopad - description: "An experimental floor-mounted device for projecting holographic images at extreme distances." + description: "An floor-mounted device for projecting holographic images to similar devices at extreme distances." parent: Holopad id: HolopadUnlimitedRange - suffix: Unlimited range components: - type: Telephone transmissionRange: Unlimited - - type: AccessReader - access: [[]] + compatibleRanges: + - Map + - Unlimited + ignoreTelephonesOnSameGrid: true + +- type: entity + name: bluespace holopad + description: "An experimental floor-mounted device for projecting holographic images via bluespace." + parent: Holopad + id: HolopadBluespace + suffix: Unrestricted range + components: + - type: Telephone + unlistedNumber: true + transmissionRange: Unlimited + compatibleRanges: + - Grid + - Map + - Unlimited # These are spawned by holopads - type: entity From 7f6d55a1b67a9996c7a916e51298f628495b567c Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Thu, 19 Dec 2024 09:21:27 -0800 Subject: [PATCH 171/263] Fix: Update armor crate description (#33414) Update armor crate --- Resources/Prototypes/Catalog/Cargo/cargo_security.yml | 2 +- Resources/Prototypes/Catalog/Fills/Crates/security.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml index 3fa03ea2e3..d2bbe255cb 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml @@ -1,7 +1,7 @@ - type: cargoProduct id: SecurityArmor icon: - sprite: Clothing/OuterClothing/Armor/security.rsi + sprite: Clothing/OuterClothing/Armor/bulletproof.rsi state: icon product: CrateSecurityArmor cost: 725 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/security.yml b/Resources/Prototypes/Catalog/Fills/Crates/security.yml index a035196849..4726df16cf 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/security.yml @@ -2,7 +2,7 @@ id: CrateSecurityArmor parent: CrateSecgear name: armor crate - description: Three vests of well-rounded, decently-protective armor. Requires Security access to open. + description: Contains three bulletproof vests. Requires Security access to open. components: - type: StorageFill contents: @@ -24,7 +24,7 @@ id: CrateSecurityNonlethal parent: CrateSecgear name: nonlethals crate - description: Disabler weapons. Requires Security access to open. + description: Contains a mix of disablers, stun batons, and flashes. Requires Security access to open. components: - type: StorageFill contents: From ae5c1f5995860d712d043a19ccdca6ade3b812ce Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Dec 2024 17:22:37 +0000 Subject: [PATCH 172/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5975b94c4e..712c64f637 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: coolboy911 - changes: - - message: wide-spectrum anomaly locator is now included in cyborg's anomaly module - type: Add - id: 7236 - time: '2024-08-28T12:36:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31427 - author: deltanedas changes: - message: You can now build carp statues with luxury materials. @@ -3937,3 +3930,11 @@ id: 7735 time: '2024-12-19T11:31:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33792 +- author: Plykiya + changes: + - message: Cargo armor crate now correctly indicates that it contains bulletproof + vests. + type: Fix + id: 7736 + time: '2024-12-19T17:21:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33414 From fe69ef63f02b93220c12b22800597d4443fe0c54 Mon Sep 17 00:00:00 2001 From: TytosB <54259736+TytosB@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:26:14 -0600 Subject: [PATCH 173/263] Loopstation hotfix (#33958) Co-authored-by: Emisse <99158783+Emisse@users.noreply.github.com> --- Resources/Maps/loop.yml | 866 +++++++++++++++++++++------------------- 1 file changed, 457 insertions(+), 409 deletions(-) diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml index c2a71a1415..c94e2a175b 100644 --- a/Resources/Maps/loop.yml +++ b/Resources/Maps/loop.yml @@ -75,15 +75,15 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: HwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA version: 6 -2,-2: ind: -2,-2 @@ -4480,19 +4480,6 @@ entities: - 11318 - 1957 - 11936 - - uid: 936 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 2 - - type: DeviceList - devices: - - 4823 - - 218 - - 1196 - - 11607 - - 12612 - - 605 - uid: 2728 components: - type: Transform @@ -5156,7 +5143,6 @@ entities: parent: 2 - type: DeviceList devices: - - 1196 - 4823 - 4368 - 6226 @@ -5167,13 +5153,11 @@ entities: - 11604 - 11603 - 11611 - - 11607 - 11608 - 12612 - 12620 - 12573 - 12572 - - 218 - 3387 - 12534 - 11596 @@ -5909,6 +5893,18 @@ entities: - 4011 - 1951 - 11633 + - uid: 13253 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 4823 + - 12612 + - 605 + - 28 + - 101 - uid: 13598 components: - type: Transform @@ -6490,15 +6486,10 @@ entities: rot: 3.141592653589793 rad pos: -30.5,13.5 parent: 2 - - uid: 960 + - uid: 936 components: - type: Transform - pos: -19.5,-0.5 - parent: 2 - - uid: 963 - components: - - type: Transform - pos: -18.5,-0.5 + pos: -18.5,0.5 parent: 2 - uid: 1334 components: @@ -6533,6 +6524,11 @@ entities: - type: Transform pos: -7.5,2.5 parent: 2 + - uid: 13531 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 - uid: 14009 components: - type: Transform @@ -9028,15 +9024,6 @@ entities: - 11619 - 11615 - 11052 - - uid: 11607 - components: - - type: Transform - pos: -18.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 936 - - 11052 - uid: 11608 components: - type: Transform @@ -9211,13 +9198,18 @@ entities: - uid: 118 components: - type: Transform - pos: -22.409061,-4.4524755 + pos: -22.281813,-4.5108852 parent: 2 - uid: 340 components: - type: Transform pos: -22.694414,-4.455243 parent: 2 + - uid: 16430 + components: + - type: Transform + pos: -22.484938,-4.4483852 + parent: 2 - proto: AmmoniaCanister entities: - uid: 1403 @@ -9241,11 +9233,6 @@ entities: parent: 2 - proto: APCBasic entities: - - uid: 101 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 2 - uid: 428 components: - type: Transform @@ -9510,6 +9497,11 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,45.5 parent: 2 + - uid: 11607 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 - uid: 12809 components: - type: Transform @@ -10859,7 +10851,7 @@ entities: - uid: 15200 components: - type: Transform - pos: -57.608055,42.841152 + pos: -59.461235,42.816093 parent: 2 - proto: BoxBeaker entities: @@ -10917,7 +10909,7 @@ entities: - uid: 6540 components: - type: Transform - pos: -21.573818,3.2183256 + pos: -21.539848,4.8032537 parent: 2 - proto: BoxFlashbang entities: @@ -11086,7 +11078,7 @@ entities: - uid: 15202 components: - type: Transform - pos: -57.514305,42.450527 + pos: -59.679985,42.45672 parent: 2 - proto: BoxNitrileGloves entities: @@ -11105,7 +11097,7 @@ entities: - uid: 3447 components: - type: Transform - pos: -22.073818,0.5313511 + pos: -22.312021,0.6167307 parent: 2 - uid: 4639 components: @@ -11380,6 +11372,11 @@ entities: - type: Transform pos: -11.5,-7.5 parent: 2 + - uid: 219 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 - uid: 220 components: - type: Transform @@ -11435,6 +11432,11 @@ entities: - type: Transform pos: -10.5,-7.5 parent: 2 + - uid: 348 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 - uid: 364 components: - type: Transform @@ -11540,11 +11542,6 @@ entities: - type: Transform pos: -29.5,11.5 parent: 2 - - uid: 550 - components: - - type: Transform - pos: -21.5,0.5 - parent: 2 - uid: 575 components: - type: Transform @@ -20490,11 +20487,6 @@ entities: - type: Transform pos: -70.5,46.5 parent: 2 - - uid: 12771 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 2 - uid: 12790 components: - type: Transform @@ -23031,6 +23023,11 @@ entities: - type: Transform pos: 3.5,-5.5 parent: 2 + - uid: 105 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 - uid: 108 components: - type: Transform @@ -23061,11 +23058,6 @@ entities: - type: Transform pos: -35.5,14.5 parent: 2 - - uid: 219 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 2 - uid: 238 components: - type: Transform @@ -23344,7 +23336,7 @@ entities: - uid: 574 components: - type: Transform - pos: -19.5,0.5 + pos: -20.5,1.5 parent: 2 - uid: 623 components: @@ -23361,11 +23353,6 @@ entities: - type: Transform pos: 2.5,-0.5 parent: 2 - - uid: 669 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 2 - uid: 670 components: - type: Transform @@ -23406,6 +23393,11 @@ entities: - type: Transform pos: -30.5,-24.5 parent: 2 + - uid: 921 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 - uid: 922 components: - type: Transform @@ -23441,11 +23433,21 @@ entities: - type: Transform pos: -30.5,-20.5 parent: 2 + - uid: 937 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 - uid: 938 components: - type: Transform pos: -26.5,-26.5 parent: 2 + - uid: 943 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 - uid: 945 components: - type: Transform @@ -23666,6 +23668,11 @@ entities: - type: Transform pos: -27.5,-4.5 parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 - uid: 1079 components: - type: Transform @@ -23716,6 +23723,11 @@ entities: - type: Transform pos: -23.5,90.5 parent: 2 + - uid: 1196 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 - uid: 1207 components: - type: Transform @@ -23736,6 +23748,11 @@ entities: - type: Transform pos: -67.5,53.5 parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 - uid: 1228 components: - type: Transform @@ -23746,6 +23763,16 @@ entities: - type: Transform pos: -0.5,4.5 parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 - uid: 1246 components: - type: Transform @@ -23801,25 +23828,15 @@ entities: - type: Transform pos: -4.5,15.5 parent: 2 - - uid: 1573 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 2 - - uid: 1574 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 2 - uid: 1599 components: - type: Transform pos: -69.5,15.5 parent: 2 - - uid: 1619 + - uid: 1618 components: - type: Transform - pos: -15.5,-2.5 + pos: -21.5,-4.5 parent: 2 - uid: 1624 components: @@ -24074,7 +24091,7 @@ entities: - uid: 2444 components: - type: Transform - pos: -16.5,-2.5 + pos: -19.5,-1.5 parent: 2 - uid: 2450 components: @@ -24166,6 +24183,11 @@ entities: - type: Transform pos: -18.5,10.5 parent: 2 + - uid: 2974 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 - uid: 2980 components: - type: Transform @@ -24256,6 +24278,11 @@ entities: - type: Transform pos: -66.5,16.5 parent: 2 + - uid: 3140 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 - uid: 3147 components: - type: Transform @@ -25526,16 +25553,6 @@ entities: - type: Transform pos: -18.5,35.5 parent: 2 - - uid: 3483 - components: - - type: Transform - pos: -19.5,1.5 - parent: 2 - - uid: 3484 - components: - - type: Transform - pos: -19.5,2.5 - parent: 2 - uid: 3485 components: - type: Transform @@ -25544,37 +25561,12 @@ entities: - uid: 3486 components: - type: Transform - pos: -19.5,4.5 + pos: -20.5,-1.5 parent: 2 - uid: 3487 components: - type: Transform - pos: -20.5,-1.5 - parent: 2 - - uid: 3488 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 2 - - uid: 3489 - components: - - type: Transform - pos: -19.5,3.5 - parent: 2 - - uid: 3490 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 2 - - uid: 3491 - components: - - type: Transform - pos: -20.5,0.5 - parent: 2 - - uid: 3493 - components: - - type: Transform - pos: -18.5,-2.5 + pos: -21.5,-3.5 parent: 2 - uid: 3495 components: @@ -26431,16 +26423,6 @@ entities: - type: Transform pos: -28.5,10.5 parent: 2 - - uid: 4498 - components: - - type: Transform - pos: -18.5,-4.5 - parent: 2 - - uid: 4499 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 2 - uid: 4528 components: - type: Transform @@ -26826,6 +26808,11 @@ entities: - type: Transform pos: -12.5,-2.5 parent: 2 + - uid: 6274 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 - uid: 6310 components: - type: Transform @@ -27081,6 +27068,21 @@ entities: - type: Transform pos: -10.5,7.5 parent: 2 + - uid: 6536 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 - uid: 6568 components: - type: Transform @@ -27281,6 +27283,11 @@ entities: - type: Transform pos: -22.5,36.5 parent: 2 + - uid: 8594 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 - uid: 9398 components: - type: Transform @@ -27446,6 +27453,16 @@ entities: - type: Transform pos: -63.5,6.5 parent: 2 + - uid: 13042 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 - uid: 13290 components: - type: Transform @@ -27481,11 +27498,6 @@ entities: - type: Transform pos: -28.5,-13.5 parent: 2 - - uid: 13518 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 2 - uid: 13537 components: - type: Transform @@ -27581,6 +27593,11 @@ entities: - type: Transform pos: -36.5,14.5 parent: 2 + - uid: 14044 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 - uid: 14048 components: - type: Transform @@ -27796,6 +27813,11 @@ entities: - type: Transform pos: -32.5,49.5 parent: 2 + - uid: 15201 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 - uid: 15256 components: - type: Transform @@ -27976,16 +27998,6 @@ entities: - type: Transform pos: -28.5,-8.5 parent: 2 - - uid: 15357 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 2 - - uid: 15358 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 2 - uid: 15362 components: - type: Transform @@ -28036,16 +28048,6 @@ entities: - type: Transform pos: 0.5,34.5 parent: 2 - - uid: 15373 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 2 - - uid: 15432 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 2 - uid: 15434 components: - type: Transform @@ -28091,16 +28093,6 @@ entities: - type: Transform pos: -6.5,-3.5 parent: 2 - - uid: 15450 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 2 - - uid: 15456 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 2 - uid: 15638 components: - type: Transform @@ -28116,6 +28108,11 @@ entities: - type: Transform pos: -31.5,39.5 parent: 2 + - uid: 15890 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 - uid: 16165 components: - type: Transform @@ -28496,6 +28493,11 @@ entities: - type: Transform pos: 9.5,-11.5 parent: 2 + - uid: 16429 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 - proto: CableHVStack entities: - uid: 5975 @@ -28773,11 +28775,6 @@ entities: - type: Transform pos: -14.5,-7.5 parent: 2 - - uid: 348 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 2 - uid: 353 components: - type: Transform @@ -28953,11 +28950,6 @@ entities: - type: Transform pos: -13.5,-9.5 parent: 2 - - uid: 921 - components: - - type: Transform - pos: -20.5,-1.5 - parent: 2 - uid: 946 components: - type: Transform @@ -29008,16 +29000,6 @@ entities: - type: Transform pos: -67.5,52.5 parent: 2 - - uid: 1226 - components: - - type: Transform - pos: -18.5,-4.5 - parent: 2 - - uid: 1227 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 2 - uid: 1240 components: - type: Transform @@ -32448,11 +32430,6 @@ entities: - type: Transform pos: -4.5,35.5 parent: 2 - - uid: 15679 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 2 - uid: 15946 components: - type: Transform @@ -32797,17 +32774,29 @@ entities: parent: 2 - proto: CableTerminal entities: + - uid: 669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 - uid: 1182 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,92.5 parent: 2 - - uid: 1236 + - uid: 1573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-4.5 + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 parent: 2 - uid: 2161 components: @@ -32815,24 +32804,18 @@ entities: rot: 3.141592653589793 rad pos: 30.5,28.5 parent: 2 + - uid: 3135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 - uid: 3720 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,78.5 parent: 2 - - uid: 14019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-4.5 - parent: 2 - - uid: 14020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-4.5 - parent: 2 - uid: 14616 components: - type: Transform @@ -32844,6 +32827,18 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-8.5 parent: 2 + - uid: 15357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 15358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 2 - proto: CandleBlack entities: - uid: 2099 @@ -32894,16 +32889,16 @@ entities: parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 64 - components: - - type: Transform - pos: 6.5,20.5 - parent: 2 - uid: 798 components: - type: Transform pos: 16.5,13.5 parent: 2 + - uid: 9693 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 - proto: Carpet entities: - uid: 15027 @@ -33803,27 +33798,12 @@ entities: parent: 2 - proto: Catwalk entities: - - uid: 22 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 2 - - uid: 28 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 2 - uid: 63 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-3.5 parent: 2 - - uid: 105 - components: - - type: Transform - pos: -15.5,-6.5 - parent: 2 - uid: 107 components: - type: Transform @@ -33923,6 +33903,12 @@ entities: - type: Transform pos: -2.5,-6.5 parent: 2 + - uid: 300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 - uid: 362 components: - type: Transform @@ -33941,6 +33927,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 - uid: 696 components: - type: Transform @@ -34036,15 +34028,17 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 2 - - uid: 943 + - uid: 960 components: - type: Transform - pos: -16.5,-6.5 + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 parent: 2 - uid: 972 components: - type: Transform - pos: -17.5,-6.5 + rot: 3.141592653589793 rad + pos: -25.5,-6.5 parent: 2 - uid: 1107 components: @@ -34056,6 +34050,12 @@ entities: - type: Transform pos: -62.5,78.5 parent: 2 + - uid: 1227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 - uid: 1338 components: - type: Transform @@ -34211,6 +34211,12 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 + - uid: 1619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 2 - uid: 1685 components: - type: Transform @@ -34366,12 +34372,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,68.5 parent: 2 - - uid: 2043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-4.5 - parent: 2 - uid: 2056 components: - type: Transform @@ -35007,6 +35007,18 @@ entities: - type: Transform pos: 18.5,19.5 parent: 2 + - uid: 3138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 2 - uid: 3178 components: - type: Transform @@ -35040,6 +35052,24 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,36.5 parent: 2 + - uid: 3483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-6.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 - uid: 3555 components: - type: Transform @@ -36296,11 +36326,23 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-7.5 parent: 2 + - uid: 13766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-6.5 + parent: 2 - uid: 13767 components: - type: Transform pos: -28.5,-7.5 parent: 2 + - uid: 13774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 2 - uid: 13776 components: - type: Transform @@ -36344,11 +36386,17 @@ entities: - type: Transform pos: -38.5,2.5 parent: 2 - - uid: 14044 + - uid: 14019 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-4.5 + pos: -23.5,-6.5 + parent: 2 + - uid: 14020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-6.5 parent: 2 - uid: 14143 components: @@ -36609,11 +36657,17 @@ entities: - type: Transform pos: -96.5,15.5 parent: 2 - - uid: 15449 + - uid: 14899 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-4.5 + pos: -19.5,-6.5 + parent: 2 + - uid: 15373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-6.5 parent: 2 - uid: 16485 components: @@ -39445,18 +39499,6 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 2974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 2 - - uid: 4501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 2 - uid: 6341 components: - type: Transform @@ -39480,6 +39522,12 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,17.5 parent: 2 + - uid: 15693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 2 - proto: ComputerRadar entities: - uid: 6474 @@ -40761,7 +40809,7 @@ entities: pos: -9.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -232555.16 + secondsUntilStateChange: -234090.9 state: Opening - uid: 6747 components: @@ -40769,7 +40817,7 @@ entities: pos: -8.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -232555.86 + secondsUntilStateChange: -234091.61 state: Opening - uid: 6749 components: @@ -40777,7 +40825,7 @@ entities: pos: -6.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -232554.42 + secondsUntilStateChange: -234090.17 state: Opening - uid: 6750 components: @@ -40785,7 +40833,7 @@ entities: pos: -5.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -232553.8 + secondsUntilStateChange: -234089.55 state: Opening - proto: CyberPen entities: @@ -41172,14 +41220,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,48.5 parent: 2 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 5444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-3.5 - parent: 2 - proto: DefaultStationBeaconQMRoom entities: - uid: 5460 @@ -46153,14 +46193,12 @@ entities: - uid: 3134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.68869,0.6273031 + pos: -16.272062,1.5251656 parent: 2 - uid: 3136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.290253,0.43980312 + pos: -16.334562,1.4157906 parent: 2 - uid: 11179 components: @@ -46175,12 +46213,12 @@ entities: - uid: 16757 components: - type: Transform - pos: -16.639637,0.34823167 + pos: -16.693937,1.3689156 parent: 2 - uid: 16758 components: - type: Transform - pos: -16.249012,0.6607317 + pos: -16.584562,1.5095406 parent: 2 - proto: ExosuitFabricator entities: @@ -46412,6 +46450,22 @@ entities: - 11534 - proto: FirelockGlass entities: + - uid: 28 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13253 + - uid: 101 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13253 - uid: 122 components: - type: Transform @@ -46457,15 +46511,6 @@ entities: - type: Transform pos: 4.5,51.5 parent: 2 - - uid: 218 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 936 - - 11052 - uid: 326 components: - type: Transform @@ -46656,16 +46701,6 @@ entities: deviceLists: - 10467 - 15346 - - uid: 1196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 936 - - 11052 - uid: 1329 components: - type: Transform @@ -47426,8 +47461,8 @@ entities: - type: DeviceNetwork deviceLists: - 11620 - - 936 - 11052 + - 13253 - uid: 4914 components: - type: Transform @@ -49502,7 +49537,7 @@ entities: - uid: 6326 components: - type: Transform - pos: -21.530424,2.6089506 + pos: -21.617973,4.2407537 parent: 2 - proto: FoodBurgerRobot entities: @@ -63963,7 +63998,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 936 + - 13253 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2697 @@ -66047,8 +66082,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 936 - 11052 + - 13253 - type: AtmosPipeColor color: '#990000FF' - uid: 12620 @@ -66783,6 +66818,12 @@ entities: rot: 3.141592653589793 rad pos: -42.5,43.5 parent: 2 + - uid: 2846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 2 - uid: 2852 components: - type: Transform @@ -74015,11 +74056,6 @@ entities: - type: Transform pos: -41.5,36.5 parent: 2 - - uid: 6559 - components: - - type: Transform - pos: -21.5,4.5 - parent: 2 - uid: 7078 components: - type: Transform @@ -74225,11 +74261,6 @@ entities: - type: Transform pos: 6.511981,55.526405 parent: 2 - - uid: 6560 - components: - - type: Transform - pos: -21.457458,8.941744 - parent: 2 - uid: 7072 components: - type: Transform @@ -74350,6 +74381,11 @@ entities: parent: 2 - proto: PlasmaCanister entities: + - uid: 80 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 - uid: 783 components: - type: Transform @@ -74358,12 +74394,7 @@ entities: - uid: 1398 components: - type: Transform - pos: 10.5,23.5 - parent: 2 - - uid: 1399 - components: - - type: Transform - pos: 10.5,22.5 + pos: 6.5,20.5 parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: @@ -74716,11 +74747,11 @@ entities: parent: 2 - proto: PortableGeneratorSuperPacmanMachineCircuitboard entities: - - uid: 3145 + - uid: 4498 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.51485,2.4888391 + pos: -14.692683,3.454691 parent: 2 - proto: PortableScrubber entities: @@ -74977,6 +75008,11 @@ entities: - type: Transform pos: -24.5,58.5 parent: 2 + - uid: 8768 + components: + - type: Transform + pos: -57.5,41.5 + parent: 2 - uid: 9021 components: - type: Transform @@ -75132,11 +75168,6 @@ entities: - type: Transform pos: -61.5,39.5 parent: 2 - - uid: 14899 - components: - - type: Transform - pos: -59.5,42.5 - parent: 2 - uid: 14901 components: - type: Transform @@ -75486,6 +75517,12 @@ entities: - type: Transform pos: 20.5,37.5 parent: 2 + - uid: 9766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,38.5 + parent: 2 - uid: 9807 components: - type: Transform @@ -76373,12 +76410,6 @@ entities: - type: Transform pos: -54.5,43.5 parent: 2 - - uid: 13253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,38.5 - parent: 2 - uid: 13254 components: - type: Transform @@ -76783,6 +76814,11 @@ entities: - type: Transform pos: -26.5,64.5 parent: 2 + - uid: 22 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 - uid: 255 components: - type: Transform @@ -76901,11 +76937,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-3.5 parent: 2 - - uid: 13042 - components: - - type: Transform - pos: -17.5,-1.5 - parent: 2 - uid: 13050 components: - type: Transform @@ -77732,24 +77763,12 @@ entities: rot: 3.141592653589793 rad pos: -37.5,2.5 parent: 2 - - uid: 3135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,0.5 - parent: 2 - uid: 3137 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,4.5 parent: 2 - - uid: 3140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 2 - uid: 3143 components: - type: Transform @@ -77997,6 +78016,12 @@ entities: - type: Transform pos: -40.5,1.5 parent: 2 + - uid: 13518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 - uid: 13794 components: - type: Transform @@ -78220,17 +78245,19 @@ entities: - uid: 2915 components: - type: Transform - pos: -22.653229,0.411201 + pos: -21.749521,9.139329 parent: 2 - - uid: 3138 + - uid: 3493 components: - type: Transform - pos: -22.387604,0.723701 + rot: 3.141592653589793 rad + pos: -21.296396,9.029954 parent: 2 - - uid: 6536 + - uid: 12771 components: - type: Transform - pos: -22.746979,0.754951 + rot: 3.141592653589793 rad + pos: -21.624521,8.670579 parent: 2 - proto: RagItem entities: @@ -80813,6 +80840,11 @@ entities: rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 2 + - uid: 1574 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 - uid: 2052 components: - type: Transform @@ -83133,8 +83165,7 @@ entities: - uid: 3141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.46994,0.41636562 + pos: -14.567683,2.642191 parent: 2 - proto: ShelfChemistryChemistrySecure entities: @@ -84644,23 +84675,45 @@ entities: - type: Transform pos: -14.5,25.5 parent: 2 -- proto: SMESBasic +- proto: SMESAdvanced entities: - - uid: 1078 + - uid: 218 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 3489 components: - type: Transform pos: -19.5,-3.5 parent: 2 + - uid: 3490 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 +- proto: SMESBasic + entities: - uid: 1185 components: - type: Transform pos: -24.5,92.5 parent: 2 - - uid: 1238 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 2 - uid: 1726 components: - type: Transform @@ -84692,11 +84745,6 @@ entities: - type: Transform pos: -6.5,0.5 parent: 2 - - uid: 8594 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 2 - uid: 14537 components: - type: Transform @@ -87570,10 +87618,10 @@ entities: parent: 2 - proto: SubstationBasic entities: - - uid: 937 + - uid: 699 components: - type: Transform - pos: -20.5,-1.5 + pos: -20.5,1.5 parent: 2 - uid: 1180 components: @@ -88018,6 +88066,16 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Telecomms Server room + - uid: 10366 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: engi lockers - uid: 13763 components: - type: Transform @@ -88051,16 +88109,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering break room - - uid: 13766 - components: - - type: Transform - pos: -21.5,0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering break room - uid: 13769 components: - type: Transform @@ -89008,6 +89056,11 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,66.5 parent: 2 + - uid: 1399 + components: + - type: Transform + pos: -59.5,42.5 + parent: 2 - uid: 1553 components: - type: Transform @@ -89093,11 +89146,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,50.5 parent: 2 - - uid: 2846 - components: - - type: Transform - pos: -21.5,0.5 - parent: 2 - uid: 2857 components: - type: Transform @@ -89725,11 +89773,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,2.5 parent: 2 - - uid: 15201 - components: - - type: Transform - pos: -57.5,42.5 - parent: 2 - uid: 15204 components: - type: Transform @@ -90481,6 +90524,12 @@ entities: - type: Transform pos: -34.5,40.5 parent: 2 + - uid: 3491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,4.5 + parent: 2 - uid: 3798 components: - type: Transform @@ -90694,11 +90743,6 @@ entities: - type: Transform pos: -66.5,57.5 parent: 2 - - uid: 6274 - components: - - type: Transform - pos: -21.5,2.5 - parent: 2 - uid: 6327 components: - type: Transform @@ -92544,11 +92588,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,7.5 parent: 2 - - uid: 300 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 2 - uid: 301 components: - type: Transform @@ -92936,11 +92975,6 @@ entities: - type: Transform pos: -39.5,0.5 parent: 2 - - uid: 699 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 2 - uid: 710 components: - type: Transform @@ -93506,11 +93540,6 @@ entities: - type: Transform pos: -79.5,53.5 parent: 2 - - uid: 1179 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 2 - uid: 1192 components: - type: Transform @@ -93867,18 +93896,13 @@ entities: - uid: 1616 components: - type: Transform - pos: -16.5,-0.5 + pos: -20.5,0.5 parent: 2 - uid: 1617 components: - type: Transform pos: -15.5,-0.5 parent: 2 - - uid: 1618 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 2 - uid: 1622 components: - type: Transform @@ -96592,6 +96616,12 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,59.5 parent: 2 + - uid: 4501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 - uid: 4517 components: - type: Transform @@ -97277,6 +97307,12 @@ entities: - type: Transform pos: -1.5,36.5 parent: 2 + - uid: 5444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 - uid: 5487 components: - type: Transform @@ -98065,6 +98101,11 @@ entities: rot: 3.141592653589793 rad pos: 3.5,15.5 parent: 2 + - uid: 10530 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 - uid: 10547 components: - type: Transform @@ -98595,11 +98636,6 @@ entities: - type: Transform pos: -18.5,-13.5 parent: 2 - - uid: 13531 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 2 - uid: 13536 components: - type: Transform @@ -98982,6 +99018,12 @@ entities: - type: Transform pos: 16.5,-8.5 parent: 2 + - uid: 15432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 2 - uid: 15442 components: - type: Transform @@ -98992,6 +99034,12 @@ entities: - type: Transform pos: -15.5,-4.5 parent: 2 + - uid: 15449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 2 - uid: 15477 components: - type: Transform @@ -103728,10 +103776,10 @@ entities: parent: 2 - proto: WaterVaporCanister entities: - - uid: 80 + - uid: 64 components: - type: Transform - pos: 5.5,20.5 + pos: 10.5,23.5 parent: 2 - uid: 784 components: @@ -103803,14 +103851,14 @@ entities: - uid: 6330 components: - type: Transform - pos: -21.276943,0.4063511 + pos: -22.390146,0.3823557 parent: 2 - type: ChamberMagazineAmmoProvider boltClosed: True - uid: 6541 components: - type: Transform - pos: -21.467924,0.6558256 + pos: -22.437021,0.7573557 parent: 2 - type: ChamberMagazineAmmoProvider boltClosed: True From ee72cdacdc55243e9df2d7dbc48f76afbcffaf68 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:55:41 -0800 Subject: [PATCH 174/263] Update Fland for holopads (#33962) * update fland for holopads * fix duplicate holopad name --- Resources/Maps/fland.yml | 767 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 765 insertions(+), 2 deletions(-) diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index b5fc20c1ff..2ea0ca6502 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -1088,6 +1088,11 @@ entities: 8727: -13,35 8730: 17,-31 8731: 16,-31 + 8770: 101,49 + 8771: 107,49 + 8772: 120,49 + 8773: 96,49 + 8774: 89,47 - node: cleanable: True color: '#FFFFFFFF' @@ -94976,7 +94981,7 @@ entities: - uid: 4881 components: - type: Transform - pos: -18.468145,41.512997 + pos: -18.56717,41.531788 parent: 13329 - proto: ClothingHandsGlovesColorOrange entities: @@ -153177,12 +153182,15 @@ entities: color: '#990000FF' - uid: 388 components: + - type: MetaData + name: air scrubber - type: Transform rot: 3.141592653589793 rad pos: -12.5,13.5 parent: 13329 - type: AtmosPipeColor color: '#990000FF' + - type: Label - uid: 389 components: - type: Transform @@ -154498,7 +154506,6 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,-11.5 parent: 13329 - - type: DeviceNetwork - type: AtmosPipeColor color: '#990000FF' - uid: 25505 @@ -162154,6 +162161,762 @@ entities: - type: Transform pos: 89.5,45.5 parent: 13329 +- proto: Holopad + entities: + - uid: 35873 + components: + - type: MetaData + name: holopad (Security - Evidence Room) + - type: Transform + pos: 19.5,18.5 + parent: 13329 + - type: Label + currentLabel: Security - Evidence Room + - type: NameModifier + baseName: holopad + - uid: 35887 + components: + - type: MetaData + name: holopad (Service - Chaplain) + - type: Transform + pos: -16.5,72.5 + parent: 13329 + - type: Label + currentLabel: Service - Chaplain + - type: NameModifier + baseName: holopad + - uid: 35888 + components: + - type: MetaData + name: holopad (Service - Chaplain Meeting) + - type: Transform + pos: -9.5,71.5 + parent: 13329 + - type: Label + currentLabel: Service - Chaplain Meeting + - type: NameModifier + baseName: holopad + - uid: 35931 + components: + - type: MetaData + name: holopad (General - Central Lounge) + - type: Transform + pos: -0.5,-2.5 + parent: 13329 + - type: Label + currentLabel: General - Central Lounge + - type: NameModifier + baseName: holopad +- proto: HolopadAiBackupPower + entities: + - uid: 35840 + components: + - type: Transform + pos: 104.5,43.5 + parent: 13329 + - uid: 35845 + components: + - type: MetaData + name: holopad (AI - Storage) + - type: Transform + pos: 104.5,55.5 + parent: 13329 + - type: Label + currentLabel: AI - Storage + - type: NameModifier + baseName: holopad +- proto: HolopadAiChute + entities: + - uid: 35841 + components: + - type: Transform + pos: 96.5,49.5 + parent: 13329 +- proto: HolopadAiCore + entities: + - uid: 35844 + components: + - type: Transform + pos: 120.5,49.5 + parent: 13329 +- proto: HolopadAiEntrance + entities: + - uid: 35842 + components: + - type: Transform + pos: 101.5,49.5 + parent: 13329 +- proto: HolopadAiUpload + entities: + - uid: 35843 + components: + - type: Transform + pos: 107.5,49.5 + parent: 13329 +- proto: HolopadCargoBay + entities: + - uid: 35866 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 13329 + - uid: 35870 + components: + - type: MetaData + name: holopad (Cargo - Cargo Bay Secondary) + - type: Transform + pos: -1.5,-13.5 + parent: 13329 + - type: Label + currentLabel: Cargo - Cargo Bay Secondary + - type: NameModifier + baseName: holopad + - uid: 35926 + components: + - type: MetaData + name: holopad (Cargo - Mailroom) + - type: Transform + pos: 18.5,-12.5 + parent: 13329 + - type: Label + currentLabel: Cargo - Mailroom + - type: NameModifier + baseName: holopad +- proto: HolopadCargoBayLongRange + entities: + - uid: 35865 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 13329 +- proto: HolopadCargoBreakroom + entities: + - uid: 35867 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 13329 +- proto: HolopadCargoFront + entities: + - uid: 35863 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 13329 +- proto: HolopadCargoSalvageBay + entities: + - uid: 35868 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 13329 +- proto: HolopadCommandBridge + entities: + - uid: 35849 + components: + - type: Transform + pos: 71.5,58.5 + parent: 13329 + - uid: 35871 + components: + - type: MetaData + name: holopad (Command - Post) + - type: Transform + pos: -10.5,0.5 + parent: 13329 + - type: Label + currentLabel: Command - Post + - type: NameModifier + baseName: holopad +- proto: HolopadCommandBridgeHallway + entities: + - uid: 35850 + components: + - type: Transform + pos: 72.5,50.5 + parent: 13329 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 35848 + components: + - type: Transform + pos: 69.5,58.5 + parent: 13329 +- proto: HolopadCommandCaptain + entities: + - uid: 35846 + components: + - type: Transform + pos: 89.5,47.5 + parent: 13329 + - uid: 35847 + components: + - type: Transform + pos: 80.5,45.5 + parent: 13329 +- proto: HolopadCommandCe + entities: + - uid: 35910 + components: + - type: Transform + pos: 83.5,-12.5 + parent: 13329 +- proto: HolopadCommandCmo + entities: + - uid: 35895 + components: + - type: Transform + pos: 26.5,63.5 + parent: 13329 + - uid: 35932 + components: + - type: MetaData + name: holopad (Command - CMO's Office) + - type: Transform + pos: 24.5,59.5 + parent: 13329 + - type: Label + currentLabel: Command - CMO's Office + - type: NameModifier + baseName: holopad +- proto: HolopadCommandHop + entities: + - uid: 35852 + components: + - type: Transform + pos: 59.5,46.5 + parent: 13329 +- proto: HolopadCommandHos + entities: + - uid: 35855 + components: + - type: Transform + pos: 37.5,19.5 + parent: 13329 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 35851 + components: + - type: Transform + pos: 62.5,57.5 + parent: 13329 +- proto: HolopadCommandQm + entities: + - uid: 35869 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 13329 +- proto: HolopadCommandRd + entities: + - uid: 35925 + components: + - type: Transform + pos: 50.5,-41.5 + parent: 13329 +- proto: HolopadEngineeringAME + entities: + - uid: 35899 + components: + - type: Transform + pos: 90.5,6.5 + parent: 13329 + - uid: 35912 + components: + - type: MetaData + name: holopad (Engineering - Gravity) + - type: Transform + pos: 114.5,-24.5 + parent: 13329 + - type: Label + currentLabel: Engineering - Gravity + - type: NameModifier + baseName: holopad +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 35907 + components: + - type: Transform + pos: 64.5,-15.5 + parent: 13329 + - uid: 35917 + components: + - type: MetaData + name: holopad (Atmos - Gearroom) + - type: Transform + pos: 75.5,-24.5 + parent: 13329 + - type: Label + currentLabel: Atmos - Gearroom + - type: NameModifier + baseName: holopad +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 35908 + components: + - type: MetaData + name: holopad (Atmos - Main West) + - type: Transform + pos: 70.5,-33.5 + parent: 13329 + - type: Label + currentLabel: Atmos - Main West + - type: NameModifier + baseName: holopad + - uid: 35916 + components: + - type: MetaData + name: holopad (Atmos - Main East) + - type: Transform + pos: 84.5,-32.5 + parent: 13329 + - type: Label + currentLabel: Atmos - Main East + - type: NameModifier + baseName: holopad +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 35909 + components: + - type: Transform + pos: 99.5,-35.5 + parent: 13329 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 35900 + components: + - type: Transform + pos: 75.5,-13.5 + parent: 13329 + - uid: 35915 + components: + - type: MetaData + name: holopad (Engineering - Breakroom Upper) + - type: Transform + pos: 80.5,-4.5 + parent: 13329 + - type: Label + currentLabel: Engineering - Breakroom Upper + - type: NameModifier + baseName: holopad +- proto: HolopadEngineeringFront + entities: + - uid: 35906 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 13329 +- proto: HolopadEngineeringPower + entities: + - uid: 35905 + components: + - type: Transform + pos: 90.5,-1.5 + parent: 13329 + - uid: 35914 + components: + - type: MetaData + name: holopad (Engineering - Engine Storage) + - type: Transform + pos: 107.5,-16.5 + parent: 13329 + - type: Label + currentLabel: Engineering - Engine Storage + - type: NameModifier + baseName: holopad +- proto: HolopadEngineeringStorage + entities: + - uid: 35904 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 13329 + - uid: 35911 + components: + - type: Transform + pos: 92.5,-11.5 + parent: 13329 +- proto: HolopadEngineeringTechVault + entities: + - uid: 35901 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 13329 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 35902 + components: + - type: Transform + pos: 92.5,30.5 + parent: 13329 + - uid: 35903 + components: + - type: MetaData + name: holopad (Engineering - Telecoms Entry) + - type: Transform + pos: 87.5,33.5 + parent: 13329 + - type: Label + currentLabel: Engineering - Telecoms Entry + - type: NameModifier + baseName: holopad +- proto: HolopadGeneralArrivals + entities: + - uid: 35930 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 13329 +- proto: HolopadGeneralCryosleep + entities: + - uid: 35898 + components: + - type: Transform + pos: 98.5,19.5 + parent: 13329 +- proto: HolopadGeneralDisposals + entities: + - uid: 35913 + components: + - type: Transform + pos: 124.5,-4.5 + parent: 13329 +- proto: HolopadGeneralEvac + entities: + - uid: 35894 + components: + - type: Transform + pos: -32.5,35.5 + parent: 13329 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 35896 + components: + - type: Transform + pos: 50.5,39.5 + parent: 13329 +- proto: HolopadGeneralLounge + entities: + - uid: 35897 + components: + - type: Transform + pos: 79.5,14.5 + parent: 13329 +- proto: HolopadGeneralTheater + entities: + - uid: 35893 + components: + - type: Transform + pos: -12.5,9.5 + parent: 13329 +- proto: HolopadGeneralTools + entities: + - uid: 35929 + components: + - type: Transform + pos: 4.5,26.5 + parent: 13329 +- proto: HolopadMedicalBreakroom + entities: + - uid: 35882 + components: + - type: Transform + pos: 14.5,66.5 + parent: 13329 + - uid: 35883 + components: + - type: MetaData + name: holopad (Medical - Locker Room) + - type: Transform + pos: 6.5,67.5 + parent: 13329 + - type: Label + currentLabel: Medical - Locker Room + - type: NameModifier + baseName: holopad +- proto: HolopadMedicalChemistry + entities: + - uid: 35875 + components: + - type: Transform + pos: 22.5,37.5 + parent: 13329 +- proto: HolopadMedicalCryopods + entities: + - uid: 35874 + components: + - type: Transform + pos: 28.5,50.5 + parent: 13329 +- proto: HolopadMedicalFront + entities: + - uid: 35876 + components: + - type: Transform + pos: 15.5,40.5 + parent: 13329 +- proto: HolopadMedicalMedbay + entities: + - uid: 35877 + components: + - type: Transform + pos: 12.5,48.5 + parent: 13329 +- proto: HolopadMedicalMorgue + entities: + - uid: 35881 + components: + - type: Transform + pos: 5.5,39.5 + parent: 13329 +- proto: HolopadMedicalParamed + entities: + - uid: 35878 + components: + - type: Transform + pos: 6.5,48.5 + parent: 13329 +- proto: HolopadMedicalSurgery + entities: + - uid: 35879 + components: + - type: Transform + pos: 9.5,54.5 + parent: 13329 +- proto: HolopadMedicalVirology + entities: + - uid: 35880 + components: + - type: Transform + pos: 34.5,45.5 + parent: 13329 +- proto: HolopadScienceAnomaly + entities: + - uid: 35923 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 13329 + - uid: 35924 + components: + - type: MetaData + name: holopad (Science - Anomaly Hallway) + - type: Transform + pos: 38.5,-34.5 + parent: 13329 + - type: Label + currentLabel: Science - Anomaly Hallway + - type: NameModifier + baseName: holopad +- proto: HolopadScienceArtifact + entities: + - uid: 35922 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 13329 +- proto: HolopadScienceBreakroom + entities: + - uid: 35921 + components: + - type: Transform + pos: 33.5,-38.5 + parent: 13329 +- proto: HolopadScienceFront + entities: + - uid: 35918 + components: + - type: Transform + pos: 53.5,-16.5 + parent: 13329 +- proto: HolopadScienceRobotics + entities: + - uid: 35919 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 13329 + - uid: 35920 + components: + - type: MetaData + name: holopad (Science - Robotics Storage) + - type: Transform + pos: 28.5,-22.5 + parent: 13329 + - type: Label + currentLabel: Science - Robotics Storage + - type: NameModifier + baseName: holopad +- proto: HolopadSecurityArmory + entities: + - uid: 35857 + components: + - type: Transform + pos: 20.5,12.5 + parent: 13329 +- proto: HolopadSecurityBreakroom + entities: + - uid: 35861 + components: + - type: Transform + pos: 30.5,20.5 + parent: 13329 +- proto: HolopadSecurityBrig + entities: + - uid: 35858 + components: + - type: Transform + pos: 29.5,6.5 + parent: 13329 + - uid: 35872 + components: + - type: MetaData + name: holopad (Security - Locker Room South) + - type: Transform + pos: 35.5,11.5 + parent: 13329 + - type: Label + currentLabel: Security - Locker Room South + - type: NameModifier + baseName: holopad +- proto: HolopadSecurityBrigMed + entities: + - uid: 35856 + components: + - type: Transform + pos: 44.5,2.5 + parent: 13329 +- proto: HolopadSecurityCourtroom + entities: + - uid: 35853 + components: + - type: Transform + pos: 63.5,30.5 + parent: 13329 +- proto: HolopadSecurityDetective + entities: + - uid: 35889 + components: + - type: Transform + pos: -24.5,40.5 + parent: 13329 +- proto: HolopadSecurityFront + entities: + - uid: 35862 + components: + - type: MetaData + name: holopad (Security - Front North) + - type: Transform + pos: 24.5,26.5 + parent: 13329 + - type: Label + currentLabel: Security - Front North + - type: NameModifier + baseName: holopad + - uid: 35864 + components: + - type: MetaData + name: holopad (Security - Front South) + - type: Transform + pos: 20.5,2.5 + parent: 13329 + - type: Label + currentLabel: Security - Front South + - type: NameModifier + baseName: holopad +- proto: HolopadSecurityInterrogation + entities: + - uid: 35860 + components: + - type: Transform + pos: 16.5,23.5 + parent: 13329 +- proto: HolopadSecurityLawyer + entities: + - uid: 35928 + components: + - type: Transform + pos: 71.5,34.5 + parent: 13329 +- proto: HolopadSecurityPerma + entities: + - uid: 35854 + components: + - type: Transform + pos: 46.5,21.5 + parent: 13329 +- proto: HolopadSecurityWarden + entities: + - uid: 35859 + components: + - type: Transform + pos: 29.5,12.5 + parent: 13329 +- proto: HolopadServiceBar + entities: + - uid: 35891 + components: + - type: Transform + pos: -16.5,24.5 + parent: 13329 + - uid: 35933 + components: + - type: MetaData + name: holopad (Service - Bar Center) + - type: Transform + pos: -15.5,18.5 + parent: 13329 + - type: Label + currentLabel: Service - Bar Center + - type: NameModifier + baseName: holopad +- proto: HolopadServiceBotany + entities: + - uid: 35890 + components: + - type: Transform + pos: -5.5,37.5 + parent: 13329 +- proto: HolopadServiceChapel + entities: + - uid: 35884 + components: + - type: Transform + pos: -12.5,61.5 + parent: 13329 +- proto: HolopadServiceJanitor + entities: + - uid: 35927 + components: + - type: Transform + pos: 4.5,10.5 + parent: 13329 +- proto: HolopadServiceKitchen + entities: + - uid: 35892 + components: + - type: Transform + pos: -6.5,20.5 + parent: 13329 +- proto: HolopadServiceLibrary + entities: + - uid: 35885 + components: + - type: Transform + pos: -19.5,54.5 + parent: 13329 + - uid: 35886 + components: + - type: MetaData + name: holopad (Service - Library Meeting) + - type: Transform + pos: -26.5,57.5 + parent: 13329 + - type: Label + currentLabel: Service - Library Meeting + - type: NameModifier + baseName: holopad - proto: HospitalCurtainsOpen entities: - uid: 1440 From 0462993153200e654c5da47ecaacf18835b295b8 Mon Sep 17 00:00:00 2001 From: August Sun <45527070+august-sun@users.noreply.github.com> Date: Thu, 19 Dec 2024 14:02:35 -0600 Subject: [PATCH 175/263] Fixes/removes borg spawnpoint from Oasis Engineering, added one to Robotics (#33960) removed borg spawnpoint from engineering, added one to robotics Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com> --- Resources/Maps/oasis.yml | 8491 ++++++++++++++++++-------------------- 1 file changed, 4061 insertions(+), 4430 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 8a7331d17a..f1768702f6 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -6213,7 +6213,7 @@ entities: -5,3: 0: 56797 -4,4: - 0: 61183 + 1: 61183 -3,0: 0: 63487 -3,1: @@ -6225,7 +6225,8 @@ entities: -3,-1: 0: 63487 -3,4: - 0: 55805 + 1: 4401 + 0: 51404 -2,0: 0: 63487 -2,1: @@ -6323,11 +6324,12 @@ entities: -1,-5: 0: 63675 -5,4: - 0: 62392 + 1: 136 + 0: 62256 -4,5: - 1: 65532 + 2: 65532 -5,5: - 1: 3264 + 2: 3264 0: 305 -4,6: 0: 6384 @@ -6340,7 +6342,7 @@ entities: -4,8: 0: 55759 -3,5: - 1: 4368 + 2: 4368 0: 3308 -3,6: 0: 4092 @@ -6597,7 +6599,8 @@ entities: 5,-3: 0: 61695 5,-2: - 0: 61695 + 0: 57599 + 3: 4096 5,-5: 0: 32767 6,-4: @@ -6628,7 +6631,7 @@ entities: 0: 3067 4,-9: 0: 37683 - 1: 2184 + 2: 2184 3,-8: 0: 3822 4,-7: @@ -6647,7 +6650,7 @@ entities: 0: 65527 5,-9: 0: 49152 - 1: 307 + 2: 307 6,-8: 0: 43195 6,-7: @@ -6657,7 +6660,8 @@ entities: 6,-9: 0: 45499 7,-8: - 0: 53727 + 0: 53599 + 4: 128 7,-7: 0: 21845 7,-6: @@ -6665,7 +6669,8 @@ entities: 7,-9: 0: 64721 8,-8: - 0: 61695 + 0: 61455 + 4: 240 8,-7: 0: 65520 8,-6: @@ -6851,7 +6856,8 @@ entities: -9,-12: 0: 2039 -8,-11: - 0: 28791 + 0: 28727 + 3: 64 -8,-10: 0: 28791 -9,-11: @@ -6911,7 +6917,8 @@ entities: 8,-9: 0: 65520 9,-8: - 0: 45183 + 0: 45167 + 4: 16 9,-6: 0: 65376 9,-5: @@ -6955,7 +6962,8 @@ entities: 9,-12: 0: 65329 9,-11: - 0: 64271 + 0: 64015 + 4: 256 9,-10: 0: 45963 9,-13: @@ -6967,7 +6975,7 @@ entities: 10,-10: 0: 62207 10,-13: - 2: 9902 + 5: 9902 11,-12: 0: 4913 11,-11: @@ -6976,7 +6984,7 @@ entities: 0: 65262 11,-13: 0: 4352 - 2: 127 + 5: 127 12,-10: 0: 65488 12,-9: @@ -6990,7 +6998,8 @@ entities: 9,0: 0: 53759 10,-3: - 0: 56607 + 0: 55583 + 4: 1024 10,-2: 0: 65529 10,-1: @@ -7006,7 +7015,8 @@ entities: 11,0: 0: 62207 12,-4: - 0: 61007 + 0: 60495 + 6: 512 12,-3: 0: 62702 12,-2: @@ -7082,14 +7092,14 @@ entities: 12,6: 0: 48911 12,7: - 2: 65520 + 5: 65520 -12,-12: 0: 13119 -12,-13: 0: 65427 -13,-12: 0: 56524 - 6: 17 + 7: 17 -12,-11: 0: 60931 -13,-11: @@ -7187,70 +7197,70 @@ entities: -13,1: 0: 57296 -12,1: - 2: 36352 + 5: 36352 -12,3: - 2: 34956 + 5: 34956 -11,1: 0: 127 - 2: 30464 + 5: 30464 -12,2: - 2: 34952 + 5: 34952 -11,2: - 2: 255 - 3: 57344 + 5: 255 + 8: 57344 -12,4: - 2: 53192 + 5: 53192 -11,3: - 2: 61440 - 4: 224 + 5: 61440 + 9: 224 -10,1: 0: 40847 -10,2: - 2: 51 + 5: 51 0: 43656 -10,3: - 2: 12288 + 5: 12288 0: 35498 -10,4: 0: 43690 -13,4: - 2: 32630 + 5: 32630 -12,7: - 2: 52476 + 5: 52476 -13,7: - 2: 26615 + 5: 26615 -12,6: - 2: 51336 + 5: 51336 -12,5: - 2: 34952 + 5: 34952 -11,6: - 2: 61440 - 6: 224 + 5: 61440 + 7: 224 -11,7: - 2: 65535 + 5: 65535 -12,8: - 2: 34952 + 5: 34952 -11,4: - 5: 224 - 6: 57344 + 10: 224 + 7: 57344 -11,5: - 6: 57568 + 7: 57568 -11,8: - 2: 65535 + 5: 65535 -10,6: - 2: 12288 + 5: 12288 0: 35498 -10,7: - 2: 13107 + 5: 13107 0: 34952 -10,5: 0: 43690 -10,8: - 2: 62259 + 5: 62259 0: 136 -9,8: 0: 52479 - 2: 4096 + 5: 4096 0,-16: 0: 65528 -1,-16: @@ -7275,22 +7285,22 @@ entities: 0: 4371 2,-15: 0: 65280 - 2: 3 + 5: 3 2,-14: 0: 65535 2,-16: - 2: 27776 + 5: 27776 3,-16: - 2: 57375 + 5: 57375 3,-15: 0: 30464 - 2: 11 + 5: 11 3,-14: 0: 30583 4,-16: - 2: 4883 + 5: 4883 4,-14: - 2: 2304 + 5: 2304 -4,-15: 0: 65102 -4,-14: @@ -7328,25 +7338,25 @@ entities: -9,-13: 0: 4095 -7,-15: - 6: 61184 + 7: 61184 -7,-14: 0: 32752 -6,-15: - 6: 256 + 7: 256 0: 32768 -6,-14: 0: 65528 -12,-16: - 2: 4880 + 5: 4880 -13,-16: - 2: 65520 + 5: 65520 -12,-15: 0: 53128 -12,-14: 0: 30487 -13,-14: 0: 52232 - 2: 23 + 5: 23 -11,-16: 0: 4352 -11,-15: @@ -7364,32 +7374,32 @@ entities: -10,-16: 0: 8704 -10,-17: - 6: 49152 + 7: 49152 -16,-7: - 2: 52416 + 5: 52416 -16,-6: - 2: 3276 + 5: 3276 0: 32768 -16,-5: 0: 35852 -16,-4: - 2: 52428 + 5: 52428 -15,-7: - 2: 4368 + 5: 4368 0: 3276 -15,-6: - 2: 273 + 5: 273 0: 52428 -15,-5: 0: 53199 -15,-4: - 2: 4369 + 5: 4369 0: 52420 -15,-8: 0: 52416 -15,-9: 0: 34952 - 6: 256 + 7: 256 -14,-8: 0: 49080 -14,-7: @@ -7409,31 +7419,31 @@ entities: -13,-7: 0: 26214 -16,-12: - 6: 32 + 7: 32 -16,-11: - 6: 32768 + 7: 32768 -16,-10: - 6: 8 + 7: 8 -15,-11: - 6: 13036 + 7: 13036 0: 32768 -15,-10: - 6: 307 + 7: 307 0: 34952 -15,-12: - 6: 51336 + 7: 51336 -14,-12: - 6: 4607 + 7: 4607 0: 49152 -14,-11: - 6: 17 + 7: 17 0: 61644 -14,-10: 0: 65535 -14,-13: - 6: 59392 + 7: 59392 -13,-13: - 6: 4352 + 7: 4352 0: 1604 8,9: 0: 65535 @@ -7462,28 +7472,28 @@ entities: 10,10: 0: 3549 10,11: - 6: 275 + 7: 275 10,12: 0: 305 - 2: 3276 + 5: 3276 11,9: 0: 4469 - 2: 49152 + 5: 49152 11,10: 0: 273 - 2: 52428 + 5: 52428 11,11: - 2: 61166 + 5: 61166 11,12: - 2: 53247 + 5: 53247 12,8: - 2: 13175 + 5: 13175 12,9: - 2: 13107 + 5: 13107 12,10: - 2: 63923 + 5: 63923 12,11: - 2: 61443 + 5: 61443 4,9: 0: 58606 3,9: @@ -7506,7 +7516,7 @@ entities: 0: 60928 5,12: 0: 238 - 2: 49152 + 5: 49152 6,9: 0: 65535 6,10: @@ -7585,10 +7595,10 @@ entities: 0: 48059 16,0: 0: 1793 - 2: 4 + 5: 4 16,1: 0: 7 - 2: 1024 + 5: 1024 13,-4: 0: 26215 13,-3: @@ -7607,22 +7617,22 @@ entities: 0: 61098 15,-4: 0: 4113 - 2: 34952 + 5: 34952 15,-3: 0: 4369 - 2: 34952 + 5: 34952 15,-2: 0: 16177 - 2: 8 + 5: 8 15,-5: 0: 4353 - 2: 34952 + 5: 34952 16,-2: 0: 1792 - 2: 4 + 5: 4 16,-1: 0: 4359 - 2: 17408 + 5: 17408 13,-8: 0: 15 13,-6: @@ -7636,49 +7646,49 @@ entities: 14,-9: 0: 36623 15,-8: - 6: 16 + 7: 16 15,-6: - 6: 16 + 7: 16 0: 4096 - 2: 32768 + 5: 32768 15,-9: 0: 4353 16,-5: - 2: 304 + 5: 304 12,-11: - 6: 49156 + 7: 49156 12,-12: - 2: 12 + 5: 12 12,-13: - 2: 52303 + 5: 52303 13,-12: - 2: 15 - 6: 16384 + 5: 15 + 7: 16384 13,-11: - 6: 65228 + 7: 65228 13,-10: 0: 65520 13,-13: - 2: 65295 + 5: 65295 14,-12: - 2: 15 + 5: 15 14,-11: - 6: 65521 + 7: 65521 14,-10: 0: 65392 14,-13: - 2: 65295 + 5: 65295 15,-12: - 2: 1 + 5: 1 15,-11: - 6: 4112 + 7: 4112 15,-10: - 6: 52451 + 7: 52451 0: 4096 15,-13: - 2: 4511 + 5: 4511 16,-10: - 6: 19 + 7: 19 -4,9: 0: 7421 -5,9: @@ -7693,13 +7703,13 @@ entities: 0: 32767 -4,12: 0: 34945 - 6: 13072 + 7: 13072 -3,9: 0: 4095 -3,10: 0: 65535 -3,11: - 6: 61408 + 7: 61408 -2,9: 0: 4095 -2,10: @@ -7712,23 +7722,23 @@ entities: 0: 61678 -9,9: 0: 52430 - 2: 4369 + 5: 4369 -8,10: 0: 65535 -9,10: 0: 52428 -8,11: - 2: 43808 + 5: 43808 -9,11: - 2: 20224 + 5: 20224 -8,12: - 2: 43690 + 5: 43690 -7,9: 0: 45311 -7,10: 0: 49087 -7,11: - 2: 768 + 5: 768 0: 34952 -6,9: 0: 61661 @@ -7738,38 +7748,38 @@ entities: 0: 65535 -7,12: 0: 34952 - 2: 12322 + 5: 12322 -6,12: 0: 65535 -5,12: 0: 13111 - 6: 34816 + 7: 34816 -12,9: - 2: 65497 + 5: 65497 -13,9: - 2: 8 + 5: 8 -12,10: - 2: 52428 + 5: 52428 -11,9: - 2: 4607 - 6: 49152 + 5: 4607 + 7: 49152 -11,10: - 2: 33041 - 6: 204 + 5: 33041 + 7: 204 -12,11: - 2: 136 + 5: 136 -11,11: - 2: 248 + 5: 248 -10,9: - 2: 52479 - 6: 4096 + 5: 52479 + 7: 4096 -10,10: - 6: 17 - 2: 34952 + 7: 17 + 5: 34952 -10,11: - 2: 2296 + 5: 2296 -9,12: - 2: 17476 + 5: 17476 8,-15: 0: 65535 7,-15: @@ -7783,48 +7793,48 @@ entities: 9,-14: 0: 4403 10,-16: - 2: 3584 + 5: 3584 11,-16: - 2: 7936 + 5: 7936 10,-14: - 2: 34816 + 5: 34816 11,-14: - 2: 29489 + 5: 29489 11,-15: - 2: 4369 + 5: 4369 12,-16: - 2: 3840 + 5: 3840 4,-17: - 2: 4096 + 5: 4096 5,-14: - 2: 1024 + 5: 1024 6,-14: - 2: 512 + 5: 512 -8,13: - 2: 29666 + 5: 29666 -9,13: - 2: 3140 + 5: 3140 -8,14: - 2: 15 + 5: 15 -7,13: - 2: 32816 + 5: 32816 0: 1032 -7,14: - 2: 15 + 5: 15 -6,13: 0: 255 -6,14: - 2: 49 + 5: 49 -5,13: 0: 51 - 6: 51208 + 7: 51208 -5,14: - 6: 264 + 7: 264 -4,13: - 6: 29443 + 7: 29443 0: 136 -4,14: - 6: 3 + 7: 3 -3,12: 0: 65520 -3,13: @@ -7843,176 +7853,176 @@ entities: 0: 41634 1,14: 0: 8710 - 2: 34952 + 5: 34952 1,15: 0: 8226 - 2: 34952 + 5: 34952 1,16: 0: 8738 - 2: 34952 + 5: 34952 2,13: 0: 4280 2,14: - 2: 49023 + 5: 49023 2,15: - 2: 44974 + 5: 44974 2,16: - 2: 32702 + 5: 32702 3,13: 0: 255 3,14: - 2: 44847 + 5: 44847 3,15: - 2: 44463 + 5: 44463 0: 512 3,16: - 2: 12207 + 5: 12207 4,14: - 2: 61439 + 5: 61439 4,15: - 2: 44971 + 5: 44971 4,13: 0: 49376 4,16: - 2: 65515 + 5: 65515 5,15: 0: 8243 - 2: 1228 + 5: 1228 5,13: 0: 8738 - 6: 136 + 7: 136 5,14: 0: 546 - 2: 16384 + 5: 16384 5,16: 0: 8738 6,15: - 2: 255 + 5: 255 6,13: 0: 1262 7,13: 0: 1279 7,15: - 2: 255 + 5: 255 8,15: - 2: 255 + 5: 255 9,15: - 2: 255 + 5: 255 10,15: - 2: 55 + 5: 55 10,14: - 2: 65224 + 5: 65224 11,14: - 2: 311 + 5: 311 11,13: - 2: 65228 + 5: 65228 12,12: - 2: 65535 + 5: 65535 13,10: - 2: 17 + 5: 17 13,9: - 2: 13028 + 5: 13028 13,8: - 2: 19652 + 5: 19652 13,7: - 2: 20476 + 5: 20476 14,9: - 2: 248 + 5: 248 14,8: - 2: 52428 + 5: 52428 14,7: - 2: 51711 + 5: 51711 15,8: - 2: 56797 + 5: 56797 15,9: - 2: 248 + 5: 248 15,7: - 2: 55539 + 5: 55539 16,8: - 2: 56797 + 5: 56797 16,9: - 2: 248 + 5: 248 13,5: 0: 1911 13,6: 0: 4879 - 2: 52224 + 5: 52224 14,5: 0: 7633 14,6: 0: 15 - 2: 13056 + 5: 13056 15,5: 0: 35768 15,6: 0: 15 - 2: 13824 + 5: 13824 16,7: - 2: 55544 + 5: 55544 13,12: - 2: 4095 + 5: 4095 14,12: - 2: 4095 + 5: 4095 15,12: - 2: 4095 + 5: 4095 16,12: - 2: 883 + 5: 883 0,18: - 2: 49160 + 5: 49160 0,17: - 2: 34816 + 5: 34816 1,17: - 2: 24856 + 5: 24856 0: 3106 1,18: - 2: 64035 + 5: 64035 1,19: - 2: 200 + 5: 200 2,17: - 2: 57359 + 5: 57359 0: 1792 2,18: - 2: 4238 + 5: 4238 2,19: - 2: 240 + 5: 240 3,17: - 2: 61455 + 5: 61455 0: 1792 3,18: - 2: 255 + 5: 255 3,19: - 2: 240 + 5: 240 4,17: - 2: 12303 + 5: 12303 0: 3840 4,18: - 2: 51203 + 5: 51203 4,19: - 2: 248 + 5: 248 5,17: 0: 290 - 2: 48192 + 5: 48192 5,18: - 2: 61998 + 5: 61998 5,19: - 2: 16 + 5: 16 6,17: - 2: 18244 + 5: 18244 6,18: - 2: 4164 + 5: 4164 6,16: - 2: 16384 + 5: 16384 -15,0: - 2: 1 + 5: 1 0: 52428 -15,1: - 2: 4401 + 5: 4401 0: 34944 -15,2: - 2: 4369 + 5: 4369 0: 2176 -15,3: - 2: 34959 + 5: 34959 -15,-1: 0: 52732 -14,0: @@ -8022,49 +8032,49 @@ entities: -14,2: 0: 61439 -14,3: - 2: 61440 + 5: 61440 0: 14 -14,-1: 0: 65535 -13,2: 0: 817 - 2: 128 + 5: 128 -13,3: - 2: 12834 + 5: 12834 -13,5: - 2: 8742 + 5: 8742 -13,6: - 2: 25122 + 5: 25122 -13,8: - 2: 50722 + 5: 50722 -16,-16: - 2: 30583 + 5: 30583 -16,-17: - 2: 29187 + 5: 29187 -16,-15: - 2: 29426 + 5: 29426 -17,-15: - 2: 29426 + 5: 29426 -16,-14: - 2: 30583 + 5: 30583 -16,-13: - 2: 2 + 5: 2 -15,-15: - 2: 240 + 5: 240 -15,-16: - 2: 65520 + 5: 65520 -15,-13: - 6: 64 + 7: 64 -14,-16: - 2: 24404 + 5: 24404 -14,-15: - 2: 52980 + 5: 52980 -14,-17: - 2: 24404 + 5: 24404 -13,-15: - 2: 29456 + 5: 29456 -14,-14: - 2: 8 + 5: 8 0,-20: 0: 34952 0,-19: @@ -8098,14 +8108,14 @@ entities: -2,-18: 0: 4096 -16,-3: - 2: 17612 + 5: 17612 -16,-2: - 2: 4 + 5: 4 0: 51200 -16,-1: 0: 2240 -15,-3: - 2: 1 + 5: 1 0: 56780 -15,-2: 0: 64973 @@ -8114,131 +8124,131 @@ entities: -14,-2: 0: 65535 16,4: - 2: 25188 + 5: 25188 16,5: - 2: 58914 + 5: 58914 16,6: - 2: 34946 + 5: 34946 16,3: - 2: 18018 + 5: 18018 17,5: - 2: 61440 + 5: 61440 17,6: - 2: 65520 + 5: 65520 17,7: - 2: 55536 + 5: 55536 17,8: - 2: 56797 + 5: 56797 18,5: - 2: 61440 + 5: 61440 18,6: - 2: 65520 + 5: 65520 18,7: - 2: 55536 + 5: 55536 18,8: - 2: 56797 + 5: 56797 19,5: - 2: 61440 + 5: 61440 19,6: - 2: 48056 + 5: 48056 19,7: - 2: 39162 + 5: 39162 19,8: - 2: 39321 + 5: 39321 20,7: - 2: 16 + 5: 16 16,2: - 2: 8192 + 5: 8192 -12,-19: - 2: 61440 + 5: 61440 -13,-19: - 2: 61440 + 5: 61440 -12,-18: - 2: 4880 + 5: 4880 -13,-18: - 2: 65520 + 5: 65520 -12,-17: - 2: 4880 + 5: 4880 -13,-17: - 2: 65520 + 5: 65520 -11,-19: - 2: 61440 + 5: 61440 -10,-19: - 2: 4096 + 5: 4096 -10,-18: - 6: 4 + 7: 4 -18,-12: - 2: 68 + 5: 68 -18,-13: - 2: 17476 + 5: 17476 -18,-15: - 2: 17636 + 5: 17636 -18,-16: - 2: 17476 + 5: 17476 -18,-17: - 2: 17484 + 5: 17484 -18,-14: - 2: 17476 + 5: 17476 -17,-16: - 2: 30583 + 5: 30583 -17,-17: - 2: 29199 + 5: 29199 -17,-14: - 2: 30583 + 5: 30583 -17,-13: - 2: 2 + 5: 2 16,-12: - 2: 546 + 5: 546 16,-13: - 2: 8743 + 5: 8743 -16,-19: - 2: 57344 + 5: 57344 -16,-18: - 2: 10786 + 5: 10786 -15,-19: - 2: 61440 + 5: 61440 -15,-18: - 2: 65520 + 5: 65520 -15,-17: - 2: 65520 + 5: 65520 -14,-19: - 2: 62464 + 5: 62464 -14,-18: - 2: 24404 + 5: 24404 12,-15: - 2: 30496 + 5: 30496 12,-14: - 2: 10103 + 5: 10103 13,-16: - 2: 3840 + 5: 3840 13,-15: - 2: 30496 + 5: 30496 13,-14: - 2: 10103 + 5: 10103 14,-16: - 2: 3840 + 5: 3840 14,-15: - 2: 30496 + 5: 30496 14,-14: - 2: 10103 + 5: 10103 15,-16: - 2: 3840 + 5: 3840 15,-15: - 2: 30496 + 5: 30496 15,-14: - 2: 10103 + 5: 10103 16,-16: - 2: 8960 + 5: 8960 16,-15: - 2: 8738 + 5: 8738 16,-14: - 2: 8738 + 5: 8738 17,9: - 2: 248 + 5: 248 18,9: - 2: 248 + 5: 248 19,9: - 2: 248 + 5: 248 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8255,6 +8265,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 103.92799 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -8270,6 +8295,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -8285,6 +8340,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -8330,21 +8415,6 @@ entities: - 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: RadiationGridResistance @@ -14579,7 +14649,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -115600.24 + secondsUntilStateChange: -111701.01 state: Opening - uid: 6934 components: @@ -14591,7 +14661,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -115602.875 + secondsUntilStateChange: -111703.64 state: Opening - uid: 6935 components: @@ -14603,7 +14673,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -115601.73 + secondsUntilStateChange: -111702.49 state: Opening - uid: 6936 components: @@ -14614,7 +14684,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -115600.945 + secondsUntilStateChange: -111701.71 state: Opening - proto: AirlockTheatreLocked entities: @@ -75964,6 +76034,12 @@ entities: - type: Transform pos: 4.5,32.5 parent: 2 + - uid: 6622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,42.5 + parent: 2 - uid: 8454 components: - type: Transform @@ -75975,12 +76051,6 @@ entities: rot: 3.141592653589793 rad pos: -32.052803,42.655365 parent: 2 - - uid: 10949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,42.5 - parent: 2 - uid: 11855 components: - type: Transform @@ -78643,6 +78713,12 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,16.5 parent: 2 + - uid: 2545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 - uid: 2546 components: - type: Transform @@ -78900,26 +78976,6 @@ entities: - type: Transform pos: 10.5,-33.5 parent: 2 -- proto: ComputerAtmosMonitoring - entities: - - uid: 10655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,39.5 - parent: 2 - - uid: 10656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,3.5 - parent: 2 - - uid: 10839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,41.5 - parent: 2 - proto: computerBodyScanner entities: - uid: 1069 @@ -90895,6 +90951,13 @@ entities: - type: Transform pos: 38.25496,16.711338 parent: 2 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 29445 + components: + - type: Transform + pos: 61.47509,21.65281 + parent: 2 - proto: Eggshells entities: - uid: 19085 @@ -94690,7 +94753,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -106924.23 + secondsUntilStateChange: -103024.99 - type: DeviceNetwork deviceLists: - 18275 @@ -97482,13 +97545,8 @@ entities: friction: 0.4 - type: ScaleVisuals - type: Appearance -- proto: FloraTreeConifer +- proto: FloraTreeConifer01 entities: - - uid: 19176 - components: - - type: Transform - pos: 7.0421615,14.648008 - parent: 2 - uid: 19177 components: - type: Transform @@ -97504,6 +97562,8 @@ entities: - type: Transform pos: 7.4194474,6.70954 parent: 2 +- proto: FloraTreeConifer02 + entities: - uid: 19180 components: - type: Transform @@ -97514,22 +97574,29 @@ entities: - type: Transform pos: 14.398615,8.594956 parent: 2 - - uid: 26508 - components: - - type: Transform - pos: 8.48288,-5.3548317 - parent: 21002 - uid: 26509 components: - type: Transform pos: 7.439621,3.8400307 parent: 21002 +- proto: FloraTreeConifer03 + entities: + - uid: 19176 + components: + - type: Transform + pos: 7.0421615,14.648008 + parent: 2 + - uid: 26508 + components: + - type: Transform + pos: 8.48288,-5.3548317 + parent: 21002 - uid: 26513 components: - type: Transform pos: 22.109192,5.674118 parent: 21002 -- proto: FloraTreeSnow +- proto: FloraTreeSnow02 entities: - uid: 19171 components: @@ -97537,11 +97604,8 @@ entities: rot: 1.5707963267948966 rad pos: -5.5474405,-12.275735 parent: 2 - - uid: 19172 - components: - - type: Transform - pos: -4.1702504,-6.317836 - parent: 2 +- proto: FloraTreeSnow03 + entities: - uid: 19173 components: - type: Transform @@ -97552,22 +97616,31 @@ entities: - type: Transform pos: -6.2223334,-4.161586 parent: 2 +- proto: FloraTreeSnow04 + entities: - uid: 19175 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.004216,-6.7445054 parent: 2 - - uid: 26506 - components: - - type: Transform - pos: 26.667542,-6.5239983 - parent: 21002 - uid: 26507 components: - type: Transform pos: 24.552963,-6.4198303 parent: 21002 +- proto: FloraTreeSnow05 + entities: + - uid: 19172 + components: + - type: Transform + pos: -4.1702504,-6.317836 + parent: 2 + - uid: 26506 + components: + - type: Transform + pos: 26.667542,-6.5239983 + parent: 21002 - proto: FloraTreeStumpConifer entities: - uid: 369 @@ -98181,13 +98254,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,31.5 parent: 2 -- proto: GameMasterCircuitBoard - entities: - - uid: 29445 - components: - - type: Transform - pos: 61.47509,21.65281 - parent: 2 - proto: GasAnalyzer entities: - uid: 5802 @@ -98285,7 +98351,7 @@ entities: pos: -36.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - proto: GasFilterFlipped entities: - uid: 15676 @@ -98351,7 +98417,7 @@ entities: pos: -32.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 21595 components: - type: Transform @@ -98455,7 +98521,7 @@ entities: pos: -26.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28607 components: - type: Transform @@ -98686,7 +98752,7 @@ entities: pos: -53.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 52 components: - type: Transform @@ -98694,7 +98760,7 @@ entities: pos: -41.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 896 components: - type: Transform @@ -98702,7 +98768,7 @@ entities: pos: -54.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 898 components: - type: Transform @@ -98710,7 +98776,7 @@ entities: pos: -52.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3203 components: - type: Transform @@ -98718,7 +98784,7 @@ entities: pos: 34.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3737 components: - type: Transform @@ -98726,7 +98792,7 @@ entities: pos: -20.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3957 components: - type: Transform @@ -98734,14 +98800,14 @@ entities: pos: -12.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5461 components: - type: Transform pos: -38.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5547 components: - type: Transform @@ -98749,7 +98815,7 @@ entities: pos: -32.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7356 components: - type: Transform @@ -98757,7 +98823,7 @@ entities: pos: 0.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8106 components: - type: Transform @@ -98797,7 +98863,7 @@ entities: pos: -27.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8220 components: - type: Transform @@ -98813,7 +98879,7 @@ entities: pos: -42.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8561 components: - type: Transform @@ -98883,7 +98949,7 @@ entities: pos: -36.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8666 components: - type: Transform @@ -98897,7 +98963,7 @@ entities: pos: -27.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8713 components: - type: Transform @@ -98905,14 +98971,14 @@ entities: pos: -23.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8740 components: - type: Transform pos: -8.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8753 components: - type: Transform @@ -98920,7 +98986,7 @@ entities: pos: -24.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8800 components: - type: Transform @@ -98943,7 +99009,7 @@ entities: pos: -21.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8842 components: - type: Transform @@ -98966,7 +99032,7 @@ entities: pos: -26.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8916 components: - type: Transform @@ -98974,7 +99040,7 @@ entities: pos: -31.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8943 components: - type: Transform @@ -98998,14 +99064,14 @@ entities: pos: -29.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9111 components: - type: Transform pos: -27.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9114 components: - type: Transform @@ -99020,7 +99086,7 @@ entities: pos: -25.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9116 components: - type: Transform @@ -99034,14 +99100,14 @@ entities: pos: -12.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9390 components: - type: Transform pos: 17.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9397 components: - type: Transform @@ -99049,14 +99115,14 @@ entities: pos: 17.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9405 components: - type: Transform pos: 1.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9622 components: - type: Transform @@ -99064,7 +99130,7 @@ entities: pos: -26.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9626 components: - type: Transform @@ -99072,7 +99138,7 @@ entities: pos: -25.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10275 components: - type: Transform @@ -99080,7 +99146,7 @@ entities: pos: -46.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11525 components: - type: Transform @@ -99088,14 +99154,14 @@ entities: pos: -45.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11907 components: - type: Transform pos: 0.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12991 components: - type: Transform @@ -99103,7 +99169,7 @@ entities: pos: 56.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13240 components: - type: Transform @@ -99111,7 +99177,7 @@ entities: pos: -1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13241 components: - type: Transform @@ -99119,14 +99185,14 @@ entities: pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13242 components: - type: Transform pos: 2.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13243 components: - type: Transform @@ -99134,7 +99200,7 @@ entities: pos: -1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13439 components: - type: Transform @@ -99142,7 +99208,7 @@ entities: pos: 3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13563 components: - type: Transform @@ -99158,7 +99224,7 @@ entities: pos: -11.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13618 components: - type: Transform @@ -99166,7 +99232,7 @@ entities: pos: -10.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13660 components: - type: Transform @@ -99174,7 +99240,7 @@ entities: pos: -11.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13666 components: - type: Transform @@ -99182,7 +99248,7 @@ entities: pos: -8.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13668 components: - type: Transform @@ -99190,21 +99256,21 @@ entities: pos: -9.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13706 components: - type: Transform pos: -12.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13721 components: - type: Transform pos: -19.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13733 components: - type: Transform @@ -99212,7 +99278,7 @@ entities: pos: -19.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13734 components: - type: Transform @@ -99220,7 +99286,7 @@ entities: pos: -20.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13742 components: - type: Transform @@ -99228,7 +99294,7 @@ entities: pos: -9.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13743 components: - type: Transform @@ -99236,21 +99302,21 @@ entities: pos: -10.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13744 components: - type: Transform pos: -8.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13745 components: - type: Transform pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13746 components: - type: Transform @@ -99258,14 +99324,14 @@ entities: pos: -8.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13748 components: - type: Transform pos: -7.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13751 components: - type: Transform @@ -99273,21 +99339,21 @@ entities: pos: -8.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13752 components: - type: Transform pos: -7.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13753 components: - type: Transform pos: -6.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13754 components: - type: Transform @@ -99295,7 +99361,7 @@ entities: pos: -6.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13755 components: - type: Transform @@ -99303,21 +99369,21 @@ entities: pos: -7.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13756 components: - type: Transform pos: -5.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13757 components: - type: Transform pos: -6.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13758 components: - type: Transform @@ -99325,14 +99391,14 @@ entities: pos: -6.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13766 components: - type: Transform pos: -3.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13772 components: - type: Transform @@ -99340,21 +99406,21 @@ entities: pos: -3.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13774 components: - type: Transform pos: -2.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13775 components: - type: Transform pos: -3.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13776 components: - type: Transform @@ -99362,7 +99428,7 @@ entities: pos: -2.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13777 components: - type: Transform @@ -99370,7 +99436,7 @@ entities: pos: -3.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13855 components: - type: Transform @@ -99378,7 +99444,7 @@ entities: pos: -22.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13859 components: - type: Transform @@ -99386,7 +99452,7 @@ entities: pos: -21.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13862 components: - type: Transform @@ -99394,7 +99460,7 @@ entities: pos: -21.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13863 components: - type: Transform @@ -99402,7 +99468,7 @@ entities: pos: -22.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13896 components: - type: Transform @@ -99410,7 +99476,7 @@ entities: pos: 5.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13897 components: - type: Transform @@ -99418,7 +99484,7 @@ entities: pos: 4.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13898 components: - type: Transform @@ -99426,7 +99492,7 @@ entities: pos: 5.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13899 components: - type: Transform @@ -99434,7 +99500,7 @@ entities: pos: 4.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13900 components: - type: Transform @@ -99442,7 +99508,7 @@ entities: pos: 8.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13902 components: - type: Transform @@ -99450,7 +99516,7 @@ entities: pos: 7.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13904 components: - type: Transform @@ -99458,7 +99524,7 @@ entities: pos: 10.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13906 components: - type: Transform @@ -99466,7 +99532,7 @@ entities: pos: 9.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13907 components: - type: Transform @@ -99474,7 +99540,7 @@ entities: pos: 10.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13908 components: - type: Transform @@ -99482,7 +99548,7 @@ entities: pos: 11.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13909 components: - type: Transform @@ -99490,7 +99556,7 @@ entities: pos: 10.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13910 components: - type: Transform @@ -99498,7 +99564,7 @@ entities: pos: 10.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13911 components: - type: Transform @@ -99506,7 +99572,7 @@ entities: pos: 11.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13912 components: - type: Transform @@ -99514,7 +99580,7 @@ entities: pos: 12.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13914 components: - type: Transform @@ -99522,7 +99588,7 @@ entities: pos: 11.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13916 components: - type: Transform @@ -99530,7 +99596,7 @@ entities: pos: 13.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13917 components: - type: Transform @@ -99538,7 +99604,7 @@ entities: pos: 12.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13918 components: - type: Transform @@ -99546,7 +99612,7 @@ entities: pos: 13.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13919 components: - type: Transform @@ -99554,7 +99620,7 @@ entities: pos: 12.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13931 components: - type: Transform @@ -99562,7 +99628,7 @@ entities: pos: 14.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13932 components: - type: Transform @@ -99570,7 +99636,7 @@ entities: pos: 13.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13942 components: - type: Transform @@ -99578,14 +99644,14 @@ entities: pos: 7.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13947 components: - type: Transform pos: -20.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13948 components: - type: Transform @@ -99593,7 +99659,7 @@ entities: pos: -21.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14027 components: - type: Transform @@ -99601,7 +99667,7 @@ entities: pos: 22.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14028 components: - type: Transform @@ -99609,7 +99675,7 @@ entities: pos: 22.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14029 components: - type: Transform @@ -99617,7 +99683,7 @@ entities: pos: 23.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14030 components: - type: Transform @@ -99625,7 +99691,7 @@ entities: pos: 23.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14031 components: - type: Transform @@ -99633,7 +99699,7 @@ entities: pos: 24.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14041 components: - type: Transform @@ -99641,7 +99707,7 @@ entities: pos: 21.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14042 components: - type: Transform @@ -99649,7 +99715,7 @@ entities: pos: 21.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14043 components: - type: Transform @@ -99657,7 +99723,7 @@ entities: pos: 22.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14044 components: - type: Transform @@ -99665,7 +99731,7 @@ entities: pos: 22.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14045 components: - type: Transform @@ -99673,7 +99739,7 @@ entities: pos: 23.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14062 components: - type: Transform @@ -99681,21 +99747,21 @@ entities: pos: 21.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14068 components: - type: Transform pos: 24.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14116 components: - type: Transform pos: 12.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14117 components: - type: Transform @@ -99703,7 +99769,7 @@ entities: pos: 8.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14154 components: - type: Transform @@ -99711,7 +99777,7 @@ entities: pos: 31.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14235 components: - type: Transform @@ -99719,7 +99785,7 @@ entities: pos: 43.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14255 components: - type: Transform @@ -99727,7 +99793,7 @@ entities: pos: 49.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14256 components: - type: Transform @@ -99735,21 +99801,21 @@ entities: pos: 51.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14279 components: - type: Transform pos: 54.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14303 components: - type: Transform pos: 52.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14399 components: - type: Transform @@ -99757,14 +99823,14 @@ entities: pos: 32.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14400 components: - type: Transform pos: 32.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14406 components: - type: Transform @@ -99772,7 +99838,7 @@ entities: pos: 27.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14411 components: - type: Transform @@ -99780,14 +99846,14 @@ entities: pos: 28.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14425 components: - type: Transform pos: 27.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14427 components: - type: Transform @@ -99795,7 +99861,7 @@ entities: pos: 27.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14428 components: - type: Transform @@ -99803,7 +99869,7 @@ entities: pos: 26.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14506 components: - type: Transform @@ -99811,7 +99877,7 @@ entities: pos: 47.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14508 components: - type: Transform @@ -99819,7 +99885,7 @@ entities: pos: 46.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14520 components: - type: Transform @@ -99827,7 +99893,7 @@ entities: pos: 42.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14533 components: - type: Transform @@ -99835,7 +99901,7 @@ entities: pos: 46.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14558 components: - type: Transform @@ -99843,7 +99909,7 @@ entities: pos: 14.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14559 components: - type: Transform @@ -99851,7 +99917,7 @@ entities: pos: 14.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14560 components: - type: Transform @@ -99859,7 +99925,7 @@ entities: pos: 15.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14561 components: - type: Transform @@ -99867,14 +99933,14 @@ entities: pos: 15.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14582 components: - type: Transform pos: 33.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14625 components: - type: Transform @@ -99882,7 +99948,7 @@ entities: pos: 24.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14626 components: - type: Transform @@ -99890,7 +99956,7 @@ entities: pos: 23.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14728 components: - type: Transform @@ -99898,14 +99964,14 @@ entities: pos: 37.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14729 components: - type: Transform pos: 37.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14734 components: - type: Transform @@ -99913,7 +99979,7 @@ entities: pos: 24.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14735 components: - type: Transform @@ -99921,14 +99987,14 @@ entities: pos: 23.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14761 components: - type: Transform pos: 36.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14849 components: - type: Transform @@ -99936,7 +100002,7 @@ entities: pos: 6.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14874 components: - type: Transform @@ -99944,7 +100010,7 @@ entities: pos: 21.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14881 components: - type: Transform @@ -99952,7 +100018,7 @@ entities: pos: 19.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14900 components: - type: Transform @@ -99960,7 +100026,7 @@ entities: pos: 5.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14901 components: - type: Transform @@ -99968,14 +100034,14 @@ entities: pos: 9.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14930 components: - type: Transform pos: 14.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14976 components: - type: Transform @@ -99983,21 +100049,21 @@ entities: pos: -36.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14984 components: - type: Transform pos: -37.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14985 components: - type: Transform pos: -36.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14986 components: - type: Transform @@ -100005,7 +100071,7 @@ entities: pos: -37.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15083 components: - type: Transform @@ -100013,7 +100079,7 @@ entities: pos: -55.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15107 components: - type: Transform @@ -100021,7 +100087,7 @@ entities: pos: -53.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15110 components: - type: Transform @@ -100029,7 +100095,7 @@ entities: pos: -49.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15121 components: - type: Transform @@ -100037,14 +100103,14 @@ entities: pos: -48.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15126 components: - type: Transform pos: -39.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15229 components: - type: Transform @@ -100052,7 +100118,7 @@ entities: pos: -41.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15230 components: - type: Transform @@ -100060,7 +100126,7 @@ entities: pos: -42.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15245 components: - type: Transform @@ -100068,14 +100134,14 @@ entities: pos: -40.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15285 components: - type: Transform pos: -34.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15288 components: - type: Transform @@ -100083,7 +100149,7 @@ entities: pos: -30.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15292 components: - type: Transform @@ -100091,7 +100157,7 @@ entities: pos: -42.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15293 components: - type: Transform @@ -100099,7 +100165,7 @@ entities: pos: -40.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15338 components: - type: Transform @@ -100107,7 +100173,7 @@ entities: pos: -7.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15346 components: - type: Transform @@ -100115,7 +100181,7 @@ entities: pos: -7.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15397 components: - type: Transform @@ -100123,7 +100189,7 @@ entities: pos: -19.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15446 components: - type: Transform @@ -100131,14 +100197,14 @@ entities: pos: 39.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15456 components: - type: Transform pos: 40.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15458 components: - type: Transform @@ -100146,7 +100212,7 @@ entities: pos: 39.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15459 components: - type: Transform @@ -100154,7 +100220,7 @@ entities: pos: 40.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15469 components: - type: Transform @@ -100162,7 +100228,7 @@ entities: pos: 31.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15483 components: - type: Transform @@ -100170,7 +100236,7 @@ entities: pos: 32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15488 components: - type: Transform @@ -100178,7 +100244,7 @@ entities: pos: 34.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15492 components: - type: Transform @@ -100186,7 +100252,7 @@ entities: pos: 32.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15505 components: - type: Transform @@ -100202,7 +100268,7 @@ entities: pos: 55.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15602 components: - type: Transform @@ -100210,14 +100276,14 @@ entities: pos: 56.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15666 components: - type: Transform pos: -15.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15688 components: - type: Transform @@ -100225,14 +100291,14 @@ entities: pos: -19.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15721 components: - type: Transform pos: -13.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15726 components: - type: Transform @@ -100240,7 +100306,7 @@ entities: pos: -17.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15729 components: - type: Transform @@ -100248,28 +100314,28 @@ entities: pos: -20.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15795 components: - type: Transform pos: -11.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15803 components: - type: Transform pos: -6.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15807 components: - type: Transform pos: -7.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15808 components: - type: Transform @@ -100277,7 +100343,7 @@ entities: pos: -7.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15824 components: - type: Transform @@ -100285,7 +100351,7 @@ entities: pos: -31.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15829 components: - type: Transform @@ -100293,14 +100359,14 @@ entities: pos: -30.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15837 components: - type: Transform pos: -28.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15866 components: - type: Transform @@ -100308,7 +100374,7 @@ entities: pos: -25.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15911 components: - type: Transform @@ -100316,14 +100382,14 @@ entities: pos: -25.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15922 components: - type: Transform pos: 3.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15923 components: - type: Transform @@ -100331,7 +100397,7 @@ entities: pos: -8.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15924 components: - type: Transform @@ -100339,21 +100405,21 @@ entities: pos: -9.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15925 components: - type: Transform pos: 4.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16123 components: - type: Transform pos: 49.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16124 components: - type: Transform @@ -100361,14 +100427,14 @@ entities: pos: 45.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16135 components: - type: Transform pos: 39.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16142 components: - type: Transform @@ -100376,21 +100442,21 @@ entities: pos: -17.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16143 components: - type: Transform pos: -16.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16144 components: - type: Transform pos: -17.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16172 components: - type: Transform @@ -100398,14 +100464,14 @@ entities: pos: -12.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16235 components: - type: Transform pos: 6.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16254 components: - type: Transform @@ -100413,21 +100479,21 @@ entities: pos: 23.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16255 components: - type: Transform pos: 25.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16256 components: - type: Transform pos: 26.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16276 components: - type: Transform @@ -100435,7 +100501,7 @@ entities: pos: 25.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16321 components: - type: Transform @@ -100443,7 +100509,7 @@ entities: pos: 35.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16322 components: - type: Transform @@ -100451,7 +100517,7 @@ entities: pos: 34.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16341 components: - type: Transform @@ -100459,7 +100525,7 @@ entities: pos: 33.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16342 components: - type: Transform @@ -100467,21 +100533,21 @@ entities: pos: 34.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16352 components: - type: Transform pos: 31.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16374 components: - type: Transform pos: 18.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16388 components: - type: Transform @@ -100489,7 +100555,7 @@ entities: pos: 8.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16412 components: - type: Transform @@ -100497,14 +100563,14 @@ entities: pos: 10.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16418 components: - type: Transform pos: 7.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16419 components: - type: Transform @@ -100512,14 +100578,14 @@ entities: pos: 3.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16420 components: - type: Transform pos: 8.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16435 components: - type: Transform @@ -100527,14 +100593,14 @@ entities: pos: 3.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16444 components: - type: Transform pos: 5.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16445 components: - type: Transform @@ -100542,7 +100608,7 @@ entities: pos: 3.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16461 components: - type: Transform @@ -100550,14 +100616,14 @@ entities: pos: 3.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16471 components: - type: Transform pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16488 components: - type: Transform @@ -100565,7 +100631,7 @@ entities: pos: 0.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16540 components: - type: Transform @@ -100573,7 +100639,7 @@ entities: pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16541 components: - type: Transform @@ -100581,7 +100647,7 @@ entities: pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16791 components: - type: Transform @@ -100603,7 +100669,7 @@ entities: pos: -12.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 17607 components: - type: Transform @@ -100611,7 +100677,7 @@ entities: pos: 16.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 17608 components: - type: Transform @@ -100619,7 +100685,7 @@ entities: pos: 17.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18051 components: - type: Transform @@ -100627,7 +100693,7 @@ entities: pos: 55.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18374 components: - type: Transform @@ -100635,21 +100701,21 @@ entities: pos: 61.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18433 components: - type: Transform pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18434 components: - type: Transform pos: 61.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18435 components: - type: Transform @@ -100657,7 +100723,7 @@ entities: pos: 53.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18436 components: - type: Transform @@ -100665,7 +100731,7 @@ entities: pos: 53.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18736 components: - type: Transform @@ -100673,21 +100739,21 @@ entities: pos: 33.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 19077 components: - type: Transform pos: 31.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 19078 components: - type: Transform pos: 30.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 21140 components: - type: Transform @@ -100739,7 +100805,7 @@ entities: pos: -9.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22201 components: - type: Transform @@ -100747,7 +100813,7 @@ entities: pos: -5.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22274 components: - type: Transform @@ -100785,7 +100851,7 @@ entities: pos: 0.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23497 components: - type: Transform @@ -100816,14 +100882,14 @@ entities: pos: -10.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23532 components: - type: Transform pos: -10.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23541 components: - type: Transform @@ -100831,7 +100897,7 @@ entities: pos: -42.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23672 components: - type: Transform @@ -100839,7 +100905,7 @@ entities: pos: -24.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23702 components: - type: Transform @@ -100847,7 +100913,7 @@ entities: pos: -2.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23705 components: - type: Transform @@ -100855,7 +100921,7 @@ entities: pos: 0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23896 components: - type: Transform @@ -100863,7 +100929,7 @@ entities: pos: 59.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23897 components: - type: Transform @@ -100871,7 +100937,7 @@ entities: pos: 60.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 24293 components: - type: Transform @@ -100933,14 +100999,14 @@ entities: pos: -15.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25559 components: - type: Transform pos: -10.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25560 components: - type: Transform @@ -100948,7 +101014,7 @@ entities: pos: -10.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 26448 components: - type: Transform @@ -101090,14 +101156,14 @@ entities: pos: -8.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29690 components: - type: Transform pos: 8.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29694 components: - type: Transform @@ -101105,7 +101171,7 @@ entities: pos: 7.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 29696 components: - type: Transform @@ -101113,14 +101179,14 @@ entities: pos: 8.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29700 components: - type: Transform pos: 12.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - proto: GasPipeFourway entities: - uid: 666 @@ -101129,35 +101195,35 @@ entities: pos: 56.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 667 components: - type: Transform pos: 55.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7344 components: - type: Transform pos: 13.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7350 components: - type: Transform pos: 1.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7765 components: - type: Transform pos: -23.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8154 components: - type: Transform @@ -101213,203 +101279,203 @@ entities: pos: -29.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13182 components: - type: Transform pos: -19.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13206 components: - type: Transform pos: -20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13216 components: - type: Transform pos: -10.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13268 components: - type: Transform pos: 1.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13317 components: - type: Transform pos: 1.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13387 components: - type: Transform pos: 31.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13459 components: - type: Transform pos: -40.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13479 components: - type: Transform pos: -0.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13518 components: - type: Transform pos: -11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13521 components: - type: Transform pos: 40.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13536 components: - type: Transform pos: 1.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13570 components: - type: Transform pos: -31.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13854 components: - type: Transform pos: -21.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13887 components: - type: Transform pos: -14.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14073 components: - type: Transform pos: 23.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14298 components: - type: Transform pos: 42.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14316 components: - type: Transform pos: 44.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14453 components: - type: Transform pos: 42.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14477 components: - type: Transform pos: 47.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14696 components: - type: Transform pos: 30.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14697 components: - type: Transform pos: 31.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14790 components: - type: Transform pos: -42.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14796 components: - type: Transform pos: -40.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14811 components: - type: Transform pos: -42.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15381 components: - type: Transform pos: -19.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15619 components: - type: Transform pos: -8.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15620 components: - type: Transform pos: -5.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15656 components: - type: Transform pos: -13.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15677 components: - type: Transform @@ -101423,35 +101489,35 @@ entities: pos: -17.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15745 components: - type: Transform pos: -19.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15855 components: - type: Transform pos: -29.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16019 components: - type: Transform pos: -0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16265 components: - type: Transform pos: 24.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 21173 components: - type: Transform @@ -101466,45 +101532,6 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' -- proto: GasPipeSensorDistribution - entities: - - uid: 10285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeSensorTEGCold - entities: - - uid: 8179 - components: - - type: Transform - pos: -21.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasPipeSensorTEGHot - entities: - - uid: 10182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' -- proto: GasPipeSensorWaste - entities: - - uid: 6622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - proto: GasPipeStraight entities: - uid: 46 @@ -101513,7 +101540,7 @@ entities: pos: -53.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 48 components: - type: Transform @@ -101521,7 +101548,7 @@ entities: pos: -42.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 49 components: - type: Transform @@ -101529,14 +101556,14 @@ entities: pos: -42.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 50 components: - type: Transform pos: -53.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 54 components: - type: Transform @@ -101544,7 +101571,7 @@ entities: pos: -43.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 55 components: - type: Transform @@ -101552,14 +101579,14 @@ entities: pos: -44.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 231 components: - type: Transform pos: -19.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 253 components: - type: Transform @@ -101567,7 +101594,7 @@ entities: pos: -31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 254 components: - type: Transform @@ -101587,7 +101614,7 @@ entities: pos: -42.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 881 components: - type: Transform @@ -101595,7 +101622,7 @@ entities: pos: -43.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 882 components: - type: Transform @@ -101603,7 +101630,7 @@ entities: pos: -44.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 883 components: - type: Transform @@ -101611,7 +101638,7 @@ entities: pos: -45.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 895 components: - type: Transform @@ -101619,7 +101646,7 @@ entities: pos: -46.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 900 components: - type: Transform @@ -101627,7 +101654,7 @@ entities: pos: -45.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 906 components: - type: Transform @@ -101635,7 +101662,7 @@ entities: pos: -46.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 1063 components: - type: Transform @@ -101643,7 +101670,7 @@ entities: pos: -41.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1093 components: - type: Transform @@ -101651,7 +101678,7 @@ entities: pos: 30.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1636 components: - type: Transform @@ -101659,7 +101686,7 @@ entities: pos: -19.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 1637 components: - type: Transform @@ -101667,7 +101694,7 @@ entities: pos: -13.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2046 components: - type: Transform @@ -101675,7 +101702,7 @@ entities: pos: -42.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2113 components: - type: Transform @@ -101683,7 +101710,7 @@ entities: pos: -43.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2115 components: - type: Transform @@ -101691,7 +101718,7 @@ entities: pos: -43.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2252 components: - type: Transform @@ -101699,7 +101726,7 @@ entities: pos: 1.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2293 components: - type: Transform @@ -101707,7 +101734,7 @@ entities: pos: -16.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2394 components: - type: Transform @@ -101715,7 +101742,7 @@ entities: pos: 29.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2658 components: - type: Transform @@ -101723,7 +101750,7 @@ entities: pos: -42.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2761 components: - type: Transform @@ -101731,14 +101758,14 @@ entities: pos: -24.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2762 components: - type: Transform pos: 33.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3032 components: - type: Transform @@ -101746,14 +101773,14 @@ entities: pos: 0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3202 components: - type: Transform pos: 34.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3205 components: - type: Transform @@ -101761,7 +101788,7 @@ entities: pos: 34.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3282 components: - type: Transform @@ -101769,7 +101796,7 @@ entities: pos: 35.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3586 components: - type: Transform @@ -101777,7 +101804,7 @@ entities: pos: -41.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3951 components: - type: Transform @@ -101785,7 +101812,7 @@ entities: pos: -12.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5060 components: - type: Transform @@ -101793,7 +101820,7 @@ entities: pos: 16.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5456 components: - type: Transform @@ -101801,7 +101828,7 @@ entities: pos: 34.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6023 components: - type: Transform @@ -101809,7 +101836,7 @@ entities: pos: -24.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6240 components: - type: Transform @@ -101824,7 +101851,7 @@ entities: pos: 1.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7360 components: - type: Transform @@ -101832,7 +101859,7 @@ entities: pos: 2.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7732 components: - type: Transform @@ -101921,7 +101948,15 @@ entities: pos: -22.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' + - uid: 8179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8181 components: - type: Transform @@ -101982,7 +102017,7 @@ entities: pos: -15.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8211 components: - type: Transform @@ -102006,7 +102041,7 @@ entities: pos: -25.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8214 components: - type: Transform @@ -102030,7 +102065,7 @@ entities: pos: -25.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8250 components: - type: Transform @@ -102521,14 +102556,14 @@ entities: pos: -36.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8653 components: - type: Transform pos: -36.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8664 components: - type: Transform @@ -102566,7 +102601,7 @@ entities: pos: -30.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8673 components: - type: Transform @@ -102574,7 +102609,7 @@ entities: pos: -29.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8676 components: - type: Transform @@ -102582,7 +102617,7 @@ entities: pos: -35.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8678 components: - type: Transform @@ -102590,7 +102625,7 @@ entities: pos: -33.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8679 components: - type: Transform @@ -102598,7 +102633,7 @@ entities: pos: -32.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8681 components: - type: Transform @@ -102606,7 +102641,7 @@ entities: pos: -30.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8682 components: - type: Transform @@ -102614,7 +102649,7 @@ entities: pos: -13.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8692 components: - type: Transform @@ -102629,7 +102664,7 @@ entities: pos: -21.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8701 components: - type: Transform @@ -102637,7 +102672,7 @@ entities: pos: -20.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8702 components: - type: Transform @@ -102645,7 +102680,7 @@ entities: pos: -20.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8703 components: - type: Transform @@ -102653,7 +102688,7 @@ entities: pos: -20.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8704 components: - type: Transform @@ -102661,7 +102696,7 @@ entities: pos: -20.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8705 components: - type: Transform @@ -102669,7 +102704,7 @@ entities: pos: -20.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8706 components: - type: Transform @@ -102677,7 +102712,7 @@ entities: pos: 0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8707 components: - type: Transform @@ -102685,7 +102720,7 @@ entities: pos: -20.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8708 components: - type: Transform @@ -102693,7 +102728,7 @@ entities: pos: -20.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8710 components: - type: Transform @@ -102701,7 +102736,7 @@ entities: pos: -20.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8711 components: - type: Transform @@ -102709,7 +102744,7 @@ entities: pos: -20.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8714 components: - type: Transform @@ -102717,7 +102752,7 @@ entities: pos: -21.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8715 components: - type: Transform @@ -102725,231 +102760,231 @@ entities: pos: -22.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8716 components: - type: Transform pos: -23.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8717 components: - type: Transform pos: -23.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8718 components: - type: Transform pos: -23.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8719 components: - type: Transform pos: -23.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8720 components: - type: Transform pos: -23.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8721 components: - type: Transform pos: -23.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8722 components: - type: Transform pos: -23.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8723 components: - type: Transform pos: -23.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8724 components: - type: Transform pos: -23.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8725 components: - type: Transform pos: -23.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8726 components: - type: Transform pos: -23.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8727 components: - type: Transform pos: -23.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8728 components: - type: Transform pos: -23.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8729 components: - type: Transform pos: -23.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8730 components: - type: Transform pos: -23.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8731 components: - type: Transform pos: -23.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8732 components: - type: Transform pos: -24.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8733 components: - type: Transform pos: -24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8734 components: - type: Transform pos: -24.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8735 components: - type: Transform pos: -24.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8736 components: - type: Transform pos: -24.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8737 components: - type: Transform pos: -24.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8741 components: - type: Transform pos: -24.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8742 components: - type: Transform pos: -24.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8743 components: - type: Transform pos: -24.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8744 components: - type: Transform pos: -24.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8745 components: - type: Transform pos: -24.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8746 components: - type: Transform pos: -24.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8747 components: - type: Transform pos: -24.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8748 components: - type: Transform pos: -24.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8749 components: - type: Transform pos: -24.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8750 components: - type: Transform pos: -24.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8751 components: - type: Transform @@ -102957,7 +102992,7 @@ entities: pos: -23.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8752 components: - type: Transform @@ -102965,7 +103000,7 @@ entities: pos: -22.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8756 components: - type: Transform @@ -102973,7 +103008,7 @@ entities: pos: -21.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8757 components: - type: Transform @@ -102981,7 +103016,7 @@ entities: pos: -21.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8759 components: - type: Transform @@ -102989,7 +103024,7 @@ entities: pos: -17.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8760 components: - type: Transform @@ -102997,7 +103032,7 @@ entities: pos: -21.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8762 components: - type: Transform @@ -103005,7 +103040,7 @@ entities: pos: -21.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8763 components: - type: Transform @@ -103013,7 +103048,7 @@ entities: pos: -21.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8764 components: - type: Transform @@ -103021,7 +103056,7 @@ entities: pos: -21.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8765 components: - type: Transform @@ -103029,7 +103064,7 @@ entities: pos: -21.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8766 components: - type: Transform @@ -103037,7 +103072,7 @@ entities: pos: -21.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8767 components: - type: Transform @@ -103045,14 +103080,14 @@ entities: pos: -21.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8772 components: - type: Transform pos: -17.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8773 components: - type: Transform @@ -103125,35 +103160,35 @@ entities: pos: -18.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8816 components: - type: Transform pos: -27.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8817 components: - type: Transform pos: -27.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8822 components: - type: Transform pos: -31.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8832 components: - type: Transform pos: -21.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8839 components: - type: Transform @@ -103215,7 +103250,7 @@ entities: pos: -27.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8909 components: - type: Transform @@ -103246,42 +103281,42 @@ entities: pos: -26.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8979 components: - type: Transform pos: -26.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8980 components: - type: Transform pos: -26.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8982 components: - type: Transform pos: -26.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8983 components: - type: Transform pos: -26.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8985 components: - type: Transform pos: -26.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8987 components: - type: Transform @@ -103289,7 +103324,7 @@ entities: pos: -12.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8990 components: - type: Transform @@ -103312,7 +103347,7 @@ entities: pos: -25.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9021 components: - type: Transform @@ -103336,7 +103371,7 @@ entities: pos: -19.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9122 components: - type: Transform @@ -103344,7 +103379,7 @@ entities: pos: -20.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9123 components: - type: Transform @@ -103352,14 +103387,14 @@ entities: pos: -19.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9127 components: - type: Transform pos: -27.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9130 components: - type: Transform @@ -103374,7 +103409,7 @@ entities: pos: 17.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9391 components: - type: Transform @@ -103382,7 +103417,7 @@ entities: pos: 16.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9392 components: - type: Transform @@ -103390,7 +103425,7 @@ entities: pos: 17.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9408 components: - type: Transform @@ -103398,7 +103433,7 @@ entities: pos: 16.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9409 components: - type: Transform @@ -103406,84 +103441,84 @@ entities: pos: 17.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9413 components: - type: Transform pos: 0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9414 components: - type: Transform pos: 0.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9415 components: - type: Transform pos: 0.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9416 components: - type: Transform pos: 0.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9417 components: - type: Transform pos: 0.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9418 components: - type: Transform pos: 0.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9420 components: - type: Transform pos: 0.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9421 components: - type: Transform pos: 0.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9611 components: - type: Transform pos: -31.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9613 components: - type: Transform pos: -31.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9614 components: - type: Transform pos: -31.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9620 components: - type: Transform @@ -103503,7 +103538,7 @@ entities: pos: -31.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9624 components: - type: Transform @@ -103522,7 +103557,7 @@ entities: pos: -21.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9628 components: - type: Transform @@ -103530,7 +103565,7 @@ entities: pos: -20.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9629 components: - type: Transform @@ -103538,7 +103573,7 @@ entities: pos: -18.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9631 components: - type: Transform @@ -103546,7 +103581,7 @@ entities: pos: -20.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9753 components: - type: Transform @@ -103574,7 +103609,7 @@ entities: pos: 0.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10183 components: - type: Transform @@ -103582,7 +103617,7 @@ entities: pos: -12.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10194 components: - type: Transform @@ -103590,7 +103625,7 @@ entities: pos: -52.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10281 components: - type: Transform @@ -103598,42 +103633,42 @@ entities: pos: -45.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10390 components: - type: Transform pos: 1.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11032 components: - type: Transform pos: 43.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11033 components: - type: Transform pos: 43.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11034 components: - type: Transform pos: 43.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11035 components: - type: Transform pos: 43.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11241 components: - type: Transform @@ -103641,7 +103676,7 @@ entities: pos: 12.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11242 components: - type: Transform @@ -103649,14 +103684,14 @@ entities: pos: 14.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11286 components: - type: Transform pos: -49.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11288 components: - type: Transform @@ -103664,7 +103699,7 @@ entities: pos: -47.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11290 components: - type: Transform @@ -103672,7 +103707,7 @@ entities: pos: -51.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11300 components: - type: Transform @@ -103680,7 +103715,7 @@ entities: pos: -46.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11527 components: - type: Transform @@ -103688,7 +103723,7 @@ entities: pos: -50.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11539 components: - type: Transform @@ -103696,7 +103731,7 @@ entities: pos: -48.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11595 components: - type: Transform @@ -103704,7 +103739,7 @@ entities: pos: -0.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12299 components: - type: Transform @@ -103712,7 +103747,7 @@ entities: pos: 15.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12556 components: - type: Transform @@ -103720,7 +103755,7 @@ entities: pos: 13.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12787 components: - type: Transform @@ -103728,7 +103763,7 @@ entities: pos: 61.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13144 components: - type: Transform @@ -103736,7 +103771,7 @@ entities: pos: -24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13145 components: - type: Transform @@ -103744,7 +103779,7 @@ entities: pos: -25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13146 components: - type: Transform @@ -103752,7 +103787,7 @@ entities: pos: -26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13147 components: - type: Transform @@ -103760,7 +103795,7 @@ entities: pos: -27.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13148 components: - type: Transform @@ -103768,7 +103803,7 @@ entities: pos: -28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13149 components: - type: Transform @@ -103776,7 +103811,7 @@ entities: pos: -29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13150 components: - type: Transform @@ -103784,7 +103819,7 @@ entities: pos: -30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13153 components: - type: Transform @@ -103792,7 +103827,7 @@ entities: pos: -33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13155 components: - type: Transform @@ -103800,7 +103835,7 @@ entities: pos: -35.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13156 components: - type: Transform @@ -103808,7 +103843,7 @@ entities: pos: -36.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13157 components: - type: Transform @@ -103816,7 +103851,7 @@ entities: pos: -37.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13158 components: - type: Transform @@ -103824,7 +103859,7 @@ entities: pos: -38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13160 components: - type: Transform @@ -103832,7 +103867,7 @@ entities: pos: -40.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13161 components: - type: Transform @@ -103840,7 +103875,7 @@ entities: pos: -41.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13162 components: - type: Transform @@ -103848,7 +103883,7 @@ entities: pos: -25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13163 components: - type: Transform @@ -103856,7 +103891,7 @@ entities: pos: -26.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13164 components: - type: Transform @@ -103864,7 +103899,7 @@ entities: pos: -27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13165 components: - type: Transform @@ -103872,7 +103907,7 @@ entities: pos: -28.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13167 components: - type: Transform @@ -103880,7 +103915,7 @@ entities: pos: -30.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13168 components: - type: Transform @@ -103888,7 +103923,7 @@ entities: pos: -31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13169 components: - type: Transform @@ -103896,7 +103931,7 @@ entities: pos: -32.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13171 components: - type: Transform @@ -103904,7 +103939,7 @@ entities: pos: -34.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13172 components: - type: Transform @@ -103912,7 +103947,7 @@ entities: pos: -35.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13173 components: - type: Transform @@ -103920,7 +103955,7 @@ entities: pos: -36.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13174 components: - type: Transform @@ -103928,7 +103963,7 @@ entities: pos: -37.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13176 components: - type: Transform @@ -103936,7 +103971,7 @@ entities: pos: -39.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13179 components: - type: Transform @@ -103944,7 +103979,7 @@ entities: pos: -23.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13181 components: - type: Transform @@ -103952,7 +103987,7 @@ entities: pos: -21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13183 components: - type: Transform @@ -103960,7 +103995,7 @@ entities: pos: -19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13184 components: - type: Transform @@ -103968,7 +104003,7 @@ entities: pos: -18.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13185 components: - type: Transform @@ -103976,7 +104011,7 @@ entities: pos: -17.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13186 components: - type: Transform @@ -103984,7 +104019,7 @@ entities: pos: -16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13188 components: - type: Transform @@ -103992,7 +104027,7 @@ entities: pos: -14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13189 components: - type: Transform @@ -104000,7 +104035,7 @@ entities: pos: -13.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13190 components: - type: Transform @@ -104008,7 +104043,7 @@ entities: pos: -12.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13191 components: - type: Transform @@ -104016,7 +104051,7 @@ entities: pos: -11.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13193 components: - type: Transform @@ -104024,7 +104059,7 @@ entities: pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13195 components: - type: Transform @@ -104032,7 +104067,7 @@ entities: pos: -7.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13196 components: - type: Transform @@ -104040,7 +104075,7 @@ entities: pos: -6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13197 components: - type: Transform @@ -104048,7 +104083,7 @@ entities: pos: -5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13198 components: - type: Transform @@ -104056,7 +104091,7 @@ entities: pos: -4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13199 components: - type: Transform @@ -104064,7 +104099,7 @@ entities: pos: -3.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13203 components: - type: Transform @@ -104072,7 +104107,7 @@ entities: pos: -22.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13204 components: - type: Transform @@ -104080,7 +104115,7 @@ entities: pos: -21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13205 components: - type: Transform @@ -104088,7 +104123,7 @@ entities: pos: -20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13207 components: - type: Transform @@ -104096,7 +104131,7 @@ entities: pos: -18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13208 components: - type: Transform @@ -104104,7 +104139,7 @@ entities: pos: -17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13209 components: - type: Transform @@ -104112,7 +104147,7 @@ entities: pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13211 components: - type: Transform @@ -104120,7 +104155,7 @@ entities: pos: -14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13212 components: - type: Transform @@ -104128,7 +104163,7 @@ entities: pos: -13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13213 components: - type: Transform @@ -104136,7 +104171,7 @@ entities: pos: -12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13214 components: - type: Transform @@ -104144,7 +104179,7 @@ entities: pos: -10.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13215 components: - type: Transform @@ -104152,7 +104187,7 @@ entities: pos: -10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13217 components: - type: Transform @@ -104160,7 +104195,7 @@ entities: pos: -8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13218 components: - type: Transform @@ -104168,7 +104203,7 @@ entities: pos: -7.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13219 components: - type: Transform @@ -104176,7 +104211,7 @@ entities: pos: -6.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13220 components: - type: Transform @@ -104184,7 +104219,7 @@ entities: pos: -5.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13221 components: - type: Transform @@ -104192,7 +104227,7 @@ entities: pos: -4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13222 components: - type: Transform @@ -104200,7 +104235,7 @@ entities: pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13224 components: - type: Transform @@ -104208,7 +104243,7 @@ entities: pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13225 components: - type: Transform @@ -104216,7 +104251,7 @@ entities: pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13226 components: - type: Transform @@ -104224,14 +104259,14 @@ entities: pos: 0.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13227 components: - type: Transform pos: 1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13228 components: - type: Transform @@ -104239,21 +104274,21 @@ entities: pos: 0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13232 components: - type: Transform pos: -1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13233 components: - type: Transform pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13234 components: - type: Transform @@ -104261,7 +104296,7 @@ entities: pos: 0.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13235 components: - type: Transform @@ -104269,7 +104304,7 @@ entities: pos: 1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13236 components: - type: Transform @@ -104277,7 +104312,7 @@ entities: pos: 2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13237 components: - type: Transform @@ -104285,7 +104320,7 @@ entities: pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13238 components: - type: Transform @@ -104293,7 +104328,7 @@ entities: pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13239 components: - type: Transform @@ -104301,126 +104336,126 @@ entities: pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13248 components: - type: Transform pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13249 components: - type: Transform pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13250 components: - type: Transform pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13251 components: - type: Transform pos: -0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13252 components: - type: Transform pos: -0.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13253 components: - type: Transform pos: -0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13254 components: - type: Transform pos: -0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13255 components: - type: Transform pos: -0.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13257 components: - type: Transform pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13260 components: - type: Transform pos: -0.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13261 components: - type: Transform pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13263 components: - type: Transform pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13264 components: - type: Transform pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13265 components: - type: Transform pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13266 components: - type: Transform pos: -0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13267 components: - type: Transform pos: -0.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13269 components: - type: Transform pos: -0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13272 components: - type: Transform @@ -104428,126 +104463,126 @@ entities: pos: -0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13274 components: - type: Transform pos: -0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13275 components: - type: Transform pos: -0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13276 components: - type: Transform pos: -0.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13277 components: - type: Transform pos: -0.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13278 components: - type: Transform pos: -0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13279 components: - type: Transform pos: -0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13280 components: - type: Transform pos: -0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13283 components: - type: Transform pos: -0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13284 components: - type: Transform pos: -0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13285 components: - type: Transform pos: -0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13286 components: - type: Transform pos: -0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13287 components: - type: Transform pos: -0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13288 components: - type: Transform pos: -0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13290 components: - type: Transform pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13292 components: - type: Transform pos: -0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13293 components: - type: Transform pos: -0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13294 components: - type: Transform pos: -0.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13295 components: - type: Transform @@ -104555,357 +104590,357 @@ entities: pos: 1.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13297 components: - type: Transform pos: -0.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13298 components: - type: Transform pos: -0.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13299 components: - type: Transform pos: -0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13300 components: - type: Transform pos: -0.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13301 components: - type: Transform pos: -0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13302 components: - type: Transform pos: -0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13303 components: - type: Transform pos: -0.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13304 components: - type: Transform pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13305 components: - type: Transform pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13306 components: - type: Transform pos: 1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13307 components: - type: Transform pos: 1.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13308 components: - type: Transform pos: 1.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13309 components: - type: Transform pos: 1.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13311 components: - type: Transform pos: 1.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13312 components: - type: Transform pos: 1.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13314 components: - type: Transform pos: 1.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13315 components: - type: Transform pos: 1.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13316 components: - type: Transform pos: 1.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13318 components: - type: Transform pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13319 components: - type: Transform pos: 1.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13320 components: - type: Transform pos: 1.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13321 components: - type: Transform pos: 1.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13322 components: - type: Transform pos: 1.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13323 components: - type: Transform pos: 1.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13325 components: - type: Transform pos: 1.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13326 components: - type: Transform pos: 1.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13328 components: - type: Transform pos: 1.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13329 components: - type: Transform pos: 1.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13330 components: - type: Transform pos: 1.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13331 components: - type: Transform pos: 1.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13332 components: - type: Transform pos: 1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13333 components: - type: Transform pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13334 components: - type: Transform pos: 1.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13336 components: - type: Transform pos: 1.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13337 components: - type: Transform pos: 1.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13340 components: - type: Transform pos: 1.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13341 components: - type: Transform pos: 1.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13342 components: - type: Transform pos: 1.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13343 components: - type: Transform pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13344 components: - type: Transform pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13346 components: - type: Transform pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13348 components: - type: Transform pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13349 components: - type: Transform pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13352 components: - type: Transform pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13353 components: - type: Transform pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13354 components: - type: Transform pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13355 components: - type: Transform pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13356 components: - type: Transform pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13357 components: - type: Transform pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13358 components: - type: Transform pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13359 components: - type: Transform @@ -104913,7 +104948,7 @@ entities: pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13360 components: - type: Transform @@ -104921,7 +104956,7 @@ entities: pos: -0.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13361 components: - type: Transform @@ -104929,7 +104964,7 @@ entities: pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13362 components: - type: Transform @@ -104937,7 +104972,7 @@ entities: pos: 5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13363 components: - type: Transform @@ -104945,7 +104980,7 @@ entities: pos: 6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13364 components: - type: Transform @@ -104953,7 +104988,7 @@ entities: pos: 7.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13365 components: - type: Transform @@ -104961,7 +104996,7 @@ entities: pos: 8.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13366 components: - type: Transform @@ -104969,7 +105004,7 @@ entities: pos: 9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13367 components: - type: Transform @@ -104977,7 +105012,7 @@ entities: pos: 10.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13368 components: - type: Transform @@ -104985,7 +105020,7 @@ entities: pos: 11.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13371 components: - type: Transform @@ -104993,7 +105028,7 @@ entities: pos: 14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13372 components: - type: Transform @@ -105001,7 +105036,7 @@ entities: pos: 15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13373 components: - type: Transform @@ -105009,7 +105044,7 @@ entities: pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13374 components: - type: Transform @@ -105017,7 +105052,7 @@ entities: pos: 17.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13375 components: - type: Transform @@ -105025,7 +105060,7 @@ entities: pos: 18.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13377 components: - type: Transform @@ -105033,7 +105068,7 @@ entities: pos: 20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13378 components: - type: Transform @@ -105041,7 +105076,7 @@ entities: pos: 21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13379 components: - type: Transform @@ -105049,7 +105084,7 @@ entities: pos: 22.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13380 components: - type: Transform @@ -105057,7 +105092,7 @@ entities: pos: 23.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13382 components: - type: Transform @@ -105065,7 +105100,7 @@ entities: pos: 25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13384 components: - type: Transform @@ -105073,7 +105108,7 @@ entities: pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13385 components: - type: Transform @@ -105081,7 +105116,7 @@ entities: pos: 28.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13386 components: - type: Transform @@ -105089,7 +105124,7 @@ entities: pos: 29.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13388 components: - type: Transform @@ -105097,7 +105132,7 @@ entities: pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13390 components: - type: Transform @@ -105105,7 +105140,7 @@ entities: pos: 33.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13391 components: - type: Transform @@ -105113,7 +105148,7 @@ entities: pos: 34.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13392 components: - type: Transform @@ -105121,7 +105156,7 @@ entities: pos: 35.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13393 components: - type: Transform @@ -105129,7 +105164,7 @@ entities: pos: 36.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13394 components: - type: Transform @@ -105137,7 +105172,7 @@ entities: pos: 37.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13395 components: - type: Transform @@ -105145,7 +105180,7 @@ entities: pos: 38.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13396 components: - type: Transform @@ -105153,7 +105188,7 @@ entities: pos: -0.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13397 components: - type: Transform @@ -105161,7 +105196,7 @@ entities: pos: 40.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13399 components: - type: Transform @@ -105169,7 +105204,7 @@ entities: pos: 42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13401 components: - type: Transform @@ -105177,7 +105212,7 @@ entities: pos: 44.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13403 components: - type: Transform @@ -105185,7 +105220,7 @@ entities: pos: 46.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13404 components: - type: Transform @@ -105193,7 +105228,7 @@ entities: pos: 47.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13405 components: - type: Transform @@ -105201,7 +105236,7 @@ entities: pos: 48.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13407 components: - type: Transform @@ -105209,7 +105244,7 @@ entities: pos: 50.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13408 components: - type: Transform @@ -105217,7 +105252,7 @@ entities: pos: 51.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13409 components: - type: Transform @@ -105225,7 +105260,7 @@ entities: pos: 52.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13410 components: - type: Transform @@ -105233,7 +105268,7 @@ entities: pos: 52.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13412 components: - type: Transform @@ -105241,7 +105276,7 @@ entities: pos: 50.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13414 components: - type: Transform @@ -105249,7 +105284,7 @@ entities: pos: 48.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13415 components: - type: Transform @@ -105257,7 +105292,7 @@ entities: pos: 47.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13416 components: - type: Transform @@ -105265,7 +105300,7 @@ entities: pos: 46.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13417 components: - type: Transform @@ -105273,7 +105308,7 @@ entities: pos: 45.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13418 components: - type: Transform @@ -105281,7 +105316,7 @@ entities: pos: 44.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13419 components: - type: Transform @@ -105289,7 +105324,7 @@ entities: pos: 43.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13421 components: - type: Transform @@ -105297,7 +105332,7 @@ entities: pos: 41.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13423 components: - type: Transform @@ -105305,7 +105340,7 @@ entities: pos: 39.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13424 components: - type: Transform @@ -105313,7 +105348,7 @@ entities: pos: 38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13425 components: - type: Transform @@ -105321,7 +105356,7 @@ entities: pos: 37.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13426 components: - type: Transform @@ -105329,7 +105364,7 @@ entities: pos: 36.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13427 components: - type: Transform @@ -105337,7 +105372,7 @@ entities: pos: 35.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13428 components: - type: Transform @@ -105345,7 +105380,7 @@ entities: pos: 34.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13429 components: - type: Transform @@ -105353,7 +105388,7 @@ entities: pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13430 components: - type: Transform @@ -105361,7 +105396,7 @@ entities: pos: 32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13432 components: - type: Transform @@ -105369,7 +105404,7 @@ entities: pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13433 components: - type: Transform @@ -105377,7 +105412,7 @@ entities: pos: 29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13434 components: - type: Transform @@ -105385,7 +105420,7 @@ entities: pos: 28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13436 components: - type: Transform @@ -105393,7 +105428,7 @@ entities: pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13437 components: - type: Transform @@ -105401,7 +105436,7 @@ entities: pos: 25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13438 components: - type: Transform @@ -105409,7 +105444,7 @@ entities: pos: 24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13440 components: - type: Transform @@ -105417,7 +105452,7 @@ entities: pos: 22.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13442 components: - type: Transform @@ -105425,7 +105460,7 @@ entities: pos: 20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13443 components: - type: Transform @@ -105433,7 +105468,7 @@ entities: pos: 19.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13444 components: - type: Transform @@ -105441,7 +105476,7 @@ entities: pos: 18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13445 components: - type: Transform @@ -105449,7 +105484,7 @@ entities: pos: 17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13446 components: - type: Transform @@ -105457,7 +105492,7 @@ entities: pos: 16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13447 components: - type: Transform @@ -105465,7 +105500,7 @@ entities: pos: 15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13449 components: - type: Transform @@ -105473,7 +105508,7 @@ entities: pos: 13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13452 components: - type: Transform @@ -105481,7 +105516,7 @@ entities: pos: 10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13453 components: - type: Transform @@ -105489,7 +105524,7 @@ entities: pos: 9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13454 components: - type: Transform @@ -105497,7 +105532,7 @@ entities: pos: 8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13455 components: - type: Transform @@ -105505,7 +105540,7 @@ entities: pos: 7.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13456 components: - type: Transform @@ -105513,7 +105548,7 @@ entities: pos: 6.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13457 components: - type: Transform @@ -105521,7 +105556,7 @@ entities: pos: 5.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13458 components: - type: Transform @@ -105529,7 +105564,7 @@ entities: pos: 4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13460 components: - type: Transform @@ -105537,7 +105572,7 @@ entities: pos: 1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13461 components: - type: Transform @@ -105545,7 +105580,7 @@ entities: pos: 1.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13462 components: - type: Transform @@ -105553,7 +105588,7 @@ entities: pos: 1.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13463 components: - type: Transform @@ -105561,7 +105596,7 @@ entities: pos: 1.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13464 components: - type: Transform @@ -105569,7 +105604,7 @@ entities: pos: 1.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13465 components: - type: Transform @@ -105577,7 +105612,7 @@ entities: pos: 1.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13466 components: - type: Transform @@ -105585,7 +105620,7 @@ entities: pos: 1.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13467 components: - type: Transform @@ -105593,7 +105628,7 @@ entities: pos: 1.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13468 components: - type: Transform @@ -105601,7 +105636,7 @@ entities: pos: 1.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13469 components: - type: Transform @@ -105609,7 +105644,7 @@ entities: pos: 1.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13472 components: - type: Transform @@ -105617,7 +105652,7 @@ entities: pos: 1.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13473 components: - type: Transform @@ -105625,7 +105660,7 @@ entities: pos: 1.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13474 components: - type: Transform @@ -105633,7 +105668,7 @@ entities: pos: 1.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13475 components: - type: Transform @@ -105641,7 +105676,7 @@ entities: pos: 1.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13476 components: - type: Transform @@ -105649,7 +105684,7 @@ entities: pos: 1.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13477 components: - type: Transform @@ -105657,7 +105692,7 @@ entities: pos: 1.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13478 components: - type: Transform @@ -105665,7 +105700,7 @@ entities: pos: 1.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13480 components: - type: Transform @@ -105673,7 +105708,7 @@ entities: pos: 1.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13481 components: - type: Transform @@ -105681,7 +105716,7 @@ entities: pos: 1.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13484 components: - type: Transform @@ -105689,7 +105724,7 @@ entities: pos: 1.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13485 components: - type: Transform @@ -105697,7 +105732,7 @@ entities: pos: 1.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13486 components: - type: Transform @@ -105705,7 +105740,7 @@ entities: pos: 1.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13487 components: - type: Transform @@ -105713,7 +105748,7 @@ entities: pos: 1.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13488 components: - type: Transform @@ -105721,7 +105756,7 @@ entities: pos: 1.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13489 components: - type: Transform @@ -105729,7 +105764,7 @@ entities: pos: 1.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13490 components: - type: Transform @@ -105737,7 +105772,7 @@ entities: pos: 1.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13493 components: - type: Transform @@ -105745,7 +105780,7 @@ entities: pos: 2.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13496 components: - type: Transform @@ -105753,7 +105788,7 @@ entities: pos: 1.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13497 components: - type: Transform @@ -105761,7 +105796,7 @@ entities: pos: 1.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13498 components: - type: Transform @@ -105769,7 +105804,7 @@ entities: pos: 1.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13500 components: - type: Transform @@ -105777,7 +105812,7 @@ entities: pos: 1.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13501 components: - type: Transform @@ -105785,7 +105820,7 @@ entities: pos: 1.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13503 components: - type: Transform @@ -105793,7 +105828,7 @@ entities: pos: 1.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13504 components: - type: Transform @@ -105801,7 +105836,7 @@ entities: pos: 1.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13505 components: - type: Transform @@ -105809,7 +105844,7 @@ entities: pos: 1.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13506 components: - type: Transform @@ -105817,7 +105852,7 @@ entities: pos: 1.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13519 components: - type: Transform @@ -105825,7 +105860,7 @@ entities: pos: -0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13520 components: - type: Transform @@ -105833,7 +105868,7 @@ entities: pos: -0.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13523 components: - type: Transform @@ -105841,7 +105876,7 @@ entities: pos: -0.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13525 components: - type: Transform @@ -105849,7 +105884,7 @@ entities: pos: -0.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13526 components: - type: Transform @@ -105857,7 +105892,7 @@ entities: pos: -0.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13527 components: - type: Transform @@ -105865,7 +105900,7 @@ entities: pos: -0.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13528 components: - type: Transform @@ -105873,7 +105908,7 @@ entities: pos: -0.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13529 components: - type: Transform @@ -105881,7 +105916,7 @@ entities: pos: -0.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13530 components: - type: Transform @@ -105889,7 +105924,7 @@ entities: pos: -0.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13534 components: - type: Transform @@ -105897,7 +105932,7 @@ entities: pos: -0.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13535 components: - type: Transform @@ -105905,7 +105940,7 @@ entities: pos: -0.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13537 components: - type: Transform @@ -105913,7 +105948,7 @@ entities: pos: -0.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13538 components: - type: Transform @@ -105921,7 +105956,7 @@ entities: pos: -0.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13539 components: - type: Transform @@ -105929,7 +105964,7 @@ entities: pos: -0.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13540 components: - type: Transform @@ -105937,7 +105972,7 @@ entities: pos: -0.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13541 components: - type: Transform @@ -105945,7 +105980,7 @@ entities: pos: -0.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13542 components: - type: Transform @@ -105953,7 +105988,7 @@ entities: pos: -0.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13543 components: - type: Transform @@ -105961,7 +105996,7 @@ entities: pos: -0.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13547 components: - type: Transform @@ -105969,7 +106004,7 @@ entities: pos: -0.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13548 components: - type: Transform @@ -105977,7 +106012,7 @@ entities: pos: -0.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13549 components: - type: Transform @@ -105985,7 +106020,7 @@ entities: pos: -0.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13550 components: - type: Transform @@ -105993,7 +106028,7 @@ entities: pos: -0.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13551 components: - type: Transform @@ -106001,7 +106036,7 @@ entities: pos: -0.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13552 components: - type: Transform @@ -106009,7 +106044,7 @@ entities: pos: -0.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13553 components: - type: Transform @@ -106017,7 +106052,7 @@ entities: pos: -0.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13554 components: - type: Transform @@ -106025,7 +106060,7 @@ entities: pos: -27.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13561 components: - type: Transform @@ -106093,21 +106128,21 @@ entities: pos: -26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13574 components: - type: Transform pos: -26.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13575 components: - type: Transform pos: -26.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13578 components: - type: Transform @@ -106115,7 +106150,7 @@ entities: pos: -25.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13579 components: - type: Transform @@ -106123,7 +106158,7 @@ entities: pos: -27.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13580 components: - type: Transform @@ -106131,7 +106166,7 @@ entities: pos: -28.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13581 components: - type: Transform @@ -106139,7 +106174,7 @@ entities: pos: -21.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13582 components: - type: Transform @@ -106163,7 +106198,7 @@ entities: pos: -25.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13591 components: - type: Transform @@ -106171,14 +106206,14 @@ entities: pos: -21.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13592 components: - type: Transform pos: -17.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13594 components: - type: Transform @@ -106186,7 +106221,7 @@ entities: pos: -17.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13596 components: - type: Transform @@ -106194,7 +106229,7 @@ entities: pos: -28.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13603 components: - type: Transform @@ -106202,7 +106237,7 @@ entities: pos: -0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13604 components: - type: Transform @@ -106210,7 +106245,7 @@ entities: pos: -1.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13605 components: - type: Transform @@ -106218,7 +106253,7 @@ entities: pos: -2.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13606 components: - type: Transform @@ -106226,7 +106261,7 @@ entities: pos: -3.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13607 components: - type: Transform @@ -106234,7 +106269,7 @@ entities: pos: -4.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13608 components: - type: Transform @@ -106242,7 +106277,7 @@ entities: pos: -5.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13609 components: - type: Transform @@ -106250,7 +106285,7 @@ entities: pos: -6.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13610 components: - type: Transform @@ -106258,7 +106293,7 @@ entities: pos: -7.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13611 components: - type: Transform @@ -106266,7 +106301,7 @@ entities: pos: -8.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13612 components: - type: Transform @@ -106274,7 +106309,7 @@ entities: pos: -9.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13613 components: - type: Transform @@ -106282,7 +106317,7 @@ entities: pos: -10.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13619 components: - type: Transform @@ -106290,7 +106325,7 @@ entities: pos: -11.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13620 components: - type: Transform @@ -106298,7 +106333,7 @@ entities: pos: -9.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13621 components: - type: Transform @@ -106306,7 +106341,7 @@ entities: pos: -8.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13622 components: - type: Transform @@ -106314,7 +106349,7 @@ entities: pos: -7.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13623 components: - type: Transform @@ -106322,7 +106357,7 @@ entities: pos: -6.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13624 components: - type: Transform @@ -106330,7 +106365,7 @@ entities: pos: -5.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13625 components: - type: Transform @@ -106338,7 +106373,7 @@ entities: pos: -4.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13626 components: - type: Transform @@ -106346,7 +106381,7 @@ entities: pos: -3.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13627 components: - type: Transform @@ -106354,7 +106389,7 @@ entities: pos: -2.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13628 components: - type: Transform @@ -106362,7 +106397,7 @@ entities: pos: -1.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13631 components: - type: Transform @@ -106370,7 +106405,7 @@ entities: pos: -1.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13633 components: - type: Transform @@ -106378,7 +106413,7 @@ entities: pos: -3.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13634 components: - type: Transform @@ -106386,7 +106421,7 @@ entities: pos: -2.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13636 components: - type: Transform @@ -106394,7 +106429,7 @@ entities: pos: -0.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13637 components: - type: Transform @@ -106402,7 +106437,7 @@ entities: pos: 0.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13638 components: - type: Transform @@ -106410,7 +106445,7 @@ entities: pos: -11.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13639 components: - type: Transform @@ -106418,7 +106453,7 @@ entities: pos: -11.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13640 components: - type: Transform @@ -106426,7 +106461,7 @@ entities: pos: -11.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13642 components: - type: Transform @@ -106434,7 +106469,7 @@ entities: pos: -11.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13643 components: - type: Transform @@ -106442,7 +106477,7 @@ entities: pos: -11.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13644 components: - type: Transform @@ -106450,7 +106485,7 @@ entities: pos: -11.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13645 components: - type: Transform @@ -106458,7 +106493,7 @@ entities: pos: -11.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13646 components: - type: Transform @@ -106466,7 +106501,7 @@ entities: pos: -10.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13647 components: - type: Transform @@ -106474,7 +106509,7 @@ entities: pos: -10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13648 components: - type: Transform @@ -106482,7 +106517,7 @@ entities: pos: -10.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13649 components: - type: Transform @@ -106490,7 +106525,7 @@ entities: pos: -10.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13650 components: - type: Transform @@ -106498,7 +106533,7 @@ entities: pos: -10.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13651 components: - type: Transform @@ -106506,7 +106541,7 @@ entities: pos: -10.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13652 components: - type: Transform @@ -106514,7 +106549,7 @@ entities: pos: -10.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13654 components: - type: Transform @@ -106522,7 +106557,7 @@ entities: pos: -10.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13655 components: - type: Transform @@ -106530,7 +106565,7 @@ entities: pos: -10.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13658 components: - type: Transform @@ -106538,7 +106573,7 @@ entities: pos: -10.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13659 components: - type: Transform @@ -106546,14 +106581,14 @@ entities: pos: -10.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13661 components: - type: Transform pos: -11.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13665 components: - type: Transform @@ -106561,7 +106596,7 @@ entities: pos: -9.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13670 components: - type: Transform @@ -106569,7 +106604,7 @@ entities: pos: -7.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13671 components: - type: Transform @@ -106577,7 +106612,7 @@ entities: pos: -6.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13672 components: - type: Transform @@ -106585,7 +106620,7 @@ entities: pos: -5.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13673 components: - type: Transform @@ -106593,7 +106628,7 @@ entities: pos: -4.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13674 components: - type: Transform @@ -106601,7 +106636,7 @@ entities: pos: -3.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13675 components: - type: Transform @@ -106609,7 +106644,7 @@ entities: pos: -2.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13676 components: - type: Transform @@ -106617,7 +106652,7 @@ entities: pos: -1.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13677 components: - type: Transform @@ -106625,7 +106660,7 @@ entities: pos: -0.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13678 components: - type: Transform @@ -106633,7 +106668,7 @@ entities: pos: 0.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13679 components: - type: Transform @@ -106641,7 +106676,7 @@ entities: pos: -1.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13680 components: - type: Transform @@ -106649,7 +106684,7 @@ entities: pos: -2.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13681 components: - type: Transform @@ -106657,7 +106692,7 @@ entities: pos: -3.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13682 components: - type: Transform @@ -106665,7 +106700,7 @@ entities: pos: -4.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13683 components: - type: Transform @@ -106673,7 +106708,7 @@ entities: pos: -5.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13684 components: - type: Transform @@ -106681,7 +106716,7 @@ entities: pos: -6.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13685 components: - type: Transform @@ -106689,21 +106724,21 @@ entities: pos: -7.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13686 components: - type: Transform pos: -8.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13687 components: - type: Transform pos: -9.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13688 components: - type: Transform @@ -106711,7 +106746,7 @@ entities: pos: -19.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13689 components: - type: Transform @@ -106719,7 +106754,7 @@ entities: pos: -20.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13690 components: - type: Transform @@ -106727,7 +106762,7 @@ entities: pos: -19.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13691 components: - type: Transform @@ -106735,7 +106770,7 @@ entities: pos: -19.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13692 components: - type: Transform @@ -106743,7 +106778,7 @@ entities: pos: -20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13693 components: - type: Transform @@ -106751,7 +106786,7 @@ entities: pos: -20.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13694 components: - type: Transform @@ -106759,7 +106794,7 @@ entities: pos: -20.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13695 components: - type: Transform @@ -106767,7 +106802,7 @@ entities: pos: -20.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13696 components: - type: Transform @@ -106775,7 +106810,7 @@ entities: pos: -19.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13697 components: - type: Transform @@ -106783,7 +106818,7 @@ entities: pos: -19.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13698 components: - type: Transform @@ -106791,7 +106826,7 @@ entities: pos: -19.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13699 components: - type: Transform @@ -106799,7 +106834,7 @@ entities: pos: -19.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13700 components: - type: Transform @@ -106807,7 +106842,7 @@ entities: pos: -19.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13701 components: - type: Transform @@ -106815,7 +106850,7 @@ entities: pos: -19.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13702 components: - type: Transform @@ -106823,7 +106858,7 @@ entities: pos: -19.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13703 components: - type: Transform @@ -106831,7 +106866,7 @@ entities: pos: -19.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13704 components: - type: Transform @@ -106839,7 +106874,7 @@ entities: pos: -19.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13705 components: - type: Transform @@ -106847,77 +106882,77 @@ entities: pos: -19.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13711 components: - type: Transform pos: -20.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13712 components: - type: Transform pos: -20.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13713 components: - type: Transform pos: -20.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13714 components: - type: Transform pos: -20.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13715 components: - type: Transform pos: -20.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13716 components: - type: Transform pos: -20.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13717 components: - type: Transform pos: -20.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13718 components: - type: Transform pos: -20.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13719 components: - type: Transform pos: -20.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13720 components: - type: Transform pos: -20.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13726 components: - type: Transform @@ -106925,7 +106960,7 @@ entities: pos: -20.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13727 components: - type: Transform @@ -106933,42 +106968,42 @@ entities: pos: -19.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13728 components: - type: Transform pos: -19.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13729 components: - type: Transform pos: -19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13730 components: - type: Transform pos: -19.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13731 components: - type: Transform pos: -19.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13732 components: - type: Transform pos: -19.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13737 components: - type: Transform @@ -106976,28 +107011,28 @@ entities: pos: -20.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13739 components: - type: Transform pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13740 components: - type: Transform pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13741 components: - type: Transform pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13760 components: - type: Transform @@ -107005,7 +107040,7 @@ entities: pos: -7.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13761 components: - type: Transform @@ -107013,14 +107048,14 @@ entities: pos: -8.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13762 components: - type: Transform pos: -8.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13769 components: - type: Transform @@ -107028,7 +107063,7 @@ entities: pos: -5.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13770 components: - type: Transform @@ -107036,7 +107071,7 @@ entities: pos: -5.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13771 components: - type: Transform @@ -107044,7 +107079,7 @@ entities: pos: -4.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13778 components: - type: Transform @@ -107052,7 +107087,7 @@ entities: pos: -10.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13779 components: - type: Transform @@ -107060,7 +107095,7 @@ entities: pos: -2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13780 components: - type: Transform @@ -107068,7 +107103,7 @@ entities: pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13781 components: - type: Transform @@ -107076,7 +107111,7 @@ entities: pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13782 components: - type: Transform @@ -107084,7 +107119,7 @@ entities: pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13783 components: - type: Transform @@ -107092,7 +107127,7 @@ entities: pos: -1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13784 components: - type: Transform @@ -107100,7 +107135,7 @@ entities: pos: 2.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13785 components: - type: Transform @@ -107108,7 +107143,7 @@ entities: pos: 3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13786 components: - type: Transform @@ -107116,7 +107151,7 @@ entities: pos: 0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13787 components: - type: Transform @@ -107124,7 +107159,7 @@ entities: pos: -0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13788 components: - type: Transform @@ -107132,7 +107167,7 @@ entities: pos: -1.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13790 components: - type: Transform @@ -107140,7 +107175,7 @@ entities: pos: -3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13791 components: - type: Transform @@ -107148,7 +107183,7 @@ entities: pos: -4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13792 components: - type: Transform @@ -107156,7 +107191,7 @@ entities: pos: -5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13794 components: - type: Transform @@ -107164,7 +107199,7 @@ entities: pos: -7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13795 components: - type: Transform @@ -107172,7 +107207,7 @@ entities: pos: -8.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13796 components: - type: Transform @@ -107180,7 +107215,7 @@ entities: pos: -9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13797 components: - type: Transform @@ -107188,7 +107223,7 @@ entities: pos: -10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13799 components: - type: Transform @@ -107196,7 +107231,7 @@ entities: pos: -12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13800 components: - type: Transform @@ -107204,7 +107239,7 @@ entities: pos: -13.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13801 components: - type: Transform @@ -107212,7 +107247,7 @@ entities: pos: -14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13804 components: - type: Transform @@ -107220,7 +107255,7 @@ entities: pos: -17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13805 components: - type: Transform @@ -107228,7 +107263,7 @@ entities: pos: -18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13806 components: - type: Transform @@ -107236,7 +107271,7 @@ entities: pos: -19.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13807 components: - type: Transform @@ -107244,7 +107279,7 @@ entities: pos: -20.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13808 components: - type: Transform @@ -107252,7 +107287,7 @@ entities: pos: -21.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13809 components: - type: Transform @@ -107260,7 +107295,7 @@ entities: pos: -20.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13810 components: - type: Transform @@ -107268,7 +107303,7 @@ entities: pos: -19.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13811 components: - type: Transform @@ -107276,7 +107311,7 @@ entities: pos: -18.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13812 components: - type: Transform @@ -107284,7 +107319,7 @@ entities: pos: -17.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13813 components: - type: Transform @@ -107292,7 +107327,7 @@ entities: pos: -11.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13814 components: - type: Transform @@ -107300,7 +107335,7 @@ entities: pos: -15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13815 components: - type: Transform @@ -107308,7 +107343,7 @@ entities: pos: -6.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13816 components: - type: Transform @@ -107316,7 +107351,7 @@ entities: pos: -13.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13817 components: - type: Transform @@ -107324,7 +107359,7 @@ entities: pos: -12.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13818 components: - type: Transform @@ -107332,7 +107367,7 @@ entities: pos: -4.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13819 components: - type: Transform @@ -107340,7 +107375,7 @@ entities: pos: -10.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13820 components: - type: Transform @@ -107348,7 +107383,7 @@ entities: pos: -2.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13821 components: - type: Transform @@ -107356,7 +107391,7 @@ entities: pos: -8.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13822 components: - type: Transform @@ -107364,7 +107399,7 @@ entities: pos: -7.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13823 components: - type: Transform @@ -107372,7 +107407,7 @@ entities: pos: -2.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13824 components: - type: Transform @@ -107380,7 +107415,7 @@ entities: pos: -5.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13826 components: - type: Transform @@ -107388,7 +107423,7 @@ entities: pos: -3.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13827 components: - type: Transform @@ -107396,7 +107431,7 @@ entities: pos: -2.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13828 components: - type: Transform @@ -107404,7 +107439,7 @@ entities: pos: -1.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13829 components: - type: Transform @@ -107412,7 +107447,7 @@ entities: pos: -21.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13830 components: - type: Transform @@ -107420,7 +107455,7 @@ entities: pos: -21.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13831 components: - type: Transform @@ -107428,7 +107463,7 @@ entities: pos: -21.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13832 components: - type: Transform @@ -107436,7 +107471,7 @@ entities: pos: -21.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13834 components: - type: Transform @@ -107444,7 +107479,7 @@ entities: pos: -21.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13835 components: - type: Transform @@ -107452,7 +107487,7 @@ entities: pos: -21.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13836 components: - type: Transform @@ -107460,7 +107495,7 @@ entities: pos: -21.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13837 components: - type: Transform @@ -107468,7 +107503,7 @@ entities: pos: -21.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13839 components: - type: Transform @@ -107476,7 +107511,7 @@ entities: pos: -21.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13840 components: - type: Transform @@ -107484,7 +107519,7 @@ entities: pos: -21.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13841 components: - type: Transform @@ -107492,7 +107527,7 @@ entities: pos: -21.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13842 components: - type: Transform @@ -107500,7 +107535,7 @@ entities: pos: -21.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13843 components: - type: Transform @@ -107508,7 +107543,7 @@ entities: pos: -22.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13844 components: - type: Transform @@ -107516,7 +107551,7 @@ entities: pos: -22.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13845 components: - type: Transform @@ -107524,7 +107559,7 @@ entities: pos: -22.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13846 components: - type: Transform @@ -107532,7 +107567,7 @@ entities: pos: -22.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13847 components: - type: Transform @@ -107540,7 +107575,7 @@ entities: pos: -22.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13848 components: - type: Transform @@ -107548,7 +107583,7 @@ entities: pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13849 components: - type: Transform @@ -107556,7 +107591,7 @@ entities: pos: -22.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13851 components: - type: Transform @@ -107564,7 +107599,7 @@ entities: pos: -22.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13852 components: - type: Transform @@ -107572,7 +107607,7 @@ entities: pos: -22.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13853 components: - type: Transform @@ -107580,7 +107615,7 @@ entities: pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13856 components: - type: Transform @@ -107588,7 +107623,7 @@ entities: pos: -21.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13857 components: - type: Transform @@ -107596,7 +107631,7 @@ entities: pos: -20.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13858 components: - type: Transform @@ -107604,7 +107639,7 @@ entities: pos: -20.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13864 components: - type: Transform @@ -107612,7 +107647,7 @@ entities: pos: -20.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13865 components: - type: Transform @@ -107620,7 +107655,7 @@ entities: pos: -20.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13866 components: - type: Transform @@ -107628,14 +107663,14 @@ entities: pos: -21.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13877 components: - type: Transform pos: -22.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13878 components: - type: Transform @@ -107643,63 +107678,63 @@ entities: pos: -20.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13879 components: - type: Transform pos: -16.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13880 components: - type: Transform pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13881 components: - type: Transform pos: -14.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13882 components: - type: Transform pos: -11.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13883 components: - type: Transform pos: -9.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13884 components: - type: Transform pos: -6.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13885 components: - type: Transform pos: -11.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13886 components: - type: Transform pos: -6.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13889 components: - type: Transform @@ -107707,7 +107742,7 @@ entities: pos: 2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13890 components: - type: Transform @@ -107715,7 +107750,7 @@ entities: pos: 2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13891 components: - type: Transform @@ -107723,7 +107758,7 @@ entities: pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13892 components: - type: Transform @@ -107731,7 +107766,7 @@ entities: pos: 0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13893 components: - type: Transform @@ -107739,7 +107774,7 @@ entities: pos: 3.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13894 components: - type: Transform @@ -107747,7 +107782,7 @@ entities: pos: 4.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13895 components: - type: Transform @@ -107755,84 +107790,84 @@ entities: pos: 3.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13920 components: - type: Transform pos: 12.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13921 components: - type: Transform pos: 12.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13922 components: - type: Transform pos: 13.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13923 components: - type: Transform pos: 13.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13924 components: - type: Transform pos: 14.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13925 components: - type: Transform pos: 14.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13926 components: - type: Transform pos: 14.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13927 components: - type: Transform pos: 13.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13928 components: - type: Transform pos: 13.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13929 components: - type: Transform pos: 14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13930 components: - type: Transform pos: 14.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13935 components: - type: Transform @@ -107840,7 +107875,7 @@ entities: pos: 11.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13937 components: - type: Transform @@ -107848,7 +107883,7 @@ entities: pos: 12.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13940 components: - type: Transform @@ -107856,7 +107891,7 @@ entities: pos: 9.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13941 components: - type: Transform @@ -107864,7 +107899,7 @@ entities: pos: 8.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13943 components: - type: Transform @@ -107872,7 +107907,7 @@ entities: pos: 7.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13944 components: - type: Transform @@ -107880,7 +107915,7 @@ entities: pos: 6.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13945 components: - type: Transform @@ -107888,7 +107923,7 @@ entities: pos: 6.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13946 components: - type: Transform @@ -107896,7 +107931,7 @@ entities: pos: 5.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13949 components: - type: Transform @@ -107904,7 +107939,7 @@ entities: pos: -21.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13950 components: - type: Transform @@ -107912,7 +107947,7 @@ entities: pos: -19.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13951 components: - type: Transform @@ -107920,7 +107955,7 @@ entities: pos: -18.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13952 components: - type: Transform @@ -107928,7 +107963,7 @@ entities: pos: -17.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13953 components: - type: Transform @@ -107936,7 +107971,7 @@ entities: pos: -16.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13954 components: - type: Transform @@ -107944,7 +107979,7 @@ entities: pos: -20.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13955 components: - type: Transform @@ -107952,7 +107987,7 @@ entities: pos: -19.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13956 components: - type: Transform @@ -107960,7 +107995,7 @@ entities: pos: -18.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13957 components: - type: Transform @@ -107968,7 +108003,7 @@ entities: pos: -17.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13958 components: - type: Transform @@ -107976,7 +108011,7 @@ entities: pos: -16.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13959 components: - type: Transform @@ -107984,7 +108019,7 @@ entities: pos: -15.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13963 components: - type: Transform @@ -107992,7 +108027,7 @@ entities: pos: 0.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13964 components: - type: Transform @@ -108000,7 +108035,7 @@ entities: pos: 2.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13965 components: - type: Transform @@ -108008,7 +108043,7 @@ entities: pos: 3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13966 components: - type: Transform @@ -108016,7 +108051,7 @@ entities: pos: 0.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13967 components: - type: Transform @@ -108024,7 +108059,7 @@ entities: pos: 1.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13968 components: - type: Transform @@ -108032,7 +108067,7 @@ entities: pos: 2.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13970 components: - type: Transform @@ -108040,7 +108075,7 @@ entities: pos: -0.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13971 components: - type: Transform @@ -108048,7 +108083,7 @@ entities: pos: -1.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13972 components: - type: Transform @@ -108056,7 +108091,7 @@ entities: pos: -2.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13973 components: - type: Transform @@ -108064,7 +108099,7 @@ entities: pos: -1.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13974 components: - type: Transform @@ -108072,7 +108107,7 @@ entities: pos: -2.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13975 components: - type: Transform @@ -108080,7 +108115,7 @@ entities: pos: -3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13976 components: - type: Transform @@ -108088,7 +108123,7 @@ entities: pos: -3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13977 components: - type: Transform @@ -108096,7 +108131,7 @@ entities: pos: -4.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13978 components: - type: Transform @@ -108104,7 +108139,7 @@ entities: pos: -5.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13979 components: - type: Transform @@ -108112,7 +108147,7 @@ entities: pos: -6.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13983 components: - type: Transform @@ -108120,7 +108155,7 @@ entities: pos: 0.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13984 components: - type: Transform @@ -108128,7 +108163,7 @@ entities: pos: 1.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13985 components: - type: Transform @@ -108136,7 +108171,7 @@ entities: pos: 2.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13987 components: - type: Transform @@ -108144,7 +108179,7 @@ entities: pos: 4.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13988 components: - type: Transform @@ -108152,7 +108187,7 @@ entities: pos: 5.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13989 components: - type: Transform @@ -108160,7 +108195,7 @@ entities: pos: 4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13991 components: - type: Transform @@ -108168,7 +108203,7 @@ entities: pos: 6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13992 components: - type: Transform @@ -108176,7 +108211,7 @@ entities: pos: 6.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13993 components: - type: Transform @@ -108184,7 +108219,7 @@ entities: pos: 7.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13994 components: - type: Transform @@ -108192,7 +108227,7 @@ entities: pos: 8.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13995 components: - type: Transform @@ -108200,7 +108235,7 @@ entities: pos: 9.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13996 components: - type: Transform @@ -108208,7 +108243,7 @@ entities: pos: 10.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13997 components: - type: Transform @@ -108216,7 +108251,7 @@ entities: pos: 11.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13998 components: - type: Transform @@ -108224,7 +108259,7 @@ entities: pos: 11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13999 components: - type: Transform @@ -108232,7 +108267,7 @@ entities: pos: 10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14000 components: - type: Transform @@ -108240,7 +108275,7 @@ entities: pos: 9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14001 components: - type: Transform @@ -108248,7 +108283,7 @@ entities: pos: 8.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14002 components: - type: Transform @@ -108256,7 +108291,7 @@ entities: pos: 7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14004 components: - type: Transform @@ -108264,14 +108299,14 @@ entities: pos: 12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14007 components: - type: Transform pos: 3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14008 components: - type: Transform @@ -108279,7 +108314,7 @@ entities: pos: 14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14009 components: - type: Transform @@ -108287,7 +108322,7 @@ entities: pos: 13.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14010 components: - type: Transform @@ -108295,7 +108330,7 @@ entities: pos: 14.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14011 components: - type: Transform @@ -108303,7 +108338,7 @@ entities: pos: 15.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14012 components: - type: Transform @@ -108311,7 +108346,7 @@ entities: pos: 14.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14013 components: - type: Transform @@ -108319,7 +108354,7 @@ entities: pos: 14.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14014 components: - type: Transform @@ -108327,7 +108362,7 @@ entities: pos: 15.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14015 components: - type: Transform @@ -108335,7 +108370,7 @@ entities: pos: 16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14016 components: - type: Transform @@ -108343,7 +108378,7 @@ entities: pos: 17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14017 components: - type: Transform @@ -108351,7 +108386,7 @@ entities: pos: 18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14019 components: - type: Transform @@ -108359,7 +108394,7 @@ entities: pos: 19.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14021 components: - type: Transform @@ -108367,7 +108402,7 @@ entities: pos: 16.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14022 components: - type: Transform @@ -108375,7 +108410,7 @@ entities: pos: 17.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14023 components: - type: Transform @@ -108383,7 +108418,7 @@ entities: pos: 18.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14024 components: - type: Transform @@ -108391,7 +108426,7 @@ entities: pos: 19.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14025 components: - type: Transform @@ -108399,7 +108434,7 @@ entities: pos: 20.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14026 components: - type: Transform @@ -108407,7 +108442,7 @@ entities: pos: 21.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14032 components: - type: Transform @@ -108415,7 +108450,7 @@ entities: pos: 24.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14033 components: - type: Transform @@ -108423,7 +108458,7 @@ entities: pos: 24.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14035 components: - type: Transform @@ -108431,7 +108466,7 @@ entities: pos: 24.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14036 components: - type: Transform @@ -108439,7 +108474,7 @@ entities: pos: 24.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14037 components: - type: Transform @@ -108447,7 +108482,7 @@ entities: pos: 24.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14038 components: - type: Transform @@ -108455,7 +108490,7 @@ entities: pos: 22.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14039 components: - type: Transform @@ -108463,7 +108498,7 @@ entities: pos: 24.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14040 components: - type: Transform @@ -108471,7 +108506,7 @@ entities: pos: 20.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14046 components: - type: Transform @@ -108479,7 +108514,7 @@ entities: pos: 23.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14047 components: - type: Transform @@ -108487,7 +108522,7 @@ entities: pos: 23.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14048 components: - type: Transform @@ -108495,7 +108530,7 @@ entities: pos: 23.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14049 components: - type: Transform @@ -108503,7 +108538,7 @@ entities: pos: 23.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14050 components: - type: Transform @@ -108511,7 +108546,7 @@ entities: pos: 23.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14051 components: - type: Transform @@ -108519,7 +108554,7 @@ entities: pos: 23.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14053 components: - type: Transform @@ -108527,7 +108562,7 @@ entities: pos: 23.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14054 components: - type: Transform @@ -108535,7 +108570,7 @@ entities: pos: 22.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14058 components: - type: Transform @@ -108543,7 +108578,7 @@ entities: pos: 13.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14063 components: - type: Transform @@ -108551,63 +108586,63 @@ entities: pos: 24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14064 components: - type: Transform pos: 24.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14065 components: - type: Transform pos: 24.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14066 components: - type: Transform pos: 24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14067 components: - type: Transform pos: 24.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14069 components: - type: Transform pos: 23.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14070 components: - type: Transform pos: 23.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14071 components: - type: Transform pos: 23.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14072 components: - type: Transform pos: 23.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14077 components: - type: Transform @@ -108615,7 +108650,7 @@ entities: pos: 24.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14078 components: - type: Transform @@ -108623,7 +108658,7 @@ entities: pos: 25.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14079 components: - type: Transform @@ -108631,224 +108666,224 @@ entities: pos: 26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14082 components: - type: Transform pos: 19.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14083 components: - type: Transform pos: 19.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14084 components: - type: Transform pos: 21.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14085 components: - type: Transform pos: 21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14086 components: - type: Transform pos: 21.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14087 components: - type: Transform pos: 21.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14090 components: - type: Transform pos: 26.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14091 components: - type: Transform pos: 26.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14092 components: - type: Transform pos: 26.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14093 components: - type: Transform pos: 26.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14094 components: - type: Transform pos: 26.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14095 components: - type: Transform pos: 26.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14096 components: - type: Transform pos: 26.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14097 components: - type: Transform pos: 26.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14098 components: - type: Transform pos: 26.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14099 components: - type: Transform pos: 26.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14100 components: - type: Transform pos: 26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14101 components: - type: Transform pos: 27.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14102 components: - type: Transform pos: 27.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14103 components: - type: Transform pos: 27.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14104 components: - type: Transform pos: 27.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14105 components: - type: Transform pos: 27.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14106 components: - type: Transform pos: 27.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14107 components: - type: Transform pos: 27.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14108 components: - type: Transform pos: 27.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14109 components: - type: Transform pos: 27.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14110 components: - type: Transform pos: 27.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14111 components: - type: Transform pos: 27.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14112 components: - type: Transform pos: 27.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14113 components: - type: Transform pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14114 components: - type: Transform pos: 27.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14118 components: - type: Transform @@ -108856,7 +108891,7 @@ entities: pos: 12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14120 components: - type: Transform @@ -108864,7 +108899,7 @@ entities: pos: 12.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14121 components: - type: Transform @@ -108872,7 +108907,7 @@ entities: pos: 13.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14122 components: - type: Transform @@ -108880,7 +108915,7 @@ entities: pos: 12.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14123 components: - type: Transform @@ -108888,7 +108923,7 @@ entities: pos: 11.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14124 components: - type: Transform @@ -108896,7 +108931,7 @@ entities: pos: 10.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14125 components: - type: Transform @@ -108904,14 +108939,14 @@ entities: pos: 9.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14126 components: - type: Transform pos: 8.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14127 components: - type: Transform @@ -108919,7 +108954,7 @@ entities: pos: 10.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14129 components: - type: Transform @@ -108927,7 +108962,7 @@ entities: pos: 9.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14132 components: - type: Transform @@ -108935,126 +108970,126 @@ entities: pos: 11.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14133 components: - type: Transform pos: 32.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14134 components: - type: Transform pos: 30.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14135 components: - type: Transform pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14136 components: - type: Transform pos: 30.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14137 components: - type: Transform pos: 30.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14138 components: - type: Transform pos: 30.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14139 components: - type: Transform pos: 30.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14141 components: - type: Transform pos: 31.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14142 components: - type: Transform pos: 31.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14143 components: - type: Transform pos: 31.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14144 components: - type: Transform pos: 31.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14145 components: - type: Transform pos: 31.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14146 components: - type: Transform pos: 31.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14147 components: - type: Transform pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14148 components: - type: Transform pos: 31.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14149 components: - type: Transform pos: 31.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14150 components: - type: Transform pos: 32.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14155 components: - type: Transform @@ -109062,7 +109097,7 @@ entities: pos: 32.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14156 components: - type: Transform @@ -109070,7 +109105,7 @@ entities: pos: 33.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14157 components: - type: Transform @@ -109078,7 +109113,7 @@ entities: pos: 34.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14158 components: - type: Transform @@ -109086,7 +109121,7 @@ entities: pos: 35.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14159 components: - type: Transform @@ -109094,7 +109129,7 @@ entities: pos: 33.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14160 components: - type: Transform @@ -109102,7 +109137,7 @@ entities: pos: 34.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14161 components: - type: Transform @@ -109110,91 +109145,91 @@ entities: pos: 35.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14162 components: - type: Transform pos: 31.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14163 components: - type: Transform pos: 31.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14164 components: - type: Transform pos: 31.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14224 components: - type: Transform pos: 43.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14225 components: - type: Transform pos: 42.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14226 components: - type: Transform pos: 42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14227 components: - type: Transform pos: 42.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14228 components: - type: Transform pos: 42.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14229 components: - type: Transform pos: 42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14231 components: - type: Transform pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14232 components: - type: Transform pos: 42.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14234 components: - type: Transform pos: 43.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14240 components: - type: Transform @@ -109202,7 +109237,7 @@ entities: pos: 42.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14241 components: - type: Transform @@ -109210,7 +109245,7 @@ entities: pos: 49.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14242 components: - type: Transform @@ -109218,28 +109253,28 @@ entities: pos: 49.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14244 components: - type: Transform pos: 51.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14245 components: - type: Transform pos: 51.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14246 components: - type: Transform pos: 51.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14248 components: - type: Transform @@ -109247,7 +109282,7 @@ entities: pos: 49.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14249 components: - type: Transform @@ -109255,7 +109290,7 @@ entities: pos: 49.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14250 components: - type: Transform @@ -109263,7 +109298,7 @@ entities: pos: 51.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14251 components: - type: Transform @@ -109271,7 +109306,7 @@ entities: pos: 51.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14252 components: - type: Transform @@ -109279,7 +109314,7 @@ entities: pos: 51.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14257 components: - type: Transform @@ -109287,7 +109322,7 @@ entities: pos: 49.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14258 components: - type: Transform @@ -109295,7 +109330,7 @@ entities: pos: 49.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14259 components: - type: Transform @@ -109303,7 +109338,7 @@ entities: pos: 51.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14260 components: - type: Transform @@ -109311,7 +109346,7 @@ entities: pos: 51.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14261 components: - type: Transform @@ -109319,7 +109354,7 @@ entities: pos: 48.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14262 components: - type: Transform @@ -109327,77 +109362,77 @@ entities: pos: 52.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14263 components: - type: Transform pos: 47.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14264 components: - type: Transform pos: 47.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14265 components: - type: Transform pos: 47.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14267 components: - type: Transform pos: 47.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14268 components: - type: Transform pos: 47.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14269 components: - type: Transform pos: 53.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14270 components: - type: Transform pos: 53.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14271 components: - type: Transform pos: 53.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14272 components: - type: Transform pos: 53.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14274 components: - type: Transform pos: 53.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14280 components: - type: Transform @@ -109405,7 +109440,7 @@ entities: pos: 53.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14281 components: - type: Transform @@ -109413,7 +109448,7 @@ entities: pos: 53.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14282 components: - type: Transform @@ -109421,7 +109456,7 @@ entities: pos: 54.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14283 components: - type: Transform @@ -109429,7 +109464,7 @@ entities: pos: 54.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14284 components: - type: Transform @@ -109437,7 +109472,7 @@ entities: pos: 50.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14285 components: - type: Transform @@ -109445,7 +109480,7 @@ entities: pos: 50.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14286 components: - type: Transform @@ -109453,7 +109488,7 @@ entities: pos: 46.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14287 components: - type: Transform @@ -109461,7 +109496,7 @@ entities: pos: 46.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14290 components: - type: Transform @@ -109469,7 +109504,7 @@ entities: pos: 52.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14291 components: - type: Transform @@ -109477,7 +109512,7 @@ entities: pos: 51.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14292 components: - type: Transform @@ -109485,7 +109520,7 @@ entities: pos: 49.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14293 components: - type: Transform @@ -109493,7 +109528,7 @@ entities: pos: 48.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14294 components: - type: Transform @@ -109501,7 +109536,7 @@ entities: pos: 47.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14295 components: - type: Transform @@ -109509,7 +109544,7 @@ entities: pos: 45.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14296 components: - type: Transform @@ -109517,7 +109552,7 @@ entities: pos: 44.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14297 components: - type: Transform @@ -109525,7 +109560,7 @@ entities: pos: 43.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14300 components: - type: Transform @@ -109533,7 +109568,7 @@ entities: pos: 49.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14301 components: - type: Transform @@ -109541,7 +109576,7 @@ entities: pos: 50.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14302 components: - type: Transform @@ -109549,35 +109584,35 @@ entities: pos: 51.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14304 components: - type: Transform pos: 52.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14305 components: - type: Transform pos: 52.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14306 components: - type: Transform pos: 52.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14307 components: - type: Transform pos: 52.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14314 components: - type: Transform @@ -109585,7 +109620,7 @@ entities: pos: 46.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14317 components: - type: Transform @@ -109593,7 +109628,7 @@ entities: pos: 43.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14318 components: - type: Transform @@ -109601,7 +109636,7 @@ entities: pos: 42.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14319 components: - type: Transform @@ -109609,7 +109644,7 @@ entities: pos: 41.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14323 components: - type: Transform @@ -109617,7 +109652,7 @@ entities: pos: 44.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14324 components: - type: Transform @@ -109625,7 +109660,7 @@ entities: pos: 44.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14325 components: - type: Transform @@ -109633,7 +109668,7 @@ entities: pos: 44.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14326 components: - type: Transform @@ -109641,7 +109676,7 @@ entities: pos: 44.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14327 components: - type: Transform @@ -109649,7 +109684,7 @@ entities: pos: 48.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14328 components: - type: Transform @@ -109657,7 +109692,7 @@ entities: pos: 48.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14329 components: - type: Transform @@ -109665,7 +109700,7 @@ entities: pos: 48.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14330 components: - type: Transform @@ -109673,28 +109708,28 @@ entities: pos: 48.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14331 components: - type: Transform pos: 42.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14332 components: - type: Transform pos: 42.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14333 components: - type: Transform pos: 42.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14335 components: - type: Transform @@ -109702,7 +109737,7 @@ entities: pos: 42.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14336 components: - type: Transform @@ -109710,7 +109745,7 @@ entities: pos: 42.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14337 components: - type: Transform @@ -109718,7 +109753,7 @@ entities: pos: 42.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14339 components: - type: Transform @@ -109726,7 +109761,7 @@ entities: pos: 42.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14340 components: - type: Transform @@ -109734,7 +109769,7 @@ entities: pos: 42.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14341 components: - type: Transform @@ -109742,7 +109777,7 @@ entities: pos: 42.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14342 components: - type: Transform @@ -109750,7 +109785,7 @@ entities: pos: 42.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14343 components: - type: Transform @@ -109758,7 +109793,7 @@ entities: pos: 42.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14344 components: - type: Transform @@ -109766,35 +109801,35 @@ entities: pos: 42.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14346 components: - type: Transform pos: 40.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14347 components: - type: Transform pos: 40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14348 components: - type: Transform pos: 40.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14349 components: - type: Transform pos: 40.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14351 components: - type: Transform @@ -109802,7 +109837,7 @@ entities: pos: 40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14352 components: - type: Transform @@ -109810,7 +109845,7 @@ entities: pos: 40.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14353 components: - type: Transform @@ -109818,7 +109853,7 @@ entities: pos: 40.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14354 components: - type: Transform @@ -109826,7 +109861,7 @@ entities: pos: 40.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14355 components: - type: Transform @@ -109834,7 +109869,7 @@ entities: pos: 40.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14356 components: - type: Transform @@ -109842,28 +109877,28 @@ entities: pos: 40.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14358 components: - type: Transform pos: 40.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14359 components: - type: Transform pos: 40.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14360 components: - type: Transform pos: 40.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14363 components: - type: Transform @@ -109871,7 +109906,7 @@ entities: pos: 42.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14365 components: - type: Transform @@ -109879,7 +109914,7 @@ entities: pos: 39.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14366 components: - type: Transform @@ -109887,7 +109922,7 @@ entities: pos: 38.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14367 components: - type: Transform @@ -109895,7 +109930,7 @@ entities: pos: 41.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14368 components: - type: Transform @@ -109903,7 +109938,7 @@ entities: pos: 40.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14369 components: - type: Transform @@ -109911,7 +109946,7 @@ entities: pos: 39.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14370 components: - type: Transform @@ -109919,7 +109954,7 @@ entities: pos: 38.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14372 components: - type: Transform @@ -109927,7 +109962,7 @@ entities: pos: 24.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14375 components: - type: Transform @@ -109935,7 +109970,7 @@ entities: pos: 37.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14376 components: - type: Transform @@ -109943,7 +109978,7 @@ entities: pos: 36.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14377 components: - type: Transform @@ -109951,7 +109986,7 @@ entities: pos: 35.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14378 components: - type: Transform @@ -109959,7 +109994,7 @@ entities: pos: 34.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14381 components: - type: Transform @@ -109967,7 +110002,7 @@ entities: pos: 37.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14382 components: - type: Transform @@ -109975,49 +110010,49 @@ entities: pos: 36.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14385 components: - type: Transform pos: 42.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14386 components: - type: Transform pos: 42.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14387 components: - type: Transform pos: 42.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14388 components: - type: Transform pos: 42.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14389 components: - type: Transform pos: 44.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14390 components: - type: Transform pos: 44.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14393 components: - type: Transform @@ -110025,7 +110060,7 @@ entities: pos: 48.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14394 components: - type: Transform @@ -110033,7 +110068,7 @@ entities: pos: 49.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14395 components: - type: Transform @@ -110041,7 +110076,7 @@ entities: pos: 52.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14396 components: - type: Transform @@ -110049,14 +110084,14 @@ entities: pos: 51.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14401 components: - type: Transform pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14402 components: - type: Transform @@ -110064,7 +110099,7 @@ entities: pos: 29.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14403 components: - type: Transform @@ -110072,7 +110107,7 @@ entities: pos: 32.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14404 components: - type: Transform @@ -110080,7 +110115,7 @@ entities: pos: 31.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14405 components: - type: Transform @@ -110088,7 +110123,7 @@ entities: pos: 30.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14407 components: - type: Transform @@ -110096,7 +110131,7 @@ entities: pos: 34.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14408 components: - type: Transform @@ -110104,7 +110139,7 @@ entities: pos: 33.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14409 components: - type: Transform @@ -110112,7 +110147,7 @@ entities: pos: 31.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14410 components: - type: Transform @@ -110120,7 +110155,7 @@ entities: pos: 29.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14412 components: - type: Transform @@ -110128,7 +110163,7 @@ entities: pos: 30.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14413 components: - type: Transform @@ -110136,77 +110171,77 @@ entities: pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14414 components: - type: Transform pos: 27.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14415 components: - type: Transform pos: 27.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14416 components: - type: Transform pos: 27.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14417 components: - type: Transform pos: 27.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14418 components: - type: Transform pos: 27.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14419 components: - type: Transform pos: 28.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14420 components: - type: Transform pos: 28.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14421 components: - type: Transform pos: 28.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14422 components: - type: Transform pos: 28.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14423 components: - type: Transform pos: 28.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14424 components: - type: Transform @@ -110214,7 +110249,7 @@ entities: pos: 28.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14430 components: - type: Transform @@ -110222,7 +110257,7 @@ entities: pos: 26.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14431 components: - type: Transform @@ -110230,7 +110265,7 @@ entities: pos: 26.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14432 components: - type: Transform @@ -110238,7 +110273,7 @@ entities: pos: 26.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14433 components: - type: Transform @@ -110246,7 +110281,7 @@ entities: pos: 26.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14434 components: - type: Transform @@ -110254,7 +110289,7 @@ entities: pos: 26.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14435 components: - type: Transform @@ -110262,7 +110297,7 @@ entities: pos: 26.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14436 components: - type: Transform @@ -110270,7 +110305,7 @@ entities: pos: 26.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14437 components: - type: Transform @@ -110278,7 +110313,7 @@ entities: pos: 26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14438 components: - type: Transform @@ -110286,7 +110321,7 @@ entities: pos: 26.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14439 components: - type: Transform @@ -110294,7 +110329,7 @@ entities: pos: 26.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14440 components: - type: Transform @@ -110302,7 +110337,7 @@ entities: pos: 26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14441 components: - type: Transform @@ -110310,7 +110345,7 @@ entities: pos: 27.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14443 components: - type: Transform @@ -110318,7 +110353,7 @@ entities: pos: 27.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14444 components: - type: Transform @@ -110326,7 +110361,7 @@ entities: pos: 27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14445 components: - type: Transform @@ -110334,7 +110369,7 @@ entities: pos: 27.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14446 components: - type: Transform @@ -110342,7 +110377,7 @@ entities: pos: 27.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14447 components: - type: Transform @@ -110350,7 +110385,7 @@ entities: pos: 27.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14448 components: - type: Transform @@ -110358,7 +110393,7 @@ entities: pos: 27.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14449 components: - type: Transform @@ -110366,7 +110401,7 @@ entities: pos: 27.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14450 components: - type: Transform @@ -110374,7 +110409,7 @@ entities: pos: 27.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14451 components: - type: Transform @@ -110382,7 +110417,7 @@ entities: pos: 27.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14456 components: - type: Transform @@ -110390,7 +110425,7 @@ entities: pos: 42.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14457 components: - type: Transform @@ -110398,7 +110433,7 @@ entities: pos: 40.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14458 components: - type: Transform @@ -110406,7 +110441,7 @@ entities: pos: 40.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14459 components: - type: Transform @@ -110414,42 +110449,42 @@ entities: pos: 40.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14461 components: - type: Transform pos: 42.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14462 components: - type: Transform pos: 42.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14463 components: - type: Transform pos: 42.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14464 components: - type: Transform pos: 40.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14465 components: - type: Transform pos: 40.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14466 components: - type: Transform @@ -110457,7 +110492,7 @@ entities: pos: 41.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14467 components: - type: Transform @@ -110465,7 +110500,7 @@ entities: pos: 42.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14468 components: - type: Transform @@ -110473,7 +110508,7 @@ entities: pos: 43.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14469 components: - type: Transform @@ -110481,7 +110516,7 @@ entities: pos: 44.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14471 components: - type: Transform @@ -110489,7 +110524,7 @@ entities: pos: 43.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14472 components: - type: Transform @@ -110497,7 +110532,7 @@ entities: pos: 44.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14473 components: - type: Transform @@ -110505,14 +110540,14 @@ entities: pos: 45.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14475 components: - type: Transform pos: 45.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14476 components: - type: Transform @@ -110520,7 +110555,7 @@ entities: pos: 46.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14478 components: - type: Transform @@ -110528,7 +110563,7 @@ entities: pos: 46.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14480 components: - type: Transform @@ -110536,7 +110571,7 @@ entities: pos: 47.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14481 components: - type: Transform @@ -110544,7 +110579,7 @@ entities: pos: 48.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14482 components: - type: Transform @@ -110552,63 +110587,63 @@ entities: pos: 49.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14483 components: - type: Transform pos: 47.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14484 components: - type: Transform pos: 47.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14485 components: - type: Transform pos: 47.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14486 components: - type: Transform pos: 47.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14487 components: - type: Transform pos: 47.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14489 components: - type: Transform pos: 46.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14490 components: - type: Transform pos: 46.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14491 components: - type: Transform pos: 46.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14492 components: - type: Transform @@ -110616,7 +110651,7 @@ entities: pos: 48.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14493 components: - type: Transform @@ -110624,7 +110659,7 @@ entities: pos: 49.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14494 components: - type: Transform @@ -110632,7 +110667,7 @@ entities: pos: 50.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14495 components: - type: Transform @@ -110640,7 +110675,7 @@ entities: pos: 51.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14496 components: - type: Transform @@ -110648,7 +110683,7 @@ entities: pos: 52.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14497 components: - type: Transform @@ -110656,7 +110691,7 @@ entities: pos: 53.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14498 components: - type: Transform @@ -110664,7 +110699,7 @@ entities: pos: 54.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14499 components: - type: Transform @@ -110672,7 +110707,7 @@ entities: pos: 50.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14500 components: - type: Transform @@ -110680,7 +110715,7 @@ entities: pos: 51.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14501 components: - type: Transform @@ -110688,7 +110723,7 @@ entities: pos: 52.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14502 components: - type: Transform @@ -110696,7 +110731,7 @@ entities: pos: 53.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14503 components: - type: Transform @@ -110704,7 +110739,7 @@ entities: pos: 54.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14504 components: - type: Transform @@ -110712,7 +110747,7 @@ entities: pos: 47.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14505 components: - type: Transform @@ -110720,21 +110755,21 @@ entities: pos: 47.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14507 components: - type: Transform pos: 46.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14509 components: - type: Transform pos: 46.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14510 components: - type: Transform @@ -110742,7 +110777,7 @@ entities: pos: 47.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14519 components: - type: Transform @@ -110750,7 +110785,7 @@ entities: pos: 42.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14521 components: - type: Transform @@ -110758,7 +110793,7 @@ entities: pos: 41.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14522 components: - type: Transform @@ -110766,7 +110801,7 @@ entities: pos: 40.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14523 components: - type: Transform @@ -110774,7 +110809,7 @@ entities: pos: 39.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14524 components: - type: Transform @@ -110782,7 +110817,7 @@ entities: pos: 38.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14525 components: - type: Transform @@ -110790,7 +110825,7 @@ entities: pos: 39.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14526 components: - type: Transform @@ -110798,7 +110833,7 @@ entities: pos: 38.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14531 components: - type: Transform @@ -110806,7 +110841,7 @@ entities: pos: 46.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14534 components: - type: Transform @@ -110814,7 +110849,7 @@ entities: pos: 45.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14535 components: - type: Transform @@ -110822,7 +110857,7 @@ entities: pos: 44.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14536 components: - type: Transform @@ -110830,7 +110865,7 @@ entities: pos: 43.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14537 components: - type: Transform @@ -110838,7 +110873,7 @@ entities: pos: 42.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14538 components: - type: Transform @@ -110846,7 +110881,7 @@ entities: pos: 41.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14539 components: - type: Transform @@ -110854,7 +110889,7 @@ entities: pos: 40.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14540 components: - type: Transform @@ -110862,7 +110897,7 @@ entities: pos: 39.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14541 components: - type: Transform @@ -110870,7 +110905,7 @@ entities: pos: 38.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14542 components: - type: Transform @@ -110878,7 +110913,7 @@ entities: pos: 37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14544 components: - type: Transform @@ -110886,7 +110921,7 @@ entities: pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14545 components: - type: Transform @@ -110894,7 +110929,7 @@ entities: pos: 1.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14546 components: - type: Transform @@ -110902,7 +110937,7 @@ entities: pos: 2.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14547 components: - type: Transform @@ -110910,7 +110945,7 @@ entities: pos: 3.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14548 components: - type: Transform @@ -110918,7 +110953,7 @@ entities: pos: 4.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14549 components: - type: Transform @@ -110926,7 +110961,7 @@ entities: pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14550 components: - type: Transform @@ -110934,7 +110969,7 @@ entities: pos: 6.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14552 components: - type: Transform @@ -110942,7 +110977,7 @@ entities: pos: 8.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14553 components: - type: Transform @@ -110950,7 +110985,7 @@ entities: pos: 9.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14554 components: - type: Transform @@ -110958,7 +110993,7 @@ entities: pos: 10.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14555 components: - type: Transform @@ -110966,7 +111001,7 @@ entities: pos: 11.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14556 components: - type: Transform @@ -110974,7 +111009,7 @@ entities: pos: 12.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14557 components: - type: Transform @@ -110982,14 +111017,14 @@ entities: pos: 13.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14562 components: - type: Transform pos: 14.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14563 components: - type: Transform @@ -110997,7 +111032,7 @@ entities: pos: 16.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14564 components: - type: Transform @@ -111005,7 +111040,7 @@ entities: pos: 17.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14565 components: - type: Transform @@ -111013,7 +111048,7 @@ entities: pos: 18.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14566 components: - type: Transform @@ -111021,7 +111056,7 @@ entities: pos: 19.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14567 components: - type: Transform @@ -111029,7 +111064,7 @@ entities: pos: 20.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14568 components: - type: Transform @@ -111037,7 +111072,7 @@ entities: pos: 21.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14569 components: - type: Transform @@ -111045,7 +111080,7 @@ entities: pos: 22.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14570 components: - type: Transform @@ -111053,14 +111088,14 @@ entities: pos: 23.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14573 components: - type: Transform pos: 24.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14574 components: - type: Transform @@ -111068,7 +111103,7 @@ entities: pos: 25.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14575 components: - type: Transform @@ -111076,7 +111111,7 @@ entities: pos: 26.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14576 components: - type: Transform @@ -111084,7 +111119,7 @@ entities: pos: 27.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14577 components: - type: Transform @@ -111092,7 +111127,7 @@ entities: pos: 28.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14578 components: - type: Transform @@ -111100,7 +111135,7 @@ entities: pos: 29.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14579 components: - type: Transform @@ -111108,7 +111143,7 @@ entities: pos: 30.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14580 components: - type: Transform @@ -111116,7 +111151,7 @@ entities: pos: 31.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14581 components: - type: Transform @@ -111124,140 +111159,140 @@ entities: pos: 32.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14583 components: - type: Transform pos: 33.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14584 components: - type: Transform pos: 33.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14585 components: - type: Transform pos: 33.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14586 components: - type: Transform pos: 33.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14587 components: - type: Transform pos: 33.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14588 components: - type: Transform pos: 33.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14589 components: - type: Transform pos: 33.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14590 components: - type: Transform pos: 33.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14591 components: - type: Transform pos: 33.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14592 components: - type: Transform pos: 36.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14593 components: - type: Transform pos: 36.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14594 components: - type: Transform pos: 36.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14595 components: - type: Transform pos: 36.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14596 components: - type: Transform pos: 36.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14597 components: - type: Transform pos: 36.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14598 components: - type: Transform pos: 36.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14599 components: - type: Transform pos: 36.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14600 components: - type: Transform pos: 36.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14601 components: - type: Transform pos: 36.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14602 components: - type: Transform @@ -111265,7 +111300,7 @@ entities: pos: 35.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14603 components: - type: Transform @@ -111273,7 +111308,7 @@ entities: pos: 34.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14604 components: - type: Transform @@ -111281,7 +111316,7 @@ entities: pos: 33.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14605 components: - type: Transform @@ -111289,7 +111324,7 @@ entities: pos: 32.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14606 components: - type: Transform @@ -111297,7 +111332,7 @@ entities: pos: 31.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14607 components: - type: Transform @@ -111305,7 +111340,7 @@ entities: pos: 30.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14608 components: - type: Transform @@ -111313,7 +111348,7 @@ entities: pos: 29.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14609 components: - type: Transform @@ -111321,7 +111356,7 @@ entities: pos: 28.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14610 components: - type: Transform @@ -111329,7 +111364,7 @@ entities: pos: 27.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14611 components: - type: Transform @@ -111337,70 +111372,70 @@ entities: pos: 26.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14613 components: - type: Transform pos: 23.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14616 components: - type: Transform pos: 23.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14617 components: - type: Transform pos: 23.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14618 components: - type: Transform pos: 23.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14619 components: - type: Transform pos: 23.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14620 components: - type: Transform pos: 24.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14621 components: - type: Transform pos: 24.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14623 components: - type: Transform pos: 24.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14624 components: - type: Transform pos: 24.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14628 components: - type: Transform @@ -111408,7 +111443,7 @@ entities: pos: 24.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14633 components: - type: Transform @@ -111416,7 +111451,7 @@ entities: pos: 25.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14634 components: - type: Transform @@ -111424,7 +111459,7 @@ entities: pos: 26.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14635 components: - type: Transform @@ -111432,7 +111467,7 @@ entities: pos: 27.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14636 components: - type: Transform @@ -111440,7 +111475,7 @@ entities: pos: 28.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14637 components: - type: Transform @@ -111448,7 +111483,7 @@ entities: pos: 29.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14638 components: - type: Transform @@ -111456,7 +111491,7 @@ entities: pos: 28.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14639 components: - type: Transform @@ -111464,7 +111499,7 @@ entities: pos: 27.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14640 components: - type: Transform @@ -111472,7 +111507,7 @@ entities: pos: 26.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14641 components: - type: Transform @@ -111480,7 +111515,7 @@ entities: pos: 25.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14642 components: - type: Transform @@ -111488,7 +111523,7 @@ entities: pos: 24.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14647 components: - type: Transform @@ -111496,7 +111531,7 @@ entities: pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14648 components: - type: Transform @@ -111504,7 +111539,7 @@ entities: pos: 1.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14649 components: - type: Transform @@ -111512,7 +111547,7 @@ entities: pos: 2.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14650 components: - type: Transform @@ -111520,7 +111555,7 @@ entities: pos: 3.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14651 components: - type: Transform @@ -111528,7 +111563,7 @@ entities: pos: 4.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14652 components: - type: Transform @@ -111536,7 +111571,7 @@ entities: pos: 5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14653 components: - type: Transform @@ -111544,7 +111579,7 @@ entities: pos: 6.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14654 components: - type: Transform @@ -111552,7 +111587,7 @@ entities: pos: 7.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14655 components: - type: Transform @@ -111560,7 +111595,7 @@ entities: pos: 8.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14656 components: - type: Transform @@ -111568,7 +111603,7 @@ entities: pos: 9.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14657 components: - type: Transform @@ -111576,7 +111611,7 @@ entities: pos: 2.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14658 components: - type: Transform @@ -111584,7 +111619,7 @@ entities: pos: 3.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14659 components: - type: Transform @@ -111592,7 +111627,7 @@ entities: pos: 4.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14660 components: - type: Transform @@ -111600,7 +111635,7 @@ entities: pos: 5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14661 components: - type: Transform @@ -111608,7 +111643,7 @@ entities: pos: 6.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14662 components: - type: Transform @@ -111616,7 +111651,7 @@ entities: pos: 7.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14663 components: - type: Transform @@ -111624,7 +111659,7 @@ entities: pos: 8.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14664 components: - type: Transform @@ -111632,7 +111667,7 @@ entities: pos: 9.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14665 components: - type: Transform @@ -111640,7 +111675,7 @@ entities: pos: 10.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14668 components: - type: Transform @@ -111648,7 +111683,7 @@ entities: pos: 24.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14669 components: - type: Transform @@ -111656,7 +111691,7 @@ entities: pos: 23.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14670 components: - type: Transform @@ -111664,7 +111699,7 @@ entities: pos: 23.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14671 components: - type: Transform @@ -111672,7 +111707,7 @@ entities: pos: 23.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14672 components: - type: Transform @@ -111680,7 +111715,7 @@ entities: pos: 23.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14673 components: - type: Transform @@ -111688,7 +111723,7 @@ entities: pos: 23.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14676 components: - type: Transform @@ -111696,7 +111731,7 @@ entities: pos: -9.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14678 components: - type: Transform @@ -111704,7 +111739,7 @@ entities: pos: 30.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14679 components: - type: Transform @@ -111712,7 +111747,7 @@ entities: pos: 29.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14680 components: - type: Transform @@ -111720,7 +111755,7 @@ entities: pos: 28.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14681 components: - type: Transform @@ -111728,7 +111763,7 @@ entities: pos: 27.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14682 components: - type: Transform @@ -111736,7 +111771,7 @@ entities: pos: 26.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14684 components: - type: Transform @@ -111744,7 +111779,7 @@ entities: pos: 29.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14685 components: - type: Transform @@ -111752,7 +111787,7 @@ entities: pos: 28.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14686 components: - type: Transform @@ -111760,7 +111795,7 @@ entities: pos: 27.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14687 components: - type: Transform @@ -111768,84 +111803,84 @@ entities: pos: 26.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14691 components: - type: Transform pos: 30.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14692 components: - type: Transform pos: 30.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14693 components: - type: Transform pos: 30.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14694 components: - type: Transform pos: 31.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14695 components: - type: Transform pos: 31.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14698 components: - type: Transform pos: 31.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14699 components: - type: Transform pos: 31.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14700 components: - type: Transform pos: 31.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14701 components: - type: Transform pos: 31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14702 components: - type: Transform pos: 30.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14703 components: - type: Transform pos: 30.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14705 components: - type: Transform @@ -111853,7 +111888,7 @@ entities: pos: 29.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14706 components: - type: Transform @@ -111861,7 +111896,7 @@ entities: pos: 28.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14707 components: - type: Transform @@ -111869,7 +111904,7 @@ entities: pos: 31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14708 components: - type: Transform @@ -111877,7 +111912,7 @@ entities: pos: 32.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14709 components: - type: Transform @@ -111885,7 +111920,7 @@ entities: pos: 33.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14710 components: - type: Transform @@ -111893,7 +111928,7 @@ entities: pos: 32.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14711 components: - type: Transform @@ -111901,7 +111936,7 @@ entities: pos: 33.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14713 components: - type: Transform @@ -111909,7 +111944,7 @@ entities: pos: 31.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14714 components: - type: Transform @@ -111917,7 +111952,7 @@ entities: pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14715 components: - type: Transform @@ -111925,7 +111960,7 @@ entities: pos: 29.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14716 components: - type: Transform @@ -111933,28 +111968,28 @@ entities: pos: 28.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14717 components: - type: Transform pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14718 components: - type: Transform pos: 30.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14719 components: - type: Transform pos: 30.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14722 components: - type: Transform @@ -111962,7 +111997,7 @@ entities: pos: -42.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14723 components: - type: Transform @@ -111970,7 +112005,7 @@ entities: pos: 35.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14725 components: - type: Transform @@ -111978,7 +112013,7 @@ entities: pos: 34.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14727 components: - type: Transform @@ -111986,7 +112021,7 @@ entities: pos: 36.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14730 components: - type: Transform @@ -111994,7 +112029,7 @@ entities: pos: 27.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14731 components: - type: Transform @@ -112002,7 +112037,7 @@ entities: pos: 26.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14732 components: - type: Transform @@ -112010,7 +112045,7 @@ entities: pos: 25.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14733 components: - type: Transform @@ -112018,7 +112053,7 @@ entities: pos: 24.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14736 components: - type: Transform @@ -112026,7 +112061,7 @@ entities: pos: 24.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14737 components: - type: Transform @@ -112034,7 +112069,7 @@ entities: pos: 25.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14738 components: - type: Transform @@ -112042,7 +112077,7 @@ entities: pos: 26.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14739 components: - type: Transform @@ -112050,49 +112085,49 @@ entities: pos: 27.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14742 components: - type: Transform pos: 30.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14743 components: - type: Transform pos: 30.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14744 components: - type: Transform pos: 30.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14745 components: - type: Transform pos: 31.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14746 components: - type: Transform pos: 31.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14747 components: - type: Transform pos: 31.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14750 components: - type: Transform @@ -112100,7 +112135,7 @@ entities: pos: 36.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14751 components: - type: Transform @@ -112108,7 +112143,7 @@ entities: pos: 35.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14752 components: - type: Transform @@ -112116,7 +112151,7 @@ entities: pos: 36.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14753 components: - type: Transform @@ -112124,7 +112159,7 @@ entities: pos: 36.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14754 components: - type: Transform @@ -112132,42 +112167,42 @@ entities: pos: 35.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14757 components: - type: Transform pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14758 components: - type: Transform pos: 36.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14759 components: - type: Transform pos: 36.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14760 components: - type: Transform pos: 36.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14762 components: - type: Transform pos: 35.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14770 components: - type: Transform @@ -112175,7 +112210,7 @@ entities: pos: -42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14771 components: - type: Transform @@ -112183,7 +112218,7 @@ entities: pos: -42.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14773 components: - type: Transform @@ -112191,7 +112226,7 @@ entities: pos: -42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14774 components: - type: Transform @@ -112199,7 +112234,7 @@ entities: pos: -42.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14775 components: - type: Transform @@ -112207,7 +112242,7 @@ entities: pos: -42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14776 components: - type: Transform @@ -112215,7 +112250,7 @@ entities: pos: -42.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14777 components: - type: Transform @@ -112223,7 +112258,7 @@ entities: pos: -42.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14779 components: - type: Transform @@ -112231,7 +112266,7 @@ entities: pos: -42.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14783 components: - type: Transform @@ -112239,7 +112274,7 @@ entities: pos: -42.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14784 components: - type: Transform @@ -112247,7 +112282,7 @@ entities: pos: -42.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14786 components: - type: Transform @@ -112255,7 +112290,7 @@ entities: pos: -42.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14787 components: - type: Transform @@ -112263,7 +112298,7 @@ entities: pos: -42.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14788 components: - type: Transform @@ -112271,7 +112306,7 @@ entities: pos: -42.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14789 components: - type: Transform @@ -112279,7 +112314,7 @@ entities: pos: -42.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14791 components: - type: Transform @@ -112287,7 +112322,7 @@ entities: pos: -42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14792 components: - type: Transform @@ -112295,7 +112330,7 @@ entities: pos: -42.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14797 components: - type: Transform @@ -112303,7 +112338,7 @@ entities: pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14798 components: - type: Transform @@ -112311,7 +112346,7 @@ entities: pos: -42.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14799 components: - type: Transform @@ -112319,7 +112354,7 @@ entities: pos: -40.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14801 components: - type: Transform @@ -112327,7 +112362,7 @@ entities: pos: -40.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14802 components: - type: Transform @@ -112335,7 +112370,7 @@ entities: pos: -40.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14803 components: - type: Transform @@ -112343,7 +112378,7 @@ entities: pos: -40.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14807 components: - type: Transform @@ -112351,7 +112386,7 @@ entities: pos: -40.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14809 components: - type: Transform @@ -112359,7 +112394,7 @@ entities: pos: -40.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14810 components: - type: Transform @@ -112367,7 +112402,7 @@ entities: pos: -40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14812 components: - type: Transform @@ -112375,7 +112410,7 @@ entities: pos: -40.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14814 components: - type: Transform @@ -112383,7 +112418,7 @@ entities: pos: -40.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14815 components: - type: Transform @@ -112391,7 +112426,7 @@ entities: pos: -40.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14816 components: - type: Transform @@ -112399,7 +112434,7 @@ entities: pos: -40.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14819 components: - type: Transform @@ -112407,7 +112442,7 @@ entities: pos: -40.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14820 components: - type: Transform @@ -112415,7 +112450,7 @@ entities: pos: -40.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14821 components: - type: Transform @@ -112423,7 +112458,7 @@ entities: pos: -40.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14822 components: - type: Transform @@ -112431,7 +112466,7 @@ entities: pos: -40.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14823 components: - type: Transform @@ -112439,7 +112474,7 @@ entities: pos: -40.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14824 components: - type: Transform @@ -112447,7 +112482,7 @@ entities: pos: -40.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14825 components: - type: Transform @@ -112455,7 +112490,7 @@ entities: pos: -40.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14826 components: - type: Transform @@ -112463,7 +112498,7 @@ entities: pos: -40.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14831 components: - type: Transform @@ -112471,7 +112506,7 @@ entities: pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14832 components: - type: Transform @@ -112479,7 +112514,7 @@ entities: pos: -1.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14833 components: - type: Transform @@ -112487,7 +112522,7 @@ entities: pos: 0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14835 components: - type: Transform @@ -112495,7 +112530,7 @@ entities: pos: -2.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14836 components: - type: Transform @@ -112503,7 +112538,7 @@ entities: pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14837 components: - type: Transform @@ -112511,7 +112546,7 @@ entities: pos: -1.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14838 components: - type: Transform @@ -112519,7 +112554,7 @@ entities: pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14839 components: - type: Transform @@ -112527,7 +112562,7 @@ entities: pos: 2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14840 components: - type: Transform @@ -112535,7 +112570,7 @@ entities: pos: 3.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14841 components: - type: Transform @@ -112543,7 +112578,7 @@ entities: pos: 4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14842 components: - type: Transform @@ -112551,7 +112586,7 @@ entities: pos: 5.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14843 components: - type: Transform @@ -112559,7 +112594,7 @@ entities: pos: 6.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14844 components: - type: Transform @@ -112567,7 +112602,7 @@ entities: pos: 2.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14845 components: - type: Transform @@ -112575,7 +112610,7 @@ entities: pos: 3.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14846 components: - type: Transform @@ -112583,7 +112618,7 @@ entities: pos: 4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14847 components: - type: Transform @@ -112591,7 +112626,7 @@ entities: pos: 5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14851 components: - type: Transform @@ -112599,7 +112634,7 @@ entities: pos: 7.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14852 components: - type: Transform @@ -112607,7 +112642,7 @@ entities: pos: 8.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14853 components: - type: Transform @@ -112615,7 +112650,7 @@ entities: pos: 9.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14854 components: - type: Transform @@ -112623,7 +112658,7 @@ entities: pos: 10.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14855 components: - type: Transform @@ -112631,7 +112666,7 @@ entities: pos: 11.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14856 components: - type: Transform @@ -112639,7 +112674,7 @@ entities: pos: 12.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14857 components: - type: Transform @@ -112647,7 +112682,7 @@ entities: pos: 13.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14858 components: - type: Transform @@ -112655,7 +112690,7 @@ entities: pos: 14.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14859 components: - type: Transform @@ -112663,7 +112698,7 @@ entities: pos: 15.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14861 components: - type: Transform @@ -112671,7 +112706,7 @@ entities: pos: 8.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14862 components: - type: Transform @@ -112679,7 +112714,7 @@ entities: pos: 9.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14863 components: - type: Transform @@ -112687,7 +112722,7 @@ entities: pos: 10.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14864 components: - type: Transform @@ -112695,7 +112730,7 @@ entities: pos: 11.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14865 components: - type: Transform @@ -112703,7 +112738,7 @@ entities: pos: 12.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14866 components: - type: Transform @@ -112711,7 +112746,7 @@ entities: pos: 13.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14870 components: - type: Transform @@ -112719,7 +112754,7 @@ entities: pos: 17.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14871 components: - type: Transform @@ -112727,7 +112762,7 @@ entities: pos: 18.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14872 components: - type: Transform @@ -112735,7 +112770,7 @@ entities: pos: 19.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14873 components: - type: Transform @@ -112743,7 +112778,7 @@ entities: pos: 20.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14875 components: - type: Transform @@ -112751,7 +112786,7 @@ entities: pos: 21.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14876 components: - type: Transform @@ -112759,7 +112794,7 @@ entities: pos: 21.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14877 components: - type: Transform @@ -112767,7 +112802,7 @@ entities: pos: 15.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14878 components: - type: Transform @@ -112775,7 +112810,7 @@ entities: pos: 16.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14879 components: - type: Transform @@ -112783,7 +112818,7 @@ entities: pos: 17.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14880 components: - type: Transform @@ -112791,7 +112826,7 @@ entities: pos: 18.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14882 components: - type: Transform @@ -112799,7 +112834,7 @@ entities: pos: 19.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14883 components: - type: Transform @@ -112807,7 +112842,7 @@ entities: pos: 14.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14884 components: - type: Transform @@ -112815,7 +112850,7 @@ entities: pos: 14.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14885 components: - type: Transform @@ -112823,7 +112858,7 @@ entities: pos: 16.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14886 components: - type: Transform @@ -112831,7 +112866,7 @@ entities: pos: 16.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14887 components: - type: Transform @@ -112839,7 +112874,7 @@ entities: pos: 16.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14888 components: - type: Transform @@ -112847,7 +112882,7 @@ entities: pos: 16.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14889 components: - type: Transform @@ -112855,7 +112890,7 @@ entities: pos: 16.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14892 components: - type: Transform @@ -112863,7 +112898,7 @@ entities: pos: 13.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14893 components: - type: Transform @@ -112871,7 +112906,7 @@ entities: pos: 12.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14894 components: - type: Transform @@ -112879,7 +112914,7 @@ entities: pos: 11.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14895 components: - type: Transform @@ -112887,7 +112922,7 @@ entities: pos: 10.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14896 components: - type: Transform @@ -112895,7 +112930,7 @@ entities: pos: 9.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14897 components: - type: Transform @@ -112903,7 +112938,7 @@ entities: pos: 8.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14898 components: - type: Transform @@ -112911,7 +112946,7 @@ entities: pos: 7.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14899 components: - type: Transform @@ -112919,7 +112954,7 @@ entities: pos: 6.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14902 components: - type: Transform @@ -112927,7 +112962,7 @@ entities: pos: 10.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14903 components: - type: Transform @@ -112935,7 +112970,7 @@ entities: pos: 11.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14904 components: - type: Transform @@ -112943,7 +112978,7 @@ entities: pos: 12.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14905 components: - type: Transform @@ -112951,7 +112986,7 @@ entities: pos: 13.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14906 components: - type: Transform @@ -112959,7 +112994,7 @@ entities: pos: 14.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14907 components: - type: Transform @@ -112967,112 +113002,112 @@ entities: pos: 15.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14908 components: - type: Transform pos: 14.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14909 components: - type: Transform pos: 14.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14910 components: - type: Transform pos: 14.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14911 components: - type: Transform pos: 14.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14912 components: - type: Transform pos: 14.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14913 components: - type: Transform pos: 14.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14914 components: - type: Transform pos: 14.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14915 components: - type: Transform pos: 16.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14916 components: - type: Transform pos: 16.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14917 components: - type: Transform pos: 16.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14918 components: - type: Transform pos: 16.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14919 components: - type: Transform pos: 16.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14920 components: - type: Transform pos: 5.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14921 components: - type: Transform pos: 5.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14931 components: - type: Transform pos: 16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14932 components: - type: Transform @@ -113080,7 +113115,7 @@ entities: pos: 15.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14933 components: - type: Transform @@ -113088,7 +113123,7 @@ entities: pos: 16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14934 components: - type: Transform @@ -113096,7 +113131,7 @@ entities: pos: 17.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14935 components: - type: Transform @@ -113104,7 +113139,7 @@ entities: pos: 18.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14936 components: - type: Transform @@ -113112,7 +113147,7 @@ entities: pos: 17.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14937 components: - type: Transform @@ -113120,7 +113155,7 @@ entities: pos: 18.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14940 components: - type: Transform @@ -113128,7 +113163,7 @@ entities: pos: -39.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14941 components: - type: Transform @@ -113136,7 +113171,7 @@ entities: pos: -41.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14942 components: - type: Transform @@ -113144,7 +113179,7 @@ entities: pos: -40.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14943 components: - type: Transform @@ -113152,7 +113187,7 @@ entities: pos: -39.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14944 components: - type: Transform @@ -113160,7 +113195,7 @@ entities: pos: -43.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14945 components: - type: Transform @@ -113168,7 +113203,7 @@ entities: pos: -44.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14946 components: - type: Transform @@ -113176,7 +113211,7 @@ entities: pos: -45.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14947 components: - type: Transform @@ -113184,7 +113219,7 @@ entities: pos: -41.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14948 components: - type: Transform @@ -113192,7 +113227,7 @@ entities: pos: -42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14949 components: - type: Transform @@ -113200,7 +113235,7 @@ entities: pos: -43.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14950 components: - type: Transform @@ -113208,7 +113243,7 @@ entities: pos: -44.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14951 components: - type: Transform @@ -113216,7 +113251,7 @@ entities: pos: -45.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14956 components: - type: Transform @@ -113224,7 +113259,7 @@ entities: pos: -41.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14957 components: - type: Transform @@ -113232,7 +113267,7 @@ entities: pos: -40.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14958 components: - type: Transform @@ -113240,7 +113275,7 @@ entities: pos: -39.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14959 components: - type: Transform @@ -113248,7 +113283,7 @@ entities: pos: -39.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14962 components: - type: Transform @@ -113256,7 +113291,7 @@ entities: pos: -41.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14963 components: - type: Transform @@ -113264,7 +113299,7 @@ entities: pos: -40.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14964 components: - type: Transform @@ -113272,7 +113307,7 @@ entities: pos: -39.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14966 components: - type: Transform @@ -113280,7 +113315,7 @@ entities: pos: -39.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14967 components: - type: Transform @@ -113288,7 +113323,7 @@ entities: pos: -38.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14970 components: - type: Transform @@ -113296,7 +113331,7 @@ entities: pos: -39.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14971 components: - type: Transform @@ -113304,7 +113339,7 @@ entities: pos: -41.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14972 components: - type: Transform @@ -113312,7 +113347,7 @@ entities: pos: -40.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14973 components: - type: Transform @@ -113320,7 +113355,7 @@ entities: pos: -39.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14977 components: - type: Transform @@ -113328,7 +113363,7 @@ entities: pos: -37.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14978 components: - type: Transform @@ -113336,7 +113371,7 @@ entities: pos: -38.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14979 components: - type: Transform @@ -113344,7 +113379,7 @@ entities: pos: -39.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14980 components: - type: Transform @@ -113352,7 +113387,7 @@ entities: pos: -41.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14981 components: - type: Transform @@ -113360,7 +113395,7 @@ entities: pos: -40.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14982 components: - type: Transform @@ -113368,7 +113403,7 @@ entities: pos: -39.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14983 components: - type: Transform @@ -113376,7 +113411,7 @@ entities: pos: -38.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14987 components: - type: Transform @@ -113384,7 +113419,7 @@ entities: pos: -37.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14988 components: - type: Transform @@ -113392,7 +113427,7 @@ entities: pos: -37.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14991 components: - type: Transform @@ -113400,7 +113435,7 @@ entities: pos: -36.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14992 components: - type: Transform @@ -113408,7 +113443,7 @@ entities: pos: -43.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14993 components: - type: Transform @@ -113416,7 +113451,7 @@ entities: pos: -44.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15001 components: - type: Transform @@ -113424,7 +113459,7 @@ entities: pos: -41.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15002 components: - type: Transform @@ -113432,7 +113467,7 @@ entities: pos: -42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15003 components: - type: Transform @@ -113440,7 +113475,7 @@ entities: pos: -43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15005 components: - type: Transform @@ -113448,7 +113483,7 @@ entities: pos: -45.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15006 components: - type: Transform @@ -113456,7 +113491,7 @@ entities: pos: -46.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15007 components: - type: Transform @@ -113464,7 +113499,7 @@ entities: pos: -47.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15008 components: - type: Transform @@ -113472,7 +113507,7 @@ entities: pos: -48.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15010 components: - type: Transform @@ -113480,7 +113515,7 @@ entities: pos: -50.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15011 components: - type: Transform @@ -113488,7 +113523,7 @@ entities: pos: -51.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15012 components: - type: Transform @@ -113496,7 +113531,7 @@ entities: pos: -52.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15013 components: - type: Transform @@ -113504,77 +113539,77 @@ entities: pos: -53.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15016 components: - type: Transform pos: -52.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15017 components: - type: Transform pos: -52.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15018 components: - type: Transform pos: -52.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15019 components: - type: Transform pos: -52.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15021 components: - type: Transform pos: -54.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15022 components: - type: Transform pos: -54.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15023 components: - type: Transform pos: -54.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15024 components: - type: Transform pos: -54.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15025 components: - type: Transform pos: -54.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15027 components: - type: Transform pos: -54.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15051 components: - type: Transform @@ -113582,7 +113617,7 @@ entities: pos: -52.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15052 components: - type: Transform @@ -113590,7 +113625,7 @@ entities: pos: -52.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15053 components: - type: Transform @@ -113598,7 +113633,7 @@ entities: pos: -52.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15054 components: - type: Transform @@ -113606,7 +113641,7 @@ entities: pos: -52.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15056 components: - type: Transform @@ -113614,7 +113649,7 @@ entities: pos: -52.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15061 components: - type: Transform @@ -113622,7 +113657,7 @@ entities: pos: -54.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15063 components: - type: Transform @@ -113630,7 +113665,7 @@ entities: pos: -54.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15064 components: - type: Transform @@ -113638,7 +113673,7 @@ entities: pos: -54.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15065 components: - type: Transform @@ -113646,7 +113681,7 @@ entities: pos: -54.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15066 components: - type: Transform @@ -113654,7 +113689,7 @@ entities: pos: -54.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15067 components: - type: Transform @@ -113662,7 +113697,7 @@ entities: pos: -54.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15068 components: - type: Transform @@ -113670,7 +113705,7 @@ entities: pos: -54.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15069 components: - type: Transform @@ -113678,154 +113713,154 @@ entities: pos: -54.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15084 components: - type: Transform pos: -53.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15085 components: - type: Transform pos: -53.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15086 components: - type: Transform pos: -53.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15087 components: - type: Transform pos: -53.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15088 components: - type: Transform pos: -53.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15089 components: - type: Transform pos: -53.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15090 components: - type: Transform pos: -53.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15091 components: - type: Transform pos: -53.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15092 components: - type: Transform pos: -53.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15093 components: - type: Transform pos: -53.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15094 components: - type: Transform pos: -53.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15095 components: - type: Transform pos: -55.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15096 components: - type: Transform pos: -55.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15097 components: - type: Transform pos: -55.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15098 components: - type: Transform pos: -55.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15099 components: - type: Transform pos: -55.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15100 components: - type: Transform pos: -55.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15101 components: - type: Transform pos: -55.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15102 components: - type: Transform pos: -55.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15103 components: - type: Transform pos: -55.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15104 components: - type: Transform pos: -55.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15111 components: - type: Transform @@ -113833,7 +113868,7 @@ entities: pos: -53.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15112 components: - type: Transform @@ -113841,7 +113876,7 @@ entities: pos: -52.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15113 components: - type: Transform @@ -113849,7 +113884,7 @@ entities: pos: -51.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15114 components: - type: Transform @@ -113857,7 +113892,7 @@ entities: pos: -50.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15115 components: - type: Transform @@ -113865,7 +113900,7 @@ entities: pos: -51.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15116 components: - type: Transform @@ -113873,14 +113908,14 @@ entities: pos: -50.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15119 components: - type: Transform pos: -48.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15120 components: - type: Transform @@ -113888,7 +113923,7 @@ entities: pos: -49.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15122 components: - type: Transform @@ -113896,7 +113931,7 @@ entities: pos: -39.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15123 components: - type: Transform @@ -113904,7 +113939,7 @@ entities: pos: -38.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15124 components: - type: Transform @@ -113912,7 +113947,7 @@ entities: pos: -38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15125 components: - type: Transform @@ -113920,7 +113955,7 @@ entities: pos: -38.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15130 components: - type: Transform @@ -113928,7 +113963,7 @@ entities: pos: -29.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15131 components: - type: Transform @@ -113936,7 +113971,7 @@ entities: pos: -29.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15132 components: - type: Transform @@ -113944,7 +113979,7 @@ entities: pos: -29.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15133 components: - type: Transform @@ -113952,7 +113987,7 @@ entities: pos: -29.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15134 components: - type: Transform @@ -113960,7 +113995,7 @@ entities: pos: -29.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15135 components: - type: Transform @@ -113968,7 +114003,7 @@ entities: pos: -31.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15136 components: - type: Transform @@ -113976,7 +114011,7 @@ entities: pos: -31.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15137 components: - type: Transform @@ -113984,7 +114019,7 @@ entities: pos: -31.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15138 components: - type: Transform @@ -113992,7 +114027,7 @@ entities: pos: -31.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15139 components: - type: Transform @@ -114000,7 +114035,7 @@ entities: pos: -31.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15140 components: - type: Transform @@ -114008,7 +114043,7 @@ entities: pos: -31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15141 components: - type: Transform @@ -114016,7 +114051,7 @@ entities: pos: -31.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15142 components: - type: Transform @@ -114024,7 +114059,7 @@ entities: pos: -32.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15143 components: - type: Transform @@ -114032,7 +114067,7 @@ entities: pos: -32.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15144 components: - type: Transform @@ -114040,7 +114075,7 @@ entities: pos: -29.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15145 components: - type: Transform @@ -114048,7 +114083,7 @@ entities: pos: -29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15146 components: - type: Transform @@ -114056,7 +114091,7 @@ entities: pos: -29.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15147 components: - type: Transform @@ -114064,7 +114099,7 @@ entities: pos: -29.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15152 components: - type: Transform @@ -114072,7 +114107,7 @@ entities: pos: -43.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15153 components: - type: Transform @@ -114080,7 +114115,7 @@ entities: pos: -41.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15154 components: - type: Transform @@ -114088,7 +114123,7 @@ entities: pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15155 components: - type: Transform @@ -114096,7 +114131,7 @@ entities: pos: -43.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15158 components: - type: Transform @@ -114104,7 +114139,7 @@ entities: pos: -43.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15159 components: - type: Transform @@ -114112,7 +114147,7 @@ entities: pos: -44.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15160 components: - type: Transform @@ -114120,7 +114155,7 @@ entities: pos: -45.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15161 components: - type: Transform @@ -114128,7 +114163,7 @@ entities: pos: -41.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15162 components: - type: Transform @@ -114136,7 +114171,7 @@ entities: pos: -42.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15163 components: - type: Transform @@ -114144,7 +114179,7 @@ entities: pos: -43.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15164 components: - type: Transform @@ -114152,7 +114187,7 @@ entities: pos: -44.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15165 components: - type: Transform @@ -114160,63 +114195,63 @@ entities: pos: -45.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15169 components: - type: Transform pos: -37.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15170 components: - type: Transform pos: -37.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15171 components: - type: Transform pos: -37.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15172 components: - type: Transform pos: -38.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15173 components: - type: Transform pos: -38.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15174 components: - type: Transform pos: -38.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15175 components: - type: Transform pos: -38.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15176 components: - type: Transform pos: -38.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15179 components: - type: Transform @@ -114224,7 +114259,7 @@ entities: pos: -36.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15180 components: - type: Transform @@ -114232,7 +114267,7 @@ entities: pos: -35.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15181 components: - type: Transform @@ -114240,7 +114275,7 @@ entities: pos: -34.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15182 components: - type: Transform @@ -114248,7 +114283,7 @@ entities: pos: -33.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15183 components: - type: Transform @@ -114256,7 +114291,7 @@ entities: pos: -32.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15184 components: - type: Transform @@ -114264,7 +114299,7 @@ entities: pos: -37.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15185 components: - type: Transform @@ -114272,7 +114307,7 @@ entities: pos: -36.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15186 components: - type: Transform @@ -114280,7 +114315,7 @@ entities: pos: -35.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15187 components: - type: Transform @@ -114288,7 +114323,7 @@ entities: pos: -34.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15188 components: - type: Transform @@ -114296,7 +114331,7 @@ entities: pos: -33.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15189 components: - type: Transform @@ -114304,7 +114339,7 @@ entities: pos: -32.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15192 components: - type: Transform @@ -114312,7 +114347,7 @@ entities: pos: -37.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15193 components: - type: Transform @@ -114320,7 +114355,7 @@ entities: pos: -37.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15194 components: - type: Transform @@ -114328,7 +114363,7 @@ entities: pos: -37.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15195 components: - type: Transform @@ -114336,7 +114371,7 @@ entities: pos: -37.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15196 components: - type: Transform @@ -114344,7 +114379,7 @@ entities: pos: -37.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15197 components: - type: Transform @@ -114352,49 +114387,49 @@ entities: pos: -37.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15199 components: - type: Transform pos: -38.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15200 components: - type: Transform pos: -38.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15201 components: - type: Transform pos: -38.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15202 components: - type: Transform pos: -38.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15203 components: - type: Transform pos: -38.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15204 components: - type: Transform pos: -38.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15208 components: - type: Transform @@ -114402,7 +114437,7 @@ entities: pos: -37.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15209 components: - type: Transform @@ -114410,7 +114445,7 @@ entities: pos: -36.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15210 components: - type: Transform @@ -114418,7 +114453,7 @@ entities: pos: -35.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15211 components: - type: Transform @@ -114426,7 +114461,7 @@ entities: pos: -34.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15212 components: - type: Transform @@ -114434,7 +114469,7 @@ entities: pos: -33.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15213 components: - type: Transform @@ -114442,7 +114477,7 @@ entities: pos: -32.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15214 components: - type: Transform @@ -114450,7 +114485,7 @@ entities: pos: -31.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15215 components: - type: Transform @@ -114458,7 +114493,7 @@ entities: pos: -36.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15216 components: - type: Transform @@ -114466,7 +114501,7 @@ entities: pos: -35.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15217 components: - type: Transform @@ -114474,7 +114509,7 @@ entities: pos: -34.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15218 components: - type: Transform @@ -114482,7 +114517,7 @@ entities: pos: -33.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15219 components: - type: Transform @@ -114490,7 +114525,7 @@ entities: pos: -32.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15220 components: - type: Transform @@ -114498,21 +114533,21 @@ entities: pos: -31.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15221 components: - type: Transform pos: -37.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15222 components: - type: Transform pos: -37.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15223 components: - type: Transform @@ -114520,7 +114555,7 @@ entities: pos: -38.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15224 components: - type: Transform @@ -114528,7 +114563,7 @@ entities: pos: -39.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15225 components: - type: Transform @@ -114536,7 +114571,7 @@ entities: pos: -40.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15226 components: - type: Transform @@ -114544,7 +114579,7 @@ entities: pos: -41.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15227 components: - type: Transform @@ -114552,7 +114587,7 @@ entities: pos: -39.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15228 components: - type: Transform @@ -114560,7 +114595,7 @@ entities: pos: -40.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15232 components: - type: Transform @@ -114568,7 +114603,7 @@ entities: pos: -42.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15234 components: - type: Transform @@ -114576,7 +114611,7 @@ entities: pos: -42.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15235 components: - type: Transform @@ -114584,7 +114619,7 @@ entities: pos: -42.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15236 components: - type: Transform @@ -114592,7 +114627,7 @@ entities: pos: -42.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15238 components: - type: Transform @@ -114600,7 +114635,7 @@ entities: pos: -41.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15240 components: - type: Transform @@ -114608,7 +114643,7 @@ entities: pos: -41.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15241 components: - type: Transform @@ -114616,7 +114651,7 @@ entities: pos: -41.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15244 components: - type: Transform @@ -114624,70 +114659,70 @@ entities: pos: -41.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15248 components: - type: Transform pos: -41.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15251 components: - type: Transform pos: -37.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15253 components: - type: Transform pos: -37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15254 components: - type: Transform pos: -37.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15255 components: - type: Transform pos: -38.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15256 components: - type: Transform pos: -38.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15257 components: - type: Transform pos: -38.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15258 components: - type: Transform pos: -38.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15259 components: - type: Transform pos: -38.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15262 components: - type: Transform @@ -114695,7 +114730,7 @@ entities: pos: -38.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15263 components: - type: Transform @@ -114703,7 +114738,7 @@ entities: pos: -39.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15264 components: - type: Transform @@ -114711,7 +114746,7 @@ entities: pos: -40.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15265 components: - type: Transform @@ -114719,7 +114754,7 @@ entities: pos: -39.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15268 components: - type: Transform @@ -114727,7 +114762,7 @@ entities: pos: -36.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15271 components: - type: Transform @@ -114735,7 +114770,7 @@ entities: pos: -37.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15272 components: - type: Transform @@ -114743,7 +114778,7 @@ entities: pos: -36.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15273 components: - type: Transform @@ -114751,7 +114786,7 @@ entities: pos: -35.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15274 components: - type: Transform @@ -114759,7 +114794,7 @@ entities: pos: -33.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15275 components: - type: Transform @@ -114767,7 +114802,7 @@ entities: pos: -32.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15276 components: - type: Transform @@ -114775,7 +114810,7 @@ entities: pos: -31.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15277 components: - type: Transform @@ -114783,7 +114818,7 @@ entities: pos: -34.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15278 components: - type: Transform @@ -114791,7 +114826,7 @@ entities: pos: -33.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15279 components: - type: Transform @@ -114799,7 +114834,7 @@ entities: pos: -32.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15280 components: - type: Transform @@ -114807,35 +114842,35 @@ entities: pos: -31.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15281 components: - type: Transform pos: -34.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15282 components: - type: Transform pos: -34.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15283 components: - type: Transform pos: -34.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15284 components: - type: Transform pos: -35.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15294 components: - type: Transform @@ -114843,7 +114878,7 @@ entities: pos: -40.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15295 components: - type: Transform @@ -114851,7 +114886,7 @@ entities: pos: -41.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15296 components: - type: Transform @@ -114859,7 +114894,7 @@ entities: pos: -42.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15297 components: - type: Transform @@ -114867,7 +114902,7 @@ entities: pos: -43.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15298 components: - type: Transform @@ -114875,7 +114910,7 @@ entities: pos: -44.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15299 components: - type: Transform @@ -114883,7 +114918,7 @@ entities: pos: -43.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15300 components: - type: Transform @@ -114891,7 +114926,7 @@ entities: pos: -44.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15301 components: - type: Transform @@ -114899,7 +114934,7 @@ entities: pos: -45.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15302 components: - type: Transform @@ -114907,7 +114942,7 @@ entities: pos: -46.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15305 components: - type: Transform @@ -114915,7 +114950,7 @@ entities: pos: -46.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15306 components: - type: Transform @@ -114923,7 +114958,7 @@ entities: pos: -47.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15307 components: - type: Transform @@ -114931,7 +114966,7 @@ entities: pos: -48.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15308 components: - type: Transform @@ -114939,7 +114974,7 @@ entities: pos: -49.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15309 components: - type: Transform @@ -114947,7 +114982,7 @@ entities: pos: -50.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15310 components: - type: Transform @@ -114955,7 +114990,7 @@ entities: pos: -48.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15311 components: - type: Transform @@ -114963,7 +114998,7 @@ entities: pos: -49.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15312 components: - type: Transform @@ -114971,7 +115006,7 @@ entities: pos: -50.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15313 components: - type: Transform @@ -114979,7 +115014,7 @@ entities: pos: -47.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15314 components: - type: Transform @@ -114987,7 +115022,7 @@ entities: pos: -47.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15315 components: - type: Transform @@ -114995,7 +115030,7 @@ entities: pos: -47.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15316 components: - type: Transform @@ -115003,7 +115038,7 @@ entities: pos: -45.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15317 components: - type: Transform @@ -115011,7 +115046,7 @@ entities: pos: -45.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15322 components: - type: Transform @@ -115019,7 +115054,7 @@ entities: pos: -4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15323 components: - type: Transform @@ -115027,7 +115062,7 @@ entities: pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15324 components: - type: Transform @@ -115035,7 +115070,7 @@ entities: pos: -2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15327 components: - type: Transform @@ -115043,7 +115078,7 @@ entities: pos: -3.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15328 components: - type: Transform @@ -115051,7 +115086,7 @@ entities: pos: -3.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15329 components: - type: Transform @@ -115059,7 +115094,7 @@ entities: pos: -4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15330 components: - type: Transform @@ -115067,7 +115102,7 @@ entities: pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15332 components: - type: Transform @@ -115075,7 +115110,7 @@ entities: pos: -7.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15333 components: - type: Transform @@ -115083,7 +115118,7 @@ entities: pos: -8.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15334 components: - type: Transform @@ -115091,7 +115126,7 @@ entities: pos: -9.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15335 components: - type: Transform @@ -115099,7 +115134,7 @@ entities: pos: -10.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15336 components: - type: Transform @@ -115107,7 +115142,7 @@ entities: pos: -11.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15339 components: - type: Transform @@ -115115,7 +115150,7 @@ entities: pos: -6.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15340 components: - type: Transform @@ -115123,7 +115158,7 @@ entities: pos: -7.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15341 components: - type: Transform @@ -115131,7 +115166,7 @@ entities: pos: -7.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15342 components: - type: Transform @@ -115139,7 +115174,7 @@ entities: pos: -7.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15343 components: - type: Transform @@ -115147,7 +115182,7 @@ entities: pos: -7.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15344 components: - type: Transform @@ -115155,7 +115190,7 @@ entities: pos: -7.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15347 components: - type: Transform @@ -115163,7 +115198,7 @@ entities: pos: -6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15348 components: - type: Transform @@ -115171,49 +115206,49 @@ entities: pos: -5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15349 components: - type: Transform pos: -6.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15350 components: - type: Transform pos: -6.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15352 components: - type: Transform pos: -6.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15353 components: - type: Transform pos: -6.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15354 components: - type: Transform pos: -6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15355 components: - type: Transform pos: -6.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15358 components: - type: Transform @@ -115221,7 +115256,7 @@ entities: pos: -5.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15359 components: - type: Transform @@ -115229,7 +115264,7 @@ entities: pos: -7.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15360 components: - type: Transform @@ -115237,7 +115272,7 @@ entities: pos: -8.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15361 components: - type: Transform @@ -115245,7 +115280,7 @@ entities: pos: -9.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15362 components: - type: Transform @@ -115253,7 +115288,7 @@ entities: pos: -10.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15365 components: - type: Transform @@ -115261,7 +115296,7 @@ entities: pos: -8.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15366 components: - type: Transform @@ -115269,7 +115304,7 @@ entities: pos: -9.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15367 components: - type: Transform @@ -115277,7 +115312,7 @@ entities: pos: -10.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15368 components: - type: Transform @@ -115285,7 +115320,7 @@ entities: pos: -11.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15369 components: - type: Transform @@ -115293,7 +115328,7 @@ entities: pos: -13.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15370 components: - type: Transform @@ -115301,7 +115336,7 @@ entities: pos: -14.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15371 components: - type: Transform @@ -115309,7 +115344,7 @@ entities: pos: -15.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15372 components: - type: Transform @@ -115317,7 +115352,7 @@ entities: pos: -17.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15373 components: - type: Transform @@ -115325,7 +115360,7 @@ entities: pos: -12.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15374 components: - type: Transform @@ -115333,7 +115368,7 @@ entities: pos: -13.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15375 components: - type: Transform @@ -115341,7 +115376,7 @@ entities: pos: -14.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15376 components: - type: Transform @@ -115349,7 +115384,7 @@ entities: pos: -15.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15377 components: - type: Transform @@ -115357,7 +115392,7 @@ entities: pos: -16.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15378 components: - type: Transform @@ -115365,7 +115400,7 @@ entities: pos: -18.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15379 components: - type: Transform @@ -115373,7 +115408,7 @@ entities: pos: -19.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15380 components: - type: Transform @@ -115381,7 +115416,7 @@ entities: pos: -18.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15382 components: - type: Transform @@ -115389,7 +115424,7 @@ entities: pos: -11.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15383 components: - type: Transform @@ -115397,63 +115432,63 @@ entities: pos: -11.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15388 components: - type: Transform pos: -19.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15389 components: - type: Transform pos: -19.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15390 components: - type: Transform pos: -19.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15392 components: - type: Transform pos: -19.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15393 components: - type: Transform pos: -19.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15394 components: - type: Transform pos: -21.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15395 components: - type: Transform pos: -21.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15396 components: - type: Transform pos: -21.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15398 components: - type: Transform @@ -115461,7 +115496,7 @@ entities: pos: -18.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15399 components: - type: Transform @@ -115469,7 +115504,7 @@ entities: pos: -17.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15400 components: - type: Transform @@ -115477,14 +115512,14 @@ entities: pos: -16.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15405 components: - type: Transform pos: -21.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15406 components: - type: Transform @@ -115492,7 +115527,7 @@ entities: pos: -22.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15407 components: - type: Transform @@ -115500,7 +115535,7 @@ entities: pos: -23.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15408 components: - type: Transform @@ -115508,7 +115543,7 @@ entities: pos: -20.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15409 components: - type: Transform @@ -115516,7 +115551,7 @@ entities: pos: -21.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15410 components: - type: Transform @@ -115524,7 +115559,7 @@ entities: pos: -22.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15411 components: - type: Transform @@ -115532,7 +115567,7 @@ entities: pos: -23.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15412 components: - type: Transform @@ -115540,7 +115575,7 @@ entities: pos: -24.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15413 components: - type: Transform @@ -115548,7 +115583,7 @@ entities: pos: -24.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15425 components: - type: Transform @@ -115556,7 +115591,7 @@ entities: pos: 39.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15426 components: - type: Transform @@ -115564,7 +115599,7 @@ entities: pos: 38.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15428 components: - type: Transform @@ -115572,7 +115607,7 @@ entities: pos: 36.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15429 components: - type: Transform @@ -115580,7 +115615,7 @@ entities: pos: 35.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15430 components: - type: Transform @@ -115588,7 +115623,7 @@ entities: pos: 41.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15431 components: - type: Transform @@ -115596,7 +115631,7 @@ entities: pos: 40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15432 components: - type: Transform @@ -115604,7 +115639,7 @@ entities: pos: 39.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15434 components: - type: Transform @@ -115612,7 +115647,7 @@ entities: pos: 37.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15435 components: - type: Transform @@ -115620,14 +115655,14 @@ entities: pos: 36.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15442 components: - type: Transform pos: 33.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15447 components: - type: Transform @@ -115635,63 +115670,63 @@ entities: pos: 40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15448 components: - type: Transform pos: 39.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15449 components: - type: Transform pos: 39.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15450 components: - type: Transform pos: 39.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15451 components: - type: Transform pos: 39.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15452 components: - type: Transform pos: 40.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15453 components: - type: Transform pos: 40.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15454 components: - type: Transform pos: 40.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15457 components: - type: Transform pos: 39.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15460 components: - type: Transform @@ -115699,7 +115734,7 @@ entities: pos: 40.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15462 components: - type: Transform @@ -115707,7 +115742,7 @@ entities: pos: 39.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15463 components: - type: Transform @@ -115715,7 +115750,7 @@ entities: pos: 38.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15464 components: - type: Transform @@ -115723,7 +115758,7 @@ entities: pos: 37.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15465 components: - type: Transform @@ -115731,7 +115766,7 @@ entities: pos: 36.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15466 components: - type: Transform @@ -115739,7 +115774,7 @@ entities: pos: 34.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15467 components: - type: Transform @@ -115747,7 +115782,7 @@ entities: pos: 33.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15468 components: - type: Transform @@ -115755,42 +115790,42 @@ entities: pos: 32.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15471 components: - type: Transform pos: 31.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15472 components: - type: Transform pos: 31.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15473 components: - type: Transform pos: 31.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15474 components: - type: Transform pos: 35.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15475 components: - type: Transform pos: 35.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15478 components: - type: Transform @@ -115798,7 +115833,7 @@ entities: pos: 38.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15479 components: - type: Transform @@ -115806,7 +115841,7 @@ entities: pos: 37.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15480 components: - type: Transform @@ -115814,7 +115849,7 @@ entities: pos: 36.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15481 components: - type: Transform @@ -115822,7 +115857,7 @@ entities: pos: 35.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15482 components: - type: Transform @@ -115830,28 +115865,28 @@ entities: pos: 33.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15485 components: - type: Transform pos: 34.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15486 components: - type: Transform pos: 34.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15487 components: - type: Transform pos: 34.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15489 components: - type: Transform @@ -115859,7 +115894,7 @@ entities: pos: 32.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15490 components: - type: Transform @@ -115867,7 +115902,7 @@ entities: pos: 32.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15491 components: - type: Transform @@ -115875,7 +115910,7 @@ entities: pos: 32.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15513 components: - type: Transform @@ -115883,7 +115918,7 @@ entities: pos: 55.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15514 components: - type: Transform @@ -115891,7 +115926,7 @@ entities: pos: 56.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15566 components: - type: Transform @@ -115899,7 +115934,7 @@ entities: pos: 56.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15592 components: - type: Transform @@ -115907,7 +115942,7 @@ entities: pos: 53.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15593 components: - type: Transform @@ -115915,7 +115950,7 @@ entities: pos: 54.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15596 components: - type: Transform @@ -115923,7 +115958,7 @@ entities: pos: 53.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15598 components: - type: Transform @@ -115931,7 +115966,7 @@ entities: pos: 55.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15599 components: - type: Transform @@ -115939,7 +115974,7 @@ entities: pos: 56.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15604 components: - type: Transform @@ -115947,7 +115982,7 @@ entities: pos: 56.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15605 components: - type: Transform @@ -115955,7 +115990,7 @@ entities: pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15606 components: - type: Transform @@ -115963,7 +115998,7 @@ entities: pos: 55.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15607 components: - type: Transform @@ -115971,7 +116006,7 @@ entities: pos: 55.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15608 components: - type: Transform @@ -115979,7 +116014,7 @@ entities: pos: 55.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15609 components: - type: Transform @@ -115987,7 +116022,7 @@ entities: pos: 55.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15610 components: - type: Transform @@ -115995,7 +116030,7 @@ entities: pos: 55.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15613 components: - type: Transform @@ -116003,7 +116038,7 @@ entities: pos: 57.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15614 components: - type: Transform @@ -116011,7 +116046,7 @@ entities: pos: 56.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15621 components: - type: Transform @@ -116019,7 +116054,7 @@ entities: pos: -1.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15622 components: - type: Transform @@ -116027,7 +116062,7 @@ entities: pos: -2.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15623 components: - type: Transform @@ -116035,7 +116070,7 @@ entities: pos: -3.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15624 components: - type: Transform @@ -116043,7 +116078,7 @@ entities: pos: -4.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15625 components: - type: Transform @@ -116051,7 +116086,7 @@ entities: pos: -5.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15626 components: - type: Transform @@ -116059,7 +116094,7 @@ entities: pos: -6.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15627 components: - type: Transform @@ -116067,7 +116102,7 @@ entities: pos: -7.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15628 components: - type: Transform @@ -116075,7 +116110,7 @@ entities: pos: -4.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15629 components: - type: Transform @@ -116083,7 +116118,7 @@ entities: pos: -3.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15630 components: - type: Transform @@ -116091,7 +116126,7 @@ entities: pos: -2.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15631 components: - type: Transform @@ -116099,7 +116134,7 @@ entities: pos: -1.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15632 components: - type: Transform @@ -116107,7 +116142,7 @@ entities: pos: -0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15633 components: - type: Transform @@ -116115,63 +116150,63 @@ entities: pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15634 components: - type: Transform pos: -5.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15635 components: - type: Transform pos: -5.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15636 components: - type: Transform pos: -5.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15637 components: - type: Transform pos: -5.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15638 components: - type: Transform pos: -8.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15639 components: - type: Transform pos: -8.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15640 components: - type: Transform pos: -8.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15641 components: - type: Transform pos: -8.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15642 components: - type: Transform @@ -116179,7 +116214,7 @@ entities: pos: -6.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15643 components: - type: Transform @@ -116187,7 +116222,7 @@ entities: pos: -7.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15644 components: - type: Transform @@ -116195,7 +116230,7 @@ entities: pos: -8.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15645 components: - type: Transform @@ -116203,7 +116238,7 @@ entities: pos: -9.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15646 components: - type: Transform @@ -116211,7 +116246,7 @@ entities: pos: -10.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15647 components: - type: Transform @@ -116219,7 +116254,7 @@ entities: pos: -11.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15648 components: - type: Transform @@ -116227,7 +116262,7 @@ entities: pos: -9.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15649 components: - type: Transform @@ -116235,7 +116270,7 @@ entities: pos: -10.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15650 components: - type: Transform @@ -116243,7 +116278,7 @@ entities: pos: -11.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15655 components: - type: Transform @@ -116251,7 +116286,7 @@ entities: pos: -12.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15657 components: - type: Transform @@ -116259,7 +116294,7 @@ entities: pos: -13.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15658 components: - type: Transform @@ -116267,7 +116302,7 @@ entities: pos: -18.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15659 components: - type: Transform @@ -116275,7 +116310,7 @@ entities: pos: -16.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15660 components: - type: Transform @@ -116283,7 +116318,7 @@ entities: pos: -19.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15661 components: - type: Transform @@ -116291,14 +116326,14 @@ entities: pos: -14.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15662 components: - type: Transform pos: -13.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15664 components: - type: Transform @@ -116306,7 +116341,7 @@ entities: pos: -13.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15665 components: - type: Transform @@ -116314,7 +116349,7 @@ entities: pos: -18.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15667 components: - type: Transform @@ -116330,7 +116365,7 @@ entities: pos: -12.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15669 components: - type: Transform @@ -116338,7 +116373,7 @@ entities: pos: -15.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15670 components: - type: Transform @@ -116346,7 +116381,7 @@ entities: pos: -16.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15671 components: - type: Transform @@ -116354,7 +116389,7 @@ entities: pos: -17.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15672 components: - type: Transform @@ -116362,7 +116397,7 @@ entities: pos: -18.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15675 components: - type: Transform @@ -116377,42 +116412,42 @@ entities: pos: -19.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15682 components: - type: Transform pos: -19.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15683 components: - type: Transform pos: -19.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15684 components: - type: Transform pos: -21.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15685 components: - type: Transform pos: -21.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15686 components: - type: Transform pos: -21.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15689 components: - type: Transform @@ -116420,7 +116455,7 @@ entities: pos: -20.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15690 components: - type: Transform @@ -116428,7 +116463,7 @@ entities: pos: -21.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15691 components: - type: Transform @@ -116436,7 +116471,7 @@ entities: pos: -22.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15692 components: - type: Transform @@ -116444,7 +116479,7 @@ entities: pos: -23.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15695 components: - type: Transform @@ -116452,7 +116487,7 @@ entities: pos: -22.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15696 components: - type: Transform @@ -116460,7 +116495,7 @@ entities: pos: -23.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15697 components: - type: Transform @@ -116468,7 +116503,7 @@ entities: pos: -24.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15698 components: - type: Transform @@ -116476,7 +116511,7 @@ entities: pos: -25.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15699 components: - type: Transform @@ -116484,7 +116519,7 @@ entities: pos: -25.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15700 components: - type: Transform @@ -116492,7 +116527,7 @@ entities: pos: -24.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15701 components: - type: Transform @@ -116500,7 +116535,7 @@ entities: pos: -24.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15702 components: - type: Transform @@ -116508,7 +116543,7 @@ entities: pos: -24.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15703 components: - type: Transform @@ -116516,7 +116551,7 @@ entities: pos: -26.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15704 components: - type: Transform @@ -116524,7 +116559,7 @@ entities: pos: -26.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15705 components: - type: Transform @@ -116532,7 +116567,7 @@ entities: pos: -26.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15706 components: - type: Transform @@ -116540,7 +116575,7 @@ entities: pos: -26.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15707 components: - type: Transform @@ -116548,7 +116583,7 @@ entities: pos: -26.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15708 components: - type: Transform @@ -116556,7 +116591,7 @@ entities: pos: -24.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15709 components: - type: Transform @@ -116564,7 +116599,7 @@ entities: pos: -26.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15715 components: - type: Transform @@ -116579,7 +116614,7 @@ entities: pos: -13.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15719 components: - type: Transform @@ -116587,14 +116622,14 @@ entities: pos: -13.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15722 components: - type: Transform pos: -13.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15723 components: - type: Transform @@ -116602,7 +116637,7 @@ entities: pos: -14.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15724 components: - type: Transform @@ -116610,7 +116645,7 @@ entities: pos: -15.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15725 components: - type: Transform @@ -116618,7 +116653,7 @@ entities: pos: -16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15727 components: - type: Transform @@ -116626,7 +116661,7 @@ entities: pos: -15.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15728 components: - type: Transform @@ -116634,7 +116669,7 @@ entities: pos: -20.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15730 components: - type: Transform @@ -116642,7 +116677,7 @@ entities: pos: -20.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15731 components: - type: Transform @@ -116650,7 +116685,7 @@ entities: pos: -21.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15732 components: - type: Transform @@ -116658,7 +116693,7 @@ entities: pos: -22.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15733 components: - type: Transform @@ -116666,7 +116701,7 @@ entities: pos: -23.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15734 components: - type: Transform @@ -116674,7 +116709,7 @@ entities: pos: -22.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15735 components: - type: Transform @@ -116682,28 +116717,28 @@ entities: pos: -23.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15738 components: - type: Transform pos: -19.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15739 components: - type: Transform pos: -17.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15746 components: - type: Transform pos: -17.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15747 components: - type: Transform @@ -116711,7 +116746,7 @@ entities: pos: -18.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15748 components: - type: Transform @@ -116719,7 +116754,7 @@ entities: pos: -17.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15749 components: - type: Transform @@ -116727,7 +116762,7 @@ entities: pos: -16.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15751 components: - type: Transform @@ -116735,7 +116770,7 @@ entities: pos: -14.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15752 components: - type: Transform @@ -116743,7 +116778,7 @@ entities: pos: -13.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15753 components: - type: Transform @@ -116751,7 +116786,7 @@ entities: pos: -12.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15754 components: - type: Transform @@ -116759,7 +116794,7 @@ entities: pos: -16.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15755 components: - type: Transform @@ -116767,7 +116802,7 @@ entities: pos: -15.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15757 components: - type: Transform @@ -116775,7 +116810,7 @@ entities: pos: -13.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15758 components: - type: Transform @@ -116783,7 +116818,7 @@ entities: pos: -18.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15759 components: - type: Transform @@ -116791,7 +116826,7 @@ entities: pos: -19.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15760 components: - type: Transform @@ -116799,7 +116834,7 @@ entities: pos: -20.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15762 components: - type: Transform @@ -116807,7 +116842,7 @@ entities: pos: -22.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15763 components: - type: Transform @@ -116815,7 +116850,7 @@ entities: pos: -23.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15765 components: - type: Transform @@ -116823,7 +116858,7 @@ entities: pos: -20.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15766 components: - type: Transform @@ -116831,7 +116866,7 @@ entities: pos: -21.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15768 components: - type: Transform @@ -116839,7 +116874,7 @@ entities: pos: -23.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15769 components: - type: Transform @@ -116847,7 +116882,7 @@ entities: pos: -24.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15770 components: - type: Transform @@ -116855,7 +116890,7 @@ entities: pos: -19.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15771 components: - type: Transform @@ -116863,7 +116898,7 @@ entities: pos: -19.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15772 components: - type: Transform @@ -116871,7 +116906,7 @@ entities: pos: -19.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15773 components: - type: Transform @@ -116879,7 +116914,7 @@ entities: pos: -17.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15774 components: - type: Transform @@ -116887,7 +116922,7 @@ entities: pos: -17.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15777 components: - type: Transform @@ -116895,7 +116930,7 @@ entities: pos: -22.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15778 components: - type: Transform @@ -116903,7 +116938,7 @@ entities: pos: -22.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15779 components: - type: Transform @@ -116911,7 +116946,7 @@ entities: pos: -22.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15780 components: - type: Transform @@ -116919,7 +116954,7 @@ entities: pos: -21.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15781 components: - type: Transform @@ -116927,7 +116962,7 @@ entities: pos: -21.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15782 components: - type: Transform @@ -116935,7 +116970,7 @@ entities: pos: -15.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15783 components: - type: Transform @@ -116943,7 +116978,7 @@ entities: pos: -15.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15784 components: - type: Transform @@ -116951,7 +116986,7 @@ entities: pos: -15.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15785 components: - type: Transform @@ -116959,7 +116994,7 @@ entities: pos: -14.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15786 components: - type: Transform @@ -116967,7 +117002,7 @@ entities: pos: -14.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15793 components: - type: Transform @@ -116975,7 +117010,7 @@ entities: pos: -11.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15794 components: - type: Transform @@ -116983,7 +117018,7 @@ entities: pos: -11.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15798 components: - type: Transform @@ -116991,7 +117026,7 @@ entities: pos: -11.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15799 components: - type: Transform @@ -116999,7 +117034,7 @@ entities: pos: -10.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15800 components: - type: Transform @@ -117007,7 +117042,7 @@ entities: pos: -9.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15801 components: - type: Transform @@ -117015,7 +117050,7 @@ entities: pos: -8.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15802 components: - type: Transform @@ -117023,7 +117058,7 @@ entities: pos: -7.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15804 components: - type: Transform @@ -117031,7 +117066,7 @@ entities: pos: -10.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15805 components: - type: Transform @@ -117039,7 +117074,7 @@ entities: pos: -9.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15806 components: - type: Transform @@ -117047,7 +117082,7 @@ entities: pos: -8.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15812 components: - type: Transform @@ -117055,7 +117090,7 @@ entities: pos: -20.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15816 components: - type: Transform @@ -117063,7 +117098,7 @@ entities: pos: -25.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15817 components: - type: Transform @@ -117071,7 +117106,7 @@ entities: pos: -25.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15818 components: - type: Transform @@ -117079,7 +117114,7 @@ entities: pos: -26.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15819 components: - type: Transform @@ -117087,7 +117122,7 @@ entities: pos: -27.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15821 components: - type: Transform @@ -117095,7 +117130,7 @@ entities: pos: -27.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15822 components: - type: Transform @@ -117103,7 +117138,7 @@ entities: pos: -28.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15823 components: - type: Transform @@ -117111,7 +117146,7 @@ entities: pos: -29.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15825 components: - type: Transform @@ -117119,28 +117154,28 @@ entities: pos: -30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15826 components: - type: Transform pos: -26.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15830 components: - type: Transform pos: -31.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15831 components: - type: Transform pos: -31.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15832 components: - type: Transform @@ -117148,91 +117183,91 @@ entities: pos: -29.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15834 components: - type: Transform pos: -28.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15835 components: - type: Transform pos: -28.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15836 components: - type: Transform pos: -28.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15838 components: - type: Transform pos: -31.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15839 components: - type: Transform pos: -31.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15841 components: - type: Transform pos: -31.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15842 components: - type: Transform pos: -31.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15843 components: - type: Transform pos: -31.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15844 components: - type: Transform pos: -29.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15845 components: - type: Transform pos: -29.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15846 components: - type: Transform pos: -29.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15847 components: - type: Transform pos: -29.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15859 components: - type: Transform @@ -117240,7 +117275,7 @@ entities: pos: -27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15860 components: - type: Transform @@ -117248,7 +117283,7 @@ entities: pos: -28.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15861 components: - type: Transform @@ -117256,7 +117291,7 @@ entities: pos: -27.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15862 components: - type: Transform @@ -117264,7 +117299,7 @@ entities: pos: -26.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15863 components: - type: Transform @@ -117272,7 +117307,7 @@ entities: pos: -25.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15864 components: - type: Transform @@ -117280,7 +117315,7 @@ entities: pos: -25.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15865 components: - type: Transform @@ -117288,154 +117323,154 @@ entities: pos: -25.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15867 components: - type: Transform pos: -26.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15868 components: - type: Transform pos: -26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15869 components: - type: Transform pos: -26.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15870 components: - type: Transform pos: -26.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15871 components: - type: Transform pos: -29.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15872 components: - type: Transform pos: -29.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15873 components: - type: Transform pos: -29.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15874 components: - type: Transform pos: -29.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15875 components: - type: Transform pos: -29.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15876 components: - type: Transform pos: -28.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15877 components: - type: Transform pos: -28.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15878 components: - type: Transform pos: -28.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15879 components: - type: Transform pos: -28.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15880 components: - type: Transform pos: -32.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15881 components: - type: Transform pos: -32.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15882 components: - type: Transform pos: -32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15883 components: - type: Transform pos: -32.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15884 components: - type: Transform pos: -31.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15885 components: - type: Transform pos: -31.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15886 components: - type: Transform pos: -31.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15887 components: - type: Transform pos: -31.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15888 components: - type: Transform @@ -117443,7 +117478,7 @@ entities: pos: -30.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15889 components: - type: Transform @@ -117451,7 +117486,7 @@ entities: pos: -29.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15890 components: - type: Transform @@ -117459,7 +117494,7 @@ entities: pos: -30.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15891 components: - type: Transform @@ -117467,7 +117502,7 @@ entities: pos: -31.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15892 components: - type: Transform @@ -117475,7 +117510,7 @@ entities: pos: -32.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15893 components: - type: Transform @@ -117483,7 +117518,7 @@ entities: pos: -32.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15895 components: - type: Transform @@ -117491,7 +117526,7 @@ entities: pos: -29.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15896 components: - type: Transform @@ -117499,7 +117534,7 @@ entities: pos: -31.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15897 components: - type: Transform @@ -117507,42 +117542,42 @@ entities: pos: -31.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15906 components: - type: Transform pos: -25.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15907 components: - type: Transform pos: -25.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15908 components: - type: Transform pos: -25.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15909 components: - type: Transform pos: -26.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15910 components: - type: Transform pos: -26.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15914 components: - type: Transform @@ -117550,7 +117585,7 @@ entities: pos: -0.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15915 components: - type: Transform @@ -117558,7 +117593,7 @@ entities: pos: -0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15918 components: - type: Transform @@ -117566,7 +117601,7 @@ entities: pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15919 components: - type: Transform @@ -117574,7 +117609,7 @@ entities: pos: 1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15920 components: - type: Transform @@ -117582,7 +117617,7 @@ entities: pos: 1.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15921 components: - type: Transform @@ -117590,7 +117625,7 @@ entities: pos: 2.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15926 components: - type: Transform @@ -117598,7 +117633,7 @@ entities: pos: -0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15927 components: - type: Transform @@ -117606,7 +117641,7 @@ entities: pos: 1.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15928 components: - type: Transform @@ -117614,7 +117649,7 @@ entities: pos: 2.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15929 components: - type: Transform @@ -117622,7 +117657,7 @@ entities: pos: 3.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15930 components: - type: Transform @@ -117630,7 +117665,7 @@ entities: pos: -1.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15931 components: - type: Transform @@ -117638,7 +117673,7 @@ entities: pos: -2.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15932 components: - type: Transform @@ -117646,7 +117681,7 @@ entities: pos: -3.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15933 components: - type: Transform @@ -117654,7 +117689,7 @@ entities: pos: -5.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15936 components: - type: Transform @@ -117662,7 +117697,7 @@ entities: pos: -7.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15937 components: - type: Transform @@ -117670,7 +117705,7 @@ entities: pos: -8.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15938 components: - type: Transform @@ -117678,7 +117713,7 @@ entities: pos: -9.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15939 components: - type: Transform @@ -117686,7 +117721,7 @@ entities: pos: -9.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15940 components: - type: Transform @@ -117694,7 +117729,7 @@ entities: pos: -9.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15941 components: - type: Transform @@ -117702,7 +117737,7 @@ entities: pos: -9.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15942 components: - type: Transform @@ -117710,7 +117745,7 @@ entities: pos: -9.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15943 components: - type: Transform @@ -117718,7 +117753,7 @@ entities: pos: -9.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15944 components: - type: Transform @@ -117726,7 +117761,7 @@ entities: pos: -9.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15945 components: - type: Transform @@ -117734,7 +117769,7 @@ entities: pos: -9.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15946 components: - type: Transform @@ -117742,7 +117777,7 @@ entities: pos: -9.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15947 components: - type: Transform @@ -117750,7 +117785,7 @@ entities: pos: -9.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15948 components: - type: Transform @@ -117758,7 +117793,7 @@ entities: pos: -9.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15950 components: - type: Transform @@ -117766,7 +117801,7 @@ entities: pos: -9.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15951 components: - type: Transform @@ -117774,7 +117809,7 @@ entities: pos: -9.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15952 components: - type: Transform @@ -117782,7 +117817,7 @@ entities: pos: -9.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15953 components: - type: Transform @@ -117790,7 +117825,7 @@ entities: pos: -9.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15954 components: - type: Transform @@ -117798,7 +117833,7 @@ entities: pos: -9.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15955 components: - type: Transform @@ -117806,7 +117841,7 @@ entities: pos: -9.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15956 components: - type: Transform @@ -117814,7 +117849,7 @@ entities: pos: -9.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15957 components: - type: Transform @@ -117822,7 +117857,7 @@ entities: pos: -9.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15958 components: - type: Transform @@ -117830,7 +117865,7 @@ entities: pos: 3.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15959 components: - type: Transform @@ -117838,7 +117873,7 @@ entities: pos: -8.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15960 components: - type: Transform @@ -117846,7 +117881,7 @@ entities: pos: -8.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15961 components: - type: Transform @@ -117854,7 +117889,7 @@ entities: pos: -8.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15962 components: - type: Transform @@ -117862,7 +117897,7 @@ entities: pos: -8.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15963 components: - type: Transform @@ -117870,7 +117905,7 @@ entities: pos: -8.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15964 components: - type: Transform @@ -117878,7 +117913,7 @@ entities: pos: -8.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15965 components: - type: Transform @@ -117886,7 +117921,7 @@ entities: pos: -8.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15966 components: - type: Transform @@ -117894,7 +117929,7 @@ entities: pos: -8.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15967 components: - type: Transform @@ -117902,7 +117937,7 @@ entities: pos: -8.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15969 components: - type: Transform @@ -117910,7 +117945,7 @@ entities: pos: -8.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15970 components: - type: Transform @@ -117918,7 +117953,7 @@ entities: pos: -8.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15971 components: - type: Transform @@ -117926,7 +117961,7 @@ entities: pos: -8.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15972 components: - type: Transform @@ -117934,7 +117969,7 @@ entities: pos: -8.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15973 components: - type: Transform @@ -117942,7 +117977,7 @@ entities: pos: -8.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15974 components: - type: Transform @@ -117950,7 +117985,7 @@ entities: pos: -8.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15975 components: - type: Transform @@ -117958,7 +117993,7 @@ entities: pos: -8.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15976 components: - type: Transform @@ -117966,7 +118001,7 @@ entities: pos: -8.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15977 components: - type: Transform @@ -117974,7 +118009,7 @@ entities: pos: -8.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15978 components: - type: Transform @@ -117982,7 +118017,7 @@ entities: pos: -8.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15979 components: - type: Transform @@ -117990,7 +118025,7 @@ entities: pos: 3.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15980 components: - type: Transform @@ -117998,7 +118033,7 @@ entities: pos: 3.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15981 components: - type: Transform @@ -118006,7 +118041,7 @@ entities: pos: 3.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15982 components: - type: Transform @@ -118014,7 +118049,7 @@ entities: pos: 3.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15983 components: - type: Transform @@ -118022,7 +118057,7 @@ entities: pos: 3.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15984 components: - type: Transform @@ -118030,7 +118065,7 @@ entities: pos: 3.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15985 components: - type: Transform @@ -118038,7 +118073,7 @@ entities: pos: 3.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15986 components: - type: Transform @@ -118046,7 +118081,7 @@ entities: pos: 3.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15987 components: - type: Transform @@ -118054,7 +118089,7 @@ entities: pos: 3.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15989 components: - type: Transform @@ -118062,7 +118097,7 @@ entities: pos: 3.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15990 components: - type: Transform @@ -118070,7 +118105,7 @@ entities: pos: 3.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15991 components: - type: Transform @@ -118078,7 +118113,7 @@ entities: pos: 3.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15992 components: - type: Transform @@ -118086,7 +118121,7 @@ entities: pos: 3.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15993 components: - type: Transform @@ -118094,7 +118129,7 @@ entities: pos: 3.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15994 components: - type: Transform @@ -118102,7 +118137,7 @@ entities: pos: 3.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15995 components: - type: Transform @@ -118110,7 +118145,7 @@ entities: pos: 3.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15996 components: - type: Transform @@ -118118,7 +118153,7 @@ entities: pos: 3.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15997 components: - type: Transform @@ -118126,7 +118161,7 @@ entities: pos: 3.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15998 components: - type: Transform @@ -118134,7 +118169,7 @@ entities: pos: 4.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15999 components: - type: Transform @@ -118142,7 +118177,7 @@ entities: pos: 4.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16000 components: - type: Transform @@ -118150,7 +118185,7 @@ entities: pos: 4.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16001 components: - type: Transform @@ -118158,7 +118193,7 @@ entities: pos: 4.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16002 components: - type: Transform @@ -118166,7 +118201,7 @@ entities: pos: 4.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16003 components: - type: Transform @@ -118174,7 +118209,7 @@ entities: pos: 4.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16004 components: - type: Transform @@ -118182,7 +118217,7 @@ entities: pos: 4.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16005 components: - type: Transform @@ -118190,7 +118225,7 @@ entities: pos: 4.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16007 components: - type: Transform @@ -118198,7 +118233,7 @@ entities: pos: 4.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16008 components: - type: Transform @@ -118206,7 +118241,7 @@ entities: pos: 4.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16009 components: - type: Transform @@ -118214,7 +118249,7 @@ entities: pos: 4.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16010 components: - type: Transform @@ -118222,7 +118257,7 @@ entities: pos: 4.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16011 components: - type: Transform @@ -118230,7 +118265,7 @@ entities: pos: 4.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16012 components: - type: Transform @@ -118238,7 +118273,7 @@ entities: pos: 4.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16013 components: - type: Transform @@ -118246,7 +118281,7 @@ entities: pos: 4.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16014 components: - type: Transform @@ -118254,7 +118289,7 @@ entities: pos: 4.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16015 components: - type: Transform @@ -118262,7 +118297,7 @@ entities: pos: 4.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16016 components: - type: Transform @@ -118270,7 +118305,7 @@ entities: pos: 4.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16017 components: - type: Transform @@ -118278,7 +118313,7 @@ entities: pos: 4.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16018 components: - type: Transform @@ -118286,7 +118321,7 @@ entities: pos: 4.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16020 components: - type: Transform @@ -118294,7 +118329,7 @@ entities: pos: 0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16021 components: - type: Transform @@ -118302,7 +118337,7 @@ entities: pos: -1.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16022 components: - type: Transform @@ -118310,7 +118345,7 @@ entities: pos: -2.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16023 components: - type: Transform @@ -118318,7 +118353,7 @@ entities: pos: -3.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16024 components: - type: Transform @@ -118326,7 +118361,7 @@ entities: pos: -4.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16025 components: - type: Transform @@ -118334,7 +118369,7 @@ entities: pos: -6.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16027 components: - type: Transform @@ -118342,7 +118377,7 @@ entities: pos: -7.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16029 components: - type: Transform @@ -118350,7 +118385,7 @@ entities: pos: -6.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16117 components: - type: Transform @@ -118358,7 +118393,7 @@ entities: pos: 45.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16118 components: - type: Transform @@ -118366,7 +118401,7 @@ entities: pos: 45.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16119 components: - type: Transform @@ -118374,7 +118409,7 @@ entities: pos: 45.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16120 components: - type: Transform @@ -118382,7 +118417,7 @@ entities: pos: 45.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16121 components: - type: Transform @@ -118390,7 +118425,7 @@ entities: pos: 49.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16122 components: - type: Transform @@ -118398,7 +118433,7 @@ entities: pos: 49.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16127 components: - type: Transform @@ -118406,7 +118441,7 @@ entities: pos: 40.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16128 components: - type: Transform @@ -118414,7 +118449,7 @@ entities: pos: 40.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16129 components: - type: Transform @@ -118422,7 +118457,7 @@ entities: pos: 40.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16130 components: - type: Transform @@ -118430,7 +118465,7 @@ entities: pos: 39.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16131 components: - type: Transform @@ -118438,7 +118473,7 @@ entities: pos: 39.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16132 components: - type: Transform @@ -118446,7 +118481,7 @@ entities: pos: 39.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16133 components: - type: Transform @@ -118454,7 +118489,7 @@ entities: pos: 39.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16134 components: - type: Transform @@ -118462,7 +118497,7 @@ entities: pos: 39.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16138 components: - type: Transform @@ -118470,7 +118505,7 @@ entities: pos: -17.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16139 components: - type: Transform @@ -118478,7 +118513,7 @@ entities: pos: -17.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16140 components: - type: Transform @@ -118486,7 +118521,7 @@ entities: pos: -19.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16141 components: - type: Transform @@ -118494,28 +118529,28 @@ entities: pos: -18.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16145 components: - type: Transform pos: -16.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16146 components: - type: Transform pos: -16.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16147 components: - type: Transform pos: -16.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16151 components: - type: Transform @@ -118523,7 +118558,7 @@ entities: pos: 0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16152 components: - type: Transform @@ -118531,7 +118566,7 @@ entities: pos: -0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16153 components: - type: Transform @@ -118539,7 +118574,7 @@ entities: pos: -1.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16154 components: - type: Transform @@ -118547,7 +118582,7 @@ entities: pos: -2.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16155 components: - type: Transform @@ -118555,7 +118590,7 @@ entities: pos: -3.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16156 components: - type: Transform @@ -118563,7 +118598,7 @@ entities: pos: -4.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16157 components: - type: Transform @@ -118571,7 +118606,7 @@ entities: pos: -5.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16158 components: - type: Transform @@ -118579,7 +118614,7 @@ entities: pos: -7.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16159 components: - type: Transform @@ -118587,7 +118622,7 @@ entities: pos: -8.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16160 components: - type: Transform @@ -118595,7 +118630,7 @@ entities: pos: -9.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16161 components: - type: Transform @@ -118603,7 +118638,7 @@ entities: pos: -10.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16162 components: - type: Transform @@ -118611,7 +118646,7 @@ entities: pos: -1.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16163 components: - type: Transform @@ -118619,7 +118654,7 @@ entities: pos: -2.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16164 components: - type: Transform @@ -118627,7 +118662,7 @@ entities: pos: -3.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16165 components: - type: Transform @@ -118635,7 +118670,7 @@ entities: pos: -4.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16166 components: - type: Transform @@ -118643,7 +118678,7 @@ entities: pos: -5.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16167 components: - type: Transform @@ -118651,7 +118686,7 @@ entities: pos: -6.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16168 components: - type: Transform @@ -118659,7 +118694,7 @@ entities: pos: -7.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16169 components: - type: Transform @@ -118667,7 +118702,7 @@ entities: pos: -9.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16170 components: - type: Transform @@ -118675,7 +118710,7 @@ entities: pos: -10.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16171 components: - type: Transform @@ -118683,7 +118718,7 @@ entities: pos: -11.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16173 components: - type: Transform @@ -118697,21 +118732,21 @@ entities: pos: -6.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16177 components: - type: Transform pos: -8.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16178 components: - type: Transform pos: -8.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16181 components: - type: Transform @@ -118719,7 +118754,7 @@ entities: pos: -12.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16182 components: - type: Transform @@ -118727,7 +118762,7 @@ entities: pos: -12.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16183 components: - type: Transform @@ -118735,7 +118770,7 @@ entities: pos: -12.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16184 components: - type: Transform @@ -118743,7 +118778,7 @@ entities: pos: -12.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16185 components: - type: Transform @@ -118751,7 +118786,7 @@ entities: pos: -11.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16186 components: - type: Transform @@ -118759,7 +118794,7 @@ entities: pos: -11.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16187 components: - type: Transform @@ -118767,7 +118802,7 @@ entities: pos: -11.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16190 components: - type: Transform @@ -118775,7 +118810,7 @@ entities: pos: 3.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16191 components: - type: Transform @@ -118783,7 +118818,7 @@ entities: pos: 4.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16192 components: - type: Transform @@ -118791,7 +118826,7 @@ entities: pos: 5.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16193 components: - type: Transform @@ -118799,7 +118834,7 @@ entities: pos: 0.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16194 components: - type: Transform @@ -118807,7 +118842,7 @@ entities: pos: 1.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16195 components: - type: Transform @@ -118815,7 +118850,7 @@ entities: pos: 2.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16196 components: - type: Transform @@ -118823,7 +118858,7 @@ entities: pos: 3.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16197 components: - type: Transform @@ -118831,7 +118866,7 @@ entities: pos: 4.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16198 components: - type: Transform @@ -118839,7 +118874,7 @@ entities: pos: 5.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16199 components: - type: Transform @@ -118847,7 +118882,7 @@ entities: pos: 7.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16200 components: - type: Transform @@ -118855,7 +118890,7 @@ entities: pos: 8.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16201 components: - type: Transform @@ -118863,7 +118898,7 @@ entities: pos: 9.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16202 components: - type: Transform @@ -118871,7 +118906,7 @@ entities: pos: 10.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16203 components: - type: Transform @@ -118879,7 +118914,7 @@ entities: pos: 11.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16204 components: - type: Transform @@ -118887,7 +118922,7 @@ entities: pos: 12.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16205 components: - type: Transform @@ -118895,7 +118930,7 @@ entities: pos: 7.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16206 components: - type: Transform @@ -118903,7 +118938,7 @@ entities: pos: 8.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16207 components: - type: Transform @@ -118911,7 +118946,7 @@ entities: pos: 9.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16208 components: - type: Transform @@ -118919,7 +118954,7 @@ entities: pos: 10.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16209 components: - type: Transform @@ -118927,7 +118962,7 @@ entities: pos: 11.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16218 components: - type: Transform @@ -118935,7 +118970,7 @@ entities: pos: 18.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16219 components: - type: Transform @@ -118943,7 +118978,7 @@ entities: pos: 19.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16220 components: - type: Transform @@ -118951,7 +118986,7 @@ entities: pos: 20.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16221 components: - type: Transform @@ -118959,7 +118994,7 @@ entities: pos: 21.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16222 components: - type: Transform @@ -118967,7 +119002,7 @@ entities: pos: 21.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16223 components: - type: Transform @@ -118975,7 +119010,7 @@ entities: pos: 20.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16224 components: - type: Transform @@ -118983,7 +119018,7 @@ entities: pos: 19.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16225 components: - type: Transform @@ -118991,7 +119026,7 @@ entities: pos: 18.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16230 components: - type: Transform @@ -118999,7 +119034,7 @@ entities: pos: 6.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16231 components: - type: Transform @@ -119007,7 +119042,7 @@ entities: pos: 2.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16232 components: - type: Transform @@ -119015,7 +119050,7 @@ entities: pos: 3.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16233 components: - type: Transform @@ -119023,7 +119058,7 @@ entities: pos: 4.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16234 components: - type: Transform @@ -119031,7 +119066,7 @@ entities: pos: 5.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16240 components: - type: Transform @@ -119039,7 +119074,7 @@ entities: pos: 15.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16241 components: - type: Transform @@ -119047,7 +119082,7 @@ entities: pos: 14.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16243 components: - type: Transform @@ -119055,7 +119090,7 @@ entities: pos: 23.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16244 components: - type: Transform @@ -119063,7 +119098,7 @@ entities: pos: 23.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16245 components: - type: Transform @@ -119071,7 +119106,7 @@ entities: pos: 23.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16246 components: - type: Transform @@ -119079,7 +119114,7 @@ entities: pos: 24.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16247 components: - type: Transform @@ -119087,7 +119122,7 @@ entities: pos: 24.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16248 components: - type: Transform @@ -119095,7 +119130,7 @@ entities: pos: 24.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16249 components: - type: Transform @@ -119103,7 +119138,7 @@ entities: pos: 24.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16253 components: - type: Transform @@ -119111,7 +119146,7 @@ entities: pos: 23.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16257 components: - type: Transform @@ -119119,7 +119154,7 @@ entities: pos: 25.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16258 components: - type: Transform @@ -119127,7 +119162,7 @@ entities: pos: 24.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16259 components: - type: Transform @@ -119135,7 +119170,7 @@ entities: pos: 26.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16260 components: - type: Transform @@ -119143,7 +119178,7 @@ entities: pos: 25.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16261 components: - type: Transform @@ -119151,7 +119186,7 @@ entities: pos: 26.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16268 components: - type: Transform @@ -119159,7 +119194,7 @@ entities: pos: 23.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16269 components: - type: Transform @@ -119167,7 +119202,7 @@ entities: pos: 22.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16270 components: - type: Transform @@ -119175,14 +119210,14 @@ entities: pos: 22.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16271 components: - type: Transform pos: 24.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16272 components: - type: Transform @@ -119190,7 +119225,7 @@ entities: pos: 24.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16273 components: - type: Transform @@ -119198,7 +119233,7 @@ entities: pos: 25.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16277 components: - type: Transform @@ -119206,7 +119241,7 @@ entities: pos: 26.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16278 components: - type: Transform @@ -119214,7 +119249,7 @@ entities: pos: 26.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16279 components: - type: Transform @@ -119222,7 +119257,7 @@ entities: pos: 26.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16280 components: - type: Transform @@ -119230,7 +119265,7 @@ entities: pos: 26.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16281 components: - type: Transform @@ -119238,7 +119273,7 @@ entities: pos: 26.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16282 components: - type: Transform @@ -119246,7 +119281,7 @@ entities: pos: 24.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16283 components: - type: Transform @@ -119254,7 +119289,7 @@ entities: pos: 24.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16284 components: - type: Transform @@ -119262,7 +119297,7 @@ entities: pos: 24.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16286 components: - type: Transform @@ -119270,21 +119305,21 @@ entities: pos: 24.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16289 components: - type: Transform pos: 24.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16290 components: - type: Transform pos: 24.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16291 components: - type: Transform @@ -119292,7 +119327,7 @@ entities: pos: 25.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16292 components: - type: Transform @@ -119300,7 +119335,7 @@ entities: pos: 26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16293 components: - type: Transform @@ -119308,7 +119343,7 @@ entities: pos: 26.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16294 components: - type: Transform @@ -119316,7 +119351,7 @@ entities: pos: 26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16295 components: - type: Transform @@ -119324,7 +119359,7 @@ entities: pos: 26.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16296 components: - type: Transform @@ -119332,7 +119367,7 @@ entities: pos: 24.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16299 components: - type: Transform @@ -119340,7 +119375,7 @@ entities: pos: 24.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16300 components: - type: Transform @@ -119348,14 +119383,14 @@ entities: pos: 24.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16303 components: - type: Transform pos: 26.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16304 components: - type: Transform @@ -119363,7 +119398,7 @@ entities: pos: 27.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16305 components: - type: Transform @@ -119371,7 +119406,7 @@ entities: pos: 25.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16306 components: - type: Transform @@ -119379,7 +119414,7 @@ entities: pos: 26.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16307 components: - type: Transform @@ -119387,7 +119422,7 @@ entities: pos: 27.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16310 components: - type: Transform @@ -119395,7 +119430,7 @@ entities: pos: 28.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16311 components: - type: Transform @@ -119403,7 +119438,7 @@ entities: pos: 29.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16312 components: - type: Transform @@ -119411,7 +119446,7 @@ entities: pos: 30.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16313 components: - type: Transform @@ -119419,7 +119454,7 @@ entities: pos: 31.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16314 components: - type: Transform @@ -119427,7 +119462,7 @@ entities: pos: 32.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16316 components: - type: Transform @@ -119435,7 +119470,7 @@ entities: pos: 30.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16317 components: - type: Transform @@ -119443,7 +119478,7 @@ entities: pos: 31.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16318 components: - type: Transform @@ -119451,7 +119486,7 @@ entities: pos: 32.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16319 components: - type: Transform @@ -119459,7 +119494,7 @@ entities: pos: 33.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16323 components: - type: Transform @@ -119467,7 +119502,7 @@ entities: pos: 35.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16324 components: - type: Transform @@ -119475,7 +119510,7 @@ entities: pos: 35.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16325 components: - type: Transform @@ -119483,7 +119518,7 @@ entities: pos: 35.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16326 components: - type: Transform @@ -119491,7 +119526,7 @@ entities: pos: 35.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16327 components: - type: Transform @@ -119499,7 +119534,7 @@ entities: pos: 35.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16328 components: - type: Transform @@ -119507,7 +119542,7 @@ entities: pos: 35.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16329 components: - type: Transform @@ -119515,7 +119550,7 @@ entities: pos: 34.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16330 components: - type: Transform @@ -119523,7 +119558,7 @@ entities: pos: 34.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16331 components: - type: Transform @@ -119531,7 +119566,7 @@ entities: pos: 34.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16332 components: - type: Transform @@ -119539,7 +119574,7 @@ entities: pos: 34.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16333 components: - type: Transform @@ -119547,28 +119582,28 @@ entities: pos: 34.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16338 components: - type: Transform pos: 34.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16339 components: - type: Transform pos: 33.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16340 components: - type: Transform pos: 33.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16343 components: - type: Transform @@ -119576,7 +119611,7 @@ entities: pos: 35.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16344 components: - type: Transform @@ -119584,7 +119619,7 @@ entities: pos: 32.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16347 components: - type: Transform @@ -119592,7 +119627,7 @@ entities: pos: 26.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16348 components: - type: Transform @@ -119600,7 +119635,7 @@ entities: pos: 27.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16349 components: - type: Transform @@ -119608,7 +119643,7 @@ entities: pos: 28.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16350 components: - type: Transform @@ -119616,7 +119651,7 @@ entities: pos: 29.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16351 components: - type: Transform @@ -119624,7 +119659,7 @@ entities: pos: 30.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16353 components: - type: Transform @@ -119632,7 +119667,7 @@ entities: pos: 27.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16354 components: - type: Transform @@ -119640,7 +119675,7 @@ entities: pos: 28.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16355 components: - type: Transform @@ -119648,7 +119683,7 @@ entities: pos: 29.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16356 components: - type: Transform @@ -119656,7 +119691,7 @@ entities: pos: 30.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16359 components: - type: Transform @@ -119664,7 +119699,7 @@ entities: pos: 25.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16360 components: - type: Transform @@ -119672,7 +119707,7 @@ entities: pos: 24.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16361 components: - type: Transform @@ -119680,7 +119715,7 @@ entities: pos: 23.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16362 components: - type: Transform @@ -119688,7 +119723,7 @@ entities: pos: 22.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16363 components: - type: Transform @@ -119696,7 +119731,7 @@ entities: pos: 21.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16364 components: - type: Transform @@ -119704,7 +119739,7 @@ entities: pos: 20.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16365 components: - type: Transform @@ -119712,7 +119747,7 @@ entities: pos: 19.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16368 components: - type: Transform @@ -119720,7 +119755,7 @@ entities: pos: 23.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16369 components: - type: Transform @@ -119728,7 +119763,7 @@ entities: pos: 22.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16370 components: - type: Transform @@ -119736,7 +119771,7 @@ entities: pos: 21.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16371 components: - type: Transform @@ -119744,7 +119779,7 @@ entities: pos: 20.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16372 components: - type: Transform @@ -119752,21 +119787,21 @@ entities: pos: 19.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16378 components: - type: Transform pos: 18.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16379 components: - type: Transform pos: 18.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16380 components: - type: Transform @@ -119774,7 +119809,7 @@ entities: pos: 17.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16381 components: - type: Transform @@ -119782,7 +119817,7 @@ entities: pos: 16.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16382 components: - type: Transform @@ -119790,7 +119825,7 @@ entities: pos: 15.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16383 components: - type: Transform @@ -119798,7 +119833,7 @@ entities: pos: 14.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16384 components: - type: Transform @@ -119806,7 +119841,7 @@ entities: pos: 13.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16385 components: - type: Transform @@ -119814,7 +119849,7 @@ entities: pos: 12.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16386 components: - type: Transform @@ -119822,7 +119857,7 @@ entities: pos: 11.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16387 components: - type: Transform @@ -119830,7 +119865,7 @@ entities: pos: 9.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16389 components: - type: Transform @@ -119838,7 +119873,7 @@ entities: pos: 15.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16390 components: - type: Transform @@ -119846,7 +119881,7 @@ entities: pos: 14.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16391 components: - type: Transform @@ -119854,7 +119889,7 @@ entities: pos: 13.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16392 components: - type: Transform @@ -119862,7 +119897,7 @@ entities: pos: 12.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16393 components: - type: Transform @@ -119870,7 +119905,7 @@ entities: pos: 11.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16395 components: - type: Transform @@ -119878,7 +119913,7 @@ entities: pos: 10.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16396 components: - type: Transform @@ -119886,21 +119921,21 @@ entities: pos: 6.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16398 components: - type: Transform pos: 10.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16399 components: - type: Transform pos: 10.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16403 components: - type: Transform @@ -119908,14 +119943,14 @@ entities: pos: 9.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16405 components: - type: Transform pos: 7.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16408 components: - type: Transform @@ -119923,7 +119958,7 @@ entities: pos: 6.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16409 components: - type: Transform @@ -119931,7 +119966,7 @@ entities: pos: 5.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16411 components: - type: Transform @@ -119939,7 +119974,7 @@ entities: pos: 10.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16413 components: - type: Transform @@ -119947,7 +119982,7 @@ entities: pos: 9.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16414 components: - type: Transform @@ -119955,7 +119990,7 @@ entities: pos: 8.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16415 components: - type: Transform @@ -119963,7 +119998,7 @@ entities: pos: 7.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16417 components: - type: Transform @@ -119971,7 +120006,7 @@ entities: pos: 8.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16421 components: - type: Transform @@ -119979,7 +120014,7 @@ entities: pos: 7.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16422 components: - type: Transform @@ -119987,7 +120022,7 @@ entities: pos: 6.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16423 components: - type: Transform @@ -119995,7 +120030,7 @@ entities: pos: 6.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16424 components: - type: Transform @@ -120003,7 +120038,7 @@ entities: pos: 5.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16425 components: - type: Transform @@ -120011,49 +120046,49 @@ entities: pos: 4.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16426 components: - type: Transform pos: 7.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16427 components: - type: Transform pos: 7.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16428 components: - type: Transform pos: 7.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16429 components: - type: Transform pos: 8.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16430 components: - type: Transform pos: 8.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16431 components: - type: Transform pos: 8.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16436 components: - type: Transform @@ -120061,7 +120096,7 @@ entities: pos: 3.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16437 components: - type: Transform @@ -120069,7 +120104,7 @@ entities: pos: 4.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16438 components: - type: Transform @@ -120077,7 +120112,7 @@ entities: pos: 4.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16439 components: - type: Transform @@ -120085,7 +120120,7 @@ entities: pos: 4.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16440 components: - type: Transform @@ -120093,7 +120128,7 @@ entities: pos: 4.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16441 components: - type: Transform @@ -120101,7 +120136,7 @@ entities: pos: 4.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16442 components: - type: Transform @@ -120109,7 +120144,7 @@ entities: pos: 5.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16443 components: - type: Transform @@ -120117,7 +120152,7 @@ entities: pos: 5.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16446 components: - type: Transform @@ -120125,7 +120160,7 @@ entities: pos: 4.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16452 components: - type: Transform @@ -120133,7 +120168,7 @@ entities: pos: 5.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16453 components: - type: Transform @@ -120141,7 +120176,7 @@ entities: pos: 6.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16454 components: - type: Transform @@ -120149,7 +120184,7 @@ entities: pos: 7.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16455 components: - type: Transform @@ -120157,7 +120192,7 @@ entities: pos: 8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16456 components: - type: Transform @@ -120165,7 +120200,7 @@ entities: pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16457 components: - type: Transform @@ -120173,7 +120208,7 @@ entities: pos: 10.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16458 components: - type: Transform @@ -120181,7 +120216,7 @@ entities: pos: 11.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16459 components: - type: Transform @@ -120189,7 +120224,7 @@ entities: pos: 12.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16460 components: - type: Transform @@ -120197,7 +120232,7 @@ entities: pos: 3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16462 components: - type: Transform @@ -120205,7 +120240,7 @@ entities: pos: 4.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16463 components: - type: Transform @@ -120213,7 +120248,7 @@ entities: pos: 5.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16464 components: - type: Transform @@ -120221,7 +120256,7 @@ entities: pos: 6.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16465 components: - type: Transform @@ -120229,7 +120264,7 @@ entities: pos: 7.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16466 components: - type: Transform @@ -120237,7 +120272,7 @@ entities: pos: 8.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16467 components: - type: Transform @@ -120245,7 +120280,7 @@ entities: pos: 10.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16468 components: - type: Transform @@ -120253,7 +120288,7 @@ entities: pos: 11.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16469 components: - type: Transform @@ -120261,7 +120296,7 @@ entities: pos: 12.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16470 components: - type: Transform @@ -120269,42 +120304,42 @@ entities: pos: 13.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16473 components: - type: Transform pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16478 components: - type: Transform pos: -2.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16479 components: - type: Transform pos: 3.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16480 components: - type: Transform pos: 3.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16481 components: - type: Transform pos: -2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16494 components: - type: Transform @@ -120312,7 +120347,7 @@ entities: pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16502 components: - type: Transform @@ -120320,14 +120355,22 @@ entities: pos: -49.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16517 components: - type: Transform pos: -42.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 16796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 16798 components: - type: Transform @@ -120351,7 +120394,7 @@ entities: pos: -20.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16802 components: - type: Transform @@ -120359,7 +120402,7 @@ entities: pos: -20.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16804 components: - type: Transform @@ -120374,7 +120417,7 @@ entities: pos: -24.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16953 components: - type: Transform @@ -120382,7 +120425,7 @@ entities: pos: -14.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16983 components: - type: Transform @@ -120390,7 +120433,7 @@ entities: pos: -49.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 17108 components: - type: Transform @@ -120398,7 +120441,7 @@ entities: pos: -17.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 17114 components: - type: Transform @@ -120406,7 +120449,7 @@ entities: pos: -14.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 17291 components: - type: Transform @@ -120414,7 +120457,7 @@ entities: pos: 54.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18033 components: - type: Transform @@ -120422,7 +120465,7 @@ entities: pos: 57.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18375 components: - type: Transform @@ -120430,7 +120473,7 @@ entities: pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18376 components: - type: Transform @@ -120438,7 +120481,7 @@ entities: pos: 57.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18377 components: - type: Transform @@ -120446,7 +120489,7 @@ entities: pos: 58.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18379 components: - type: Transform @@ -120454,7 +120497,7 @@ entities: pos: 60.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18380 components: - type: Transform @@ -120462,7 +120505,7 @@ entities: pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18381 components: - type: Transform @@ -120470,7 +120513,7 @@ entities: pos: 58.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18382 components: - type: Transform @@ -120478,7 +120521,7 @@ entities: pos: 59.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18383 components: - type: Transform @@ -120486,7 +120529,7 @@ entities: pos: 61.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18384 components: - type: Transform @@ -120494,7 +120537,7 @@ entities: pos: 61.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18385 components: - type: Transform @@ -120502,7 +120545,7 @@ entities: pos: 61.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18386 components: - type: Transform @@ -120510,7 +120553,7 @@ entities: pos: 61.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18387 components: - type: Transform @@ -120518,7 +120561,7 @@ entities: pos: 61.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18388 components: - type: Transform @@ -120526,7 +120569,7 @@ entities: pos: 61.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18389 components: - type: Transform @@ -120534,7 +120577,7 @@ entities: pos: 61.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18390 components: - type: Transform @@ -120542,7 +120585,7 @@ entities: pos: 61.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18391 components: - type: Transform @@ -120550,7 +120593,7 @@ entities: pos: 61.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18392 components: - type: Transform @@ -120558,7 +120601,7 @@ entities: pos: 61.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18393 components: - type: Transform @@ -120566,7 +120609,7 @@ entities: pos: 61.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18394 components: - type: Transform @@ -120574,7 +120617,7 @@ entities: pos: 61.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18395 components: - type: Transform @@ -120582,7 +120625,7 @@ entities: pos: 60.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18396 components: - type: Transform @@ -120590,7 +120633,7 @@ entities: pos: 60.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18397 components: - type: Transform @@ -120598,7 +120641,7 @@ entities: pos: 60.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18398 components: - type: Transform @@ -120606,7 +120649,7 @@ entities: pos: 60.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18399 components: - type: Transform @@ -120614,7 +120657,7 @@ entities: pos: 60.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18400 components: - type: Transform @@ -120622,7 +120665,7 @@ entities: pos: 60.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18401 components: - type: Transform @@ -120630,7 +120673,7 @@ entities: pos: 60.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18402 components: - type: Transform @@ -120638,7 +120681,7 @@ entities: pos: 60.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18403 components: - type: Transform @@ -120646,7 +120689,7 @@ entities: pos: 60.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18404 components: - type: Transform @@ -120654,7 +120697,7 @@ entities: pos: 60.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18413 components: - type: Transform @@ -120662,7 +120705,7 @@ entities: pos: 61.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18414 components: - type: Transform @@ -120670,7 +120713,7 @@ entities: pos: 61.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18415 components: - type: Transform @@ -120678,7 +120721,7 @@ entities: pos: 61.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18416 components: - type: Transform @@ -120686,7 +120729,7 @@ entities: pos: 61.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18417 components: - type: Transform @@ -120694,7 +120737,7 @@ entities: pos: 59.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18418 components: - type: Transform @@ -120702,7 +120745,7 @@ entities: pos: 58.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18419 components: - type: Transform @@ -120710,7 +120753,7 @@ entities: pos: 57.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18420 components: - type: Transform @@ -120718,7 +120761,7 @@ entities: pos: 56.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18421 components: - type: Transform @@ -120726,7 +120769,7 @@ entities: pos: 55.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18422 components: - type: Transform @@ -120734,7 +120777,7 @@ entities: pos: 54.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18423 components: - type: Transform @@ -120742,7 +120785,7 @@ entities: pos: 54.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18424 components: - type: Transform @@ -120750,7 +120793,7 @@ entities: pos: 55.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18425 components: - type: Transform @@ -120758,7 +120801,7 @@ entities: pos: 56.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18426 components: - type: Transform @@ -120766,7 +120809,7 @@ entities: pos: 57.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18427 components: - type: Transform @@ -120774,21 +120817,21 @@ entities: pos: 58.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18428 components: - type: Transform pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18429 components: - type: Transform pos: 60.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18908 components: - type: Transform @@ -120796,35 +120839,35 @@ entities: pos: 38.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 19075 components: - type: Transform pos: 31.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 19076 components: - type: Transform pos: 31.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 19079 components: - type: Transform pos: 30.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 19960 components: - type: Transform pos: -15.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 19965 components: - type: Transform @@ -120832,7 +120875,7 @@ entities: pos: -15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 21142 components: - type: Transform @@ -121104,7 +121147,7 @@ entities: pos: -17.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 21465 components: - type: Transform @@ -121119,7 +121162,7 @@ entities: pos: -15.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 21654 components: - type: Transform @@ -121132,7 +121175,7 @@ entities: pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 22206 components: - type: Transform @@ -121140,7 +121183,7 @@ entities: pos: -1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22247 components: - type: Transform @@ -121148,7 +121191,7 @@ entities: pos: -2.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22320 components: - type: Transform @@ -121172,7 +121215,7 @@ entities: pos: -3.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22362 components: - type: Transform @@ -121180,7 +121223,7 @@ entities: pos: -4.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22363 components: - type: Transform @@ -121188,7 +121231,7 @@ entities: pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22364 components: - type: Transform @@ -121196,7 +121239,7 @@ entities: pos: -6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22365 components: - type: Transform @@ -121204,7 +121247,7 @@ entities: pos: -7.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22398 components: - type: Transform @@ -121212,7 +121255,7 @@ entities: pos: -8.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22450 components: - type: Transform @@ -121351,7 +121394,7 @@ entities: pos: -9.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22661 components: - type: Transform @@ -121479,7 +121522,7 @@ entities: pos: -42.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23073 components: - type: Transform @@ -121487,7 +121530,7 @@ entities: pos: 2.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23078 components: - type: Transform @@ -121495,7 +121538,7 @@ entities: pos: 12.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23079 components: - type: Transform @@ -121503,7 +121546,7 @@ entities: pos: 13.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23080 components: - type: Transform @@ -121511,7 +121554,7 @@ entities: pos: 13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23081 components: - type: Transform @@ -121519,7 +121562,7 @@ entities: pos: 13.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23083 components: - type: Transform @@ -121535,14 +121578,14 @@ entities: pos: -44.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23100 components: - type: Transform pos: -13.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23103 components: - type: Transform @@ -121550,7 +121593,7 @@ entities: pos: -20.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23104 components: - type: Transform @@ -121558,7 +121601,7 @@ entities: pos: -19.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23105 components: - type: Transform @@ -121566,7 +121609,7 @@ entities: pos: -18.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23106 components: - type: Transform @@ -121574,7 +121617,7 @@ entities: pos: -17.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23107 components: - type: Transform @@ -121582,7 +121625,7 @@ entities: pos: -16.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23108 components: - type: Transform @@ -121590,7 +121633,7 @@ entities: pos: -15.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23109 components: - type: Transform @@ -121598,7 +121641,7 @@ entities: pos: -14.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23110 components: - type: Transform @@ -121606,7 +121649,7 @@ entities: pos: -13.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23111 components: - type: Transform @@ -121614,7 +121657,7 @@ entities: pos: -12.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23112 components: - type: Transform @@ -121622,7 +121665,7 @@ entities: pos: -11.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23113 components: - type: Transform @@ -121630,7 +121673,7 @@ entities: pos: -10.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23114 components: - type: Transform @@ -121638,7 +121681,7 @@ entities: pos: -9.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23115 components: - type: Transform @@ -121646,7 +121689,7 @@ entities: pos: -8.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23116 components: - type: Transform @@ -121654,7 +121697,7 @@ entities: pos: -7.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23117 components: - type: Transform @@ -121662,7 +121705,7 @@ entities: pos: -6.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23118 components: - type: Transform @@ -121670,7 +121713,7 @@ entities: pos: -5.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23119 components: - type: Transform @@ -121678,7 +121721,7 @@ entities: pos: -4.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23120 components: - type: Transform @@ -121686,7 +121729,7 @@ entities: pos: -3.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23121 components: - type: Transform @@ -121694,7 +121737,7 @@ entities: pos: -2.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23122 components: - type: Transform @@ -121702,7 +121745,7 @@ entities: pos: -1.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23127 components: - type: Transform @@ -121710,7 +121753,7 @@ entities: pos: -11.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23203 components: - type: Transform @@ -121823,7 +121866,7 @@ entities: pos: -39.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23463 components: - type: Transform @@ -121873,7 +121916,7 @@ entities: pos: -10.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23534 components: - type: Transform @@ -121881,7 +121924,7 @@ entities: pos: -15.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23538 components: - type: Transform @@ -121889,7 +121932,7 @@ entities: pos: -40.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23539 components: - type: Transform @@ -121897,7 +121940,7 @@ entities: pos: -41.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23554 components: - type: Transform @@ -121905,7 +121948,7 @@ entities: pos: -8.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23696 components: - type: Transform @@ -121913,7 +121956,7 @@ entities: pos: -1.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23697 components: - type: Transform @@ -121921,7 +121964,7 @@ entities: pos: -1.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23698 components: - type: Transform @@ -121929,7 +121972,7 @@ entities: pos: -1.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23699 components: - type: Transform @@ -121937,7 +121980,7 @@ entities: pos: -2.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23700 components: - type: Transform @@ -121945,7 +121988,7 @@ entities: pos: -2.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23701 components: - type: Transform @@ -121953,7 +121996,7 @@ entities: pos: -2.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23843 components: - type: Transform @@ -121961,7 +122004,7 @@ entities: pos: -20.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23847 components: - type: Transform @@ -121969,7 +122012,7 @@ entities: pos: -20.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23865 components: - type: Transform @@ -121977,7 +122020,7 @@ entities: pos: 60.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23866 components: - type: Transform @@ -121985,7 +122028,7 @@ entities: pos: 60.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23869 components: - type: Transform @@ -121993,7 +122036,7 @@ entities: pos: 60.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23870 components: - type: Transform @@ -122001,7 +122044,7 @@ entities: pos: 60.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23871 components: - type: Transform @@ -122009,7 +122052,7 @@ entities: pos: 60.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23872 components: - type: Transform @@ -122017,7 +122060,7 @@ entities: pos: 60.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23873 components: - type: Transform @@ -122025,7 +122068,7 @@ entities: pos: 60.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23874 components: - type: Transform @@ -122033,7 +122076,7 @@ entities: pos: 60.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23875 components: - type: Transform @@ -122041,7 +122084,7 @@ entities: pos: 60.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23876 components: - type: Transform @@ -122049,7 +122092,7 @@ entities: pos: 60.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23877 components: - type: Transform @@ -122057,7 +122100,7 @@ entities: pos: 60.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23878 components: - type: Transform @@ -122065,7 +122108,7 @@ entities: pos: 60.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23879 components: - type: Transform @@ -122073,7 +122116,7 @@ entities: pos: 60.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23880 components: - type: Transform @@ -122081,7 +122124,7 @@ entities: pos: 60.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23881 components: - type: Transform @@ -122089,7 +122132,7 @@ entities: pos: 60.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23882 components: - type: Transform @@ -122097,7 +122140,7 @@ entities: pos: 60.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23883 components: - type: Transform @@ -122105,7 +122148,7 @@ entities: pos: 59.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23884 components: - type: Transform @@ -122113,7 +122156,7 @@ entities: pos: 59.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23885 components: - type: Transform @@ -122121,7 +122164,7 @@ entities: pos: 59.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23886 components: - type: Transform @@ -122129,7 +122172,7 @@ entities: pos: 59.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23887 components: - type: Transform @@ -122137,7 +122180,7 @@ entities: pos: 59.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23888 components: - type: Transform @@ -122145,7 +122188,7 @@ entities: pos: 59.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23889 components: - type: Transform @@ -122153,7 +122196,7 @@ entities: pos: 59.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23890 components: - type: Transform @@ -122161,7 +122204,7 @@ entities: pos: 59.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23891 components: - type: Transform @@ -122169,7 +122212,7 @@ entities: pos: 59.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23892 components: - type: Transform @@ -122177,7 +122220,7 @@ entities: pos: 59.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23893 components: - type: Transform @@ -122185,7 +122228,7 @@ entities: pos: 59.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23894 components: - type: Transform @@ -122193,7 +122236,7 @@ entities: pos: 59.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23895 components: - type: Transform @@ -122201,7 +122244,7 @@ entities: pos: 59.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23898 components: - type: Transform @@ -122209,7 +122252,7 @@ entities: pos: 59.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 24039 components: - type: Transform @@ -122217,21 +122260,21 @@ entities: pos: -13.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 24241 components: - type: Transform pos: -15.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 24242 components: - type: Transform pos: -15.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 24279 components: - type: Transform @@ -122239,7 +122282,7 @@ entities: pos: 3.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 25219 components: - type: Transform @@ -122548,35 +122591,35 @@ entities: pos: -15.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25364 components: - type: Transform pos: -15.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25365 components: - type: Transform pos: -15.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25401 components: - type: Transform pos: -15.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25420 components: - type: Transform pos: -15.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25518 components: - type: Transform @@ -122584,7 +122627,7 @@ entities: pos: -9.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25519 components: - type: Transform @@ -122592,7 +122635,7 @@ entities: pos: 0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 25555 components: - type: Transform @@ -122600,7 +122643,7 @@ entities: pos: -12.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25556 components: - type: Transform @@ -122608,7 +122651,7 @@ entities: pos: -13.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25557 components: - type: Transform @@ -122616,7 +122659,7 @@ entities: pos: -14.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25558 components: - type: Transform @@ -122624,7 +122667,7 @@ entities: pos: -11.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25561 components: - type: Transform @@ -122632,7 +122675,7 @@ entities: pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 25562 components: - type: Transform @@ -122640,7 +122683,7 @@ entities: pos: -15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 26460 components: - type: Transform @@ -122688,7 +122731,7 @@ entities: pos: -14.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28263 components: - type: Transform @@ -122736,7 +122779,7 @@ entities: pos: -22.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28415 components: - type: Transform @@ -122744,7 +122787,7 @@ entities: pos: -25.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28429 components: - type: Transform @@ -122752,7 +122795,7 @@ entities: pos: -14.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28430 components: - type: Transform @@ -122760,7 +122803,15 @@ entities: pos: -16.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 28438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 28451 components: - type: Transform @@ -122768,7 +122819,7 @@ entities: pos: -11.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28458 components: - type: Transform @@ -122776,7 +122827,7 @@ entities: pos: -10.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28524 components: - type: Transform @@ -122800,7 +122851,7 @@ entities: pos: -26.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28539 components: - type: Transform @@ -122808,7 +122859,7 @@ entities: pos: -27.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28541 components: - type: Transform @@ -122816,7 +122867,7 @@ entities: pos: -27.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28542 components: - type: Transform @@ -122824,7 +122875,7 @@ entities: pos: -27.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28543 components: - type: Transform @@ -122832,7 +122883,7 @@ entities: pos: -24.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28545 components: - type: Transform @@ -122840,7 +122891,7 @@ entities: pos: -27.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28546 components: - type: Transform @@ -122848,7 +122899,7 @@ entities: pos: -27.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28547 components: - type: Transform @@ -122856,7 +122907,7 @@ entities: pos: -27.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28548 components: - type: Transform @@ -122864,7 +122915,7 @@ entities: pos: -27.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28549 components: - type: Transform @@ -122872,7 +122923,7 @@ entities: pos: -27.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28551 components: - type: Transform @@ -122880,7 +122931,7 @@ entities: pos: -28.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28558 components: - type: Transform @@ -122888,7 +122939,7 @@ entities: pos: -22.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28559 components: - type: Transform @@ -122896,7 +122947,14 @@ entities: pos: -21.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' + - uid: 28620 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 28626 components: - type: Transform @@ -122974,7 +123032,7 @@ entities: pos: 2.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28828 components: - type: Transform @@ -123066,7 +123124,7 @@ entities: pos: -9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28947 components: - type: Transform @@ -123074,35 +123132,35 @@ entities: pos: -8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28970 components: - type: Transform pos: -8.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28971 components: - type: Transform pos: -8.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28972 components: - type: Transform pos: -8.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28973 components: - type: Transform pos: -8.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28974 components: - type: Transform @@ -123110,7 +123168,7 @@ entities: pos: -9.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29684 components: - type: Transform @@ -123118,7 +123176,7 @@ entities: pos: 4.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29687 components: - type: Transform @@ -123126,7 +123184,7 @@ entities: pos: 6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29688 components: - type: Transform @@ -123134,7 +123192,7 @@ entities: pos: 7.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29689 components: - type: Transform @@ -123142,28 +123200,28 @@ entities: pos: 5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29691 components: - type: Transform pos: 7.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 29692 components: - type: Transform pos: 7.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 29693 components: - type: Transform pos: 8.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29695 components: - type: Transform @@ -123171,7 +123229,7 @@ entities: pos: 8.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29697 components: - type: Transform @@ -123179,7 +123237,7 @@ entities: pos: 8.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 29698 components: - type: Transform @@ -123187,7 +123245,7 @@ entities: pos: 9.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 29699 components: - type: Transform @@ -123195,7 +123253,7 @@ entities: pos: 10.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 29701 components: - type: Transform @@ -123203,7 +123261,7 @@ entities: pos: 11.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 29702 components: - type: Transform @@ -123211,7 +123269,7 @@ entities: pos: 9.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29703 components: - type: Transform @@ -123219,7 +123277,7 @@ entities: pos: 10.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29704 components: - type: Transform @@ -123227,7 +123285,7 @@ entities: pos: 11.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 29705 components: - type: Transform @@ -123235,7 +123293,7 @@ entities: pos: 12.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - proto: GasPipeTJunction entities: - uid: 17 @@ -123245,7 +123303,7 @@ entities: pos: -40.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 47 components: - type: Transform @@ -123253,7 +123311,7 @@ entities: pos: -42.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 737 components: - type: Transform @@ -123261,7 +123319,7 @@ entities: pos: -24.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2170 components: - type: Transform @@ -123269,14 +123327,14 @@ entities: pos: -8.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2172 components: - type: Transform pos: -7.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2173 components: - type: Transform @@ -123284,7 +123342,7 @@ entities: pos: -20.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2284 components: - type: Transform @@ -123292,7 +123350,7 @@ entities: pos: -15.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2708 components: - type: Transform @@ -123300,7 +123358,7 @@ entities: pos: -38.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3054 components: - type: Transform @@ -123308,7 +123366,7 @@ entities: pos: -41.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3081 components: - type: Transform @@ -123316,7 +123374,7 @@ entities: pos: -0.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3284 components: - type: Transform @@ -123324,7 +123382,7 @@ entities: pos: 38.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 3285 components: - type: Transform @@ -123332,7 +123390,7 @@ entities: pos: 37.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 4566 components: - type: Transform @@ -123340,7 +123398,7 @@ entities: pos: -21.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5633 components: - type: Transform @@ -123348,7 +123406,7 @@ entities: pos: -20.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5634 components: - type: Transform @@ -123356,14 +123414,14 @@ entities: pos: -21.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5635 components: - type: Transform pos: -34.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 5639 components: - type: Transform @@ -123371,7 +123429,7 @@ entities: pos: -20.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 5640 components: - type: Transform @@ -123379,14 +123437,14 @@ entities: pos: -21.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 6673 components: - type: Transform pos: -34.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 6765 components: - type: Transform @@ -123394,7 +123452,7 @@ entities: pos: 0.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7343 components: - type: Transform @@ -123402,7 +123460,7 @@ entities: pos: 1.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7345 components: - type: Transform @@ -123410,7 +123468,7 @@ entities: pos: -0.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7347 components: - type: Transform @@ -123418,7 +123476,7 @@ entities: pos: -0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7354 components: - type: Transform @@ -123426,7 +123484,7 @@ entities: pos: 12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7761 components: - type: Transform @@ -123434,7 +123492,7 @@ entities: pos: -32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7855 components: - type: Transform @@ -123442,7 +123500,7 @@ entities: pos: -27.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8524 components: - type: Transform @@ -123474,7 +123532,7 @@ entities: pos: -24.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8739 components: - type: Transform @@ -123482,14 +123540,14 @@ entities: pos: -24.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8768 components: - type: Transform pos: -2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8769 components: - type: Transform @@ -123497,7 +123555,7 @@ entities: pos: -24.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8797 components: - type: Transform @@ -123542,7 +123600,7 @@ entities: pos: -11.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8846 components: - type: Transform @@ -123563,7 +123621,7 @@ entities: pos: -27.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8868 components: - type: Transform @@ -123571,7 +123629,7 @@ entities: pos: -27.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8973 components: - type: Transform @@ -123594,7 +123652,7 @@ entities: pos: -26.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 8986 components: - type: Transform @@ -123618,7 +123676,7 @@ entities: pos: -20.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9124 components: - type: Transform @@ -123626,7 +123684,7 @@ entities: pos: -21.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9128 components: - type: Transform @@ -123634,7 +123692,7 @@ entities: pos: -26.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9129 components: - type: Transform @@ -123642,14 +123700,14 @@ entities: pos: -26.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9404 components: - type: Transform pos: 59.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9412 components: - type: Transform @@ -123657,7 +123715,7 @@ entities: pos: 1.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9419 components: - type: Transform @@ -123665,7 +123723,7 @@ entities: pos: 0.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9612 components: - type: Transform @@ -123673,7 +123731,7 @@ entities: pos: -31.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9630 components: - type: Transform @@ -123681,7 +123739,7 @@ entities: pos: -17.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9730 components: - type: Transform @@ -123694,7 +123752,7 @@ entities: pos: -26.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10391 components: - type: Transform @@ -123702,14 +123760,14 @@ entities: pos: 1.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10577 components: - type: Transform pos: 3.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10792 components: - type: Transform @@ -123717,7 +123775,7 @@ entities: pos: -0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10880 components: - type: Transform @@ -123725,7 +123783,7 @@ entities: pos: -0.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11189 components: - type: Transform @@ -123733,7 +123791,7 @@ entities: pos: -2.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11239 components: - type: Transform @@ -123741,7 +123799,7 @@ entities: pos: -1.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11283 components: - type: Transform @@ -123749,7 +123807,7 @@ entities: pos: -49.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11285 components: - type: Transform @@ -123757,14 +123815,14 @@ entities: pos: -52.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11287 components: - type: Transform pos: -49.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11526 components: - type: Transform @@ -123772,7 +123830,7 @@ entities: pos: -45.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11553 components: - type: Transform @@ -123780,7 +123838,7 @@ entities: pos: 60.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11908 components: - type: Transform @@ -123788,7 +123846,7 @@ entities: pos: -0.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 11968 components: - type: Transform @@ -123796,7 +123854,7 @@ entities: pos: 43.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12297 components: - type: Transform @@ -123804,7 +123862,7 @@ entities: pos: 1.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12300 components: - type: Transform @@ -123812,7 +123870,7 @@ entities: pos: 1.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12305 components: - type: Transform @@ -123820,7 +123878,7 @@ entities: pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 12306 components: - type: Transform @@ -123828,14 +123886,14 @@ entities: pos: -2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13151 components: - type: Transform pos: -31.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13154 components: - type: Transform @@ -123843,7 +123901,7 @@ entities: pos: 12.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13159 components: - type: Transform @@ -123851,7 +123909,7 @@ entities: pos: -38.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13166 components: - type: Transform @@ -123859,7 +123917,7 @@ entities: pos: 24.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13170 components: - type: Transform @@ -123867,7 +123925,7 @@ entities: pos: 41.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13175 components: - type: Transform @@ -123875,35 +123933,35 @@ entities: pos: -39.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13177 components: - type: Transform pos: -40.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13178 components: - type: Transform pos: -42.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13180 components: - type: Transform pos: 23.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13192 components: - type: Transform pos: 11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13194 components: - type: Transform @@ -123911,7 +123969,7 @@ entities: pos: 3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13201 components: - type: Transform @@ -123919,14 +123977,14 @@ entities: pos: -1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13202 components: - type: Transform pos: -0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13229 components: - type: Transform @@ -123934,7 +123992,7 @@ entities: pos: 1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13230 components: - type: Transform @@ -123942,7 +124000,7 @@ entities: pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13231 components: - type: Transform @@ -123950,7 +124008,7 @@ entities: pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13244 components: - type: Transform @@ -123958,7 +124016,7 @@ entities: pos: -0.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13246 components: - type: Transform @@ -123966,14 +124024,14 @@ entities: pos: 2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13247 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13256 components: - type: Transform @@ -123981,7 +124039,7 @@ entities: pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13259 components: - type: Transform @@ -123989,7 +124047,7 @@ entities: pos: 1.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13270 components: - type: Transform @@ -123997,7 +124055,7 @@ entities: pos: -0.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13271 components: - type: Transform @@ -124005,7 +124063,7 @@ entities: pos: -0.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13273 components: - type: Transform @@ -124013,7 +124071,7 @@ entities: pos: -0.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13282 components: - type: Transform @@ -124021,7 +124079,7 @@ entities: pos: 1.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13289 components: - type: Transform @@ -124029,7 +124087,7 @@ entities: pos: -0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13291 components: - type: Transform @@ -124037,7 +124095,7 @@ entities: pos: -0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13296 components: - type: Transform @@ -124045,7 +124103,7 @@ entities: pos: -0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13313 components: - type: Transform @@ -124053,7 +124111,7 @@ entities: pos: 1.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13324 components: - type: Transform @@ -124061,7 +124119,7 @@ entities: pos: -0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13327 components: - type: Transform @@ -124069,7 +124127,7 @@ entities: pos: 1.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13335 components: - type: Transform @@ -124077,7 +124135,7 @@ entities: pos: 1.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13338 components: - type: Transform @@ -124085,7 +124143,7 @@ entities: pos: -0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13347 components: - type: Transform @@ -124093,7 +124151,7 @@ entities: pos: -0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13350 components: - type: Transform @@ -124101,7 +124159,7 @@ entities: pos: -0.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13369 components: - type: Transform @@ -124109,14 +124167,14 @@ entities: pos: 1.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13376 components: - type: Transform pos: 21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13381 components: - type: Transform @@ -124124,28 +124182,28 @@ entities: pos: -0.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13383 components: - type: Transform pos: 27.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13389 components: - type: Transform pos: 32.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13400 components: - type: Transform pos: 42.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13402 components: - type: Transform @@ -124153,21 +124211,21 @@ entities: pos: 45.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13406 components: - type: Transform pos: 51.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13411 components: - type: Transform pos: 49.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13413 components: - type: Transform @@ -124175,14 +124233,14 @@ entities: pos: 49.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13420 components: - type: Transform pos: 43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13422 components: - type: Transform @@ -124190,7 +124248,7 @@ entities: pos: 39.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13431 components: - type: Transform @@ -124198,28 +124256,28 @@ entities: pos: 30.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13435 components: - type: Transform pos: 26.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13441 components: - type: Transform pos: 19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13448 components: - type: Transform pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13451 components: - type: Transform @@ -124227,7 +124285,7 @@ entities: pos: -42.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13470 components: - type: Transform @@ -124235,7 +124293,7 @@ entities: pos: -42.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13471 components: - type: Transform @@ -124243,7 +124301,7 @@ entities: pos: -0.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13482 components: - type: Transform @@ -124251,14 +124309,14 @@ entities: pos: -40.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13491 components: - type: Transform pos: -44.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13494 components: - type: Transform @@ -124266,7 +124324,7 @@ entities: pos: -22.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13495 components: - type: Transform @@ -124274,7 +124332,7 @@ entities: pos: -33.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13499 components: - type: Transform @@ -124282,21 +124340,21 @@ entities: pos: 1.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13507 components: - type: Transform pos: 13.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13514 components: - type: Transform pos: -0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13544 components: - type: Transform @@ -124304,7 +124362,7 @@ entities: pos: 1.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13572 components: - type: Transform @@ -124312,14 +124370,14 @@ entities: pos: -20.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13576 components: - type: Transform pos: -26.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13588 components: - type: Transform @@ -124334,7 +124392,7 @@ entities: pos: -9.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13663 components: - type: Transform @@ -124342,7 +124400,7 @@ entities: pos: -10.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13707 components: - type: Transform @@ -124350,7 +124408,7 @@ entities: pos: -19.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13708 components: - type: Transform @@ -124358,7 +124416,7 @@ entities: pos: -20.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13709 components: - type: Transform @@ -124366,7 +124424,7 @@ entities: pos: -19.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13710 components: - type: Transform @@ -124374,21 +124432,21 @@ entities: pos: -20.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13738 components: - type: Transform pos: -9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13749 components: - type: Transform pos: -8.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13750 components: - type: Transform @@ -124396,7 +124454,7 @@ entities: pos: -7.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13759 components: - type: Transform @@ -124404,7 +124462,7 @@ entities: pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13765 components: - type: Transform @@ -124412,7 +124470,7 @@ entities: pos: -4.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13789 components: - type: Transform @@ -124420,7 +124478,7 @@ entities: pos: -2.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13793 components: - type: Transform @@ -124428,7 +124486,7 @@ entities: pos: -6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13798 components: - type: Transform @@ -124436,7 +124494,7 @@ entities: pos: -11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13802 components: - type: Transform @@ -124444,7 +124502,7 @@ entities: pos: -15.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13803 components: - type: Transform @@ -124452,7 +124510,7 @@ entities: pos: -16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13825 components: - type: Transform @@ -124460,7 +124518,7 @@ entities: pos: -4.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13833 components: - type: Transform @@ -124468,7 +124526,7 @@ entities: pos: -21.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13838 components: - type: Transform @@ -124476,7 +124534,7 @@ entities: pos: -22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13850 components: - type: Transform @@ -124484,7 +124542,7 @@ entities: pos: -22.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13888 components: - type: Transform @@ -124492,7 +124550,7 @@ entities: pos: -9.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13905 components: - type: Transform @@ -124500,7 +124558,7 @@ entities: pos: 9.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13913 components: - type: Transform @@ -124508,14 +124566,14 @@ entities: pos: 11.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13915 components: - type: Transform pos: 12.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13939 components: - type: Transform @@ -124523,7 +124581,7 @@ entities: pos: 8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13986 components: - type: Transform @@ -124531,7 +124589,7 @@ entities: pos: 3.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13990 components: - type: Transform @@ -124539,7 +124597,7 @@ entities: pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14003 components: - type: Transform @@ -124547,7 +124605,7 @@ entities: pos: 12.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14018 components: - type: Transform @@ -124555,7 +124613,7 @@ entities: pos: 19.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14034 components: - type: Transform @@ -124563,7 +124621,7 @@ entities: pos: 24.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14056 components: - type: Transform @@ -124571,7 +124629,7 @@ entities: pos: 13.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14061 components: - type: Transform @@ -124579,7 +124637,7 @@ entities: pos: 24.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14076 components: - type: Transform @@ -124587,7 +124645,7 @@ entities: pos: 24.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14080 components: - type: Transform @@ -124595,7 +124653,7 @@ entities: pos: 26.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14081 components: - type: Transform @@ -124603,14 +124661,14 @@ entities: pos: 27.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14115 components: - type: Transform pos: 13.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14119 components: - type: Transform @@ -124618,7 +124676,7 @@ entities: pos: 12.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14140 components: - type: Transform @@ -124626,7 +124684,7 @@ entities: pos: 31.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14152 components: - type: Transform @@ -124634,7 +124692,7 @@ entities: pos: 32.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14153 components: - type: Transform @@ -124642,7 +124700,7 @@ entities: pos: 31.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14230 components: - type: Transform @@ -124650,7 +124708,7 @@ entities: pos: 42.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14243 components: - type: Transform @@ -124658,7 +124716,7 @@ entities: pos: 49.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14247 components: - type: Transform @@ -124666,7 +124724,7 @@ entities: pos: 51.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14266 components: - type: Transform @@ -124674,7 +124732,7 @@ entities: pos: 47.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14273 components: - type: Transform @@ -124682,21 +124740,21 @@ entities: pos: 53.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14275 components: - type: Transform pos: 47.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14276 components: - type: Transform pos: 53.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14277 components: - type: Transform @@ -124704,7 +124762,7 @@ entities: pos: 47.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14278 components: - type: Transform @@ -124712,35 +124770,35 @@ entities: pos: 53.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14288 components: - type: Transform pos: 50.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14289 components: - type: Transform pos: 46.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14299 components: - type: Transform pos: 48.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14315 components: - type: Transform pos: 45.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14320 components: - type: Transform @@ -124748,7 +124806,7 @@ entities: pos: 40.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14334 components: - type: Transform @@ -124756,7 +124814,7 @@ entities: pos: 42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14338 components: - type: Transform @@ -124764,7 +124822,7 @@ entities: pos: 42.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14345 components: - type: Transform @@ -124772,7 +124830,7 @@ entities: pos: 41.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14350 components: - type: Transform @@ -124780,7 +124838,7 @@ entities: pos: 40.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14357 components: - type: Transform @@ -124788,7 +124846,7 @@ entities: pos: 40.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14361 components: - type: Transform @@ -124796,7 +124854,7 @@ entities: pos: 40.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14362 components: - type: Transform @@ -124804,7 +124862,7 @@ entities: pos: 42.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14364 components: - type: Transform @@ -124812,7 +124870,7 @@ entities: pos: 40.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14379 components: - type: Transform @@ -124820,14 +124878,14 @@ entities: pos: 35.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14380 components: - type: Transform pos: 33.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14426 components: - type: Transform @@ -124835,7 +124893,7 @@ entities: pos: 28.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14429 components: - type: Transform @@ -124843,7 +124901,7 @@ entities: pos: 26.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14460 components: - type: Transform @@ -124851,14 +124909,14 @@ entities: pos: 40.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14470 components: - type: Transform pos: 45.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14474 components: - type: Transform @@ -124866,7 +124924,7 @@ entities: pos: 46.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14479 components: - type: Transform @@ -124874,7 +124932,7 @@ entities: pos: 46.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14488 components: - type: Transform @@ -124882,7 +124940,7 @@ entities: pos: 46.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14517 components: - type: Transform @@ -124890,7 +124948,7 @@ entities: pos: 40.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14518 components: - type: Transform @@ -124898,7 +124956,7 @@ entities: pos: 42.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14529 components: - type: Transform @@ -124906,14 +124964,14 @@ entities: pos: 46.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14543 components: - type: Transform pos: 36.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14571 components: - type: Transform @@ -124921,7 +124979,7 @@ entities: pos: 24.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14572 components: - type: Transform @@ -124929,7 +124987,7 @@ entities: pos: 24.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14612 components: - type: Transform @@ -124937,7 +124995,7 @@ entities: pos: 23.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14622 components: - type: Transform @@ -124945,7 +125003,7 @@ entities: pos: 24.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14627 components: - type: Transform @@ -124953,7 +125011,7 @@ entities: pos: 25.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14677 components: - type: Transform @@ -124961,7 +125019,7 @@ entities: pos: 30.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14704 components: - type: Transform @@ -124969,7 +125027,7 @@ entities: pos: 30.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14712 components: - type: Transform @@ -124977,7 +125035,7 @@ entities: pos: 31.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14724 components: - type: Transform @@ -124985,7 +125043,7 @@ entities: pos: 35.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14726 components: - type: Transform @@ -124993,7 +125051,7 @@ entities: pos: 36.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14755 components: - type: Transform @@ -125001,7 +125059,7 @@ entities: pos: 36.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14756 components: - type: Transform @@ -125009,7 +125067,7 @@ entities: pos: 35.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14772 components: - type: Transform @@ -125017,7 +125075,7 @@ entities: pos: -42.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14785 components: - type: Transform @@ -125025,7 +125083,7 @@ entities: pos: -40.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14794 components: - type: Transform @@ -125033,7 +125091,7 @@ entities: pos: -40.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14795 components: - type: Transform @@ -125041,7 +125099,7 @@ entities: pos: -42.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14800 components: - type: Transform @@ -125049,7 +125107,7 @@ entities: pos: -42.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14804 components: - type: Transform @@ -125057,7 +125115,7 @@ entities: pos: -42.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14806 components: - type: Transform @@ -125065,7 +125123,7 @@ entities: pos: -40.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14808 components: - type: Transform @@ -125073,7 +125131,7 @@ entities: pos: -40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14813 components: - type: Transform @@ -125081,7 +125139,7 @@ entities: pos: -40.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14834 components: - type: Transform @@ -125089,21 +125147,21 @@ entities: pos: -2.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14848 components: - type: Transform pos: 6.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14850 components: - type: Transform pos: 7.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14860 components: - type: Transform @@ -125111,7 +125169,7 @@ entities: pos: 14.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14867 components: - type: Transform @@ -125119,7 +125177,7 @@ entities: pos: 16.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14890 components: - type: Transform @@ -125127,7 +125185,7 @@ entities: pos: 16.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14891 components: - type: Transform @@ -125135,14 +125193,14 @@ entities: pos: 14.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14928 components: - type: Transform pos: 16.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14929 components: - type: Transform @@ -125150,21 +125208,21 @@ entities: pos: 14.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14965 components: - type: Transform pos: -37.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14969 components: - type: Transform pos: -38.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15014 components: - type: Transform @@ -125172,7 +125230,7 @@ entities: pos: -54.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15020 components: - type: Transform @@ -125180,7 +125238,7 @@ entities: pos: -52.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15026 components: - type: Transform @@ -125188,7 +125246,7 @@ entities: pos: -54.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15055 components: - type: Transform @@ -125196,7 +125254,7 @@ entities: pos: -52.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15062 components: - type: Transform @@ -125204,7 +125262,7 @@ entities: pos: -54.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15177 components: - type: Transform @@ -125212,7 +125270,7 @@ entities: pos: -37.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15178 components: - type: Transform @@ -125220,7 +125278,7 @@ entities: pos: -38.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15198 components: - type: Transform @@ -125228,7 +125286,7 @@ entities: pos: -37.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15205 components: - type: Transform @@ -125236,7 +125294,7 @@ entities: pos: -38.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15206 components: - type: Transform @@ -125244,7 +125302,7 @@ entities: pos: -38.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15207 components: - type: Transform @@ -125252,7 +125310,7 @@ entities: pos: -37.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15233 components: - type: Transform @@ -125260,7 +125318,7 @@ entities: pos: -42.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15260 components: - type: Transform @@ -125268,7 +125326,7 @@ entities: pos: -37.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15261 components: - type: Transform @@ -125276,7 +125334,7 @@ entities: pos: -38.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15269 components: - type: Transform @@ -125284,7 +125342,7 @@ entities: pos: -35.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15270 components: - type: Transform @@ -125292,21 +125350,21 @@ entities: pos: -34.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15303 components: - type: Transform pos: -47.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15304 components: - type: Transform pos: -45.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15321 components: - type: Transform @@ -125314,14 +125372,14 @@ entities: pos: -4.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15331 components: - type: Transform pos: -6.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15345 components: - type: Transform @@ -125329,7 +125387,7 @@ entities: pos: -7.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15351 components: - type: Transform @@ -125337,21 +125395,21 @@ entities: pos: -6.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15363 components: - type: Transform pos: -11.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15364 components: - type: Transform pos: -12.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15384 components: - type: Transform @@ -125359,14 +125417,14 @@ entities: pos: -16.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15385 components: - type: Transform pos: -17.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15391 components: - type: Transform @@ -125374,7 +125432,7 @@ entities: pos: -20.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15402 components: - type: Transform @@ -125382,14 +125440,14 @@ entities: pos: -19.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15403 components: - type: Transform pos: -21.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15455 components: - type: Transform @@ -125397,21 +125455,21 @@ entities: pos: 39.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15470 components: - type: Transform pos: 35.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15484 components: - type: Transform pos: 34.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15504 components: - type: Transform @@ -125427,7 +125485,7 @@ entities: pos: -20.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15678 components: - type: Transform @@ -125442,28 +125500,28 @@ entities: pos: -19.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15681 components: - type: Transform pos: -21.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15693 components: - type: Transform pos: -24.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15694 components: - type: Transform pos: -26.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15714 components: - type: Transform @@ -125471,7 +125529,7 @@ entities: pos: -20.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15720 components: - type: Transform @@ -125479,7 +125537,7 @@ entities: pos: -13.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15740 components: - type: Transform @@ -125487,7 +125545,7 @@ entities: pos: -19.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15741 components: - type: Transform @@ -125495,7 +125553,7 @@ entities: pos: -17.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15750 components: - type: Transform @@ -125503,7 +125561,7 @@ entities: pos: -14.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15756 components: - type: Transform @@ -125511,7 +125569,7 @@ entities: pos: -15.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15761 components: - type: Transform @@ -125519,7 +125577,7 @@ entities: pos: -21.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15767 components: - type: Transform @@ -125527,7 +125585,7 @@ entities: pos: -22.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15791 components: - type: Transform @@ -125535,7 +125593,7 @@ entities: pos: -11.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15792 components: - type: Transform @@ -125543,7 +125601,7 @@ entities: pos: -12.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15815 components: - type: Transform @@ -125551,7 +125609,7 @@ entities: pos: -26.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15820 components: - type: Transform @@ -125559,7 +125617,7 @@ entities: pos: -28.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15833 components: - type: Transform @@ -125567,7 +125625,7 @@ entities: pos: -29.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15840 components: - type: Transform @@ -125575,7 +125633,7 @@ entities: pos: -31.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15848 components: - type: Transform @@ -125583,7 +125641,7 @@ entities: pos: -31.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15853 components: - type: Transform @@ -125591,7 +125649,7 @@ entities: pos: -31.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15854 components: - type: Transform @@ -125599,7 +125657,7 @@ entities: pos: -31.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15856 components: - type: Transform @@ -125607,7 +125665,7 @@ entities: pos: -28.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15857 components: - type: Transform @@ -125615,7 +125673,7 @@ entities: pos: -25.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15858 components: - type: Transform @@ -125623,7 +125681,7 @@ entities: pos: -26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15894 components: - type: Transform @@ -125631,7 +125689,7 @@ entities: pos: -29.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15916 components: - type: Transform @@ -125639,7 +125697,7 @@ entities: pos: 0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15917 components: - type: Transform @@ -125647,7 +125705,7 @@ entities: pos: 1.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15935 components: - type: Transform @@ -125655,7 +125713,7 @@ entities: pos: -5.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15949 components: - type: Transform @@ -125663,7 +125721,7 @@ entities: pos: 4.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15968 components: - type: Transform @@ -125671,7 +125729,7 @@ entities: pos: 3.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15988 components: - type: Transform @@ -125679,7 +125737,7 @@ entities: pos: -9.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16006 components: - type: Transform @@ -125687,28 +125745,28 @@ entities: pos: -8.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16026 components: - type: Transform pos: -4.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16174 components: - type: Transform pos: -6.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16175 components: - type: Transform pos: -8.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16236 components: - type: Transform @@ -125716,7 +125774,7 @@ entities: pos: 6.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16242 components: - type: Transform @@ -125724,7 +125782,7 @@ entities: pos: 24.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16250 components: - type: Transform @@ -125732,14 +125790,14 @@ entities: pos: 23.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16264 components: - type: Transform pos: 23.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16266 components: - type: Transform @@ -125747,14 +125805,14 @@ entities: pos: 23.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16274 components: - type: Transform pos: 25.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16275 components: - type: Transform @@ -125762,7 +125820,7 @@ entities: pos: 26.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16287 components: - type: Transform @@ -125770,7 +125828,7 @@ entities: pos: 26.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16288 components: - type: Transform @@ -125778,28 +125836,28 @@ entities: pos: 24.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16301 components: - type: Transform pos: 24.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16302 components: - type: Transform pos: 26.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16308 components: - type: Transform pos: 28.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16309 components: - type: Transform @@ -125807,21 +125865,21 @@ entities: pos: 29.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16315 components: - type: Transform pos: 33.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16320 components: - type: Transform pos: 34.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16373 components: - type: Transform @@ -125829,7 +125887,7 @@ entities: pos: 18.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16394 components: - type: Transform @@ -125837,14 +125895,14 @@ entities: pos: 7.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16397 components: - type: Transform pos: 10.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16400 components: - type: Transform @@ -125852,7 +125910,7 @@ entities: pos: 10.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16404 components: - type: Transform @@ -125860,7 +125918,7 @@ entities: pos: 7.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16406 components: - type: Transform @@ -125868,7 +125926,7 @@ entities: pos: 18.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16407 components: - type: Transform @@ -125876,7 +125934,7 @@ entities: pos: 5.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16434 components: - type: Transform @@ -125884,21 +125942,21 @@ entities: pos: 4.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16451 components: - type: Transform pos: 4.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16472 components: - type: Transform pos: 9.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16492 components: - type: Transform @@ -125906,7 +125964,7 @@ entities: pos: -0.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16493 components: - type: Transform @@ -125914,7 +125972,7 @@ entities: pos: -8.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16544 components: - type: Transform @@ -125922,7 +125980,7 @@ entities: pos: 1.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16545 components: - type: Transform @@ -125930,7 +125988,7 @@ entities: pos: -0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16557 components: - type: Transform @@ -125938,7 +125996,7 @@ entities: pos: -0.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16558 components: - type: Transform @@ -125946,7 +126004,7 @@ entities: pos: 1.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 17113 components: - type: Transform @@ -125954,14 +126012,14 @@ entities: pos: -19.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 17606 components: - type: Transform pos: 17.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18405 components: - type: Transform @@ -125969,7 +126027,7 @@ entities: pos: 60.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18431 components: - type: Transform @@ -125977,14 +126035,14 @@ entities: pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18432 components: - type: Transform pos: 60.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 19545 components: - type: Transform @@ -125992,7 +126050,7 @@ entities: pos: -9.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 19546 components: - type: Transform @@ -126000,7 +126058,7 @@ entities: pos: -4.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 21166 components: - type: Transform @@ -126023,7 +126081,7 @@ entities: pos: 1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 21742 components: - type: Transform @@ -126036,7 +126094,7 @@ entities: pos: -15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 22671 components: - type: Transform @@ -126091,7 +126149,7 @@ entities: pos: -21.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23085 components: - type: Transform @@ -126099,7 +126157,7 @@ entities: pos: -41.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23086 components: - type: Transform @@ -126107,7 +126165,7 @@ entities: pos: -42.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23101 components: - type: Transform @@ -126115,7 +126173,7 @@ entities: pos: -13.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23125 components: - type: Transform @@ -126123,7 +126181,7 @@ entities: pos: -11.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23126 components: - type: Transform @@ -126131,7 +126189,7 @@ entities: pos: -10.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23495 components: - type: Transform @@ -126144,14 +126202,14 @@ entities: pos: -42.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 24165 components: - type: Transform pos: -13.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 24284 components: - type: Transform @@ -126159,14 +126217,14 @@ entities: pos: 1.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 24289 components: - type: Transform pos: 7.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25243 components: - type: Transform @@ -126198,7 +126256,7 @@ entities: pos: -10.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25520 components: - type: Transform @@ -126206,7 +126264,7 @@ entities: pos: -11.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 27898 components: - type: Transform @@ -126236,14 +126294,14 @@ entities: pos: -29.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 28557 components: - type: Transform pos: -23.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28560 components: - type: Transform @@ -126251,7 +126309,7 @@ entities: pos: -20.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28624 components: - type: Transform @@ -126386,7 +126444,7 @@ entities: pos: -25.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8771 components: - type: Transform @@ -126394,7 +126452,7 @@ entities: pos: -25.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8799 components: - type: Transform @@ -126460,7 +126518,7 @@ entities: pos: -43.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23543 components: - type: Transform @@ -126468,7 +126526,7 @@ entities: pos: -43.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 24296 components: - type: Transform @@ -126609,7 +126667,7 @@ entities: pos: -19.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23527 components: - type: Transform @@ -126648,7 +126706,7 @@ entities: pos: -26.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15687 components: - type: Transform @@ -126673,7 +126731,7 @@ entities: pos: -26.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - proto: GasValve entities: - uid: 888 @@ -126797,7 +126855,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8809 components: - type: Transform @@ -126807,7 +126865,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#947507FF' + color: '#333333FF' - uid: 8855 components: - type: Transform @@ -126816,14 +126874,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 8910 components: - type: Transform @@ -126882,14 +126932,14 @@ entities: parent: 2 - type: GasValve open: False - - uid: 10466 + - uid: 10182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,24.5 + rot: -1.5707963267948966 rad + pos: -23.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF1212FF' - uid: 23828 components: - type: Transform @@ -126900,6 +126950,14 @@ entities: open: False - type: AtmosPipeColor color: '#3AB334FF' + - uid: 28431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 28605 components: - type: Transform @@ -126916,7 +126974,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#947507FF' + color: '#FF1212FF' - uid: 28827 components: - type: Transform @@ -126984,7 +127042,7 @@ entities: pos: -47.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 1597 components: - type: Transform @@ -126995,7 +127053,7 @@ entities: deviceLists: - 15250 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 1922 components: - type: Transform @@ -127005,7 +127063,7 @@ entities: deviceLists: - 5583 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 2118 components: - type: Transform @@ -127015,7 +127073,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 3136 components: - type: Transform @@ -127026,7 +127084,7 @@ entities: deviceLists: - 28611 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 7348 components: - type: Transform @@ -127034,7 +127092,7 @@ entities: pos: -12.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 10592 components: - type: Transform @@ -127045,7 +127103,7 @@ entities: deviceLists: - 18270 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 11291 components: - type: Transform @@ -127055,7 +127113,7 @@ entities: deviceLists: - 23235 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12298 components: - type: Transform @@ -127066,7 +127124,7 @@ entities: deviceLists: - 18258 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 12821 components: - type: Transform @@ -127074,7 +127132,7 @@ entities: pos: 44.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13132 components: - type: Transform @@ -127085,7 +127143,7 @@ entities: deviceLists: - 18645 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13339 components: - type: Transform @@ -127096,7 +127154,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13351 components: - type: Transform @@ -127107,7 +127165,7 @@ entities: deviceLists: - 18501 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13557 components: - type: Transform @@ -127118,7 +127176,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13558 components: - type: Transform @@ -127129,7 +127187,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13584 components: - type: Transform @@ -127140,7 +127198,7 @@ entities: deviceLists: - 18567 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13585 components: - type: Transform @@ -127151,7 +127209,7 @@ entities: deviceLists: - 18564 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13598 components: - type: Transform @@ -127161,7 +127219,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13630 components: - type: Transform @@ -127172,7 +127230,7 @@ entities: deviceLists: - 23683 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13657 components: - type: Transform @@ -127183,7 +127241,7 @@ entities: deviceLists: - 18285 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13723 components: - type: Transform @@ -127191,7 +127249,7 @@ entities: pos: -18.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13724 components: - type: Transform @@ -127199,7 +127257,7 @@ entities: pos: -21.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13736 components: - type: Transform @@ -127207,7 +127265,7 @@ entities: pos: -21.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13764 components: - type: Transform @@ -127218,7 +127276,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13768 components: - type: Transform @@ -127229,7 +127287,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13861 components: - type: Transform @@ -127237,7 +127295,7 @@ entities: pos: -19.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13867 components: - type: Transform @@ -127245,7 +127303,7 @@ entities: pos: -19.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13868 components: - type: Transform @@ -127253,28 +127311,28 @@ entities: pos: -19.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13869 components: - type: Transform pos: -14.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13870 components: - type: Transform pos: -9.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13871 components: - type: Transform pos: -4.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13903 components: - type: Transform @@ -127285,7 +127343,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13934 components: - type: Transform @@ -127296,7 +127354,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13962 components: - type: Transform @@ -127304,7 +127362,7 @@ entities: pos: -25.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 13982 components: - type: Transform @@ -127312,14 +127370,14 @@ entities: pos: -7.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14006 components: - type: Transform pos: 3.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14052 components: - type: Transform @@ -127327,7 +127385,7 @@ entities: pos: 15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14055 components: - type: Transform @@ -127335,7 +127393,7 @@ entities: pos: 21.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14059 components: - type: Transform @@ -127343,7 +127401,7 @@ entities: pos: 23.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14075 components: - type: Transform @@ -127351,7 +127409,7 @@ entities: pos: 23.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14089 components: - type: Transform @@ -127359,7 +127417,7 @@ entities: pos: 19.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14130 components: - type: Transform @@ -127367,7 +127425,7 @@ entities: pos: 8.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14165 components: - type: Transform @@ -127375,7 +127433,7 @@ entities: pos: 32.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14166 components: - type: Transform @@ -127383,7 +127441,7 @@ entities: pos: 36.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14236 components: - type: Transform @@ -127391,7 +127449,7 @@ entities: pos: 44.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14253 components: - type: Transform @@ -127399,7 +127457,7 @@ entities: pos: 50.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14308 components: - type: Transform @@ -127407,7 +127465,7 @@ entities: pos: 52.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14309 components: - type: Transform @@ -127415,7 +127473,7 @@ entities: pos: 48.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14310 components: - type: Transform @@ -127423,7 +127481,7 @@ entities: pos: 44.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14321 components: - type: Transform @@ -127434,7 +127492,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14371 components: - type: Transform @@ -127445,7 +127503,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14384 components: - type: Transform @@ -127456,14 +127514,14 @@ entities: deviceLists: - 18650 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14391 components: - type: Transform pos: 44.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14397 components: - type: Transform @@ -127471,7 +127529,7 @@ entities: pos: 50.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14442 components: - type: Transform @@ -127479,7 +127537,7 @@ entities: pos: 25.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14455 components: - type: Transform @@ -127490,7 +127548,7 @@ entities: deviceLists: - 18652 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14512 components: - type: Transform @@ -127498,7 +127556,7 @@ entities: pos: 45.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14513 components: - type: Transform @@ -127506,7 +127564,7 @@ entities: pos: 55.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14516 components: - type: Transform @@ -127514,7 +127572,7 @@ entities: pos: 48.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14527 components: - type: Transform @@ -127525,7 +127583,7 @@ entities: deviceLists: - 18658 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14530 components: - type: Transform @@ -127536,7 +127594,7 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14614 components: - type: Transform @@ -127547,7 +127605,7 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14630 components: - type: Transform @@ -127555,7 +127613,7 @@ entities: pos: 25.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14643 components: - type: Transform @@ -127563,7 +127621,7 @@ entities: pos: -14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14645 components: - type: Transform @@ -127571,7 +127629,7 @@ entities: pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14666 components: - type: Transform @@ -127579,7 +127637,7 @@ entities: pos: 10.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14675 components: - type: Transform @@ -127587,7 +127645,7 @@ entities: pos: 24.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14689 components: - type: Transform @@ -127598,7 +127656,7 @@ entities: deviceLists: - 18463 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14721 components: - type: Transform @@ -127609,7 +127667,7 @@ entities: deviceLists: - 28879 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14741 components: - type: Transform @@ -127619,7 +127677,7 @@ entities: deviceLists: - 18478 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14748 components: - type: Transform @@ -127629,7 +127687,7 @@ entities: deviceLists: - 18480 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14764 components: - type: Transform @@ -127637,7 +127695,7 @@ entities: pos: 35.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14765 components: - type: Transform @@ -127645,7 +127703,7 @@ entities: pos: 35.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14768 components: - type: Transform @@ -127656,7 +127714,7 @@ entities: deviceLists: - 18482 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14868 components: - type: Transform @@ -127667,7 +127725,7 @@ entities: deviceLists: - 18663 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14922 components: - type: Transform @@ -127677,7 +127735,7 @@ entities: deviceLists: - 18678 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14923 components: - type: Transform @@ -127687,7 +127745,7 @@ entities: deviceLists: - 18667 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14924 components: - type: Transform @@ -127695,7 +127753,7 @@ entities: pos: 13.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14938 components: - type: Transform @@ -127703,7 +127761,7 @@ entities: pos: 19.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14952 components: - type: Transform @@ -127711,7 +127769,7 @@ entities: pos: -38.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14953 components: - type: Transform @@ -127719,7 +127777,7 @@ entities: pos: -46.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14961 components: - type: Transform @@ -127727,7 +127785,7 @@ entities: pos: -38.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14968 components: - type: Transform @@ -127738,7 +127796,7 @@ entities: deviceLists: - 29462 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14975 components: - type: Transform @@ -127746,7 +127804,7 @@ entities: pos: -38.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 14990 components: - type: Transform @@ -127754,7 +127812,7 @@ entities: pos: -37.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15028 components: - type: Transform @@ -127766,7 +127824,7 @@ entities: - 18583 - 18584 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15106 components: - type: Transform @@ -127777,7 +127835,7 @@ entities: deviceLists: - 18587 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15108 components: - type: Transform @@ -127788,14 +127846,14 @@ entities: deviceLists: - 18584 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15117 components: - type: Transform pos: -49.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15128 components: - type: Transform @@ -127806,7 +127864,7 @@ entities: deviceLists: - 18328 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15150 components: - type: Transform @@ -127816,7 +127874,7 @@ entities: deviceLists: - 18317 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15151 components: - type: Transform @@ -127824,7 +127882,7 @@ entities: pos: -31.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15157 components: - type: Transform @@ -127832,7 +127890,7 @@ entities: pos: -44.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15166 components: - type: Transform @@ -127840,7 +127898,7 @@ entities: pos: -46.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15190 components: - type: Transform @@ -127848,7 +127906,7 @@ entities: pos: -37.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15243 components: - type: Transform @@ -127856,7 +127914,7 @@ entities: pos: -30.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15246 components: - type: Transform @@ -127867,7 +127925,7 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15267 components: - type: Transform @@ -127878,7 +127936,7 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15286 components: - type: Transform @@ -127886,7 +127944,7 @@ entities: pos: -35.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15290 components: - type: Transform @@ -127894,7 +127952,7 @@ entities: pos: -30.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15318 components: - type: Transform @@ -127905,14 +127963,14 @@ entities: deviceLists: - 18338 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15326 components: - type: Transform pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15337 components: - type: Transform @@ -127920,7 +127978,7 @@ entities: pos: -12.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15356 components: - type: Transform @@ -127933,7 +127991,7 @@ entities: - 18331 - 18332 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15386 components: - type: Transform @@ -127941,14 +127999,14 @@ entities: pos: -17.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15415 components: - type: Transform pos: -20.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15417 components: - type: Transform @@ -127956,7 +128014,7 @@ entities: pos: -25.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15419 components: - type: Transform @@ -127967,7 +128025,7 @@ entities: deviceLists: - 18690 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15421 components: - type: Transform @@ -127975,7 +128033,7 @@ entities: pos: -21.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15423 components: - type: Transform @@ -127986,7 +128044,7 @@ entities: deviceLists: - 23927 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15445 components: - type: Transform @@ -127997,7 +128055,7 @@ entities: deviceLists: - 5583 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15476 components: - type: Transform @@ -128005,7 +128063,7 @@ entities: pos: 35.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15477 components: - type: Transform @@ -128013,7 +128071,7 @@ entities: pos: 31.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15567 components: - type: Transform @@ -128021,7 +128079,7 @@ entities: pos: 58.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15618 components: - type: Transform @@ -128032,7 +128090,7 @@ entities: deviceLists: - 15512 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15651 components: - type: Transform @@ -128043,7 +128101,7 @@ entities: deviceLists: - 18603 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15652 components: - type: Transform @@ -128053,7 +128111,7 @@ entities: deviceLists: - 18603 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15710 components: - type: Transform @@ -128064,7 +128122,7 @@ entities: deviceLists: - 18691 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15713 components: - type: Transform @@ -128072,7 +128130,7 @@ entities: pos: -26.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15716 components: - type: Transform @@ -128083,7 +128141,7 @@ entities: deviceLists: - 18606 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15742 components: - type: Transform @@ -128094,7 +128152,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15776 components: - type: Transform @@ -128104,7 +128162,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15789 components: - type: Transform @@ -128114,7 +128172,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15790 components: - type: Transform @@ -128124,7 +128182,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15796 components: - type: Transform @@ -128132,7 +128190,7 @@ entities: pos: -12.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15811 components: - type: Transform @@ -128140,7 +128198,7 @@ entities: pos: -6.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15813 components: - type: Transform @@ -128151,7 +128209,7 @@ entities: deviceLists: - 18687 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15827 components: - type: Transform @@ -128161,7 +128219,7 @@ entities: deviceLists: - 29459 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15849 components: - type: Transform @@ -128172,7 +128230,7 @@ entities: deviceLists: - 29460 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15851 components: - type: Transform @@ -128180,7 +128238,7 @@ entities: pos: -30.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15898 components: - type: Transform @@ -128191,21 +128249,21 @@ entities: deviceLists: - 18697 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15899 components: - type: Transform pos: -31.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15900 components: - type: Transform pos: -28.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15901 components: - type: Transform @@ -128213,7 +128271,7 @@ entities: pos: -24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 15912 components: - type: Transform @@ -128221,7 +128279,7 @@ entities: pos: -24.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16030 components: - type: Transform @@ -128232,7 +128290,7 @@ entities: deviceLists: - 18240 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16033 components: - type: Transform @@ -128243,7 +128301,7 @@ entities: deviceLists: - 18240 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16107 components: - type: Transform @@ -128254,7 +128312,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16110 components: - type: Transform @@ -128265,7 +128323,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16113 components: - type: Transform @@ -128276,7 +128334,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16114 components: - type: Transform @@ -128287,7 +128345,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16125 components: - type: Transform @@ -128295,7 +128353,7 @@ entities: pos: 46.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16136 components: - type: Transform @@ -128303,7 +128361,7 @@ entities: pos: 38.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16149 components: - type: Transform @@ -128314,7 +128372,7 @@ entities: deviceLists: - 3220 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16179 components: - type: Transform @@ -128325,7 +128383,7 @@ entities: deviceLists: - 14996 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16188 components: - type: Transform @@ -128333,7 +128391,7 @@ entities: pos: -11.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16237 components: - type: Transform @@ -128344,7 +128402,7 @@ entities: deviceLists: - 18530 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16251 components: - type: Transform @@ -128352,7 +128410,7 @@ entities: pos: 23.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16262 components: - type: Transform @@ -128360,7 +128418,7 @@ entities: pos: 26.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16285 components: - type: Transform @@ -128371,7 +128429,7 @@ entities: deviceLists: - 18536 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16297 components: - type: Transform @@ -128382,7 +128440,7 @@ entities: deviceLists: - 18541 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16334 components: - type: Transform @@ -128393,14 +128451,14 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16335 components: - type: Transform pos: 34.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16346 components: - type: Transform @@ -128408,7 +128466,7 @@ entities: pos: 31.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16357 components: - type: Transform @@ -128416,7 +128474,7 @@ entities: pos: 31.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16401 components: - type: Transform @@ -128427,7 +128485,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16416 components: - type: Transform @@ -128438,7 +128496,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16433 components: - type: Transform @@ -128449,21 +128507,21 @@ entities: deviceLists: - 18553 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16447 components: - type: Transform pos: 4.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16448 components: - type: Transform pos: 3.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16476 components: - type: Transform @@ -128471,7 +128529,7 @@ entities: pos: 13.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16477 components: - type: Transform @@ -128479,7 +128537,7 @@ entities: pos: 4.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16484 components: - type: Transform @@ -128489,7 +128547,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16485 components: - type: Transform @@ -128500,7 +128558,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16486 components: - type: Transform @@ -128511,7 +128569,7 @@ entities: deviceLists: - 18272 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16489 components: - type: Transform @@ -128521,7 +128579,7 @@ entities: deviceLists: - 18273 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16495 components: - type: Transform @@ -128532,7 +128590,7 @@ entities: deviceLists: - 18271 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16497 components: - type: Transform @@ -128543,7 +128601,7 @@ entities: deviceLists: - 18303 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16504 components: - type: Transform @@ -128554,7 +128612,7 @@ entities: deviceLists: - 18305 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16511 components: - type: Transform @@ -128565,7 +128623,7 @@ entities: deviceLists: - 18332 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16520 components: - type: Transform @@ -128576,7 +128634,7 @@ entities: deviceLists: - 18333 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16521 components: - type: Transform @@ -128587,7 +128645,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16530 components: - type: Transform @@ -128597,7 +128655,7 @@ entities: deviceLists: - 18366 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16532 components: - type: Transform @@ -128607,7 +128665,7 @@ entities: deviceLists: - 10169 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16542 components: - type: Transform @@ -128617,7 +128675,7 @@ entities: deviceLists: - 18263 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16547 components: - type: Transform @@ -128628,7 +128686,7 @@ entities: deviceLists: - 18247 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 16774 components: - type: Transform @@ -128639,7 +128697,7 @@ entities: deviceLists: - 20717 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18410 components: - type: Transform @@ -128650,14 +128708,14 @@ entities: deviceLists: - 18443 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18411 components: - type: Transform pos: 53.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 18654 components: - type: Transform @@ -128668,7 +128726,7 @@ entities: deviceLists: - 18658 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 19072 components: - type: Transform @@ -128676,7 +128734,7 @@ entities: pos: 30.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 21181 components: - type: Transform @@ -128750,7 +128808,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23076 components: - type: Transform @@ -128760,7 +128818,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23124 components: - type: Transform @@ -128768,21 +128826,21 @@ entities: pos: 0.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23535 components: - type: Transform pos: -11.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23704 components: - type: Transform pos: -1.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23706 components: - type: Transform @@ -128793,7 +128851,7 @@ entities: deviceLists: - 23682 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 23900 components: - type: Transform @@ -128801,7 +128859,7 @@ entities: pos: 58.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 24526 components: - type: Transform @@ -128821,7 +128879,7 @@ entities: pos: -8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 25571 components: - type: Transform @@ -128829,7 +128887,7 @@ entities: pos: -11.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 27894 components: - type: Transform @@ -128854,7 +128912,7 @@ entities: deviceLists: - 18564 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 28966 components: - type: Transform @@ -128864,7 +128922,7 @@ entities: deviceLists: - 29040 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 29707 components: - type: Transform @@ -128872,7 +128930,7 @@ entities: pos: 12.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - proto: GasVentScrubber entities: - uid: 53 @@ -128882,7 +128940,7 @@ entities: pos: -41.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 374 components: - type: Transform @@ -128893,7 +128951,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 412 components: - type: Transform @@ -128903,7 +128961,7 @@ entities: deviceLists: - 5583 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 879 components: - type: Transform @@ -128911,7 +128969,7 @@ entities: pos: -47.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 1540 components: - type: Transform @@ -128919,7 +128977,7 @@ entities: pos: -10.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 2175 components: - type: Transform @@ -128930,7 +128988,7 @@ entities: deviceLists: - 29040 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 7349 components: - type: Transform @@ -128938,7 +128996,7 @@ entities: pos: -12.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 8128 components: - type: Transform @@ -128970,7 +129028,7 @@ entities: deviceLists: - 28611 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10876 components: - type: Transform @@ -128981,7 +129039,7 @@ entities: deviceLists: - 18258 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13281 components: - type: Transform @@ -128992,7 +129050,7 @@ entities: deviceLists: - 18501 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13559 components: - type: Transform @@ -129003,7 +129061,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13560 components: - type: Transform @@ -129014,7 +129072,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13595 components: - type: Transform @@ -129024,7 +129082,7 @@ entities: deviceLists: - 18564 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13599 components: - type: Transform @@ -129034,7 +129092,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13600 components: - type: Transform @@ -129044,7 +129102,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13629 components: - type: Transform @@ -129055,7 +129113,7 @@ entities: deviceLists: - 23683 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13656 components: - type: Transform @@ -129065,7 +129123,7 @@ entities: deviceLists: - 18285 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13722 components: - type: Transform @@ -129073,7 +129131,7 @@ entities: pos: -18.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13725 components: - type: Transform @@ -129081,7 +129139,7 @@ entities: pos: -21.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13735 components: - type: Transform @@ -129089,7 +129147,7 @@ entities: pos: -21.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13763 components: - type: Transform @@ -129100,7 +129158,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13767 components: - type: Transform @@ -129110,7 +129168,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13860 components: - type: Transform @@ -129118,7 +129176,7 @@ entities: pos: -19.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13872 components: - type: Transform @@ -129126,35 +129184,35 @@ entities: pos: -19.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13873 components: - type: Transform pos: -16.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13874 components: - type: Transform pos: -11.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13875 components: - type: Transform pos: -6.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13876 components: - type: Transform pos: -2.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13901 components: - type: Transform @@ -129164,7 +129222,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13933 components: - type: Transform @@ -129175,7 +129233,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13980 components: - type: Transform @@ -129183,7 +129241,7 @@ entities: pos: -25.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 13981 components: - type: Transform @@ -129191,21 +129249,21 @@ entities: pos: -4.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14005 components: - type: Transform pos: 5.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14020 components: - type: Transform pos: 19.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14057 components: - type: Transform @@ -129213,7 +129271,7 @@ entities: pos: 15.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14060 components: - type: Transform @@ -129221,14 +129279,14 @@ entities: pos: 21.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14074 components: - type: Transform pos: 23.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14088 components: - type: Transform @@ -129236,14 +129294,14 @@ entities: pos: 21.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14131 components: - type: Transform pos: 8.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14167 components: - type: Transform @@ -129251,7 +129309,7 @@ entities: pos: 32.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14168 components: - type: Transform @@ -129259,7 +129317,7 @@ entities: pos: 36.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14238 components: - type: Transform @@ -129267,7 +129325,7 @@ entities: pos: 42.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14239 components: - type: Transform @@ -129275,7 +129333,7 @@ entities: pos: 43.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14254 components: - type: Transform @@ -129286,7 +129344,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14311 components: - type: Transform @@ -129294,7 +129352,7 @@ entities: pos: 54.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14312 components: - type: Transform @@ -129302,7 +129360,7 @@ entities: pos: 50.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14313 components: - type: Transform @@ -129310,7 +129368,7 @@ entities: pos: 46.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14322 components: - type: Transform @@ -129321,7 +129379,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14373 components: - type: Transform @@ -129332,7 +129390,7 @@ entities: deviceLists: - 18645 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14374 components: - type: Transform @@ -129342,7 +129400,7 @@ entities: deviceLists: - 18644 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14383 components: - type: Transform @@ -129352,14 +129410,14 @@ entities: deviceLists: - 18650 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14392 components: - type: Transform pos: 42.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14398 components: - type: Transform @@ -129367,14 +129425,14 @@ entities: pos: 50.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14452 components: - type: Transform pos: 28.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14454 components: - type: Transform @@ -129385,7 +129443,7 @@ entities: deviceLists: - 18652 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14511 components: - type: Transform @@ -129393,7 +129451,7 @@ entities: pos: 47.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14514 components: - type: Transform @@ -129401,7 +129459,7 @@ entities: pos: 55.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14515 components: - type: Transform @@ -129409,7 +129467,7 @@ entities: pos: 48.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14528 components: - type: Transform @@ -129420,7 +129478,7 @@ entities: deviceLists: - 18658 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14532 components: - type: Transform @@ -129431,7 +129489,7 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14615 components: - type: Transform @@ -129442,21 +129500,21 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14629 components: - type: Transform pos: 25.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14644 components: - type: Transform pos: -15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14646 components: - type: Transform @@ -129464,7 +129522,7 @@ entities: pos: -21.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14667 components: - type: Transform @@ -129472,7 +129530,7 @@ entities: pos: 11.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14674 components: - type: Transform @@ -129480,7 +129538,7 @@ entities: pos: 23.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14690 components: - type: Transform @@ -129491,7 +129549,7 @@ entities: deviceLists: - 18463 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14720 components: - type: Transform @@ -129502,7 +129560,7 @@ entities: deviceLists: - 28879 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14740 components: - type: Transform @@ -129512,7 +129570,7 @@ entities: deviceLists: - 18478 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14749 components: - type: Transform @@ -129522,7 +129580,7 @@ entities: deviceLists: - 18480 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14763 components: - type: Transform @@ -129530,14 +129588,14 @@ entities: pos: 36.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14766 components: - type: Transform pos: 35.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14767 components: - type: Transform @@ -129547,7 +129605,7 @@ entities: deviceLists: - 18482 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14869 components: - type: Transform @@ -129558,7 +129616,7 @@ entities: deviceLists: - 18663 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14925 components: - type: Transform @@ -129568,7 +129626,7 @@ entities: deviceLists: - 18678 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14926 components: - type: Transform @@ -129578,7 +129636,7 @@ entities: deviceLists: - 18667 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14927 components: - type: Transform @@ -129586,7 +129644,7 @@ entities: pos: 15.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14939 components: - type: Transform @@ -129594,7 +129652,7 @@ entities: pos: 19.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14954 components: - type: Transform @@ -129602,7 +129660,7 @@ entities: pos: -46.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14955 components: - type: Transform @@ -129610,7 +129668,7 @@ entities: pos: -38.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14960 components: - type: Transform @@ -129618,7 +129676,7 @@ entities: pos: -38.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14974 components: - type: Transform @@ -129626,14 +129684,14 @@ entities: pos: -38.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 14989 components: - type: Transform pos: -37.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15029 components: - type: Transform @@ -129645,7 +129703,7 @@ entities: - 18583 - 18584 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15105 components: - type: Transform @@ -129656,7 +129714,7 @@ entities: deviceLists: - 18587 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15109 components: - type: Transform @@ -129667,14 +129725,14 @@ entities: deviceLists: - 18584 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15118 components: - type: Transform pos: -48.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15129 components: - type: Transform @@ -129685,7 +129743,7 @@ entities: deviceLists: - 18328 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15148 components: - type: Transform @@ -129695,7 +129753,7 @@ entities: deviceLists: - 18317 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15149 components: - type: Transform @@ -129703,7 +129761,7 @@ entities: pos: -29.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15156 components: - type: Transform @@ -129711,7 +129769,7 @@ entities: pos: -44.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15167 components: - type: Transform @@ -129719,7 +129777,7 @@ entities: pos: -46.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15168 components: - type: Transform @@ -129730,7 +129788,7 @@ entities: deviceLists: - 29462 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15191 components: - type: Transform @@ -129738,7 +129796,7 @@ entities: pos: -36.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15237 components: - type: Transform @@ -129748,7 +129806,7 @@ entities: deviceLists: - 15250 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15242 components: - type: Transform @@ -129756,7 +129814,7 @@ entities: pos: -30.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15247 components: - type: Transform @@ -129766,7 +129824,7 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15266 components: - type: Transform @@ -129777,21 +129835,21 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15287 components: - type: Transform pos: -35.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15289 components: - type: Transform pos: -30.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15319 components: - type: Transform @@ -129802,14 +129860,14 @@ entities: deviceLists: - 18338 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15325 components: - type: Transform pos: -2.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15357 components: - type: Transform @@ -129822,14 +129880,14 @@ entities: - 18331 - 18332 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15387 components: - type: Transform pos: -16.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15401 components: - type: Transform @@ -129837,7 +129895,7 @@ entities: pos: -15.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15414 components: - type: Transform @@ -129845,7 +129903,7 @@ entities: pos: -20.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15418 components: - type: Transform @@ -129853,7 +129911,7 @@ entities: pos: -25.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15420 components: - type: Transform @@ -129864,7 +129922,7 @@ entities: deviceLists: - 18690 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15422 components: - type: Transform @@ -129872,7 +129930,7 @@ entities: pos: -19.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15424 components: - type: Transform @@ -129883,7 +129941,7 @@ entities: deviceLists: - 23927 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15444 components: - type: Transform @@ -129894,14 +129952,14 @@ entities: deviceLists: - 5583 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15461 components: - type: Transform pos: 40.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15493 components: - type: Transform @@ -129909,7 +129967,7 @@ entities: pos: 31.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15494 components: - type: Transform @@ -129917,7 +129975,7 @@ entities: pos: 35.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15549 components: - type: Transform @@ -129925,7 +129983,7 @@ entities: pos: 57.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15615 components: - type: Transform @@ -129936,7 +129994,7 @@ entities: deviceLists: - 15512 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15653 components: - type: Transform @@ -129947,7 +130005,7 @@ entities: deviceLists: - 18603 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15654 components: - type: Transform @@ -129957,7 +130015,7 @@ entities: deviceLists: - 18603 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15711 components: - type: Transform @@ -129968,7 +130026,7 @@ entities: deviceLists: - 18691 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15712 components: - type: Transform @@ -129976,7 +130034,7 @@ entities: pos: -24.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15717 components: - type: Transform @@ -129987,7 +130045,7 @@ entities: deviceLists: - 18606 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15743 components: - type: Transform @@ -129998,7 +130056,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15775 components: - type: Transform @@ -130008,7 +130066,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15787 components: - type: Transform @@ -130018,7 +130076,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15788 components: - type: Transform @@ -130028,14 +130086,14 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15797 components: - type: Transform pos: -12.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15809 components: - type: Transform @@ -130043,7 +130101,7 @@ entities: pos: -6.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15814 components: - type: Transform @@ -130054,7 +130112,7 @@ entities: deviceLists: - 18687 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15828 components: - type: Transform @@ -130064,7 +130122,7 @@ entities: deviceLists: - 29459 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15850 components: - type: Transform @@ -130075,7 +130133,7 @@ entities: deviceLists: - 29460 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15852 components: - type: Transform @@ -130083,7 +130141,7 @@ entities: pos: -30.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15902 components: - type: Transform @@ -130094,28 +130152,28 @@ entities: deviceLists: - 18697 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15903 components: - type: Transform pos: -32.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15904 components: - type: Transform pos: -29.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15905 components: - type: Transform pos: -26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15913 components: - type: Transform @@ -130123,7 +130181,7 @@ entities: pos: -26.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 15934 components: - type: Transform @@ -130133,14 +130191,14 @@ entities: deviceLists: - 18240 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16031 components: - type: Transform pos: 0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16111 components: - type: Transform @@ -130151,7 +130209,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16112 components: - type: Transform @@ -130162,7 +130220,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16115 components: - type: Transform @@ -130173,7 +130231,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16116 components: - type: Transform @@ -130184,7 +130242,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16126 components: - type: Transform @@ -130192,14 +130250,14 @@ entities: pos: 48.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16137 components: - type: Transform pos: 40.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16148 components: - type: Transform @@ -130210,7 +130268,7 @@ entities: deviceLists: - 3220 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16180 components: - type: Transform @@ -130221,7 +130279,7 @@ entities: deviceLists: - 14996 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16189 components: - type: Transform @@ -130229,7 +130287,7 @@ entities: pos: -12.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16238 components: - type: Transform @@ -130239,7 +130297,7 @@ entities: deviceLists: - 18530 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16252 components: - type: Transform @@ -130247,7 +130305,7 @@ entities: pos: 24.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16263 components: - type: Transform @@ -130255,7 +130313,7 @@ entities: pos: 25.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16267 components: - type: Transform @@ -130266,7 +130324,7 @@ entities: deviceLists: - 18536 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16298 components: - type: Transform @@ -130277,7 +130335,7 @@ entities: deviceLists: - 18541 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16336 components: - type: Transform @@ -130287,14 +130345,14 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16337 components: - type: Transform pos: 35.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16345 components: - type: Transform @@ -130302,7 +130360,7 @@ entities: pos: 36.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16358 components: - type: Transform @@ -130310,7 +130368,7 @@ entities: pos: 31.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16402 components: - type: Transform @@ -130320,7 +130378,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16410 components: - type: Transform @@ -130331,7 +130389,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16432 components: - type: Transform @@ -130341,7 +130399,7 @@ entities: deviceLists: - 18553 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16449 components: - type: Transform @@ -130349,14 +130407,14 @@ entities: pos: 4.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16450 components: - type: Transform pos: 3.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16474 components: - type: Transform @@ -130364,7 +130422,7 @@ entities: pos: 9.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16475 components: - type: Transform @@ -130372,7 +130430,7 @@ entities: pos: 14.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16482 components: - type: Transform @@ -130383,7 +130441,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16483 components: - type: Transform @@ -130393,7 +130451,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16490 components: - type: Transform @@ -130404,7 +130462,7 @@ entities: deviceLists: - 18273 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16491 components: - type: Transform @@ -130415,7 +130473,7 @@ entities: deviceLists: - 18270 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16496 components: - type: Transform @@ -130426,7 +130484,7 @@ entities: deviceLists: - 18271 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16498 components: - type: Transform @@ -130436,7 +130494,7 @@ entities: deviceLists: - 18303 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16503 components: - type: Transform @@ -130446,7 +130504,7 @@ entities: deviceLists: - 18305 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16512 components: - type: Transform @@ -130454,7 +130512,7 @@ entities: pos: -44.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16522 components: - type: Transform @@ -130465,7 +130523,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16529 components: - type: Transform @@ -130476,7 +130534,7 @@ entities: deviceLists: - 18366 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16531 components: - type: Transform @@ -130487,7 +130545,7 @@ entities: deviceLists: - 10169 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16543 components: - type: Transform @@ -130498,7 +130556,7 @@ entities: deviceLists: - 18263 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16546 components: - type: Transform @@ -130509,7 +130567,7 @@ entities: deviceLists: - 18247 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16556 components: - type: Transform @@ -130520,7 +130578,7 @@ entities: deviceLists: - 18499 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 16794 components: - type: Transform @@ -130531,7 +130589,7 @@ entities: deviceLists: - 18567 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18330 components: - type: Transform @@ -130542,7 +130600,7 @@ entities: deviceLists: - 23235 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18408 components: - type: Transform @@ -130553,7 +130611,7 @@ entities: deviceLists: - 18440 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18409 components: - type: Transform @@ -130563,7 +130621,7 @@ entities: deviceLists: - 18443 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18412 components: - type: Transform @@ -130571,7 +130629,7 @@ entities: pos: 53.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 18655 components: - type: Transform @@ -130582,7 +130640,7 @@ entities: deviceLists: - 18658 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 19074 components: - type: Transform @@ -130590,7 +130648,7 @@ entities: pos: 31.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 20617 components: - type: Transform @@ -130600,7 +130658,7 @@ entities: deviceLists: - 20717 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 21183 components: - type: Transform @@ -130637,7 +130695,7 @@ entities: pos: -10.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22202 components: - type: Transform @@ -130645,7 +130703,7 @@ entities: pos: -5.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 22490 components: - type: Transform @@ -130687,7 +130745,7 @@ entities: pos: 0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23075 components: - type: Transform @@ -130698,7 +130756,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23077 components: - type: Transform @@ -130708,7 +130766,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23703 components: - type: Transform @@ -130716,7 +130774,7 @@ entities: pos: -1.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23707 components: - type: Transform @@ -130727,7 +130785,7 @@ entities: deviceLists: - 23682 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 23899 components: - type: Transform @@ -130735,7 +130793,7 @@ entities: pos: 58.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 25223 components: - type: Transform @@ -130795,7 +130853,7 @@ entities: pos: -11.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 26474 components: - type: Transform @@ -130811,7 +130869,7 @@ entities: pos: 13.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - proto: GasVentScrubberVox entities: - uid: 10840 @@ -130821,7 +130879,7 @@ entities: pos: -12.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 10841 components: - type: Transform @@ -130829,7 +130887,7 @@ entities: pos: -13.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - proto: GasVolumePump entities: - uid: 8939 @@ -130878,7 +130936,7 @@ entities: pos: -13.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#FF1212FF' - proto: GlassBoxLaserFilled entities: - uid: 2740 @@ -139342,433 +139400,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.553406,0.6529236 parent: 21002 -- proto: HolopadAiCore - entities: - - uid: 29822 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 -- proto: HolopadAiMain - entities: - - uid: 29823 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 -- proto: HolopadCargoBay - entities: - - uid: 29793 - components: - - type: Transform - pos: -54.5,-4.5 - parent: 2 -- proto: HolopadCargoBayLongRange - entities: - - uid: 29795 - components: - - type: Transform - pos: -55.5,-4.5 - parent: 2 -- proto: HolopadCargoFront - entities: - - uid: 29792 - components: - - type: Transform - pos: -49.5,0.5 - parent: 2 -- proto: HolopadCargoSalvageBay - entities: - - uid: 29794 - components: - - type: Transform - pos: -55.5,-19.5 - parent: 2 -- proto: HolopadCommandBridge - entities: - - uid: 12884 - components: - - type: Transform - pos: 23.5,6.5 - parent: 2 -- proto: HolopadCommandBridgeLongRange - entities: - - uid: 13010 - components: - - type: Transform - pos: 23.5,7.5 - parent: 2 -- proto: HolopadCommandCaptain - entities: - - uid: 12885 - components: - - type: Transform - pos: 36.5,14.5 - parent: 2 -- proto: HolopadCommandCe - entities: - - uid: 12886 - components: - - type: Transform - pos: 4.5,46.5 - parent: 2 -- proto: HolopadCommandCmo - entities: - - uid: 12888 - components: - - type: Transform - pos: -30.5,-35.5 - parent: 2 -- proto: HolopadCommandHop - entities: - - uid: 12889 - components: - - type: Transform - pos: 42.5,-5.5 - parent: 2 -- proto: HolopadCommandHos - entities: - - uid: 12934 - components: - - type: Transform - pos: 37.5,-40.5 - parent: 2 -- proto: HolopadCommandMeetingRoom - entities: - - uid: 2545 - components: - - type: Transform - pos: 25.5,15.5 - parent: 2 -- proto: HolopadCommandQm - entities: - - uid: 12935 - components: - - type: Transform - pos: -53.5,8.5 - parent: 2 -- proto: HolopadCommandRd - entities: - - uid: 12937 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 2 -- proto: HolopadCommandVault - entities: - - uid: 12938 - components: - - type: Transform - pos: -46.5,-9.5 - parent: 2 -- proto: HolopadEngineeringAtmosFront - entities: - - uid: 29796 - components: - - type: Transform - pos: -39.5,4.5 - parent: 2 -- proto: HolopadEngineeringAtmosMain - entities: - - uid: 29797 - components: - - type: Transform - pos: -32.5,21.5 - parent: 2 -- proto: HolopadEngineeringAtmosTeg - entities: - - uid: 29801 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 -- proto: HolopadEngineeringBreakroom - entities: - - uid: 29798 - components: - - type: Transform - pos: 14.5,32.5 - parent: 2 -- proto: HolopadEngineeringFront - entities: - - uid: 29799 - components: - - type: Transform - pos: 6.5,32.5 - parent: 2 -- proto: HolopadEngineeringStorage - entities: - - uid: 29800 - components: - - type: Transform - pos: 19.5,47.5 - parent: 2 -- proto: HolopadEngineeringTechVault - entities: - - uid: 29803 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 2 -- proto: HolopadEngineeringTelecoms - entities: - - uid: 29804 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 -- proto: HolopadGeneralArcade - entities: - - uid: 29802 - components: - - type: Transform - pos: -45.5,-39.5 - parent: 2 -- proto: HolopadGeneralArrivals - entities: - - uid: 2176 - components: - - type: Transform - pos: -2.5,-59.5 - parent: 2 -- proto: HolopadGeneralCryosleep - entities: - - uid: 11130 - components: - - type: Transform - pos: -46.5,-33.5 - parent: 2 -- proto: HolopadGeneralDisposals - entities: - - uid: 12356 - components: - - type: Transform - pos: -55.5,-28.5 - parent: 2 -- proto: HolopadGeneralEvac - entities: - - uid: 12567 - components: - - type: Transform - pos: 60.5,-0.5 - parent: 2 -- proto: HolopadGeneralEVAStorage - entities: - - uid: 12566 - components: - - type: Transform - pos: 47.5,5.5 - parent: 2 -- proto: HolopadGeneralLounge - entities: - - uid: 12882 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 -- proto: HolopadGeneralTools - entities: - - uid: 12883 - components: - - type: Transform - pos: -31.5,4.5 - parent: 2 -- proto: HolopadMedicalChemistry - entities: - - uid: 28431 - components: - - type: Transform - pos: -14.5,-39.5 - parent: 2 -- proto: HolopadMedicalCryopods - entities: - - uid: 28438 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 2 -- proto: HolopadMedicalFront - entities: - - uid: 29045 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 2 -- proto: HolopadMedicalMedbay - entities: - - uid: 28620 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 2 -- proto: HolopadMedicalMorgue - entities: - - uid: 29046 - components: - - type: Transform - pos: -5.5,-28.5 - parent: 2 -- proto: HolopadMedicalSurgery - entities: - - uid: 29050 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 -- proto: HolopadMedicalVirology - entities: - - uid: 29615 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 -- proto: HolopadScienceAnomaly - entities: - - uid: 13577 - components: - - type: Transform - pos: 20.5,-40.5 - parent: 2 -- proto: HolopadScienceArtifact - entities: - - uid: 13030 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 2 -- proto: HolopadScienceFront - entities: - - uid: 16796 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 2 -- proto: HolopadScienceRobotics - entities: - - uid: 24249 - components: - - type: Transform - pos: -5.5,-51.5 - parent: 2 -- proto: HolopadSecurityArmory - entities: - - uid: 29805 - components: - - type: Transform - pos: 33.5,-22.5 - parent: 2 -- proto: HolopadSecurityBrig - entities: - - uid: 29806 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 2 -- proto: HolopadSecurityCourtroom - entities: - - uid: 29807 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 2 -- proto: HolopadSecurityDetective - entities: - - uid: 29812 - components: - - type: Transform - pos: 40.5,19.5 - parent: 2 -- proto: HolopadSecurityFront - entities: - - uid: 29810 - components: - - type: Transform - pos: 55.5,-10.5 - parent: 2 -- proto: HolopadSecurityInterrogation - entities: - - uid: 29808 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 2 -- proto: HolopadSecurityLawyer - entities: - - uid: 29809 - components: - - type: Transform - pos: 40.5,4.5 - parent: 2 -- proto: HolopadSecurityWarden - entities: - - uid: 29811 - components: - - type: Transform - pos: 50.5,-11.5 - parent: 2 -- proto: HolopadServiceBar - entities: - - uid: 29813 - components: - - type: Transform - pos: -20.5,13.5 - parent: 2 -- proto: HolopadServiceBotany - entities: - - uid: 29814 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 -- proto: HolopadServiceChapel - entities: - - uid: 29815 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 2 -- proto: HolopadServiceClownMime - entities: - - uid: 29816 - components: - - type: Transform - pos: -30.5,-44.5 - parent: 2 -- proto: HolopadServiceJanitor - entities: - - uid: 29817 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 2 -- proto: HolopadServiceKitchen - entities: - - uid: 29818 - components: - - type: Transform - pos: -6.5,21.5 - parent: 2 -- proto: HolopadServiceLibrary - entities: - - uid: 29819 - components: - - type: Transform - pos: -8.5,37.5 - parent: 2 -- proto: HolopadServiceNewsroom - entities: - - uid: 29821 - components: - - type: Transform - pos: -46.5,-25.5 - parent: 2 -- proto: HolopadServiceZookeeper - entities: - - uid: 29820 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 2 - proto: HoloprojectorSecurity entities: - uid: 23392 @@ -139809,7 +139440,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -143756.08 + secondsUntilStateChange: -139856.84 state: Opening - uid: 5211 components: @@ -150065,7 +149696,7 @@ entities: pos: -26.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - uid: 9020 components: - type: Transform @@ -150073,7 +149704,7 @@ entities: pos: -24.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0335FCFF' - proto: Protolathe entities: - uid: 7789 @@ -163375,6 +163006,11 @@ entities: - type: Transform pos: -3.5,-43.5 parent: 2 + - uid: 2176 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 - uid: 23594 components: - type: Transform @@ -163396,11 +163032,6 @@ entities: - type: Transform pos: -57.5,-29.5 parent: 2 - - uid: 28413 - components: - - type: Transform - pos: 13.5,61.5 - parent: 2 - uid: 29074 components: - type: Transform @@ -164741,10 +164372,10 @@ entities: - type: Transform pos: -29.5,39.5 parent: 2 - - uid: 10691 + - uid: 8907 components: - type: Transform - pos: -31.5,39.5 + pos: -28.5,39.5 parent: 2 - proto: SuitStorageBase entities: @@ -192093,7 +191724,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -488960.78 + secondsUntilStateChange: -485061.53 state: Opening - uid: 28863 components: From 7f2907a93a043e00d9b0415b967d551f13557bbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 22:51:28 +0100 Subject: [PATCH 176/263] Update Credits (#33865) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index aebe3fae82..9af0ceaef0 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex From 39600f9516bbb6e53fd2ccda3a13855195629086 Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:51:00 -0600 Subject: [PATCH 177/263] Minor fixes for the holopad (#33969) Initial commit --- Content.Server/Holopad/HolopadSystem.cs | 30 +++++++++---------- Content.Server/Telephone/TelephoneSystem.cs | 2 +- .../Telephone/TelephoneComponent.cs | 1 + Resources/Locale/en-US/holopad/holopad.ftl | 1 + 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs index 549bacc1a8..fce71a2cd1 100644 --- a/Content.Server/Holopad/HolopadSystem.cs +++ b/Content.Server/Holopad/HolopadSystem.cs @@ -151,8 +151,7 @@ public sealed class HolopadSystem : SharedHolopadSystem if (IsHolopadControlLocked(entity, args.Actor)) return; - if (entityTelephone.CurrentState != TelephoneState.EndingCall && entityTelephone.CurrentState != TelephoneState.Idle) - _telephoneSystem.EndTelephoneCalls((entity, entityTelephone)); + _telephoneSystem.EndTelephoneCalls((entity, entityTelephone)); // If the user is an AI, end all calls originating from its // associated core to ensure that any broadcasts will end @@ -160,8 +159,7 @@ public sealed class HolopadSystem : SharedHolopadSystem !_stationAiSystem.TryGetStationAiCore((args.Actor, stationAiHeld), out var stationAiCore)) return; - if (TryComp(stationAiCore, out var telephone) && - telephone.CurrentState != TelephoneState.EndingCall && telephone.CurrentState != TelephoneState.Idle) + if (TryComp(stationAiCore, out var telephone)) _telephoneSystem.EndTelephoneCalls((stationAiCore.Value, telephone)); } @@ -215,7 +213,8 @@ public sealed class HolopadSystem : SharedHolopadSystem { var receiver = new Entity(receiverUid, receiverTelephone); - if (!_telephoneSystem.IsSourceAbleToReachReceiver(source, receiver)) + // Check if the core can reach the call source, rather than the other way around + if (!_telephoneSystem.IsSourceAbleToReachReceiver(receiver, source)) continue; if (_telephoneSystem.IsTelephoneEngaged(receiver)) @@ -230,10 +229,9 @@ public sealed class HolopadSystem : SharedHolopadSystem LinkHolopadToUser(entity, args.Actor); } - if (!reachableAiCores.Any()) - return; - - _telephoneSystem.BroadcastCallToTelephones(source, reachableAiCores, args.Actor); + // Ignore range so that holopads that ignore other devices on the same grid can request the AI + var options = new TelephoneCallOptions { IgnoreRange = true }; + _telephoneSystem.BroadcastCallToTelephones(source, reachableAiCores, args.Actor, options); } #endregion @@ -354,6 +352,9 @@ public sealed class HolopadSystem : SharedHolopadSystem private void OnHolopadShutdown(Entity entity, ref ComponentShutdown args) { + if (TryComp(entity, out var telphone) && _telephoneSystem.IsTelephoneEngaged((entity.Owner, telphone))) + _telephoneSystem.EndTelephoneCalls((entity, telphone)); + ShutDownHolopad(entity); SetHolopadAmbientState(entity, false); } @@ -610,14 +611,8 @@ public sealed class HolopadSystem : SharedHolopadSystem UnlinkHolopadFromUser(entity, entity.Comp.User.Value); if (TryComp(entity, out var stationAiCore)) - { _stationAiSystem.SwitchRemoteEntityMode((entity.Owner, stationAiCore), true); - if (TryComp(entity, out var stationAiCoreTelphone) && - stationAiCoreTelphone.CurrentState != TelephoneState.EndingCall && stationAiCoreTelphone.CurrentState != TelephoneState.Idle) - _telephoneSystem.EndTelephoneCalls((entity, stationAiCoreTelphone)); - } - Dirty(entity); } @@ -668,8 +663,12 @@ public sealed class HolopadSystem : SharedHolopadSystem var source = new Entity(stationAiCore.Value, stationAiTelephone); + // Check if the AI is unable to activate the projector (unlikely this will ever pass; its just a safeguard) if (!_telephoneSystem.IsSourceInRangeOfReceiver(source, receiver)) + { + _popupSystem.PopupEntity(Loc.GetString("holopad-ai-is-unable-to-activate-projector"), receiver, user); return; + } // Terminate any calls that the core is hosting and immediately connect to the receiver _telephoneSystem.TerminateTelephoneCalls(source); @@ -714,7 +713,6 @@ public sealed class HolopadSystem : SharedHolopadSystem var receiverTelephoneEntity = new Entity(receiver, receiverTelephone); if (sourceTelephoneEntity == receiverTelephoneEntity || - receiverTelephone.UnlistedNumber || !_telephoneSystem.IsSourceAbleToReachReceiver(sourceTelephoneEntity, receiverTelephoneEntity)) continue; diff --git a/Content.Server/Telephone/TelephoneSystem.cs b/Content.Server/Telephone/TelephoneSystem.cs index b81a72ad23..d4398c76d3 100644 --- a/Content.Server/Telephone/TelephoneSystem.cs +++ b/Content.Server/Telephone/TelephoneSystem.cs @@ -194,7 +194,7 @@ public sealed class TelephoneSystem : SharedTelephoneSystem private bool TryCallTelephone(Entity source, Entity receiver, EntityUid user, TelephoneCallOptions? options = null) { - if (!IsSourceAbleToReachReceiver(source, receiver)) + if (!IsSourceAbleToReachReceiver(source, receiver) && options?.IgnoreRange != true) return false; if (IsTelephoneEngaged(receiver) && diff --git a/Content.Shared/Telephone/TelephoneComponent.cs b/Content.Shared/Telephone/TelephoneComponent.cs index 733ddfbdce..530748f4d3 100644 --- a/Content.Shared/Telephone/TelephoneComponent.cs +++ b/Content.Shared/Telephone/TelephoneComponent.cs @@ -181,6 +181,7 @@ public readonly record struct TelephoneMessageReceivedEvent(string Message, MsgC [Serializable, NetSerializable] public struct TelephoneCallOptions { + public bool IgnoreRange; // The source can always reach its target public bool ForceConnect; // The source immediately starts a call with the receiver, potentially interrupting a call that is already in progress public bool ForceJoin; // The source smoothly joins a call in progress, or starts a normal call with the receiver if there is none public bool MuteSource; // Chatter from the source is not transmitted - could be used for eavesdropping when combined with 'ForceJoin' diff --git a/Resources/Locale/en-US/holopad/holopad.ftl b/Resources/Locale/en-US/holopad/holopad.ftl index 47c5fbe25c..9e3401dd4b 100644 --- a/Resources/Locale/en-US/holopad/holopad.ftl +++ b/Resources/Locale/en-US/holopad/holopad.ftl @@ -39,6 +39,7 @@ holopad-hologram-name = hologram of {THE($name)} # Holopad actions holopad-activate-projector-verb = Activate holopad projector holopad-ai-is-unable-to-reach-holopad = You are unable to interface with the source of the call, it is too far from your core. +holopad-ai-is-unable-to-activate-projector = You are unable to activate the holopad's projector, it is too far from your core. # Mapping prototypes # General From 864c2257b09bded8c28eae340fd734d19d2fabb8 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:36:23 -0500 Subject: [PATCH 178/263] add man-o-war shuttle (#32105) manowar --- .../Maps/Shuttles/ShuttleEvent/manowar.yml | 3194 +++++++++++++++++ .../Prototypes/GameRules/unknown_shuttles.yml | 13 + .../Shuttles/shuttle_incoming_event.yml | 5 + 3 files changed, 3212 insertions(+) create mode 100644 Resources/Maps/Shuttles/ShuttleEvent/manowar.yml diff --git a/Resources/Maps/Shuttles/ShuttleEvent/manowar.yml b/Resources/Maps/Shuttles/ShuttleEvent/manowar.yml new file mode 100644 index 0000000000..b7c52597a0 --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/manowar.yml @@ -0,0 +1,3194 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorBrokenWood + 125: FloorWood + 126: FloorWoodLarge + 1: FloorWoodTile + 128: Lattice + 129: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Man-O-War + - type: Transform + pos: -0.59375,-0.17708331 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fgAAAAABfgAAAAADfgAAAAAAfgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAABfgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAACfgAAAAACfgAAAAABfgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAABfgAAAAAAfgAAAAACfgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAABfgAAAAABfgAAAAADfgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfQAAAAADfQAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAADfgAAAAABfgAAAAACfgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAACfgAAAAAAfgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAABfQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAfgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAB + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAACfgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAfgAAAAAAfgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAADfgAAAAABfgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAfgAAAAACfgAAAAAAfgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAADfgAAAAAAfgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65287 + -1,0: + 0: 61422 + 0,1: + 0: 30719 + -1,1: + 0: 52463 + 0,2: + 0: 19 + -1,2: + 0: 8 + 0,3: + 1: 256 + 1,0: + 0: 256 + 1,1: + 0: 1 + 0,-2: + 0: 28672 + -1,-2: + 0: 49152 + -1,-1: + 0: 60940 + 1: 1 + 1,-1: + 1: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 295 + components: + - type: Transform + anchored: True + pos: 1.5,-4.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockGlassShuttleSyndicate + entities: + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 241 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 +- proto: ArrowRegular + entities: + - uid: 131 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 132 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 133 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 134 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 135 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 136 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 137 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 138 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 139 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 140 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 141 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 142 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 143 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 144 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 145 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 146 + components: + - type: Transform + parent: 130 + - type: Physics + canCollide: False + - uid: 148 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 149 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 150 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 151 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 152 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 153 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 154 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 155 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 156 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 157 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 158 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 159 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 160 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 161 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 162 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 163 + components: + - type: Transform + parent: 147 + - type: Physics + canCollide: False + - uid: 165 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 166 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 167 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 168 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 169 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 170 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 171 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 172 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 173 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 174 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 175 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 176 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 177 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 178 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 179 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 180 + components: + - type: Transform + parent: 164 + - type: Physics + canCollide: False + - uid: 182 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 183 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 184 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 185 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 186 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 187 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 188 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 189 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 190 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 191 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 192 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 193 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 194 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 195 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 196 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False + - uid: 197 + components: + - type: Transform + parent: 181 + - type: Physics + canCollide: False +- proto: AtmosDeviceFanDirectional + entities: + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: Bed + entities: + - uid: 79 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: BedsheetBlack + entities: + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 +- proto: Bonfire + entities: + - uid: 318 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: BowImprovised + entities: + - uid: 126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.4673176,0.13484818 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.477734,-1.2193186 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.553516,-1.1776521 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.553516,0.27026492 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 198 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 234 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: CableMV + entities: + - uid: 214 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5345068,8.43411 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.3717433,0.095678866 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5136735,0.1373455 + parent: 1 +- proto: Claymore + entities: + - uid: 122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.4673176,-1.1568186 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.4569008,0.11401492 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5743494,-1.1255686 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.522266,0.21818143 + parent: 1 +- proto: ClothingBeltQuiver + entities: + - uid: 130 + components: + - type: Transform + pos: -2.4985676,0.23901492 + parent: 1 + - type: Storage + storedItems: + 131: + position: 0,0 + _rotation: South + 132: + position: 1,0 + _rotation: South + 133: + position: 2,0 + _rotation: South + 134: + position: 3,0 + _rotation: South + 135: + position: 4,0 + _rotation: South + 136: + position: 5,0 + _rotation: South + 137: + position: 6,0 + _rotation: South + 138: + position: 7,0 + _rotation: South + 139: + position: 0,2 + _rotation: South + 140: + position: 1,2 + _rotation: South + 141: + position: 2,2 + _rotation: South + 142: + position: 3,2 + _rotation: South + 143: + position: 4,2 + _rotation: South + 144: + position: 5,2 + _rotation: South + 145: + position: 6,2 + _rotation: South + 146: + position: 7,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 131 + - 132 + - 133 + - 134 + - 135 + - 136 + - 137 + - 138 + - 139 + - 140 + - 141 + - 142 + - 143 + - 144 + - 145 + - 146 + - uid: 147 + components: + - type: Transform + pos: -2.4881508,-1.1255686 + parent: 1 + - type: Storage + storedItems: + 148: + position: 0,0 + _rotation: South + 149: + position: 1,0 + _rotation: South + 150: + position: 2,0 + _rotation: South + 151: + position: 3,0 + _rotation: South + 152: + position: 4,0 + _rotation: South + 153: + position: 5,0 + _rotation: South + 154: + position: 6,0 + _rotation: South + 155: + position: 7,0 + _rotation: South + 156: + position: 0,2 + _rotation: South + 157: + position: 1,2 + _rotation: South + 158: + position: 2,2 + _rotation: South + 159: + position: 3,2 + _rotation: South + 160: + position: 4,2 + _rotation: South + 161: + position: 5,2 + _rotation: South + 162: + position: 6,2 + _rotation: South + 163: + position: 7,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 148 + - 149 + - 150 + - 151 + - 152 + - 153 + - 154 + - 155 + - 156 + - 157 + - 158 + - 159 + - 160 + - 161 + - 162 + - 163 + - uid: 164 + components: + - type: Transform + pos: 3.5326827,0.37443143 + parent: 1 + - type: Storage + storedItems: + 165: + position: 0,0 + _rotation: South + 166: + position: 1,0 + _rotation: South + 167: + position: 2,0 + _rotation: South + 168: + position: 3,0 + _rotation: South + 169: + position: 4,0 + _rotation: South + 170: + position: 5,0 + _rotation: South + 171: + position: 6,0 + _rotation: South + 172: + position: 7,0 + _rotation: South + 173: + position: 0,2 + _rotation: South + 174: + position: 1,2 + _rotation: South + 175: + position: 2,2 + _rotation: South + 176: + position: 3,2 + _rotation: South + 177: + position: 4,2 + _rotation: South + 178: + position: 5,2 + _rotation: South + 179: + position: 6,2 + _rotation: South + 180: + position: 7,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 165 + - 166 + - 167 + - 168 + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 179 + - 180 + - uid: 181 + components: + - type: Transform + pos: 3.584766,-1.0005686 + parent: 1 + - type: Storage + storedItems: + 182: + position: 0,0 + _rotation: South + 183: + position: 1,0 + _rotation: South + 184: + position: 2,0 + _rotation: South + 185: + position: 3,0 + _rotation: South + 186: + position: 4,0 + _rotation: South + 187: + position: 5,0 + _rotation: South + 188: + position: 6,0 + _rotation: South + 189: + position: 7,0 + _rotation: South + 190: + position: 0,2 + _rotation: South + 191: + position: 1,2 + _rotation: South + 192: + position: 2,2 + _rotation: South + 193: + position: 3,2 + _rotation: South + 194: + position: 4,2 + _rotation: South + 195: + position: 5,2 + _rotation: South + 196: + position: 6,2 + _rotation: South + 197: + position: 7,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 182 + - 183 + - 184 + - 185 + - 186 + - 187 + - 188 + - 189 + - 190 + - 191 + - 192 + - 193 + - 194 + - 195 + - 196 + - 197 +- proto: ClothingHeadHelmetPodWars + entities: + - uid: 69 + components: + - type: Transform + parent: 67 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 71 + components: + - type: Transform + parent: 70 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 74 + components: + - type: Transform + parent: 73 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 77 + components: + - type: Transform + parent: 76 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorPodWars + entities: + - uid: 68 + components: + - type: Transform + parent: 67 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 72 + components: + - type: Transform + parent: 70 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 75 + components: + - type: Transform + parent: 73 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 78 + components: + - type: Transform + parent: 76 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CombatMedipen + entities: + - uid: 98 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 108 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 109 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 111 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerIFFSyndicate + entities: + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 89 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 +- proto: CossackSpawner + entities: + - uid: 362 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 +- proto: CrateEmergencyInternals + entities: + - uid: 93 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 +- proto: CratePirate + entities: + - uid: 97 + components: + - type: MetaData + desc: Oh boy! Treasure! + name: chest + - type: Transform + pos: 0.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 101 + - 100 + - 99 + - 98 + - 117 + - 116 + - 115 + - 114 + - 113 + - 112 + - 111 + - 110 + - 109 + - 108 + - 107 + - 106 + - 105 + - 104 + - 103 + - 102 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DrinkBottleWine + entities: + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.625,-3.3046532 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.4895834,-3.4713197 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.6875,-3.5650697 + parent: 1 + - uid: 397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.54166675,-3.5338197 + parent: 1 + - uid: 398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5625,4.9661803 + parent: 1 + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.03125,0.9661804 + parent: 1 + - uid: 400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5729167,1.7057638 + parent: 1 + - uid: 401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.0833335,5.3307643 + parent: 1 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 393 + components: + - type: Transform + pos: -0.85416675,-3.5004961 + parent: 1 +- proto: DrinkWaterBottleFull + entities: + - uid: 112 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 113 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 115 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 117 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkWineBottleFull + entities: + - uid: 383 + components: + - type: Transform + pos: 1.6666667,1.4578373 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: -0.625,1.9890873 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 0.12671316,8.635465 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 0.82462984,6.854215 + parent: 1 +- proto: FoodBreadBaguette + entities: + - uid: 390 + components: + - type: Transform + pos: -0.3854167,1.8373487 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 1.3020834,1.5144322 + parent: 1 +- proto: FoodBreadBanana + entities: + - uid: 408 + components: + - type: Transform + pos: 1.2604167,6.6765366 + parent: 1 +- proto: FoodBreadCorn + entities: + - uid: 406 + components: + - type: Transform + pos: -0.14583337,6.686953 + parent: 1 +- proto: FoodBreadCreamcheese + entities: + - uid: 388 + components: + - type: Transform + pos: 1.0729167,1.7748487 + parent: 1 +- proto: FoodBreadGarlicSlice + entities: + - uid: 407 + components: + - type: Transform + pos: 0.4375,1.3952861 + parent: 1 +- proto: FoodBreadMeat + entities: + - uid: 387 + components: + - type: Transform + pos: -0.2604167,1.7019322 + parent: 1 +- proto: FoodBreadPlain + entities: + - uid: 384 + components: + - type: Transform + pos: -0.57291675,1.6290154 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 0.65625,1.7435987 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 1.5,1.7852654 + parent: 1 +- proto: FoodBreadPlainSlice + entities: + - uid: 402 + components: + - type: Transform + pos: -2.15625,5.5911803 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 3.15625,5.1953473 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 3.1458335,1.0078471 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -2.15625,1.3828471 + parent: 1 +- proto: FoodBreadSausage + entities: + - uid: 386 + components: + - type: Transform + pos: 0.19791666,1.7227654 + parent: 1 +- proto: FoodDoughPizzaBaked + entities: + - uid: 409 + components: + - type: Transform + pos: 0.5,6.5827866 + parent: 1 +- proto: FoodSnackMREBrownie + entities: + - uid: 101 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 103 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 114 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 116 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackNutribrick + entities: + - uid: 102 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 104 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 106 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 107 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 316 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeBend + entities: + - uid: 300 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 327 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 343 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeFourway + entities: + - uid: 322 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 331 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeStraight + entities: + - uid: 304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 317 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 320 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 321 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 323 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 324 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 329 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 330 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 332 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 333 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeTJunction + entities: + - uid: 301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPort + entities: + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentPump + entities: + - uid: 302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GeneratorBasic15kW + entities: + - uid: 240 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 96 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: Grille + entities: + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 95 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 358 + components: + - type: Transform + pos: -2.6519318,0.5495984 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -2.6831818,-1.096235 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 3.4418182,-1.0545683 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 3.4522347,0.5183484 + parent: 1 +- proto: MiningWindow + entities: + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 +- proto: PosterContrabandLamarr + entities: + - uid: 377 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 +- proto: Railing + entities: + - uid: 57 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - uid: 375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 94 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 +- proto: SpearPlasma + entities: + - uid: 356 + components: + - type: Transform + pos: -0.71863043,3.476175 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 1.7813697,3.4970086 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.8230364,3.476175 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.72904706,3.5282586 + parent: 1 +- proto: StairStageWood + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 +- proto: StatueVenusBlue + entities: + - uid: 354 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 +- proto: StatueVenusRed + entities: + - uid: 355 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 +- proto: Stimpack + entities: + - uid: 99 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 100 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 105 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 110 + components: + - type: Transform + parent: 97 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationBasic + entities: + - uid: 232 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 67 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 69 + - 68 + - uid: 70 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 71 + - 72 + - uid: 73 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 74 + - 75 + - uid: 76 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 77 + - 78 +- proto: TableWood + entities: + - uid: 83 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 16 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 +- proto: Torch + entities: + - uid: 286 + components: + - type: Transform + pos: -2.6634097,-0.30015463 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -2.5384097,-0.30015463 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -2.3821597,-0.30015463 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -2.2050767,-0.27932113 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 3.3782568,-0.20640463 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 3.5032568,-0.20640463 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 3.7115903,-0.21682113 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 3.8678403,-0.21682113 + parent: 1 +- proto: WallWood + entities: + - uid: 2 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: WheatBushel + entities: + - uid: 421 + components: + - type: Transform + pos: 0.6934944,-3.4867582 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 0.23516107,-3.4867582 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 0.94349444,-3.6534247 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 0.48516107,-3.6221747 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 0.48516107,-3.6221747 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: -1.7648389,7.733225 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: -1.4835889,7.7748914 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 2.7768278,7.7436414 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 2.422661,7.8373914 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 1.7664111,6.5040584 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -0.60858893,6.483225 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 3.8184946,-1.4812338 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: -2.264839,-0.08540052 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 3.891411,0.7270995 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: -2.2440057,0.6958495 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 0.45391107,1.9145994 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 1.2559944,1.9354329 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: -0.2544223,1.9354329 + parent: 1 +- proto: WheatSeeds + entities: + - uid: 353 + components: + - type: Transform + pos: 1.7039111,-3.7780442 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 1.8809944,-3.3197107 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: -0.27525568,-3.9447105 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: -0.17108893,-3.2988775 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 0.7768277,-3.8926275 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 1.1518278,-3.2988775 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 1.1934944,-3.8197107 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 1.1414111,-3.5801275 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 1.6518278,-3.3197107 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -0.29608893,-3.6322107 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 0.34974438,-3.7676275 + parent: 1 +- proto: WoodDoor + entities: + - uid: 66 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +... diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index f3391333b5..6b5cdc7998 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -31,6 +31,8 @@ id: UnknownShuttlesHostileTable table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp children: + - id: LoneOpsSpawn + - id: UnknownShuttleManOWar - id: UnknownShuttleInstigator # Shuttle Game Rules @@ -201,6 +203,17 @@ - type: LoadMapRule preloadedGrid: Lambordeere +- type: entity + id: UnknownShuttleManOWar + parent: BaseUnknownShuttleRule + components: + - type: StationEvent + startAnnouncement: station-event-unknown-shuttle-incoming #Leaving this one because theyre like primitives and its funnier + weight: 1 # lower because antags + earliestStart: 50 # late to hopefully have enough ghosts to fill all roles quickly. (4) & antags + - type: LoadMapRule + preloadedGrid: ManOWar + - type: entity id: UnknownShuttleMeatZone parent: BaseUnknownShuttleRule diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index 1703e0c698..8bcfb32d5a 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -79,6 +79,11 @@ path: /Maps/Shuttles/ShuttleEvent/lambordeere.yml copies: 1 +- type: preloadedGrid + id: ManOWar + path: /Maps/Shuttles/ShuttleEvent/manowar.yml + copies: 1 + - type: preloadedGrid id: Meatzone path: /Maps/Shuttles/ShuttleEvent/meatzone.yml From a2912e39226fc720fea7f6cd29cd04c44fec9398 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 20 Dec 2024 22:51:17 +1100 Subject: [PATCH 179/263] Add MovementSound (#31313) Mainly useful for medicalborg so you can get a looping sound and not footsteps playing over and over. Didn't actually update medborg because footsteps need updating. Not needed for AI. --- .../Components/MovementSoundComponent.cs | 20 +++++++++ .../Movement/Systems/MovementSoundSystem.cs | 44 +++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 Content.Shared/Movement/Components/MovementSoundComponent.cs create mode 100644 Content.Shared/Movement/Systems/MovementSoundSystem.cs diff --git a/Content.Shared/Movement/Components/MovementSoundComponent.cs b/Content.Shared/Movement/Components/MovementSoundComponent.cs new file mode 100644 index 0000000000..92a6974cc6 --- /dev/null +++ b/Content.Shared/Movement/Components/MovementSoundComponent.cs @@ -0,0 +1,20 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +/// +/// Plays a sound whenever InputMover is running. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class MovementSoundComponent : Component +{ + /// + /// Sound to play when InputMover has inputs. + /// + [DataField(required: true), AutoNetworkedField] + public SoundSpecifier? Sound; + + [DataField, AutoNetworkedField] + public EntityUid? SoundEntity; +} diff --git a/Content.Shared/Movement/Systems/MovementSoundSystem.cs b/Content.Shared/Movement/Systems/MovementSoundSystem.cs new file mode 100644 index 0000000000..9a1146779f --- /dev/null +++ b/Content.Shared/Movement/Systems/MovementSoundSystem.cs @@ -0,0 +1,44 @@ +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Events; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Timing; +using Robust.Shared.Utility; + +namespace Content.Shared.Movement.Systems; + +/// +/// Plays a sound on MoveInputEvent. +/// +public sealed class MovementSoundSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnMoveInput); + } + + private void OnMoveInput(Entity ent, ref MoveInputEvent args) + { + if (!_timing.IsFirstTimePredicted) + return; + + var oldMoving = (SharedMoverController.GetNormalizedMovement(args.OldMovement) & MoveButtons.AnyDirection) != MoveButtons.None; + var moving = (SharedMoverController.GetNormalizedMovement(args.Entity.Comp.HeldMoveButtons) & MoveButtons.AnyDirection) != MoveButtons.None; + + if (oldMoving == moving) + return; + + if (moving) + { + DebugTools.Assert(ent.Comp.SoundEntity == null); + ent.Comp.SoundEntity = _audio.PlayPredicted(ent.Comp.Sound, ent.Owner, ent.Owner)?.Entity; + } + else + { + ent.Comp.SoundEntity = _audio.Stop(ent.Comp.SoundEntity); + } + } +} From 34b906640f9f69018668f2742ebfef35df44fb15 Mon Sep 17 00:00:00 2001 From: Piras314 Date: Fri, 20 Dec 2024 09:35:54 -0500 Subject: [PATCH 180/263] Remove Clearly Nuclear on Author's Request (#33971) Revert "New Nukie Song (#25765)" This reverts commit 806c0d162fffa41b47596f1a4d8c03e72c2ff7a9. --- .../Audio/StationEvents/attributions.yml | 5 ----- .../Audio/StationEvents/clearly_nuclear.ogg | Bin 2984219 -> 0 bytes .../Prototypes/SoundCollections/NukeMusic.yml | 1 - 3 files changed, 6 deletions(-) delete mode 100644 Resources/Audio/StationEvents/clearly_nuclear.ogg diff --git a/Resources/Audio/StationEvents/attributions.yml b/Resources/Audio/StationEvents/attributions.yml index 6ddd1d74d6..d410cfb598 100644 --- a/Resources/Audio/StationEvents/attributions.yml +++ b/Resources/Audio/StationEvents/attributions.yml @@ -3,11 +3,6 @@ copyright: "Created by Bolgarich" source: "https://www.youtube.com/watch?v=SzEp2nv6oZ4" -- files: ["clearly_nuclear.ogg"] - license: "CC-BY-3.0" - copyright: "Created by mryikes" - source: "https://www.youtube.com/watch?v=chix8uz-oUQ" - - files: ["sound_station_14.ogg"] license: "CC-BY-3.0" copyright: "Created by Donchan" diff --git a/Resources/Audio/StationEvents/clearly_nuclear.ogg b/Resources/Audio/StationEvents/clearly_nuclear.ogg deleted file mode 100644 index 2c8b18e1b140345f4fbd5409150c0fa7c44018ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2984219 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

`D2$FU+1r$2xp?W-1$EJ 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≥U+bVwx{Ohgsg4BllZGxjwav z000Q+L@?Cj?PM~CN7s}}Qlx^i+_j@$ISawP|5{AP4C6%{wVWEufPT-!sn5!|9H8A^ zB&|fmA&@&+Q^qeuZ2M4jHhOuw1i-1^!cJhi+;q0dGM`=cpTF((H6_@07A{nk`dSA-2`I^J6EZ}O zujIf95Y|nYOe|UI1M1-G_+gKu+5DIeJ*C45{c3>#0{|LaA;JEvK@|=>CL7gekV!Rr z)**%UdPZup-Q3BkYQL)<|qis&?sh-t+0Udrl6$dsp?E@e3MeZ2pl zvCjFm_D#oDoN-&VhU*lwY2@lPNWc>CPeu3nQgoRg<;=qW^Ep%f6Q}EYd(89lfcJym zBB*kPRvvHku*ikU-CWm-45-hbukR};D32PuVEp;8WFrtYxYhpU5 z;FL&6CJH3uVa8Lsq}h(>FCV}$t(E)WEo9EZPAaFS7AgQH2L@~aa-WHJ{ET}=ug;?dmDI6$%)H}j&U_;{K4|=(M-7;9^f#2 zc@&<7;#uz~;yrT*^G!XE%;oCIc=|j9wwd=;wldssJz@vvt|ycetsaG~v>>h(FqHDz z9M0$|nyrM-R+dInWu$PcfqKLPWd#T=SmKk2A_9N&tYh#<_cj+)lziKMX?Xk#XSN%4 z$6EY#Mvh&1VSMOp&2=|CtosJQQ>a;P%ZJx+KPKe=G2&L|?BU~K%)s0lAqh~pgHd{| z;v6>i(lo9D8WOa=ca8o~2rHd=8er6bw3E{6g0d!WORZuy5*IS=8AGO8G4KQRV4w>M z%Ec3}5;X325hR&91VgB>-K3kptUmEA4k78R9$4_!R60y#~*KhzSBVhlQ{?S1Zky|Hj@GXS3x_{*`<-qnBUc=? zSa7~bt5A}xclHc}ZVNuRao+D2duSE}Ps?z6v$k~QX%GRMwL@63RCP-lYAGs3)hD$~ zi#=U)`qEqp?JB|1>s4Z+%bCHc5(KF?R>+@faK+Wks;q(fs>6%OawV@ADd?m@HGL_^ zp!)AxtF!I@3dv%vDqNu0Y^u~P)j|M(pSJ6*b_wMbMuY*jqPEkWT^SKDl8UKsrZQ$C zABj;!LX~udA+0TI_$FS#rx=tl@3VPGFkl4Per1qq5P@`MTjlv0CpnZ6BbhNB-P~FG z0abDZe6Mp=z-TMpvjV9<0(<)>7(lT#$g>mt(xTHh;p9CQhu+L4mjRQ-Xf-(y=^5SSF0UO$&i1dmB^E&_V61&T*?%6|)B$U7r*>op#Ysp>AsT#FZc`fys zKP*7ATh!$m=5q#eexE|N4b& z9r|}aS|>V?^U!~Qv2_=@+qx=f3GvviX_)*0W2tAZ``GMzvaI;;2JlEK@}P%ebGO#l zxX?5*$mX77OZRtlwyu|x75|g`y;KbJaL_8rY0Rf+gIY_B6(hKrrGNq)!Fe@m)W}!Or##M z{+?{}_iz~LEVZ58H~#$yuNUODnN{41xbK0^u~}*bS7{qw;4q9luAwbs7*UAvDLG`#}L=sb?noV@y99Du+ zZ<#2%jaxA&_g)o?VL)4TJXjVn_bLvr>50fP0RlQztHv0bnU%~oji8!;xkNf*W0RVo z{(4Sz39gKIJ_E17r)4vhIU)VjM7J5!0EQUfbgyiS zkX(nr1FM{T0}Y#&EX5OZ;|MwKnJ4RUgI(rB+8HIdZu6cX-Gb=N(jHzs;G0^R|Fq$c zFDzOMZsWe1d-r;D={|$#;X!~hL?=X~SX^<0IiCVBNpFcw;^{!>4dBkc1gj})$+_nb z4z=ubeXx5hRv6rp28 zVyg9{3Cr^Rp*mAdGS$Y+!EZau9~soHwP+lR+d*2GRr3O^9vkqRsI|9%6{q=u?U)9& z@wkfXlU`$Ni+Eu-AuVPTq0IMZr@k=Gm+Id1%Jjb7Ps1vp{teIk>}Bh8^BRqC zM@1rKxDb!t^#)mPTft{#DbM-;qLj(PghybMgMwgS7j8%vHIyL@a1}lZz_+Alxy1#2 zVm>}j#l0Rv{~2$o-0HA&HUhGXR_62sF)E*qxHi5nCN&`2q`tFzG;@D5&J>--x}e?6 z+*}%I{1&j;7$kk5)o7_+HzU05E9oCKE5U{wyu6&9CAj_pyIEH@)!}%eqez5Rk6DsK ztaDTP*%Yn&KhT%RkVc9`gkt@L%u5bH(5Dh6Z6kFm_nGxPExq)N?~v8Qyf*Wi`|vPL zu~m(Jm%Ng`t!bPH=Ihz@)`xi|pI_548erP1$AsylH%h10@yqOIpvPU-YLmIlb+fHJY(-|g1@XGbHt!+xD#`p!?tQ_Zx{1_gb*ENi|N^wha+?~AUybvJg6@huw9 z;A+_6kE-;f&UH#UTYu3iRdM%SjE#tKKxnhCn2Q=x&d&1&_%&P_eUw~V zcV*p?=MC>Bf`r;P73#oEV&@cFpUd~+#re8wVafjAS5ma39(HLTxg%bS!-d%Wo?)H! zOySsXmd*%;vWLc6mm)TX8B6XNEyUOs(b7ueeLM#QWYTi z8(u=)=#4Ymij5q-z4_{#G_!V?-B#!g>!P1Vf3p`~v0^>y`U?9=@wd4-A^Xe5ny7|s z&Zvi{^M;pa(^|{9TMmwEv*pPTS>uCeaOEz>@_QY{7E2h)hWUI*w>k-a)qUO5vIDZv zz4bEZ`PEv*SuJDP(b(u(k_8U`Y`3v7er;)@o66el}*}hQm)2?O4Mr6 zSfIvx;_OM2_g=KPqj&34ehz~h&tu-*&ot|zcq9W2h7skbm=gZ+8c$gdon2!ddpExi z&qv;+)S)gwxAi;0+0RB5+s^OiH@7-0E%BMPH-s+P+(XW{^&9#^bao*f302C&e^o+- zzQmdxGpvaDf5zB$I?y_u@5OFb0U>tOZv0$Wy-=o!;#0GuQ{6qY|M0gpTYvMpA3OKQ zFK@zT2{Gbcou8mja{6AvkM9URqij9FIP2p?*)Wd9dcJB{qF=}SX!Tz0Qs4TET4S7y zfBF27g?YJXHdhdf2%_C1Q?G}Eh?O~Q_D2G4uE_`A*2hx7@_=e{KAO`Jc)k)o=7Z^2 z2ckaR!g)IE%WJ~Ht1=HXoLntg1dv2+`$`3djf543g{ckeM&9+MDcIuj_=CDxe--z+ znTUN!oA{U+o{xv1Q4Tt0_4*>-v%kuBQpbS=UeFAy)^@Caq17+fTD8&E0&-l)=hhCrV7joC?@L z{178`f9)EAFjHfPkw(yM4#IIJ5H@Him+Hg!XL%j@MtYk$kzeqd1?dHlSVY?OaV_r6P77* z;yNcjrd`o&6=?``DtGQmZ|e4L0u|&-?bXfIxdxVrgg$WF1vIX}NS%MSR)I>{JS1)4(x=aU ziCqSWuC~pVc>|C-%ZVj7l6wKr2cCa2_aPTx;`!mgvDn1y>JZ^3cJq$L(-1) z$)+gs!b(eQZ0PlF?>OG8B+uprqLH7EbSy%P0KpQMxBn@9i4evzZEnCiy{u;wT-R1?g~JC8kJic#yvC@6a=itK5S)QR37+ zCnc0x0nA*h+c&fJ?rmWBn(^_$0E=3jT<_FwtYVVRn_sD`Vvcp2BWA-}2A^Y$MMD~> zs3cPBzbWVgpaME#DNKsGb~>aG0GU9}bmCe+Ngw1%9GLMXgogM|m3yLas;(t%a~H(zHHy;iNg=ZrkXO7G+;SX{*BwD;W7kH?d!kxM3( z!d-H7d91|=)jH>O!txPz*UXhZS_6805BU}%q-1t2t*DRz{-LB}^ki9U#Rc{SxY8=e zf$sf>md{9hn*E(oxmjoAjz*CN1K&N?xs-o2U^n!if8|VRlg*GJDIU@oau5|Hvg9Ax zD$ur%7*P|%h+O}D|bqDj-@8bKcm<{zVAsJOm;lqlbZN;ex-y+$NYh3Dl+DbpmuHrLcxK8>4W)+cDLr z4PLPoy{noQ??r(C&n-re@?=eMGf@p(run@5SqkVOq3e`dVc#CYfiddIIEVg>3&$aD z>f_#4JQrS1PfIvKEJK*ONri`&G~Rc*`%?owK)BhZgJQ(GtZTdt)>v8&m~8cot^D4V z!FtJ)8FqW2;~Rf}{@%PtPnfA2gv+Z(j}OOJj(L!Qzr*8f8-J5`pI#3kasmKN+ts%U zmaCbj83Q7aPrH?5k<`?4BapWUSx|L+0e)k}nn#94(nF!F;tiSxl5Z9M63xlqXHA?gcL;=QSV*lK1PT-BBChu8Q0 zL+lhxU5L6VXW+FaHJYu?kp3|-fATkFvnL|!1JqYFcP9lCA|A!K z+UM8t%&%CYQt`vu$LDgRqeuT!v&w4VjcR32^O7}@N-xyUCRIL70#3uL{syKNjJYU3 zp|zDY5M>Fq-AM&)9l~0}9UbXIts(y#m#$|JIpoN{XT_ZSuKvCdbct{{Gwl>(s{WP7 z4s6-k`F^KxY)hQ)fnZde$VgH14TxT7Lv0^bYJAjtT4UV>)oorPJoZ7bY@aOCO%wbt zrYLHY1`lVgUBY#1F69GXe4WGhYbb_#_C9%>^_0m(RhQi^tIjM^|AH7CPzrJPG zUrkM!bf)vYh<} zJoBc=ha#{L`4YT?040+x*#p3sU!rTK8}}_uUl_o(sl2=P{bS(czWPp?Z8a!~5P>-T{nqpVjT;Ts-c>y;1QJd9V=8x2cm2eLr{(fP$;C=skON;(>uAJ z6zJP_xM*+}a1gwkgf6!ngc?p4amULa$Li#0{3_Q9~q7vmB_^MHb z?**TZ!+o46URJ&-n4XjI?yzs(#dE)OFtIQD$$SMnru?{P)LeW+^Fdw6?@OK2wJx*o zsy`+Kc~P*Q^X>`Tx8f{KHl|KB#*k+$M&JOls;>%CE1<7Y$LOhrxhcC8XjD1ryZ2CX*peeIiPZ09v&Fz# zglr=jhW}_<6*e9|K(OU!NsAj>f5#^Q-BF<1E%{Hg<$t+pn%<*&psN{KFMoeB40N4c zYiId`?u_9C!2uOcHB0%*S8+t-C2hMGUtGsFmmEEQN$>H0;MwJ5Qfx5yfJcP{3c8R^0md?7V&K)w{fpK4`rKe>D)3(H7frbjPLf_ zku9IdArcO5YGNpEkcUV*Jr3q9ojyHhs9&Q8S2kjl z?LnCbMt(hMT)>No=1JWdngtBqrEs%kU*8B;St z|02FQTvtsgSn6V;{k~mZFgY|D(ui*^_R>lulj*c|dE2XFD^iP4HW<~0>o|dS<&*q;u*AExZjk0O_77YP=nexxsQ7tN>J5(5 z8nJL2T)yDKM{2uU({?j z^MmZ>RP-H)E0!>f|3VYceLakKO7C4Az4_KjU{l7~P)7Bi=Yhd&@__BBf5GxZ`uE1it}A@vGi9L zwb6516_tFA1a>I`YqDcMT?*cY6{&>egX;dJT~h)#b~OZZuN5m{%Oy**NES) zdW9-2^>BUS1}zo_wZD(l2>SZQXqV-2*|(9<8*K~9VG1hH*4UglZM}P%EWY5Py7!-1Q5Yj3h4NQ~J=P?z*^GUiWnX_Tbz>jWbL&v0I-Gue zk1E(W@QMrW_MOZtE)Vu0nOUCimB54Gjm@V=Dd%7gKUXEAdM0W{sVcZF5B*-#k4;X8 zK5q!f_WE5@iu7?=&LA4Zl%X-(y%s{p&Rc)^*IL2>oV!0UcGT2+;AAYA5zTrF#tgp} z9}y3{eERqdK>GUUVghOaH`^Krle1fiiy-QP_6DFX!xl;F7%2NV9rhF}(Zw)@_IF=#a;{drU!AMFgOex)(dCg`zP}RQsIgWQiNmc>P@=I zK=}YfS0x^Y1K|8M$E`5vFGe4aO0&>MvlP@u#i|ZCElp^t!%j=O{DV3U8>D&#m7yS4 zbiN$4Ocmy?!VmiR51@MJU?U*vMwWo6N{vpD3$4yyzRJf(qsNMW=4&zb!U@&4)V%48 z=bihH9_ComY~u!Kyyb={3Ft+ti)Ucvum~Q#M-psXF7^^T%-eEuoEuN`iYw|xhHGWX z*QCO)NmMeF#*)%-G zFcMoKR0buC4$vWm77`B7((k1QbFBtkKa9}=s*`%+kB-8)n@nB6AGgG{+s=6lur(Qq z?P9$)m36}Pu)2K7+H;NSI+lBk3vDv)-p6Jw;a*|Wxcn1XP^&tCY{_I%Qx3!f!6G&6 z*n-AqAZx8=1^i!&QD;?MGL#=9k+Re%Lrc_|Wx9oA2)HcIdn14FPRjf$3;kWEV$l!G zLq!FPe>Q0DMDWAk{gZ47QMQdR(k-P)-bPw`Z3rsQ#Kam&EaI+bHRy%HhM)Cx&3>E? zdnV}8C)~(=ex(SbHGi1)W3xwF%+Td(~-#jxEv8DMIb#?6JyC6gz9V zbC+^v9Y=z~7?mdDi9v+vuDZStLhGmEkqe+&C(Y2B?ktl10PyF3e`y$P z-J~+c7vS;F?sa@~TMLij>*^!@=8U+QszZkhH{|F|O}y75^=KOR3W!7P{m{BgR?vnI4X^@p9?4hgR&-5Wg=74@j6 z2fv4qpNb6~*KV3K@y$2q*Lx?(x#7#~LZP8Jd(U!SI3?O__H?42XHNJ!(Z9}eWIc9R zG-AKj_e{S@U!r?@*MyYgJMJjuwY6Ec$h_W#cKY+Nc&$ZJYBd7A<8#s}kSdbY!oe`lYgFPb6(_2VR!1yf{lKLXEG?$iJCyXfiMm@@O%G*erw3#FmUp__)DIH_0%v! z$|XUUNz+Sf>C@?L>vy>TEd&h7;kXDy%|!OJ*^A4|`?&i$Y?Q2ttPbC1k-ox(vNA5u z#S8gxE*I-{7Wbddgcr=0FTF`C2T?7di*cXJ^UID*_T_CQThSlp=ntG-Ax5srZT`Eg!O1~uds)JQ|F8C|B1gf%W}ep7IoZihG#|kIVL7+V!^2Ew`^oghPus3?eWiM7>tT;A@PO_TK>70r{kane+IMv^YU!A1W+mVGsYOR5 z1*wnbLLslFV0d7iU@<}qQIb3YAO2hTwClBTKt{%%XA-APE*IdgGS&gj-;ds$CDRwH z<>7p{48k|ysJ%M;7_^?-gR48&uL|>PIsN@h=}}SZ%kC8FKr#tpKt1JgQID)E5vBhs zB(RtIT$}aDVrFLM#HI@p{*~h#6gyhKG%cWyFW2{J0E*n=JeU<{?Z?_SC3LL z7-2>Y?|E|lTY2|>(4xc&>|K4#RNt<_~ergo6@-RyEn zW9{+$@k?H5ZhW2JGC=%C{HJeVtj2!Jr+lJ>RR9ns>!dl>ys(ooD~)IN$?p4`N6S}g zPD4hv5cH3`F&R)GPX~(AUtmfr>z`KD1Tf*-w|N)3r*bXmgUWZs!aLTY?OM?5`m3W> z&mZO^y!4uNa?PX7(j|h8y6cX$$*Je!iA;}+h@hW)?KJ*jP;a(RDJg2~y=dEwA%N~& zzJJQ}b*iXUu}792;DSz)=VA`iMIv{U@va>Dz7GLtK0Xd|oR&Jm&%ATWTn{D<)WuYE zgZJAq__}7SWL37Mn@=i(iE z(Xo!B?{@N&t!8P51{djPE58%bvLP&@Cd6$D9_A`HmjkiYdcKIAy=@ws`y!y!&A+=O z>EKii+&j&=oeb%jTM2j1I~o(l<{?hUJcPioxU124suh^9NR?r^!znoZ3mG3FmjpI~WYO#<3r4TAyz&Hz_Fau2` ziN2-Bqb8g_@r59KjJ_zF4GcI1S{2%iz8C=4B_cpKp8b z%4hWs*5V(TwjQdDh-Y-I-FVAfluI%%7Z>_7)RK4NIFm4*Sc1D)15+5wEqMzuS^`Q> z3S6V~X={fUzC|LKvf$9q#EwcoeB&_uSrocAUxc#?eQ+l{-5(KR9MFC(><=pDY;#uK z;PHA2SaWjSV?CH(#&h(!Atky(f1}dOk3}#)Jw($psHVZCR&InmJ~^A#-u_a+ur` zdZu0v!U$4RWRnAj-+aH$Wlz2KJXB1BCDI`aC}d= zc>}vP(vDXBYUa8>PPcM7?z4J|({$P8%x8ycbWXEww2oh-lN5xXmr& z-k#~F1tj$(52 zBdS!ks(pU7-$lUDc9y@+9*J`1$a>Jp2zuHj{qAvA)QuHG-77=FCSQ|lf^oIo7!epU zryuL0zA5R%Xtt1edA>PybR50JVw{SM0(Sa= zK$2J3J^Bw0Tt+k-k9(-MxGmWZIUq(j0B|Tb^1~Q@DB|V^Y7`K_EgW)*NV%TFW@mOZ zUWg%;e0pN!5ZRw``@%D{K8s- z19p}uAOmrwM-4%V1tola{UK@f2QEefZ%HJtsY*IUv}6NYtpdY&n&zj-hDMqpqjdJ2 zVj9K;g3}r}Rd-Iqt(n4i#`qcEmsIO0cj6Gjc@mo5<@gTlPzB%N+_Dg){GDvA-*6Oa zO}}8K8Uw<}5b+I1`#Bz2;3k$yr_ii0S1aJYJdhz!{{+x+m$?M$*VXoZ!nmNNxTkrj z=XHOh*TasCtVu4I{{|%tO)@odL%&CRXD-K$nBoV)bM(fJ^drRSL*@)^Q=;T6;KZb` z)zokRhEGccflr6g-X-G0L8cw>Fh2a}MWgF^Wyu-u`#TtLLhMWKe?Z62MX7=>IR~t7 zdqeNC9YXOOue)Zr#k1Kw?kcV``?rTm=RfQeuJ2=+#Gyg7Z=OHTOJY_EBJ3{$tIb7X z7RjVH-x`i{)0qh3xsZM3`>gT_IpHK~=GF23vO0z#Q)1>4MyAS0U^WwLEo}m!vzyXL zk_9VEJ9-5?f`$AIiUa-J1FtzeP^#%KV+zE`uFaBmEv>&-Nb$BHx0;$h>*5pIf0H?g9B{GjYTJo4f6wV{I@Xa-4%O`RJ4Zu?RbUU=gw9LVI; zE%WB}*r_-^{{a|pdlEHFLdf=Y#1JlIjqjGs3=?QIsL=q_u5%=j43Aub`k`mFLE2Yb!*{`i1xm*d=);fIgmDL#kiJ`c>a|9 z{aCD5yqok_s@ab`Uo|Dh@BN*uMJmYs_r9_ao(%q8;#XJ5HYh@yXbt%N?P zYNY7C8<&y5c82mI@8l-&swW>}d8tC7pQ~R~t&A|ow`#Hh)yGbaNTVUptLi4?ok%UF z^FNC;Z=n6YV{?^HEmzLaB{&y26|c-Sc%xIL!cgB^A48-E;2FF8gqs_)GwKr(8d?$B zj%$a+S~ywsIzBul7D>it3{2UZ{XL`;bRr>fsQbWw=O<{S`Ob-YeOcg}bsV3E$3 z$;2>`5~7bvo6TuUZ&>R7(|Cu}D$<&08w$AH`hzl}h17hpaz(t|aCpq}Rt>j{r5NGA zY^zRBL3wd*M|je*^k#R5PaZ<=Qa&5J&3c$8KCii=>gwPs&$%y*kE19FlF_>C!4hK^ z{kwc+KZJ%{ zJM+S%wT(1&SgkvoQypI~j6qDl_iN3AxBFX#>qN>S=OTCf$gH+vbMXN=vqP8q+MebY zlEIhH9cWYZSky`=u!$Sd%sN61(7{C2nP^3Al(Xa*aggAQ5Se?|zn^t}+PnwiBVIE} zabBQnxR3*Wfa5%fm14Yb;Icp~O8w&Sr`qQ9G0KwYijE8C-9bnLnUyr8|I~XiZ*s}i z7-`+H!UB9P_NKspmNZ6HdV}M+jT2bi{p;eX2?DN0U-Gr5>sZ&sTFHf1_drl#%rW1c zMK^exX9Z>-PMph4w=~~$+y+bfNPPXBQprXZ^Wm~U!uJtf;ZpHfPV%*4HT$#S^;nSA^FJzk@AlESP@=;XH|yDEy7*IF{R z3v(ui-=u8#X`~2jF3=!=2q1`yQclf8k2#P18m-%o_TeAhf_Bl3~3jI^*KcUT6Yr5$=4`aT8v?d=uorsQ%Y5rzlV{Qg1 zDt~?P_$9qK@9I9Vlg8$5riw{`OtpUK&9g1GkJ|zZ1V~|@pj8?t6h~+sJ`#t+9Ds`} zbSG%Wu0oT?ahcNcB91*t#vSUc7pZ>xB(OYJUU=esS1&i&qdU7%DUE$kb) zUd>W%6ZHl49g}Hib?e9Z+AaRN(ZF%fSxRYQtn-IwT=SF>Z>wFOxqJ*vRLLDx5 zOtm{P+%?7xLS!F{s-3se?)llW5Q){CLWw)hAkuMIsee%Lk;8(~x$G;BMJ^wp9&3qAJ-|m^@ zI{9kpvZ`-}>&q0mQsH01{EV{n4X8yfinRoZByS8;g`a!=Uujw_*Y^{FD1~nX0+T9CoyZc8w*Y)iom~HK<1%-{j z!kKjOP<^s$xuhd57e`kYZ8{ z+pp?hparZEe{O;Js5JTp@nf=WN_*;~ug@QW*a5AVESB?&g?KF_DN2TX99|`jD^=1HqRr3n-vV-yy*yidKy+0X0(}21;+mi1vlh+Ls32OQ-AJ0lhVBP z=b?wdj|T^Ftj5Wu8R;9T_?R-b;kA7(LRiBnKw3u@e&*c_sVPH6N1=(ik(FM#Oya&c zPfzeGdMqogB54EaNPfdaPO7IEJySgo=QA6c)IHuc&mw=1bC`55o9sT~?&973>bKJv zfpMo%QPJxvHlb0vKM``~=1E<;%vad{qFMB#!+7N#-QSq|Bn7D~U@0oisN?&w?IuZ{ zK=9ni%&S->QwP?WfRYyj2#7y^GGvI)UkkM~L55>)taX+82Bf;vNv^G;(nu4!e}tOI3I_+qiD`RbB?p%E`osniNGY5lBMVC|zcDel=R;0uCWs9^o5?=hqE=3BGD0 zz|yPr=*6tU+Uw>VV?V2()m8YRBh~4n!n*P$WyKw49eL{WN8c^ch&9CtXsl1li2Mo) zZnvjZM?`?lD66=8^(WKrYd0{Siare|9%;VH!4Ru=w985SiE_N4akqnhHXZ??JK;L# zJoCS9H#s+$!^VfYF_Bzkn)`*-<_kM zJR&-(U%$WDrMl2QweF?$h%A5RLi{?e=)7Zq6R+_rqktd2Kd~&PRQLXtX~NJC{q zhn{huBvlv>{(EVUGp;8;6FZ+LedYelQO(}cyCslq6>vTwkYIcZfl@dB0t;$xw-0^`K6$JZR?&Tx|&R}k+lw?u)fND`t^ zfI5BX*w4RnKOw~bYr*Ij{IAL&gj#+&PBfPa2?+A@2ng^$6A%&+;1d=S;t}8%;TI4P z77!H{5)tI$5$5IP=j9gS8 zDV)smFttpDP`nf|X)HpS)<)qAqtm0l!dE=#_tgoCzV2z)4aR+n-VcYj>C%~zGKc4> zJ+UOK-ve+4a+(GOl{)EDtQ`2A{u*W}6O|{TLE{dUJ9rerM@AWYc(5eED2O62m(b$E z2y3Rl<^D2w6BWO)=l47=Ltp&BGJtrv=S&dh@Np`XzTRl;BG7`KT9TscPiRlX55FFgl3g z*-HZNdC$ifTb@GqFbhFONdd)b_^Sm%;TLYpuv$gBe$&COK@90reqP zaYi^}KU)M;o<3z}=2|R6W#;Uf`o8(WCTP1XW2O7Mtz`b(CzYvi?@G=I5RqJWb)Ad5w{PL?F-z^#MO;#f|9P!O34!L zM)2dL5}(++!VgSi)5yggC09?{j@a=}U(IBm#o_u4C~z(1Q57~n7eRepbfS_3*@Cjd z@#}AYRV5f^6e~-VkDC*n(s#?bVU+Yv?S9mKe$%k=<#~^TE8V$$CYyA-n-QhW*P5Iu z>`my#C+jB>jBzS;^X6?%AJ1F7<9VeHoEKyIm{af0D8oJLNtU0Y8@iT$}1-yHKH5M2r4i&9^2C_trmF>D(Xi&kBgj?IN!79Go^dF zbQf^O{-Fr0k7f@%UQ?be;AI9dDe>E~m=FRiE>cy22ebU2t;&VcB=N)M#)~L6X|yt&>I4O^MuQOrm9kG z(`rh@X$J)H^26r}c|QH2V!k)wy12i*bHW71qPop>JZDo6G*bl2aaO=Dj{1Kt%SlGW zFwEnL7_#oLhFRJ!R@;vqVtpn7PVLKb&7O1_d3>U3h})fwlqP8|=OMph*C$x@+o(@r z;lFex8ZTxIYIg|m@b~avYT&rhw({nNFEL8*C`i=Xd7R;*cVMwou?Wd<@~Hfi)frA6J+>_2_(2)XK2zs1{h@0AuMxm|U0Sk@pwF1S(HCNmnQ z*~QOVS2{P5r^n`Gb0xiGF6Z|UPHIK@lODE>X(kTc6F@EWw>BIpRbjNWb$5~t_>?^D z9)Ggt-j3Ii>EXRux|DxDa|!D4Pm>k*OWbD-culEU$g*O?spP<(Unen3J~3d&^TZ;e zdkdqN(^-*tM;ViiX2ycX&~1?eSPEM-Fj@V>UYID}R`HrAw!(ywp9FMbif>fgL0IQK zFYnN&oGB+(+>i2T?glcV-+L#7_I^eF`%}YjL^dR8Q?0d>o=1*?&Wc= zUwy@>{^dob;Wg8&&XT*hqORW3o6mKL%o+lFY$sgvaRja z7>Tjp3y*)K^x_FNLmu?I=g5QIK8UVAhMi|a%5e%BOq@r4m1hd2nA6;y(~K<)x1Lb zeWK1!?0&e*ON?1|CpulNNNVCL$N3<6S1C&WM*f(?e>c{QKSH<3ts*ZqeTX2b^61|` z1C#?g!aqQB|BcVeCbzii)qd$`XpD-M!ABRboGd|ny6DdeHMNy^_@6zeo2NB70tj#R z?(f46v42dh)vtc>{21>pz*uc55#Sz}1-%hHgC`i|$8qgR^^y!ry11w}adP{y0nqSu zj)$!;(3{CR+CgK5Wt&J&-S@luZ>+_O=(4F8T)Z4q-8sW3#9OhpGinBlW3BLqqq-eh zcT0AiGdDYjiJZDN1;F}^Q^)2_)=ABN&A6?DLWXu3t?68WPwh{Gh8oKRcP}{JA^?6I&zX<8l$x`K6jtdgv6SI5+k6HI*WiP#K?xYRCY4u(VKYRAf z1T%m(>N-cTeMHY{X?AYgibr-tZzQ!f{(a8|m-2r3XMfB$*=})vD<4aMS1JY>iceQ; ztG(KG9-pa3&5XaG_+Y`JwL?!L@W&fep$^UT#@_RBkm zl%{Tf3m$cofp+y;<|MbX#ny}Or&$;&uQ+tm<<~n_v|0hj_~=6=q*Y-c_60=DQ1N5w zT-6RHIUJ8KyGz|Tk4_>c;%g;g=36vQ2*7_}OaUQKLq=jaW06Dc>9kl`WmtrpWQ&Nf ztw0DUBndDmBpeK%5_)0FMwY}^^vU2?{MY2nfm+AARu&lbA168oC>AIW08w-P1;_v# zN`MjxNQo=liw}kLZ=suyN&Kd`)A(r)+!g9Djp{-9_4Q-O0f4{RYh;=oy*y)-D{-}E zJ14ts@>o|ksy3+LKE2JUMy0Gv1p^zzxH4K4iS92vU-?ahE;u~>nL%S1!qT5IW1f-N z9+?_m6bElw;vJvw7$|}w@`>e+i3?3XIU$%6G~Z>+!vQoPoSj%ZE8Qg&5^n`KV~`sr z12!q_a7Hb&^hlv$rX8kp!tN{Sjh#;ll59&n^=zs(ML?ES9PtjsQ_Bg~k5qEp#fM`Q z(Rd~k_OT!RX|Vkf=1a1pKh2g$_*aNE$v&c_Oo>Tty`pQ&{Z%9U#7z$SIf+mAeOgh73R_R#%6{WYToeUu8T9F7t zz&WD-B{Gh%@bxMLp#UPsqRp+=5yR$u^^%LdZ~joo@v@Ff1VFjyH+R>{YlMxj(kO1y!n;s}<8wHPfac9uxMx-P5 zoNN|C1j-Meg24rMr1?8`#7NnwQ_`)qsJCwq|Grymkp8QW)Z=Y%EkBqGyQ~TQIWjn# z9*du+!w034TP{Kg#>tj)8_!b#J`x!L+vnI!RdE* zX)2y%|C)KJ^n2I-?Wv_{7^L`OjTy5OBJI!)P>5mRh98WEHep2BB+m7lszjlu>|>!V za6q2*_ge#2s7eqiFEZDXe@!We5f>U(gguW&7p=xb$t%P_l?;ON!a+R>VF1Hmqo)-! zpJ<i?NZKjq=I zNKlJjfX{1_ca2-4ILY0c|0j7Q+DpNYzdPBa&OEt34|LV%V?Tbrb>hi7c z_}YG^7ZP9jpGHOCJ_RjbDFu064-d5hy_Qu|y5-2a%_lx124Z2ju2@fLXP$U7!>8Q*5Uvj!ai~vv# zU>k2qL4_FQ+y|k%BW-~l98%lI!%;e@Pj}CXUv|D#S53o1wlUBmXF*kXm6O^rwt`t?1r>{6eRQo=9*d zot;UHFiuVEl2Bg-1OPHB+dukp+1DQh2RA*wS|0p}NgN^X9s8bG1~nSwe+#WY74v$l z6UfB># zbb#=LYH?wIRvc$3mQ5%K4VObP!!NY>0&?l&Rjy{8;#Ksy_L z_)Pw;M&r|=KhZN@3R|4(o7gulhDJ&u&T0G{y~HSINPGDtwoyduTkR@xW);FA*r2X_ zG3wHb0uOJe6urXF#E%aDT>QvU>GK|`)_6JR9`D^FhV!`z$=r+u&SotkRHk^Lh;0Y9 z-(*q=rwS{MB%?(vqQTLFVpie4B21x&$RA`1STi*1_Uuh6Lth{9y8;>5 zfy|v4cHTd3ZM)l<0lFbzGc4hn|6OE8ZpEJcE5mn@cC;1zmi(;D9UO0E3r?tivKQ~8 z@MCXD1|>TjcTNzYKRAHls6`hwe`BugnuA#;{2s!(k$ksIE7AUK(IA^sBXHil_meAj zVFq!2o#-=(1k+-XhzWY3MRD?deIl z5#bJ{XO*D~s3kVvV<5STX~#)ItF^atStMBxu=(LlB1nH-;7z%={CoDOj|TP0L0ceHZ&+a+r;#q;cdBmOy`dZ>#a;_9ri)<* z6!D14+AIG3_(y-B)ojv>W-JbNg~~{4>}(}gQRDK$sBAVraJH1Q$}qqB;ivzQ6vI_m z63tXF`TF&1uB2yy60}Ks7sEx@pEG{M?x~N|)cR;X{yTePQo+;E$ZWdiaT=c#;{2`q zLaSN$M``_|sp*!gWO3FT*Q${a{!WVXUrNx?WO2{rk{+*N)KE__XuaKvhc-*|L(};P zf4zRc-ySMW5n&h9)>Hr`ZG;a3;LqE6Z&z()WGwfyk+{fX4giXQh(rVWNq}Y$!Ztct z90&*A60>%}sIANZfYqJ1fvg!rP6p`5=$Bh-fR4ZCL_Y=k&3J)e)+{=*8QdWg1TuL5 zZ3{kN4xr0{l4YSXtDG)HJb!UILpn+qFeWg0kK%xUm7xBJ11k7iG&EljIyrGJ06uRf z%FZQ)k=Ycr`TC2-~c5Y&Y^1_MdK|fZAc#qY*+?q$)rjH~(hz9!jGdB#a z?&8uT9YqE*ljWXZT01p7`&IsVD(%}7GKsS~&OY@Y5;v^n7t*gUPG7ng?mds_5-@%B z-KS`ra?5thtU3t3#Xgk+!fbV!@MH}re}#va3r1LbV#v@^U~z`;?JzLoGY+FuJd2cO z1dE~V0gwntS{zmeF;W)5U|h442LLTEX6W#Ff{T7JQxf`3#4a;L_u!0lu13nDqjLa7&AN@A3r2X+MD%K* zu|z}$oSn@^tngII)B)%CMzUlB&xLX*zY(H57PJh86p3l5g3%ePUqURI!Sv`zHewPj zE@A+t2#&-C5S(zFDzGInZv2)Yv852Nl@>aZ6XYDqDQ&yM9|&NK!}x%re*8(0C^;7D z&S6H4yzVDKGn)|e!i^wiNOH#BMk^fT!K0qXJlM$se^N_keEOGhjqV9TCXWDMz~~>6 zN3+QQu+ZnVU|3n9B($c&-kOa?L%bN_G-msPvBs5Y)cB`McIOsGsa!s5dTJyaP_Pv3 z$o>W4ATBxFb=LBLiAQOByvdkyqA02~r`K+FPe9YU&-AcLEs2tP;@?6>QiJm4 zH$utSOgrAWfV)BRLrcrIm3@`2d*1Xak}t6|-}_;FFiE4Ruchs2be7P?WB56hS(d~f z>V*x^L6FYqVA>FFM&H!hWM?Q8MhXC>c(M8&fG5ALB`UQTNlJNcMA?tVgD_@9DhY#5 zt1;gV5Fq+#d)x<^ql|K}5C!V5vPt{RfPOGsO@y4+lNZMf!xA09MOsM7y#r`o&gue`Og*YA*BB8OTmiA<6FcxjZx}m|zT3HXu z(HK!!;^xgxl1H9dCIiQ~g39p$zdn7c7yMGj;+pho=1V}FVN+^?q5XblwUae>DyLm` zUf9{q2}_^%9PL1X zUPp+K4zT1KAzAvbAi^rKeij(=52*N!oZ;PPG0RScfB`FKdeCMda&gP$!B3M;J{_l%8r@((z; zFcuZRvFSGirsteDuE*^>O`ibL4Xvs|3AX) zq9Kf4OD>BlLFo|)KH|&Cl3`6!UwcB`umKL8G1k)NB zx{zt2$(MJi<_B9It;`8`OZw#bjWUh51x&cS2N0H8Jf|LiP{Jn7sJS!cv(lD`VjVtg z8|7mlfR2Mxt%@mP6(1dVuMD0bY+|u?d^V3wJe-5dhItv`7)C0bF%?ss%0JD#>{+)2 zL9G{6FxV;-gt%m%;Km;UIj_j2f1D{{4&xvb5st878quDqq|vblM*Qly`O&RgUHdi8r0{v& z&4<=$;dg(%*8Qdkb&NQdm+PjLH^Q^lFd z@jK7$U@y1hpVf(;@*sh`X&kLzc1b#;YAr9F)sPGkDTGw|7D`C=`8Ci}pD>jp6r_P! zvDHekvOxP6U9Fs`2YaV>HINDPHVfT7P;lBvHR~JcnyZ)$F$RN^MQtrHn=;!$VUCk# zn%hb+SKiljiqUT;qrZ$9zEaiEZ|$Z;nbMC$jtWaF*;#+SK8bkBzzfW@tll*yn1l&z_b2U263u zFTt8F&hevV$m(>^_6P`a9O)~h;!(gsQ3eY)OE`MXqSR$pl_T%Ix@mTah;*%mw%@`QM9`S&uv>CQLO z9Jp>y+Vg+Dfw)@}^?gF8Ppr@c&BVmn=lT5Cg01)Nd*%AQzZv4HEdTLC9C$n*|L2m% z

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 z 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

~q5dR?~VLq!xdlvHII_M0YR*V|ny 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�){pK6eS6lE^D2hdCyejT(7yFj0m~V^S<)u# zYhDF-E8!16E`KshzoFx8!;8_?p5Jitspo3rv@&CpvnyvZPA~s0Joz!ew+L4!Gbv)F z-Ym<)J0%fSm$7cBZk9gX@wayEW!$}`UoqRfXMKMQ5A`GoH*qZc^IB3it1l|)A;ZQg zX(90rWr=yu2%Wq`&HylivrpG40*+2L=5M$z4AIxq(zZ+u=I|SFFYP*p2lHtCT3?DC z#Z(ByP%Eiqc2_EhSWPwjzOks^P}#ouBP&yds$VS;Olsu}H+Q+;l`wpowP`}T7C2BW{AkoMdFUM(O=54a9KD0A^7nqX|XW6*W;^eV7?n8tW;T^JX` zhXN0wX)hd~Qha%LlqK{x%R{g6{rmRW-$w&g9oDOXe-q(lyPP*4585w8KEJjy ze7N{;bvV#%=C^rEFJ^y0FhW`5I;y@(6LVp?cS~~a%tO+t+2AqdDvYf{%E;q z%crBx>qkLZeEu_tJ4Xm{k=+P9k$d!mxRZqLI@)t7H+>?xj zu;IpgN@fKVeQX~chXCnPkqgkrt`%!2OK*ZWs=IJeh4P_*Mh3b^P@HEVj-28eRCe3t z&tY|Vzkxk}#7@^6y9qZZg_!iBYfK zQ@Q8_a-%jO()l?k#~HhXe*>9`+>CAE=eF(M_u(8_VGf}q>o}5#l1_2#a)OyTh!8Di z#^TamMSZZLsV3f3LMnt8Ci6qWj6rTtNVH+lWM5EF+MGP8*+{TKF1;=xiWK?CwnrE} zMMeOm0(h_i2s?){5t=24`AvVnf*Q2>U4ykIonm10X;}J+Ud$J>hCVk7kT9a5cp%%; zEaLCRcjU+X{BkN5qL4!}BXf7(bXg&G%RGa@&w8GO54uARx_nr{;%{U}zn%1%s9Fdc z5dNyp8Y0u$wm?5pe1**?uF6pR*yM#=yHqkEa2YIQ*NsVj+R_sFraB!?*z+^gG(DfC z?vBi^{849{;FG~-%68Pr=|rWc?|&YQqpM>Ttrq%A1SU*pGV!(EwrL$Z8 zD&ZLezlP}MZ+&^_qT+XUZvpPkpje_pulDc9lpeIxgMtp#;qpSZv)W9paX1XUR1&(# zBO85;DBT4lRf3YC5oIGE*L0Yr3nEuY`3;j)Bx$;_majJ9v~V?^QLqJr3Ygbm14Z^^ z3rB>W0J^7r7=(%i+ebWY(7g0Q@t+N z>v6C(^}Fhi{5INADqSZ0oa$w|M_!VD?Dg*TvU|>{(dgUE1Ipd_A%B0&(M|5}gC0VA zgB*(4yr>ZZ3~QuKc>9Q@S-hIHL(QV&;YMkYJ!{V9WwxqZyV;y69f@tnjJ2(RQkp6e zdn8~F3vy4Ib_8%klSY11U1cj3QC0Vqh0r*wLFp@m&A%q4Nrm~t|*D8;cp~nDIO#kQ=>BLB(=#R##r)A6o2tQXS8IN9=^UOQ;4{PE$Q zBVUT9vE9d!9{Js5xAk6ur%rjwqQ*7C=~k}OxK+IWX9QoG>Q;myt*y{`A-~Je(50Zy zybzCBnUVSz)pUL17pr~jI#8?-PI;&pi=i0{Tz8F`@rBY1J}y6$ZzDD~#oZ9CKui&x zn;G*#HVCW2DVLA@sL(LkhS*m>$@_7JNZY2x(E=hG5jHhj8l79Pa#TFcKKuFl`4(>o zOX(2?-DF6hEq?}Do+&uQpwar$K?a2AEkCm(PM|w1W%_8r$A-j%Ojr7ay$ragu)5xDBh*OL%&MMQXnDW z)JuszxEyz*Vt4wNWbQRJ_G3~0up`$@q2D#ul1%%TcI#V7-|N==5;0E%_Y1K~3jU4s z);%7TVub3Ohkv1;3;-L^ry@Y1F zYO+!>cY!H0F7)OL{9)R;JO?A2)*^ve0VDFb=qOh$%+dx_sCpe0F`dDcz8>6{+@BgjfAn)_0|o{n2OsZ7i7v&8 zjKDo>+<9`A=Ga@7-Cww)^r6A+h(D-BnLZ+82pam9Nxrnq1 z1v64Ztp`AipK%fT+~9@)GE6B;AOY9oeM3T@MlTU=0Ov?NbHO zC+bmVIy5vAX|Dj{RB)|UA$T7H5l-S98F=+MfEkPe65oIuXuyi{arlf zYDD0XG5TpghnH8pU9eP*)5`|MSBSIn?v{yGO2Ox6tjyf4?enu*e}k7*JM$!*(&LZR zfpM=uTqqCFz3yUdg~DZtX5Z){3gF$F;cAErn9tOkJMi>*>p@KS6|P&jJ~5FyGhe>f z?{gy0Gk&-;Jhzki@5k4-?d_fROm+HY5|eKahJ@Y!p4nae+^xxI{O=9%-A+bkxJUH9 zOTx|BckvoD?&nq7*c|nRqXd%!H)XoTllDcvmDiD_-rGZt`a*84$|Hw8 z3I(s6c^pw#xSK_EPAoQn|6$S7;aaH;0`OJlilCV^XZK~^m^fy0bgeA3R3TrB|adK4Tc6q5tT+&>Nh#tn*@PJx+U88dK zx@`aOSGlUu^BCg;M13SdjHf!Qif`1RkMaDJEkHM?#xNfa$D!F z4%+mpeI}M>6PZ5{8Hs(I+2)D)qC&0;Z&BAj#>i39v8op)%ZVIgXV7E7*Ws_N$)Qt8 zWOt^?j&=6)HAp&$zhX9L@w8hO70G^}; zshOttf#IoVqX4uWD5wk42ZCI30?tsAOm^YG(@XnaAt|1xn0KFBR!iOLSf1(G`L$d~ zx`~Ml27~9TYqep%g}X z>*rz!eH-IzBo78XHw-z%L6gyA;Yw}KT^k*!I0oZj!P`-NQCbkBw(_<~;UE23J^?V% zF;y@r79KNo8|;D!pr?{Wu|I-k0HuvCSwy58Oz|5)&BP3|(s@TtWc%z)pBkpEr0O3+ z%Pq%VsHnu#KmNp-jDoeU2oB7eTV$qQ2$IJFGZ6&(f79H5G9TRR2j)^y~SI z7|7ta!ig?VW?7q3_?q|VByZ9O5`!|997v5YzIx>fU0?Z3*eOC#p=2l`ZQWhB15KI-Whst;XU`?cz4D!uI*p}y4@{H+4( zubDLk4wk?pTr`Qi(7bmw)z6$9)5%v`Z*R=Jc5b@)PsfF~)%B*LWo;^PhXmm{N~B=B zK*j&T_Sx&#{XW?|`pB4)&v=@t^zSj*PoMNwZm^#2>10qn1WL_40ZgT1ejVjZ9#S@*Sj|>w>%Gm> zuzT@g28W7N9xf$IfWWU?c5lA8jNin2hf5i|we^)hdS&ByxIn3XS*{ovG06|CUH4^XYK23i8};0Spx}J zclTFE<@Iyzr3A%@Hx=3MPl=j6BURx`{4BcudQMetW2znWa;2waJtTSC{G zk9*bf^|!^-XwsKs+p#_nkH`(coF?9Z0ENUfe{EPU2DSnl%J>O9OOp_deL5^3b~brC zMmPUa6n`s(+MlkZiu0@Y`Q#FVq@@#17o*THZVORZwBsQ)WNjSOjYDCvZukh3GK|W_#q3KsB{W1U&RnSZwQt z28V?ga*7qhWw6H71~PAubkGmTN1+T5 zXv9arAwl#JAOM6WC3zftfdDK3ZHa*CLT{-;)YZ5rGAUc})SDJ-tz@0Gnc5Z3Jc!!%kqfjy$(>AbLitb{4Q!R_)%&oRY#jNVP|+v~rHC(<|jcnKMDulWDX zsF+iK>J@qldBk1~eH$Grc_C)lX*H%gC0%f$eEglsU=k?}fW?cr~HHZe1+oI+q^|hEg!qI;^zcgJy`8Ia0EgQ^$0v7#-P1 zh*3x}*-fPz6#+#=gGCTP`naLMIp#Py*b4^+8L*1nG?Sa)F}selu`zViztJqct0{L8niP!CD9tAObN&J+{r`2Q4ZuB47afDhL{e zj8a+vfS`VJjK}RdEJ`dd@)2$%25dMJ6HtbahH1kL2Ou9X%D~xcy8|~~BQH(GtUpbZ zU)q1yXB;e~F|5o)O7!)E0=YHZlu00fldI^k7%h`D67)+>Lu+h)(Y~i+pJ@yHs`aa> z-ZMzTLRRzVh0U$A5HMPJ<*yT4c8cJxIlg;a!G_7P{zKe?*Uit@e+eBfESK{rJ9}<& zdUGX~))kW*hunGMdM(RBQ_HCZ#si!+I3_CC>CY8ZL>|A@O7rK>$4#J7B28iR2=6WH$*@c!p$V zdfx{6HftGMD3|-Hi8NT78y1E`U@X8W(45L){{qB(rcR(m#F$9zU{f&=W@#rl0tdG# zEWS@j-lKD8ge9$#+mc{C0m6uw!a@vLC4&H*#P>J=JWK$Hf6rft#s(GUSvOq&N9*u=d}%`8EE=9Xym+L3SUuQ_i-@brDLlG0lpj4CCX$j83Mvow z5AXg-T)R&V0O%(%R;E8ivHAj3&y}q`8{6xO7}E>k^I0BqXs$Qnv~*9NyyU}V97gIW zp8P27&s_Q>VmVn>diN*m6(9E2#nuI>a`T+TP5u?ul|#S@`**i*nb$9}3jFd1aoLSX z>_~h)4@m}MIUyB^w1)lccDt+m%eGXJHRl!U;UfkbI0>B<&U9mYM;S724^O-i{UN{$ z`st?xG2vcG+EhY|rBjK*V~R_VKJ+L`bw*TCO%>vYfNfB%W`#Vq@@a%(=|h;3>5;}D z@&-)I4}8nrvyVe7gqr{3ft zoWk-y&PR9gT7cLWI>y_6y|25kWBQYlZLXhl2n^k`W^N(aZ41g8>RTKdkkL|~+E!$I zsXAw54zCa`;wrYsD*D*~Z|8@hKUv1y_2KCotoak7M3m2yfM!SW7uj&7CLvh$im@Cs zy~`kYV}Lx2tASu58$TGo8c9N}M$Cvv)K@MPBvt^zf@;$_pkKo9*~8`l&Ltq3FO!T2 zw-=H8C7~XHq7D--%yZ_OM3}#w(q{Wa=&q59Cnw zuyM_z-ur5@mK$h18+@D_=tX;L=S?n?6VQ7~6tgM!s$-7%qUG>dRq8%=o?W(dukh(i z)wdM?CNyDHokoMUH_6LUtH8FvnaO~zSy$68{9_)5`S39h-DBfsta7ITlT~XyE8Du@ zt!ly?J^W`Tz9hT(}xDU6RkZiCi)ao&A(=$8~T7pGQGFet{A z4Q-A%VEJPM^_Be(*47C@Msom<*dRm@h17FCXb3yh7NfAG%sl(;K(JOK;DUEc>;u{3 z(0T75_cpE2?4#dLm6W1QSw@F!3lySuv)=@Jn{y1To(yE_FzI;9&9=bZJe@7JvPzt?`>eLv5AU8rh6!(oW?cVi0R z@k(ZfUrD$Zxcu<;`Y=RP;UD*8oRG3r3;UN{ODQak4)ULRF@;Ce3UcK5Co|c~ala6!6`(;Gx@Sk(_fXh1~P32Derf$EEZO0xq1@onOla zJTqPO3;s+ST;AnRtb7m@82pH*Nvo^kz3Y^!(}wW#dHQe_gX+L~R%?9tkf(+fg0OpD zdohz(ps`bsoN5VeEyW(BFmX<)R8;anu*2!)SWHc&tx#Q_LuL0&YHHbHA}b#`J%xx@ zw+ro{V*HvC?<`V=V8$2%n~1e~!;z`NET+jo8d2m#;j)5l$@C_Vic?A1MB_3%0>7uL4AFWf2_0VT8_Sf?^12JSt^- zJj+}!)w_fV9^prSvqZT;X0)!ow8?JcWZ=J`EWJ0e*6w)_n+M_j;u*(fP%fU6j}>(U ze>6+Mz#14hN0i8Ppg`Q3gN5ri#Ev?5@-=4tb=50`0#!uo{&$$PC`y5 z^%1_zPne?DuKDhX3Z^fG=on#X?=VTg%HQTD-8`hjhMCO@^j3iFllGx^fxR29W0fl&qtR=8Z zpT@{#E){zAk-smAx_aaE)peZRpV%I65iIZ}W-(2OF zM)epEW3Zek^ZNNgFmZ-hAJ-Mtsq2koi&immlUb(n`dhQRjY5EwK|=*u((-fDxj^ny zar|nGcE{CEC2ziBK+?TOyL@BdFB{_Lpg&aa{ol)sUO+@IW z{gKH=1DLbZ!XcFI{@;Pp5JY-IV%_c%b8w~xK5WDYRx7eH58E2}2PSQsk0lEMZ;?^6Q9=q5E-E&JCDfPg7x(nF`t zu=!Kktc!zmoEOF_Uh~I{(eUU4&xy1%9>|-a^qEiB)Hl^SO&!w;hr82Vz8s^=?W{KW zS+KKMYtJ!u$u-Af%yL}L+Q^y(!h7hMth-HN4iJr$gD^N%j{|!WM*m7=N0Q;E*_eN# znPGNUhO$JK@=)wcLlb7KjM4FhiH0=mg{kpC=vcCFh*f1k9zp;sqDg8jK`#>5%r*lR zDS9)mKZ4hOPxue*2zZ!TVr<1F1lP4^u&qE;8aq ziGa#iq>dZ!iUSeciviSO=x#{qmGF;p!Mx{lf|75fu#I z^Nf=Q%Wx6W)9yME$#S>Wjr3`**fx}QuLhF&l$be~P!})t1zQ}0c&gU#QDkYaR}p8m z#@y7>gdW$W)OE1uwVt(A2vTkSDTAFo-Y2A^4Cs8*zOG6d{=3yB{pGId+o&rO=QC@o z&|DsgefFlUmT0R9Wx_WCPF)^o>a<~iP;)rjGUo3Zsl=?UoE``erZgP~@xf7vWV0rp z4iSPa`;{d;QXjvKVW8M2 zMT;t~?-fzps)sCitGb3gYRex`A!SZjjL32@DkRK~okyOxap*)%IMH!uorAyjGN zB)~Hj5sycqo=#W}%-ZPIuSpW5a8F52qYSZftCPiIx*6nGO8+&Wgn6=$&k|#VwRCTW ziip9!lGu~b;m4I?TUqtb{6^Bh-`8oCqa6EX z$I0yU=rAparSjdusN#c=K}mKvDmwFJ|7sSV zxww}>Yx*>y`Y_`2=CS_VSexxNYB*#!M)_hkukkDCC3@81x-C)lBQtB~V>6LSU3PPu z+bt8Npp(AM>Oe;@L;*_DyCt-RVI3yxd}u0TZ%y`kMk4#>_X9h z76QrR5SQ~tF_)`5K|lqgkF0I2^}?Sy*9-7y2JRS!nd6;a!VFRPz?FTdb3 z2yp!fZ#WT`yIpCV$o;t=M|8?C>0`|LeE#=@#f?Zpu{kOF`Y1ut2eo%u=SRx+X3dI? zNBYU9uf}==0^xed_4K$toDx1PbZzfs_IiS=Xi10=lJ&lOd!r&J8UBp&3A|paZ==*L z(+Lv88yavjgrcfjpo?HMdl8XtOISm?g{ea@bTk=poZ-;A4xq;*_(eGWKDS05A32RU zQRtoFswBdhKmYoF=qC(#-{npUVtm|!EkM_SQp&x@b9B$e-vCGtBHXEMhV|=3Nd-|IP2i;`nepC zUQH06kCYjNpT2Rptv2|W z+e9X?*+k5w&HB|Je0%d5DKI*;QGU$XzRzkae=hW%h?jKgI zq(FXfl!D5C*Dc2)Kh$3~l|zyHZuXd_o;pj{zYt$GoJC-AV-e zv_?{TuX(0+SL=ymWN?KBu-ygpy<93S1G@bVbc^03?13LGzeATk@IY$YvU=^X6$YUF>o z{yD?iT&=_Xxnd~dtXyv1daohmJ>Aq=OXPe$+sBz5r-9fXB`)}66wY1;VPlt{-xbY> zw|OROi`T2Mb4!z#+)y);4%KLuN^Rqwu&074ds(Z5ggUvitxBEfG4VsqKaPsVX(}N> znTq&A2mCbx5LMvdvv3XFr2u%M(-(8G8WrL{PT&HHRTYYEF(91K6ofSupb4Mh4fyv< z!E66a2Hp8Uxjq}OO;`@f!*@AD02b#ZH~{!W3hfHU3+mSP0HgRf^5eq8o`#C}pYi>+ z$p(OuM_00yBrimi)l-fj5R;xLy8Ms`Ob0Tf>)2^rjiw^d|7UkmmI|xOvHcoX+Cu|K znq1l~Q=-@DPbKbIB=u$R(C7dF-3%Ws$6k#uHy3%u>s(2E^Ykn9WPaAE?h8do7ITK3H-0a!PyV;GK3@rGJ{q z)qSo=w?QVTvA}Ms>Bq{;NJ*$kSRU;XNV-}mAe^hy3N_`8`_Kq0G{}XqfZo!zR95c} zGNYEL{`M0Yf`sB8Zw7-44%vd^!L}7AkPD&+2&aVmSw%rA9nOUsKp~A3L)Lese1m5~ zm4#n)_f9u>DGLp)3s@%&!vhe4d;ggNwN_lHQ81y+AOKqo4jga{0aMg5?3@t)!G+g^ zFvAn#i()Hc_aDAZ(EhEUJti?5z1rHE2r1!1#O>ck-``vE$=_t6iL0i=s@dhZ=-!QM zWW)FbOP6EKDQXeDPR2Ht=?T(A*x>-kLo`VHP?MHh(%{oo|s6|xO#V@FoD*^%uK{`F@ zY2z{j^0=ikWj1Lve@Yd;m1}#7%$s7PfwOFy%ltY?-$zi4D20iu@KYA?+xXn5%osqf_thKu6hncK@lvPW4btx$5 z#GmL6nzI?i>kap7CuW@?PQ?c1qc$V)#J2M+SSNUAqz^_Xp@c;v%)}S!Xa79D$Vhf{ zcD?>#LGT+p5hw@%{(W-Uqk)G2F9?Jj5vY%s-jnRRi&9g2$tC;7rL)R>9aEccZ3`t* znHr;t-#)7a2ENRL7N$>?>l4wPD^AA;`sem8mo>;q+7w=fVQV46FNWuT9uNv0i4U7B z&zq0TkN%9gvGwcI(4bqb1f|-D4_%3aHJtRDq>aqKz;e1K~sc_9FKgPSR;5-Fr$t^ ze=wNFbm8p`67yb#2NmPLFF(sFwhL+zK|{^|My+2~&M16d3#uDj+qFT;1KlMa&*R+K zozT^?TmSQP-#+&g%Mh+6vbAf)cX;;uw7~MRY&B8GJmH2g&u%(ycJYiq`N8+A-mbe= z!GmI{@zcVNZc6Ophqo$PlRyx*z8mMqs(sfpT-j%1!-zEPsr2By6W9CFmhiwmvDTYs zoZNg|c2IGHdTBdsZZPd$EFym`0L!>~lM)-SO|@3j2PJ&7j>W2^gDu4fd@-(XBth>j$Z<~XZP$90JG*b#4%iLhA&B2FSCo;1h`^%+P-7p0 z*;I@HLfhGRdYDZS(jmX{`jhnjf-DM_7*qg>Xw50>pQ1elTH1LcsQfnE}s z7Yd$|2B+r@(+8-y4I)0a#CcI5o>$y1T_|wP8EAl23?Lu$| zz0&W6^~q}WiTO>n=m9Q}8y++~gX zBh59NTl{2C&U-B;oG85J=;~!TcxQz2J~R%0*3DG33Dv|N!y{pP`Yg|p2a` z->*vare>VsFfJxzlcLT8^;BemO~09;lZu~oiGtD(v5RCyh0Z8-0*jW_=`^}}tT531 zKL+n5;4(Xo{g0Y67B0tFR^*HWGpujM8I{ z8nRC;(TI*t4IiY|FSrktW63I!Q)C<7@hd zqaAA=4#oZkjYJs}Wgb+AQIUbC&iHRurMTqs{T*`|KHprMG_`dXMGp!BH;$GXe0*dE ztoaSC-D*Qm?8a*9$yt6BTdbTjLB57Lfinw>XX`j#ouT)0(M9XJCP_ zmPT-<12{34_=&a5S7+=*;d1VTV5<_~Kx!9JlpmMT7P88wuk9Q9vN26;QT4i7bcGH6 zE>mWgDM=;BsI&Lf;YP(M8KMYfIiUw((O?IKLCi67D51nPC&2~Pw%ZU31fZth&}wZ2 z<+MZ=M9pLjfkDvhUqY8Na)?{ZVhW_!T17*4q+s)(zl8_LFyS2y@u9k1TkV&zn^+Z# z{;_ox0J;>E=^Mxh3lBem$-ngGk40yBu)m`}s^h0iN*)bLk%TK!3V%HMDkgZL?!y?i z?83r??9(4Atk*eo7|_fWG!dBfREBDC|2Ld{RYNmL7#HvohRuII^737>C0O(e%}X1-Z1Z7nW&)spR(ulKn!wnet*$W_2EE zqGrr-77MkV&m7Aw0uMAj@d7qF2xouw72Y*DzVSx%G-o$nl7^9t`3J(}IThYbgrlT0 z@(xG+0rlBNZsYo9QKLcB4$zj;Dx-$Q}h@MUfsEwFSg z>yVPy8`Bvb;};dIsIX8uvRW{m43G3RZ-{^Rjghg?6nj!R;u2u!Acd$-1~;TajEO4& zt2E-DWA_Fb#(*)D6h#3e0=42I=;+7nEK8?>-*NDmra(f5Fhd1&CRI7>fIkr9gboLA z*D$H$5uzwV0jPCAS0BS0P#~YCut`;dC7?@N38MSsq6W2#fEpatha>_9-F?flgn}gi zDmkavk%@QQ!;ZpTOhS+>nsE@&kYd(EDFpWa>Ne`A5LV^CWWW9nfL^}rJmLK-BTTJ)|LtHD3 zYF<%@95@SNb&A^sJG9%pJJ&{uD%930iUG`-SI3{!^L@6cF7mGxapPaRGIgy}CUvPa zunW`fQD0jWQ>&tHnb?`F8mTWAMoVhHMssKRuo#6$fcLfDw&pxBiuwj@T`R7GX{N zXntN1dw5>dp!@w@LWO`J%{VzqG5f54C45^Z@E$N&0xMdy6m3(@6vu&5as`Y4rGHas(Q});ea|SW)roAV?hM}#9$}#bb zq}CMKBX4?d=cR7F<#&fyov@itrA6ax%WOvmA60$yTH;wx+z`du#{~=XtDV(6(T}2)DJzAhZ+y73?#D>7@@Y%= z`dSb^U|G(#G|zs-cUeEgfiHj2u`;=LYwx+U-yFT7Rrl!8@_7B>ewgj}3;~vS7_A5D z|M84yFcuR0Iy)+(#?A!<3p}UD!Uv2iOUqSGZ&U9z6?!j9Z$e}yWH~j7A~>`snND) zpDcgrTL?qL!=CMw5Ll0itBSHp~a%R^Z8y7ToVUg}3MVd~67ax-x` zZGUfx)DgCP$TFv%2O5Y4F38z4qtX}o?0qZ4v4%Wp$cbEv2l-smH%w)=#?xqCUs&dM z_Y#3ReYJq&+`x!h)%gomPMuqrvW7lv4XD6#vpGrMekK3jM&ri}){fhYwT70En{eG1 zaix>bqKQu2SKmd#rrW2Nrk4_W)uOKNeQP43(8nZ*6TgXFH_y;-D@|?doy>NAa%!HW zteoJU+-teJM3CHE$p(LnKla2Q2`H9|#55Jf|n&&G*F$VdD@5 zEAt~0U5?Igp;5Cv||N3iN6R?kYOc)Uwlg^Y2?z>EUMraOhC@=Fy$Rg!wAC zKv%5CrYP>O?!R9ziS8L5BF$I=ooC-HXu4G75I+eepjL)ilfkH17l5AW6G6%O3pe+h4|}<1 zQBbMGRFC$s#2!;y}AzY&r!)*IvL{%BTL#R zz+%S@3B;L}+V4|sMKd)*7RE*n2Ux#tJf9gfYnd zyMVV7778tu&w?E~1OsU`nSJPRRU!b}eFmeHDBuVaz(of$rpDcS0pkP<_>YgJ@+q{J zN{{45qr(5p|8vrbxJ-@gm%xQ&SBJ9R`n{$O!BiJGscy_qK+8d}bYPJs=+XjACerqj zT;w~r_qLD5Vr1S-!!Ijv8WbZMoRLt>5ycNJQR@j|E9v&@E3AcJj-F_F{Y);G&`T<`4tMh z%)RsZ{606vt0XLz9x8MiulUw%Eml*iqJ-^X8x6bxfKkQ)&oBTN?w8M&6^IENHjWF| zzZ)P$M*~!ai&O_v;VNjS#1j7LGr;s_Rhg;tT@idnp(7}ZFGa*u`L%>a4_z|~7LG(@ z!O#&g)M-G(fC^y{;*RM6u9VA$lE7a}Nhp*|M@kso808oaB^b0sMF9q56EKO{!e(^= zRdIG**?<@)Isi)wSR#Nskg1qCNJU`Z9947T{ykHM^*P8uj5`zofJb)s8DgY2--0;6D7=-=IU}zi~DuXP932?)`tezBn%wu~0=?}5bN5KNo zF%s)mbg%Tbpn|m+hHKbiX5;aw1*48PFWBj3?K}yw$PCoLx z7L9p$muE#(7TJ1i06TuuUkfecy8dg_h!%>G)JX$#3sDqeJ8_*@FV!ONA&qLNmXTbkr zFktj|i=ZvK;#Unop?knEs}0=uL~J{nVUYzpQZ%-2P=Fd2DUexP6&pkhVzF)1GR#^P zoPc4?RTZj6Dx%IgDg|=LRaJo_MBoZcp~z+oK+IsBVez40>TrTUu=N_4UgsM~aj71~ z^PLDFObyez3Ut{*y5+%LcO1e0aPd%@THk|s@vDGO2{^R113iEUZ_siu3b09nd=kvW zA(CD81L%Sm8kz*4U3w^=x&Xi%KEx1~Eb|!P>?StEM)MoJ_O_Dea;XN692#3F(+z6KL>70zXook3Vi4+rE7v?AhY@)0iOrUFCDj<13VYoy~0iI^aXu`f&7B zKTcHN;Pm;mLT`&SnEFza+0X0H)&9Ay)46OSzISI`;pFD=+m5pUR*9@cjLr10^A>1s z0v%cJr<{E^CPPW-qPa!V&C<5tCl8IAm4p(Pgh>wR5o5IkjiQ2>h5k*jwZu2%>k=IL z^E{&qINN%>g+JngjXO*VrCIcXq3@pq{ZPjgg)+dL2x6t8^zPsm4($GzTVi^%rMW=% zKZSWUA^`}SN(njhYa;&89`G4PpZ5l53g;x>S~G$+mZ%Qs%0kn}FkadxA#XmqpvVK_z^ z9)4z|R5yXu&0E(uW=(&RsQY{Li5)x?^EI2daIBnXHjvz?p6cwxmMW`Zo1m+yMS*zu z2YEl@_v#o84Ey(Q8ex{UJNB+V?)2Y1Z0zEt`8o;o0g(HCD~h^P2EE z-z-EKhpC3(tXZs?n2c4zFnAc0Y%%2DV9W3iEyifbEp$I5A9tU^GotJgAca20*zRzDgHztm{VZyWmWq>2A)sITEMJ2?}a zg`=tqc9d?*cqHvU$@sCL`kr_7m(ARp3`ydX>lYf&MJ43Utv*AS>B@e)G;H8Fve%nr zL4<2Me*G|M0j=~aEFLo>%!`dhFANsr<%qdyYR^gYNl=7F(GPc<`gr<5I!^b2I-4I_ zZpSoXf(gPk_UIRn1seJ5wr${tmH1uqS&s6>Lh>%RPWyVFLAhC686ivoU$Wev^_-vN z2a2>#B3yR9MtL?bw(?$?za?k7E~>^d;%Yc=C;d8?K|=EA_0e-uRQhgy_}yabk%2`S zzgMl#?#z=k#fMBR0Qi^`#c33qQ|uCE4x8D{QgW6-s5{Io8wOve4pEh{cyI=iOZ}>zKuv zAQ^y#HzYZ!1?Jz{Jr%C(tU|o!U>rHO^@0FR&V0=)RbOD-^B`?O1(Tz5K)~i}2wE!f zyxKN6zFy0IB8j?op!0Y?BY|@DTUF0#rEs07TAcD~A1hgLTj#?;pU3%hPE{bG86QV#ygol?E79Or25^e0u~*bvsHuxeE2(<=49?JIEGy{kYi z{%8E;?c4b}lX0u9XG32&_~XNx!H{Qk{=Mn#L!rQN;UiC`!!RJa1069HX5DD<>{w9ne10}@jB5~Tb{Z%oBu>%*8E%| zFr~kEer~T46p(aJ{&KFDDTbBug^_+feoU}bP~dgwOQD9wQLKbyO7XKwz~4emveIx{ zUP#Mtp(S3ze$|VR^)JkfDWGldTFplOJ#TfH-^&wv1^Ss8?1|0h3e@dbd%G)FCkv_@ z2YgosFe&oXMv1+V$4XrET(HYZK`)$cmYs}f{;i?qO|$6A z|BxhZ{+mF2c}pO~HM0ikdAWIoczMJHU-@2HUU|7Vc*G=LxnF5sIXNZ7Wx08{xW%PK zMFn4(Ug=($=c3(Om)c2BhB_EZt!f_$cq;L~$NieNCY|N^i7!j;bY#?B+Wswwh0LE_)y8S0YRZat;h3GK zouR4as;gGHC@%{}m-8}6M>uzz`mCOm+wh^*1&Vi`Z7@a08YkF{8h;(szlS+4gFkLW zB(b=fSM+d?92s4F>Y%?_-k#u++n;cwXl6IFHt+sbN8%P+2CxHS0y;h1SVve(hJ zRP{CT$mna?!QSC`8FuOH8_~jN!j-b|eqK8<1-0XM+#jaU1??jV6)Y_mPOryf8P#+N zoW2CNPCwtp!CTwqo%x2RFC`nbJIgG=mugkl?r{zmgelY)w?zP(97bai- z7C)Tl+zH!$LtJ7K=4|TTOh(j~aPV*Kb(#-Dr=WND9OFpi_Ceu9z@njoX$aq1!y8Fw z+wzAy$tE>6EG&C<4}9Ai11Z8M(`MGrBI@_zuJ61b;<<8#Z8WH<28j*>16oOsDxP@~ax|9eMwEpVTzVbd`$a-m}Cb?E!Et4oHMgCQsix0+jUmq(&ZIGDdSRcI&o!`l8PW#!aN+Ak3^pj z_s@}QykLmjp1}JkSAGu3KmWz$h~lfe8|7Cz|k;)AYfr-{vf?d?y$@WLL=PaGcVJxP(Y(S{{~C< z6B)NR;1!KNJs9ilx7{!)`Qo?#zB;huhOcx04~17%O$`8wILjXOC;0@^?88zIH@P=Y zt^fY=_K{U!oFG(bS#IYoEcWD6ZETQPreA0OXt$ka>pAK&8}|OW+za}1B)LAN!PC)u zJGt>XjZPw@m7l*{O32KTbqtjO4lab**tVW%2Rx*z3_xIqwY_7=!zKz=thd-nsZmOC z2C1_d#OaC(i)oMmSkq(8Ez+XT70`IG8h`xCa|R6hT0=3Rbf3NjZhk6k~o zRp5jl%Rs)gtNr0(ZdMbB`c_TMlr%nYR50{|19KFuz_o*@)k19AK~HRR>-zZPHh6>u91A3Z!{Uw|d*7j?Go_(T83(m_7mY zF6baex~B2Ttxuy;6h1>CtwY>e-+O+sPV;LG&BZerjbWAQrJe&(`brt@5`r2f3B&{T z?=wBtE6VIGD#(ofE!2IAuGEMZd}!JEzSnW98vR~gox`}SmVlR#kf=joGU5ZZgMCiM z@5WXT5euE$GRri~vexy;(s;R_zuHpPCyAbgP@gu|>GYa&KQI06zmV0@(ZohQogJ=< zk_s_f7DYv*)hCPFOu^bA>(T2PHy~xjY&Tg?ex}!$eE3LXNTY=h8+R4mmrL#Yum!f{ zc;?yYR{nidj z$=O2t{@SHE1hcWtTxS+<6nP-4yn@ z)(quN{SE(AnyI_Z`V;AKApeyOK>_@Z++JF>YMKr%NJB19{L){n5^e35x)_4{i+?TI zI9qQUFCmGksxbpVIJSk}M*NGcK$Ub4zQ>IQeYu?z*B8fIc9QkiFt457P2)*lx9y7i z7su>YW?37*`yPJLky&K%>=xx6-H~Ng(}ny9=PYmQu@UBPYa5z-&H%>4yOMq9;liEt z2f_%nxW&8$-Jx;iIw5GJNFNkbmVeR#A5C&&3Cn2Atjes^+6D++Z!1<1*Aehoq7FDE z;(Mc#z5k^pNhK#khV==P(uV2LX7GlwAOu&%)$GV!gS}U^g?kmI%xM^@IwZ;q+Z_K` zc+8ITwgYYl-P`rT`ik``;sA~wkc8Mu_HPt2x4s_Ow|6$_n@+yX4Twa@P+54LN3}a5 z&oLm5K*Ik%UnYspS|fj2RGOnYoJ~~(u9BU9dfer;*lAop?wI^Is*E_fI~Qy$7;V$` zaln*Q0wi?w_GC2#&%1u<<#QC@LheEF59zJV`*}t%_MGO>;UCw9j`T9Rj4}~ zdUNW8Q|@7!r$0OemMBa__92mkX~>VID>-f&hhsAkhq!6?On5;9!-4s3bYS*~r?@?I z;H7|c=QPD=sT#g4MEy6fc8#2qig}4Dvd{dr1wCQrB8BKD3Usx2pW{kAlpe<<8I0@u zQiy4rNy+8?Nr2^BA+X<~{^FjD8RqqLyFe3hP*mIf>_!?dEBH4#>%d^fL{2MN-UiiLJ zoXO^Ph`!HQPoH1f+@jf<%fY_sOPGzyv>^i#-~1PDhQ_<|wZ0E_M3s<5xs0fJe%HOl z?h@{a+5?l#-i3-eU%oG24^;6sARs1SEbxe)?{|(z!Z)8_>#~mdVll#Hf(@*@n#%qK zqOZ5Qegvgd+Ay@Ks|mNEL!2(2be0cNFk|&xho0!#9Uz$r!xVvAATLmyEvynU=*>Pl zVLhbmPLegCZ}~Qlg_Vc%uqGn&_+fDG>kzNY!OG+vC)Be*9BwrIbQYP)MCtw-wNJyjymmbsU$JLoI|P_Vh3$ z5j5+j@_z?+HMPUd3XrA>fTEO_GX%MNr;50<4&*^93uyr5OD+EgtWB}{L-khY0r@?HvZCD%1{%# zyCqIDzc5%k3`dKQb{E9&YezS+iP#=x;c3G?VWr7= zyT9ikU(PH?icDxnC}xcCRw^Y{PN?Ek(4S`j(C+WpK4>}+Esh%df~!-^!uvUbU@i+B z^Nb#Y2wy2M=p0&FGf-H^|4=;6YPB0#m9h39zK31C$V`@dc2~3#rj%oke{W$ELp(>_ zU|b3Pq=skOrio>Uu>QMMhCru*7F06FT4(!O=E?DF{fDDg%LN zVGM;TV(YhLgYl*C-{z>FB{TdD&FEFpV32iiFOt+F*z9Ovd6K$-!0qSo@XHEf?voNT zbvaIIIfCsqN(e|Zgg9#qOhcX$rppQ&fGEsVnWD7c+ntUM;P6IGwRAddV0-PWzJ3g=lk7FgGr6ElT#C)}4CX8~AUluL}0@d7V?Nr^=u38hU(tcC*eh6kNi z27>7ZPb6HMzV!`S`V}Gm+}!>951hrj;tOV1DHIM{3E31>8NK*7)qlGQK3r+Ht_uF9 zOU6Zq^QVnqp;y@~QcWM7qWH|gLKn1lm5Q@f)oK?b(UoLcy=^Mb(Ig&_wNm$Qg#O5^ zdc8AYKv{)8)EKu49R)Q9s>zf^MdU$eYFdtGWGz80PYOms4VH@&8~;+3GCFb@11W&c z(-Ux;fNg@Bd2rvqV=^6(1y{pL4Y4$uKh$W9kXG5lLO#FQD48b(wm5ULA$o9comFEO z#=RcNqE%En9xVm|z_K5J&xei$l7Hx!CDR|D1s5TNqTqMP-uTHI0adBPi-Fk`!lV5Us;Fl!nT zyqCZ>5{f2m)<=Mc{RP^G6yd2jTVMgX4nq_w0Av<7&QoR1Fp83BfEAg)NO} zNX3kZsDJfn9z<^oks=on8&d28LOlgEh(djo`C=Lv6BO7IXc%}#hN7fjt4GI6Va@Kj&A7=DQS?FRJuWs zlrB+PLQqgSd#`iO_5QX0cRkPcyT8Bt`}x%5>{_R-{|*{Zj}cGr7Gz9Sb0+$gY&r$R zja8H{8-iCJjshvtG=z3TlYL^uc>=Frj`e`7Z%5efk&x@iW7jlwdS0!Y3xN+BPS;~o z5ItKbsw&Zg@u5hfX=+g>reGq+2mi1#=PUniZ4m`*PFL>wwk5*Vo4UQi&14v@&gG*6 zC2!lmd-3q{?4J{xcG1Pxom<9j9DF>S&z>F(71O=$?PDAN5;Xjy|MTa?HEw67S%HVM zW}-wUb1Wh0>p8_Yp3zZk= z$FT!O0|O|w)WA5LMwm^|sdx(six9Nb4i5o(?W@iKvbLmWc<1zE*)6@+A7~T$5$=1A2e`oC%)L!`XbSJ zHbyeJ;g5t$e>L-{`_J@pznQ+-SdnZeC#U&is!t+7uVolfX|GoKCOM?Y z!>`H6;ZdX#uc#)xLY>8XFuJYKs4G*c!9uQ#2By!6b_3v~cFd?uFTED^KA~i=XQ}!V zZXA?)w6u`QfE2NLB+^x8vPzIIGP!}a@%CYZH|_~LIp&Kmn(fN6p}N2(TLVVTl@C<$ zSD%UiL@8TskKCR871l)>?Lf>+AfGoqfn-`A7Pe-=&;n9;drXip!0m}JAz*P{{|$=; zCx9Y}fJpLT_qiABX(;3Z8QRJj?N13{g1>X4Fi0R29vx~8Sn~jI%_PrG8<+D?ViBYi z@G`LG<+u>#p^ZHL;`HdbRys`#U8ujCHcqu!xq?llFV(nn`d8 z*`Kbui}&KC%*6O3)EhGv7tf`(PTr3GGturNEg(cL#vx4wE-l&wu4D^h51gwfwM$6R ziuJ;ZL9oW;*r-hcWipYt#2~-+;YyJ1#8Vx)Iz`5IZqiWT_`U_8DNR9yD=1F?z-^=( z3`dqS!XeSzB(1c=^Qftv+3&7j$*?#aF!$SzF+2JS95@`s5SMsxG6sEJ6L!v{>iHPh zu7UK16R!(_0KnDyHL~X(Tev7!m(4u576~I>$O-xb%uEXr4Fdol5GhRxXm-`^g8^&P zgbffOV0G`}`6mwg8ITlrX?_SNO{dj~Ysx6(3R(76RIksT@Q3~RMZ?GnA#EPaYPsb{sW6hIdG;eC zsk$awoW6?2>9tau+UbDXu{R{F*JUJBtT~DG&XK)Is#NS=4Q=^$TA7FQ6Wz=LM=9&~ zPHC3ZM2mkN62ZJFtw<9MsxAj6z9D}n96|P5;SB7g%(wX2*#O3t4{JyLDY`{sDK?t~cR%X&UE_Rc+WRZLrybNvjjgO)$ zh?H)j;sNn-rK{XQJZ*LLT=mo+lBCgHQpvWNe9quUHo?#r2E88&q|a=p4bJ!y$cZ5E zwqz5{oaIUei!Ffl&s(<La411u1s`gi$^Eo~ zS%N#ngO%ka-SXz^I6bcn+727WFHf7PMek}3 zNtJkO?>b+-GS7_**A?pnI13oapn`}}sCkx*^ZIY`1=3!hnFF*o2&T?Y^Z9jHrz4zQjBQQBoAUyKVtQxqTa?3MbU>n48S6A&P_!oH@ zxFeR>L8l^&|7)S(Dq~@3xgT9ATZOf5rRM>*a6lZyaQXtthsV?X+n;UY&Vk#(PA;F{ zVLhV ziE~UnIE>5=P1R(|@Ulzz#^Qkkmo_RbObsrD!I78 z2Jrfwq*z%WL5U$SPc=eMkRt|;f)q|$iU`|X!btIou3Iz-{y=%c-dw_#T$~9onTgpG zh?+%!r+4FGN9Cq5sCBm`j8+Z-vl0149+M(8Z4pnM$IE+R z?!nj%&x!_HEo;@-lM_2z+wZk(pp@zPkrJak-w3uzZ!1^lZoc$%kvkPM} z$m0pUyn@G1^h*ge9DNLXs3f4r! zt%=?~J{5Ja(~q%pXm&1BNMOp~VIj4<|HoaVL_^uPfc4co$@;7WMROk~k-+#UG9zt8 zpA+|15xa)3riQH*Nga`;)a;1_1gJ%wo=FD7lB1t3(L6iPULwxk@HZ*^TO5^Pd8BJ8 z=VkxonnK=Qp?#_HQRmqEjn?pXQ|=sW!D6+?k*k(|9^0@*Ow*kD?mwSDqhZT6Wpid( znwbJa+?Hyp%3XbTSh>GPE?DJif(cKYk}?4@LT*~=$(52Os0QI@7{V7)7bHygsCI0f z0L42X)wh>%N7Oz^WF1i(OXS&=K%%F{h6X;n2b?>rmEZe&KglZ1N?!Gk@AMX}61IARzb$G0sDs1}5^u>mx=;7X};!z<(Pt zdwoCXC@rcT&m6RNt-obedPwkLm<->P7LLXCuDaNsP4vffp7^(jncROI>)SK?X)Jf* z?BXb|QcNse*!`?yeE<5}(Kq8q3|Svj_xVj|*5;;Pi9L!LCP_A5Jn9q~wKKcSy5BJ1 zwz9SIW!LWK6UiEwCaqFqQL`xN+}(PG@cKHU_$|q}%FVdL^SNSj^#P&U^zdIWf*4i? z4keNqcu5=MkaO*_9&gC4d?d+dVZADm`f7S~&{rTP0ZZJwCn5sPq{2+GDP@em^g;{*n;PbosvfC3Mv1%h$o zSge!5_Ad%~5Gx9UfKi2@6yxNf!vHU~tAprt_d8>LX-iU$*C`i`;;-dli110*F-h)o zRTZum>zhHSh`uI}wX`G@xd-O`m;Lj(CUIRb`#oN63$uNmD{D<<9NG^9B1&|*FuC?$AU8@>X0g&+YPmGT-jgL_+?rqhk2q*y0sFwlMs3zQTeRi{SA5&Gegs z8}}Qx8;6^xXk|qmbrn@bW#xY{aUR-1w7`wK(Pu7MMH4jeFI!dTv-R!2RR)HsDy5=R z6m-2D9r+ky82(Dn_JHsMYq`ZtSiw{3*CwX<9Mf2ltbczMkFm^bE#sYclYg z$-AsQIBbsHcG~at&&2kPthj$y;t@^U++zoX@X@j~v+#bOYEFeanvUB7mx{a+_bvf` z1t=lyx{Mx1))0d|SwXp}x*~mWC9x`eQEsIcPFDKeDt7#G#Fa>}vl!ZtYk@$fJjyR-4 zD8ie2U?j0&MnNc2zh)|S{67Z6rep`dbS@ga!dRU`81sYMzkg@q#CWzL;!{YA1Z%h1$hSSx)JZw%@?wqQfeVBf0G49N3x_u>b^90eXDs3 zViZ(uf9rc#wgxxR8`tS7lPf+^TG?1&x+v1J^kJMMee|)H;UL0BZf=pKEe%mPrjQ&8 z_x9V^=gz8iTp_=ZuAxz6AS2g;NhC~{wV7xcU?N0yYxX|q8&oGyts5l?PY%=OI}zQT ztrZC-=Q_cvYt3YBmKx7KKb*9-iktm`B_rYQ+vvMAI?j9>5mnC1R`1TiCe&I)0roS; zg_3aD*s`Z}Jy^xQYOE3!wz@0}BX>xZ2gnd(oAB5%3cIeOZe$w=hWzw=!OT#&3{I`jZ0sPmG z$|;spL!RBmzHXVK|Dd#_d^{qt-?aAhyF;t#wf8vDjz!hNhnm?|ydc;z)K3labhz@F zx6{HQcNxqh!#S_XCb1~iX$Xd;MLnFyR{Ks{1RlN1II6N}O`|ZLd6`b3!C|pmPz|ss zLeioqE*2y0d6c+}n0}JEbWfHQKm;;U%3Ad3wT)whL=5|;xvG0ai4FS&C{EuD{W$XgHM9jlEvJ4h%#3*&NMEwO$M< zQvUH6o^@vz~=xh8K*nxB3JwX1g+cVf4L6F-GO8fU>_hsa-fp zT_OOyLpi;m(|9AK@yTEeP*u``4$U+DGJ#YiRMszlJL@L4TK@TAz))V2ap(Fg>5AS& zem4AtWT&Rw%@1t$36uB5--9uUr@tH=PsgQy`(uy2n`B1FRwcB1&o;*tAH}|!J9?Y# z)u#RUB3ky7SI&Tj1Lsel)zyrhcTIm^D)OCOyxTwWa>j~e+6-M~MAJ39HiE5cntCSq zdKc7vg-H@KKSnN0sh)XVhH;{EDbMC$!87@b`$_`H9@)E%`jeEWE?1z zUuU1OOIGcmmK>dN1ccfuT*wb~QRCfG*kJ<4CV(1r18C}jY*sJ+QpZ#XJcPJ zy}aI+51ZndUS`cEnE9=Wta7SwpW7e$j-md3>pFHr-Ig* zqu+=r>f5nIf`2()Hq?!$f0CsfkR<4CfIbDVGs{w-N z0+5(O>}2-KzsibqQ-1;>iUGHf9N$A66E3aMX-^nNYX=dK)hNCZ1P<(?N;H)!ERqdo zYc%cwgCDEnF0imH9$wrL1n{GVb|fbtu_5>`7Ue?-OcKUkm|5Fikm72{5gN@fb7N$P zCV=N>K^%A>L7@Mzn|qL{D&|lpg#}v>G~e}yHk80bH*wCJ6G#P+9iQPI3jexPtrKK=&FPqFa+%RIt+n}y@i zx*FAe1w~qL_^yAW4#Ows!-M9NgCYip)AfzyKWndCFTd2}ezQt=_Nh#gp;xr6PG#yV zMo{~LpTGXpN+JefR<>83rb4%~sBgBtqVa34Rj1gYo61Lo#l~4!e$w&w>YR3MwLy_^ zzVz;!t!;}tPrh3XeP5{d6*nFn(XDR_PCC@I4*$jau!8$UOws63&|$d$XZ^|kd!U%H zFCvw(E))iJ#e4s9#>fPFY?=!`z2SrM;u7hn--(Bw1fnV4I$2a7c!XrK6(@Lexq*924tn#3k%5!IyobeN(e zo65b%@Ke)){=RKkAxH$V0BW&wHc{DUkMQ3SAOgNKDVixp(0@3%CorWh|86H++UaAiFJLC1Vt2(o0c-HS`p3&YiOIm*sC-kQpou2 zs_n`=g2i#<+!h3ZM*XBzN=UY20?el%LNL{b*n+SkgV{bfID`e^mYo|XqC^c&g8-U5 z34km;X1y!mV&-&E<@Y)%xhg*Z^dKU@-B>5*yYxu_E7!fRi6RHDxE%my0fO41->0^M zu9e?o=Gm^MqF*~EH-yOM<1JW+4qC;WzD5ZMzxJ@h6M-&L%vrC;XVFicX5M+RNwiNP zKlD^DI$i4js+KDRk5qT?QbT^VX#Wn{Y5E5nZXfvj_iu-sBk|KtpT*;%u-(~fwUEd) zZ37E?i`+($RmzX2%$bSbXmv5^9?!k$za{onF*AG?D5dr_`ITlQGwe(rulDrm^6KjS z+n+S%N(kc$;;d;5r1q0)DBAeCKHcFu%wU2%jLUV6ELAVli%!dYNnQU{rXZN`EiqNB zpCn&%Gns-tCwxD$h5RR&(ZQYu(L?vc4}W9RWgTr)AY+<9sQWA^k5vS;)sH4;r_I-I zu>&FR(wb^Wv+L(k$6Y26}To%~GX0@Xov z_Dfa&)HUC+@*svfK+TJ@n~^&)F1q)+e~hF$WTz0;6K34thXCLy7+wFkbzlfjd2u*p zH*i;gLy$AjAzY5h3Qvpsz*mvg78^t-`xp1p$s*~s{pC3*+cu=y*uC<1%e3EYJac8k z#5~LS4^x_Uj}_BubA!$&U(J@{Cux@Uk8?z5HbxJz&DSoI;=6Nq3x(6=+>1<|OZlfj zVS}~MdUxy_2j|njcxm4Erz0ihp53-rr4DT`+%BtL3Eep!&U4#1@X9yg7eGIcEPL44 zXHhR3)J{@TFusj-aDA+0HtXflKdH++Q>i#Y+OC#3RBzL2vTGq+6MkYh97(q|$(g`J zB}&DcuVbzi5P4pKT?4zd=+;w>vcea8asiRFD;h9O>6yw)d34+Ks>{rYhup`~CJ0*oK|RDh)HtZ=kmBTuA3x z1*>!}lv(lblh&4KmrB-+90eEx11x(z%Ve_%&s`Mzlm}_td;wH5e!k7I&XX%shPi5khfeeRu4^;5 zRb5XKt?xP4t}?$5O1-^0@{_~&`>sX$B6r~GNTOLM(M6GNM4Rgrc_{aXzb+GQOE-p{ z#EsY>*MvWjvaYdzCV3Ehd--LJpJy8fymRU zUH#!%)$M%4{UI`I-tez5(C4KF1#Z~@qGaH^b*y?h zI2}JI|JW6}tM#Tq?egN0m+aqZI{vYxecd{XPxBwH{3G0PBR__dAP=Nx^p9U{o&AZs zbMx}9A+T(f+EerJrHT1lifXT}-pX5xIQ@+C+Vy#I#P40x5fu}bi%{1NPL&p_k6KdE z!N8mMSDuDBqCaaKCd`jxUzAaA(E!B~Trq5vv{cUt(EeWMUhNNNWd=}>M3o9}9$L0u z)G!?tdH5eKYM5w=ns-H)w!=ef2`{MCH*^nKAGXVf>o*w3ze?R2S$5c{+TU}~s20i0 zKbyI2eVdwMkF54G{i$5(Gn8b>%Pfs{M-q_qE z-?-dpHgcPSV4QWD6_MSXF_WvK?GKCNN+u%dKc06JpT*F8qk32HF>1az9p#mMdFf{PZmq%U`Q<`o(;Bd>Z37}RKUuWn z;4(H_KONa0Obr*;w|;&RyVLl7iKBVM)}gr)U}nu;8KnIxDyGOWcA&rz!S{b zl@CkMpW|mAP5u$PNzeq2E|0`sYH zOkiY3DKPnvDJIRb?ml+81VGA;J!P{jB}j?jD0;aZH_TSJoXH zm-i6te&A??AjfFt*u4kIR`Y*%xbKB;6(Nh8OUMy2T8RE3dEVnnT&V-4J>9Eix6vA) z!=+WBom0$LgFW1Q;u!EIzf<;+*#9Q{pK_y-a<)I?fkU9##trlQnw$%mlNA%OlWF?VMU`i@$LRbL;%+kDJ1RRL=po4k#!Bun2;)f(1#%X~z}v~33b zDBtYjsY7+g4cRXM*OC<8+qZPa3O_NW$k|afwSRoIDQ?o;_pw4dZ0hHq>G!T43_%J# z#kAV{H|x!<{`=2IYm)R$LFsC zs+-QVjTo5&a~lIy!xtH*ijtcdlxA&seVe>h6&n>q9UE+fjNc5jcHW(_sw;UvOdL=r zM!Ga|8h!lX7Yn0=c~8NXmdFwjztax4$BN0WJ$>!n6+3z3J46u*J{-$Qs9xk{*3PU< z^Wd2harOhcZ@{+47q9aXg!|X$_SkpC>y)V0i;3j>Kl~i3@_uO>|6S}4+4&tg_$f~7 zs4vK<2MNQ5k%|1gX9MSpEoyw^5W#T(%Q*gS#zqfbHv1B}z&KWoA)Au^G1K~qB|PYo zZuHvJWmKd8cD2XKk$lchkz*FRi8`Z;K$mu0U+@;5WzVGWmL(m+QY@!1D&)!AEne&SXTOnYHdRm`F1b!@Xg#VQnHcMPxhP&QlRF_`#Y; zwv@g%0$hy{wh;ya15WzwIV=zY;08~~GJijfM|6K<)BE_Hs9Cy_&+zES$%)KqB<-71 z+62bKxEaZe>38LV-)?z+5~;i{?L2OZa0+m_=d`F*j=5#Bw9n$v)(~iJ>~a41>#2%+ zjWKr#v6s!0T+W>Wv_NIg;uw#8?@QGh>*lv+A~9B{6)t3v#N_V{Xk14}3`_YB6U1M- zK6lyRn{D%Bpxl><5*uvV-%^4Er&Owdv>SJ#UiPkBq#PK%W5F0oba}#zl%xK zeIFX*Jq;+v4Jd{Jrh~ZdXe1}@ADXgJemYN!^6s(Gq!}iU*G|zSGk4*QUL*4?QGLMVuaszU*{~e|1^EllsZB_|`7jcX-~d?$0UeFt%j{~fJC$roTg5I{f)WgC>Ssq@Zz&&3M6}H$B1RG_=2}J| z57i{7)1*y+A>L>BfD%yxo^GURML0UZl_XbH0~{MeL8nenq_fXGR_=r{AwY8i^*)nI zPLU>vS~xBNRLSqg0;LrurTx|Yk2vy?L$Btvl38){?Jnl_$TeCPq6}@j4^Ju1I(y)c z5<@?qw^27FkPK%<_4=yn;5U74HHia81OlLSs49T2tpsUCWI6!qER154cr1$e2bC@y zY^`Q~JueI{WB2R+P-JxOn8(4K>Sl6snEj*6YQAqH_~4T)l;HmT&l^pO@TTGB+@dq1 zA5&X-sh0s8nVrqY@9$?XPJE@kDCbEoj=AghLPg1MqIhdt;{z|G0Cn*tAuc4@6r$bS zkSvj;y~NSSV0q%vi*~$klD4|lx(wSY*ecncvsB*_mS1R`YO=&svQm_@`Tq8a@TiP) z7mDOfEM(b&L*Q7fS{y+!BH4kwp*B?0G>RZ$)}{&`Dz6Af=#(bv66@#jCZTcY680hX z6f`2V5zy|=2at0VXezXBK3YjQ0H#W>=LD~VHFI>`qF%#w(@T9vXuRJ&r*x>NSOqKa z^eH2c4hXL8J*72P zi==zr6-}ZHh^VgzQgZiNTeFTNBVjl#f`lDudS#SN>C7r;MZp)_zF#v#L1r z*NYrW&buY4YiyqgwU+GulPZ=hOVnSyj3|3| zedgP=SN}J{osvQ4w`uw1x97deTK+OpGgKBO-}d*qYQ77@X_wB$?44M6bG`dE?4sMj ze9&Lm6VVYSm&N)^#NgfW!W-j1^uN2}i{~a{T74kl%x1Yn^AtY~tCT_h>+>+}f~2!}!t(b8%@4$Ucr7Rz@7t7H--Ja8u5 z`)l#~|9oC^>)Z2PdVOy{)9N73c;WGE$3h(Y>lgU$4~J0(C<(TTUAJHS3=VxtrV>9< zSs-i1dibsOgG|7Zw6~Sev+N1MSE+NqkB{vrKG&6w<*mxeY4$R?cD-47yw*FK)!{JX zoA3T@`tG7Yt7cie977=EL=ocS_Pe6Q%>iO{{iJ)QR&x#I`QTNWC=q98FHfw*yY zc=RefA!L-M9l)_+-RQS+pyl-PqXugHxZvpMJ@OWJ#xPPGn2@)zRsfVZ3OpepSm)xb zBQS814+ACCBby-0K_EdkJjT5k#Nm`$y+awvYRnlK%!%=ITDK+@a2v)!Iev(mGoE%L z1Ek3EY9un(iyB(vuJ^E=n{jFp^qOQ~X(2*tB3iyK4DL%^FMz<1mDq$>A(Mwp5V1v* zgdb7w3V#Pl10IB{LU83?C@9V;_>0VEG};sRK<3fbr;n{$?;TktyJ#zo!O+#&UcqxD z66@$*uw7llj$g`%(R$GPgd&!PY>mc+=cQ#EdL{3C$lHVBnh}V>C*d`N%2!|ix<`Bq zH?FkrHC+00ai6dLinf06c~!wNk7W5Xy}A4L`kO&B8a$tl)jt)#OaI$kE?xd9Y&15X zKis9QQT8=`uijkzYc5jdoA-xCPbA*=1t?0n*YCYFUM#vlS4}}Q!o5;Q!?R7gsmuvW znomNh(~@UVLqL@&NjQ2nUscE)aZg=TrhlvI8lO$t*+ zuk#{8CMPUSTWmdr{qSoDMzqSFQE(ixq#J5ih_HbxV(4@X2Zp{C0TOnWS}h{qKRJf}sy7>bmsZlu-QDf`@<=lV(M^2l6!4I&_( z4zryY5nsspy?yfQ*DqDaivlG8DIOk>aR133=Mp*XRw_ zv>qOncnv(5wfCF0Qw$JPWl!O zbXf{Mphw{^Hz;ubA?HUkZdq^HjjstZ8izIlyk539I)(4T%#CSje1vv5< z2>^Q8wC8c7QHK3Auu5Bu6@&)(1p+2-U%0$~)jCht`q(^#NXK@js;>mWdiRIwI$_0E zUlb8s{#sLUvyyS}_xFEabA{IQT?71b)t5?q%}!39A5HT+M*J+7-bYVjmA~W*htSF# zm+gIPmn>7S>z6P}&3~3gTRto5Z4Z;{9ZgBG>o}2|;3)b#j&F&%DS{Fs}?x)M9V5UZHHTlBf{wf4oh^z$E zVXgkl!t8w^p#?NZUTHMArVwz89Nn9hKAGgc6RON+XBJN4U$kT{+W5zT{qqDRo77NP z{gNiBu0eUz;(m@K%jLG zD3~Rda1nqULjf-s1otbJjr^O<{}(H&{u?vkZ$W^n5!b%k(uztNH<%mq8`T>#IVo8M zJUJ6@26e%Q3}!bKH`&WCec3Me8O|+)$NN0v+5dv@AO>>ehM5YB)Uo31+ge4$R$iAP zdx}(@7Vm)CeTLin?9!tPDFnoQ*h~Q@p4_EzJ>u-T>!%rC6h6~4$$w8hoP6f~((9qN zV> z_(n2J%BcL-gO^RQbLsUgrD*|nExVU^&sm(B3N0PEYg$^6X+a+U9b-tCStR^5-6wON zf6d4-p}T~DwVStU#iGjB4krrYqF zKKGFgN$`tPk}+jqVz!k;VA$~FPE1HdOG2WkF)bphKLNLC3Xf)pVaypiM5fr&4PiT^ z*eqYo30?Y~vpVR}$O^FCB)I+oo|9h<;!z7K3Up=ks>WU2{r!Rf{ig@WG!5f zDl*Mg<<8gjre=(lZ!t*YG)0RcyY7wYE*{A-Qbhth;ekb>j*tMb5?&~!Pmw2@x{l0D zX;`nDS$@^}JU%KBe)giKK}1%W)nLb0Cixv+w?smEPkc%%Jo%=I<=QVq-RV%5$nS{a zVk>40pHVw}x_f;$r-UIbMk7)B0`sk`K=-Emn)W!SSHiLCYrmQ(mRF~XmaFMrz*{jo z@(NgmY$dTsFj0PbbBd%M-5upab;1;#k2SIlocpNOT-c=#8ug;Dph#td)G}#5lK*X-6%#`1sVKN zsi!MENA?k#0Z1UPH?fBY1F$_NAT&s0U1yR)^?(3q7Cugd3K3Y^lDQ>nN)6+{p2kDa zHgKpr$^rKffCuAOkx*y`0ybm@u@E)1AbCffigRG>qOnICOn@X5qw$a~KBZKDXwXF| zvAyh7-~%{sc7a$0E($qyh;ZpFel?{SVBONzb@anTXS86NV9(YTA*&K0M-*aVc2B_n z&d4{tl z;;G!jI=!5v%9~-k0xM);6~ctm&|G*IXpVFsp8yH`X|nEiVS)Z9d+1tprNy>gYN}}H zOdU6P@p03||M0&@ZD1%rG!}#G)}+Z|E+0xpU1u5;jDK^rJRfu zOm;{vdvPu!_oe2}pDn8Ux+`GD>WuU+VpBEGg)+qnVymfBI5766M08ww*&X7KJ*3<} zHV<(zIrx6RCHBEDWH75rit)m{+^E*`4^`vS<>G9`PKN>y@fbt>4aFqrb^#0&du8f1 zOrq~IJJmqH3nnYRqe#;Fib}$d1nZlW7G;zW?c0X?-%_w? zDp%KnxJD!^(Wo}p{Sb7iPp?^EJk#`XXer+Eaqyly&zFD&{$g#r?)=%%^mcfax|O?> z+kWx;$)CD+HhOP$@=(;d$8jMBOkb$<9LJuEPhKUsc3KT>Cyk9he^j?+-t}zr^sU!O zy`gipxFay*M{) z7|CpD7~lmG+kTy1|MksktOI-Y4bR2+J;ZhH{Yy8TU@*`Fgz@U4pZ4dRZWJ121S@e6yPOO;%z z;O6sG8^P_@KXHUCQ@RsLV4o8o{tnxkYF5sA{`?N)ulJ8NA*F=dw#UV02l=L2FZ1{SH;$0 zL$r6W4jqujS^Yvnh=on;B5RzwvBpPMqW2c!L^W(#)=J6+b&2c;^7050HuMv+R`GA6 zhieQx-``m;Hh(Ptn?T5ENo}HXOB&G55B_H3|+c#s`k#>pF>G`Lkhc`mRv=U?IbC;Qdlhn?sZx46xToUe^zS(+D|g;l7UFkul^ zOSQdtbN&+f5ktuw%Vrs!nR5(9pR|Igwc(b|QT&j5t=IffLo89)1fAoslS3=bN^AhQ zvNu|pTSTGG#SlqM4Xi|&k{d*X%SZNyEAbM=J?9K3>4A!c>4ZD65CJ&lAuk>B$mpU0 zFS{)wEPx?mCqr{n0CYs|-9n#T^!c}}J?}9|d0L0n6L|dPv^}9F(Un3rj%X z4=ip%_vwV|xNu)S%8gDgyk>f_s$%@ufg@8fgDfk+4S)izF(|E-Dn(Y&O=~d9_Cs*y z@)wHUL7pzf`_w2(uWu35JZ!|suSiIqKut}F4Gef{x~v~(D+XM%^$Fd1WY25mNa@$` z&U`|=qQXBJ-|@Nsfg(PBUKjpEuS$)^22MOE?{etwo^|7~M!o#NzR7}7#QmbjC7@ia zaQfD;`B?nQLi~tql~6y;xKf%3PoaKN&GQgN)96Zakd4`i=eXBPhuJM|Ap91sPc0$7M($4@D+7R0iq_YJputX^L#8l? z`@LMT3Y=Y3Fcd@IBo0qjS{eYNLx)1ygFZbUqOz$^xJvn0z$;J734lc8!M{0@SQ;Q- zz`%}e5GaIMu>fQTu)?(6M&fD%bT)291IH5DI5k2gWI_CVY9n8MJTW;7IW&yJw zzsP$w^Ib>w_T~1;Vw#EpOvJ@Y!K;TVBt$o>!ASYM(P$dRG_v?S#5X78SFM2i-|R=< zV`UZZRUEa+R9gjQSFNb$MAUBvT`YXfVQ{twv6+x<&zAS&S>q z@{}j5HBROqnICqXx*I@|hh&>>a^LADh24%&Jv1ff>Ta2;?ikNg8$BguF$ZSk2uo#Vw;{M6GWBJJ}m-ydGjmpM6vdqU0^t|GRVdW|?* zE_3LU0}STm8)eO!PA@2BxJ{F}v}Mw&=NSzP_y4RDj+45)UoV2q=RG05T?oOddJwdc=#)U1&J#+%)g&rM~$m+lX3t&mSx=~ zD6C}N-uIQ;>~`vA7n3D+BcHlWTY=l|LCyJVP;36Ye7~M3EkH0}l+Xm&Dp5@q3Svi^ z0pKt}z!wzCmfs&!2U;MsPH^WCdbC(HI%EXR&t=<|sbO1pKqet$lmJ8z0i|584=9f0 z58@pfegI3t6bpV0Jz<+|b%+ixh3Xyz~ld0L(SJjjLp)hOyN z*?-(}Z`m55e9PwM3;AQass}}HiuC%&5Ubn!1gqPGtnu@FPFu^`&6HC7@5NiVQY!Xt zAM)J3Evw%7;T6mKSKWSE$~B@gZ0_Z->|B)K(!*xcq*}0?*m&6L{(Nb{6hkjf#s)XC z+>b`HWy`~A`IQmJNlz}ja)~S%LxWRzz9Nr6Omn)kc*w;zMsUFC^NhZuf)L`ZGPy7X zKLMv=(;QnQO0$r0qxQ3qDlXh2Ac&r+M=#V8&EW|RRpkvDumORr5vx1C>PToJlG>Up z=A6O?N)9Zbsi}i5#eJm;T}}g1wwSAc5D*O&{VE$sHIertVhD=Zm;~}80e}PvK|6Xq z6yd6FVc=dPd=y0oKf1Hu_(22r*y`1%@{&d&<|45&`Nhe7@i)KhF~1)5 zNEvKfeEgG_n5Tv0c-7oC|F(cWtD);EHbp&~D586@f%k5GG3T%i(&XgDGpJvt?q^s( z*8VYH*R9NRmprZNX#6Hec$w3GLHm}3gtr@*>H zXs*I;>V9R2Cxh0e2>+s(2};Wh-6AlFXmB3>b+Mq<%TE2^~8&=DsNv#6>__ClmY zQ1Dx5FfxIVHtH6X*-Zt)Ipr1=8Oe^KR;mT#f|*QF?4D3?<2<-aw+lF)xUz|9>P@% z{vL`a@DqI@UO&~~>cY>@!k*$?ysKn$Ug{e_?bBX-L|qCj+~$oD73{e)&xd)5`J09R zZFkGt7R%L~I4e+4VmM<*{x}h8y)j#^XEdxKY_gPRQx;NMY{*ehUcB$`lC$qVTS!s? z6OPbtGB4BcP)&8O9c~AFd2V&I^qP8NDmgr>=|PaXHTOwO3T`&=nmrUyhD4iz;AjLP4KFQ#32?V| z1Yo>Oz?2jboM4ram?{LM!|9^KFnSB43Bb`fVJf>W+y$Zy3_yG!&_ZjVyPpTBQN!s% z1cHeFcWDH@^4~Nk7@y{hCTO6UZo+RYG52n~Z!&Jm@gWY^4bP1*o=qxvbN3}o$T@1% z+8QTq;fm|8@v*FWLUB^l8^dQ4Up@^>e#;5`AEMqmuF3a( z|G$?E7&uB&9F2sGkVZ#0(kU>ykw(&y0@4W5-Q7y)Yjk&qC;|c!q9P~;zrBBt&*Smk zzuW%Uz5BY(`#R3^IG&-Q1#4tjErZys^O=OKPj5Gl^n=OGZyy+mPP__#@jGv~-Q-)% z4Vy>)H~6{C{K~SY%Gzr_D$2!*d^F5L6v_T)7Wf*E3zRS7za!1 zElaVre$CtZyho6vVM~7}9e9-X9$BRXS<{PvF)+naeXy#ecLq#hsYfETe1O2mhZO!#;aBt@Qcj6J`zNOLRrJr5L8A|WTnFs)`nM0yP75*ahSJpB8G0>n^sCzP z61RDPw+sdfq{7KN+r^PFazx$|_oHAy1B7i>s0h2h7x<|OfQGZQ z3(dZTn56_12f?~H_vio+zIS95+)fWEb%SE*?GZfyHkuWJPeW4IFS?d?q_mKG58hW5+-Bx(zD

)>(f#UEB!XqTp=kPks*B@`XUP>DKo32!&9kRUi=4=Y}oRnZKGf|m9XQqipyS;e3+K!Fs_p{ceU);vktEZu51Q*I(+Uf}hGm=g321(I zcVACsTCS8>tVuyecspN4n$gfsT<|z>T*hc}!dd-#)BopR{EEDUZm{a#=1

P9MDj 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

L-RaFpZ9$#kw6oy2R!t`3jwvlrqKYWT-+bh& z?P7a1@+iZijq}q?7R`E!M%PobYJHYPEK!y^n}Hy>t~}9x&bq}X;jq?eU7F*`TxV;vi!gX>5iv7G4X;?9ssLxM z4XXfy)ZGGxdyGtnpvhtps4!tw3snokqGnCxxI#A&UIKzGy&G_#)m;X5T8N@=>=h%r z1J}5Tx(h%M>=1xu+hSi503q&TTQ~&r107WqfM*;xhP5?%)oJb(u zu>i0G03yoHDXbG{CSn-_bOHdbw;+Bn7ht2K8QhnXMiZ_v9|76BXfETeBwQnc&d*KL zjP&yAVJ&5ev8XsS{L8&1&2vBVQLxoo#pcR< ze6vF)FYpMDs91-i^_B0z!yD@)@-hE8!JAhDo#s%>r5|NeO|#u@tLv|Kri;<_Vftp} z*B_a-5$7y&!HB1w^RPEK@-KXU1Zj9b!FIv{#j#jRLroPkJvd}T63Vuw^jI`=1jo|^ z$?M96#ib-%Ynf$@9nLB@5$0%QN?LU@82J)~0V}pTqZG{YMgTBK?F9xkw8w(!K&9*i zKniOlwy;8ivmj{rdulAzcz`9d21X)@8wUnjj23tsx&RIrFH>OW(m;mRVqrN{u4)JN z0trh;J;uTkKtAMMGAN8-0|8wdUMzD9WCszz;2;1DM6?Mb_80)z0~R<4Fkrf1$rqj! z2%eJiWC#F?3Ih<8LCB#1{2MqS-)v3@+aZQ-{|8%gDunQZQOIoOh)%)~fYW*A@}(H3 zQSn`T)0H&1?bBz=X>>q96+Ov}MyOBp*q;!p3e8YGudjB_-D@%X{JMS+iF`wYW=+9IOn7%2ESdNY6DibX6ol=63T zoRXScbDd7VlGw-dTJPK)Kljg=lsP0ER;i)KjSv@l^Ru(D4F#-TNx`m~Kx41$fM(8w z`sy^Z?P%t?)}Ro+bMX`rPBV-f=6HWj1n*L{%Rf6na6Rs+KFG9$>qJ9Py43N z6A}KjWo4e|pYbm;ngNVz83nsc!BZ~dAo_12{s1$-I;Q0$_@cW5&j#*#kDusM|MAP4 zr=8~I%l_*Mx4Y79bZ^T?TbsUqf}s1v6M=;~gdLvk5QiE&JZHOS?-c;dVu1nkj-m2e zuPh7kV^gp0;mZ}89OmLN`Ir1L@9pZ^|7rT&ZAB0wy=bD8L9AHucmrPV(Cn}k^)8Ti z0Z6@vL`-OSUrxMZwE^5pu>>_|Mo~+J3?){Y;oRCcKcvu%hJiQkmQ+^!W&c+dg9mwA zAO{r-Pc4wF5+xuM#QypUh&Zr9&LYF^DDuvD%!~a!hg8dY`(<8(^8r9R`=!i5=LdlQ z2LQ0|ukZ4*J(*)We{pBuW^U%3E5`(RZ4@+80}-Q&1c|fmHM*mY?*7+L-(9H9P2*>} z%Gyswzq;P3eOGg<`eVO0{Azq*|Mban@JaJITIQzV>L1_VORS#AWjRVDfvq|D<}(=6 zYsYbJ)`H8l&0;;>+dFgLFF1W$;*EQeIcv-$knUEE8S+dijH{8GIN2g6qMdAmRwlyf z#(H9$M0li9Fn9rDV?lOO5k%t*v5f7epbLnmSQCn*K{i;RxB-A_jLHIGR278`m1}4f zanuWpryb;)6*wx9$VocxYz2@Ij3XFTvV=~`$cJWEj+Qn`e>$)2)iksNd{_UY;yY~{ zY;1RX43q4{Avr<-gouga9J`l)ja%p3XVz)66xA~fx{QouFajdR>9~uogyN!={FZ2K zDp8q|*Dql~0x0~hkAo=gx>)uAf8^@c=Se2}0<==S5zP4c6 zw5K;^IvZ_2Dkd>xABpbn9VMjIkPKRb$Q^@5ALOP8CsQnNpaQG-=Q3t!Pc% z&LLt$qC=$xiCII%Lzocoq;aMqfSFv4LKbZSwIoi!Yn%Yt(Mr}LAvzesbSbH%>CIR> zqagy&fGPC=3t3HES=p>0V;N)M!*nX`MElL&(o7sAAtTTZge>q4A`An2Oo^;%=vSeC z^q;XqKZRf%J~;r81*n5H`A1dujk7`Jto=h_I-4gcfw}_AHyE={YOVP$Wxt-a7Id9t zZT>sAEYn+3q+5cio};nPw0ilJjhfgBAwtD5b{_~{94;=ULjdp>hl?(m5CDAl1duH^ z1>3fbl&h+8;Ld~>_;^GmVi1$6)@*vg@xUP`w228nH;z$nPR6N!-gO(#_?mp*-CQMN zS&2QTbXmuLsmJGY6Z@>wha}7Y``*x~t4QqpZe0t`u;u=-bAkGnZTwC}*enp!pb5X# zCu-VYGE}Zrfg^sHE;ngJ99X9qGHOgIHJO2g>r+3CN}-&%9W3bqVO1A0f$EHa9swqp zO@hEsSb(2WCf4-OM1V$61QZGYM}Z2G&dCtkEw_gQIbjuyx*$gs2sJxUHJO4qkQ0J% z#>mD`HdvaEqZ8ITr{4i2#tH&LR!O#H3rS&!#bP-MfiOl0`C@iAdghKRaF@cqIx{(` znRzioDTmUehoakH?PLi65cIgTlhHlnOMTyW#>1DI(WWu3x@Wu7bEayYiY%DOP?g{J z;yUx8NpK;XuOKW30Dk+`EVWB8dja@@!CuzPA{v12?MXo(O)j~XM^bS4;c4GyGgsvr zJU%oghM**lP9w#^xsSCyV)~epv2#art4-ne^UO%goH02}*9Mw$Dh)pOy7D<4V(Eib z-<9Q$Z!Rne^O!?^`7u>-?-g;`j}oe)26;p`9Sdr6{b{ZumuR02EY#Ol#fMMJ>B?5V z?|&a;QIGDnYAu=>#fe>kYFsq4|HW!%w`owg5|tInSxM!M61o#s4W=7!|0^5=1ef49G3mSLiHujF2USZ9v#~MOcco*(tDt2!SOaNoIX{ z{#E}o!lIs`&zHfGjge)`ABId{9##c1GL}G#1yMu<9R;fTmb_PEunZE53>XRa1z5uP z3BU&9W!~4FNENVPTNnUTmIEYGPbK6NXK(=r0AAc}CZ;2dUIhMKZelSDp{=0IcaJ10 zlUbm+XBDNVZR^Kq&Uj@WH;*rdq6l9bMj&Ed7}hnTQj<6PUzz)BSK-A$Tlf}o?p%P*s@B>6L2hQEM?hL;!H<5!?-}ptNj+ixo{71d#Rs6YVsUMl9;K(2!zu zD~RIdplfD=7zr~FFC>K+2uV;l+c_Z+2VDd*;1FPvhI!$ckIp4sibs(0pS3;AP^Q_WdXKyq&!?nU!sjpvKKYT07S6y0?4wBjq(DZ8XcqxBa{4ugaVLYZ~(rG zO(JH&j2@KucC${jbQl2sTi{~LtT0R1p+5tf8Z~m|5%|dLOuo+E(>go@wk9UkblIAz z5$1wvj2C0|>E!0AJ!#(QeRJ}ml-^-2^ohok=fOzHXF?zN4P@ztCtu{$?Xd7sTiMEY z4o)v~+#g4D%yH?9xA)JKvb>NWO7D3k8~1+c=lQ71`{x8fhU+qSFa57-6RswDgH-7F zDlhWHcs-ZJ|8?NT4F3pbE%n zFar&!GD-kIMA#bu2*9D`?L2rOWw_qS5KF*30(X9o<^J@9Q=zRW+-4JZkVrhp(M{oyikd^(L$H|AOdy ze$#$&c1+0ZTCwR**1p5ODww6(|2FUD8t@sPh|GRj z*!`O{7m-GJ@>h4LmSkT>EA)Zd3yrH#hcM`t7w25p_`|i&sv}q6dwFM9vOqd31*9&a&z9~^0w8g* z{?-@ueo;MsjWJdCvVL#7_}XN5`i%3Qt>32XEjBu6*dp@&*5>8Df6sU4-0YniSIKdn zEay}F&r5Q=;`5BZ{ucYwuxhmxUTY04OkTdp;jFak`u-+)!spRUSFJpi)Te1oR<7E* zJog&5rq4$`x{f<1x93(|O?IGM3RO;zYs50spdK<;0VGSM0wBp%X-yj{R{=^Ga_!1z zl7b#wQX`4D3$O|p0NQ|4oj?K0jA>M$HA@g`5~2bW7N8c(acApl1%wNLGy|b5?Bx=I zA3^~plwcJg0PWk6t97XTRy0tA3|NOB-h7q9@>0RVsjKo(j;K=287w;2Ec8(2O9 zJYfK^4YUL@#6gO4U;vD68H=_U&VFf4?=MdF0aU5*))jagO}#}W>Mkc%3j1)u6M#-T<`~IQw3Q--xe$e zif~)6*|Cfb!R^c$PqZ#Wz z({DNBI|7VqrIra-&_K*?(Zs0RX}klhIRvJ+^A&vc*J}nhI#YN~8|^c9!~S7{y&DeB z5A(h*OYKv&f5=|B*0Mu)q?@>|31YbC=^q~P=jhO90K9f#k8&B4v0a+g-MgayA7GoQ zP`fUn-}nEra*B|V^XE=|ZYbf!*#sW$EV^{|l5>pS?Bl+Bt5ia>i2&SQ6@-kA$5Sdo zO6gtt$y-1B^fvXr=QonRnTOX#$Gl|o=El(G%98!Va#Q!~xz;WkcEXyOwCfa%XUbxc zX9(}^d=aNRHvAv4Q8kbZ)J~D9#_K@k#A=BN@y|`hA7BkbLP<|TYFuAqm!dh(?R@m- zdvHItsFzGUt`%C6dbKe-!WG(fWM7l_|aSyVFlOxj-6bh-&0Q;xp~yv2OGNVVZ5O@81`@T_O8l6`sQ3bbghVF86ilZ#vG z1mzm8a`l4Tnv_EXtqT>3F=^G}M8TM%K{)7DJtcAm#}268gWZ_GU0fSP5?ahl#t@lY z993Ed3b`QeG?8tEGL~tgaSUq$rjVO-;D97bV*?QyP&Eo^=Y&Dz1}7i`Dw>FeGK6w^ zfo^S5s9Tn?a1b(=2gxHG^{}k0g8=|Qh!tFX2<61hMEeF12rSr$*8>A_5r#qnrWvn2 zdj@1LU_ch>3qS1H>mE&xggLuE#T5pL$MOM0P0BiQLWz6_fV}drLU+#ido1jv32J}4 zPQVJ81Kup|DMIlBK-(;CzNSM=0N-sUK~bdAexeV?OvNzFU?XlGU!>U>RSaOW+a`(R zT74HYXNi_qj<){f@o8aoiKdIUA$4+0$oV@uTR_8de~LrL5k>UB$(duGD>LmW+;37tm^4tUW+1 z@kqQ`@JNk;1eC^d8Qd}81J{S1Ufqz#PU8itlx3R`gmPb9k#er@^qa7CLx3>R*$0@- zFwkDe8Ym*dVKxYvtq5Bf0U*l&2o}uKTq%Cs=MM!!F*0CjHMKFEqxgpGL(f0XNRA^A z2!Vwx$(T5_Yc2cJ9{#p{c7|)Q*`n?}fDjU35C9z+S+ZyFGGb*cKv=OrymD$-+A2hf zirH>uT7Nn!Uvs;+}RYGa~0gTI8qyLJrK0XEwga4 zw#rVJ3$L;J)lF&vQXx+eR3a%h_k|P)G#DV$p<*DOdSJ!XHnIU(ZVU#9XiZegVsXx5 z3vM0`1fH*{dFqtw_*zc55tk_e2!R+s>Pr9Us4 z8^?@XHI&b|u_VhzA$}@jY?GERA zzqpwEvoUbOgu^Q2s5$$pc{^?%qwOX#@_koG)P56RymO9R2&2aX^g?3Dc+5fq!Vn}~ zO$jU&sIP?ki?wh;A#*PU9d!t#$n^`rl)IRfo+dpbgR7Q_wY@Bm^T zT@(S98RHro4QsBNYJx-vbpr;%0FOuvcx^DqAVB!=$Yk8usU9cG5T}eq;1mK{UJ81s zQAs6X5|)`!|K&v>0%g|j-!)&djBE3~Ba2YVBk9RN!Q7b=F@OxhhR*1&7J2@@v%h0a z3=l8(25ms@Jk1bir+>QTtDcBFIpro)vDR<(%179*yOdF8r`f}$aVmhjLjc|k?x|+N zGytzTJe8I}0N^goSRH#t+TaRF{HM=hy|7RhcO; zuLYG7sul-btL~Z(U8@t+$UGHa_cbdn-UDU8a6 zzyT>K1cAYw7@6wm#JejjgjZSwi5kd^E0;!&12T%MO_Rn(hU(ZPbL#?wXi?%Kj7)~1 z5ST%6fJ|6Ol0=q_PCK_ipu)Y9?ttG3?SSY60LBsq40D1#){jT4p#m%gNC3o*MJ=Ab zt*t6Bjvyn^2oP2T0#KCiL=X)ySfPcXLN-o7zv4WoeC#T(<`Xj+*a!yWR+-;3<55+0 zVI2~vtAR$t0Dj!9y$6sKK>_WtH@Z3Q%s>X;1JQdT){5fbcGcO6G72P4-IB1(Tb|9g9KB}OlEzWMbLrRsXi=dg*3L)n(; z6tQmWYgTEd=_sXvOt`1kW^)y&DbGVpqX$^Q*5k?5H<#{y5t@n^xVDD@i`9VLK36~8 zsgT}m3pa{bc!(CDp#mwzZ9?I8)`--EYn3oUi?EPj9ENRsXfW8x1_W49ttr!9+%%0# zmOLy1EHt@7M6W7}aF78&RwZ2|hDwjZ7BUb(B4Gg5GqQPfBpV474FZ5?@bwaeS{Wmw zj);DJV*nIK0?W2AL?r--fB+QR#^{2Ya{$qxsD0v^mwsYgN#0Do`Sm^lgo z!1vaUG|36MS8|mHzUO!e65BSK6(6JWoO~JxFYq)d_-hZLdOtbMxb6zyYkEI*F}pS! zyhD(G%B{~5AW=+rPaWD)GM@Jy){Jrdds@W{>CX*MNHo=69M^^{wlz7oB5Eh?h`!@) zk`ksn?kMjJ+){Ohw8qv1RyOc)CxUJj`>)O2}%1byVQwM zmwz}ADCKPD8G|DOLLdVktW9Z(K)3V0*RTS~h-q zH%V?Bz2gy5{N8=AGFi|PUdrnP6-ym~pKhIE{@)){y9;ZOrWCD}$vQZ!>O9@r&i1}~ zF}1|LBZWETHRC-CNAc3bWUfdcs3i_Ogu`*tmX{!(zA0>oaTicA-4XJ@;3kL{B8@W1 zxX>xhxK+E#ky`-LWD$>&n^mmJ3CNQ)k{cvMGriQ(U6&Ue3^UzzRE+T*Kvi}rE@MK= z0{^i*Po(B`HZblAa0o#4{ZGG)^BWj)W0Ri7`_X#DhSh)o!!VWf^RG%yX78AIfj|NU z2#gnu4U#d)i){oD8aLO?>7P@3)xS5ja(mo1RCUb{U%2`+uQlvFdOl{?;vUGth33K)L-mbuu$vUPW;-IVSd9t9_`sw6EPiT&^*?i*3x@ z9C;R#xHI7qG)7ewCzh<=?#q4S+Nxb`^6K?iSyxwmWuUem4*W@bSXkDAU&c6HV0^v$?kpT2(2-An#78ezdw_<8fyVaH$fRk@8 zNhj8Nyp&#vx%+}bvtnTY$%|}|jgXD#8WDnpT^d0-n#ja08eLUQvd)!xf}oh0002tcK`sR0001;W!i`#OG^J*|2_Xm|5E=;|3v># z|8PD$K0iM{JxWYPP5*HJT#P<_i%>VC>1>W2%px#*ThCHQ78bqf z>8-bg1beS0sQ~&aCcFzk0BCE)K*u-`JwW#d0002E+AUxmRcytuRRpEvMJ+EVkqD$1 z>74?wCl>&>G}UjNlr$E_>Y-|rkpsNl|Ec}^D*m6*eY&&zOZss}d*-+woz`%v=N&m} zH0NA8d44D}^2qfIzr1d?sCdrzd|?KpbD;4o?yOnk42?~ZiwkY+{-B9Bnhrwn0zF7! z8r)tQEs$NW5C{AOsmnD6iLjrbIZ=CKxuQ*^c6Dn{X~LMY;jUmOiO}1-)(0Ki_!%5_mQ;AMR4Fo zggFp;Clryk@DIJGO+SPn2t6*F55?S-6Xy?^$*uiI3Rt^gpHNW4smTa|lcOQMHf64{799mlTUN5F@G|B0 zO4r~3+$FmLGFb{V&>c>&l;Q~2uwIc0 z)OnHM%*L;q{Nt?b!fjos7}XwVQ1QdhTgo$T9}rtpIeA{c>t9_rg9 zB~O%sQquHX-~iscHO{AC0BC=;#<(FvV6?=7rXl$TJv- zLQlV3D0e4*HEpi$eaF-Pf6V*QN~ zWrhh9ib#dFTOnTur*nN2%UN@ripAQdmSlB8vlLVs20+F1dMJiVC?m`20gJY%WCpBI zi~}%^kU_{u1{8sM-qf&yqFx}csd?F0Y@ZeYmk4+5R8EZI*?9{8WsM^z0>F#535 zAr$V&1VYHv<@`CWFs^h0&19lqz)EswJxCQDBmW(R@npLNOEdAn4GN|BieJ@36r4Ld$4L+`hF&U_9%E;y z8oC_`+#|&RE+OMBD>0(GN{Z!VI?Oy^M53OcH<6|w6$Pg#MRSot1ST?MqXL?dV-$wt zR%n@%Zx#zgF(hCb!76+J8{j}V0+NNYe9%`Ct&z+EAy@C97B&fw|9LQZVk3<|Tuzs0WYyL+(!Cao_tYcgI(}nB$s08| z0RFr6uEcQ$fE%pUeoVsw;5`g6?9p7b;^#?NDfV@aQKKq1JG?-G5;cf1kZaT0Fx5G( z_0Ddlj#aPzdpWTYTFP^Y#XqMPJ}=IlWLxj{?&b8J45fCz%6$-@Q1@4v{y78^7d+v6 znu*q?t|rN9)URA0gf%>OF#Xmmw>3`>jxk2vXS3E4VnNPfGGDucg=y(-84@@%}Jvd=hEHhw{s#e?4kVEdZKkTC1w6 zP(p&LLFI~aV73XoJsG*z* zMaGd_ie+rGIZ9I%M@iarG-D}j%t};vTE*H~1Zl4YS%~X|EQmaQ%wlCl9)~`lHeH@t z!^$iOHOz#nQ30yiH)h%tgFuzstb%OH78Bqsh_#lw6FDPL!s>FVr55e3>W;2K)oNr2 zEGe+cgCb=i>>w7hp*t0cD6`L8PRyW0HNR?x780wJR_>Z=?#0{mgp+>hiDbJT$!$Jv zR6cxG(a#2+SE;R>m>GUpkxfnf_?LfwIBo6w2Ri@b3Jf%Ms->(%$cL%};h_|ZKnvmm z!0-bA=&@f<9IyYDE=J;FubJnlsv4b6Oedg*(1suYP(zTARF?kl|Nj-Y$$6}v{QOD6 zfmV$jbve{C%Q2Plzx%Y5np(GWF}b$L zUD@c1EeJ2S?&G;XAKtO=re1W^cGrEltuA%6OU(#2W$SCJ%qvmd%sH11Zdtxg<>XL| zr`Y+hhH-9eEXWgLgzGb)jN`Nz$VI;-nY5<3ge)drsZ$kY;i;iZYc~YO*+~oOsMFQ4 zsznS{M78Qp+wFn2I7K9_F;jpNT=T?XmfO$(%3z2jBpDkEWT_jNP-5e-P*w>b zM3O~BjdFyq5VH!&QV1}q`gZ`ZLCAK;`X(T)U^Pb}q1XodoNPd_Ag~6-kBjSzlqjn% z;m)=Q>+$&es(*c{1b{)p>ew~OIkK!kuZt01oXy2&iUCChhXK4!i9`5onypkuZ?zW^ z7yBz7|K(2ayYe^*;|UtN%ImZ|%2ClD%SkY*{F?n|j|V0)&tJKK@&(0zV5V6Bj6w}D zfx`tJJEe3JnDBwU;@RI~FjiG4oYP`ZbN+1WGBU(kCZ5jbweE$`7R+&8656cSk&tSx zFSQ>4ymnF8G;`p5ZvD)J*P-VJ$TH;sH(G(=SSQ?@tJv6Me>Uou8twE_gkR)I`s*Iz zC5&Gk?2af6Q?#;S^Z}e|NmO_D5Uo$Fr%`@^`T(jzVUYt&-ZHw{i5*%F&Kl+AS+Y*H z7U$X(ycr~1-7 zPiC)uVD(v{;7sE#J$>1i>E^?d$J`7JOTm-Er>}(|N3#l#M20F)l5(|eRaG5yUQI!z zUlFHM>uK=51KuB?Dim%`8(yW#L(%4VM2`KR%-0DPM8^5#68AgV7%vim8aHre&YN@9 z)tBxV#9FBuxMH>2F8^2W!GcQM%dmGS1tFGHy-8(hSi$}KOA8O8>R%+Llpgp10dpq-D~dtmTmy_eyz-;n*+Xjkp%sj0DpirO6Wk3WCuylns$GuGOshg-*(UK z+K=~r9Ms7m*xV2$h^){JYJ*sm$ZMw0;cMYlS2(ogP;q1Q()6bQ8mnbafcs4X(7tZ5 zGf?r9R!E5j(|*K^rY9`L*~!P_IQrqx$9nPNe@~o``4am@4aOWbYYf(y&>E@4mISd0 zf4us%&um}2U+KOE6OD}0%+cdaqhX|NJHjqR67ulRzq4Y$)YWV&iJzVClwP?X)5pl} zs%zBa=dJ2VETJzB1sr5zB*9-T&D@nN2iy3F)P_mFSE?5 z6=?}IsO|Asi6L@g8q5l-XyQ(21286t8*8N;t7uUtAS47Ugs7?)LC7WmToI0{v4}x* z7a%XrmBbxrf%@{S8H9p0AQu|rNSL^&piPqwJS*U3G?n=LD6RMHHi40>5U{aWX9L0y zSb-7XarT^d_n72zBWA}1lI^&$1&Q{*RN^mQuGek}01IO)y&Cg-L-rKRaQs5|Vf$(Du7lnI06Ex(<$FgPfB`_FgMer=MD*>#$Hw(o_!l*^5mUvveMJEt40gUuvqN?T zh4_cTF}8GPZZz;7(_4_%G5omK(5%MTw>)!IRnbw>c1RmYP!&tv31<>xY+$(i_1gH_ zA*!jwz5n{;AHVyExkz&tzq~kly|9oWH!mz#l=|I8^{Q#Smp(0j^Pa*z4Gn&pW2h-u zr$(c`i##1q{aAL5h`Vn_dOFjqRa%*sg@fn7zRY5P&79LlLapcRwpmSatr7;x)mbc1 zy0;QCZmT=1n&x6w&}ignoHcX<3=AKDu8adJB~?^;S27)wRC#d(LnbhlpgS3f<;GHE zT4y@R>GV`!S&p2k5bu)(8E4U{{h?{K(C;rctOH zfkW?^8R%u;;9U|@2o_}8SJsH{m$NHdi#K5z87xE8hvyo;u?E$ycwj@Kw5r^ZfZyJS1 z(hfwn%O=e_Jtn9~tOS9VS%Qw2)V*Ij9Q&Qe{i{P(Zsi@<5vaXgE7cit+I-i{<@QrOliOC|pz%c~CZpsUFwP_?l-T+_+?F zfSHI41quMW@;o4;f_CDlnP!@W9u`1=Y*{+_Hs431LvOM_Fcu&SbYmbejuZwlU|vi% zflAUxZ~f*Wo<$yXRW<~B(l%Boc-)_b7H>vle_k(NY)jUQWZCqL6R)ZW_Y3oHpM3KF zohO%_$fZB&wg29TNL(b4;Ou+=o&Y{9PH}E0$pkPTk5k#pUdsl+JqwI@TvT{&+suPg z3{xdH-)Q*;36Tl_x^P1>NhSj{B-OA4Z~r%ZQ!RY|mI;5Ud-HvLI6mmr`O{PyobL}* z@n84-y5IiM`9?!pTV5Ehvo@8h?aQUR)YeozHGxnPCPy0jMEE2%QEK^Y*dpolTW|GbFHBm8ytQPUE~P zN+?Kd3bL@f$sg2I@EE4^m#7_HKhWP~!$fV#GFboxPE-%27dqD-0TiewVeOfSp+m`l z{1}tCNN#B}R9{RdBOz-A2*u@CM9rRE2@7N!fo01-NY>Ss46gyeAb#}+3+djpy#jqz zmBddI$x37N1D0fL`6jsiYUv>vV}vn_C4qfo-pBUzyKKs4f06Q^iHzk?M#z#R&8|w% zKXd#88o$2!OdSy50RFp;W-k}cfezMUZLMn}5&(wVV8N*)$8FAj)mioORaMh$?L3v3by?R`lWMcLZfyf_7YF~1<<7jQtQm0(Kn8hPn{}Vd~i5g9kwvQQVtx}ePk~;G! z>U6`}J1yJbz@~l10wirbAxZD3C_De?-m`c68+yr-Kze!oY9DMlvW$(uv5^UoWh8+m zJ!G-F@^Ac=L{@oz(L(n}+y)CU#==M+2xG7o&rBoj$Y2Ru281o$0tc3Fc|o#dg!vpk z$=I?1>6QQNif@%a*NE%<{=2(wGx8(`V*_4`m2{ap$p*0YUcFfp6ay$T-3)_vzOe6O zHmi!m<{86_X)})}PsISp+&t@*A0)ZgXr@mR)2F5dgD7lhom>+zar>04yPQQ1=Y1DhW(3!B#n;SBEm&M9PXN}6E?5QXE ze@+~n=NHYInoV7b(6rb4?e63oe${!OL(Fx%lkc434FV}-;R1v}%Y}J{ZmM@dVTz<) zDFnHya&_H}YUXm43yJ~i1_?Zsx+-^dsX<*>);U^FNs$nsveWo2{Emlv%rbOiW|Ywi zJjIk)>6^svVjDoVI|_tETv%$bjIaoCN0uB14r~#L@XzeYeQq~_(^HtbJIKO*wIUR^ zWlxd&vIVvfnB;r&U8}&z!U%^?n@-7BP%>nL&jhB(GIr)jVs`>X6| zo*AbLiCwl@?XOmjEEmTuLm*PLT-GT80M@F-W{+S3C}3FCLb1gCg028QWm#KfrAIlc z&lIYwjAC3{xBs&@-^=-dZ0$*5j%*S1rf;PQ6z}H^0HuTC3#Bf-xwg>SU%0G31t2S>Gm- z43O0)&Z)Ji{B&N5YdTdu9-y*nbJva`!kXq#1=NDGE7MfVW(f2}yxEVa7Uk*bT}5nK zNMWs3tOA}3V|Op5gQ~K-UZo^uo*)GLtX^118B_fYQnhuG77SQecx|VCRm^HQ?G3cJ z?7U=;m=w~>?xuYR4Fbtttbv}zjxX2Bd&U?5nH4OafzB!|o$PqcvNLd5e7{p&TaUB~ z9oH*QfN2W6R;gtkpG#tuN(#o8@#}i^!-A$o!n{|DZ%^zDj!&QzYQi@{C>g8NVD8;_5W0guP2Jq zz9xLV*Ta4$Kafqm4`<@ok~|22j_Dc1er;Gktl`$VVNp*Bp}Edbxy;-{WufrXRpa(q zvHw#ukqcGkvK@);GZ3Y<-StweZ@aoa_&=2|0la2KJdWf$Qnyk+#rTSM)1x2X$q-GO zp-{o@=+9gAIXC%`%!C7WlaoBV9>BY#s)vA^j@K4KdvrZ)0E}j#o(I=1-pZwRx!20W zK7ehhuq<`Z_q{*7HR-V2prwd4Wx_ma*2pG>iDY(7ygauIcKWwB`;067R5_$pQIF?0 zFR7_h`M~aY5|4A1Di!(;M-C4|Za>4N9-?-TZCykF z)MizS@>^h6qtXHTFrc4WC)pRDBqyi0@%w7geJ*QzY`p91 z+cj*0ygohJpc?M0@`m8)aLubLSC3|P5l0868zUMh{F|wIAnHYB7-R#aW@+T%vXkdt zRn}E6c*nszz^Wk@#dU%M_M0|;Ubt$L)_%?N#o=}L;cP|`wpO_(Pj_Z88BDwegFC_i z`6_tzihgXJjQkXM-?nTcR7#T;4~3v2sojE|qB8jaauX}!(>S0g`O|d1-9)pAr)_6x zH9hpG1(C72=1Nh|2QUP7S>!n@m8nKp*#gXZU8J60t7@zk7VIjq{Z)6iojZoCRQU27 zf9Q4k@f!=#6~+p931!L4EL85bb*i^-BHsa2W|K^&Z*24x%M9|c z0wB8&U@}$uqcY&lMSu9$y4=-lnF&*qC_H{7W?#8TL3E9)9e=&}dLI*Wt11zL0i<%J zNiMU5!dAMKTVgZ<{s9ydE43dxV81`zx0S4&!TT2$V^y!gteq8@oObuTZ#7>+?)}bo z+iWAsQVgVOK@a;HXkN3ZCFGqbm{YbsmBDMJM~&90(=1Qf3(lc$*H>4YQK2jN-f;2R*uK- zJZojHwI5Z@%oHa{@j4QNszfZ;JZr7t|0?O#v&m=vTL-P4%oVI!x#PMIG{HFI8TO`m zjhHo7yl~=U97^>Rpq2p~YJ$N&vlUlJK|)NY-49%=d_zcpP=O&p6BVl$%V~;`g^2)4 z;2OpY4YdGkuX59tu{F7Avx89ZgbM%1R6g zG;MsB7VY11eY1_SIs z-}10=@3zu7C0QW53mE$Jer><5KTrO${`ai@@N$~XYRuY1M>={Xzq5PKnOcX!*$j4A zE0mC!Sm*PbDdEmWT==A~UH8#xW?=rxa@2b?*)-Guz8rS3K#vbZpj{5fR^kd#F~wo?~y7hzZNK%_{CngQdeGB*Z8&7!+f%INCKhVutqM&B}Z1k#ocu-X2o=C!8E! z4CA|ETBJMOm*)s;|I%Me;dDG}(Urk);G8KzF4wwxdxYMBtQ_!C%0T26lB!T^)Gt(` z)KolxR7HRwm_benps934iy5)n8oIG<6QYDg3%Hj-4MC9@(*TO3U_{n9kSPUFODdr$ zl3IWSimaOMR;H@0*}#LrwbG6kNFoQ;qJ0Pl4J(i|K_v=YO#@LK_7CG{22XxqNUU&r z&Dwu`Yh@o)cPI4Tg48llwUz&l>2elgSpf_H^i3}>^KM*DYwj#~nBe~y|Hs%EI`7z- zeLVjS8OYfuGp!WhI8PsA$dFZh_Dt5SABtu>3p^W#izp5rJZ5sr9S8t_@!07p9R^f* z?~IvYCc>5(h*od`>V2E3s;bf;+%XXvM2RYf=4!XeR}Mb6xRAX-T+;bZ-Yr<$F% zJeCYTA9R#{l@p)O;L`*{1SebshP=`OZsuD_G)S+dCc_WsUt%#JLKi2pZ^OQ7;SvJ8$d%exY42-~Ra@rsNYJL+vDQI(F_cTYm9k64?$Eouw zQ~45Q%fXE}_A*_du88qhO~B=UMV#pNjT!~En$$(B6tKEZ!-6$TBO<6X6Rj2X@)l8v6QHhOJUn7y(3(%wC(aZmu!ZN@E8f;i)U-T0@K|0lW-UON#I+^5p{r{^M66%+b;{U_4 zR=hmnmwmgmFP)74L9p70iij$ys7k6U$-kr&iZA0A<(IC8(zBryws7E=2w;a2)mgd% zMH_g$gCwfR?Q7k3PuJE;#FDboXmYgbp~RRhq!KYo%}Emc)wZ!5-+VYpDRf=secr$K z9~{yZ%YSHh?w;NZND9W4J~v#d>T>>y^Tl|h8Li1QTsHRGOyS=*MW5cLEaAZ1Lf+Kw z#n3x$Xf{!4GAM1NiL{O#v)s^vyXhOSi!%-e~->zro~mn(|}kir?FVqqCsNcMVfvR1`(=Gke#M$b?% z>Q~zmz$k37)M3mdojN!3&uW*i9dDzhBvk_0te4wi2@j+1P-G!_ZnxXmBJ>f z?vsTxf2=bbJb|M}cB5i+`NjP|4{PA?L=9D+b@6e-yr- zF@As&+x@gVduP%3^w&&}F$`*yrUzsvprySGkGty05&Lv8|eMq|?zft|Z&3K3$YU3XX$qPt*vt zM&d&;Dv|g^&MzmAuCO1~0>End_&=#w(h-I|PN?6tgGit* zpiFoo061V^1CR{p4v<4&&%Flm1|a6=LO#l}pdFl`1oKu1Gu&@7QqGy;TmOX+zX=;@ z(%62-doN#q#%f3^RVw;&zR1O$_;$Tj*Rlon9Tty;*{TJG`-ehX;afB8>AR-azwb#o z%&0Ej>+8kcG*pgJt41pFODA;(V$L7YWn4mUA$zlRK;=hNi>!WXQ0!`4CzWqK-M%4s_yCZg6BG(rj=vm1^`T zU%4)n5D6VFNG20%xjaoqOgF&HjFW5(T8$#2=wZ~we3u-RokrQ7OcpJDhDBoCZ#zP9Q-FYh<60y*!jzgJ$L1{lQobiR+63^Mr1n!EdP=B zzZf%(MW;H&3!$*22 zqhed>Iy&hQ{5i3&%XxG#>h&k~KU*!qS>+8&d+vN4&ipizGxE|MV)rghQPO7xVKBu**zpDeK%Z+A{8P6(~8x+s0;Ovfok4)p~C5_&e0R8!Sld*AKq%7tSY$8T0 zXe5T2`hC0is~D?INt{i&HwWb#^29j%y}G}3Mt!3v?!V|!ECc(62S1UA`oPf>{?$Uhj2s>5z4#CckYl(u?(j3ltLd6APmWYunV7ycoVJ9{5L;!70Nid!M36g~EP6*P@u2Q|3-3xwr3E_;T1cwr?A!ZLjj=O=P{!Y#8}jGqKe-@kXI~ z|M*BPQyIomf72d;%3)n^yg}UOvtte#hs&(TKUD1(nVW9YZ1+TLeiMlND>?A=DTkxisKkKyNh*&zYRwP& zBlp`~^rri>Mjns&FChOzLVaQrm)P)Q5B%w4=^7}W;FMsM2IwE!#Dn`5WG^T(~Opa zVRPX6?(EOR--XGer3emP3sveib+nfM{EA>(x(BtoEbtTD%r!9StCY9w;)!=RU-kRN zbj?F0{bQ_PSbBZ=LX$Ylu#P%3HqqX`hMDQ8&uCO!t?6$;eP(jn?9~VBwuX>4@Rd`D z?=^eaocy_hm2Fn@(#KtgEJ^6mTU2KhV*CIhfp!6ITCp?vE#MjiHCUIY4;#Y+F8;?l zWw~xYt((C?Pmq9KQER=(h-V8yaDed>?&6&8oGZnoZ7$l1ek2Gb)n5PIs_Ba&k+LsA zTi$T(`Bd@x^Y2#_y+emws@v!IL-|@lL5AH$94qSb)LFsscDZEA)Q!ZW!%CxO>ZTv{p}Wv8?P)<^f@#<-a`&Vk;67k_+6i(K-dnn#mQa6 z2nOx&kf;h&W&j93XRe4+8?Kx6shU_T4rLhBW)1G7C3AQK)lg#}GW%)v?puzp^jH6> z+oR8cA^)t~>!`^e)}g-xV8826cOx?$sVLPZ%aD|15$qB0*H zIoD%uMMN2&FtQ`MqwU_@C!7jZf5Z5!f`}_Flq${`o9aWT2s#0Z9r6+foc4B23xwJY zk|V)(5_L)Lk=en-V7us^W$y~vdze@v3{)^RD7kvOd9L(qqacR-oVW-9muZbAf*K3~ z;4jDi46?(vC5T`uw}|F%$%$O>Kar@f7?uF`iuMzspLyUwst7}#_u=q&8Xf6|MlGO` zW{P|OO*#<{kw>4nhFuGPIUBmY}Uwg{TF%vF#TV=d#-TE^UY&V?~-#JllGsM zyurGWAB)Z3s`EbLI7F8f*4M{xB6UmsFwUbfE_lKo*(laY3}UY5jNMV%9Z4^wE~g(| z(N7LQ0@9!gWEB9^DsQivQj_HC!gw+b+ZRuC(>+grrH1NnuQf432bA+k94X?D;dDaO zK611sqxdL}q2RCnBXc+%1Ys8r5-br~HLW3vDAzyg==uyt;Rxs$oLZirWWb&!-m87< zD)6bSWoKj*ple0JL|%!Nbu|59aO?NalVeovd8ELIhNdfhjrK41qySsL&)eof@ITwt zi>BL$(%Vzd&HOdhFpQdWCp-@L3rj}0$F2vC`Tjpk{4qIJBt+j>xsC1&+iOktZD)Nw zrcNbVI>;AVI!uJ!u{BnEu-C=!lWyNu2a$`U$*`nX|4|-_N^SkyFC$u&i%Q82I-}%> z)h=wAt~d#G+U@P2b+x!NJ1PA<-mH9talYj(!T&^G>}g6R#lwWhj`I+iV|Rtb!Qu>$Ilkk^VxjF91Nu#Pxyw-y5Q zoRj7J^|i>n9et|QS%;J$5PtiNvG^s9xX=0JDLUFE*x2FB!>o;V%=9z#)};!DPzT$` zzFPNuf3*M9=&Blm^Umy+DZd`6{=EHk`MB*1O;Fr_m^RVC&f57~+whMO2<;%e_bY$! zeXDrcl)+1v^+8o9L`L@6Nt>h94*g`;Yt~l0Z4jBg@5cl@5Y7B-q`iV;{+RdIU0_S$ zf-D)Zwa!^MfiAU~6Z$VmVnJ%GzE+pbK2-z#r@tJMcJpRlu8r~0`O2ks-W`u~>)yNn z?w_CSaNlf4NY;!fShP>@9hk&KZ(UA1;v9*INMwCS>`q<|5E&CgeUrwvlZx2t`LJvP zEM|ln%ilCPh~@i??#y^{wNg0LOz5?NdmT^2%87hTS`uI%B|p`rnDVi+XVeiikE>A< z5RyiaE5H^;AqR{$Kd|lIu_n`I!gU;#6&x&78|m!UA_(A6`rb@$HhFzYbswLd{2eF5 z2XxuvW~<^YHCLZKOi*$Qigz*})RNP5`(Stu4?33t!btz;NqhKN=fk*9foi{nR?@}q z?v2WEk#(s#uq5xna5)^Jl$PXn@|T~~5xg+!rL5r!b2;=l(S|W0`I;?tD=`D8xa%)F zbQ++4o!BiFPzL^4@CZ0ls3HB>R9iWCf8{s3E__sNo%3a6-)9Y1(_Bl>^mN(sah*pt zpz*=t^J^rueO*e;EZ6QYk|EbiGrK>&cn|e+P*;*3UnGPSGS|6VboS3LX>8t3>Si`l zx`w!R-h2y&xxIlpSSBvN*(mo7o@N+zK{+M1XbV@39q8#BBJb8j`w1y*WPSSDg zE5OO%iJDNW4<(y~I?FZD7Qe4Jj*rDhif#mQTcEZ|8rHcIAF+`~%9pJ;%SV|krzwQW z#{o;Q7;>`#5hN9ff}IGczCc}#OTj0s$)*dR{}$V0|C4EkSuMB|`4j?>q*$ZN@B=#{ z$d*dD0XzT{Q1IB1zUCnl^qM8hVE&;|k8FEmSlg91zjg1;j|u%cUy6%W0BqR}-| z&YoGEFNy8WY71N@RP9KN#g`yug-J^aky<~&wP>(^5_pW_cB3ic2u36QFQ--Z|Dux0 zmow0B-xM?IXKSdKxTLtGw7TL;YGU{T1u=Sdd@gwbwPrsX>pLAD62O7EM(copa#CbW z2Wh@SNphAdVjc~to&p?&{_Zcn|7KZkX&O7Zj`*10WITMrAO`zsm115id#_{AO$mI; zpKCqKt~2reVbd6NCmli{-g{f)oNiU3$f3#l{P1n~Oy@QA)A2{SV$$$W$G?96x$~}p zl?%`9IVoO&jpCN;d?~*g*J IPw#4@=Sy;2y#&BtN!X7UKqK4*HLj?`#}{y9L~vp zw5&7jASzSq4^NFD40NDvVKnXDqeWV%bUgID6rejVt;0Up#N->_R~JkN>F>%hTZ^(zb3&U52gm0N1MI9OlrVcSVXA#CTON!rEAG~Wv$EiZ zyT?erX~GqdA%T)@lnpH#hRcTrW|CQZ199SoG}d+|(N0FWJezLbX~zG~18-sY%4)q> z@#h);;tIMe6QM<_M%Me_P`vS$#3mLR0Nk!{Xv{@EKcb*qqGLg@g~!X0elDK;sOKm4 zrEdND%ZV86P{Q|tf7~3~D5f3uO?|diMmC=+tIQ~rwST+qP5}9^n33g@PZdrHTm;Mi zZGUzeAz*)_{1+>n+2n}9V&93AXhfTbf~xlqTO>*j+az(1X}gHqR-Jhy>XeT1WcgG~ zm-d`Z9P6oMjw`idD?3r6#8aHQY=hhPwc!M?)8ejmr-yKE|BPOWo$s&H`@iBc_U`eZ z&(;&r%fLTc4NG6+$3~K_TDM^98`gTBw@n*ZbN}tzC+*c47uLou&nK zZv{5Erpp^i7v6B)5d5c$7BAcf?TVbJ7h_T{cdj54EBIEaUeEhyR(C!IcfRmX&86N5 zp?aI!^j8A$e1!+wO=`4%n4nc3Uh%rh5S(&_6o$@R+D@kg{u~y~WQ@-X8XfV)hAl*b zE4#Pe-|z0TO8(O$8kXW6$aOA`t(Zf(BUrU+I>CCFiRm^cd}*Lg#}kbyH(KY!3w{*& z2RJt-USRD6z5F7$`_5(XpfePwdfzdBV*V<$r{m9UtB{#phVyEpkT53wHElBRk?vZF zmf`as3!x3QkM^KPdp;CZ^t4_I`i(OF1wU4Ml>>_Hw7Mym?c$u*QA?f4lQj+lv`_QQk1yHPe2cc{XA$74Q$$L!cW3SqeN#@`h*G` zdv6!?a{aBZ9Y|E+qidHalsLrKdpU7|Eqq1?_DFA64U%xvnyL(F3R*25o|0O=IA93B zHkrC2axR$I^Oz(Jbh>;fW|(xgS&d2A&6B^s|COn4bsRUj?`uLi`c^pDVnK(RN#>QroO8ZJ(0%jb;6>Qate z9a;P_V}^Edx^PU5u2R0#P+zgnAr#tI3yBqDfLbXLwSjRL7#n_qGd(!k_@X+eaOR&}GsrZSkVVH|CQE6(6zYH_jlE|WU(WI6W^-p1EqzCDvBsjp=#Jmdxvw|_qzviO-q#bM ziXcgSPB4bbH& z?0?8z^ChF_rw_h|crETdR2mfOq0BZ+a|ON`EC=%rGwFEyY8kX2b8smd)LTx;0pszf&XiY-5x_?isBx#Yzn3Al( z-k%KrJ1Ity4(&l@3|CV_D|>`Zmp5n#)%2*=+3o}_?U`3ZNZ|m&u~1;2nfkhXiQNKF z(xML{_D2F4?kLd<`xKym7dS<#JENq(6;Mxo5F1CwEHttE3jF~fLh^`>Q9&}OYk6K@ zq*H{(HoHu1^!4;Uinq(egjUJ8c;?QTGDQuS*X)LWrpkJH$|KyS4u56H(ex~8vAu() zK*|0FzftjX%;n*3O+ht=EcsPGwOBv9A_;ztsfkGU9v8(G(4F^@%0Zr`!=t7eQ2?V-V?$?DA1i1Ci-hJQC|I1_Hq77~)Wj=pE+k&Dq!G`lG7psoM)8RiiT1n#Sd^yZ>gW#qcb6?aNUt(=w3?2$^w@UNfu5!ZnB$ ztV;$4wMw;Q6hqIV9DnfE$#&Z2i58Ga6quQl#<<#2^&(@ty)GoKav?io)voXS3s%TX z(PkYnUb+9XL5s5x(lGjGY$_sgm3L&^5=3^u)c>*<8OPAemZ)M?weTV0Mi8GG|6sh4E-^SaAlUL+xb)q~ML086%^LVsf)_dIh zX#etjm@7?lppfTx!rkexRiM8@=fem=;!2ljZEfwnn1qeLoF1`$s{1Sdw6wd#tr>&5 zqX%OcpOYP#Yfoc0xx_5lkYb_0XXm36QqP#pNok6|qc`6FJpVx5d2lVL%|7NPjNHP4c-8pDx@q9eb=x^_) zkIw5FF5}G)HmiZiIj+K+wT=1tzG>udM3f{&KfUj1Wl)<`Vu)1X58~=3oTkvV6I0S> zqxbrZI?R=;L$>&vwdxw^@Xc=Bh+Gx~G8}0ay0gtTTZddEk`3)~lyu->3IcW53aBxV zv(qiFV?*#d2|5bMY7Cx?aer^qqxZfBmsjVZ;ij0Lo+gnI0w;E#U-uLlwttfo!9vE^f=H^9f)mg^5#Zo}l(J8rnl@ws&i#3D4mPdz#3;c7w zsbG8u_z!$z)M5St{NQ3LSq-NKpZL6bSBkt|PoXE|Sy_k4B}g$Umy(Q^m$jXhm1*

9?-92cgyX#GV^|uIgP3cZ@F>i~PT}CqE_%lP32!Ev^~_`rdnZ zOo!uLM|BO!f9vqNNZe4_3wLl2Q#m!xX8NDf@x{N za<-rE#+m7*qk2c0*Pis_k06B)eP5@=Dz~`vA#{ zogINpdosd_Y#i+MC-}dpE@D~R^;B!sQ}guyIIW`1Em2t2Yxsc9lxVaQt|E;eFI0#3 z2`!aM%&g+uHaQXI48s*z0-&?8!>LlD} z3D563|Hc#_cks5Z4@&+>Os8uMAGWGKMFlG~6+G|UpYm#NM*Q+ADp;RV6`JO@aMu4f zFX|(KIw~K6^hy|yF}ajIdId(lU?6V zS=$zS(~;jhn;)H%cyl1+c)tCgeV}6v6HkXO+!|MjHPv-ee*krws$Vi?0I~LBF5w5K zo8P8{qj!?Hls1h$gGUiyO#SsDD=x>O95T{y!mp0Fg>gcy!m6}YXc21`4Std!0nlR? z74b>Fz;4*^%1^Qk=f(PLSRE^kUu5y8h{$*EI*jK6JS{PJnr3DS4)HFa2?S0m_N*s`XKQRO9rlW~)FgiOa$zGU*$AFK`auYG?Wx2kX3 z*Bgr|Ss>>RIb9E=6*_+`?x>Mm4T!t`?k}`>x-+&cSf_dB*wARemDI-Bx-gHt&^^!N zE-ubOGz6aK9vv{-x0^UQx4&L%AHY#*stuC6^H!^ukMGf~chwIRS|iRKVLa3i%(u0) z`K%8MWAD2l;Ns%<){>j>pl+4dnQ!%9x_7%Mf#7xMz)V}l%ED$9?!+78jpkr(N+^(j>AJ19_Jko+nVNusFb7D;q3}8j`8pTC)}|Y2$nt~8Tg-Zl979_83N3oP5r7PSfpJ0k;W2wr z-6g>f3|uAskv^waHuM3JY47VpQ8QyB>E&exOTn&AB)b#_^eKGTA$#}LWInNVvS*Lw zpTvr|X11RfPaA?oZa2JcMgM0f$oCn_$i9oBcP>Y{DK7oe^|n$oGnZ`UTAy@xzj}PM z8w{A%6p%-cOjJL(8@caVPhq&~nus>on&LAi)m~u>M2B_bh8-ik zULzHHrj@b~g}O|OAu$xOYTzLW!a5bg6C>1jQ@S6 z%-^*9F8k`L1*4(q#`oDc#-LKs7m9$=a5kP6?B8?;bC%GD(#M*yS>a`M6O-@nOQ=O@ zMgDhS;`)CvMAb_SA-ErE^-4|sIqO9b)d-Vlm}#ElSYx}$ zjDf8&`s=#s`==g1SjZJ`dVlaJXv*9Je8V02x?`2Mba30!&krt)R#XtU)$jFly zlfGcuHLy*Ng&(#yllnwfg z3J-hRpml?i<~QPA-_1fP z`!H9rml<7b$e`-HAy$EyYk6g?5#Lc^L#mVH-BT$&qwL6Km(!pU%2Fa=hoxp8; z=u)r6kueg1YRyk)NMa^GpX%U2VA!s9^GUmUq&5FqK6{)TlQA+>04kVDY*0`C29g=3 zfept{t3q*A=fMCX0F?M+JCxDLHhs0X6(An|eYVvoadYyuu41kKOYnf?dH!5kFl4tWITq=w%O ze{T9ck*ML^=59j6mheU1pJDh1x?eG@+zP(u! zGkw_ICPPs;EWL5?v?X%U%`JOZNgp+G7ZNmz3u4{qTdM6p_DtO+{kF$)x`qMXTdB63 zB%dZdzatZpYV%+?V}A-)Q+8dgxlbkAtaDKk)o98|E z19Y*b0(ncC0-{fFs+;Ve{i`nse-EY;2D^2gh-6!+u!V#1dtL?m($sjnW=4T)YdI`_ zMsjGTK6VF#FwS18zY18r*+xwC(gw~#4WgmCZ5fuu|DEkWv{xNOF$nzFT9iY!YNrf+ zEF7Y8;Ug$SUFp>BcEYYC6c8)O&Lq8N4Y!`YBb?a19hC@7s5&b8cs9xWU;p0o(^8r1 zhnb)X!3$iLWBI^DpKose1iTNq&1*_YeG6(ZJ$1xO)kS~bMcQy3dEN=e*gF1&R12|x znNBR3sCg${zh}G@5%KM*VM(QU)4CwW_7J96j%9d)lHhDraiWJ4A4n@m1JnC-9J-cp zXf+)gYp9QvDzqBs5!#{4agLgyG+K$iWDC$T5@t*U_hf(izoSop| zqr^SSs+8|u_H6|pXI)ym4mzN1H#WL@jT2|y{5(;L>0@sIg&3KzY*Ja$WxHi1&$#{a#Zv zSq@;5sL&_ZW#+glWa2yw8n^Ki6#gaA?mi31$Aq-+`p(Uq=JLmpY1e1c<_whfEFv2t z#R%n{Vr-8V*wNai^MSecv!^Pv^!);?BDgGlLOsH)0enoJR4e39Eic4zG9m6J!*V^{ zXy^cx2f+wR;NL@Op9oXtvSAqf1g))sq*&pStXvv0BQg(4KK)q(NADvBcU;q3Y%u5) zM}_$fK{99zLG1_wwA&RV`xaRY(C|uDx509Ip`B*MUFUvaieTh_fd4eJ==O$>4~>F09Mw8IeJThh(2Q&f-s90{vrZsAPCY&**tmBR{#3<=}OrenY$J(44MKZQ0#1N+) ze6N}8`yGW5y?Z@@v9hYx{$!4}t%BTF_wEh<74j1GYhHdZHJ}kLL1rPvvj~EXKGp{Y z6!!Jz1pQ8Bnck|uMQNF45uTuq{Bzs!RzVLxTpFV2M6X2*wGSopRnl_1!!Q=`F*^y;!C7eG+764* zumGDp61Nx;T9|@HwAu7Hg$xV}$rriV2nokOm%4Cxa?vSV6hQpXbZA1yjb=X8MzDu1R}wW3F8DN(6QP_C>bCknIM-? z>yN0sBJnRabS+L^Lqv}?0*e>erih?RmXQOufS@=CL5O82Jsli^PXY&LhptG2P@M5JqR%0TXHNd6LI+ktUJl6c;Jko%6}|4E zxZVA0|M!oq{gC0Eo(W`Rg+pZMm}}9+dYJEN7%`U#PLc0W$4u*-Q^xk!7s`U)AyfBn z952{@5T5?OWxmDn&xL<&O-bC`Dl3i}6PnCX%tylt@Fpu&Q45?8Sw6507=IFJ8^vF< z_i1t)8?g4|HauU5S%_C4y33na@_B>u`SOanKKto6j>qfyolKBc{&tJ~f<`|w zmGZ5xTM+7Mzu8tm+Rb3l?oU&-MkuM>-7tXv{?fQAu!S$9#OFIOrIA87Nj_I$Zl{>e z^9~#W{{oYFCBo@`^Y-^#Y3z4@)5hQ|+){GF%34WZl>tlgcwK|UCUiF9Oaah=Z^8b) zS$+J{2bt;eZJBGN`dIYplpXOnSE+I_Cxan_Ej97Q83(q0hh?hReWtgbR(V((Y6Ol* zyQ8Q-si~&)OJv0h5i1;Qy4`laefvaWLTk0G9d28B4#!F>pJcMa^bUGrC+ONQOwyDa zU9IPa_f~6E+)Y^SaoRm=b`Beg<2M7X;&y#9o`5$0$QKA(KgF_<9;>tYSxf#|j+hNK zTNm4jIfdpsLe!YDLCkSnOZ3xV|H;EZoCuXPj85E$tTjQWl^Dwpa6Ri2rqF{V{=_;b zvyQ5kH0q=$G=nwcK4)Jw6|2*R5o4{0T7!UIC*&-rx}++g+?WaN;Y%|K7Mk0U?GLo- zjC5{L{nga#P7&CNe!%nM`y-LE$BMEN{SHNe2C+u=FC%xiZ@CIqe$Hxm$0u zNP5qL{ByKZb#tlnXLHHuo@5KIWw~q~U1@|d#uCTQwQR#VZ;B7?nx)>9n~kTl@!%7& zdms34O%%!Th;$O9qig16rh6CXzr!8R{m0<8bQ*~wPF^>>S{4Mmf7^|$0lA?M=f7YP z(2)1}dOl^7(oiDd1&N4g&G-1?wh0IE$^>x8JfiqzvMgIC7Jebx4MSbmmr(`6}uB#=94rJDGF1 z)%FT?u#=Ql7B2H-8nN|aTc&Gui(RlmrS&aZNLH4-M5vL&yPS}fC8w$A_T%x&uad5W zIG(h_g7eH%5UdSIV%NmyMLCE~awPI-W>$#BH2JD!AqWeUlkw+u0D&NmX;-r?{79?y zZXun!I88BTRTxfMLuiR3A`r;L}mNVI%J@P%vA)4iFuMf!_u zvrE_QT#&-(2*d9LR}QO%{|z&8|1Zp_e)(4G)5e)Hz62T0;!qh)ZFLDPbp_RD>z8JQ z*0ZUwxR|n>to*atv&OT7`D21)R2VRa8&alm^5W;ho1cBkNpO?6FKI($xU%iZW3ae6twr~Y9I4GcxKn}>ceg|KTkp#|9M~ImTLhX`VMWr_{u zFC~4EHuRW59hwKc_d+j=mxP?Xz@wW?e-sC;>6s!5nGy0Cu`qc*7bY%~hxu?e+KgU|1p`78v zMy?%osv$$W#f+lYd(jNr3>c;Rt^CW>;$!_yNw0fAK--4`O=WwA|9qwSA_WtIfBdN{q-bLQ4t*(~~lD%BFN+g7q4v2yZV=a+evD;tu^T;aybrmb95Uvq{ zV=&>rNsoY~dg`%wXYSRDW3zjzD9dbQPgBT!;3&ah3TqwWNn3Qp~HeBuZpLVxBw>Rfom?D4TH1? zw13sa4h!N@M#Ea%%!`wy;w{}ZG4#}S%)Tyf?93$H0BFkP9N~Y1x(9u zHIl=CmlZpC;v&j@uO0oHGlC~Ptv3~_m_M}N4U4t*wG1`eiAgxUCkhMm&0qC^#Zx2) zBojZssgo#5?Y}wjXxC>OV`diY)k_a0xAl@nOtDn#gLVA(rQOJ^dA$B!zfJcF5>fNo z&y1qhUz^?GdUE9Ej%?Yc{BHMEDZvm8sQ2WEgFmJ?(^P>Iz^;&2-0s~N2_vWg5&4Fi5hk* zhyJy<+y<5w90dL+K{s7PKNbj8vxI*Ybv4Q1_514eZ?Ai8{tMVTy14!Od%MRB83gk< zkyZYE`xFA%kGrQw#b}2mppy~~omF_EEiz{g=@$hz5MM8W=Qp>1TT6$mQPqF-=yuOx zJ`H$%XUbzeZQd$YQ|pt@HJvo{RNaEaL4miVO*Bc15a!7?pwaAI(?O|MsQ^yoyj!%{ zlC3N49NhQhLttG^+Ix=qHiqiYpL>&tuZpaH2so={1llTcR4WA(igqzJrI@!~6u`*i z36O)osf>Mlqt5uEO8pKj>coTx#cgPmZNl~(_G)7kzl9mPD76pysfJ5B6Mo!m|F(H5 zdGdt)%i(B#u*Cr(^RGqy>r4irz*|$$fs=>aF&4JDTV_ru{QHt=0Z|M8UB;Ze+h$+W z(d$>_+P3N&6h0Xn1HU>WWP;pQw`ojo@Ai|*0tW@Y4Del_jafNxJQAYHkoAB3mzf}k zGOVLbiyFSvBzCBT2WH$lSu*WYoaq2lHYFDnt*Q9kMTH7v+fPc>`j^Ix^4t~TRp#Pt zF>7)pKT@-McQG)Yo%H@n>Emm87JvJ58mV0W2~0m^RI436wG;HP_xeg~-rmxDAFb-= z*Gm2W-fp+8oJG)aeZWP^Av3GX;=rs0qs)4o*!^1i_i&p3?ySoP>1TsEP_Oa?4O)`( zRT<-w&lr1U$t6X;#j>;Im+{j<-DSdkMS8cuU~A7yb6Xg4e$j zwjy$a1TbKg#uF#eueST|SWD_2kB3R)R_0$CNh%v;C$TrsFWW?R zkjO4ry7oGY-{5n$7O^Dtb{sGA4)9fwmqr<(8q(CB+zN2O3oAZ4S{}R>Fc(+ut*9gk zDDAro$}j(VkgLzcn*h_oU5T^PMpw{a6eFS-Nil0d2PrMYUK~$Zz6G zCLXL^*!qPlFqNjuQTiJ7JD}uWl@*KEsMqLg)+Uuzu$_R>7JgPetCz1#u%or~Y4{!o zSKbvMqRFeMR|Jy-Yi13QH)0TA?IS5elGMRCkNs&~%VB?$7f}^EDUTM>(ob}ZTA1(| zPc0wk0)KF4?X%9Sf;$QQ=YTPpy~O99HkZ}SEM4Zc!3Cxq^WM=mFO8&1yRPEZTxVRP zPPM>?ab=_$td!h}YU#!FWf?z&z<1vb0Z$)=SzANruR`;a2m5YEVdiJ6uFH~HM^Y)p zAJHgIMA=^((HK@@gR{{=>b7uR4{wNOTBHR9Z`gPdLbc z41NC4+D@n?qVk0|%qG}Ip>ITp`I%~@mYWd_G*JU2FyYFlx1!>*;_tcALW^;tCt|jy zB4iLVgJBAtI-^Xt!Kf-Eb@A_%pJ!f2hJ8{uinT}C+H#cNTw~lE)c%8)+XjvyrerwO| z_j|n7`+XbXL&}}EM!a-O6x}!Dp*JqunwTxK*IIKz%(A)-Op@Pz9?!6e)%^W)yy~VI zLZoo`M)M*v>QF|!x^g;S_&j!vbcM`0vh*$0CuYDZzD@nD5+m2?c%<4q7#N(kR^q@y zo*PfexzrG$1f6T7~^N?kUdq4={eg-+(;xHSll z0jf`K1c7aUc0xGPMA)CKcyK6S8;}ANJCh@D+N_U1W=D#V+M`&bq4GlA#?R4{d+FeI z*gk-;1VK&|mI$)f{9{{ObH%Y5#fDv``jT%>4Xvm8h!-6*R@&8buE>6w-R=fMXic#Q^xw+e8v|Z1JitN>l#1F9&SCcQf>%jpLXD-4h>b=W> z|D9E_7k%rnIKrRmky41XjWT>~&4zT^!u9rTzByD4U-SfArRIa;J@01kYFbJ{bb1(x z=X6F~7x-yPOG6HXqZxy`XWiWP(wz3unzvndBV#US$gY5n);m&RcN*cqAePDP#Y@7t zF$^}71WG!(qv*ElIQK}*_1>i6GBBWsjF)mHW~B+4KQ^kH)`V7seCh}K1vIi*J9p#5 z`^(qPokaNUkXy3$X5;mK4Q*Ou(r*jUNXwrnPA(pR3wK`F*OXyS;%PaP=;z#kd-ksM z49pDtk!<~UzDfHQ8XO*zf2}9=R7W?+c5#-wy3M!6ie9*nBU3{e63!b@@=rpZC&X7% zt>~(qYLVJ`?P*8ep#se{K7KffEe@x89cnE)x@hDEjBV~0PJcJGfq0!K3MY;8#-%Sr zE8$Nez=Ik=Bgj;Ap~3uLkXT+rY3A9C>vGdcMpE~e7HR{{VvIjU)7|}g&ACYR{|~W1 zPQPxM8R;{K$9Cy714qO7?er&q8RQrhk1>=T&M}S6ywU6LuXMO=|A&uDxG00NUsJ?U zGCXnc*JTq{Jn%k&ab?zRTbs}EuK?s)6-3Gu@VnRAL|f;2e5*Wl-uEz9!ik~}xo>mM zz8QtoNVsjmEIT1&EWV>)@!UGU$z&z2NMw9;g+UD6WeO(mm}PH^hWeP{x5rlB2D< zk{i7H-isnO5r=5DXwKT?A^`ddhRndMABdoh1ydd4P5|(IsMb4E5tYnp80AFkqG<2m z`cX0HDfe}bkt&UfNW_Z~4XUa*+I_7*usplJewm++^=GB=`=9w4`QJ~Cop|%LsxQ)u z%8Si#nY&n={_S3u=qZ^D?wpHF8cVj$@GCc++R){@?Q4>2j?cB`c#)ix$!uD8c+^w2 zi}rffVn?y%=w58^axI;*w_WgHTuZBh)p$mMp(JdN(^)2wd+x@*`q5)_xkeeu<3V`B zLKCnW5BMptA=VJnEEP;|N@WR<7TM{k-1R{TmKI47E-gbq5K>xm6;5XXKsrKMU9DBL zI}KcDYSTLAC=zgFtO!81MuuKtBgN<65)P1L0kW+Hpt87Xx~uAuUV5~?urR$@3rGeB zAmA&M?&ei&WC*kTR9-A^nc9b))doZE70uNtsZ8ywh8Z8DX-tUtrW6tPIB|L0h&%`? zSpgnAPP%0xOsMdR$JO=hIAa9?*l#hDG9;N&%389o+elT39ofknBM>81z+lX-mJ=qM z7L(B2&J4aA2{-$9jd>vEF3xB7U(T2H$Y$4<+x+*5mxtk%TKtDKJF6x{ddKI_-J@t& zTnXI5M)7|{nJ0MZtIeW1`nxmt$DHHF!X1K{I1HuHFb(6VaM^JMBc)?d<(ReC?CFY~ zkRnMC0|N*)^)w|&4*;-?Jx=g6JwQdKnWh-3(Eub~lN(J`wfy5o#s%GJjjCB0R1&!e zI!hZAphgW2JybxGFkQn+4bZRT+ZKch4Q|{osV7E2J0nX{C}SfbhJnEwSy9D5kaCsp}z(QbKOD){BARt z^i1>F$hjT&HCn*Ri@YYRGc7(%fq?*?JC=0HQ^5o<_ll#Q(n(4WLg4K*r4pfqxX)y8 z3o1W&3#>CGfLL)wE4>rlvY|WQdigjc&ujDZlWL=?-Z}id^QUnc zQ|12qKNa6|o+kLZ^}+e9A11kJ!_{Z)(6H1@|2Pdo^sEfoHkWcA#JDn9D*1B+t9`o0 zS`otQUOj8ZewM?YIdX5b7JBq~TFOEv@5hXArpps)Ml?v!bfa7_T3``PcN_HD-Pvd! z3ji9hDTHfah9_$@cef~ct(i(y0%S&_g)JYCZ}(nP3tBTfn-S}=Ahsz~X~JTXN`of# zEHx3PD0QW5Y+FV$Po)#>zeX_(-ep_H7Sd?ttshs+qpEZe#x1aHaRXNPuVc^H`pHB# zwjY=Jr_Do#R}vP+NXD{+WL|SaC|NDyAwasZFqlx*p2mNz_4n3^V~`C-z&q1U63P|P z5>zJX{9g1@~*H(~$CI4*yRR2}~ zUphKFJ3BZ_NKidHIzKr>LqY#V|4aWp|1|$S|3tp~jdV<>xFf*O>y2_wqu2m=n~5@Y zDTM1RMJ(YiS+`lKm`Y`}?HHXXQZWGJRK}aYU49RC%HkI}W~I0H_H5ty*#B=BndW$B z=C|XMeGa)d{^8)P_lb)~kq>;@k$I4Nj9x~|R0UH;I+a<(eLmw!lG%~SdmT(QoZ4o& zA1Ck#`~J2LJ7~;Gyk0(PQ@#atKHMfR_3$M+tdOVjW*Wg#X6lC6Fwi6Jnza@6tauaU zS?69_E@)VxY-gN|o9S-0ice}>Cnn-5hEA4^o3N7_mAnqi!W~JKJ%ki6Ac&ajpIJ$D zyGU_oR?$(bGjM`K*^(t@YxF{lH`g-Q5>j9-whXIeVN8gy(f$ps_N7@ZDZULGic7YH z;(h6nNVbjjgRntHwzOK!L0RmF~EFc6J`iUGi{FuQTY#1JO=?U6H_eV&FBjXq=d z)XU@a{{N!6f;$^Xwe?v>3Lv=~m=AS&&Xc>#{qy&)f{Wg6{HN!jr?f!jbLwRG3+P|! z-14TbwYY!Ya%uR}u=AmsIqy78p2zOI=b1+vT-yHFn(3RTrpk5l{bB=j#u?I6Nllal zMX3;G9bwufASUt39xmO}7_wDjDn_2AUBwV5MfV{F>PWlFO?KK82GMl*4NQ@Gw$ES)y#sU zV;OHM^-uSto|#)73=PKkLjQR_v}i z55osG{+o?vE}IAr8ra9%IV~yE%oo74j1HaPGb)#Xzg}~tT&b!^M1nbpDyjgR8=s$V zzY~qBTHTIwuHXM(`N)&=UGsJ=UWRY_rbRA$&6cI6l4;JmN)*@OB3*D;5C3KLgwccd zN2;NAQH`(^Oy_1;PBKFQpYQ*gzMju}RNa1GS~|}waaP4y#5bN3pGuE)D$XvqGq{L7 z)g?!3Oc0oGgA{{6q7zhNuRY2Q!^&jkH17)rtZ6t&1d@f!vkYbuCv&{LyyxGgCXTRO z+Qgd(Kp4Q_7Eyl(a7!|h_ezUfSY-(T0Khc@m<)gdHoE1&CB*~)R=HT55nR$DV`B6J z0Jzb5^m5XFe|X5%TkH#J&w8wR%{T=8M3UZ?PArV zNhK=PW->cNtFt&@LnimhxjckP>&tK9F^$>Qa&)|JbbX}g?%A79cUJ)gQ9h_JfJ zXOD!QoPuQgt|h7$Y_oo7=Ge2;6UUh{6XzAvuBO`Z<6w8nyVdsZ*L$>K7&j}=^|~ZL zy&fjXEWn$Bq(qdR&tfr2Bhf%BYB!m54<>WW+7>}uRK~#+&19!9B7`5%94{~HM%S)4 zP?d_uy>q5k$NWSBqz%&#O#3}DO5$npG;HY3k2k;Gb0bt-GABS?f$7>Cl7%G;trn6u zIm-4o%V?q(+mZpW9a@-Oh+jWbZOD6VyM>*SZv&5og^|I=)puP*^Ci(*Z28N*UfMdJ zb3HwrCoStj-4{Ue$HbD94FHsCy>^n>!fL^|UhE^YQD5av_g~mUV}?TETvHnB5>@A{ zx%K3%n43c0&Y>}#>xK`!9_^Gg{mT6lgj&5G;kUxPZc#m3@Tm9B$2XQ{-egS$250AY z-g$REZgN~aWBb^j&i858qT<{w0H1W))neUnegLdi!GQ4{k6o)(d4T*(nAhdhS08O= zQ=!~HeA(uAC5k>;BQd*55&XPW*OO(&y@w8zyWhgH)YO}~4Afp}OWSW)DRaLftkU*F z-(sq`9~yIFg~YbwYWY=k_YpEWpBk#2j&lr`z9+rypk~4V{F~dTe1i`Gq;ie*SY+aU z-7?!oXkCEo18A8F;R2GJw6e{ti`e(poYAy83RJZQH~U9kZx1J8-t@x1Y?x^W?#}_d zf~9#v3HGfST<#@zbgue!?S@#aA;eM6lV@&NX9a`^Y>^LOgdf{qxHo zs!Er)2fP+x_%FPXp45A6=C$KjeJ3{k%n0O)@hPSwcxt)0CsItB&R=coq;JDoDJ9C% zRsHK<_nY_oH6A;4eDn_-&y^wVT$_KI!!YE42W$;cT zF=Jth1v^=*&DCo?b#_NVqvzO+Ap*2+*?}paE#fuH-D;C3_yH6fO2q_gB{Atz2X$F@ zo!^Z_F2UOQ9xiM4xY6CBp(Fil0(5ZB4Y&z&_+vcB!edO{yZK833GmrDL_x%Oe&{>phU~ z_yH!Xf;z#ZPqhETY-*_TbZOg9rbeCBVw=@y^}S6rc~palqkUGJ@t<}8tZvzU@N-7Z zenGz)nhV~}c(Pl)F<%u5PM!Y$+sm9@--nxZES_QF)n~XWoTy>4>#1ZQ#$)RB*mW>t zK6V47eo?#L)ygenyLg?Q8{DqXK05oTOO;6hX*jn8SuzAPOD-^qdyx=t{O2}&S{;3^ z=}G@pYDuxh}GTDSTC zZ4Rq54|9cT%@pJNs)995YZ>MCJwB)LtzuY6mLb=qyUD_yWMMIGPOhqX+pH~Ze0e?s zUjet*YgVl;vQG*e(GN_xuM$~E+Q+I46K)#$_ zNJ3@g0LL)IGm(O>(~$wSNkxFUpn&+cP0n!-Ie7W{Jd87${Ca5hw$VC=^64qtXI*Fa za>jN1cgCC%3+)LWy!DKN^K$_F#a^ckC_eyn`=tg(&UsYP#m2}TV+=P5swy`8E4l~G zsn;rMj(IVyROY?e(mb1Gxx)53Si7_8$#|}2pt0{ z!W^(?cKCq7lM=lKJEV59LLgXV1!nAGU@_o@Lab#jUWKQ3?dyAw0t_H zYHb$gV2l)QAx9XIC_q989QVjn6Pb$5Vm7FGxftq_Y? z>XSikZdGJBz5Z{SBpHOkip)JZ0AwJKWmX9V7%Xb0+UAsD;ELTgcsfr_;s?(CKm3RP zZEyJ;t2@d>VYhV)8e8c-PGQ!*e| z$qWP_2_+OmY}>#H#4K$GYt_mEp=Rvtnn{&0s#d^EOLW>KYpP~I2+0CMn)2ill>=WS zHq6P8CmqOg5CCCcGn~YA7G?&_v>$0?$$_h1F zE4FA_0SxQV+$wGst2_N{VAlJ45>`0Q82p#<-vmXrQ;; z64(Z(s+yA>ba;U%F$4`N)SYLiTR%Nr+0G{e%SKyZx0P&i9V6c!(}=;aH(E~Tja&@7 z`_CJtbLOU+`NpZXdF9eD!yMle3CpapQH-r+L=;EDLp0{wHSr)ojG(qo_JcGXgq3(Z zm|l=wtyODVI-;?i3{q6k3rjqRl`gXetaycX=Cqe_=BSvU;+Wa?EwW+oT9DZe|G<t4L@_3SZy4-!Nx3nJnE7s&Au5i< zK5`zFMzKXYBp8$g6(L|^4!@ERug$GI8b{Oaye{9@(&yEgVQZPwSgOkXK=slSr6*n{{4p~w#wz_I% z0MxraP*38Vh3=-z<_cOUwCx9q3^)=2kuw%FQ>LlOCI&>Rp<%*gNbrIT#nxiWqlXqw z2Cbokl^sE16~;_0H~~{5rV6S}Tm^-dw1l5BjKQABV;C${H8F@bF12loP+$dkv+f-m z{T>kRA`n*S*%=k>e%!q|bay}}AZeX0l{dP4yM6wN{|jG&x`;E2(wesc-LfZL4d(@Q zDCaFiErIFs^hNzdd!M{qcly1f7?HH4)b%Ck) z)mn*XZGt(srGD4w2xyyHvv!+u$ZSx%y34d9jZnMBh?M{p$16o+xtEEv>;@GHkgnJ! zmg&lX0eX-f6p_|hp+JM&5!gtc=^CjRBIL|*R*DQ!*HoGX_h5}=s#rB>l33_`DOvQ& z>3k5Kl5#J?-gC1RGMZTSAXbY0%i)-%&bzukxb+-mOu>r%mD-p9pfLo@ly-3 zjU&!`#h3bPAJ@VKAV++fT_^PyR=TWdtsn{8Wqk(|JjZ}DWC%_YFn|D0XJ=CY0D$}* z000000O5B40IC200QUSyg&qG$|2zLwL`MHl|5E>2|6~7N|4;u(|3f}IM@vXPyiFwr z2mt=yt=B09u>t%ytG!(3RG%-hkD4Q=lsJimm{uYQK^0?DYL1~+Dw&<0nT=EUKbUOE z|2A)4+}QSwOIy{~FCUri``j{<598AKtxP%6US)0{7OnWQ+FUDu92SL~Oh`|kt8=>O zk;xnXI61NeQ)Jg29FuBeG>H zE1XrLRn%>H3LK_ma8poD+*5?TIw~?yfm0*mARcx{e2O3;WWb2kM5GK57>Rgorkl`? zTK1YAFqH%#h}01hB%OjJg!r}I<4Cg~mz3drx&5&jhymFE;NeLkxC3Co1`$_PUqYpO zU>Mt~yZ_SASl-NI+9!*%()bgFOipr1gVwXj;Us^rPc-_`{Z%AV52IFBY%fHnL7HWA z>h)kD++D zJdUd*jvTe;k$3u6i`-WaPFvi&_v?>5*ycSN+xhgclkR+2b+oSKChE)j)zjbhNb*7H z{_|3sigvnx^O=Lp8tS$?d8c(I>&a(v!7MVWaSn0n#!E>$o|vG-_-ZQOnT#uB1=e^* zEqWOVM9j)tHJuE)977OVISl~0fGLJZ8UR}sc*Y152g4C1u~Ho1DXVswKf6EQxL6H8*%TY#F5$n3rlFfvun&_tFjH6Zx7#g zuJ2!>WBj9_5MY|^XxS2Ws08C&F1Pcvat+f6EdmkJ=d6I(bAOsIl}ui}wN6|y^f|DU z1S&S)%EPoGP&^y}_PWKorMc3`z-!e)+2S|@!23ioQPv(OvUoUY6{9%xlgD=xqpw3B z(X+25>=~?;E3wVQWfCf^2Qf_TBrNa=HtG zT}=?_?`h{{833D1m!0O#-AmrVZR_^T^uXepNG%YxjllsKd>jDOULgyXy|7k`7%o0* z*kLbNa~RawF*jaPiwT-Je~Wd+8DV$AFbvypCEZ3dp~vIcVQ5F~(60&m&LG74NxzJk z)i(#MUQHSC0#&E>%F5$fa)a>$%$azU@(K*eJJQQ3#i~KDby8cX&K*|R#waq90~3ve z@`Sh@>|OnQkb^@8%f$UVpq)Zl99r9D-hk>0GSJ3yk&Zz80MLFiC$g+FT~x#D$_a<% z>2xc$UX|I4MlUdHR2r!&8Dkq6G#FGIcXMw0*NExCU>#>h_bP8{nlY*cIU%5FmEg@h z8>&B->+QPaz2Et<5f;|R1TvkyShy> zcbIJ|aE5)!*d~ZF*MOqU$Wj&|IB?(voK7gp8ZQD10dcuhjg~#*ZXYs^AQvzR1l9}+ z(?Kk!BWD&hNc$iN@IjGd7z0f>8D+IyN1~)5^qQ4oVfc%D-kNKT{T${O<=SzP|mhM;6bw# z4im_cK?_K&fB*5qzO~0mvw;i%ejF}!iX#B@&}lDzQ~kd@&If zhN=R%UECc`6S|szI1Fhz5?;QqIhC;d7yr9ld7e5U+#gO`SeZO`ekVGHw~CdqS001J zJu}zO?~`FIoW=QJPS!KW7HI~k#@w)vb4^4RokX-J_-ya6LY^k1!VNkVgaWhLHrmZm zR}9w*klLK67`c*x&~6H;hQZ)zVWtoh^jUaUx0`0+lvR^7l%Z&=fT(Dgh4g3z($mv_ z#4D^EU{?L9JnKagY3&56nXX)6Vp?K=Z|*EjOykrLG@{ppq#3{pJGw@JrviX}`Lx=2dj2M=5BB<- z7s--mpZbEIa|cWYR3P|tT;%rb3EsE5-eVe_uIftW7g={+TS#b@5n78|86uTzQvFP> zyU9%hSVX`hr;E$QGQ<95C;2%7+1e*%_Sm*jWv^8WF{9R0Bl>;&j#EdD?lw6^Tqz|> z(~rBgz$2JvrYsVlR%fRY6f(06NpAa9jB`4qM`VxiB4(?Gi51+p0$lS%OIl~t>!j!}wWsfK}4D-;o|1q?N__ILq^ z%wyt!MYVWsV8@|685C0^24Y;oPLxm!4UFixsm3G*AeecB%232QGCw`?UGOahlEDBS`=|aCIl??{p{ z05TR9{(@nTajsW6G6!Q7Yfd%g7VMUN3nSy~qkRu37M6^S!NQhAjAA*K1;WU-=pEZI zC%q68G-gTlxea6Eq+X%c5r>BW5D6IozWi;=9?1g0Pz?6z66XTI=n})S_cceQR8_e| z2T@~;007jvZ%9Inq1t0DPd6Mtclu8pUfJwDzx#N9PVXhANhSStKS|O9%<}gciwxa6 zRI`*?zJ0@v9huRI^t@JD&6#17gYY32Z4!VTQPrC16g09b#4a;roQLm9s>YNkHMMy%yUdOF{wH{J}FgVzyL6x-n<#v4_JO~x{LhMqiJb1Ki^KH z?Ty1{_wG$CWXiMruMXWFD2ZwLRV2AR8M`jijjeH*9yr-*7Q?(^gkfiK1 z%?)x8fi@j*;0gBnrT&bNmjVRA>zA4{$^jbS6Vr8y$c&7f-C0?2Tu-i{{BSiq#MM6X zHb$jlIfNJ@q8b7Qfd0e-FB_UERsSKkMh(2QxI20F`$C>5D;Wh2ysm% zlr}LH70k+-nju6|o2ar$020){ zs@f@dX5D;{lz|p&eu^=PKH=m@S-wvK5Q7B*^OU>=9e4ZirPW9NjjoOPT;>c=IDU`I z^OJG5>)u5X{t}VL+EWlJ_X9KsY;x0H9)4cEiseq;U6nCW{s4;&5%Af$!56bAwsMoG zRHo}7X<6#dl^ShC{K&_AMnS5V7MA(#FLs9|&nm=P$tDJ)z_!{esG*IO^xAb>i_BG6 zfx+E9>?fta=5w!Nw}fd#aM3q+|BHH8HK9><(|$XBoa3`i0i<3*B+6?KOTEH?p-bVL z;p0~&n%0nGk-e`guJ#oF`HFBWq0|mrb`Z^W2=4e<5-LuvKH|7E<~|h+9`4_c61noi^D>4hnO5`&Xxro~$+mb~(oVrgreSd3rtDKD!RvCO~d_KL^dk z?~-@dGV9qWh{OX4`(5#c^8NpldrfY(x=#VLN~M)4@riqDl|2xQW#N0{WO60B8XpPq z)CXs)(TY|+L#Ok(ZO4RdC;sbuQ_ssaE&DvKc{Xjt;wji6kn(9?a<%_%P*wm>XJ=CY z06-=l000000O5B40IL810BV#p1R+g0N=HNgNdHy;R{v7}SpQo8W&dG1Jv=^4PD)Kh zNB>>4YRL?H-RvCQN(0(GrSk{aY%3DA7Xuc1Xq}%QD|$B`x7_cyS|ho$b^f(#@5xEX z&8p95CccMlp|~8i;toM_NIY-|*W792SL@#b%wBPeF&Z*!sZdZUCg=1jW+$w!slrMj zwK>@8NWqn4h<8hAdr_m^w07OUj;4W_d~r`KKX8ShoLT{fHgedCWdnr6((eGXmeR5f z6kH-v)uz^z`pYEe{oXiP^Y_BD4tot@;&_e2n_u^n6+L!nytBj5j*Y|4uKWN0|LVKy zzYnZ(O$O^9#^Nj&v8S#<4tEDwl`y7dfOU)ded}nPOEF5?*N;b-dsjN9=?0OY35XN~ zqC(rvA_c?y*_bKctMkTQ`?}(A1JqhQfV{@+|JCXNn2QwV-BgW31Z$>*)et0gYAXImqn2-r2_-dOOC_!~;Rb5bf<4u#yT! zAb{@&0AP0PLz(NzYH)SjdQPsCQjLg2ykJm`P!&*90zzu5hGB?r`02FtWUPfM2`vPc zqXtbz{m7z6U2Q+=me1J=kH(m@USE96=6+@0IMaFHvqGIAp6a6mu$A?PKrsw&u)_P( zlA_o5lw8YP&g}v!6noRWk{wL z3x*O@@@(Bq9lji9K*S;dgKX7HO)q8@JUd~`p73eZqiC;g%-g<>?6dPH*TK*??)i8; zrnFn?E_Iiecj8{<(oLACe~fztG5`Q5M!m^cHn}ghu(1IF5toY6BR!#_knOgIWCB_8G$2`FT%^HlipXFY1X^f|EGTAj#sf7OYfT>q z$OQ$V1~OU&GU99lfDTZJFr9=&HM3Km5&|I$1ild#3T*?J9T+;Huq0tyV33e3b-dX& zM6x6##b9hgumZq> zK(Dl6rni|%nCm~Yb}A>30-XV`)Q4><#VJoaYHK>*+$kDVSfRY7jdynA9{;Y)~1 zQKLYgtBTE>%F&PyZF#7oiV@)LYIhrpBw2E=$D$Jtj)V1sa#j2K#p7H%|6DJ8mU=^M za5?^0vHBAZW%!fBJo)wwT)!4yGeM{Ab*?RgV5Q)_=S3J$$2o-r;#{0kb5G?guVhzC zO`FCx8Z`^IWME3`pg1!`788xTSz*OMBPta!2*-hoiYO)qCscuAx&)&-svZuME3qz6 zffJM!XA5ZLPTZNo0w|OaoQ^Pp3cIG9YfPb>!B7>eB9gAExFLzVut}071ZMS9xR5P) zvOp^a0AyoNZ$1n2EF@$UN&;g^SgX*`!e)_AO?2^RAK@osVGz*S|NROHF96667bJ^k zAq)yrU47AtU2RXY;PUPj^92UHfH4+q#gA?NcrWLFxYM64MmFSaP zI%`pEoy~1|&$n_Tg~abHDpCM5T@abJq)BcOkkr{~aW#a@PLv{-SSZ$Gsa+)6wV+^z zn#w3!g_|2uNF7NQ%jorlbOLE`Lma0YD3E$45?$#8X{m(n1Y^h)5fT770>x3JPymbs zlGIB|U2CpGHZfFM(F<4)W*vhq+gN}XxTek2pZ8Y4GFiRptI(oDv8%^ll)K0f z-LH+(#-u$RH@LO)mJRp2lJ_5Y0-PY;5?BF<0KN=P{>bhQIteM z?)q*%oH#9$yJGLjn#V2I%VXA^>&#+ncz$fS;;%+J$s^@+tmNrc z6#LNbf~LH$Y`ky=ES17Ia)cCDrz`!b7;GJv(UhY>x%i_%8zuFt`%*58y|03JSMcJt;?9_&qG&XUFKEQ2ac!QQCXbh`-p!9iwth=pGEc@p{L*=>zD?0L?rN>ybi zgtFCO5CH741czGkRCY~Y)PJl_-JxE(%yavC;r6Q!<-b@QJ{++flFKxA`0{Q#U7K4; zANJkWHPuSB>f#}nx@BVC`WZi>iF#bg$_0g!_=Op*;~o_8TDq0lz>!mBmm4v;ScHWWO=ZT5XM|YVJz4_R zPHI}Pl4_iq%*o5;TV|ZoE7;RbU@Cx|m0Hv@wF(NBNCSl%mr&u(1}^{<5EuXeN>agX zmc)(P5zCSR8+s6KFV}l&6O`U|_P6_US-#5d3cpxjVdM}S1I8l4)tHj!f2$L8WB^&l zcK)Joo|%{_ky)MHEr-x%o{fb`TSxf!Y;W+=W}d7fbB%nL+-mNZP&P|c)9+2#ZA+5r)L5A3oo!miK7+HqJfF&D&6sz7fT5*xL z9>%h~pjZ|%Appkk#O?XEh39q!U?X#5*>WUXMwnL~554T)8xk480$_wz84QxZ_|Mn> z_=fAXa?}mgj3?>WmDymi)hrPhC}>_SD~l2X zFl120&_&|aVVEcsw{>zEvp8?CTES3Q3K6>yc#TQ8x&?92SuNQq`K;Ff%&Y- z%o`uOVqE}Z*&z7_qv?vTGML$nI!Olg*==ddtB>5XcwAn?;1h96$9r6Ex}(?L;%YAa zRqI+r*PdC#kKbS-LdLv7{Xzo)0Ni3lo`-X>TrHSqZ-cR8ug@$MrjC0HUQK!Hey>h- z*icU*7eR-snOtJcc;rM8;h3M$73Y`HwaWqIVtKzDnR9~oa(S6u$mOZunN>Ih>qwGQ z%m1BR>*+=lq@R*vDQGocaTToGtY@hwpv1^!m@xmOB>GbY%yLmbn=7)%Zb?5aIO+A+ zO~=H(LSe=7&1O^Tkghisa+~g3MXh>q_xC-yt|IP4778<~Ox)L+@df7t)NX~FMy1Z0*a-y{Lx8F!ObXRp*!d+c-BvSYc!>g}gAWpiC-`)hxWNU(?5=dhxdm z5(BJarJihm-m)!qYSz4cp5_m*=1M_B1=Fncs?FRzk^0=-BKrt3*t4Ec>xyg&X}hAN zrkAuxQV;||5JckfKmxn>{+&bb{oQrM2mzFK%?$AmBSvgiYN6lZQ2YVrT%z=u5+pie z(UzA6X%C%y!^3sYCPpd}TiHZJrutp50taCbMo!Bzpy-~Md-iraK^XTg>YufC!LuxN zyk@0&N-&xlHS<_vUvGwf#ubb;R|>~H!!71Iy3S1?BvzWsOjI=&TlF3`=4853tV_$?G~34)y(8ug!(s z*6swd!^|;8E|~^>z8r2tZ{f~W6}qaWB?to9yJ$4LF$x0d{o0K9b2jQHk-rAaS^+_; z2}1i?EGB4&GjF{fvw^izN~ELtj?S=l*sdZ&vzl)9qp)MiCTyc&*atR2q~F@m_Q`*0 z!XEoWtYA*QGX_Bc++G2La3iT*DkP8>5!gG9oJ=;*Wx7hN^Kt(ik zoQNVhtk8}&(fA@tYy?(+;)SS+Fgl1#v(j?;(uOt_;3=ZkgK}w%#gAi3~xp z$T%CcIh!M7w!M$C_oq>|(*X)=xVH%*4C5qD9K}&))Pd3n0LVC1&^n5S_p#cSzy=64 z5(#QmtU@7J%!8zK6a#=_BUph@R;&_O4k|4R7GR`mLKCWjFxyV6g3xw|RR(CAmYtko zzm!yh1B(bTAtqCbC9Du($V*^LSTP8Lz#>F)RDcW!WDv1!Z`<(PI#`58>R`+8G9FB& z&#qA0yi!s<>RSq;q6Z6;MVl_gK9`jEi9=Nw`pcLb6d5eumsqc~;vApQgvvRS! zmYFNGb0%7os=}9@7JKG!c+^@et_C{Y_Jp)VJsK*W?PNKjYp|4Bm0rf(QVG(r5-2&KoQU1w$uR z%DBXBAq-d$X897s8w>?WP8e#}uh zSE|I_;ig2nc?MNMM%9|>^wBu<#z&vS=a0hl-oEnJ{%^|qQ*VC6Sou27y{cV%&b2rZ z*+y3!{ovPW5-P)Q4&HCSnd&}LIu5?CvD~v1ZmLuWPpxLxr)M-_uAMmTp)){Q8+BHL z20eQ+h!jpVqj1O}UaD+{4oTULx?8T!NMlnSLuZC-?rdY4AOto{V`7ZS80c0}ZL$or zwhk$Za$}9c4BH7SIV+@63KIshoE?4&879@>o)os77NZHRsiTsYMMI5%5m~G?AVNM9 zdFH}6FBE~m!a_FS?gmImLemSb?~ru2rUzaGD@YbnakXy{GT4^8w)g#0UVWA;v*%VA z8yl@MW&<#v9U(9_lCaXNe|;va>>`IGu5}`F2z#Tw?AO|0v^69S7rccgg{-v9s@h)gr>2vYQ3>7kDi`2Uw@T;xZF)@_f1@1rS?zK{C$_- zKFAwsUuZQu$h25aUC}>qDyQ4s9^C0HS6y8hE2B!g3f3>FjZ{1`zQAQOA>*>DPxYZF zk5mSD?2U{`Ei}W(JEa(B&n(M6y2@G6gj83>@e;>?t0Nu>X`G=!WX@ZW=%n37%4{)l zYgCcIOAWBtU$TNRm}P`8l_d;mFsXQyW_7_54@tMEFMTa41criQRZ|J5JLpxj0G4h6 zGP98zXwj-j3(dp^VE|bGH!|45&;hVb0G5kMN_l6^&Gf0-Pr$DhGj(cG;6*$VI#Q}&4&>KU;r)7iSULX%ccNKrut@E;l4bnVUfCpHW@YnL*xMVf zy$4xXsVl=bBnPi>Hq-LA*W_+*R%y-LH`8rI`0nVd(1h+7rYXt0+~qnS16aXFl&tU=ulf{4P4G9)Tl zkkFzX4zZr)aN}M8qB>|oG?8;T8Wu@rwP6&7B@AiLtOGa%pfIjL2}n~5fQSWvB+A4Q zBEzr%0t}Xk2q#y@2mx`EIT$pdNBbIOcS65Z-YaH5b)0!7GYUF2QHID40tE($Sr2;= zFsIR1$@CIwmF*1UFaI}~31ht>0oYO(3@8#pa%Ac%L14J7gtidO=*ImW1}oI5BVACHfF z7v~I+D))2Rjwo%X8E2#SVW`}c96c)O zV|IQL@?!1a8%Vd~>f%gp=Dz(jnda=FtwRz?Ge^6g!zVrYF>4FMTe0V=c8$hnOM8%z~?gO+}a% zMPcF^5qN2AMJoVP9g%VtIB7yaG>DXoasa5-BE;3%C>TgWXd1x5%npDslW>hdcnPwg zP#8!cOl&YHXk;wtTq4T27x6c23j|nU7*BFZHBli01W`bcA-d8CY)J;_#Ew0$O$gOSQW%;W3^W3B5l+cD)h zZP6#W7F$L(Q*b|M$RF0MRTABm_LLnYnQRMMF*wd5NvQ*3(6m|%mYqbHUQ>i0lswCdVH!d#ArVS~ zYWmQGQ3=VR10j3v&{-#%qZ!B4ullFURA5km0f49lV8Q@ESP{cz;MagHEDX=azyP3* z!2qEI2rB}DIKXF|)f(%<@GVR z@3GeN-MdHI`?1>XUh7;d`u~gPBk(u(*{D@x9FZl)rsJSJ>$<1ZIfKjGdYy6O)QXGu zMf16zNKsx;vJ6Es@Oe4O^O8wCpkGpomE&Iz_zSsaCf&1?(Ukw-5K0HxC9R{ zXmEFTcMIEhE(F8BKbo-J^#{p?LF*Z@xCU#+n}P8RFzjs zvPV3=zm6n#QA+_#H-M&CP|##yPWno&iL4p;fL1GwP;QsGM zdDIQc-c{7n@xSk6K1WZqTW1 z(Dls1(igYN_`Q+?TnxKHL@vDT8GWoWWR3OetUS@MUZkPdwsVWSvG6S#$FQs>@~X^u zzr2YY)+#k^R*zUFUk4aZOR;mZ$6p@M>tCOwA1b!e*suP4@qOLSSM=Rk8dDOyy17Lo z<(9#UT6yZ&5To}8QJ1pdAbGi!Y8m5hH#Fh$clU2VJ1;*+?5Wjk8*X=22{Z|?*qUc6p< z&9U7`2y-FE^;}A;bJPz1l-;)icfD8bt6&WX7TjPn8%88^LO;e(M3Kzjzc2r8?FPQv8IsqDwtBuYj7GO~wRu&433bumV0PUvRnKtFBV7$U{ER;(~ zr?Fa2VMvPKKL2xZOlEqn`}WJ5WPDgvj~CmcMZpIP7x7Vo-E+=SYwKSU-{$FFsz z6I}9sN!p8%21ZAa(5pMjj~O}AKX_B%cFEXQ;D`X5<}S-zlo2xUozdfJTWeJcBTWt{ z_ueAtB1KZ1u;Es%jAbfH4Sf??w1Qj&L-Chwhl$kgx!9^{ows@qg~jXVP1`bd%M;^a z9A`YDE$tsYQRxwuiWFbSibcw3#Z!`_%O`1z`M){|?xU!np^C39S_fIj(kqsIoosMd zPqh{|!`AOfDB9vozt^uAT&!b)hm;@zn6*Z;+LL)Z;>qo@;q%D@p z`$WMo-9JL@cLl8r&!wrM(zGDj0uH#Jrh*)>Ffq}bl=;+hjk$`1_@B>B*3$jH4A$I# zpyv#hh>v;URYZl-Q2stb-ki*t(_r!wuI_E~5c+XE#_8U{V|DMyu8TJNM&M@wq@>WbDJ!pKs)ch7T{ICy*MUv=n;% zTqoJjbdJ$vUT^2NwM81a_H*ja`>-zc#^$h#1(aG`E||pI+bnRL!v0q6s~v8vpK{2< zYFxMc;A2w~R9QTi(%lSm<*^7|05SBMlByvrbKpG!v+bolVo5N8U}fBpmJNK3bjw(b z;)u0R1Qsa7ykDUJ&DGSR*c-mdtj5Ye4ru@e!~zS~288*_2w1`Zz$MWW+p3>DA)Pz^ z=vSlF6TcdQOsp-@KD0GYi?<{T{3T3nfR(2=z%R6Upw@adFAcUQa!an7r-(F3omcW# z_wDiU_2FHbs9l<3^g*gtRIZjwGCpnZzacIJ{IC}T;{6YIqCfDzazgF9oWKF)hfw^J zcn?FkzW1TpeFTe(eG~z!D9gWtJ>CDAy+YtvwY+pIT^?qT>({$_QCU9gs`L)som5m2}_yX-;2%8f%nQr`zuM__Y810f^2UNGenfqppDwV zt61sClBTwS+_r5G9bh8+R+B1YeUFllE{?|IrpgfuZaEJ%?8@O{Zbd3sU?JMa6CmUo z#RdHVQ2*SV}oa-Cd%4?f+oHPu) zr(S@2#med1HoRH+=3xoS43Cq)DYTlvx<=#SP&SG~;C;%b`j7KVtgNsEeh=L}woZ=& zvHxF#{U|%B==R58!^Sz*xhlPxjI<;|AjO$D^Y{tbeF;voEmeZcjg^Zfy?- zh8xVq(isV59R$hHUcTh#%e{Pl-?BgaocQz^UZ-}f^dj%thrx-&Lo2?fb5Ng#vGmB< ziZs!B;~Y_RCHjq^)uSxQQ)cPm^Pz+DH>-(PvezRK#I-R;Zc_wb*e!EJbObj9oK~hr z4ir+L_EAH5vw}6(BL_#UErZ7=-f>G}+y-cjB&K5P_-3hm&c3Oo#^(Zoae1p~>`@kN zr`ph>xuB-qWwAPa0Ek^+idLt_+#s5Ok&cfmpx5LCZG^p!)RHo^RKR2Gk^bKxrl}-b z9_r@s50A@sOe#K5kX89mzO*-th3EacoESJquUvsZ<0JQu`=IQ%XqS3%4Z?nyBXct> zR}h>o?7k&SQ+sSy{JC*fYx~!25FB9l#iMgn9RZqtnc7s!VU77?7pqnBdr_)u*tyC+ z39`(`F(O{3yWid-yL+vnwphT*8rR>}G-9Vu+9opgOPIgXLQy4s{rbih(6?50jU05I znY2WGex&EIocd%NTuY7`418%xDMbq|)Xiama41=;Lc))7><2-FuNT|88bj~X64}j( zf_1cv^MZrQ(aYC?pWZvJyZCS`;YNdJHrL-C=Cj`F6rGsI8rI3Bl1t0B0C9R3-~{nZ z{Hn$4Ampr+3d0&k&!L*IAt_@OVJ7vUG#eCY#*Dc5X;}5UG2k(CQ{W^SI5Eak>muT12 zn2HCse%{iY0)goG1C17^#_m&FH!^=UmdEH)bmy&oS3mF} zkKOrXq__8>@tbR^*B76|n??37#zU^eTvfnK-@1AaBk{qIN)7HragXs5@7Vg{E>ya+ zw(Pd_uR3AqVa`>#)$(iillB5fe(xnAR#TPM50<2m8J<0-au^>*&_LpNTI%O|QyYCy zst&iMwMmr#1CF>LCN&wKl?3j9DXo2(zMgi}mE>_}I|~1z*$;-y2B))SYMVOI2;(H-`9LycI#DsTxL3xNq>Qbfy#*S9Q9ShU}B%KtNCW@3qt@Lfvo2h~p_hiQ3RquZyII0BU z%q61uV1h&mhi{Q^)YO3}jGe=o4;gYf`CS*#iI8Ld1gk2%N5AX!!T({mtlrS;EbnfP zT}?!O%)M9s?YSQ6olM=!V~vemY#vlW zZsn+lr)J^>>ubOMNMg*I!pCoQ62yJ8!AvLE!+LeDU$fd{6^8TRS|rRm%MxiFK)PG) zBSM;)31)jzP41;!5peP&#M;h@vB*2FAr3GFwc^YT9HWI6H4r-1yl*;n9!8$$CsW~6sG-=Xlh^q-{p{0E?p^~=dZ#Vd~x)s$h& z*A@gqE}58#cz5DQI|$f2_N;4Tu=37$^fF7Yqqm6N-5mZ~{)%5hk5>0iP4?Jxd1lt0 z!+qVWq`E}H`{baHBZHfmE}G4#^c3nQ zv)+FktEQJ{sOJy;Q%#Ovr7EE*8s+BP+*hQET!>xqj(}k|`OC#$XSsJ5$0#q(x&^lY zX4J3%Kz`tN1B)Yc%(+)d$L~tW?xW-cSz^DohN3k$vUqECDF^=?U;aark9z|StElh2 zh2$GJ#oHPHGJAtjJT(qCXm+7EsZ{*4%#6Oj@e-d-`r3;ZCnfOVA zPjy)E&(W`|(r+b8@AnH8;L5yJx@+Xx(_Zl9w=CvQVI^{*7M7Gz(-@=00CwYBhl{5-dD zzBEwG{H~N0H_4XdqM(r?hBLWJi$Gm2pdpFkSl-UNnR!pg4{IcyJ6US5uZ{ThA>I9>;By#fZ9*WF3O#6Hmv-=IRFdUD+Y1 z{_ty#t5+ck(Gyp+L}`q|AW;t!JubqT7A}L+TI83KgFNXK4XeP|HeyeD7f0!K+4~q@ zjM<$Maup8Oa3VyrwcyP$dvu}_<0@B8Ittoq{)t(ZXcbmia!L5TQKoAb7+T!uewck@ z-YP2cP&cr)FgJ5QY{ilp34}RL+o!vL3SS^XP$4A6358)LHUR) zH_>y!4V=HPui(CcSUfr&W9_`~Spa}hXkT-KENWw%YIzU#KFJM-&v$7tI;}lKIAb)n z-H@^Pk})jDyS4H(TdW9|$B!+11_z8;)kl9;!g%M%r(pliJ8uce#AZtQILaC;s^L@; zRpD4uU47`xZQ1%3*v8Fq>ov7GvkbFlZWs9HI&bT+i)< zjn55H6YI&Ox6K`224n3++(!1=u^Q-Z8LyY3g17{JVQTu5;Ma6BQ)w(%2J__{@1wDS zZ>UXg4+%7r^7QD)^}=KH+;j)@pDY#}YSd3!xpXJs^BVlZy-M$n7X; zp&~|ZZ7HdEohVc}McC)4dZ+h!8HB4KvbE>W%wUjdLu^0tV#AkGV6Xkm`6lGp}|3$Q*Y5;J|%Y(dN&=7#p;&+DS+u8%faZ%)RDV9Or zTnWH8777D&4nX&@i=t@QJYf6lx>C?jAL`rh0pqE(ZE;;@$&~3y8p!(0^kmq@#vSzZ7kSgJ!bR^o&Lp!^By1Qw#tUkSQP>Zd z7ODVf$+&FSe0%uV4_fz31ZskhaN6t2oNBJz0;of@b_E3m8XN_w_@^-;<%&sXWc_HU zq!NK;++6R9^VIVeUVJj;|2I6~9 z?Bk5_q_hFL4IJ2bw3c7^m1+;y&j*@e(=0ES*23~aJ;9Ejuw}lW+zezMV<1C|HSy8jC5aF;xLie+%$AG z5db5FmM0lxiBsk@fNHw&vCuMa+tR}KoF$6Tpp#^)fmv`z_O1KFn1 zl=KrKdr=hBWPrjoN)9W+J?vBtN?Mmqi8j&_0D~{(ids_S=6nVKKsqe#kq!z^$S3TK z@jLEIJdY(E=cUYJ!xDgj7Di8iujDWa&^b+u2&TpQV;bKj$ls1&a#Vnxc@y@waLFKZ zmLpz4r_1hFtgsIPFSsofuCqrjEU}T{03w+Gb28NYS9+*>mmZ!z3x-ggRo)9k#NH8@YX3hf;q}k0m&M6xGA;<|%G~AA9mN8$p03M$y_M5!*Rb-bW9z;3 z4ol~W3>{RYNM!-N|L*TXca=C8tAP2x5C_jBP7*+Y4|J;L4crI+F-(PrFeg6fKH z%tI(s>3Q~5f31ofT4JMRc{`Z|g(o(dh?6FZ!bYz0XtSVa5V)?DMFcG4vm^ub@a!yY zIi6ZDLW^<1a8<9}4i3N^=w!Zv)=+?qQa~KtpJhil9)-oNAxPztRAIDJn1)3v*!Dh1 z!Oef7-+@B=!BHtRTkH7)G}RUFR=X@32QW5@5-Brl>sDCQU~KiFWgS@r0m}QbYd@~p zB=A6Z@*9d7a!`LF3uPF&B1ns4Ojn8n;0X#z96)k8<@i+>4KBe^iU25Kg@wYVfB@Ul zrVHj|7#rww7d8Aw3C^&6W@}iOJhXHS>(Ublv-YsItT@S(bduVf`&>m>gOvY?`&z4* z;Q{Pj1rcYcowz+VqvYeyZ0)h)a0?#L^rt4bRvBqIIv(Pt@Q?r; ze1J!CK)*T|z`(%37Yri+_!`oW4Fti20BHaq8ALH)5E>MZH{%P|_sCC>FCX`iZu=9$ z=rPMK7@Fl zJ8(HHb&dWPn@G8fsIp(LavBw3(yu>D=3|f73T!z!67vnW17Fw(^trsWmFmWAE z9w>zAb0f*b4eYRmI+8XhyeX9;OaU#%@=^wD{d%mEp{AEWYhNz;J{i6l`dVp@H%q*gl&y}mzpTH9s1DK}xD!{3q z0L=J1zb~T@-rfU8nq#Xy|pHfHi}Zs|N zf0{QOF6ImI(}zx=vjDpJBjk&2 z@6sfoB@Tm@eh9rSl_hHV>YEn6&UA-r`QK{QU9agSmJ@q^z+X=v)iNvBspF(rCLj7& zp^oP$OEFSyEWLqW0XOkwfwmrXT_nP69j$-;9Plsmi%A-6a2M(!pJl%4e8dk;njtyJ zm3$I9iQ7qI|BJZ3ilTJu3ww+HiR^r)v*_S=cW;>E@0!%z3u%Ub_3cHatLyc}l0W)X z%_XXct$*EHJ%}}tzB^?(VFh19x(rp2JW?fORBOdvlqT9Kj?+@lTDX3% zpnT+BPvPZiuU>Z)-kNONWF;}TXHu&PH2#R2tr+!IW`FB9JyHf-miYwh0e;dgZ9>lc zsHR@`+?riK-6G>RNb$v2Ed22H4SuDuyY*6ND}YF?r70w8T?5Lp9(@+jx?ICfh8`1{ zx8>^@Q2jf!cmlX7%%=|fPWQNpD|JR{aM{b}*< z>ppSfs(5YNe6d-2{AAc${ic5ko-L}ee_dvR1o`C8FnTmG&5mv~cIUL&^=nb$)cYZ~ zcoYL=?>Lpv#uKH5I4T$jEV>X=L0^At$_#KtGdIu`92M-;aLhtOCb3ZQEF!jLjs|Cl zc82iHZ0dedeLbH&Vm?X}peT1GTIZE8~07JeuYA$l)T)CMPgOcPjNsEcCqnvT{sbNR0`brqc;&PcUJkFQaSKBd{mYlzS>3tn+RnT2V zi63jM>f(v7U=wm zR)m4}Gx@n7Fak$5KKnXnU_CljuCcRH;I|WJiw)OM%ZY}f_LjsyM~Lf!y%8!i4Ec4P z4j(W9V1RatB!m2kG3^Iwdi$Dd=a9j|#WPF8(vd>3c=H}+7?hl|V>m#bNFD76CE$13 zNb5=jIDun0@RHT7O|y!e)qb1SC&rqsElN`2Y&ZcN5yXICXFWsUXA#55OZa*w%nQjG zD}2epYyQ>T*S?GTX{DP;l;-y9CSIb?kD#N(YS-xim+pw`1|{EGx<2M|m7NN0i0%;& z)Y1?9v08TEP+!rNf9K)@>#;@4sEp0hK-}cAcjY3E7vrwhqAz6AGUROgNu&4yn~94T zFAd(YAe$x#VHuX3kk$rSoy&107lA_=ay8@$oGRHKX9N^b8jtdB@R~AHKw*ODdiE3| ztFk)EuFXo7{t~!rh|e`}o4z;EuLY`dxxQ5(yED_X49|XIMyO?fl~y7FSTF)2+#*XX zh$&dTTM38wrDlvVWKS|Aam8FS1!%rbTe}_+R&%qZ+_@0+40!lAn#+ZQ{1j~_(GeBE zgm1y_SvM)U0(nB%@3Ea&wo)h$;QGh6VLTlqp}jyQdsNHKH3RCe#Rwl(apGvVraPEQ znL3`m5mJOTAmgi56ZL;NdWJY$fw!G`^B5x!x&B!;x>V_S0ehMW&TZm0#{y8HE(PBYU zY)wDZw0Vj{x-ctpKrG%UnseHoQ){6<(^nbV~{H-=}LMY1Fnm(rUuOc$&&c}Vf%hs zqx4Qn$s}P*ymyrRm~MhuN5+C##aJDxN&cnw96iZh0sj$dXrXO%uR&blVA-G6N^<5y zMM_f(O$@`Q4xtTM3($F#J$?1hY?%_u%^Yb_I*5ctjLQb$Hsv?-zyo$k`O1z906zkT z7S`IClF_>TezNI{2pCv=w^remg&bTaFbumqM36)R@>#+Ip0xAXhFr)dV3nIuPyPHq z{61A=?`<(J8wGDDQ-q_yzD zX5)O_u2?yK#|SZVA*yuDW= z+Gui63)1mG1Vkin0f5*xYj24KTEvg24#+Q-6r9BUU47KJ+`g*DQ$g943Qn67>^u=M zV^wQVaBJI-k{UAk*6GzahFDSK03r6gS=yVJgFk*7BE6ioyRnEJM za#carsWDqsM+4Clad=H&bg%Y~?7PE+!ZrxjjdT6X!BwrFDV zk0SZ!XvI?+x(89tPUTT<$Uqu35|C{0iZEf~0fidtu0k9J-2DC}l{#P55>V;1jG#mn zM}kuaz=D->PW+%!8zcz8;uuNq&x0-jSL7Co@`ybco}BGvoZ>M3zFX+?Gi1YJ4>eUH zcK3HDG~D6r(*d5tx|ixjIi}8hDvE=>f1cZ1f7#)!=&&a@<9UI-)+TaA8W|FHgpy26 zbZ=-9B1d$MZ*TD1GRFkDb3>D}d$adic`D>n4@38toeS8?2|7<{1CTe%f#YeP;<61} zeOUK4cW24C4%5=BD{d~7;&E`K*p-#2!O?9bC_(f?5EvfHPq7u&61;o>+x0S_sh!z#$ej#Gw<-bH>AyHvPSvds- z$@fHr`oE9wwHdnqY~IUA-9BonsY(3oT&baVVFB3Jq-XI$fPhPWK)+P_Jg!wo#x$jbenJ@3Zon373V#8`&@-Wy_nxf`gq^orpTE@+OXg>vp z*HNC$P?4G8(v<%x<>Unn#yXlNqBW-KL};+3M}^1Q7)3HYfal7gC`io-3(DzNQ-s}1 z(7q}&9W2GAf}J>^u_4Cc2xH|iGey1z?KAe7_nHbrJu@0m$1!5?*P+|+@0V=Z27t4r zr{M^%LzX~m;y2sN2D_|%Y_E^gH(P^-Hozf(7cpRQi&$U`xL}Uh22}V!d|@C!@d^-$ z5*sRxfOq3V$pPJ9h8rT*iwos~nd&ss0t2u>LClXu6<2ex;s6%K_h?HKSJ)QJyE+dI zQhHx-nooqP37WB{>j{2c`1RM0BH0j~IpbP@)!yNcWN%?md>y2?Z>x9(JdYrjQS8NS{raGZE+umj z`se#Mz@ZdLOB02=5|zhJOKeLAZD7c_wljkO-!{##W}-r&sTXi4WXNH7q-(_(ha7etI#ID*+75vC zh}$CY4Hn$RY|ZE61pKFv{(=Sr7(XG~&Q- z0R^qds6-%?Hs}Qf5swdFFsNu@hXM-}qF}IzrifykjOLzne-99nW=3Ml#oHaz^T#CV zPjX2fb1#`IUm*oJe7QnWM`0Jj! ziMPkGg>_y>3879-YHq(9R?IL?XarjZ&U?t}R38N%`ckG+sHE{xLBEWYEtqP{(7m)O zigPrBh)0UD0>vE1+V7uN-D}aGC=ELO&rz}SFDk{<1Tln49hE*qwZ?9tRB|Un zQ}pE&dahNA_(8|Q*N8dmSA=$Tnrg~hhi}M46xnE(ZJ^l08TnE)FGAXwc&4zhs-v?y zPr@mM5Z-ZP^>ABkisbBYHjZdGoXqpm34yv%<_s(vgjJ6iEES=J2l@4)YR3LB{PrVj ziKPfB0FVey(I?RyizU?iD2Z_F##BlkvM2|I?N=byqWfH%3C`f{*-rZWxA{_b94W+E zFB$dO*T(wtN$Zj*fz|=$An zWZo`!AFqUnaGGT7(E{YPsFQA{kae*stop&cXl2ch}ta2;i_nC|6@T+!c|Bg1^)M{1aSR1w}>efX&L#jl3M?boF zVJV0}twD}U0Y$u8lTw;OOLzfgyG&)3pXQ+<3E7%pU=`mfJ@h}<`v=Atb+-D6{`~m&*|o|0v)S%O z6bu~J7_^KKi^*Te+S+&8<=B{{LMm0vv|;EcEbm=SLSSwbUC_}*LJ%yd7_iGy*JvFM z=uanOYaLNXf%>VkBze%X;Y_#6R8=uiVDq*}6#-F`TA&w|$~Z|oud!sJ=OK-r`CIGR z77xolE*@)!2!H5ve0fSjtTe*r{*~bRT4qvw$j==07Z~AVGGCyeakS_;eu0%<$x6YxeA~&^K(yARTnb? z7E0YI{@4dOFp*D^EHGewdvMr#CDxPlfVf^+6M z5bE0Kyqt{OI&qD5s7NtI zNL%x#Zh48d$9=bIxvOiITYVjAX88}lO1M0Yj-=Xn+21DDq(%@Uea1^{F^Tcs(SYQd zu|t3#S$#e6j2SIZQ196KdTqp4UCA$g*~RBxb&9eaZF-PY&95#GOf8|Z!88o>YTueT zt1i1^PXf$-{=JyJPL8|_Ad&FFNTn?t!Mr-OOELDp$*3XG)SY-V&18dVCYoBn&6uij z4Lfa=^B(6zNVpg2jQ!lVZ2NOgzScH5Z~l_L8NJC`aMw#ZHEZ|2y@{K2u}Vd#gaBY5 zw_kEr$|5c2q#h}`VJ`2I*g!Xgli89;DcOGmOvHfaV9}4xBU;7)(TouR7^QGBKAZVm z!=XTT_c8|=`xD`)z6osz2&9v+SPuliK68bzRSz}cGKahVeW%Hx_P3dX_>#ZSy)c0r z;nJ+AS@6c8kz@!mPnvl*{ua$2P|yUhIMz$|wf9TEZW*Cy+9rN&3AQr)Q%B1cP45!B ze4-JLCxpA6KS`TX_JtS-3-rZG##2p0zyNa^|8=Y@9g4x&Q+)d=G^#G8b|4y>!8$+1 zHmp2mX;KqSa z(#=Ebu_Fu9hGknGg{RT2phPH`NNrTI2E<^CYo$;^w2?qMV?dR`AW-tpO&mPQ3PvV$ z{}c&nFhfQ=EK3l!2EBHFF!*tNTw_=l3)CceGc_G>6Jh%v>>8B=Ft$@4z=NguKx60t zj3OK)M!W?LI~mc^)F%ETW2}7WLD;0a@25BAiupw#@r&cSDq$#Q3`~w!t4nL4$Vn`5 z00SDLv?t~V&rcbfk$4Cg5JMS&@zr%%DK!tkxjp*=&lJ%9Au|S9@DrEBq|tg^ub%|T zH^1*EWF0aTBZsKsy~Mb3YMd3A;@i4ZT*u2L@{kk`NAw4DVY_VdmxTd|C3+I!r!A9N za^b0w;{$M+|BO$a7QoNx7}9JwyxFZ#v9=8J2*cwK7fNmqt4&%n;K3%ix+Jt>QdfP* z`WcmRmFtPe_lIP@xT{yf3cp!1^$t4AFcBHGBwRBLkAy>zytA~8R5lS4aihS%IVCjB z41$a>3MxvZC7#*?4WMF`4JhohrRf>Tl|c6Kn(*3j?9$ zpctuF@=Zxx$wDISe~VBFGa778^OLWci@Oa*blPD(nU3XFJm%Sa$X^hour^JVhQ~8< z!@$GEGKPt;Q-DI)1~4;`0E2`evX#wu-w^eV-`!j}l~Y(^{h_5|6Y>VcnpqfT(&%Wl zg$Rh+Q_8(EDALQY^=a?^P*4Skx&M`cS+DK#$ie=DYIM<-;7$GN6#a%J#(yrkSOx+) zfv1k;VF*7ZxN$1pwof(Y{QQsXZuWzLtq+D5x{1Z9a*qFB9*G#nLOD)|@ zDvmUKYw^m=%MEPc`b?JR3PMXh@P|6H&i(5;gnQ1KxBD#i!`G*4rW3b^ z)sm_qJ~E)FN?dQmR*YU(EiJ(aSF3IeeEV%rr$K`$xQI|DNM_=5eN8g6bOwhO*{=@i z(Vy>3xmeds@wQRoUL916DH)f5!4Jv8p7zS|b@P9S@&Uunn$FjU9rF+L~!;$7TKFl#X3vDVKje3&FcBlo92^ z|9+qWJ{@>u{R~FStf+rNfmQFP5rbxiX|Ms(w~4ARSsV}kJRUCVh$R0BS^CcFa^UN? z7Acm$8g#p1=uGg^ctb3VgZafSnRxL7_FFk0c8tExKM%z9)4>b^189A3?s-tnl0#-< z@0=rgeiF8fTgB+ip}w(WSC^BH$?aT2@ieQfL)gz~BckxQYYroFi-OzywcF+wz_ybs zRG^#ZS5-;{6Q5hQ=+H6BjB)Yo1J8H=@L#7AtlLC^J)bU~)8C{ur{w#^#82OTA6FC` zS$VUDg)^y_iN%${`(vAsyOX=M|pO2HGVt_xVD-n@U4!CEJm{b5RQ&f z+jT$dJ6!emu$*5OuN4x=oqPUmg!k*6P55(a*~6F4@A7;%NNet*1nVzm4Z3*q@r%Zf z-y*w(`4DWf0 zf42Xe{yBgAC?+B$Ca)?h|Ig{jd;#qMcg=v62$aMB{mD)^S+tzeUvXsHy@%|TZOW&w zN|U)yRUE>PycfEct*>rW`0^YyDd z@|}aOCo8VN3&zL#Z`6Aa^~?U`OlzAatP*on7u%)A)94V-2Eeedx{O|4-WL0e+?tqB zolU-bVpBGAsfyW?;gD}%!SN5QNAVhii(MQ8#eaCivii#3KOf%p1_k_l3-Heh$lDlB z3HGP?_r?yGwx&fhk-D$fGXdwEa{hhq*HG9|>rcDz9!yEp)j6VlI}Y6FYS3j+&W;#kgL!MbO&(NKFaIp4tX z;ZP#`qL$49{s6&iD0D%H2Z+$0h=7D<)w&Vs52;jUSMIZk%W-nixNU-IGzfFPjr*jbql zrUYP%d3KunB(pSu|H5Ze$LWqAzeXvQic;l$eMAyp|D9LX$h1(e$=)%MH|dg{#1B32 zUtD}l#B?ul+f?4m&-7I$(&Du8rLP|DqoimGGOHKr@J5A7a}=HMBQiI2pjvRzaP74| zWP!EQHNIn;O=tW*>U>5O2zl-hOXe$p~)lDWy-hTE~4GGlZoCMY0Y6`*lQ z$Z-`PRp~ri#$yAs$xvmav~*rex_L@c>X9qi;!4r?``d1QUWYa^a@q0|MDCPCU<3ZvYLuJGz({}TGoe?agLx07lXLi+ejn5B&`7Suh$n<$ zcX?=mP@YAY{f%X7^b>9KEmko3vK~>>HE=S%qZ%TaVu;CyXd_3n)3Gn1EF34|=3$Y2 zmY?zA#e0-Xo?3kwGvM2qZo5L4SUx3do_$oimA(Al_UI#LNGh>sfvH5#5+|)NHZ>U$ zFHIIVHZLiHgKzMY)%nc=pZXez!=8Y89}n%g7K=#2k+eb*SY62hE$PRhhS}%4hY1eN zq5!t1SD-FvQnq~_-Wj^w*z+T0vG^Yu;_v3QTda9O(_VuWu7`@VGm%8 zR!3L1?*OR(b*U6%fd=?z5bB^BnGnHjqp%$a-_Pp!Qlrl6j)5INPOXL1CJxBQ;e0y# z9Kc6H_pPtnF(A(P&19#x+bOr#e4bfA)JW2eJs?JsT=C!|cNw>ZJKIbS?@ghMZA8Tj^6yMC&61#f!liypnf zNCJIb-D(n*-i%HG{c^mdH-JEr$Ed%ENFYV3!6RABHX3OR5@&rFbZ4*pBt-7nJ#mpafe zj$wPIH#?%u*WLozG5fwJ1=*o`KU z&cP^{8kG%tLMbLxBJ^ShjqN=2Ac1IQ{hfiu^-8X$KpNX82AL=ZG1IR>1A=7Q8(NyTfzJrBS)pYR zJ5rM$F#S~ou5!$7xe=xy0m{Tz_w7``x&^!T!;;}#F)xf0u z)z#9}a}+)ypkw;yqbrM;sm&YwCKj@x@Xa~~!W07D0O7f)tXy7a!fENPw1Kh%82FkB z5%01_N-Z?pxTq7`{;VMYAejU6Zb>nZ1FT{PEPiyqX?QWssu%hI)j(FeO>V^lRFmGbOOelt2XX0`L75Lc& zi-;q+5R(i>Yb*j_2{}&`ZE$!eMOBuSG|V?m0yGl(^eq86V`5_gL~ew^2@Q$hRqc*$ z%uVJ5cz4de&!^nd(WaHT+KQl=_FG3+juS`r=tr~VkBGr7?AtRhF}ku^=j1Lsya+MU z!1ob%ohH;YB8ZhSMl$Fa1~d5$QXiJlvAM31v3+!OW$de!uCY!+GL{l|)+-fc?0^FT zz(^QtHo`B)e};8^@bo9Cfcg+S4S*`4M3TU=*(&H|etdiU@)_T&J#?QTM_?NJU>w^D zkCe4l+(?sW#>31>Pk+wN#W zyQ zM)_D8bEcDTwfqs5h-|JL>hjog1f@8imqGtldTrj3;+t8o!)kXimAv=2{f&(mf8D(( zmPI2xjM>n|Xe~APtoIU&%WepB*6aQLo?c($MQeardc~^;%}lZ7pe1wg0}aRt3(QmZ zS@tI~ZMS~nclr@vpN5%b9O_|{-JM%DPHE`x+oT~R?x5dE!>P14)Odyxr$<>LrFsr}lM-AJO%mU-_)QK!jlhYplZl*}sm4e$GADNXfAYrxu;PZ}f@AYStVc zR~9t1#Bk0p+Dz8=*K)VDWJ6;zd*iA=jw+sXY(IT3=X6Nus!q)f2U-71(nap+H8wD8 z<#iSgs2T{mf>*>pH~V#Ahx)K9ujQ16l>QyJ`SjOZK0|rJih}bC96oC80%9vD{82SlG66(kQK(Bpr33D$aCWwi z{}J1}H2+)q^hY+y0hUc@5!{SXJN4~jxFlX6Y9=3gGy+JmJu--hFjf5XJI@ryrl_27 zT^#Gk5PP+P1k>7ANFgCTEYJrbRc#EnV4-%#c{Op!>1f_AQLW z&|bfmr@bnO%ss5wq|96z*JgrqQ>(4x;2=*_po^kZOreiOy>;X5bm2F=^dWv)Uh3}Z z4Oi_I<8mV-8Ygg8uO+JPOQU3X3(JyT z?$}-a1q%1FHelAEKcn?79#_z>|In!MBweG)(`+Yi$&H_@asKJe_PjrE*(EB;<*Jf+ z+a@N*;r}bjDJb$Bn*m~=V)Pb*TO}0yz(m2!D3KD}R4$E|7u0=-$eJKocBolXnS;!E zuW5~7waTO&myxH^5GGprV1+Mra0scc!f@ROCD6R3{u>M|b0QAt))9GBzJ%kpF3e;9pE2%$Xmxo6G`?+|^_S9RnuPQJr!iRmmtHh}(Tk!-!w!ls zWMTQ0$1wTo#ncq!=Mfb6>aGCs^9yqGDac7leoB8~4aHslIHpp1wS@r!Dx9^&VLae@ z>wq^#hv$N=gu61G6LWps?o?f45>-tl!h`{R1aK~!_ee_BYpG3Tpe*~g5{~vqyZ-af zW*1gbYVX93KT1j@+gswk%!`J zVQ+FypddhH#^<9kQeyO9x@7yLNQ!|>m-tCR4@zv`B|>H+JJFYn)UfAfzVDE=Y0N*r$en?dLWJep%@3%;9>54LY_4#5?6-o&`2j)^yIQ6;{XhAC8v%B-mH_WVkqSq z22VE%>qR`6KeDDqtco^?37r1gg{%~sD1T6^u>-=_!P zzpt{$<+s;i8LYZnbNxJu-`M=PG@_gNKG->zC9{J$fSV^@0a*OUooixVc^g)y4|_5x zp-kTqzN%yE=Ke$@lP06!o4d*0pHGE1H2-`5R^nv{+R7WzAAhl|HixbXT$~H!daXMt zrF;u8!vY=uMcm6zWkU&*;)R&~agQ!1m~0aJdprO?fbF2nfB*?AA7CCi0j?KWJ+Avp z3_2k&S8jbf6_wpAL&v(m7Xjht7~}5YVVYQgC|Me-R1%q#)aKo@t%*nXpM}njISt~6 zXV-e$LIKLe^3+7WW*BH85R#&TFOSXERtKB zhztA{d+IU>X|g&Md2t*`dTkF9}>?awf@Sw zVC=ZaWIoG66@@p zohZuF0$zhH!U~frC1qa@>+2lj;CeL4ME6F|B_JCM1QXR z`y}8WWk7$%V8g}@5%pK4DZbGYV}mv3MQPsEB3t)i(+28e%=2DY{$Z=tiw6L^TTkAT zOi|EA=O5Vp6eEQ{Iq|VxD=5O@6gJfmH#q*3RfnTKw$8KP;p?4LeNQrqj>1<578=CP zn>S^Xf`0L~MC3xy= zh4Rb03}Y{ST!V9|yK;+wF1u*;^`t|m%f3?BO<-PjI?LwdYIRZ8HQn@aaJSFPeB_u) z2=AhVs8xOXo*Ya$)fdy0CiBZ5|9d0Ttj^6Wn$DNz=YNr-GYk%Fm6iBx^w4|UVV4&? zGc~$dRApCkOUv%_a#}Z)oL9yon65W;D8r?rxq1y?HJD~ARnCm7!+g4EL%1T%2>Jg? z=llP)627ua$V#VB2I+5*x_vUCzcXzCZT{?>1*W(O?E z=?_2V04G6{4y^!(+l^#?g&}AZ0<)y-2g?lB&nk0c%;fP=hs#rtmI!^ncU}XQx{QKQ zY?m!*?miOt%y+11M43F?LoiXMN;YQ3_*HrVy$S6ksGsF81ST78gKZM|d%8~b(q$eP z4qS@376Q4g;0;qv35-Q6q--pLZQmnto;On@_zc>co~33j|DeuNb!=(Sn<)ts?9fFK zF955X=HBtnRzx%=o*!)P#}U%HB5*?HI>gBNfByD;38=I($$c% zaFqBOcbTHr%}>o#Nkn@zR_T%|HNJDZ@heIOEUc~{hfqGhUFh0~ zl?>W%I)WS~yp{dluho5Y5|U?C9YZUcY|6e;w^O9KSuo0Qf;!2)h-PA=P!hB`CKi=r2sO5kvOql7yi4m?i3X-Casoc5^;@`Dv~#j!f*ITP zwG&Mw!1#`e~5Xu3C zC1JzHjh|6b3T5@srzpMjw)=RCN-#gNctzmZ<3okdn{G2sU`i>k^;^C+_-ro^zEse{ zZzPf%e9+R_E@DlPG3k_Wrp?Mw(CWPVGg!^!xZ*VWYosPxGgBqcr<2>iKC(3fPWJn& zGFp?9n!M9fEB|;q<(fmm z+}CX^7Y(|S+o~2um+0(7k{BZim?zbUj?X?0!j_nb^W7jkU$N42j2d0z!u;ImHcgfI zfv9r>!J}i?<_6q@e1`6&OYFimDioqrEk$*W&+8d4%n~2Lcr%y-=&Xp@*I+c@Sktl- zKaUOHa@Jnc(t;<+6U$K3@~lF2aNW~=b^nSsvw}TtjZO?(fR^`N%hA2(pBrdO*ET|_ zR{VMjY$iyOSUzr}T7wY<$8_zC4kH&jyV5E2r{CMGTn3(d8lOa;46Fan7I&-w@nm>h zFH+wi^P3#xb&$rv3D)Cwo!bm<>7lpp+lF&7Tg`Et-?+Agh7_vw<4_(PbZ$fHEjaV_ zin`|Kbp2Vhq=a6p6i||P&_!$+p;?7DlWa%K;vc{nPI?{&nX}o%j5 zeJc+x4~o`bs!2s19qnIfT04s7&{xzkJbybd>`P_*pAKsk@f%f3|Im?IVn2jHLWbB2 zumm0_MDX*P_oVN4oA=H3_%!eDDtZ1Qm$UxT%CMqk;5~L~NmwbSN$!+2`;ifBsUVJB zWa8(c7jG_el+(9Tx3S4-i%QtFMPMCH;=fBh5k5Q^wvAv2_GKui*kR(8hFc6?wInG*Ut28|v;YuYc9Ia4Ehck~_lqRE&m5cy|7Vw{Kg7HV?I=^hR z&hhC8uTtaNqLf@9WRFGQOBwCCeK&S>sUAq6#>dc)T7_nP2WbI%C-(dy8S$gw_~Ks< zrt4&pB{c-D1)pVe8`HfA=}{P5;v$brX$mc3QITu713oPj*~vXns~Cu6hC>A2Xk`Rd zs;pxvl)F!hX-um6oBVbRrafc{I!JVc1k755iD5gM${d8Ox?N>aQIps^!eNjp=86;P z^JU?T08L(!WxyqdHimBV;qh8?-(TvmxSI*^sdo#g_v(fAS9!jSaB@QcU|*78%v4)# zXhcB5vCZNlI^&{}TEVgt$K1+F6V&JxI77YBE_ShrhDDNLmz1q|X+Ima`UYnK7kWSU z3mgIhrcXYNOi~nh{V_SzN&^Y(p#UVvc(ir72kRpd#)fQ0^Rw!y>sf8A(2>wsrtm<= z%TxKMhpW$FJpX{U2Pr|{Zd|ZlO32HftKTxTzjecYGB+O`&1(zo%Gc=}d$ZMzxI90< zuW&Oxcp<~ILtrrW47|miiHoHO!YcS{M8xZ=l_I7h5B+l}snj)9ps1%>-cK6FI<(?O zyl?8(Ys|q73OG(8IAt@V8HKf*77~{;be@HeMlWcf#tnkx9$0(?up8R$78xkhS_M~u zUVP(dXyaD(%rtVcs=>=Zu0>trS#U5xpWP~;vr$_U&kO+(Hy8>HLS|?c83P|XmQk-# z+cu169hs4#=8xfj(x@S@;xPPzo?o{e$V%PTU9(`t~ zcy@opuII{-J*BB@6k6)Hwwv^-A6G1_wigpexe?m_y*F#sMLYA$Coi8lu99GjWJS%ZGBL{QaU}3} z9bYqxrJm;d&j87%eEoK_`zf$0&33eB@Kzx9-nJngx9UF~cmYjTf_8%voe8_2B%6A@ z&=R5Opp$@?dDJv2-Bj!#O(c+&k3GvSc(+P&)8T=0My~~KNiHY+d53ll8reghQPzOh}z)>RN1JF;XOTTT{@ zM3FaMglsIdo~x`jkq)aax@YEST3v@`Myg1)7)3)&;u9f&J=C0tPHD=oKfwii06Sxr zwTO0UAJQ9qv2b`%Y2W`#gC%ePppW@C=)~Yo{QLyR53PFA>~LkyNOG_b&D9+Ljk4C+ zO>%e;@_*JaM2!CzWHfz&j7pTGYf5e*UKwd=J{hsELJXBJy`>B{7dJ15keK9G7)0Qc z@00nH?o(jKdkK3c+W%!5vuf5ZLs&#e?H~y(uhSM0vmHJ2*}9Nzle{F7I3yb+iyY~w ziW`T-e%UGqkI`M5$A|%%L{OV11eEe@P~$yQN&Evi66{Y)QWa%I6k|5OiHu zpL+0~AjRKuD3#u*E4xy|VBN+yr^U?c7y;D5avw4#gGA%i}_G>2Rf#ykt}+aojGrvmds(znCb97Gh}?F^ezuFa~S#xo&4@7fvO0J{uD6mv)UWiWd0OUr)_~cN57>f z_vOp7VT$kFO^U}Hwn@m!typ_qkG+B>;o@697|r0v-sbWbYN%s7bvQ8`i+`|!wQ^0X zLp11I_uzD5wXthvo*Vt&bS3H0#?i)PX~7q4BPCWD{pGrHAdXEcgKr~>xuU^c^R!2+ zX>Tu=Tnyo;--a&-cUgrW2btSHcOA@8yvx$k*mBM~Sd^}sru`F@d@oT5n;)v*u3oOR z>hp_3fNTFud{?v`sA5E$&3$_lHu=RI@pBgig-Ao{rJ&|)46+wR75h<)bV4dU@2y%V zIZC*^1+@abOQCX$!{TW35HqOFx0Cw}cyKiGe_AX`>6jq!JHc;xYB#L+c9}&VGOj>? z-<(|L>`aA-7%T;(mnhch-LHRPsFc$Qxd>pK0n6Bu*DU_g^q>BYwQqIc)i^s1wkMtM z1bEM={hOURA1pmLq7)s+Ve905*R{G$*=qYpPycppER{$}ZooE;n|j?@&!Un=l<5#G z*D88NDCEf8bwr`W6&g7Z^kHcOamK&v_AuQ17aThXtd~U(){%tD+YXYYiHf-4uQe?! z6u}KnR2+>2_{9<=Hkmbp(&E5xfGwc&EBD4O2F-$$f=87Un8ZQ?2QI@`h}A6uI&*RV z%SwiR=T5zt>zH<(IcRhDDqF9>*KX&2<4QwX*J!DphVGq7MIwOj(c0eH9t^nH1Rx*+ z3C5-i5nNVpIUXu9>Q|b}qN^Mh-YbZR5ZhY;mE+v#hqJr+80{jT+0eSJ-&;Fz zTZ~^^Rn`CNnMf2-X}-as6X1`q)qhHKGC)lFL)&Ub$UP?rGue{-?wyzsj(2u5iFEu4 z%`N`|%{#o?v}x7>)@~q;&M8S@4=d8}9lW8kB+_lk5{|6eEIG7VK<8dnGA$6_4Rm-x z2aZ-;346EzfUm}F!$w)x4BFsgkgy~mixZGsXwWU=Lee~LLhKJREXXhrg`0zwgyVt@ z48a?N4a18pEW$#B0M?V7kjkcO0BNeM5jwaAImDP$81jTn7vv}q$YwStl-N6X?g6D? z_e<3aAFOqmdndt1*q4A!*%FpfX~J2@Ym50*t~%0#rr-Xp%C3 zfWQNZM5Q|b%E%6csSXAvMM?%9uucOE>>m`Pr`4A77V-j%sDM8~n4K&$1Xf44G1b|O zGlg>Khay^09U=_bM)y*KFCLxC@pp}2TH<&d*mxWYqC688cDOg))w^lp3&YJAwj83q zPea7c__>QQk@**-BUAJiZhdoal~i8S>}RrHtQyHocc8v!$D)@BjrkX9NDA^hI#9N{ z%k2wH+pTJq)0i5b#N>@lRWgr@o6SyM82wTN6--cjVC5|~`rE4m?lh8)1!Yj&WTmQD zo6i{8f*B=hLLvILN|-uJ7&zs<48X!hA{QI3c@7C16WPGv6d!^1^%<8HGNqKO!>g+^ z##Yb!hQLYw+pK|83%noBS}4vjp9G%6k4-p<>g)QwhiJVs+g z$W$WyO>p)Y*?|%rqhfdsP`U~gL;?v}5Uy1d0+|3V>Ju1TYXZ;)1&*;{1*egd%tMVB zfUg-qGqz#HHfiAFl>WM%=UWTLhC}i(obH7e-aDd4W~+fd44%w_k#G#6O6|WRae3g# zZ-7V(q{lIWKySY&>wEVc$cGl;2P1(Dfel2}x5ER@bpaks5(8K`mLQ_c*Cr%z40+R_WCL*Yd{m;}6r>)9t~n2`rWr!Ll(M z2c)=BFFGjacML?1<`QvX(W@@=)^J~Pv0-X;#-{2KnV8e5lb081Qym(QxE`qL-PLY6 z5gkqXAJ=au!-xbquo*d7qo~Y{tnc)0>nj3nR~>>?NlC`CIhG`tlAoz^Eg9UQKW%KZ zMObg3%J(Gq=SMtltEAmS7G-Ni z<1=lsrK03~>9RAd)eq+9n%zbWA&&j6V|PZ^>(^J0-SsBxc?7Ei#}J{Yvpmbje&sL6 zm`0PL!iG-y{nLp`mg3v@V3E%}v_4KU791TddI4SSgiT(~DhpgL&^Zm<%s({B_vE8w zKhq8)iXVWAF1gJ``lvT0Ws#3(h0AcBxuX3sT}G9b4d9@n4;VCA&9beFfBEjHOJ!*p zH@@H=w=~SJy-$Cjcp4m9?vT?4;Cju9sE{ybNWQLESSY7vr04&~tgcYU3oIK%!nvF^ z^{EnWpVRvp+N1htA5tFEBh{c_uBjtCXAK4q1 zmvZxs*3=NaFbDAYsazpn!S?GJ$#=lNEZ|=^f){`4n~&EOVcz?e`jeTUOll%NM7>H+ z8jorT4M`(1H8q6+Lm!l*bF~Z3kJ?j{dCzQ3ds>HQd<3>Z;QhvK-Ua`MPN|1p>ll*f z;$J=W(Cl?;zT4hy3J9edU-fKt>K-cdu)rvhJg0&rN(0?=L7hSP9#`FNqG|zMlhp#~ z9E)nprA3~WMI(-(lh6tD^t&nA^A0#RmOv%5$d2`eWl;_g4)YigOx_?v5K7zN422=G zrfpM(9wDhinGCgK@O?xQ<2VF81T|igj71a{onp9MaMBC+hmJVB_E)4sTNKGg0bdhR zYCWkTg!KHV?Zc!fH?TH1#gW}-TG=x5o%D@+%!SIv`X{!k?b>gf-d&~;dp*Sf-cZbG z7KtBH2r?aE@&(9wv4clI-ggI1DJT_eoI9j+zZw+{Xri%>Z)H?uoT&NgnVHP)i=nKqTI;cBtlP96X8wc#xTWwt?ZDHUVawtfGB-FDD*IG86 z4^!IvC_&wlG*$4&qzBjP%0P7NKt*Iu8m$%t_ma$z;izfSW<0s$Ssc?#7Hr)a*^UD$w>deyKuC6-wq(ql7 z+-?^iZABx4(yi~dwOp&k#$M{9?@H6TL1HFTsRP?31Mo!@kP-5w#xOS>+VE`hI_(XI zx8F^aHpc+2>H#X4qoN8<4AAhpajb3Gm89fg2&@qY>@=yv61fN25i4ntF@BjXjb58G zJQ$QV+$h~w@TJfJjx=uCR)q@eXCatwBp9<9_%tM&5$d|?B2EOj7&HQF{xN0ujk=$innVt#52C}?un!Ni7Qz%wKSn6Uq(bzrRCNqn zJ%r9{)Q+_3A5R|h2?6i|oPfW8ySW@G;1oYeHOuRu4R&j4;)2(y3qdU$KNIo2FTfA8 zT)RywG(x%~l}05da33}a$%EjdJ0G$;9ip+GZ}EGZ$0yKh$e2^_Vz zfBpEBB1)%C@-`GXqImNgNNa&Y8ZIn|l4OO_*dC!fU9rpwr*L2)nFJ{yCSf z9m*OFoO*~NcReMu33@4ms>oXB!fcLLkxH2$tV|*~P_Z-?3lT_{!A7KCXDvW0MyIfn zJ5gQ_P6c3jgP<)tZNvhAW)OHOrbs<5WB?Rq-|_Z!D^55#qF6;=Om4%L)$0HTkN#%V zKK<8r;#2WYaM%!gJiqX^42hRkT~(nCfkWT>k#!hds%-SN2dJ(5pVYY9LV*JDM@;XPQF?n*T70nTw*e-dNc@-?jEZ^eu zDWyL+4)TDSb7eK5n@o(7{QD7|H}bemvkW`s^3i6YoS|lGdNc7As=+@E)OB`l!Q8my z3PH0WfU|-|G-Hv=-acyAS+@wNK)03A$kG97zF(O8rxl3=#xlZ*hl@m5QN#f12oMOk zOL#yii84%Xgd_{D6cC1*VUb~V#f8$7f&O4G3Qy*&xKKTf>4}gz5%t&NoQn~q?X1wX zEnJKH&xGljGZtemO8gjUhdlvS`V=+0bZf;JN*yCTObTNSM17`ahhH+25`eW{IH`QWbLrlgS0>lO%2qw35?CzsOsR?*9Cx*``hCsI z&SUTC7f#(M^}zL>zM$yCRzI&L>It-c z^D(4iwl+%e;0kL`5{w8++JDCy(4VMZi@M3xbnKEU`0Li%vUP4CPOd zKa%#5n-lTmww)i9T}G1C_~)C~;_LBM<9_{8*!w`>b&f^8eVQ&Tp?ALdo!rLSz#;B4 zrBflpX5pLELhvMYgu3`GJX(k0OdB1*)r zs3lb4Nf0AwXaF+_6fGN`ry#`@Blx*a1o%S}5KutC@=1Z$=s}4v@57|v_Yu5fBhoSr zP$2^o(5?{XfHEOa5>gL<_u^gO9|&|UaEst(;zd*}WtvnYM4|p@F|W!cEhIez!G6vB zN^8vFDTQ32(3w}{n*>FGyAQCh7tr=4)z&CQW|ks`+m`4I2A?SSMj~4#x(mZ%vLhLO zrf2>T&@ymt^cR^FqVnr1q$%7XsQup!;N=?I~xl zU&~K8`J40YoPKQpH(hr5?eYhqfTThyy=7%t-V*ax4n}9I!ixk^Hv&AwJ~Kkt(3TRZpbyImfG(D z3I)?7*fL||BrX6XLk^*x*C2`n(qm^FDIuX6H@~-M9!F|OQNEYdu2j)Q-b%@4*~9yC zHieRhN*Mu_+((tT?~e|V@o*dz14td)AewuVSGaLR&mL`ewh}DrLw&yI+t6f6z&IVE$;oigAI9gz-lxz1OBUv zaNwSXSainRyXQSKkN3(i4SN3X^~c^;@o9%Z;AvVb$yx(p5pjmz$O7fXyZ;O!{aI8r zWR2o%7A`eTpY9~dwa?=5tBs}?mY61;AUSJI9p_G;dTU2s1N+;;)wPwjBx{$sT~y|U zLrc27FSsvTH>a_S@yLK~wUm5{PM_2>1SSEz+P56{_?5F8Wh~<-Zaov_29oYg+podO zV(1hi#r>_XEzBQvu6DOahYJQ2`fi$2o1Y|?sUTO!D%Fkw2D<@*?w_eXwd;IWiOrsC zZgBl3yFH`K`Bn$AClLBw{Q2a9Ut8v1_o}amcQ)v)TOTc=#rfFdms!}ke3k0ORQi8r z(^IcrnF?MJ;?*ctepMNm)GM~13&|H5xksS$`R&&}yKXLG(t8kBT3k83;OtYB+=QCEMd@nc4oj=1zB*EIG&ryrx_YI`f( z3N6u7f2<)f(5o|yLT-x^l z;G0lYFx!TO1$}H)6sZ7Zm4F5qZE5rX-{$#n+Qz+c?Pp@n^}NUIt>;xK%;lr4)Weex zzmZimSwCp**PEVK8oBRo)ExaZxzG;xSx=7uTPSHZ`}1{vYgY2}(5t40jaQ-^=`3EE z-tj%3C((_RWb7Kn0+)IFQEwSD-Q*l%f-Mz?#w`>a23Syv#=wNM(2xl@ zBzOgON1}QdhmnbqzNsAj0B$fNwQ?b)d~PC5j0Fi0!U(YdJ=}$_jNP^w2^O_379|%DsNj&e;kCr-9FN;)3%M2}U#~hgQniEaoy1{iRY_w7o1q?$bUVP|(8_Ufemgh; zqQE4$`Rz-B=~%C@c0iJ$w9Mf=r#j8k6ewS6J%ql>1MFUDLN)g_NUfB+z(x!sK&ADr{^%9$ZZI$F$k(9DQc@x1fsuGBytP?*)}6 z>+duj4D)D)8OX|sAwLXfL!4hdAoYk?>CU^3o=UNQ$5@-7b93LZ%$t40``kQzgkKl` zISC?%87*b&`kp8>L4v5o)V+^3O4I><2zOU7QYI%jW+Cw%UuBA4sV+y$qM;y&mIkey z6RbeYeX`~VT{|E`^Cct6Y{5p1pKL@V5=|GwiZrx<(8+`}ebp6lGKEXNWV^1@L;Qs2 zNfXw{O_@BHe=F{9r1yB!m1^Pj9SSsD*>Yv{8~R`F#(9R0gi2%>#K2}L9{k&o2wmhu zCLIOgpHI31o7!_TcerEt^VESn?;htu{T{VeNy11wwq;mji^{CTf8B;k#Suw3emL=X z6G?*Y|0s@;m72D3=Kl?Xe?NDbD&}#y+a!S#&65}{Fv@WV?M9i6xcR4#r#dREl;KS{ zJ-c@$+P9PQVb;l>uGz=D!)?F9{p|XtS+dxv8~^da=<`-h_1G$9=ox=_RWF{-+%|8M z4NWIS-+Huji|+ZJ{53#2iEj750L__d2KE|sP{_hoi;na}76zbZY_PN0mi5>WiMzN> zs2~%rg9-g*TuhPA{aI}l^y)u2*Wt>E%Cg_x$(U#S^Li^oqqs_&n3TpENi-NY7}3Jg z%Qbe#r%n4k&HL%UujS9jVawn9D=9kFL_%IH$`28}IF3wz&8}RihY>QIQz@Uee}XTX zYWXDAr_{r{ORX_f7e!_tT_J9;aEPy8W>;!-3D|nS5r%EbA+V0(Gd{uU zz+pezH($18YHw+k;L@zBs1eM6N9GVLK?WFEnRqHjQSLqdmTJ#Fo7OVVFOe7*FjNcu z?qjUwyOF>bjkbasPEW7Dna|jWTFtM6p-!A+&_orq1LaJYQ2{_ePqq)RAw)bcYD-YC ziZw8??USS^M~Jc!ImMXUg%sGrP>EEdk|Y>Q=WqY{a~$wpx`kG*Ps9MR%}%5X6;GV( zBS37RngNxCvLq^2)FLBvDZM<-wM?G)o~djq#vd_?bE_k$r~(hee~RS@tUZSJ-&Sl{ zNu)(`VC%Y`s(d0M@NNyuD;q*Lo$@5hD>_5?^V_T1$!IP8x`rEfT)M@jkqpjn+t9q3^)%^Ia z_fO$d5Nlwyy>NJEWgGV-N&}fR2^_V#_9z0{_tuO+VWKjtuu}LIj<3Xkb0_pBz za1f)w%!oDs;Mv}#I~J$L4PU#TWh?WI@}1Zf!u3lmXj>;;yc6GBv{)NR2_^yYM}KB!VE5! z!gt`*5eQ)VxEkheUq6e9uljB`TL~>rBEbq|zDXjgdb(b^5x;)g@E$l={QYdcXgS8j zdTM-7Jp15o*7xw>QEt87I~FFK{J2k`##>TX+htchnw%?)u@0G?7Jn>mGgEoGe<1Iy zdFR5@*>sjkUJ-NjUEgn?XD{gI(ra0puKZYGM{h}{zvjDfFL}Y$n0$SnF*#+8$49?7 z!{X+Y=PAxW)SxK%PGnvk$aBFFPZPC7#5X@FD+m)zhGTUIx*O)F!D=WpdYOdqjkQn28MTIvx zG$w@{!zYDHNGf4O9>Vb}{?Ndyo@>XsEJuL(r-Xvv1EqnqSkkEAg^9XCW4D30K5?b^ zntWFk*O#C=Y0Ln=+TdvKxR9aP)>eVH%~i*yR({!h0+p~t${Z>YP5(O8E#YG;qCT&` z$1bf!Q?AGH?+1rz->wI*Z9kl;lfYVOdRJ>(z8kCkwbK;@r!1er-g{MDcjlaHKdcPz zcBm8?6-13gDSj9JvTCa;-~w|Ev;Lh2s@2(OFi_PYUv-o5!^GETcP*2}If*pdHR7RN zfcQ80)87-UNc0d@o`1D}p4imi_!oWpWBPdj$mr<4Fq1d#nQ4u(!OL2{(aVvXY+BK6 zUZ~naE(HPs?*6T{`gaE(i>J@^q(dS!F3r&3(m%G6H=^pX(x^k@-~aT{#SrvCZu@tJ z=2)~CvY>=?fXwPobKe^iSHD{)@^3$!eeC6-Kow?fyq(F5P-i|Jp0B3*{#NuE(yq~l zzc4}Tz@U-vG-P7E=EFp#TSo(Iff?`Cu3P)o!R;X9Jk*|3uA|Jg+YQs@#f8cy3^7g&4-i#%F_an?i+-=vcTgTLlLkM3lECi7PE zbm_)V?!td4ENAc_$^fmMfE9B#-Oirg?VgV3zj+yY`(3W-wbb;NWkY`_ghSa&N<|vM zH;kzf?d3gU-um@8wo55VSUFiD{l{GsM zEAfwR0kKDV&3_*S+HF*`Eh6Dy4f>8;XBzdG_2#R!rdZbD8veg8v+IA!L(A92mwk5_ ziBeh)BqJs#FQXtU^MxJ6zo3KOSMBHbPxns;{;w}SKd*p{l+4$`bVM7xDlp?AYso$K zU0O>T#hea-8ILe+N$9no9+@J<`CV0OIt>2%elor3z~eAe`yWi8Sh$jEMJ_nPeP3mN zoNJgc`>}iHQI*TFZ91G0TMtAHXGuXe-1bGBOLbj~nqa4o_EztY2IhEj;cauGT{dTR z1r9pKH;b)qWALF0*1@hl8}FF{`d}A>S~8#|NX2Z(7V2w%5WFAjt^=Y*MM-oTjO)*0 zi-;X>m6gK@Uaz*Lw;sLFJ&6_u(rV@A=7*YiY+Djq=K$s@En?43|C^ofW=(l6{(r!X zJ8ynsc|r{i!*32nl((CE>ze`XR4f7HRQbt_ZNL+fyCD``$qKIqE~&6-})oQmGCdS1N*sS*DU zSR4cbhGGebJf5`e*rXT+Hex&D(>I8kujkoAx{H_;A6!NXE#ltJet7opo$}$=n>W|Xbyx5~ zYPX2XjeJqB7ty{Kk+}zo!{o(NUv)GLX?olf!RxOWaR{L{-N^o%b5X*wg-q*p!{|*_ zbf1%>^vi6jF>x(_abWK)^B&jwwo6~QR`8(i9EwyY>(@z9r1T{YEZK6}C+ZuFdfhi! z?`-H?rr9|f<05UL@)D!8=(4xvV;%N}xMv9F)D77GTFu@b46N0Av?-*>euqDG?hGIr z1^YlzcER<0hr7=5h$X8@Wx?Q&cYEaa@tM>{CgO@xIUbN8$7Xv7Nvb7!)r~RN`3ZRM zJ4)t=48;SR1lTJuB*5Q((?nG#FuYeGGR3J)ck`L;=FawmT5Z9sd5$=8sm^!-=r1=o z=CNc5s)ojOHr*c;8 zSCDiibFqb#!rz#X={bVzZb&^96%qcC2{wr?m0KkOt(%jQ9&~J^pG$9!n-b(~QiN$V zYF)w803_K?grLF#1ER)wFYEX4kXB&Ohb=PGQRZ@hX^2N~LyEaQdU+-^CN&wFZYF61 zkOg-_qFzc`YyDz1%LOf7k)$(P)Uk4@4cUvw{5Jg`ekKJ)ZdT4A2%X{xRg)m}I8Fz- z59bp<5pv;Uyx`D4CuZZ~k8RkD6Ueb3sb{-KP`7+VcBe@Tr0Ry%%x@^QE0vI*mP;i9t zKI>?qBe}RoxlS7{HeOa)JOA*Bsq5M;Mfd|f5P;MVNn2*J?n>q6&^)yWbhXj_34&De zaf36Naa$(u(C&i(^Hgxy2S$N^--*B4_<-#r=ijFA)L^35^4p@D^9>p7tf@BYOz2Qz zp1BJLv?93v|3!R8j}5jcuHDfN`aET>!(|p-3br@z;kJKMYkQWX+S|pO_pWCUJEdry zSMxb(rZic824z|QU7qm3(CIU1&zP^punF5LvS1bExVPa)OS??da~`daH-6GA(NR;1 zO{2mgm)1<654)>za%Rj)1=mKZ5la%SJxH#noREdBC<+;LUq*;Qhk(3c0KQM?0Ggvr zn%!O`#<0hT2*$;tA#&c002n#~{NVvEgNSGqSZJj?B$NqWqL>sLY7i*I+)e}xaJ5UY z17jtzBS$mUG$n0#T*Whd@PT5BGmjx+`9DOxRajfy7xlXnLI@Dr;0_5^B)CgyaCZyt z?p~nK;7;*UtXOe(FKz{j6o;1Lv`7W0y)7T-`=9fior`smtChW;oju1KbNsTHe)BnN z)y)xm90v&Ar|smLJC`gt_9bJE{0>z_26?ck;($G0AtQqM7lgZ$DuFa$97swv@2$<( z$XQq(Mva1C9&bT}Ni(Qs(id1Cb}$K}N+h-k=SdQ=RI#41$irLSl{IB|0k*_8xaX^< zRZB7(oKb{zbguIPFkeCu>mYWdSA{m93MH1B|1+Bf>5 zXl3(-V}FQd+UDuP6tlq;RYvk3fe4LZA$1C>YJ;{V|4eh%sBr7Kq!weL5hl8wUDEoR zF+r?WLC*eUZPnbf$01}ksZ^q71V(9C+y!@Drkafn*M_DBI=$QRM2TA-N+j3&Q$!0_ zx6>xW8d@RR<0484BA+gDinyZQLMBmUKdrva9Q{=0PfNpEl1^y$G%meEAJvmv9` zKNACVBB~rYl685`o@vjAfj(JtSdoJU-Z{*Z6Jm$vPdr<+MT*a&XTY z{%r5-&!{#d+)C*VEE}m$YnQoqE1u# zdu#fHRA%RK#@Ga3&KSk$f45iX0#`M?yxOx7)r_tQUCX% zE?R;{U?D@nfj9+@kPrhAoo0}Kd+7RD5>#A5@rh$27>$fQE?33Q#OFqY51QdNZN zrvGwHA4-G4S4Eg|i;MGPjeWwd0cD4d5SdN_c zeAZekJ!v-f2yI8?9-H?Gdbi>~db&7#>(XYa`N4cu`}*~I!t>UG zxDeqLFs1y;c?fY}#(9{J(riU_|F7|V-9$k)ONBoTo{ljys59*4a=w{r!i!;+nFH~B z(>P8wf(JR`N>r`<&(q>f(UA9aBXYai9FD12)RhE)hC?a^HzM@_zp`}QXaWW&V?H`v zlz*=B^$1iRU=YXx*+4KfAe*ynS}8bo7=%Ywt_N!!K_CSj969&2Ct28rEP==9*-83u zHSR!v)++=n-_yj(#bF;Q2iSWq0L-F{EI9`XI&|vo(iwAx0bc^}5Q`!dp_&F3`@rZ) z|Aq#H=)%)bg|YxZf{P0CWk;mCZgKz?I9z!9YVn}cx7NA$YgaD@ODz6KO5mPy7 z>j469qdJONIq4|#A^^bO`t{d|q#s{Pe>lCI6qUs@mw8res7cE7?90!ek8QP+U`PdS zWOIWe>yPHY4g7r{#B+w9n+$C6HeSjHg;Ty|di~$Pcz{%=^gH()rV?}`TP^KZZgKnQla!S8nv}}22-q4$`eT4YB|RoZm=oH z;aZ3B(EiUy`|anr|AZABC0~3e^9^328zB^VBAGzM|6uLEb(#@e5wNR9>=7%EOh4V5 zJ>C)e!kxF#qeIgxA_GL;5COy|bazJ^uo((N05B!|IGM<(1)Lzqnb`>tgJZ&g4!j!d z%&htBd(0Vh)7BC$3Id8^)}GwAnYyW$#{@J6bewC0ZV^#Ro8uPg4@(ME5!YSAVQ=d~#xeXhg<|GU(1;Gs(1@QnX+({^Z%`WusV z?VtZ#+XmL&%69q5;geUpb38vQ%kF{~HIA!^p{I{^?{=!Q(Us@)W!De=BUSS~h|VBZ zhYcT0?4(%*NDh8}^I~RBJC8nBPS-PavwbO3Y-V9A;$b4VY;wh^kFXZu z7yI}6q3_u7(=)~ww|8iTn)|PhzS7j?u#J82c_J=t1jqWT=IQ&0KKT4>UWFfT$0C9y zSA{Z2zK&2iv%D0Kt{=h@;8B1h6m25@Az+-ExBToDIB@ELgs9eq_M|85O&(eAOeb%n zOw6l$Me}p=wvTiyJDmd?IF=NRxzS}YNeXjz6Ph&&F6N3+m?U6apz}wx?k!cg`hXA7 z|2wd8`u~d%9d{yxd2RMDoEWEjBZH3-;zU~a-p4eB(lAv5QS8!M43u7w(=)DmToomNY`FQtcUl_?}Z z>+;?PYJ^42_YP~!Lx&Ha{#wG{VsaC-4x0G;mRUbAYMk_@hh`0x*7dAWVxO#llk59p zacSSZcjC4T7W-o6ypEpDW5yZg+`7sW=MoJ0qRV!6;21{Ubth5~p8Gl_aN%lWiFbd^ z;o~RE?OY|gIy^Ecx}Re@&$v*uRZ}r4uUtQ_?fHR=`C;Q=rvG=fDc(y&{aM$%2q zVDa@{mFJ0-S9Nl+ijlBr^=f42EmimAPQOlji~^TGTo zf6&XM1GyzwbAFYr1{2oYL!GbHE!M zCoiwx3<4j;`7-Z(o5{l^yA_7Dl)!tL#tz7x3IEWSPJ109T-W^S~1!!EEhH?*Be@o3+hV^yz3H5C(pnj`@#v$Jh}&Erz>nBr_EewL$Ye&N_UZUz^JXp$6#S9-V~QF|PP1$Xww*MecO8+dGX zWJnZ$CPKUCh3Uupt0<@stT&v7_1d+dEF}~dE1(JT~X)4Kjr)f@74Y#l;YcX975u7dm!Y9{D zhf!L5QYhv6_g;Hr$dw#TJT*@SN!5qN7r{*vsCAy2hZ(8mCSCGT>u=*CVdNtb)=0zF zdSw3#Qya9gMC&5q_{ImJ5Kiy>cL(Xpv1U9Z4Y`@3Nn8Z1BB06CouVEQVlpz;G2INh zNpQ3;hLufKxZhF{pRj)Viio5LKEl+N!s(;s<84TH+SdwET0evc8)A1&hs0K95s{+l zdRcC4AT}fNg}LtdfDt>7bVtE=1%1_Ql#=z72-OK22Rs{w;LptbN|o;BP{QQK)H9qw zwg;QW1a7~X2yF`(GE>vmRq3?%bo6gJS2IzrVhn;*qUh~&!_0^%Z3}Dk%TS2PeXC2TkgKM4L4Lfu2s)_ zR^;3yr3B;5xly7s2EKY-#U{%Ls-i5n67?yBNHcnKw%H1LO7zyDclf~0|H?t{aPESh z>V1pc)R&T-TD&9p9Fd6=Fgk{dYA0yd#S!!l1g|zjkZVNs zR;2d?GEFGxG$rw7nJCv?GRQgZfzFgYOPYCM_IYu(31%syLJ}bI0EKl_;l-PtzdMhj zME^o!TH~9Grn>~acX_AEg$JhmTu)A)Y_*j!H!wet#AvBD;@jX=(*ylRp7#A@|Gv|@ zR?lw<7X8Zh->=l>Mjv1fKe5*rzMU)#fL7yeaq0?|5dGr`>K#YX;k+dn!jnftfJs&$*gC0*O$lrL(~aG1IEI1|4sgRlx2MQ_}tb0*8L`b(&>^d zbm3&Ua4w7|z>d)@Kg$3^;R%%}8+$3Gr@& zd%|#$u&Lat_!t&L>JlK!2Xhs~bS98}12c<>Y_H&Fi&z}Yl{V7z!S(!0G$9(+kX zJ&*4z{Qk}IrJx_lPur^`wh#@&MNw$R`((-R;c3+-gHQrdk7nieU+k(*epQr(T!7Ym zardDPC!7uhgFLy-&LbYcr5M^)XBaNzW37f2f3rH}6eVG9fhtmIWXcf<$P(ZE!KgR@Q3<3-dGwHPIsi^Tc}vo(MsZgj0l4ODZ1by>RbKN zp6?t%NC3Bn@C*wv?{3)iMq{#xXy1|EL29Ryd$56u>}p<-s`UgDwY7`;r-H2qjzFGC3OeE+{F-Gxpxiz92&!9r4ri&|ee%6W4eFf##58+O}?5~Ep>#r%{Ew_2*UMf*?W#b-C)I`OWN-_xY+Xh4lPHBu8knq@D;zltDcXC|Kh zkfcWv?p@A|$szg+69`;<_IRvsrG1epy}q%8ciXtm&YbDoq3zj zWM06xt$cCk3zl}&cn*ir%ouy4?q|ZbU*prHMspS=Suy&;rr*>YmLwwt>~9~hjtsE%*ye*2F9FOANJunSY6 zkcR79msfiideUHZNVMOV%Q;uZJ}O9d(jmx`Yu0 zmBFZ3|MT7ivJm6iE5ynRmS&jdUctnF10PwZ6fL3ud3ERu#x0mMu_2B<1#Uq{XA-LX zL&l7cZJu>E7Iqk`bcFv5iW^Q`^G_2R`s~$J$8NGMV{IMef}erhZSpREKiemL(W*OAiRyViPZ z%CoRvH*2%@jX^iJuZ5OHPyaP;-aDV8`nI`P$5rM?Y9&`mLNMrqw#Ay%OB~mA3NTc6*|`U z|NB$iS!8w9d-N|H9=~01xw+pc%wS8>{id{)gF8O?Y{n73tF67YuJ+|`9Xug z7c;fF65l!Jd4J41z#~ubtYrA4l#3qY{Y;*meuqvVgnWNrrksoK!BXj>Yqh*>Q&667 z4;LFRDP5+^GBQFGRG+is)B1I;O7zjzFrv?Q{_|VuiZ}oKbW*uz?nmDZl4oNlq-%v+ ziv3x*>%|vel@i{`eOaB$o2bmF(kg0Li0hqp9#%JOnjlwdyXy3s z)v)$bd)qrMH+Gj=GIOc&?iSUlxS(Moe%0Is@TqAyu(gIYZwovnh2wbRj1cxf-HB+j zqw%@lro0k>!>Un7D>yA;%Uem4&!$&1JY^19I+e6Y6>i1=!%cFEDNqlgJ`p5iSQ(j4 zTdw?NtPffOqzkruvAE{x8(hj*X!Vrzib;T3YsawDe@XQm{P!v;#`sJL+LDT(qC!X| zK9rl9s#k3VX>Q}>H-woflx9WzZjAi8hFF_;IDSt&WR~22HKZfYfx}Y((E$I5gDRov zAjsZl5)<0x3NpU?yAg&g{+h#I5!1!C+5Q8Y4nB)#e||yjR;%f9@c1EQcHL?iBY0~e zWz*5$wVz>Q+P)uLd(8fG-g<96wg0hlhLr3zr^@Y0qLE{s`2Efk)Cv7 z-U;Fb2c)UfZyB@D!X?GoNmZPF%zcZW$N_fEoPO7@>#1v3xzv4w7~}nj#Ui9vMtEY{ z7M&DIm^H&{#uiMqs~+{2jRfC_7rQqvzzskU0o3R1G*f5}MngwBs6jFp8cAzpyfqdq!>8V<)u&%xX5p7TFpNF9cZ3MdA4oHjna+(BZ_?ZhpOzXqn_G4elc- zlCrCx>}m*_3{$zxK9}+T*$~pczmV)ACf)+qf9rNb7L`78HVR+CeCs1^=ReA$EBWj z0n;(fAD7KMWD&s+_GRlXmZMa)`DVO}OeO`X{%*faT?7WlsL{0Pd|OR;Y0MpKes_c+ z!yx=0gJp6DBWL;4ItHF{jsX@#{TC^ETZYdTDvTK%%f{kBF6A~kMRlx=p{@=sA*N+WBs#OgtxAVy?n=GMl%*gb-#CHmhk1%6Z>~Q3sRcO@ z8`)yX;t&aNkXwdRX=&*qL3J_)&iG5`=`0AP%^sf4(^=?kYvG+bx_kcE4-upw@^ z%X0Z?3N18j;Yi?51Hv~ivnE8*e(>6qkgI1kVgeVn4<{sKGQVjq3w2e!TvIe$M90qkklCn??|2!?G3(S|#iQD_ z6MNXbvLR%JAW$qZ%?s@16y+>r*B6%4LvjT4D7}jTB(xdib)27Rd`be-xT16~I^z~7 zpczt1X%vTM0r(PV97rvV)b@lMQ>8iRpbB)QuzW*|1eVg$z~zv4v| z6q?ct23|Tm`!vsS=u{0HK@ei9F^tKy#2gTeFG%d3v?>6_EVKX~0z+GVtPAvS!08_8 z<)}Q5dZuAI~6{;?Lz&$ImFn2M+G5)e<>>6#`3-zj%d^9ad2ZZi7WDl=^8JnW{zCQ42PP@o(s z-V4o`Nv2D+41EX0;QKjqh;g{uky8N1f(}1sUSuFBo_vswqmYmbjN_^o=I3) z3!8u<2v8aZt)rB8AKKtMh`^BR^f1^74j9p*LY%>Iik!HIG`6&MG|^x@s5Bjbz>93r zeTTJ0;JCq9Vxr2s)@&MN?8y0V8#5&sl|YOXvl#+FQ_=tcD|e89w+N2ijYcs5qyoSf zUqYKn3=Bh8%+TnnuJQu7Xp)%Wax7HFzqzYRQ`XZCuD$S%#N1ZTj<=7tj|%<2eRa}J z5E+yb2|)ZxQ;Angn=T$bw9Z_gP)neWXCc;P=SQ?l9yDXkIIN32RBp<=UPgo-gavQs z%%G!I{(SXp=pXPhR!}ByOR`{_3PKJM zZQW$fZQc2izUj!RA{%=ED@qs03k*p#_u>Fn9757ioaE|ib6<(S4M)0Q_G&;GDo|d6 zWE}$2HBW!6W>1x;Ow(;v60k!#2h_-H(n6N>*=9viAOKemQl-i*Nx)(2fU%1^eP0j3 z!h(lm6#@q#ZP&{p1;<#S7znCUR}&8?$JayJLpU*T435DrrW^*jJI9=M2n3-#VpeUF! zzdYyrJxB0%T!I{cv%}LP1c0bQP_eh9$Ngdm9{?5mL+Ph(BLe)O)V$7PiX)~tiZH9> zc<}jkPJ?IA@qD=HcKd#rho!I|c1=W-#^11|{2K%B2ZpRYV%|gw1tYJEYsRADhEY)q zgDXF4Yl}sr$-<|lL4l0hIU3AKu3xSVymZ9q7YkpaU%E58F)g?ipGKnOen;Sj0`_&_fdQRdG5^o#_4v;l(l5kzj#+WX)T zHt9ewkXM92wu2_1_G}IExIO?H1WZ{1k#t{lV58su;>K}oxngmH?TS7%)?Z4oe#365BK zbZv(=tdxIp8l+G!&=@SyaE5QvDxfcEd;_nh`7>A{LGH`=;}tbfXiQoe?4RPi?Uw7g zC^Y(cx*(WfuG>?Sa`j>Nv8BS&j5MOnSnJ%*k=mQr=w=eb)=T}Zxk)AA9q653v<>rj z(e*c!9sLc{C)Yjs-Rojv2DS;K&mR7f5cd}0v)Xa(R~_GR<*y&aU6Q!g8m_vJV(||` zjnc1;NUoYJb;myLB{UWO6BKY3ru;py-M-}7Iek_#?-}4HK;^bY}y85qg z;hXMx-*oP>P#Y&Y#q0P7+P(kj&`7jCWLee@5*2rFI0#{<#p_#d+pJ%^T;FQuy7{+M zJ9$YeHeu#oQ>sY#juo3MNBVJI&(1DZ_r(HyjM(&CpuJMw%cJkPK2>d5yk8?(r5w8! z0%ycRd{9HU!6J`UPDj%as^JoYlB9)Vy|z3BeKlv;tGLK*Sq_5EjMzx#rxcHLlDRiv z@g!CzWU{Zbg=blK>eFT)CCy%WFDa#l{PJ|aEVumAqu?A{*q87!-J@jy&pxF^IpR;& zkkUtioZx&3O%NjBxvId4o#wFI!;0k*Zu zSPkg4X%Q5<2gdvnD3D(8qWzrp0D0~{?_rnhm_%b}WYj|cJT1@Q)iKBIOIHc*MY;#k zqq*f)M`GURUK4HG34@z=j;p{_%*e5b|MYS!DkrW7n=N$POtb?=98?UMa9NgIc*w&B zWb*U1y?^wb=mwFw3L#QqCMWZVYEOAZ?QYEq1Vt=Vl2)-n-89i=eD_6%gO%#eRza(L zakfV_!wg{a{DmUmNI;G;&E1PLdZ@4HC~-(N4fUaMv(sKWi7a6Qo9=}w(BIExC#W+9 z(Kw_x+CnAYUSt`&zR1z#A^7WF+W3Abz41T6vVSU4MxOs=ifzmYpUabK&S!Dc7(B1p zmttGJ`pxGCn^)0;322$7-Aj1$IuTkP{QPe!dk543utKLzRNQquv&LJxDImc49JrnC z%(+{@*|D+~8-16K1sJ;@RM>wz(hPT_uJK>6@)(pnz4_j|HFIUdZCLC<#=%WHX6?wD zR-g2~$Zh<+>@Ag}!`WP-ib;^kL(|-xwLy=#wTwqibPucD{t#@QoQv zeJK|r^W>ou4f`j&oRS-F{?T?b=0OcrEYzo%KfqKkMx9jFqO0NLn`-B0Zf8< z?v#8zvYPZR&6frxC0(DNxxJHOlD#93FuBJ~hK9&@+X~oHJb1JsC}PmA;E_Ql84ZOm z)eq@vpahgb=ld2E199kO^&vAOn^+>!5%k!re}RtjmIZA;jJHy1)1+RFFiKl9FE5>G zG-*kasOV1))e&!2vb0mce~wC(+k1BX;u!oh<*aF9=U1m+cI|`~M1B36LF^hyNeiaE zgLe_9Elt`6lqB%eoM|Sp0$(0t@809Wl?v$+3NJfSr&l?}?(8)WP=enKWB0`JsKOqF zcrED;=w7PNOaI4lJ0t8KJfDPB)wEqTEEkx;T2wl{2{MYaxO%~$EtNR1Z{4$&)>O!y zqe!l`yi*)KR-M`1MsgHVOZ%wH@(}5V7{LF+vhHU(^2*f7wHGdzTDi3(`nZI2)Jf|? z(d#qCs1=NBEq_`}<9;+K%-9E4m5+~e5kZ*W>ou!^8dRT5I^44|5}*^g+qwlvfvrmr zO1;D){Zig*+Der;M~)bUU+jaW8nbcaU^hM0c)D_V1|94rZE5T=ewV{aI8r!vFPLHX z-fzssx{>!pTab!LQ5S=GC|lp3o2;U-7?`ciFpXeR;`@_{ozQDgocR6|4djGzZf;Nz6p6_o8M{eMZ&n-`+l4!Dc)~NSeKl|>PO#T zsBsJD8>px1ox|!L)`Lz*KC#2xU}#25KHzuOYkR4{d$wSQYqyp=I~ba`DeK#60#7-a zaVm_Xo%Yv9M}GYRV&pcqTMkI4IhhihNotP8eRclo4VhYx(X$PHHTZyXROssc$*sQM z2js81*EgL-_gTPzDpU@uK-yBpKSezZjm>On5hjCPg%%5h-}e|}Z$&49a|KbjGG=Nx zm@B3*rXb~yi2lbs)5rvJ-JyR(t3~hs{sl5|_#gJ8!GL zmX0fHNEjgxBjkok2=3LFwr>1gOsNp8^Ur+F+5bi0jMbXNFyoK4nBRB9(~+n}b^42A z>%-9TbHaw;$fevpTR$1ta@wWvVC%vxT!NRMzsEI+weE*j?BnhFeD>8%1Nc9zYPJA7B zYOV)eh>=#DsscQYnG%1&d1xgLt?J=qK}tzbhHNVfC=x?Q%q52335rEcMQPtndmN&s z^p=bk8X4)uNKToKlw~@``|h_97>(-849pQqX5#%P%G#=1&_#1t_);Q4%mizm!v^3} zf5(qp)||sn)K`lwm?fa}{rWGirj3R4K?4pd`=6&!t`itK|x_ovK}b>Lzg>e@v6 z(r7$QElNiIu_758(Vo;0k8#-cLT?*9l_dFf(Ux6S@B>!9P#Gqv(8qIT1tGr4hq^!b z(~a#{Nq-%&@`r_X7gmYvB{J|wyy?#|rPX)tBNHdN)}5@6m~&kIB+VxIo`tB~bDqX2 zktOtpqll7`v+85Eji1Vm&%_GH=V#6bhyFTTmYSb&e6Drnw!%&cbKc~uDnM!Z9@d3o zjf#EPL+Bm)G1ZOwOWZS=XMXeC2yNn6n=e(W)vF(4Gr1p%h^#N>%tyS669HZgnbGeN z$`~m%G@4|{JxFC#2W;Y4`v{6>)`z7PT;9aqk(;$PD*v5kAxGN^Uop0~Qg*XJlOCNs zw2Gq?)^G}_o?az4aruY&AzK=B4`q$?!$sXAl1+2X5F|BR)fvvPAcV#S2IWCZsOl&y zp?Q$qvQGrKIWoNg1#0Fv`IlJ`}q&7CS;vn`?;mm?!``LL894g zP@7`Ks5X-f4a^tZ~JunmCopaJjRReW@p#XA5(WK8#`QG+`8LXo6#f@ zoAAktC(UTxc51HWkS@O(elU>d7d1m14et&SaA_8zC0XF>rO58j=F#*ZYbD5?5)d#w zgSHyU&(*q6UU1}n)^ap35XR}eU2ngeJToGD;h<%q=^4{~d->uizt>=$w#$@lJmJ{-M`8=H1JfQ_T zum4SeX=;gPEFWXGli23$7|J`BWSi4O@fzwXd^CR}MjpNqXergHbQe#vCl z(2f0MEUWbU{bp|@!N6k#NTdBfJ^aq*AK-PtGowH{_t;F3C}{WXHJv@?+uiGH#xotm zs$@57oz2PF$70OaqrRsD{(`Te0?tfEnoOpH+GDIw4AUW$CRU@GUpKp~evO|s)|B6R z{U=^!T`*9gT+~Y8OCX~B>BzIW%j{RrN6pZd#9^DmYw0gUwEf16?HZ3or%CST{Vl8w z>#Vzu+2E^|vQrW=u3EmLtx9ZtkQZ_!1}`@d9saf~^Ukn0Q9KK+H2!Tba{57JH(A57 zgwv@|=~faPz5MXPm%LG)Y=TH|s1^ZP3F#bOW)Sy(5$vlZO&19( z=;;|IG`!VKKalB+cXceiN4}*cfxy=QFa)5P$!(Y5yRn}PD;f$wHO`!LD3vWTQAgtu zHJ7rgQw9ZbHSyO%!@Bx=sE7I=U!}S&*F4r0Rz~1-6BxVtWeEU@GzJ;~wpL+T^>(%) z@3K)RE>QajQI{Sww!*0?ZQFNGg_kix{_920e`HYwzv)N@-B)HY&IGvE;yg-`l>9*Z z8-i858_yI$r+Isy;Gf*z0}WSj#~-Xi&+iqj)m^x4nK%B@cW=r2U^@_&$#8Ph`N8QC z{MS(e&&r?d41(9E`-q4Ly?~UM1ijO2TklG$=g8BtiEtIUwvze@?o89q%F$vMJjr=w z8?TJ>Leb?bvhmB_UHPL|-+L)cu49Fem>{2o4~OnJU!5v6|u-2;pHKZvd(Y$)b5Ptnd;U9I^z^g~QRmhR%!z+Sm`N_PmUz4VVE$>D2YqcoificqCsjXF`z!yuu zjJCIulX=3aPFq2K6r=k`N2Fz7k^6_s`R4vrmzA}k$&NoaJ8c%U%!BUzQhg~VRQFSD zk6uZ$&Yi$>aL>bM)(@WYFHo9)yh8D}{`bVwU6TI(TZ)AQj@2Yyf{I0xpYmv9)(yWt?Y9nF%0AqXCqxv zk{YSCft35@gdKN3i}OftO&Rh9?wlHOz2fXoSnT#k3l2VNcJ!R(yu@faUk>!IJ z;&?K(0|swcj8W=r?CBv zob+Rf&qDFNUnb497$fz8)_;|pR5gm8q+X^)1xP`y*r2Dz;o5_TUuqvR&EnsRJ+OOd zwc&O0?>f?#yYTV+nog&_M_9P`(^H9rBy@CTZ|?ltr<|7l_U0 zEm+TaQ1DC2`Buj5RLCja!k^8#X8uq8V?o$0-f|~gmgJR$aU5A;_N2Q22_l)} z%K}L?z^#1VDKDgR-_ZHDk@hjJS&P#?T>q6!jKZg2>ydmOx^xg5Pl_rh+<43rcasnI zUmP{&Odz4Md+@^`HdLh)oKlZbmd|u#;}`u~TKsRYHo5$>O88^VAe(f=8EdkBmh&AV z%(s~$N#w<9pV+VOvI9$R2y@apO`W3HKjx7FLN54lsG)E15I&Mbwve|4f@B8=jGFO> z-Ae%$to))UGSRjloZBRFoU29)o;-OX7{lKc0})iV?}sz@P4hGrSRwNFcjl!mBzF#b zW8{@CduBS-`Tk~x{3c+(*=BOSNp1d6p}$oms!-$Q8Q`~=`68#$I8%{*T4;on5>!l0 zm)f3eYR0I;=a+bCY8_tzZX&PbV0AxXwd^f?TOYJ0Yn*f(-6?KY9dp@;D z&4zYLWdX5KhQ1itEgFaH+%JGqOaiJgs+VAn7~dp~3WkrK4m@O2WQZ|#0V1|YtjhaD zOe7ml+a)7drwrJF0{Fg}a9jo;?KWf+52ojZro1o7qJ2z!JUul4Cl|U4YG}4^2H&aU zo(#coK=rOk0U#sy_Ebj8vVD#z0bPB;17a_r`xG$J8y#QTq!vKP_Ip+;lSJeHOzYv& zc7*}`1@OCRwJyQ$4u2&7gm3-u{5B`~XXCV;CX@HHl}Y2Ii9?3ovE*OCYyHorKjxv$f z(}L!}LE%B6Zp}Kp8*lQ6Sl(fvIq$ETglUwN4=cV=1nMHp*@j`Ddb-OD<**b|*k+?Z zSe-W<+uf%^7gYqr#KFWalz?%HRTEOumf8}W5RqYvlsp7ashLU+v8=BL8QVleCP2ub zDmO?dw-lWmC|NHFysl5G2O*}!A5+%DCp9Mm?C=3SVhkij5MZ4IB7IVZAaO7#<+vy=CrqRXBKEDg4e#k+7DmScCGo` z(LgFn>nslESqaB~KIXUYG=8Q}y=l0W>5!V=zn!#LZYtm#KfFoU;kN$roo`e_h1@8& zV!%kQ3NmEMqMt=ho(FCklaWA!R=#pTRP_Tw-w^;+xXLWhJyqE-3f>)1- zOXs%Tk9rPnW8Q4ZEJl|ROy@3ug+&Fnf|iwkIR(XMRIw<&FeYojO#~?U8K6 zq#Y@}EwL?!$S8rLJTNW89i*GUhSjcwGYZQC#E>DAt6hfW)`y|NXn;Y321NmsaN6Lo zSkfswZWz)yRnAuN4!(y+YBZ`0lJkKBEh;qd{AqoVGI0WsM1r)#ma#;ml!1HpNK!@0 z>5A&=RGfhFCNW}Ep#L6>6)b>ZgXZNShoW$dH020@5+R&4YI#=}mx80bU{HjJKPXBY zHlzZ<#X}IW9>7f!Wu=lTlh#P&d|;`%YP<3 zIhkiaFWDuS>^*;ny@Pzc%sfBgI9_QvIDUKWsUCRP@;3a9^uMQGVIv~^hlh;hWk2!@ z>h9Z44Zi7j-Z+vvo+bU&^WR|OZ>QBBN5^1ds_uJJ>1D#QD~=C*ik}R)tlF#3T=YuE zfO%j}?Tj(1vF4I<$qzBF-t`*1htYr*3^LS5K6#;`cnfRF?dcCm2(9ERQ-`tz9+Qe4 z)#MuMw6UM-QIEoe#W;f8a(o?iu&VxI18OhGVGTGhk2@f zO-Q<8lvZ+Lo(Oi#lMOtng**Id)vPE^(dsA#R&1cu)uWullT(BNfr6@IFhYF97wP;VIVM8e%Ci+-KLG)2H83aWkuYTJ??~ITo4p(deu}T}NF@wcklj*^kwQf9)nFwQ!%nML2tph)v4|nJ;z3J;J>C-R~+xT8CQe zdjLm0Y0*04Gu^1Dt*T{(+#|lYIv-%xDK@?H1#SAUIeh}}ed3L<8#})|ZzJsVW|+tE zd!w#!D`#~g^_f#-?TYP#7I3IXKU)7J*}CCq!ldFCI9oqe6*75Z-Xu^`;~R7N{DH~1 z>Z-hg&uXaWu1v$PA%*4T3#Sz`Em6I^A@MZ^1krRi$D<3_0aaDRi-kjAR=!5bfV|h3 zbJ`B?g@yOoaTir>Y|{6r)YrFrX2Q{lLSC=06UwAU{F5K^awLi@N7AS!2I<(aInPVpb zU#0yjV`?f}6z74JQpp6my3gE5QS!}6`(TY<=m$|dM@!e5jd|jy?=Q2=4M_Y4d94Q+ z&P<-TX$eR92|n9YX8GO0EaoQN@%aXrbyH$vPR2aFo{?&u_z3?CS`~?jCAoSX`EH+F zLQm`I_1@22hn?*Lrg!sN#J`pq+#A=vZ+E0<25kKz9v+qK=VKT%mb-635!}%^bo49s zW>fS~Mxm{f>uW&IuQS`*h`PVGR=?}+6sQ5hKR)&&XG^2Rqv2y;P6(y4kFGy4);;x# zcHMaYE&hV01U#k=`Zy<0*g!+Ptii7 zZZgactAPbB_RRqWpM_WF5a+3O%Jt3O^3%j})y-Spw)nPlN>lS3?F%EEj@*Pj2Rib4>=J#xNmciKn4*sRn1eg^ojfNEw@;0L=qsUzuDCx@ zj4MSvxK2Z(ZiFKlM%F13kX%+py;GSoa$yGDQZ>0U9&E;DNT5f?6Z8nPT8Is-QVXDJ z+CW8d*wnOXiVMsohqx6kK?_1=#*m?nfr`UO$Z9H$AgZctS+i2e6hYRJ@g)|Bf=)y{ z7#3#|h+LWbfJy*$ry%4q2BXjd95)~X9f8-T#extG7LwvF`({UVOMql702^eEKox^DjuJIKSrUVk;OgAh6KrePnj3C;95-4w zKBK6FhkiHcEbGms?3JptxUtnzrM}$hzv5q?%v^HjSI@hwez#Td{M_4G6*jY|S*YPM zEneC0o2R!AF&)ULU-nuxTqnj+&Bh8F_q(NLVfX8_iPyL;4KWqqFal`S<4K~)78(aa zEcM7;F>8OoOXe=E?l_tN0Nleh*3>G)Vn$&pcDK?gh5>o-vbt!O^ z&-9=rR@zc?Cbxv3=twZ=t4v3)kbF{EkOIM}@{a0?B_t5u8A?6t0cQ`zQx3BbBV@2cy)wdhUonek_W$+X>Q=;$vn^y9 zB#0oCJn1Mh0>G<~ol(;dkO;n{X!AA@3t>P2u8i8SBV82nggc<_0RH>caf-Wwj1h0x z>->}!4l)MpqeBY`0I>HtkIGeS8IjRJM<5avgE^|L?(R(|xqZwPncD(f06H0+N2bs4 zyi++llWud063e`b zGEXTENEBJ=l}$6v&f&^uoNZE7LBz~MY{3-4imkgH?Dw;jdrzO+TA)tE6ZO^2yd zX?aB!BCVJ)#E{d%0B%^x*fKOF!DMu>!K$Spy#OP!2B4#yB?KmWNP;rfl%`>EcZP~7 zLNIkYT=oT~w34lmn(msM!UF3VvOCN+fRSy~?JarI#u6+x762jD>*}hwpf9hjTqE7c zmJsR)Fa$3~QUI8DWDJ2UA(O|7rV_P>A|4}*B-?J9@G9GiSOA8=vca!0y8*Lu%*d2C z+-CE#dD)j8=byW~+FFBhkclwKwVj{tGrS}m7xwm|*#Hed06wdwc+L_8YGR15S1a|N zt^#TT?=i2yN*(+3hfRvT&$IFzxhf*OwsFiHtk9)tXnC zZ5SaTn=|L%Y%fpJhcYd;=FX=w(4{^xHewIgCsLnm_YZTLwyLJnqw_9fxq)q7bjt1| zrs$MJ3_DwF4i&6=6oe%Ms8h#k`+$7!SARi@RkLGR)DXvvn_wEJRke03l3b*CNbCe6 zTP*~vez7QZn(SHAGRUxVqE685EQ?x+NISS;JQ@a|)G_1gq)ZJ3K$EM`O0IrRV5ET} znSPPDLcxvjBq1nSaWHy}v4oGx~&H{wTEZGDqH9cz@~smgOQ zCE0$nWXq!H@Edpmj4T1RFfxIqSng`mS!ce{<{)feSjJeBeFODb)gO|$e<2KvK_Ib8 zJAS)h`g=#;G?S}F{o9Q!KZ(2ySE4>x<1w>b!cqbreARl-9SXX}!VAtCdFJ2%u-@!q zARbP+^_i$(O?WAVhpA!^YzQ&Mhm%Xd)jR~`(AJ2c=fgO(MMH#-W{u? zgT1fi>d~)_yz8x&>-jJ7^9iEe57$0dzQmlzs9#Ud)9yhNSOB@l9#f`!VR@cT{fa-&g{#cuUfQRJSn=aI+P!)eF0G2Pb|(%#kB5Ed3l-2G$$M!Ij=B89dw_yREpr0t$}{#sXj zGi0q8OMpS{%kDKwe5T7% zK!=(6rVo7=AIQC*+sv8aL@%Ji%5aUU9W6picYrI#v{d6Z7b>+FGr1Oi{C*QO^| zmv^$y5NXRZW!!>_uxBer_wz&%Yk$QUr6VpZ~RWXLh-|D>kIQCuv^v=>~URa;q<=~w7 zvw4>vV;SjUhm{Y9iyMAD^h49)t?$b5h>RFNH=~+o&(V)Y@%6erzuYQh-4_XQL>Xpv zW;biU*5L3OHXz9A6wao}tbUDVbrd>S(RRg@;^9mVtUc|QU~yY=up~vBh_M-k%gdfo zw`1(gHJ~$7UMi!7v7J(v<5-v9v@SH#qh)!`tlZ+b>+}ElK9xd6$Pp9dC;ZMi(#rxWFVU|kwViAJx zy(dT0XnBu!K)kMtX=g?q2DS8VQmUMf?ol!R9!3DnTD=wGJ+o!()bA(pX7sSj8O%~4 zK6BF74JC?7#wHYQJAIfJLbHt4Wm-hl6C~-fR@2oMR(@8|bO5|wjbW7d^4KbqCk4an zR}+_C3MQ+oUB~W5MLA-%CKTr{E#^y`2Yhxr=Su4AT(enY zeTtlo-vL(RP4s4XhH=;Qd~)MH?M{vR9S;em z2>;h3UfvsflN|xnMx~YzE1P7hG;Jw!m5ZY1_Tg-CKaXy6uD~=-F(>^<{@4;)8+%_H z8<}Ka&FaL7oz^Z;7=#lTg(3`aWak(mkq$wq)>|y+cr(xnQgT*{&uS+2X8L{ z{X2bPHwR*00}gWhX@U#m82tYo1EwCURV9gYdqFxf2@FMcGL$F&o(H?GydCG zxX~N>*Z7zK%vzZmx=u^ktduPXb^HuoarPN=xmK+%8BOMNb7~25xx(SrZn*z)TdVKX zF5K-VG}oFr|23?^QW$gBu|QG~kH-Tf!QcPEV8rKt6`WE{1hEDNzgjgA#I-Z{1FVU8 z92IbXk{12CrdI5m&7#v*u=D(%!2}9|ZV>5V2WsMx0!4!NPI!mYrAARuKw!6ctO8|b z08eLUQvd)!oge@J0002tcK`sn00003+b^shOaF5JZU1Edc>h)ZU;k7k*EeN^`{gd();IzaW-$dueh|pf{8xwk%v2Y^FTFv zMsaocgm#0x{h4id>*2huHw#yL<3_h}R+YReru1TTDoUrr5?ZmsFDs$VAWV&WFzRXB zevF}P3R76HE@SM0^v)>IA@5V0XTAI&ECsT$BFlBZEL4JWj+YY>N0JR7 zd9?+d$;!5)a50vE06SNn3=ts`Ai;uI1j53SA#!c9HF4LwQcTqjgfb z7kD!h>?WJ$#Z?Jx-a)kPtk7eq(u_vj_;P>@iDLFUeg%FUHm+qh0to}Ys^ZI?P81Wx1XTseX;Y3jYJ;X5+S`BKx0pE^*7*jf!s6PRd6RC= zTBiEiylK>Se0oA9PwUY-Og(ohS+rJ;ak3nAO1MbE8RUjp|IO7bEYwS#)2;tWM*f6|Qz@M;Zhg6>JX*^I;UIZj-~e7Mj%iFF0C0oF#!qpK31Gh! zQ*Dyy(p6#}D=k4VM;=v7jp{^g%!mnm@+1m?)1P@Z=h7uxd@*0I80p#S0yB?Ke*=@A zDAiDE>TYP^y6Xv+o2Rz?C@$^T9?gpno8@p`o?C5`=c;mcREt$*JH8b#meVmzu5HDu z%~S;$2JvJ^R@Zrh&goin!mJwarfpVUpF&N}z0Rw7hJ~tnuc~B}>2eJeifG!|TAe6N zCs~A}!sN7Bkr^v1MG_?lLy<(9ucO%3QtXm0Cg{Y@hF3YrATz)a1IsojZVIqnlr<%w zD_}r@MbcG+f*gJ<~p6BWZ+eZOlS#dXRiudB2HilAhx9k*un-D19}GP z<=Do(O&ly4*^Xt)GLlg!+kh=aCaEhXrbnveU{ zmV1nUNF$f6&owF+JMyGDQN$fH+BT>ddfU(Z*GHO$t@|ZfpWP`tRyHBto!c~KixG?d z=Ha^La6M_;zvK9xpV$}OCtPpuvmesH(X1g!?E9A&VbN?7r&85z@KUwRJ#Q=AKQcH^ z+NQ62Eyc?pIW0zZ&~xsV@QY1_{Fji=ci3S)fLjcHe3}9^FYslY|h2t_Z$O;j*b&Ca9wam!ZVr*Hm97?=d zwHUKlHb`1!t-IIrQ@;9S2MMFa5;6wt6)b~-rpK5E5nCq2!cQ_t0?QG?mW>StArVQv z{B?H_fB^y^Dzd0Pkci0Na=%HwsmuO!*Msid(sVyAg-u2Q-s=@+ObbB(c)eaD#soqG z@a_rVlEpI{wlQY2s@T!;csxRE1K|apVh|_Yi5IIovaQQnbpCetU;h%#_wU79FJsNM z-D%@Yd~TMHit|W_2dcdR~fLftrOz z6`5J%mnUoSjKR6gpah}D7}Q>(rW8q33}}nD-uDP+Ai(M0`+%0_$Z3-0*??96c1M1 zid~G%=Epcp^Lo{*-)Ftv|DE^wAMQRpN?ym9H1#37f3u#0^ErR@wH1d4jthqK^WtbT zHkWIiZXne2gHzke_ow;0T|<=`Mwn!xb`+2od8^m;`#9M{vtdtMIVIBa`xQ5C?yR=q zmd`Uzyn-nGqlNN@8?`MJx@!bb8cy2?If}#uzXPLLp&CrH$1Ndd2V=93iWQ zr$e4FDEL{SXANO8d4crv6V#>Qz<9aBRS8b1cBxPBDM1)b*!wVNakC%9qK>txe2G6donhU* z2nAD9jh6z)43pgi%`*vflLdy^8K@wfHJd>;5J?1qHUTKR3uH#!238LX1{xc&T7*ym zAa^mssvMaNk($6NC%GdpS`;!C%}9i58#^P-qsJ6)g2fTY(*Z15`0~x z4e`RWFzv!7`4BP@*o`So;L4B5=?aF-b%0&`a;~^A!>QI>XxZ2D?a^41H2@Y`hyqbnO?r00BX6Pe&`Py^Ge9Y`$#f9hG~0ft zpw{ONXWMS|#^!zEy2RW5{So#sK?nwSg?2APCP`E^8c<@ot*n5cptGX2X|Z~I1E8&L z^bp&X9ChsKoo-wWlT9s(EbY65OA6yQqap4p#aEWG<7&rCy6oA;81wSxL{+&)o*rvY zPXwLrQ765_2O&f#2?y%2tO|P7G84>|^LO=s``Y2VseyBuAN4Hb8uJbYa2&`642(Ak zIc$%4*=w_>P?8O-Ap57c(ql_HESTXfQ(xph-e~D^ttBiDAz_NF08js1_EqKO@(Ff! z3WRH#?cUgcFR8Rf-l*%f7Sw(E=!$3DwV^XP5!y@FPnt6|-_M%%>rI6l0@MoC8Yd&Y4_(`E# z-wGa0?cyOqAc(Zv%2Ne$1h?uXa=(k4W2<3z)@`UaDMfBIddZ0CYO5h>~SEJH?qv zaisTh$Ul#>YxKY7@=|od-lcaZZP2%3AMYcg|GRgKS$o33e6;-|+ptcm|9r zQ^6oWB6cbTF6Bjb{m<23?>bS;t~6d_NR|}jO7peULLw8)TGRw%GYN~`DFb9_?|i5! zr)}jc1e`Y6fWZqXG^NNs5AHky051-G~6Yo44b;nqhngJ)7}{4-8)w1KY9rUMpwGR4L*PTM<^R z;9ZP`$!gMp(TkoxWI8Q$PZLZlnk`=HOvsAIi=2f-j1Wr-t*(r#XD}G$9*by*AhuNi znk&ZIf${@D*DIzzCLGZLv>#3~TGcpXZ85atsxlj+XRG*Wtls0oHfpe`Vwjrph!R3n zRa|{{|69(kfBrq^C;Q`|rRMZoZZD@FFR?O=N~JRml{sUey_`#g+sVHPUb{K>Ztb3p zhGB(G=)nPI5U#L0r>`7~_|Op(tvdnRpo7Il3eT$ibM3q&?$VejKfcCZkD` zXabO1aRC@>}m%;|UT}S)dR@+CnZAB_@%wR0$QJN*ofiS_GcJ0=eY@ zT&y^zYCxI=fVxUMiC_WPHlWJ3NOCH6g#493Y3&3cY`Nng zV*tJkj>V-w0Qi%=-Z?0K8i4Mm1+c7rot0`d*-D}11s)n&qN*6JxwDn2YMI`csdin` zl>h8I^rs#sryKuXR@2D(X15m`|ClDj<@V`oqj<}6L!O@OJ=+U5LF&mt<|DrGT2#7D zOvj>25#?ctVa}+jY$MA-u*|sUW*jOaQYf|P?P)v`BNG@vkwXkLG7}-ciN>M??p~;Z zu!qSADP$4G15^MzYhkbfOY{;OKogdUOTZm$E$}k$%!G{Sl#;khcnCoXuzXLvsSAa#)?TJvonE(KatC*DmP#(`GFiXWHxfnKxk;lFUv~KI%8G#9A%buGb9ghzc|MCD|tj;ANc-x``^pQ zJn(tg=(|1m!=ZCYMb8WKpaJB(1-D3JC`oPsWsj=@chM_@Aew<1l2zs$$$${_60R0r zt6AOZZ7>MRHyKn>7B7EBX&%T$tSo6f=kQ7955 zVOU?T$m}L*fEqA_MW-z1x=6ih!Cr*}w`V~{DIi>^F=mLyHlSE)po3_T5lEMAh`=ZW zi*7eRr~PmLndi_I@gK*(t;}uTjQk8>nAOR124=Mo%W9e;NrbgamVCyue}ow|OeS?y zDxGD1pVy0brYEH5#7J}}Ita=Bk?-Q4kbF{Y5OvE|!Qq8QK4c}z8310)jWNbS27s=Z z8+A;BIRO5pkiVnL1yj#4M`ltbHiW<<6j4>hX~R{2Kws?Z>x4)1;9h6WW@gW}f$2;L zH*X9zdbG`uea7ikt2SAEvm%>F4@LW8-EYtLOqa@OZ~Lf8vrP^eEJ|b$PO@L*IG5!75+q6tvi!VX%2I)K5<6cov>Bai8>}RaQDDo3WHz4kr}0 zfenfo2$k$wdRg+Ikr$O9loh&)ZsNk#j0hS@xPf#tCAkQ*0ke2WicV=kBur=|IZO&Q z7b_r;f@}>>5F^_HgdMc6Q1zpCCmjvA8Bl5cFa#;G-xxONY$w$Pc^QjbykXe$;^#zc z0U!XR6dyV>fd~;hQg18di{3c6~#E^*1z!WK6(aCC~0vwIE)_<;kS zo7Fl-Apq!lvyP^OAPO)h(Ox?%hJ9}RXy$5;YFok!EeQquOyNI z358m-Bvz=ZwaggS3}H8P%Qc7CxS^N02&}PFOE_6UEs!hjV#u%~M}m-rm17WzS4FvhU$<2C5o*kz#@=sY{>|9Y#V^yOwSXRumFH~ z^6{oUwdyE2Fhk9s2&aiHqXkY_SPo=ihyWPy>hUYDWHfFcV2ZuE=xmG7F++LsU27BT zBSM`?i7W&{kJYFCx>F2CkP7jk4GF#=A&_R1j%NxS06v`czNJ9`@E>!F?CB^Iz_%~` zC@|-oqpE81I-S`eJe~$#P}~JMoko{+|D1cin=Xt4GL6LB~d=MQ)Q|1zx%zPc>3h3 z+1!R^QNMV(F-`;jRo_3UWu3lv|N|SS7k_M`)Huw^+V2*GTv!i&3m(^Z*T3k{VeC_%JT?kWfhL9iefnlS&L5O zG;YFBgQstK!H|n_JXVHf#uQ9VG&`ORXI*+RnHht$cCOp4+BJ0}Qzc?xfsQj?E0_pp zn_MPaOP5HtWi`aHKy8>b87^rpnsRv0pfI2<#kPeUUSL=FH9T>*eVSPpi90RUkD)y1wlT*bLW_AsmdYF#SuNV7pdHArleYf{HkIbe@lM37#lo*I&Nbb8_*Z#}L zXIts@;;~X?Z#`QbCt~%U&3t$-nUaV4$t}S0*+i1VSIHN5FCX4a*FRiXnW{Atnm6?P zbZ<*{qZJfSv~xDPrcGXpn;&3Y;s;$ZML(RmM+uJ#I!im3gBT=x0qFtYyk% zBtu1vI>P#5&y0&!eeLC@>Osr8FP=C+uJ=1RM&&%cC&j$pd3t~mW4n4NRHV8T~ zFx@r1OiT$$nhb>mr-j>CzpTbIwX5=Q4&DNm^A^JofQU z&DfuuPQJM`mO1v?Grs5yJHGM7TX#H_K6O);V#G9r$y4087(HLd&Jfv_KZ=il0dK#m z)LIN}hP{=u+GKPbohHQBjee)a?1rb683qq6Z(+Bag}pROoziG6hLrPh-xeXGmI^vS z(0d4#Cfsi&Envn%0gW2IC3NV=buPVL{_Cntmj&mp1R^4TM=Khda<$Z{!Bt!kkc6ac>LZDRub2Y~Q8#E__+F`*=C5Hr%(cr0=IoR1EB@0pe!x3xQ6W-h?8<_ ztg6{PDrl=pMc5FRYH*uyXRo`22O|d(O#!!3u?JI90W1&!J;79a!-`AED?-)=qJWrU zWW-vYWd+8d2A0;)rJ*!xmuXqXAdqDngAp-6u5wzBr}79ZWAqcQvW*o65`v2Vqn3@d ziQvsPbC>q86j<*_R$ycRu#f=nga8!F2&CQrny>0{`XjsUB>}KsWDsTrgt0+FBhUqT zqT{naUqR*WKr?w)>;)b8y$-!_v)YnpnO1}6iv>X(vR<3IyPg369t?J-r8!Xme8XU$ zrU(c?0q-%f0#+Da?`~yhFA4XPbhcOB&q6N7T5?IgCY!=fKV7ihsH?QjhMe+J=x1GiziNb!K*ks zG=TjAGC%}i6bQ@kCM;|##ANreTbMPnjM$!#KrtX2OGwV_t7~K|EEx#3>dUu%m!}pi zGaFw6;S4RdmKeellKR$$i>1hyNpICMWhsndn*l`$0R9{v>ljA?;5COwKc?Xv0DEb5 zys%%~VB1Djs!_bjH`@>qLV{upZw^0acJZGtHGagWxw;c+8J;OnrZla}BH7ZclG$eG zC0@v*>b>1%@pudxD#O+o`4wA_WL9&&bLCmFT*&6p(2c9nD*jRv?Ql|rdaSsh;A;~E z6TIALQjcc8L5T<_8C}h`=}ZOke#b%o8sCu)n7Ywegj&LYLRJRiaV|Y>k%cYRs8s+( z4=(CxR5YMqU87JXpd&5e1Pe=_$ith$@K* zAOyKXM9UG%*aq2>1o;8yA?|U`OCh!{p$rg$WubV8u@zeIbWluzKm-;TJ=0)Gj?m?uvsL8p31HRl{U5Y27kQ4ZawO&qHO0)&wzXlEVe$J6| z)4_6j}tWUc;+aK zXEcn;o;L1>YPHxUI9ezi842BXm;V{V> zmSYS#U?XLmSj{3=fIte3#A2P|5S9?&odw2W7=i%DpevRX#KacwkD`Tj7$A@xl@ORH z0?X>yfQZ$CEEEI4$T1`^_ANpfIs$_g1whCKz_PJr6JtATMCuz}41ggr5*U#VMe~s* zGknl7;*SFPiJRS006-IAOHXW007~4006rH z008hXNR%G`VgGsmeL_G!K{`J`Nlr%pZvS-uZU1=xdjD+ybUwVTx~4;@I^h4^dNHO$ zOaR|4h5=oU%o1*F>zq}Ut4QdO4mG(+P!%FeUnHLQoxAu|>itY|?O-h-_mYmEd{{A0 zZ!}2HA!mJinB}?_+&=r$Q;pa=NSov9Y$Hmyzx#o3WMKq;IyT45y;*}2JmRO*X)C1?4jsozYgt{7H}}ZV=uL-eP5YrcFOx_nD2{& z`xY!J$gsAx%Kh5*?ug&@I2(A1zCL@~`~T8#(#RhjjPXl(Z~<#`1aQW1a*sXO8JlKy?}IWms`ulhgVnYK6yUv zZQA?ZFV}Kvg;l%$L27E7bGGbJ5ZCnhF=!%#=jP^-F6JiIDjuUQQiZIr7bOlz#ZAar zFolSWn_Ay?P^aO-y~ql2==M70>ON{RXyl_OCK=l?g(nKDCq)J1>Ke2ZyA); zyi2T!V13S+pzEb!A*E8GEG4R^$^*y>im{;u$^uy{Nk_q8hL#XRgeWgDR1ozh+Yrh& zfMr=$$3}oxhX`yi_*8B;2#f(t*u~Rh>H`6myI^A+5f;J$073|Z9035+MF2uwYU#@0^6-jVs_nZmWYI-tm> z0IW)-o@!ftcfb*>SwRl?^(OPJwx`l zzsyy1k;jdjImOW-V#&5UTO1LDjE;7QB=tYMJ{gDLR2a2Wnu!9|@un_6l((|4nba%0 zZ4<*C`}SIDma|)aPT~#Ham#Ye%H@f)jtFJ3b*ys%J#0xfadDoL)XMFXvAlX1X))r!RZs+pLzU2P-?#*wNL|!YbHc7zdgMjU|Dz^v%v%7A7TOMR2Td1mUEOXi6%%J-`k8Jvk zqX`t#x$rE%u4R9wOZ-cLJ5r!ZZ0*8wh*%8NVxi!kU4yS&#)4`Z`vKNmDcRpvC{-4^ zX=G@dJTuMi)w^T6nR;yDO2Wy#JL00j=Mr7Bnn2=K2ZTGcGdS$2QXTDjGiZgPq&Arf zs)B0uT4hbb+zA}uyw88q?rXC~E2Yrbt~&&}wO7~Jv+`xM-!v;isKyEiTZPex1FdPl z+Cy9pbVJZZ*uANF&ANh|{Py}ycL3~KAp#wW+$;m>cpeelyZI-ryC7R7oSfM^#k~`66Rb9x724;~JUWmI3$esqSyTb=m*7 zqgp+zmRpN@H|3~fPE%Bsd^0OpE1+>pNt>SagO>RRe}qqB|LgtxygSNNpmA zlyDe8)a0~Xi`GS!0hVALN^sL)g-?kJfOc$HGH9n@up2-!!~mos&b3MST)IU8U?J4C z=|}*C*b@QFu{BAymv7x` zGQP}Ds|Wi!-~ay5@Y!li;p zvDN@C7AL4pE-<(O919JinE{YQ6qYGO10m3>f&q^j0^>$lXefv!XxTItShN&7$IVK2 z3I}bRV8Kj!w$4pq*D6tz zV~>r|aJ%y6;B@Q!Y1;ON{rk2Xc8<4?&SD%rJ5H%_8Achef7qBh%-(A6+s_FpD1B!q ztHF3)A4e5gKDq1r$jX;VwWlxZ?Fh%cnZM1fx+vZI_{+S8j$#}Xxcy6QvU=^Iap-@UfeCN z#(``A?XEZJ7zY91zpn-M{2N>^VB7Mj%FQ`D@&b>C7H_DE`(K!^ryAO)nd#16`n|o_ z0{7wU;p5Lzw)yAp$6+^;ynj%}_0x z!mLK!jjePmEam+EW-isKi*8=8 z*|fecXKUJB8D~>9MXN80s37*)?v)6rk%5@OC=MWk0oo>&07OldB@iLjYI%SlGYA$y z$0F$~N&10|idY}SQ)|&Liip}JqP>O;8rCHvA*(73n52t<4UoeGbwex%2oS?*iACGP3e)RpS)v#uT;Bcx{)Sdz>V zU?GD;Nl2EFY~x69Y(++t{KxDdLlnR=5ZE9PiY20h{)*vxyJix5`=!y~{z9_@+@SVs zogvGhAR7Q4%&pp|U^ak1ck5(HKr{f~Jyxul6Fs_sO9^kzZO*D(ljZR`q{H2z2p^9Z zc;b!M{dRk~dq@)F^{lxzpRUiIPgdVQ9`;!Y+sXT!ZNbOldm(1{T6i-z#g(sfvP_ph z-ne?I5dk5`(cp`BRWtGHHfu$daKB36xaLmQ#4vS$AMNF~?D52TSw1Vwd|vlO==FLm z^-J2V+c>9*-|72pUuTsH8fTjmAVE?~&q4MeSCAcfmNq2vLeQ0tL#=j?NLj6*XfgqL z0t!UP)`}qvE$&t-fxbmiWJ)$DDANJ(1{DR?KxK4MWj8h!pm>`i@nUi_ zYZ5C20K_FFJG#4(KT*m%f&7ycQ3QYl0`l$V>3M(OLXFN`MB_jT!5G4h%yOZBa1f@4 zkkA+l6fCj?;Aq6gM%QP|RL?%87y;d=j0|~0LuQdb04*Zf1AqVo;N(me1uSF%{2jy< z%#hy>Bh*)82>L+!7?^>U^=xnee%m!V%^JeEKrJuWn_Nwx6aep?v%#7~~drxqAv5Yr-==?Mi;V`kC7RK_E) z0ArcBND`9}#U!hmfdHUK6csjxQL!cfP&dhr4M5Uq;cM6XjqCtSxf!%Lk=Y^y6iy`) z0O`ug&f$cCFmf?HefA!t6t^t^E3`rfA|PPZzJw`VOnlWf)9cz`*~`qI0zeQ48HVp} zfqN|Iy`W^3oCZrF02qh~gvt1Ts1Pzh7zAcj0FFoih6jeMC zmBpU_lWzk&um$=BQ0DyPOa=h{yG^FVF%Ez)H>*WYAWQ(?4aTwg)>Xv)7XdgQ>pGiN zRjEVxczis*Fc;h8>kzSN+BT9CIQsRWqqhB-dT+ED%TIG-%*B0h%k1FBo7E`ZeV^u3 z_Zs}NW;lV>Nq9GZ#aJW7>-_PJT5BnCBRqHvPu0^zNlL zSV(=dZ7=SR-O66Jq31C7ErR=1Pl;hvO_3J4I4uMu?0k7m24FXnIxUB z26>?;j6S1lwv$*yz+hYW5EHxu=?cGyKYov%YXBf(Bm@wa%9G)six8N{JD4DDz(Rq- zU=rRTFk7@3HW&~_1^@^n0t_e!pnzc5B;jKO1*`!8AOJuhyjK7K?3FM8bY%bxbWc+z zA_IgGAuJ<88vqbH3&;!D;FAUXh$j;q!2nNZXHx(G04gB>00000;dcN4yZ`_I%qVh( zBmZzYIy*{7M@dLR|408*|4si=|4IK(|4sjJJv%!(Iy*c|mU_jkCt&mdZ}m#)l!7QL z!1swVY9E#5{UO_j!pXQ%Jbrm-e{p}<2z?1#Qe%#s*kY^0$H&J_C|-w9L4~jC#?azb zqZ?jk9G#%zUTL;}&i3Szr+gS*+ZZKYO$cXK{qxP8xUjN`Naxp!3p%SlJwjyP(Hr?> z4>pqp$0Pmn{n0u8o}9(Y_g*ML$n2h{g7_xtY^%}kw&bLb-STvVdA$txdi=7o?oBrP zwL86Xs4}oBHPDEPiWdVW?3=ZTVMO_8C1CJE0w9TYpksBkn_>Oc$p9^~4M1dIywK1x zSYp6UlTlIrR#zsiGCOQkfepAYD}ow}CJ3jD0{{uI0wZjJyT$>$nq~R8?2O7X2xAE? zqhO*eca3a=5WNI*g~q@R0J%U$zYu_@euf?h0B``S1aoHidj$1Y+poF+bTI&cu7tcp zfd7C2_6h(D?ixH7gcm3fyc)Lt3}~+m09cWQIcNiJRQaK>p~v|FT0wRI>~2*}>?SYG z1%rXxk3(EDT)U5@iHucY-E#+eil&z&>S76cDfMQ5-bcH2k7F7W<6GFUw3VFpQnXfK zAWD8&T&h(nC78o(o4H?6i%0W0Cj`UXxYi2Yv1YpsBzvf9Q)-4< z3nBo-PJw08Ts?-jSU6Cv=Y;&&ddy-~xVdG;;cXix4m^<>uk4;8M?G!-bSZngTc?%+ zP4)Ury-ic9R}uV%Z43QRQR@}E3BzsfxYZOB$3|LnnP|IeUXS_eMB>pW`O8OJySdXo zhn-`!2PUpo_b}{c2>|cxkRToevhAwcV88x)$1A`Av~Hn>p8_xLr&`uh+>z9<@ZHs$ z-&^{uC8i-x@h9>`|A-%3;D)E?)!mdUtHQ2U7=+*@T#PIWf@pw)j{2TC zP=7rAB;~njh2DBXziZjgCKY+a3k5%zH`Kq0J@k# zL=o9GzK8<6IvE49Lb2*h5t$cM$NnS2&?34oOiucAd>ZHnVhPtcINE?l6T5L6#K?rJ z90@ju(nrHf^}FkxCW?&$>Z1!&3fk&LR0BK!(7t|ok%0OEp#1>=eAQ~7r0Lr`Mn+?s zql&GZM~s9Q0?$ZQ#i*GTAci+;|1HdaY*Y0R!|Ow$&`UPq0QS%rJw3wHGfH zq$W>DD4QWv2yG&Z%WWk_!pIC3Q7nTnDo%jcQh-EAOx&oVL7^3EEIHdM2CIZ1h9br| zFjgfj6<8sbgPS0h5zUaR2#m9^D%eSD8&DYEgv|80jmnYbB%v*+bcTWwB*_J3L*ib{ zHmBP{~U0N4w` zK$~OamUSl%b-pO6Z99fx_hSGkG>bbSrULO^V*i z>Uq_ZS6;Cmt_E`6$cOe!7mV24Q0nzxlPV*Q)_d@B4YYQ~J}QOQJhVknm~x?I+JuTT zLdj~S9HzT7w_+I?l9({bpx;#%sB<2@&*YYHB`eohj8UmTZYJXfv7$5!t|=7gAy%3I z#9Hj^?8?)dZN#!#xZNvA?rYM(Vp;OQbeSYyRYW|X!PtEhTJl;YauOL86)s+ABSK)H z1dt(4fNA7Rdc|5wBX6;`wkU_V*GwK zdX28+*o57arGT5N9odjnt!>XNnk}X?AX%pQ3O^VLLM|aEpKu z025dvDF+}ajRX?vsM@Q>B6cf`Ff3*eWh|YQR)J(tJdin!A%?iD_gV>~5YRMJ0GJS` z08^DKt&p8^)6O%?j7W+xQdM@k$hc!;$+oc}BsK`!mPI_}r#tR=uk_SZkU*hDV2SAX zS@$fk{Kv8Y_hsBBhK_6pCS>2bS1w6&o5|3=-pYjXL^)ntv%~hRZIWoV8?VSUZSGjp zsw6~TYW`mBie*vQ=hikWw~te|-2(XlUxu~@1wI`1uEky0B#d~yVdm!arc45G-zMnw z$Esv>p=YP#NN$J0Ga;~zt%|LxgvyH|o`yh(BEWwbhii15pXOQrx^|m6{oH$DH}Y@1 zGt5aZPd`PZD{;LtPTyXa?Ag1Ky!lET-+DixVw-u?vOSVPMaNx$=tb^*wgh8QHO*Pv zwhdYYP$W+mg+^0^Ta0EaZB^Ip3SrleST|mZVua{WDhMM(2DKvDT?*`wmc}#~hm13o zR@XVTeMqtCabiI!asd!pSf-k!Q!IuAv|?!Yh{Y1w2C?8(5Nd)|5C);3B+o0t+FiQmtm}f*s^RxAV~FE zP}M6zC(DhlifcWIu%{t~PHsl+bJ!|>Cx3;81U076>auT=q0Z)(t#?m|Fh(4$1qDL} z1pvMb?yUtB0A4WI%a)0;0la%$ZxM57+iuprov?vQi7mEbcsxR4jJQKEsGwKz!RkA4 z^RjdwWvu^iju-q_yhHQb=l5>;FpyNnszLQSn&c3Sfw1^~)v?MVA47Uo<_MWCa_1J+t28Zp|{ncZm;L)QveWzwu8QxiuG39^WY zTO=8-fiT62L@y1l5GlRzHj_8)B9eRnZXjGWD?}|410l!)2wO;40{jS*k{Do6039Js zOEZBb3c|ocnH~jBqy?iiqKPNX_;O|+&99lV7>Dj?$kVfp#|049{mc^kn;~bud!5vZ zOJG8<1Pd0G3G=6aMXEPysjvmC2n;3Z9*l?4Z)QtVPwszB~1aNbpZE)$APuK9obxqBl*AZq)?7Ubc7vSYk$@Qs0dfQZj0lhxK%$77lX=?!5MvCV4A%@0 zL~Kh^Ad75Z5|J;nc*}ejDcg*92rvi;q6llk%xc+-v!V!4R}#pIcWScr)>V7&lBQB9 zL=qr(5#$9|wArv;By{QzI0j5$By|;^akxQiwX61`5;8e|zz7fkJ{*o|j-s>#idcia zzDyA?GAQ#tGGx1TKQqH%iyp%p<0xXKxCC6et#hPYRV9ziAWvQhK{3Q=@l9GH?e>{p z=jwCg($n~M|C}3Y$h6b3n3SI5)7W#l@gv_%Z|S<%HuHi;ug5g!2sNaZ@mQ%GSnwQX zwr%bT6?aG`p?oi$W~Q4ZB3qDSwt~piwNQ<JfL(qsWGB6fDXM}h!SQ3JLC3}8Tj;{tPs zfD>Pi=Vc>WJKx`h6-{oc#}Bf9qGvjpoD26coe0fBU@>Xt$qXryqW1}y4^&o7Q?|=4 z46Y%dMl%fnHVOuKiV6oA*sWP1dmKau@O=XSbZ<@lxaO|F&v3o0>l~S_R29WUF&!$P zstUk0rI#1L-Nn$q^}2m8DK|S;wdswS!AbB)f2vr!sl)-vl;?@C5*9YEx)Md|R4?y@ z_4V@$IK!s1wWj-BB?zCpi>6N8g*B$M+ z^}KhktFe4@U0x}gc7p3vd&YL?V0D|xGcP2K0}l`$cSV)d5Ud?z+bWoh;}#<}S2*oh zYlMTm%B@Hf$8~yobj1~RQ328lAcRO_KtLKMKqv$}H>9T}yU?Bw%Vz9gbB2O|M~kMFmx?R$Uku-j{EDboNFP9WDM96D{Y^ykLQKqOh<0n-~X-7%2T-c zTQ+I7GdM!a)Bps$VqwJQM1G}JR!}=Lslq-0HVdVCtnd?6f4sq-tTslyXQFY64;%V4 z({fMUCX&)fQ_-H}!K zy0{+`ifVh7in{r7RBJr|5*Y8so=@*>&kY2;W+6xF1R$f+1cE$qL;e7=3@eQ4K+>HY z@kXbiQLSZ}z9t&8gu+>Kh~Cz}kXIdpXk6uYU_4zlI{@Tz@x&zKWKE?S83{6~51>kg zUI4|-x7s<)^FseDE}1j6tf3?qTITHVg>*6fKl>+q%ct=>4sPWD)OK-UN=JIFS95}u z#9<#mzCyAlQ1Dec7tJ(id)639t#Wo1ny&2h6E|OjdsElEHRz|VnOlt-cD)S$J@d@vPkLH2MWTNs#CwOQ%eSNb$2>wE;hH~d ztLUpw>f^2RzwVWN!qc}IOEREX8ZDmbX{F-sM>BHTZ(NK)ojr)+SZwXWIdxQ(y>ri9<$dQ zTWY$)oehWr3~#Z9$RzZ^Td29I#{qBaraVHMJjy#*oaD8gL8l}G4cDkD5-aGziZ*zO zr(P@3vWlA6C>{vx;#&|HcS14{1a!q21$yhHS_1xp40NwxgdH?Kya0ON003P&>iD6} zHnve!Rh4->o=TLciV=}S4>)&RXgztdz{1982aktm(<`*)>rjhamUyqO*NkCM(It1w z#+KdYL%wReMdhe(q?gvaC`)v{Vm8To0y?2qmS<7TG*r+5R-9!#DuP(rpUKFvtOPo7 z!0rdu){aGBo1|NfHNgQ3s;7-4!~zJr$3q2P)0l2@Rx*Jxjg)30(l*ipn%1HkYH>(8 z^a90b1jd2n5EzS5Ght&juoAKaAc4p6I=BE@*fdFw2n(-4Y9;X?7xF^Ns-8@2HwJ?O zA|wltgSasUi7(F3V~@skaZN9(99D}on*Ro39-UuvbEt}Le(f2;@qN&H{_?Q zuIwu%Uo{4)4IsBVCw8uDYV^ht&NLkUbTe?7i1RIfh4O^}{b-HlnObtf%hu+3RjsVcRE7(z^|5*3R$XKk_{AC4`n-oky~@xtDlX zt#FZ!kh8@GnVv1}oCWm4+V6vzo*nWcRg2j(+XQWq8d%2(q(v4i9TJU}Vo7KuRuhIQ z5tf=^yv}Nb6C?>?G9*bMux$oH0K=p$3SY{T01+-wwyPSGCbYxCSWW_99rt9zxQdY# zA|$ZPYD;EZsjy2xjtfHAQfTW&p)S@oRZcVEvOAUZG7~!|D7T(&Y>ybjv>5+upMiiW za&q+oITqLk00NYN0Cfe(fC;2q_DrJY>1cwFbz1TWtdI3c`Jy4TNFg9;uu43U>_=BU zKhOXLeymMN0{j5b^$dals`)ag3^}Dz*q|HAv(UCF1vn7l(-7KmNNq zNNw%%?W~cyLCI4Sqrd1cbM)FQXAK+U%QIcqGL<2ce(q$5&KSmZM@4&BH#bktO#@S5 z)6>h)1P0+&IVktf(n&IM5Mg2w8whMHqO>Sj+=2x+ zE4dzdEUCweEeb~j6uID5B?=)e6G#SQ+}3YN!%JWJYj0tj^d<6uK@o#OFwaJ<)H=CP zxgN@_v861gCFkg;tFU}extw#aH3g7qArDdTmUqaJuMhxLSGI9$@aB-hwepRd4xQ#6 zOp8GJN|b7iz=VPV-ka6Z#UUnuwm0jr$%Huoy5(>yrmG01-nW@j<*Ew25JE5nB`U1l z9&gMmgERHy>+$8`cx_~Mvf+z%dxjjeS0f(dKw4wkWzB7g-AB1?EmbYd@ObPtGGU!2I>~UO^2mZY*$f9OqWEb8=Z7t2!LtJ6{9E%Rj@XYYT8YWP~a-8I4ER8 zle+|i5G+7~O9iq56-?kVpv8b`07MipBll2HObd;{C?_OIu#o{fn0t3BYmNrzBPQ?Z zD@bSo$8e_1LWpo-aFM}a6cR@IU%B&<38XmDp!@qfvoxSnFy^p#bndG$VwuJHFF1mdnF@ zJ%FobfPPkVVqJ5ks$3O#8iGL*RH676qWtJ>@!5p;O(`|6ZLi8{v}4`6(|H@~FVWxg z$4O0I{i>J3%gg6u+v~mZdeUwrw~M+MQJy>OWr+(kIRO|+5*OINNfebSAQm*UU?xIB zmCY>GK{mB>5^%7zut`qEDR39IMT@Mc+(TF%&TAFbHKDTcv01#d1B&ezj~^wkYl>6**1(Q1hvZ(AFmwacdQT579uHHb*f zq&nod^A2*RChwrTVpiI)%8ig9#e+gLGYb|eP-=kb(7g-^^5u1$BTMVxu?XTZEHeOw z6Im(%3ZWG$2v}U03NJOx@5_v02qR^PPgn7X$58G<$KG!YFv`aWp24yxr(U{ zk&+k@RRDPSJpHG}%XUBQbQww_ObRj8f(CW&A7y|<)*(onKGMs+PW;s~mY0+=J&|MJ_mS_ik zI7gJ(>^HIR6Ic*&{C((?@Dd#?dH)S7E8RXHv>Ft&s+ zSPEqPWDFuF$*4rGEXvVm850{rvIjX8g%9)_V7=tPX;Qyc0)pfo% z|Bcu8gYB-o?&wZ+-F^2TcWPOh=EeJ?`JW6mmpdJ^eZ2E9qnbsu%wIX$zT05b$QLn- zsW_R03{yjTaN0mr23uWLpuNFvR(DbD%zD}$gJ!=xsF`k@p#fU)%$ppW>^^n-n+A*K%N$>+g>h#*Q`TjX_1~!H*CC*Lv}mlmy52)#?QiTi6Qx9;5PKc&l2&z?rnBXe>VlcAvVq|w>8lh->5u=Vm&XHMc)^j*grb2x?dA|X)R++*McRJapRw-iqhpfK-hngYuD0s z)>;?lj<}Xcd}*!qEuyzMMBR<$aM@Y@%U-;{^aKQZqdpcr3)`%fnIYzRFTa(~e0gpj zRyHVHso(Y-bM%5`gk1FH@$${#ByOHdm;2XK1Jx<(Ou}M^uE`85O1k%}9rS`-v4%H! z+B18#9K${SG(Uh`8A4nE;RabMpF1FsT*@`Gl-n-G7N(_FH%~2U2+JBOcd6&f z+*kdn1LT55T#Ryfmqr0qhW9;KKY%s6f+rn}V`0?yu2PkT&(q~SK^~JgqoG|Z`{yLf z>_8!S5X1=trtYL`kSc2h)Oxj8C6+@6vDHc(9q#N$d^7s#d7h`|wraqV#@1|%#V^fM zB%ktdM>m%x-SeelC@!L&zF?9JMHq&AZCiCW8-r&1`M;`ac*F?YTB*U5^*zDVsAPbJ z#l8IBvoFoywlH+VB3! zbM}+t+EI?C&{|)vSMhRphqDCoI*T1ula=tb5ie+@Di$3Ru3KY;l%n8==K3I)%}a8B zy}Ocif{(U)Ufbk;M)!YDH1}LjLnm`;&S!OVimCle`dNk6<@`-vmENrlx_$kAk#44o z&xDLRF81R7wljJr)Y9VGJ|_PUOH4Ma@_s|xYIASZkyjkhL~9VrDe7`odZ5TSX49oY znQ05HSvalLjV||<$YbniGQzVmkYr_NC>zKE++HRj2URn2Mdc~=GNB_AI55+i(n>V| zxUtT7RDc|B1y z#Xh!e)JStA`8uu2GZ?AZlgzxQKSBC!eO2Gi|Lfjd;p==quKvxLZE|^UWy?k_KC(h5 znN;}@;z_&D^!NRzx{C(OpR>F zI`l2^ljh`dZEh}ib;*brU{3`0w)ZQRBIv@6%lkY#2q_nj$)$iOT{2}K3qgzi^U z#noxpBoIQTk;IWlGpDud9K?QWLL@8+Y)gc~bS-y3l`dnXXGyY*cRY6fyg6L=YVOGMMK%y3ha-G2_fUnZNr_bR`-YY-tW5T_T@Yp z^joe`iA@O=ZQGa#l_(KF`pD6f98E*b?)5((=-cl}PxHE13?hU#&82EX+gy@l*#3Bw z>hkCJFBW1Z=N-2HR|;Jjx4$cz)0 z<1RZQu?l8cphjC?tCo*7uziY96)XuR6Og9FYNq5vtGo`~<4GN$Cui`lCw6+Kmzh9f zvh@nf))iQQB>7i%rE8gwnAaO(HCPz1g=K~M?MEMi<=^bGTO48sy~W#Ao>@e;<;Vg6 z%M~e1CbUc0mCy4W&KgMtRI6~pN8C5so{#QzKISMlnWQ7z<+%(|DJ?O(OG>O^oh*UHuWZesvzaO@2wknE=+` zt*d)Hnt=qz(>*g{q!Fvyea*Saj+81#JZ@XGD~U7+043^1(gA;danV+HTz6F-pBdqm zxI@dRv+KSzddos*B+_faVBadXlU<-fU_%}f=k!Lv9UkJvF)o~;k zBG%_4b1QNu(NuE+gjLDP)T&Y3b9x$Jy{mYeicDq<*o-k(Nz}0kBo&aO>>4%tZT(Ae zg=AafY2p^B*Lhk^4c$bQF26kxbtsR!#u5mSEdzkCV}r-{(tSj?&n}(a^t;DaR?&@K zV_}2vtKs2##ka6D$k5wj)3f&I?Dfz5{=q!fBCtRxyZeq6MA?d}Y>CXEPkm{BQIV-P zk;P(+Lkz3d^7t}Ovu>ZT@b|f)(n>pkJ?>_~2Lu4#`}KZri^&1N@VBHRAtoEZa0{v@ zOXbZoSFxLEMNK3m>yoR9d-%U633 zFL^UxkvAv*z08;8hlx4fe?Oz{dE_)RD<4B`|JLZd)l-$^9Zj92ig!lH^|w`~Z11vo zJ4lvu%?uZ}g9w|M0V; z5DW(vPo)wRH3FQqhoPX~o=zASL`nqdhRmcgnWhV!clv{i#IOt=F%aOI?%8BU1yWfy zO|W9R*GiTw$Q28R76{e}<=(S{EVZ(1`B@-qMF9Yat_89sft9=!oiqOwbEe-_&gPzp z<0XCFuB?8H#Fu)emoMveE#Aynz0DOP0f2?xb{7BWWX+1p&QM|B>gnv-uW^|n$Ua-r z%gHJ*Sb(sc3ksHMMRHG2j1H8URY)LfAicsyntL@|NhQ(v7pU|qim~B(cinHn(GQ%R=gNpOJ&ymvgPgek7iyj zMbNo3gWq}T?v;_7h}Q1NdYRkP`RlcJX=^mecC2y^6iIvo#in+r)a|HXn47g~+EkYl z)_eA1<49nJF=+}-L^WwZWUkpnX;wbh*^~m~46Q_oLZJc@nlfs4M8jIWRyoMtX?ohE z60erPROKSu~e9i6(0#)oT z4Fuzp#eLs1=zRIf9iLMGq;g@NktWa8EvT0x*P;3VD&NI$2?5uyqxjP_p<}Mry)#g; zo(o+||6BD;)?%}`?%N#BPnPLA%nX!_6ObFn&cg}wadO##$?bv{0E zv~$ODX+inCFy9Pco-`W4_E0$5`+TW4E3@yCu_BO;EGC)#*`_>y`FAJUJ_D9vg#fg6 zsXOm&%wxoMQF|TDulk;S>+$MyqcRo7w@;mX{jFLujwgyqdWi#Bp_bu8P8Xwdas6L0 zCJEAfFByD3WsU7t4BKq_5xbWj?gN;m!ovYhc-o&w4f5Y7ACG#nhecU1QBec#U4}mrJ+5 zfBXpZynMM{yGOKRAKtaySe=fk{aIb2F+(XOo?79*sWIF$daV~F~sX0j**O??f3ijtWE@+LZy}|ox#wn*TY8a?gv;6 zjpd^Q99jF{RrIMMeBLjI-5_&|KZ0JPm^8)Cr`OK??56gQwK)v^l5EA@_gX83jQy<} z;r|480(??Ui(!#OokEcob`x2A0QsrH>zx&nDX!NScC1%J^i2OV_AIGG)vFQhNNxT( z4t3vmh-Llnh??hPBp$q0Nv)Q{O;@2LAY2&CHFIM295FK$qFsXT=d0I%998Y}wOER& zrKD9^$@4Zh)>Zr2ON5o_#3;;iX)O+O6!BUvE#l?|i8pm}wxBVyq%@BCOaALQ8>8ZZ5|7dw8#4lnqaA)alhyrXr&6*e{Y2IrU&uG!9Jaz8Tm`Map_RbRa z(v=($opt!#L#;0LS;hI*d0t~;k0VX&M`XVwpS+6z#BKv*!W!7RT5KllaA8{K0cvT@ zj$*n_pwDU;E@s%t{_A?QxtcBCd|#e})i-om-gdj4tEepu*VVRdhhZl)G5>s@uoFf* zMln_KMHC|d-53W5nkOOgmf zA^{jh#!@73819RnbEZ4LHtL$Q{1^Zl+vT8xs0RT4S}#c>X!`)5{m9c|x+Yqe)k=|J zh_X`Ywe4l|Sr0)aCmfvkjD8krcV&PpS}1?o&}yz4Z;0E-Zy z?QL`hBF~PwD|F0iwbA1cZ}&+0_;i~91_S`G(p&j|*lGQ)5*_4^@v)6;qe*Ho6`%TO zPIOz5X)9cb3uy?e5m*2SPs@T2;QAm-ZzJd?luo-23_c7tCV|F>Dxl5LHh+sxQ1zqA zSmA$oUx{_G>FeqOnDl7JFb#g)#y&|Rjzx$*p(8#c`0jyB)^&HR|W ze$i+5Bv=f&v~sL^x|&M;g);5RLsBRqwZd6C)m{!Yh|#h=Cn0@-Tp)lI#4SvX!*~&f z7G|Lcip9)OiIF;XE8W!@L0<3Eb|%A`Ve>eI1eG;CzA8>i3$@^OG6dRHz^ci1leK|S z$9OU;6xcn`<)SS!vXLJqE{aHiJV4^iS}Sc?Neqbtrl;*0a4{WDWHK-fK$12P2WfnC zhS%tuMCNl>dWS*C2*D=xYQRB&0)$|vGR+KsI#Y`iVqPbS7*N!AWTihCf6+`|t+&6? zU$Hx@ysYt7F2B5OzJY;=03&cpwL#0GG2z5-T)}lBc+~K>a&{7ZMC*uY1ZQN6E$S>K zQ~(EFEOx0yK>+w~#gw%a3;^#VpTD$P7L)U?y$vfA@2)FjrG4KjrK+mpi?};z6bw`_ zC@}Ytd+aH^ct-Q~%zxT&oAdOnxN;-qWI1}Hxh->ib-8cFD8F-YIMRxMy8v;}&M0y_ zQVSB(cgW9vK&S``(x_JLH4z@H_I?-RMq0Qm(?o7;a4M-71K~O|VQ58_E(KYpG;}e_ zh3u@MbO?n8BfvOFN7c%cK&00Rg>3|i2pm`d&`QDqFs6XYHoyYzN)5nL;Bav|qyWN@ zA#!1*i^))sL;x8jz(TVG011_Pfu^Gb1XvRIFd-PL0|r?J3=;NZfv}dLjRpO&3a~^d z2S|8@D7GzI$UxJjo!*$v0gDN-EbPdZbXkFAVWn?bo~V8gc_40zuVO)z3l=ZSgkIE- zI|2Yqh*-ft%%s~%T-H+Y!&S))L>xGPOap?+0Dde^v4$W3L&9IMSeh{!1OVT&K9MQN zSVKDj0QQ-4jY>5+Esw_?P?ZWq1$k{gjaiJ7ZjlIZEpb&*Q|J2y`}{jtua-!N$u8JFx`Z3cAdvZy|gyM&9wk#dg7w-MA}yNg8l}t zensQSP7GNVCG~~+?BM;4nro#e>PRkiK-1+K+f}o+W>}l-=Viug2~Pm-W^GyH>~XQu zvpNlHBnDxSLTkt#+7TjgW19YGm8lUH6oE{67?=am8$^k(HWvr#lbdH^V^J5w1%ro})vZU|%p#FLE%0ziZkT@14c zZOA0!9#WQB0}B#>u!IbNmPl9@!Q>9QMJ51XkXZrQF6DomBuZO4{PF(I62h_|0%G#< ztlzX`p#ETitgf&u2})nBVwyebsH8$-WjE77ynW?*QIz zpno>gW~{B+yBPPgCbwRoSy21H%u7Z3 zlFhk0``nO@iMy!ad8hOoT{AWU60J5eTO~kV zwU~~h#bC%KL;)C3uZh5*C3H~T0zd`{PflFMOacU$0x`q|6*hn(G~+CT znB_45aX`2l6M?aTi4vfoAR>(bTat_{tN;*kG|IeGoBhf(GxybJzeex*cLh;w01yUb z01?F&a85e2e}cqvpnpcw*S0G{k^rNt3S zFQX;ISKM`C%E4%a!7%RuR`j)kwLjOJF2x0v_rSKXqbeshhR5r4c)ZD*v%^z?xV0%c z!S3Uc-s+B<`dZ_-{&xEQ-)XR~!CdwjQ{jIU1r8K=u!_CSqs)Aoat6!_0FYPgRY0pum7#6MiwLV8I_Uo0Rll3071SzkcT^V0It^nFUqho1PhQM#m9gG*6QW(F(v^3>#LW*XC?*! z`xE<_=d_=stHZ2)XtMoZD|0_S&*`|oTEkTYuXqiHMN`$_@wGfY9!hu{6)C_T^7Q7g zgR@zGIcJU~?VVVuxiMTuvBgQ{4#cy@r&Xqs%}Ksn`a24AYyNc$laj8Lfmr zSrep`D!Q!h@nQT~s_}w>PLqtl8D@bF_jqT z3P`79SgRdPb{4>a0m(M0D)cFrjQ*s0nO7x%ItC0uh`RumK?bnuS1^hHX`G1Grk+Zo zF$N4l7$-2=7y_}Kgj#7;7|;S3u)=r-DMMR8CJFOO178FcguMMI3ZnQ)AV8pqp0dQb^TPI-&5r6}%TG=eOoN>m~sW+)(Cg8i?{-1}hgobgdG?*~;zpgME zy)iO3eeo2Rmloiy_9Mu&^;NaxD|)dP^#upKYULHXOj7rXl~*Ut8QpcpM^}eLl?sjz z$$8mEaV!?0xWac3MaOQ>Tro4HsGBsA?Z?;r_g_a)0n}od30uw1WVKe*virl)PTg8$ zrNW!rM_pz~@cFzp*li?XEneiq6;Tb79-Oe^neut9OdMSw0MufogJfl*xT__1IUH;1 zyDBQB9rl$XQKMyi(l#0m+v~cgD<$vUbrIfZ9`~D?dbB)smP&TlyY2L#=s|03h^q%Y zT@3VMK?^zWlDca}Jrnwwny=L-9tqYQOk^(8W6GlE*k^j(;;_3mBzO8*N*qK8S3~Hi zS4(yfI8@|&wn{4-!(+XU@7!nr1efWC^i3XpOJ=u$GX8FMZ69G3jsWN7BuRTbn5jr$ zI!n7PvpVBrZEc*J|6Nn-*dhMc?RMPz*Z=-io&LWC|llka!RZE3j>XxX(hiAnI8K@ytkem#U-1*t5y>TMMSC1t7s2to_P!Yr`nFCskE$BU7^2)f zqN?J#ak7c7wBodO*6og*>09h?w12!MPqW?En`N?R9+98BI;o1gxh>mE&{qqsOK^^Q z_mc9WDy|9ZCCYBgQxeb;2uZQxt1Tm97{GzE;l6_A=u9;&w=$$c>Omw2Is?X)EU^@K zgBN3ZR|z5+id=M{fHZ}{P)isTibVl3Ch7@DAP#Vxf+49~t?Xg2Ob7_9LETWfP~cUK z1GLJkf-tbcNQgzS`e3OtD@#PEWQ8^g(?w&T97L1%fgocvgq1Uj99a^!aDjCj>#0hq zrC-3W_~DT8FGE+Umy_N^9}9j2W-$nm=NL#0DfWxyEC~!d-vVpTPd!ZgL_Ym3`Ud|X zdYbc6rJ;O9n=hY}plZquh+Jr}cPn`5SC#fTaaGzxZtA}~bR-?n7G_fGC7*Pk_AbD{ zE4fFvY-?IylLfEM`#X{N53!F5sF(t+$X4V~1c}ovi(uB6nke$dy?bC5p_1npm1|(l zvijK#kKyQ9uFWr+M|n1)IjIr-v;eQVqu8P$gun!DP2Jk1BqfNbFtQ}0&VZ;~4VXoW zwsJ)Q5^N|}V0*;sG6Ee<(wMZ7sIJU>w973)nYJB`roaHgkXi~7D{>SHfDj^v7&g6T z_r@2znL@}GvM|=_+WU|HUV;$;nAKo0-A?EqyZ@T)v;B76SHt$Q%7HBtDwHExMg|N| zD)(Zr;HXaV?GL_pQwdV>K3EnOV26;)QqlUU=Tz~y}+n>|(W5KR#urSDQpfAlEaAw02F3d4Ts#MWHDciu~5s4~57zmsW zJN4#t+C59CocDjniGE;U|6qarwp&Jhi`Q;?x|rkk>t#T7@k73`N0gm#IlcJzf28w} z_rFUmUR-<}*YM%nHZkD|S=4ncw`~hE&CSgmxzo*Am+E!y0E={Fb@3?lz#83h30?Wvdiq_39Ath63 zYGr5uCxRhzVT>coC1Wep+GAKtm9-deMOIXCLVy4nF-o$wWFsugj*u{&03tGo(2#uj zYw{M87z>NILkrWE^SJsd)k?(lZDb*@?D`*O-)Rz1Eb>RwqED^-?}+IhxPRV)_GA!h z4zYo{U`H$FWoPD=D^W379W-?Yzz4o8E^bOkDF9w@Sj#yRWdL|Llg)tmSiwGLPQ@}+ z#p5PCULZt?3cxV!Zs?`tRoR``xz1K&pshaTIN^k=aQFSr;OFBXGJ7sAGFwjYV1KeW zo`-Ak=uh*~Od_c^oBiF0Job{|)2u6J(_>isSd`Gxtrym~DkPQ?$l)Yha!rT^o`r@8 z=aAlrgjw5t%94syx>?)~iX)w@B=kstkpRg8a@F+GklpaKEV~Pm(lV(6MBO<;%V+}6 zjZ2Babg`-dWJAC}I8Gx|Orj#37Gue&3NQ$Onh^+LBE`l+AR*8|P>`pmcforcslWg> z0IcZo(o-DnPvlKfy%;Iym6NE-IX$z9zU(5I7(Pu>uR^pohkCB5s_NhJ4XVJGc5Csh zs3Ek$b!p8bNydb9^KjFi;ND~q~Cg4>HkiBu4z01Si?Vr;zOXmK&dah9NE(AXq5D+eIL0+Izm zFh`@31qrwz8d6ZiDg>m!8rorx0V2T)l#3{&C=D{8)dO8rBdH>8IR#pU5d;=+7I}RM zZ3uA(du8wznje99!ho>5U_e43;|>5w7RXWv7KjKy8gd`t2dN+f1Pc?uoH>~TB@Bw* z>SMyxN(rkICqILa6q&k?r|M=+kx&bFlTXB%m%(KO#R%ZY1O(p8)n-bA0O0HOGIL}i z0Px;IW<@@ZQHBx@ozlL|IjY#I+~IZj_yUi|Qx$`z?6%D}{mC(}!e)ATx$@QF)9JsQ zxW7c5Ra6||wr;zTrjg)oX*{^Qq;YH9HMm29TLO&+*Wm8%?(P=c2^t(i2ofY*&OQ5# z{ZLQ!ST$<=^{w^Ic@~q?(pCPO4mM!FPLrs=%7#L*JcK^1>yuYKHlERwf?K0{mq5DJ z*j%-b4j-?jzzNnrTzf-?N;i!SOq`!-WS1$dZQ3k$WfWP*;{KfeJy6fgQp~Y3PF?oR z>lYJRK1^SpAAddvK$i|;>MusdE0Ni>Oj{g09AyMU>TPNP*l2Kqx?q3|AkE_|G}3Tn z+r$jfL#kDiH_r?h^flz{+kika1w?PuIk*p-*ko>+9seqGOousa(i0I%jDlGI>xLVt zfCpZH0K^O#0+0cqNPsvv&-jP8U*?Jl+=t!XhI&aDhNZ|$#a!{%E=n^eIyV`NtF!8) zqR+T7l;c1!5CV5IodZDs*%8_PZ}QUnn!MQ0OVCoh=n0EJg+&AvW#nF9FUl{{uf|#P zSM!VgOY%zs;Y5g2Ooa&!iX-tQuVNT)12*8FN@CN&mBVSn;$y4(p;Y`utZa<@#8W^28}$yo>0uLBhjR6EsCnI3G4)QUB0=R535n;i8?9>UHdMNBY}( zw(QnwZCL-{*+_2#yQ{k7&uqNjE3_64~KF>I@o|K_9N|1cz zoS*Mfp9-*tz`b#fqi$&*1C z(Z1Artv?+U%9{pz4``leB!2P490cy`+hR{J`f>f+s61FOuj1kTxQi9*G^17|;qfaw zk-fz^)h4e<4l5oD-8hosu(#%T;@_Xx8W6|Bv#x!oesngPMqr61&6@gBYVvF+_IMi6Yk z+M3`*=ZoG9hR%Os-rrn!yz^uq5?dplAHpgc8Ct!wp1CK@9A{!HjPE>y?_o+?MeD1d z-`3rgu;U^<*$I}+J3=>y>In^fX|mUzdF+o?Ymz2J5*HVrYYRZgP4~vG|+#w8`$J3L1IB z>K^a(F4t!h77+S5+b>^g9v$#{ zwv`)?c2Y9CrXzzc5I!|hqiX|p?NMfY-N0D&mmf> z)a)fhGG1F{MM3t)UcF{~H~HnuC>?iGlkx#>q3au?kA*&q82c_NL~yE(P`Yt0n#O9t z%C?2}yE0jf)LGOyaFiaLI1%tomK!h#$MeQ9@tvCvVKW_6NOwk&p`6Lxr@sqiku)qt z1F-4_ucSICkVeMqIj5|wfbh53!e%f3F(DZkA)*0r-0Zk&09(VGMzypk#Dhpdr1`u@ zes9jh@))vI^G0>7hSPmEZP(R558U9FeY<|*>jf?R8l86L{6pft!JcH}{6+wDaL66y ziQ>`U387C2c(+5kwZ5p{kN?(@Ab{vu)Jn^&f-VcngOo2$ zb@2BS?Xb!pi3>vE3{JmnW#h+}sl#4M97q!5-kQdU#MFvW?7stRHT@YaglazScTlgUfZ zN&`^|wk<=YF?ZRb-{=-%AA1~*gv41u>Hs8Qi*ImU^*k^#ojGj~jCiF#1`!bBt+n>P z<-FQ?@GmPw)&fXq14bbT%2uv!ac|M}=|f7gDKkG@TM;cAX{St)Q{x6o*%y4@D_NM; zW2V666q1YN1o_ywYJao&=#r>8{uYJ)ABYRdd)46y!Ee22`n3S}&$OCbXdbl!@bn%4 zH$U33uBwo!CVtdzaM4%;MeV<(iC zn)Q&|OkHjE+2gJu*>nO_J#EKQ?<@b!nqgPE><4Pil#Y6t8UKz3 z)5)zVqTHEr#t`Uom^PWNGj^DS<7eSXfBVF1@g{f@DGRA;Vo}-xBOxs_W=_6%xU4)% zR#S>@P)?#qmn4BEh!fngBxP!tUdYt1A3t#BW`bYwdJ2I{R_eBb>mecG97O^MCP}@J zBl^<7;~|J591&}1p^<$nMFUCCb{QG*h*~O~)9psgwc~S}HDNM;y1U4JG%f;ZS+k)$ z>vt#?ES-whwOR&0q-O$eDXQr!G(HMGYuJ}Qo)ToT(2{ozURmgs_;UkOo#IH-q zh0ZInjW<7Enx6gqO%;2d%hDB())oy})cNo1WGd@*eYuLpu2$P*|M`hbtDoRr4l3oG zvn(QEd}Co+Rub!4S}1zXrDzDWrVnUrfEWjQ)twFT>`n2f7tvOxj!}*SrLm6nHlkV^ z#nQYB1sE#1aC-60Zz%S-RU;_L8Kv36*DMnR`i#C%>syfa7OLSSxM`_GGUd1Cqb=#q z%O@&>+ICeD2==&=L}wkUml@gr02)N12uVDEV=kE-9O9)f<(bUM6mC~v1~W0({mgfL zm&;p~QAa1%SM@J+1p1Q&i`a{6Jm_+Uyay;3HD74t8PYk@V=t`p$TQzJUt93MltbJF zDNcW8w0}~n{kLRs%c`NsQGq=Q!Qs@96+lADW=5i{j226#i;@R*|ET1o3#kV_wQLS8 z_aF4d@|~?$_Wdl^%)&$!!TpAmjkfjf@O9Bhe9xVqvEA#r%W2fNN|3Mf!9!5*j(p}J zLHOa}qpYi5z*ntHkqkmK%YxmACVu{KoXDlQ*OW1bWIvj5Hai>BO=kXE^ugG$0lGp+ zBWfw_yXaY6-fC4)KVp?3>pbca{=6f26o6PO5d{>{a6*h=;yt+P)eT2=Zoxg%iIUfO#-H17oqScz(=Ke71FWvqL=QvZCsN9)M=K+T7s6^>xjcYkF= z_eUKmpCe_~JZCVHcCI89moiZ-{->bSU5rNysJUa3R{6#W>|C!*_;CC<^ZLs(P0C`; z^S2cd^)qMRXfAPMujFlpnu+L=(^*X zLLd4^-wr?g%ADOfSME7czBEJsZuoESw5fWsGV^3r_poV6Xvso%tHE*o;&)YGMouZB*`-`VBP2Bv?wchAi-!{@(CZrMk;YsyX#zM|)znX)-FGWL|G zh)s`1Q~T@t-w406sF;UGZFBR7n|7T}^ePJn(=z@!`?Ze-WgeA@D_v=sdPxv{jH03T zI_g^Zfx&$OX|M@7VCy=VBE&U`vXCXV_C8Fx7SdU29 z?tN(8wT*l$IIsI$svKG7(YA5VAde(Esd63*o6>hOQ$8pR8dJ#b$(H*dwth870>V3u zW+KlywHVO4bTnQAwR@_Zd|Q|6s=8&>jm>lvGJP5?Rx1y1AJkrsyOhxJ9H3(^F5sQ! z$>vZaRWAqFE+~7c>t=D+#gMuX6yTUa?tf*7{ z;K6Uq{6)INU&=A@=LGkJkL>Rj_6ZErc1Qo03Bf9o!@0Dn!siPN`W>Eob+?P)j`(&X z*Cj*F$2+DDO@nV9LY&CQzjL9-fOjZ>?9B6`Vh9NS!hfnX5&TMxJ+O%mwA!pU@tjnhS2E zKBHUv=KVWd-;{0;ut)v5nr(GqO5yk!xwe%DdPTN_@?u?QHw6a@nUF) zm2Ghqa_d8xGL>Q2Ff#`|ttO)_p<2~g(<*DnKV=-&$eUjlX1L_6<+fekoxJ$F8H;Te z;w*aasAk?p)Uqxz&8|ocb5`mjfy7x1nu8^x96HesCrkbHF#dH8LV&>n!7BCT<4%}& zIPZ9{fh&Ymt7}xmRSVO=}#(y1~peM%r19-!{@!p0Uw;_ z{6j&a$4u88EptsuobkwTIgFj3jKc&CdI??YndCC|PhDWze@FMHSr2({#m@HyRzG*O zP`7@(AIL88A#|;}aX+wcXU$>e9y78r{>uHy&U)@HGI=$(&G>y7fxmK!m{VfOu<4^4 zUg&Z$Di(ua)kkdpuA1|IdP=^7DO&Ddko0jUGSoTGrfG!wCjy*8GxCkzNVb>gsbIE# zG((w8)5ZSj=3r08)XFe*ugNx%l8iN*+sGB|OmOEiJUsWRU&Ek^Ls z^sPpl5l1;#aPU=eFt>ertb8YYMhFL~u`A`m#mv@>xw{9M42XflX*tpg&EoY`p~u5p zK1Wd)^hdh!;wH5wlF$!@v<;I(so^k11Y)RSm^j2$JOv&{htG0~P9%QrJ|Vqsi}rtJ zSv2a`fZ=~>oUe--03ou}4N3+17o(S)*L=b9?67x(RhPf)i38Hx=>m|Rkm1c*6F{tc z6u>za0P^vzY_oEbIRIh05YQnl)UeUz(a{QpNTbfbJsG&Nu8ow7+KV_H696 z;Ojr5YCV5(@UnbcFrY!xVyx$?pZ;yOEgoGRcKPS)DVWp1%gfChK*$~gicA~F4E`4K z?&@`r*t(`XTT_eWTi0B2tl98psY==FBw?)B28+ZZ2a$Q6l!-uA6NFnAAJ^BIuNowm z>Y-TKSRTPh%BpSN_G9BbO}aT?$V`Dac+%~i2AueYN8PL+^htlX9x78b3eb1*z>_f9 z$)nON)t`cwe5wv0qUojKFQNc9)WMm#QQh39ll^>UBpTO$09h~)GOSis$DZ80-OeoC z2sTr&0WowA@(4(f6|LC6caOvSF?~yFV)+rkGII+6;zADOZ81dvrME6P*hUW4EA?L8 zg*PqJdBR3)c>;i7LO`5i@(NK^!7|=ZYVX}Gfd;={JvCCX$Dsc8fg1M}l~tOqW&Tq{ z$cDi4AOdHoKfrfIsid1KY*BK`@-+}|oj<O*%zOVB5ah7fI3w%F%hr;9RYAPy zBQyPGx=Pews51Z6t_7opPEM(XhANElDEo4}?5>}eNtwE{hQ;rm78Pr^s9*y=`1k*%0lMiyl)>X5SaktjXE~rz2Dcc zgg#p!IOqvTfcgSiWVe~tyK1Jx6F*jT$!fM|C+Wg>Lwc!01?s5)v|)5%z{1p_SG+1b zfDD_6tKOSPi)N1)nhZ7hW%iy65QAZY0Y^rdKnIvC0Bgmubs-jw)SWUAMUVuX4DgDN zCe9({-ml`^D@q3tlL2%A$^gnYPF+RmaYAq+3McodWG+CbWqswB9M>iCq=*sp&%qs2 z0kX*1#9L+^qv~yUAN`6GwiqgO>-bn?R&}4s*)H6skEj1)*#De}irlYXd~{b{l>OY1 zn&K*SyKSPN=whuw@lkrL6SN_UDxL6|RC^stCdDTp9JQ((n3Z9W*Pn!%JGJRi#ro+7 zA4Lr@^CMx2YdY?lP=v6 z**nQK9~BO=hsMCbFeM8UoP1W?D0KV?FfbhY zeY#{4#43cEmndnhmHUy9Alz{`?MuBjWEX)3y<21s{K zJ`iAw#mQ137w{{2s0_9`0W^6}FN2wOu46$()^6BNY^Z56t;W4PSxDE3xr1IPDTfWD zV_cwz^rt27sHHY0?T%Z`YH(9!_$2Mz=txHt5 z)dSJ4*bJrac-A?E0l1q#sf|uciK#}k>NagvW!kn+GnS(-D$PDD8`SS6$miIh_iL#q53I7@5Ep9AFQVZy~V{@@dkJ>m$Mh$ z#!Ef)t97 zoq5v)QzQ)+O$~EJ&K4HS9l~Sj{1BmRE#jwrAiC)wENsEMbAbB{do0sDhXkSaOSe?n zsoYgAUiiM_O@*k|2*PE7m5yV~vlwid0|{etMLP#$v~}Oll{r|n5)gBSPzq3M@o9T; zAy%MLfyB{Z_Oy5u(*yt%r&JTk83`!Q_vRgqARF*8K`L1vBML>LLw;ar!CIVUUJIaclsUZa)q-5?`)bP7{zvF}dttYE?Ti#~s z<(*`$F<;uA93!%Ned~SK_8Fz@Fc13@=|^O)m&xke-@Dw@)gRs!JWJjeaAm5E4n2xt5Sj@`SSJxi4NE;mx#eaGCx+Z5$I_s6PGc~z6#lyo*MZ6uW{#1jH&8j`0F%G4*{t?xH=?>9?DFVENhP<4(&koGVL-qbGu$Q8X6Qg{DH=E@wlmlyAUps{yuk?< zmjEF`HzbH59^|!1Hj${K#HNmD07x-_t%emzg8&~|g^X6fd)l3I1cQ4jh zqE`n)LBn+u!f5VW?4w<0<;IhhEP1A5pY464LZ_BG+VfCj)(|Nkfy>wcMnc&ib{SeR zywCPG+g{jmL?B8=6rC zeyYt67#YNTw+7BmD^U47ZhN~ZfQ4aWZ2^F6C0$eMw<(o|Pb?Y-2`){1ofqJG6)<8i zp51wM9|fN-g!!GGkjv&EcuHc7)~+JN0Pd+#r5u7BKY>kSKv$o%xjAN{sJ~^i zSN)k&gn!K?E_M5S?0tp2{a4izr3TpLT75;?@h!2~>8Q!m>E|wTbHIX6TDI-7L*orP z1@Av(QQ2o86CTwh^7cSLNY`TY8IHeA<~TztV5d~0HY~fd5WlW!@`vq#XNj%*nVLI}%x3kcv{`uv9!zX3m$Tm*hFfFH;yS z^dRW;vE7+j?iZJB`&}rOCE=s?3?wc=%Y!!vi7fmSO;WbaxvrQbBs*VRw1^Bpr1Q^B zBP*fHJTPciS-Co$16r67kvS0dtut3ya;~ckVCCu(hzSn|1hM|D3;Bw{t=8+Z^6T*OWsSybrs6zQL?U>u}6#8@sjHo!*_JzGe3n1l0I6``%+AL zP$?e0Dn=`bIP-m$t4domtYZ)-n>dPH$#S%AOQMu7Sn)(JU!y{aucz&yY>G(Y*iyUp z+BkG}5)#ZOsuK7w^z1`LGj|rCN-I%9t78Vw1~?r3@del%d02PI%3+i2T3Eq6Q44Nv+DI+ww;3DGvFyDhMg8u1{df;z_-W)Xg z0F?Xx52qiz$^P0}QP~}`*&=Ao)a+7COo=Lvi=(AEDc2yQ^!RE*MI_sQ|V=9l;`%iqZw zib!YZdKInoRZI>aMc33fx2=du5c-ORGL$CpC0l3o<*Gt?DL6oD^xU)jwQB?$N
|OviDykI$^~c!Y`e^?77aqkJrY#32ib379 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
YtanM3j8l9 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%0A5@C_Deg#l*ht}AOFlvQjG%>yx{ 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

4crxF}q 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

fSeWJy**iJJP{mwL}Hr)7X@gxnKN67 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%0Da!{)GT%|~*%fZ&s~E^2BLL2_ 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

j~h=uI?X$0STcFmH|RUgv3OQGL(=I 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%0A_sn5YA{cj3M|f7o2v_P^>YY#hg z9y+q!ii%}^-*2coRE)I&#GIS&iKy86r#Q~ET^yZx>Oe3 zkE~iP$zX$V3c2~0ff)1Gg6@4T+oaUmsO_>dj=3u@+t^r|roWZ4x==_IG9=Rbm#9^2 zfnwsQT>jAN1;uLV;OD&0^`W5)RBdhl;68@8J7Sv0#~{@gN_eT~2wbZysdvAt+(tO~ z6L8<+k$_hj_NlV`w|gcv<+vhmlT0)KZ~9T=jl;{bv;lo_^GL$K|9))!PSvs5o|7}2 zrvJxz4vRQitU#Zox-?*1Nk>tp2`P3JxhTsTcdzI+F5Eq_#T>AqL>`#U*uGMMfU=A> zIiArh+F&A-;w-n;@Yo{%^6hq7S|djb&@M1g&xPsat5Ij{4s&SU*Iu~I{WFnEZ37!b zEJ8jT$KtW3>I-~;L?rD}qtAsx;P(Lj^#K5oOLz}Du$KxVBWbGL2oaZ@zg$`7andXS z1QA6o#YkfkQeXhio}_oH{u8%$Ge2h37p4{*e{HFMOvXtf-@QWn&%Tjs6Ar(L{{!0e zD^C*7`yU=&CPOTd0%?Qm;CY|d@w(-M1U>rMgocZyZ@S;X_Qnyrl24*kIeYBt%5BUY zv1pbC=8>QEJv-AA%xb)wJak2zSV;!-Yv-@D@7gFP;C}QZ!lTua!?84U*VqZ=yKop& zN12#ipg?GxW$M1E*QR7MTarZr8WH!k#RDgujkK zI4eo_dyJVJBYI_2Cq7gyMabYENjTz89mAK6NgsXrZgz#!6(8{HbIUj1k%5TR9 zAi}rc%*Z|tJ_Pw`>>EugU7%zD90Yo*;aN75es++lui zjT)w0y_EkOC?71#Z|A#^-pw40&`<-Z@oh#0QNyL!6tbaDUi$EyB#A~RR3S-L zjgT9CR2Bw+Km{{tu&?b<11l^X2#u@ar5W5*Rj3|4quL8deQ+9VhT!4bzfVI6H_JRr z^6C+lE4&%$$`D~qYJ1z+_v(Cy%aS>&HJ)*GqKfvXQlV<4}UA)=s>S2+8B%I4W-{k5Md(u1~xhhxEHK@_qxZzv^A{DM}x@8 zMon0aYd$Y~J_iXMH5+W7eRsK@gLlWjTohfC3%h%7-z1RtxA?zhNE;Uj9>?w)EYNYm zz!jT>Q@pibl~lm7V7lbDmyV9Tg6X7IJhOktVwF{LKW}_8RkNPVRHQ^~vZ`o(^zLYI zDui4Fn3zT{(@dzKc6;$ky~o>OiE?d+k68?bF|Bu>)E@;k&qgNMZ%e7pC9zda#IPAJ zF+m05v};-&rZF^-u+kV4SCn>Esyk;XAs#duE^I;~kkCn!p!mr^pfJ^s-7W4})& zw-6hWoom!E2{s>cj3g^7Kf7@)m9p0F!GOes`h2Yz-a52#=Nt5!gV{CRt|sLRi#qx0 z=PTIjuzV&vw=1^nw6$k{%^$E6KSRCSpN_g>%)hq_f9-1pmxrxN_^LWzQ88gze3jKO z+X9AV!J7Sj+|IRuyYyHLvsdaccENCCwseiHuWdkGHv23{ElukN6Y+*1|_ zs;;iN%<`i-LL`>16sN$*7*x^_$H%SNl5UmzRr&oiS3-hfm7M9(?1+KSc$p(%nOP(O z3l=0C*UV6jwaUyOJE1Jfl!3>IHSLeIwJhey#OQo#XMVVWp^M+7<16mjFed`2Tyx4L zNT9q5&r}cYfZ->U3}QBP$IDO?ykrbY^t#S!uAJe}#c&5SL{)v+R?+l@GCr5GUYSfg z`GteSCi)pcuJdMO8<}Mbge= z_F?ObT4t{%|=0mZTU6RLVOC+s_syb;zJoa&Rk89aQj?DQhNxqtMr z`yw~1JZrBQJ&`IJ94mN&&VP0{5Oxmu*G&(5(;q0kVX2QQQL!O;p3Teo6aStF)ok_d z_-$%dav&vez3x~Q0~K_+LpwFP_wp}WmD6|Q66eEK9ZP7j+GzEFEnxZB=LI6&%zg#V;G|U503m@}-oIp}s zP%}-MAtkC8xp@TLpCq~0asX@uHw)37loYIcoC^YC*9nd33Jm3>gpm(#5s-c=n{m>i zIto4?cJL%)zuoa<4*mUgm>?RO+==!&-6t@_v}TymGp^!oexL81g#Yx$Kgeu{(5*ZlPCkv}aYtdUVWVeN+HEKT?`?!nk4Ruc<85j`y-_9Kq0 zzrw*@TTMuB{f1~S=*Eoa?ue`Ddy$%I!o~;fk^)eGBB~^t1o^@jLc&f3jiN_jwzLl+ zF9BYv5QJ-4i4PWOB}p71V@7-;v69RVFl+;eu>qP5tQ3}o!1OJaQh*t(Jy0WhjZxBq zj9X3kbpp8xFkNM(cDF*i|Bj@gx&K8|7H~VB_4mS%P>4Taz2(_lC~nqRsJvkZAPV)F z1ewnyw@eCW0F|Q+#5!1n4D#z^>u#8_wO^Di1GaBBr#Juvna*|pMJy35vupv#fZxzO zIF^AyqVD3y!@g#E_zgIw^K8SB2e**qQe=DG^}lGFMEMJp2un-}>5H0ngc4s^(k0XI zrnsN8YSO{um48**8iH0|tqqaqyDkpyC=gGlSnhT%uaLal?d9c4_8QvfC&ZH?D$N~q zyZC*64eyjwBJ{Z>kCt3lv}voFPFvq_ z=?@Djx5VH7mA>U_?&`FHbS-p(F(FPpQhUy0m7(^Md6!@)&0mD1{YbtXH`Q)D`=>xh zu&{adb}K>|Ey%=pNtr+J+`C|NB1_f3K%9-%v7$yOfi19gy8sAoX(BS5MidYXDSh&$ zG4h;!=b-nt5+4sPgMH*DNzN&2ozbWcv0-EuiNxp!j`DWkSl4>RvF0G*#_51Tc=U6&4ni1sa#=k4$>Bx0nQn({8{o@J#S#QiT`dkwH1yTai0-F&VOnEc&#&5p>zgQA_D>1nz*I(H}WlyD4F;h+^u188>(lcgGVe(rO9zz~3# z;BV+KKvos7BY>m)hEOItH#i`@D%^}6K9#$U78z0Y;a^g#mrvS;%9&tuMs=cpM5>)? z*4`#~OG&B$z-FNRso{ST4*`Q?X5H8z%#C0@{MS1tU!B$z(#YrlCK{Y^_4z@f;qznb zgbdCg@PKzz77mq(i5OCwA$`%*J%H(MT|J==zW)1fr5ed* zOD)3>OZCP+F*kS2`s=cns+0w0bn~W0=Ir#V+LUcjIr%rs3Db{*eTC#2v;bzCLWFHLlJ4w_f}P{&nFfYX4~SNyJmAxVP7Oo<$!_6z-Ll%22{skj*=<$Uwu*lZT};kjOES zqC=wNGPu@xFj9<8J=tb`K zCG}=TD9L=wi#$O;8q%MQn1VmBiH1 zF!Z$N)}-LL(beJ5zr~;>`W)rQqU9H-6rDkF&X2)!2*j_MkYsRd{VZpF+t3SsOCt_1 zj=S-RtYHi~8v1;gFbduM&}=67yEwC|jGaat-ZBU4%Eg$Q3Q-PLlRTd*^B<^N7NMi= zLSn&FloYdnM@v%~`Zy2nlFM)pN5ZOZp#C-cnrHn?r^(=rKrvE9Xa&spv#tjRQif`Y zW>UuI!@jOuijo6TDh*X&6?{vCGqFebF`Scal-BIe4a_E=r)4 zh=#lDWrS3mdf{0vdYPg(UF5rlLLS}iX`N470kgQ?nHkSf5x9huX2&G8dT6PyPn|AH zX92)}FHZFWjGYY`fNl4DnD68u0ZWRF0Fpwff0t>NN~5#8C1JpoS!q}sM)4;n^3qdo2EEta8Ljgj|rp1sR+J$t`e z$&>S({9wtlA5{~4*qu7I&6*hpQ-&O2{KjHnQnNp@xnO%Ad^0pfRxNH%5>Vv zq#~?oiNmyGw;U#rPYDvgEpC25xXCow$wiw9d&vnqW;2SQv}cy{p1$)jk2xzoz$H&_t0vXK*O;)%>eEx!)ZuDz&}zLvSLj`uA)cqi_rd82eDi>Poy3_th zD_0=1`Pd*@nfy>av|87;?Z5jq?A%l4nKmT-p>aQQf_QYura8r7RJKiq#q2V7;^TVC zm02sQC6n=)0Mfs*%p@gqnnLW>s{5kK`a#7?7_wiFv8*(DFN$wV^IKT&UXq?IV8@4<&pKSNn zJVfpqn?mALWL{YDi{*Rr;lf7108OR^6Bv0FNZTXUQLGp^tJ(Bk$f4tA6+5q54u3qi z#})vrsNA&LAIlpZ4b6h6$4xKhVY}2D#&4tAFrGZ~3M`j-Z*)`eEENbpGFbZp9GHP` zy_zMwl=Of%_JSy0m2lwU8on`Sc zW_(G$%h5XR-@T}o*^TaUk-zju)*qMrZ&m}!y~4;^lVefao=+hk6T`@c8SL&={;IlJ zr^OyWC}|2GtwJXHz%cMtv_HR#9uh%QFy~u16Hc&Y^I*j5-@ZR}cugB9mRDxRJ2{vL zr6-vrr$tM^`1y@Q7}v6)Qc$)hi7YtMJVzjiPkamuzD8G!Po00(!fwu|)N-q!sKtM2Td; zx;iPv?K@BX&tX+Z@(kB+-wmJvzL$8;rcT?vEyLFgi)A!_Jg^usSYQ#&~?i!Lw;3TcOe^He4+U)^lOwH?kY98+z?yUz^Pn zeqRMxb}Lp2K|AoC^=DkPouX-0$EY!U;ar&6B_et41X#mJJMRN=wFrUuVW7mZNn_tAx&deMa5Y+b(;_BKhW%BCVX~;X_fYJCD1| zkW@CjZ%_4Ep*?8=%U8@fCot;m z%#~iiA2gJD$CQ>nZluag6GG@PHM!VwgqK3y`mrnRu=KaF!F8Z~{fbe z5*2SOiH!9luPG`lG7m_Lp6)bznAIk2N!Q^j;Fu zcoGzLyc@tDA>{nGvL&r7FhDf6Ai8%xo0^wwy(z&C4Q@=siQp#+nE&vqPErwapSBP& zQ80PGBZD#+;Fu=wykW$^yJ5Stp-P>d!qE&_8ZeJ^YRY|HLUMUE?MoA|j-a=aG9hldV z?pHR6acBr~`a>E;OidYkgr_C~aaa3vy6IY12b&J3DEeNcNLu_D15+`5qs^B(p)Ui| zV+{;H-`dh>0ogSAzLy`!1@QE_00g}{snTNT%I7z%m(i>Vd+){GmKGM&&ym`@pgPP? zU8YIcO|tG)MW^2(S@oAcY_ediZlM@_`q;h$J}ejIz_)-qxKl%g#9{b=kAR4$`vBv( z(aXtUz;-sKRR7ZTtn*eca%)_(kWROb0ra%HBM}1@SaL?(jL`5E{Z& znl`;q4ABKX&HCg#RAu;9F2Zyx=LGZmj0m~2h*vc^{Xz%Pfl7yPpfmGNlTJ^VP!b_d zTQfwkrI{TWUV}>w1%(7=EoakJPM&l#uerKZ=}`jPDNEO zzO*mUoJd5nF7E}X%0sHm%HxJ0snge|ORJ^SHXT(d2IPw<^7YdL>v_&tob$U0_&Ptj zFF#oD24mq;q!>J1r&t}TNJTe-v8=-cRWn2A_$}mYy3SwgwzKdE%R$aB&Zn0f&AZOV zI`=*?y4ZOS2YlYxqb?pk(`P!boW{)3s?4HOzr(yzHWPhTEmo3{{9Z>iqPBcg4sAdn z;M5=d>l!h{1`fo8X`Cap&`YlLRPaFrCwXl6R4GFxMHyuoR5q<^j+Ef?9x)`hoNFmW zI8)!?DMg;~NvBeb;*DACP?a!?=%KUvekjUPnHVXP$JksV8oxeWcYXaie*`XNQ6R-_ z0{*fHNCtvjpjnLeP;^Xb2S1;_wiYq4>|)*e!7>UJil)E3b?m`Y@JR&4@Q>S^3u@jo zxd6-tk(Jc?kbkXUJn@jdA#jArD&+%B+YAi2Jr_v!heybd$m0dLi9jejpAOGlfna`f zELl`~ovm%$+ynn)=R~;;&1c2>6RZocgZL{dEVqjp24=542%*|<*;$nk2}=70+nwpQ zJOL<%>AFM8gH}*(U@xwuC7FEcxE&j{cF@as^m6nOHw)rdzgw$_x}2?l@#;XJ-m*PU zIw1?B`Vq5k!Hg|*yO6Rb%ndGo6Ti&k^pZWfK0VbXU}oM?h_hpYXRC@rK5tp%QLk@*lEp_nmrjNH6ylZh;2 z5{}n8Sg_7sAO)>8YizKS#1uir^MvvXuFF#D=T4qcsm*;F$avn|n7lA{Bjm1`pgG=y z5lcNNO$HvX2ZSvcuLppqj(k~W!aNkOA`ncPkx{2{B?p-moh?!QVl91&G~i4o9`fc) zK;efac_IB8+?b6>x9lt)THL%rB3P@^QMGA@vR+4Kn;KW)-K3Dli3WTIGPrska*|=g`zqi#f4cwQB2GA;fPlET_*Y3s z_p7R-`|0uprr`s7R07=lOhi@t-!TEdB13;DdYo?s5}y<~W9*v+7Gd&BMHX{4ycW$C zaI2o+(=?_i;xHh`o8A5B7gE+&*NINov#`_KLKzAPy)u_i*CUfh=%nJfyadB)xWRHR{cw3 zuOwWmRh8V+&bf4-*^-+ul!;rqRH#&?X~$hCXPJ(oMl~xJYJH4r$Z6u_Mk6MFh<-)g z7K_2X1t7Y%Xy!>(zOIyX2g=tTwBu115EB`lCX*U^*C@kPR4}DaX~Zxaki5kn zi-(AnyM#Ba&jd%0>AU_-vT@=m3DbPobje&>`8~*0y{HrBI1)1|=Wzu+Mhz;lnC$lX z6<6;=u5!tSr~q%K#LvR+(G9`MM(c~tqF+BfK1p-WZK zqhv#4!PsVAZSV+AI^abhfBo7Jyc*wl6=6D?pJM!7BQ^W6qvnW8!a5Ekf%ycHKjNhw&Hn!n+A4RE6L``DJv8$vT!eHje2844^_Sie`^R0wl^z| zX5)1z*ntnX{m;JUJCUlt9_Y*~E6jQGJlMi)hQ8Pc*s;2zh`otlfeZu$@9yz}nF*7o z^Kcbpdpp3ECuY6xnXDF|YqK&J@{2w5*QPa;8g0U|>hb**6&!0a+3~TVnUNjia4=T| zfu2$kLE4jN{eHx?GDEC*d!=tKlNc*gnk#9{MB|u~nOEo^%3O`YiRO9;0etbsoK3q3*X4-a#I`oiit#$;%O(w#>Kk>~F!9 zB6RJrL`5M%(OToRh$?j^lpWwQ9iya8j0qgp#3xKJ^4k!O)~=&MP+u0BG;JJdO^qUaX=$To)f)!D+1&Mn*BRJoLD5y*O5|*jCsv zApD~T3@|U?t093FZ&VmVN0hdx2b`mN`NziOiv?d5lO^tUWSiykqS%?GIP+cco~h z8W2!2W1Zbc{q}!+*u%C8+Gq0acr5#mTK~*1@MPDu1LGFRRM&iRxatd2#Px4Qguu^I)yN1X^E^M4x{>=!RhdTk^r zh;kaiAwif? z>kuk>0Qv1*g*Z`K!73RCF3ot5c2Dfw(`UN$_~w@)D`?TCTWNv?U}e6Ssqd?lN#z7h zvr=dB;gFS8D;~J8F#=|;5hQdDv>5epB!|Fi`{;V*X=A{WX#-GnDzqw#W1vUNFEII( z^b(X$f8^gP@N>vu)2Y#bn_y~yK~pN-tbc(WS|x+kBcunu)e7}`97eDec-{x3{d-bF zAGmLtQA;Ttz!s)N_w%&`YN&*i`gqcTf7uP>{s)2(e?ywK$b2(kceI|A_B=xFj+c^a z)Bg?i@AM%tai2u+w)!eYkbIRYp$2V(x2GiTl{quxHGa;*GjGvPHD{O>`#=flUWFvs zE+NMRJnOfiNU`fWJ2>kBiVFU|Q&BE|i=|}6Ak>0BjhN5x`f6$Ia7$3LQJT@3W z3vZ(-C(W|=k>B*VY8A&|dX|#3=Xos8m8r>r`<NsR>0+y-zTHY`*4J976Z2U zvH)!BkHO)?aRnc55u-_#EggN9DgU{+Cc|i@6321U(8_jlmE}*n^U{c8|G-8ySsn%v zjW%*!>#^VZoz5n*#}39xz^8J^Y9TCkz+0Wx0N0G}S5$wD3ss!aK2kOLd{Mo^*)`I6 zJ4KL>W|sIXB6OQ3HwEo*#zY<(DP)FN9!{RZaoXWoitf<0!Nj%3mYDNnJ+%pb$eG1~ zpYw-P(V}x69FLdQ>pLD)MyqmT7mjVZUXJpb?E$s+xn^w)tAca&Wp# zsT2CAE!t)YnRb%uF#Hv3lGXcn!ZgBbK7KNNG3rK3-Sw-FkSG@{Ka2YG+k$P$t8+nc z8Sxp_bD8F)AR{H!gEdmCWOZe__dAt{^k7hb67FJ04=7t3mf~yY+QXGx6clewYT?Mumq*juzYzKQO(g_qONcOrW;HTR<{6Jat@dN{ z&$+(fthsny!$vyJ`vyz-^pPFWz3xWRb1GBO{r z%%_Nv7UT}U$HVtkEFz#-Na`)`C#XrXIpUtZ`Otr+`yZEIRIR;KjysB|R(zX1s@h-? zv4uZK;oTb)_vmtd`kgY3w_vi`rzIxSsv%{p!`R^ZvbuC>&3<&D5w1>XGD{%tJUw4A z1o_%|hu&?wy>|`;^reCQyT3k@v&}APY@DSduhLM6V^aj(#K12XFpo{MB zUfa4}Mi%F+uYR2nMv1Vb`7v)s{-J{0WrLdjALCip6nOG2eetjuT(6F)S{>7xBhk`ln#PkS={E< zD-Jgi*OSpH6K9qcH}U|YKiHL7)(G{d5(A8R?LMY|lmY2nYKmZc(7xTy69wPF`~V^U zvs-s*sAqSl_oKuCLl`DUP*t_ZfyCJN5wHiQ{evRv=-FlnMd-{o@7B_L`WBjlo4KHQ zZY0M%Lk`dJrbBICX{nlXGaku}UU%M7;}GYUN6z@`m*dDPBr|fBLU(O#7U-Eg*vp~G z`F&#YcEhjvYC=ys+uj5RM?qwGL}EWunOcNq*Up00@L3UO&R$SYC@zn@s)$lymx}4c zAiTGjIabaA15>p^B~e+~Mh7SU$C#Yjno1Se;e&uY<%t~{b})&aK7xYf1>0#LOQ|ZA zy~}sZ3FbsQ_MJPK*h>j43V|Iv;*hRZL=`jxTU)Giu2H4T%l5%tH!FsatQCGkMpaV7_8)<>PyAbC zjL`zYCk^%Ah|%v}<0vgK1ArSpz}LHed28?QsZRbc8$G#Zv=S;+XE()2hl)VTqo^pr zgQa%AjZLL<68oo@@n7jz!{x}CqQPf>XICXJFlG*0B8m)IWL}^4_QqeYnyz<~R^%3zu%>|(7-acog(h4x$|SwvRM@!6?P4z%9DzIux0X7jK%OEB)le$(-PBDwG(TBwAn7p3>C~Ge*-qK+{%WmVUZt*^vB4cnVl2PROvTt{RBcm@DwYezRh{!m~<={9wY z;w1vu#mGSb04vL!j`=xB6^P%h!bC8IvuRlPD@>{^U=|`;!FC`=+RzZEPAngrj%W-^ zRB#OR{%uGuA^*O$lcvWSzYHC@ltT-i<&-CSpF1vZy3{BfGN~YKNoEjEYp0xMsLM&vBR(%&@g1dZYphpLVX zYZc*tzp%KmOwPow#aw00BpXRY`ZN)U%oiPanJWj$)(v{S=T>Q5C-ku8RhN|@XQCQ7 zd9XM!4y62r)@UIG;y^OW*pWecVUS2dPKNN~^g|bt=@l!l@v4#Zm2kd^{og&GwnETk_DT)Il>jx|Mp!3hAsV+` z)z2Rr=_X4UtIQ9vh^37)BNJMx%|#s6`%pk5QJkY4srH+VifZoq5>5ZypRt*!2Mo>I zm}4&NtMd8V`=5=+A#!0o=dn|2=vLl;eJM_oEVbxDov7PX0!-pkhrVO zb+v)U6X7s7;Pt)rlJ8Pg9|Vik#SNh;I2qA+D25XlY^W$>eH&ubg7%T$g)GG4l;;|YUrxV|w@j3uYTehLLyYSSw&$jU(r4Aq zr5Meqpd544i$SjYUd3x;fX_e>5Q}@1wF`gKpwNZKRC4$gCcn31(4J)`ecJ8;s z#yr7Gn$ZvV|Jjn&{}ofLzr>W|HbEPLPmBKmvfO+ed^|kdGGbDnTAzxa%AabVl3%|T z+3P_bV5o#&$#LyntlUn(4gcC2meBI6#mDx0UP#EfXHRlP+N-+@kW|=v6s%sv10{yhPG z-xxYM`FPfc{{y{1Lci^~PyH8OMhD777)?8an&%5QWKCcgind|#Y>G7%6N$#b4g$E- zFX?P5kbpAV)J?f6YvAD?zOFZS?GqD%aA?>ZL&PH7o-?y+@-c^0fj0 z09OZF73; zGpHK2dPRJ%xz49mpLr=M2bmT~S-sWbB`1EPX5nPjN3l1p7wkccAoC1IYmqg>+IYG$ zE*=2B+9k;mn*Qhk{$8t~BZS`o@IPoY)VU(*d;kCYJ>>1x1ia?VqjH@b9;m2|LZm7& zsCdtKV4n0k@WmHn$@=nQ8KBzv%1xc%VFPP4kXyqwC7z*<8GH+w=<5qCl^IW z+|s+#Bxr$Aa%F2%Le?_S#5juqrbGJ*_C->&+?=2Nk*2#C zPnYy>#GVPu(%{TS*v?jlL*@6Z>5WxmH&%b*Tz=_8`C)pvPc!b<=h`YHCXDBa4oR9w z3rZaWcFI-o1n>gDx60+{1n>Yr`v(9309XQYpSe<{HPwhTNK{oZ^C}T^a)gAlpO7Y% z?{5(u&a(FQV(Zfj{JB+&v&Z&YeW>j9du-*;9+MB=XkB!lVs6>@gB5w7d1dPFNiCnT z|IJW_ndz6mJF1~*s8u+xWzLzUv2XH$X%63(3N}@94cmM7GeD~!T7tm+wew}BqF6c}NW{10EQ z1v||8N~6_HM@cksmzzH_&ZkYg)38HelBv5U^72^YF`A{eU+)&4~ z9c~e62!rtLsnef3>g1{S@Nb)apY1drCS`> zz;0D54B{n*TY2rb`mo4shSGR8vX6-`fOuxy@)Iu##XzYb{Jsv(xG$t8z4)Y3^H&8! z2Ml|KLz@p#?1I^zNR>$MdPkNkc9>g3`t!sv_URy_QhKZ%Su*NqIwv@KJr;N^Z^aZfRHUvHDA@SCjO?p$#<7C}#7borOsrycS}~aKW)-&|Z?D}S znXi?iJ4o*@?LECt(~Z%q7W*PY#VSiiPqJf8M-=wnAc(rZYPbKbWyJ}wy1FEt6bD1JCeuhz|$$ss0Yf2OG z^yIsi&&FR~SI}HP__%qxZT@Yt3zV69eE*-#yLH5JaJ<^jU#R>~24s*?d`0&uwN@_F}b+*hRhQ!gh>OrY6B+4?~G(b4TiU7R< zMj%wRB2|EmFjU|+Gm~))Dm7!3hGop3CNH`rC!OK8oGbH;+p_@K4a0;_V4*}9lO`1N zVufl-cPPKSU)5Uj<(pZ5&^2SVYBM_JlQEMgcHVT0|L}*YITM=1(S_gj4 z#>dv zIf$y=kg117P~b&As){IiX_1Jf?kP`Y%tUKB(2z}ko4TFpZgtXA8TB-ScrF!T9Jj3K z5{p#O7A!2o<7Hh*t@+SqSWm(|%uJhE1}y;iodOatWzqs@<;u#eNb+Bli*z;7f;un_ zrZa9#kAs=URA@#uqy(Kz-3Y^iRPK!n8F-{8jIrVXwhahH*dWBajIcl@I?_fEhXDvf zZE6ekOr$c^KB=de1-e3JvcWsp0FjK0t#84s47Ujx-?DLFAdHkRF>M|M!bXZM!>sP4 zs)n0V=FD2J$xv6ZK)Scf*Qbk{l7#MXxGVtDDwi0Qy*zWv8f{{J7x|6#l? zYOv!f=-m_GsdSxT|9#Fea@F84ofu<84F**V(i~SKX}Y;SP^Z|Y zF0JynjfcJY`2WA~F!x|tb#cmm`degl=n z=QW$l1UF2rl;kU{jT!E*9~~1U4p$ND9G1@WMD1v4<#bCc)C(`aClEs>);+7>x!9ob|ACNR1{ykNC7tRCAbmnTF*M?EVLt1g3ZEa5_!Q3tL> z*)`5?T9z@ku#_nG?cv3x4JX-qv0mGA&n-%IUv_0zkh;7T-YrK5X1BIhxum9N(S`B{ zT-3DDCncjFZNp~WGuu&S5u~p9T$hB`c@X`zF@{KQ6K#ipFbkxjA%hC206y&1u>tWj z0DQ^dn0l;$Gy?G7GXxBOaE@b*t@o-?HBuFKq`{!7iec)*CF!&(y!+krE4=6S@g z9J=Qx&Awg>-|WBTcyD#wpGu?V)!W|O_dWRevSqm2+S~W0Ddf63rcJ_f?G`%GTa)Ml zYKEaf8nT!7dcuZ4@3ab0*Ep_KLo@Gkg*&1b4`SBck4x%k5)Ld^Ko(PU&S=PtEqbNp zlaeU2hM3XJ%8;@VgAcu0MY{ursTv#sk2Py3o^l32z(Rw-0MM6ekO48aJ(0b@UeDOm zOC~IIE#+>^3WLTlh_Hxd=vmU(vIq>a!hq_9a4Y};2qDV|K#?K1zcJhTdVXui&B`nB zIu|>c5HDPkzC2paC%z6Mr-8P6U3P8d-w$rMPkd%O`W6OTZKI~HrT=B7jWk`xUE#$2 zZn%w&C*7$R_Ec#Oqb8)74vYaloHe>Z=?egFcX=L3L$X?W@FbLLr*ojo^ix52*Hjr)hg8CK3&$z1E@du?)?J-g#Zrt8z`%I-yz7^dT2-_ww^mp3}A zMcy+{*!k;1Rk^n6FAr6_#@&88*PIWVx|$pw@I-NBJgb=;t-AEh+HpLzFV;YuZr99YPo5L%Kx*4N(G_XZ6!0=23ajnk)YYG!2 zkqP6z4@cB#EZLzgSu1cDV;h2tKv4uX2m}HN6w8vGTl99#zOVr)G+=}PjAM&FGh{w8 zy?P1KUDL-5sy_9qh2fR=HWb!okvz8CmMnTZ!Viwl;7E47+MbW)z-`+8VkkN%rtC^0 z&#abZQ@qf|9IK5r1BYe+PiJRS006)RK>z>%007~4003?Q006xI{d5-pga2^3fWLIw@SmMNJJpeAT`Iaf6tc`HH#TbP&80 z0PS+|8rzyjja)3JI+@244N8I`h>tf8H=3%$i@Ahv#smAutgK^hM`e*wdk=!uyWwX2 zz)4L>&fC-e?SY^SoD_7ocgo;_Mujm}~6dueiUg+tn73*-!_$Y9~e}Kdo~9J`tH?b#--GumHXcF2;b1pGE|_W3V$m z;SfaNza>2qsL$W~oGXpQX>#~@nHNw(RALazz+l~U&c;B$UvRb<31)I$&zEPr*u%<4 z&GzpZ<8V)w-JSO#mE&m^f*s3?tCgDH&UAEgWIi*Re(gEe`=xf&jZnE680a7tH>4Th z#&ADRnelX5%}jEJxj}c2J)wdq7r|zfHW?{*Cm4+LjV35Nk}}6$C*$g@OjM5EvdE0z zVMWEReAS0&$cz+ikqnZ?2phXyONk0b4Xz@w_my@uWNXYru5S8qgCX84oME}--4cVr z2GbgVj7=$=N0;y}KwznnSOS0rO9&f;Y)1j?7|^@3 zyyx^Tq;pd^oIK{aCJdHXECDI`TG89w49D~hQZRS=7dIH{TsqySTkS7RTW_}!u;Y4n zIO9-es^u+6rB~SYp9#!Kx?+hqw^AVkKCIQkfcpyo-?26t1I`No{|#++Yl`GP=B!c0 z=8O_v2qX}>4N5S}2A?+e-P*#3_I}iJo*MmAG}>DnesA6CF8ObBxEx}+*t+VTy=i}S z_u`aK=8QjyHLomImdPnbu&&d&8##C#sHZxt3QMS5?R$N0)hGRQcFV`rimDdur!kpZ zGhGLZ9+@2Pw_Cr|S61@Yx=$Pgd0Pb@6$MSFmNGD2{NqLYx4#j1iIwh!bFet1U!i0~U1T z5Nr0Y^g$waAdIX~^NXUrEqWLPoI{-x|LHw@2xjaL(D-I{=D0jbxzcvSmd5~#?P*Pa z`dROJHUQQqP0i%jZjnjXyO5V!UI(J-( zv^R9zeiT#wrr6sV$*KG0!@0VIOnbR z0OoYAU=~)BM5;;?bjQ&&Xp*YQ{b!O~UYoMYOgFESX+SxnY28NAP(Epsg;uMErJ_Bk z5sSPR;z3V~$ZRGc0$LLWurM&VN{%bF!lE`dK~&^~sIk4F&I*=fH&~14a(SXQW-$VR z(T?;L%^Fh#an~R)ghjkD!ocK!iej+<1}A_OD!N>lMPSK_ga9ll1PQ_gz!HvP2?NmV z!C?!t8p#mOkK3Gi-4hqKS;2}Cl951`9V_iKeqkA{##&cQEou{Ap4m!SAdKZjMuh$q zY>*|fM%w87td_66iX_omt>@?e=PgwKUn_P@$J*iT;8bA3|;y(gvr}e+M8+z64)Zq*^Xv+ z|5~S4)g}CJAI&E0nm!rBl5pu<-uBTNw$)ELOjr;I!47To1d`FMmgtVEMx&Q_|boLP=cdQECD&9#%s;KTy3e4~lniUWkJm8-@R zMmAJEeJcbZfa-W=S~Rw*jE&Y>1i6&RRbdc@ctk?9F+(pocg-4%!dk3pL&YS7XzKK( zmOY{=w%HaM@QH~kAsC>$9S2M8l~vPpKRM?j>g!|Y#9o>XTvK1i&+vbT|Ze|BE4+h}AHV+;bk2#GXYwri=*Pp8hF0I(ngvGDhupS7RIB<8K8+Xnnkm6ykx5=F;wnMxP(aX<95D>^>t zA6{MVQwtuPm97Kv06;seHNFDz0l>~ooZ_%Cb!IG@|B%dG2r_vN7} zu1O&}oLD*Vpjx4hS`0@w(oc@E4wiJ$-*#OTO*E~jvv2%#uuMC&T-Rq1xB8MtowXDM z&yAAq%r`4K>T;q^=s0|q`J~*Cp0?W%-W2I2s^2v2cVxE}S}TW{st=mRQ*+jQ+gfVZ zi%JM##bHuw93HT`x~D}TSPPn8m@mQs9i)ote&RwZy6e`$8&M<&kf1tzS0ICoO1B*k zwRp1@hM-!D$r`3-P%eIpwFqbI^6ClQRF$djNK7}T7^w(bnW=UTu@UJ3r($N7c(oq0 z$XZq*00S0Yu>lKX0}z3UL+nThBViB@pNxcs1O^KOEQ$e;C4nvM71@9!ir(<75HFz& zk{7VBu!KY`qVqKsc`}Ax7>q-u5dtrggb)TWCdMGc%7|?xT2(zW4ZnIos{}G&i1w^T zj8_ckK>{r7)fmgdAOWk8v40bnickO^yiGEJkS~o2{JmVE8^8wu|E0%pFF}reaPk;A zkJRA>5{OFV8N~kiZS#f%89# z^9Rc$`wPubJhi>u{=rY9D)Ny_>-+E1#Z67SvE7Kbe(Cx1P8LZ9FSMHey5zhI6h3Xm zE>p-~sT|XR*{w<8vpr8G)fue0RAmEpzyjsj`W<<**t6vG;mPcu57jd

BchT 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�->dOXdJo@@If)=~xNB!tk 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

dXec7V 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


B%0Bb6FW-39k!3|V)*v?$m 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 z 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�` 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±M9sD5SoT`0C=rLmAFZ!D$eW-P)CeFNnDx5+e|~p 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 z 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

xjZdf-UDUDivG2 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≈f+jaq5 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

E8Tm*Ri6t{Z*nax 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

Ub5=M?=TC$`DbQ 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 diff --git a/Resources/Prototypes/SoundCollections/NukeMusic.yml b/Resources/Prototypes/SoundCollections/NukeMusic.yml index b57b33fe4c..c6e648c206 100644 --- a/Resources/Prototypes/SoundCollections/NukeMusic.yml +++ b/Resources/Prototypes/SoundCollections/NukeMusic.yml @@ -3,6 +3,5 @@ files: - /Audio/StationEvents/running_out.ogg - /Audio/StationEvents/countdown.ogg - - /Audio/StationEvents/clearly_nuclear.ogg - /Audio/StationEvents/sound_station_14.ogg - /Audio/StationEvents/nukemass.ogg From f4fd64756ff45c421517ebed08fe7e078a9d3e70 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Dec 2024 14:37:03 +0000 Subject: [PATCH 181/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 712c64f637..1fbb24cd60 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: You can now build carp statues with luxury materials. - type: Add - id: 7237 - time: '2024-08-28T13:08:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31261 - author: PopGamer46 changes: - message: Fixed shuttles not being able to FTL onto the station @@ -3938,3 +3931,10 @@ id: 7736 time: '2024-12-19T17:21:28.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33414 +- author: Piras314 + changes: + - message: Removed the nuke song "Clearly Nuclear" on request of the author. + type: Remove + id: 7737 + time: '2024-12-20T14:35:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33971 From 4c0a1348bd40b0920cdf38129948b8f25e7f8f78 Mon Sep 17 00:00:00 2001 From: VideoKompany <135313844+VlaDOS1408@users.noreply.github.com> Date: Fri, 20 Dec 2024 20:17:13 +0400 Subject: [PATCH 182/263] Fix communication console menu (#33655) fix Communication console --- .../UI/CommunicationsConsoleMenu.xaml | 63 ++++++++++++++++--- 1 file changed, 54 insertions(+), 9 deletions(-) diff --git a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml index 83dc42c4a4..b74df979cf 100644 --- a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml +++ b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml @@ -1,17 +1,62 @@ - - -

NwJFdaf!r8m}R$js+XT9xEx9R_G>+(MQt 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�-`^-pJ2=7DqZfI9qtJ&R+4bYe^wapu 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�D_=>xYDWUZbFLXLhONPi8S+qGg`i>x4hf>B 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ⅅ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 HFwqCSHm} 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

public sealed class DefibrillatorSystem : EntitySystem { - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ChatSystem _chatManager = default!; [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly DoAfterSystem _doAfter = default!; @@ -44,9 +42,9 @@ public sealed class DefibrillatorSystem : EntitySystem [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; /// public override void Initialize() @@ -59,6 +57,7 @@ public sealed class DefibrillatorSystem : EntitySystem { if (args.Handled || args.Target is not { } target) return; + args.Handled = TryStartZap(uid, target, args.User, component); } @@ -102,7 +101,7 @@ public sealed class DefibrillatorSystem : EntitySystem return false; } - if (_timing.CurTime < component.NextZapTime) + if (!TryComp(uid, out UseDelayComponent? useDelay) || _useDelay.IsDelayed((uid, useDelay), component.DelayId)) return false; if (!TryComp(target, out var mobState)) @@ -181,8 +180,10 @@ public sealed class DefibrillatorSystem : EntitySystem _audio.PlayPvs(component.ZapSound, uid); _electrocution.TryDoElectrocution(target, null, component.ZapDamage, component.WritheDuration, true, ignoreInsulation: true); - component.NextZapTime = _timing.CurTime + component.ZapDelay; - _appearance.SetData(uid, DefibrillatorVisuals.Ready, false); + if (!TryComp(uid, out var useDelay)) + return; + _useDelay.SetLength((uid, useDelay), component.ZapDelay, component.DelayId); + _useDelay.TryResetDelay((uid, useDelay), id: component.DelayId); ICommonSession? session = null; @@ -240,20 +241,4 @@ public sealed class DefibrillatorSystem : EntitySystem var ev = new TargetDefibrillatedEvent(user, (uid, component)); RaiseLocalEvent(target, ref ev); } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var defib)) - { - if (defib.NextZapTime == null || _timing.CurTime < defib.NextZapTime) - continue; - - _audio.PlayPvs(defib.ReadySound, uid); - _appearance.SetData(uid, DefibrillatorVisuals.Ready, true); - defib.NextZapTime = null; - } - } } diff --git a/Content.Shared/Medical/DefibrillatorComponent.cs b/Content.Shared/Medical/DefibrillatorComponent.cs index e4cd8077d2..f54348d771 100644 --- a/Content.Shared/Medical/DefibrillatorComponent.cs +++ b/Content.Shared/Medical/DefibrillatorComponent.cs @@ -12,22 +12,9 @@ namespace Content.Shared.Medical; /// person back into the world of the living. /// Uses ItemToggleComponent ///
-[RegisterComponent, NetworkedComponent, AutoGenerateComponentPause] +[RegisterComponent, NetworkedComponent] public sealed partial class DefibrillatorComponent : Component { - /// - /// The time at which the zap cooldown will be completed - /// - [DataField("nextZapTime", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] - [AutoPausedField] - public TimeSpan? NextZapTime; - - /// - /// The minimum time between zaps - /// - [DataField("zapDelay"), ViewVariables(VVAccess.ReadWrite)] - public TimeSpan ZapDelay = TimeSpan.FromSeconds(5); - /// /// How much damage is healed from getting zapped. /// @@ -46,6 +33,18 @@ public sealed partial class DefibrillatorComponent : Component [DataField("writheDuration"), ViewVariables(VVAccess.ReadWrite)] public TimeSpan WritheDuration = TimeSpan.FromSeconds(3); + /// + /// ID of the cooldown use delay. + /// + [DataField] + public string DelayId = "defib-delay"; + + /// + /// Cooldown after using the defibrillator. + /// + [DataField] + public TimeSpan ZapDelay = TimeSpan.FromSeconds(5); + /// /// How long the doafter for zapping someone takes /// @@ -80,12 +79,6 @@ public sealed partial class DefibrillatorComponent : Component public SoundSpecifier? ReadySound = new SoundPathSpecifier("/Audio/Items/Defib/defib_ready.ogg"); } -[Serializable, NetSerializable] -public enum DefibrillatorVisuals : byte -{ - Ready -} - [Serializable, NetSerializable] public sealed partial class DefibrillatorZapDoAfterEvent : SimpleDoAfterEvent { diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml index fb0f3d52c6..e188794b81 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml @@ -13,9 +13,6 @@ map: [ "enum.ToggleVisuals.Layer" ] visible: false shader: unshaded - - state: ready - map: ["enum.PowerDeviceVisualLayers.Powered"] - shader: unshaded - type: Appearance - type: GenericVisualizer visuals: @@ -23,10 +20,6 @@ enum.ToggleVisuals.Layer: True: { visible: true } False: { visible: false } - enum.DefibrillatorVisuals.Ready: - enum.PowerDeviceVisualLayers.Powered: - True: { visible: true } - False: { visible: false } - type: Item size: Large - type: Speech diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json index 441fd4f5fe..0b08a6e6ee 100644 --- a/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json @@ -18,9 +18,6 @@ "name": "inhand-right", "directions": 4 }, - { - "name": "ready" - }, { "name": "screen" } diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/ready.png b/Resources/Textures/Objects/Specific/Medical/defib.rsi/ready.png deleted file mode 100644 index 9da205f381f4400de0c6fdd523bf0bc7f4d0ecc7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}uAVNAArY;~ z2@7zyBS-dZ=n^xpCO} zAXAnvkBtAbySgUtNW8mgDbI8~% zUwzeU+vY8^6b^4=%Dc6kv4s6ay6sQ?O)@%9I=U~Xym-%$w5VlSpuww#ivkL2EDYbh X)fM@cY~p4B0#8>zmvv4FO$-bG2p~qq delta 131 zcmX@lxPWnjN)2Oikh>GZx^prw85kI%JY5_^B3hFZBv=%Zk4%M#}{l~qtwJ}e+2+N-!P?`BY2xWyNPz{`wJ7*@3%=vMcaxTYK3 h6 Date: Fri, 20 Dec 2024 21:28:04 +0000 Subject: [PATCH 188/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 50464c990f..daabb84286 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: themias - changes: - - message: Fixed the nuke disk being marked 'left behind' when escaping with it - on the shuttle - type: Fix - id: 7240 - time: '2024-08-28T20:05:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31602 - author: Beck Thompson changes: - message: Gold and silver ring, gold and silver diamond ring, gold and silver gem @@ -3938,3 +3930,10 @@ id: 7739 time: '2024-12-20T20:34:53.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33970 +- author: Beck Thompson + changes: + - message: Defibrillator cooldowns are now clearly visible. + type: Tweak + id: 7740 + time: '2024-12-20T21:26:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31251 From e4974cba25a7aeaf2de1990c09167e0aa53a4a43 Mon Sep 17 00:00:00 2001 From: AverageNotDoingAnythingEnjoyer <113719989+AverageNotDoingAnythingEnjoyer@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:38:27 +0300 Subject: [PATCH 189/263] Nanotrasen, Syndicate factions are now hostile to Dragons and Carps (#32515) * Weh Weh * Now hostiles too! Added Dragon to hostile factions for Hostiles * Nah Better not do this, I think --- Resources/Prototypes/ai_factions.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/ai_factions.yml b/Resources/Prototypes/ai_factions.yml index 0ed8b1eb65..c2b62b5bdc 100644 --- a/Resources/Prototypes/ai_factions.yml +++ b/Resources/Prototypes/ai_factions.yml @@ -17,6 +17,7 @@ - Xeno - Zombie - Revolutionary + - Dragon - AllHostile - type: npcFaction @@ -59,6 +60,7 @@ - Xeno - PetsNT - Zombie + - Dragon - AllHostile - type: npcFaction From bbceffac0ec92f2df871b92d9aa93d2db0bcca92 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Dec 2024 21:39:33 +0000 Subject: [PATCH 190/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index daabb84286..c14741a730 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Beck Thompson - changes: - - message: Gold and silver ring, gold and silver diamond ring, gold and silver gem - ring. They all can be obtained in salvage loot pools. - type: Add - id: 7241 - time: '2024-08-28T20:48:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31372 - author: RumiTiger changes: - message: Cherry has been added to the game! @@ -3937,3 +3929,11 @@ id: 7740 time: '2024-12-20T21:26:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31251 +- author: J C Denton + changes: + - message: Syndicate and NanoTrasen NPCs and turrets are now hostile to Dragons + and Carps + type: Tweak + id: 7741 + time: '2024-12-20T21:38:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32515 From 919fdc07986537658bab0bf55f49118ef4bed8eb Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Fri, 20 Dec 2024 23:15:40 +0100 Subject: [PATCH 191/263] Add description of tool qualities to entity (#32436) * Add description of tool qualities to entity * LMAO I FORGOT FUCKING FTL FILE * minor cleanup --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Tools/Systems/SharedToolSystem.cs | 30 +++++++++++++++++++ .../en-US/tools/components/tool-component.ftl | 1 + 2 files changed, 31 insertions(+) create mode 100644 Resources/Locale/en-US/tools/components/tool-component.ftl diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index 4c7383a38c..95377d913a 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -1,6 +1,7 @@ using Content.Shared.Administration.Logs; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.DoAfter; +using Content.Shared.Examine; using Content.Shared.Interaction; using Content.Shared.Item.ItemToggle; using Content.Shared.Maps; @@ -41,6 +42,7 @@ public abstract partial class SharedToolSystem : EntitySystem InitializeTile(); InitializeWelder(); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnExamine); } private void OnDoAfter(EntityUid uid, ToolComponent tool, ToolDoAfterEvent args) @@ -57,6 +59,34 @@ public abstract partial class SharedToolSystem : EntitySystem RaiseLocalEvent((object) ev); } + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + // If the tool has no qualities, exit early + if (ent.Comp.Qualities.Count == 0) + return; + + var message = new FormattedMessage(); + + // Create a list to store tool quality names + var toolQualities = new List(); + + // Loop through tool qualities and add localized names to the list + foreach (var toolQuality in ent.Comp.Qualities) + { + if (_protoMan.TryIndex(toolQuality ?? string.Empty, out var protoToolQuality)) + { + toolQualities.Add(Loc.GetString(protoToolQuality.Name)); + } + } + + // Combine the qualities into a single string and localize the final message + var qualitiesString = string.Join(", ", toolQualities); + + // Add the localized message to the FormattedMessage object + message.AddMarkupPermissive(Loc.GetString("tool-component-qualities", ("qualities", qualitiesString))); + args.PushMessage(message); + } + public void PlayToolSound(EntityUid uid, ToolComponent tool, EntityUid? user) { if (tool.UseSound == null) diff --git a/Resources/Locale/en-US/tools/components/tool-component.ftl b/Resources/Locale/en-US/tools/components/tool-component.ftl new file mode 100644 index 0000000000..0c9e60cdc6 --- /dev/null +++ b/Resources/Locale/en-US/tools/components/tool-component.ftl @@ -0,0 +1 @@ +tool-component-qualities = This item can be used for [color=yellow]{ $qualities }[/color]. From 50cc90fb4137f94e2309e03130a7656d9658f001 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Dec 2024 22:16:46 +0000 Subject: [PATCH 192/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c14741a730..82e0d109b5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: RumiTiger - changes: - - message: Cherry has been added to the game! - type: Add - - message: The recipe for cherry pie has been reintroduced to the game! - type: Add - id: 7242 - time: '2024-08-29T01:30:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28962 - author: SlamBamActionman, Graded changes: - message: Added administration glasses to Captain and HoP lockers! @@ -3937,3 +3928,10 @@ id: 7741 time: '2024-12-20T21:38:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32515 +- author: lzk228 + changes: + - message: Item's tool function now shows on examine. + type: Add + id: 7742 + time: '2024-12-20T22:15:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32436 From 3a917bcb561b2b5cbff280b3517aca5571f13a6d Mon Sep 17 00:00:00 2001 From: pocl v <24708225+Pinkbat5@users.noreply.github.com> Date: Fri, 20 Dec 2024 17:34:44 -0500 Subject: [PATCH 193/263] Diona chirping & Nymph vocals (#32511) * Adds chirping to adult diona * Added vocals for diona nymph * Nymphs now have a speechsound --- Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 7 +++++++ Resources/Prototypes/Entities/Mobs/Species/diona.yml | 1 + Resources/Prototypes/Voice/speech_emote_sounds.yml | 2 ++ Resources/Prototypes/Voice/speech_emotes.yml | 6 +++++- 4 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index b776a156fe..176c201789 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -3458,6 +3458,13 @@ gender: epicene - type: Speech speechVerb: Plant + speechSounds: Alto + allowedEmotes: ['Chirp'] + - type: Vocal + sounds: + Male: UnisexDiona + Female: UnisexDiona + Unsexed: UnisexDiona - type: Tag tags: - DoorBumpOpener diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index fdb7ac1e95..5ae09c4d82 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -86,6 +86,7 @@ - MobLayer - type: Speech speechVerb: Plant + allowedEmotes: ['Chirp'] - type: Vocal sounds: Male: UnisexDiona diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 96726eb7fe..a45260093f 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -237,6 +237,8 @@ path: /Audio/Voice/Diona/diona_scream.ogg Laugh: collection: DionaLaugh + Chirp: + path: /Audio/Animals/nymph_chirp.ogg Honk: collection: BikeHorn Weh: diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index 21a884ed4c..9de4bb2b70 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -347,11 +347,15 @@ id: Chirp name: chat-emote-name-chirp category: Vocal + available: false icon: Interface/Emotes/chirp.png whitelist: - requireAll: true components: - Nymph + - Vocal + blacklist: + components: + - BorgChassis chatMessages: ["chat-emote-msg-chirp"] chatTriggers: - chirp From 9a4f9561e6adbcbd544f3e57b0449e740c0f92a4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Dec 2024 22:35:50 +0000 Subject: [PATCH 194/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 82e0d109b5..09122fd890 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SlamBamActionman, Graded - changes: - - message: Added administration glasses to Captain and HoP lockers! - type: Add - id: 7243 - time: '2024-08-29T01:58:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30447 - author: osjarw changes: - message: Fix air alarms not checking sensor states upon power returning. @@ -3935,3 +3928,12 @@ id: 7742 time: '2024-12-20T22:15:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32436 +- author: Pinkbat5 + changes: + - message: Diona can now chirp. + type: Add + - message: Nymphs can scream and laugh like adult diona. + type: Add + id: 7743 + time: '2024-12-20T22:34:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32511 From 03a54e90f5deb8002be6c4b068d5727579e036a8 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sat, 21 Dec 2024 03:14:08 +0100 Subject: [PATCH 195/263] Increase syndicate uplink discount amount to 6. (#33950) * Increase uplink discounts from 3 to 7 * nevermind, 6 --- Content.IntegrationTests/Tests/StoreTests.cs | 6 +++--- Content.Server/StoreDiscount/Systems/StoreDiscountSystem.cs | 2 +- Resources/Prototypes/Catalog/discount_categories.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Content.IntegrationTests/Tests/StoreTests.cs b/Content.IntegrationTests/Tests/StoreTests.cs index 877db1d9a0..3f010245d8 100644 --- a/Content.IntegrationTests/Tests/StoreTests.cs +++ b/Content.IntegrationTests/Tests/StoreTests.cs @@ -79,11 +79,11 @@ public sealed class StoreTests var discountComponent = entManager.GetComponent(pda); Assert.That( discountComponent.Discounts, - Has.Exactly(3).Items, - $"After applying discount total discounted items count was expected to be '3' " + Has.Exactly(6).Items, + $"After applying discount total discounted items count was expected to be '6' " + $"but was actually {discountComponent.Discounts.Count}- this can be due to discount " + $"categories settings (maxItems, weight) not being realistically set, or default " - + $"discounted count being changed from '3' in StoreDiscountSystem.InitializeDiscounts." + + $"discounted count being changed from '6' in StoreDiscountSystem.InitializeDiscounts." ); var discountedListingItems = storeComponent.FullListingsCatalog .Where(x => x.IsCostModified) diff --git a/Content.Server/StoreDiscount/Systems/StoreDiscountSystem.cs b/Content.Server/StoreDiscount/Systems/StoreDiscountSystem.cs index 9b4a0481aa..c993c14694 100644 --- a/Content.Server/StoreDiscount/Systems/StoreDiscountSystem.cs +++ b/Content.Server/StoreDiscount/Systems/StoreDiscountSystem.cs @@ -71,7 +71,7 @@ public sealed class StoreDiscountSystem : EntitySystem private IReadOnlyList InitializeDiscounts( IReadOnlyCollection listings, - int totalAvailableDiscounts = 3 + int totalAvailableDiscounts = 6 ) { // Get list of categories with cumulative weights. diff --git a/Resources/Prototypes/Catalog/discount_categories.yml b/Resources/Prototypes/Catalog/discount_categories.yml index 5c512e9009..8e1ef010f8 100644 --- a/Resources/Prototypes/Catalog/discount_categories.yml +++ b/Resources/Prototypes/Catalog/discount_categories.yml @@ -1,7 +1,7 @@ - type: discountCategory id: rareDiscounts # Dirty-cheap items that are rarely used and can be discounted to 0-ish cost to encourage usage. weight: 18 - maxItems: 2 + maxItems: 4 - type: discountCategory id: usualDiscounts # Cheap items that are used not very often. @@ -10,4 +10,4 @@ - type: discountCategory id: veryRareDiscounts # Casually used items that are widely used but can be (rarely) discounted for epic lulz. weight: 2 - maxItems: 1 + maxItems: 2 From 00f12e092a24be1cf91c64cf7de698aa70bccd29 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 21 Dec 2024 02:15:15 +0000 Subject: [PATCH 196/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 09122fd890..86765a3258 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: osjarw - changes: - - message: Fix air alarms not checking sensor states upon power returning. - type: Fix - id: 7244 - time: '2024-08-29T02:43:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29857 - author: Winkarst-cpu changes: - message: Now railings render over tables. @@ -3937,3 +3930,10 @@ id: 7743 time: '2024-12-20T22:34:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32511 +- author: ScarKy0 + changes: + - message: Syndicate uplinks now have 6 discounts instead of 3. + type: Tweak + id: 7744 + time: '2024-12-21T02:14:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33950 From 12c5c7e91b6f2258a30fb0d159fcc0c8c303656e Mon Sep 17 00:00:00 2001 From: JustinWinningham Date: Fri, 20 Dec 2024 19:28:46 -0800 Subject: [PATCH 197/263] Wood walls from barricades (#33902) * Wood wall is now built from barricade congraph and on top of a barricade instead of using rods * Fixed construction instructions for wooden wall * Wood wall is now built from barricade congraph and on top of a barricade instead of using rods * Fixed construction instructions for wooden wall * fixed linter error * Update Resources/Prototypes/Entities/Structures/Walls/walls.yml Reasonable suggestion Co-authored-by: Thomas <87614336+Aeshus@users.noreply.github.com> * Update Resources/Prototypes/Entities/Structures/Walls/walls.yml spelling error Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * removed ability to build wall from 'junk' wood barrier' * fixed ability to pry overlay barricades and not allow them to extend to full wood walls * renamed incorrectly named entity * fixed default entity graph so as to not complain for unit tests * corrected my incorrect assumptions and fixed destroy cost --------- Co-authored-by: Thomas <87614336+Aeshus@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Entities/Structures/Walls/walls.yml | 5 +- .../Entities/Structures/barricades.yml | 7 ++- .../Graphs/structures/barricades.yml | 46 +++++++++++++++++++ .../Construction/Graphs/structures/girder.yml | 23 ---------- .../Recipes/Construction/structures.yml | 4 +- 5 files changed, 56 insertions(+), 29 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 8cdd9e9e79..1e1bec0c18 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1106,13 +1106,14 @@ parent: BaseWall id: WallWood name: wood wall + description: The traditional greytide defense. components: - type: Sprite sprite: Structures/Walls/wood.rsi - type: Icon sprite: Structures/Walls/wood.rsi - type: Construction - graph: Girder + graph: Barricade node: woodWall - type: Destructible thresholds: @@ -1133,7 +1134,7 @@ sound: collection: WoodDestroyHeavy - !type:ChangeConstructionNodeBehavior - node: girder + node: Barricade - !type:DoActsBehavior acts: ["Destruction"] - type: IconSmooth diff --git a/Resources/Prototypes/Entities/Structures/barricades.yml b/Resources/Prototypes/Entities/Structures/barricades.yml index 7f697519cd..cd6e644176 100644 --- a/Resources/Prototypes/Entities/Structures/barricades.yml +++ b/Resources/Prototypes/Entities/Structures/barricades.yml @@ -38,8 +38,8 @@ - !type:SpawnEntitiesBehavior spawn: MaterialWoodPlank1: - min: 3 - max: 3 + min: 1 + max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - type: AtmosExposed @@ -73,6 +73,9 @@ - type: Sprite sprite: Structures/barricades.rsi state: barricade + - type: Construction + graph: BarricadeCovering + node: barricadecover #Directional Barricade - type: entity diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/barricades.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/barricades.yml index 11d84ebbb7..3149290125 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/barricades.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/barricades.yml @@ -26,6 +26,25 @@ steps: - tool: Prying doAfter: 5 + - to: woodWall + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 2 + doAfter: 2 + - node: woodWall + entity: WallWood + edges: + - to: barricadefull + completed: + - !type:GivePrototype + prototype: MaterialWoodPlank1 + amount: 2 + steps: + - tool: Prying + doAfter: 10 - type: constructionGraph id: BarricadeDirectional @@ -53,3 +72,30 @@ steps: - tool: Prying doAfter: 5 + +- type: constructionGraph + id: BarricadeCovering + start: start + graph: + - node: start + edges: + - to: barricadecover + steps: + - material: WoodPlank + amount: 2 + doAfter: 3 + - node: barricadecover + entity: BarricadeBlock + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 2 #returns 1 less as one breaks + - !type:DeleteEntity { } + conditions: + - !type:EntityAnchored + anchored: true + steps: + - tool: Prying + doAfter: 2 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml index dcff7d6f5e..99525b653b 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml @@ -51,17 +51,6 @@ amount: 2 doAfter: 1 - - to: woodWall - completed: - - !type:SnapToGrid - southRotation: true - conditions: - - !type:EntityAnchored {} - steps: - - material: WoodPlank - amount: 2 - doAfter: 2 - - to: uraniumWall completed: - !type:SnapToGrid @@ -173,18 +162,6 @@ - tool: Welding doAfter: 10 - - node: woodWall - entity: WallWood - edges: - - to: girder - completed: - - !type:GivePrototype - prototype: MaterialWoodPlank1 - amount: 2 - steps: - - tool: Prying - doAfter: 10 - - node: uraniumWall entity: WallUranium edges: diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 7781a1be88..435524c854 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -105,11 +105,11 @@ canBuildInImpassable: false conditions: - !type:TileNotBlocked -# here + - type: construction name: wood wall id: WoodWall - graph: Girder + graph: Barricade startNode: start targetNode: woodWall category: construction-category-structures From 1f859167fd4cca7a17099bdc971a4a130185207d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 21 Dec 2024 03:29:53 +0000 Subject: [PATCH 198/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 86765a3258..00b3c81806 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now railings render over tables. - type: Tweak - id: 7245 - time: '2024-08-29T03:04:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31589 - author: metalgearsloth changes: - message: Fix storage UI being buggy. @@ -3937,3 +3930,10 @@ id: 7744 time: '2024-12-21T02:14:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33950 +- author: JustinWinningham + changes: + - message: Wood walls no longer require girders and are built from barricades instead. + type: Tweak + id: 7745 + time: '2024-12-21T03:28:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33902 From 9f4aa1ebe0532be6f305d0dcc504ded088f6fbc4 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 21 Dec 2024 15:54:11 +1100 Subject: [PATCH 199/263] Implement some field-level deltas (#28242) * Update GasTileOverlayState * Update DecalGridState * Update NavMapState * poke * poke2 * poke3 * Implement field deltas for guns * Content done * Update --------- Co-authored-by: ElectroJr --- .../Ranged/Systems/GunSystem.Ballistic.cs | 2 + .../Ranged/Systems/GunSystem.Solution.cs | 7 +- .../Nutrition/Components/HungerComponent.cs | 2 +- .../Nutrition/Components/ThirstComponent.cs | 2 +- .../Nutrition/EntitySystems/HungerSystem.cs | 3 +- .../Nutrition/EntitySystems/ThirstSystem.cs | 3 +- .../Ranged/Components/AmmoComponent.cs | 16 ++-- .../BallisticAmmoProviderComponent.cs | 6 +- .../Weapons/Ranged/Components/GunComponent.cs | 2 +- .../SolutionAmmoProviderComponent.cs | 14 ++-- .../Systems/SharedGunSystem.Ballistic.cs | 10 +-- .../Weapons/Ranged/Systems/SharedGunSystem.cs | 76 +++++++++++++++---- 12 files changed, 97 insertions(+), 46 deletions(-) diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs index 798be3fc8e..60680deaaa 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs @@ -15,6 +15,7 @@ public sealed partial class GunSystem { var existing = component.Entities[^1]; component.Entities.RemoveAt(component.Entities.Count - 1); + DirtyField(uid, component, nameof(BallisticAmmoProviderComponent.Entities)); Containers.Remove(existing, component.Container); EnsureShootable(existing); @@ -22,6 +23,7 @@ public sealed partial class GunSystem else if (component.UnspawnedCount > 0) { component.UnspawnedCount--; + DirtyField(uid, component, nameof(BallisticAmmoProviderComponent.UnspawnedCount)); ent = Spawn(component.Proto, coordinates); EnsureShootable(ent.Value); } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Solution.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Solution.cs index cc36132e8e..d0898efaaf 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Solution.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Solution.cs @@ -39,8 +39,9 @@ public sealed partial class GunSystem if (solution == null && !_solutionContainer.TryGetSolution(uid, component.SolutionId, out _, out solution)) { component.Shots = shots; + DirtyField(uid, component, nameof(SolutionAmmoProviderComponent.Shots)); component.MaxShots = maxShots; - Dirty(uid, component); + DirtyField(uid, component, nameof(SolutionAmmoProviderComponent.MaxShots)); return; } @@ -48,8 +49,10 @@ public sealed partial class GunSystem maxShots = (int) (solution.MaxVolume / component.FireCost); component.Shots = shots; + DirtyField(uid, component, nameof(SolutionAmmoProviderComponent.Shots)); + component.MaxShots = maxShots; - Dirty(uid, component); + DirtyField(uid, component, nameof(SolutionAmmoProviderComponent.MaxShots)); UpdateSolutionAppearance(uid, component); } diff --git a/Content.Shared/Nutrition/Components/HungerComponent.cs b/Content.Shared/Nutrition/Components/HungerComponent.cs index 33abb257dd..d5db991b1a 100644 --- a/Content.Shared/Nutrition/Components/HungerComponent.cs +++ b/Content.Shared/Nutrition/Components/HungerComponent.cs @@ -10,7 +10,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Generic; namespace Content.Shared.Nutrition.Components; [RegisterComponent, NetworkedComponent, Access(typeof(HungerSystem))] -[AutoGenerateComponentState, AutoGenerateComponentPause] +[AutoGenerateComponentState(fieldDeltas: true), AutoGenerateComponentPause] public sealed partial class HungerComponent : Component { /// diff --git a/Content.Shared/Nutrition/Components/ThirstComponent.cs b/Content.Shared/Nutrition/Components/ThirstComponent.cs index f3ac881361..5c32b4af28 100644 --- a/Content.Shared/Nutrition/Components/ThirstComponent.cs +++ b/Content.Shared/Nutrition/Components/ThirstComponent.cs @@ -7,7 +7,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Nutrition.Components; [RegisterComponent, NetworkedComponent, Access(typeof(ThirstSystem))] -[AutoGenerateComponentState, AutoGenerateComponentPause] +[AutoGenerateComponentState(fieldDeltas: true), AutoGenerateComponentPause] public sealed partial class ThirstComponent : Component { // Base stuff diff --git a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs index 063c1f6bb1..a8697ffee4 100644 --- a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs @@ -122,7 +122,7 @@ public sealed class HungerSystem : EntitySystem { entity.Comp.LastAuthoritativeHungerChangeTime = _timing.CurTime; entity.Comp.LastAuthoritativeHungerValue = ClampHungerWithinThresholds(entity.Comp, value); - Dirty(entity); + DirtyField(entity.Owner, entity.Comp, nameof(HungerComponent.LastAuthoritativeHungerChangeTime)); } private void UpdateCurrentThreshold(EntityUid uid, HungerComponent? component = null) @@ -133,6 +133,7 @@ public sealed class HungerSystem : EntitySystem var calculatedHungerThreshold = GetHungerThreshold(component); if (calculatedHungerThreshold == component.CurrentThreshold) return; + component.CurrentThreshold = calculatedHungerThreshold; DoHungerThresholdEffects(uid, component); } diff --git a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs index 0b2bb2e0ef..2937c48d48 100644 --- a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs @@ -102,7 +102,8 @@ public sealed class ThirstSystem : EntitySystem component.ThirstThresholds[ThirstThreshold.Dead], component.ThirstThresholds[ThirstThreshold.OverHydrated] ); - Dirty(uid, component); + + EntityManager.DirtyField(uid, component, nameof(ThirstComponent.CurrentThirst)); } private bool IsMovementThreshold(ThirstThreshold threshold) diff --git a/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs b/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs index 3e1111a97d..13cee5bad6 100644 --- a/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs @@ -13,27 +13,27 @@ public partial class AmmoComponent : Component, IShootable { // Muzzle flash stored on ammo because if we swap a gun to whatever we may want to override it. - [ViewVariables(VVAccess.ReadWrite), DataField("muzzleFlash", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string? MuzzleFlash = "MuzzleFlashEffect"; + [DataField] + public EntProtoId? MuzzleFlash = "MuzzleFlashEffect"; } /// /// Spawns another prototype to be shot instead of itself. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(fieldDeltas: true)] public sealed partial class CartridgeAmmoComponent : AmmoComponent { - [ViewVariables(VVAccess.ReadWrite), DataField("proto", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Prototype = default!; + [ViewVariables(VVAccess.ReadWrite), DataField("proto", required: true)] + public EntProtoId Prototype; - [ViewVariables(VVAccess.ReadWrite), DataField("spent")] + [ViewVariables(VVAccess.ReadWrite), DataField] [AutoNetworkedField] - public bool Spent = false; + public bool Spent; /// /// Caseless ammunition. /// - [DataField("deleteOnSpawn")] + [DataField] public bool DeleteOnSpawn; [DataField("soundEject")] diff --git a/Content.Shared/Weapons/Ranged/Components/BallisticAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/BallisticAmmoProviderComponent.cs index f825f10550..ee806125e7 100644 --- a/Content.Shared/Weapons/Ranged/Components/BallisticAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/BallisticAmmoProviderComponent.cs @@ -7,13 +7,13 @@ using Robust.Shared.Prototypes; namespace Content.Shared.Weapons.Ranged.Components; -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedGunSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(fieldDeltas: true), Access(typeof(SharedGunSystem))] public sealed partial class BallisticAmmoProviderComponent : Component { - [ViewVariables(VVAccess.ReadWrite), DataField] + [DataField] public SoundSpecifier? SoundRack = new SoundPathSpecifier("/Audio/Weapons/Guns/Cock/smg_cock.ogg"); - [ViewVariables(VVAccess.ReadWrite), DataField] + [DataField] public SoundSpecifier? SoundInsert = new SoundPathSpecifier("/Audio/Weapons/Guns/MagIn/bullet_insert.ogg"); [ViewVariables(VVAccess.ReadWrite), DataField] diff --git a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs index 98b1d2fe2a..3ec832613d 100644 --- a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs @@ -8,7 +8,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Weapons.Ranged.Components; -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(fieldDeltas: true), AutoGenerateComponentPause] [Access(typeof(SharedGunSystem))] public sealed partial class GunComponent : Component { diff --git a/Content.Shared/Weapons/Ranged/Components/SolutionAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/SolutionAmmoProviderComponent.cs index d936f3a9e2..19c6af69b1 100644 --- a/Content.Shared/Weapons/Ranged/Components/SolutionAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/SolutionAmmoProviderComponent.cs @@ -5,38 +5,38 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy namespace Content.Shared.Weapons.Ranged.Components; -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedGunSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(fieldDeltas: true), Access(typeof(SharedGunSystem))] public sealed partial class SolutionAmmoProviderComponent : Component { /// /// The solution where reagents are extracted from for the projectile. /// - [DataField("solutionId", required: true), AutoNetworkedField] + [DataField(required: true), AutoNetworkedField] public string SolutionId = default!; /// /// How much reagent it costs to fire once. /// - [DataField("fireCost"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + [DataField, AutoNetworkedField] public float FireCost = 5; /// /// The amount of shots currently available. /// used for network predictions. /// - [DataField("shots"), ViewVariables, AutoNetworkedField] + [DataField, AutoNetworkedField] public int Shots; /// /// The max amount of shots the gun can fire. /// used for network prediction /// - [DataField("maxShots"), ViewVariables, AutoNetworkedField] + [DataField, AutoNetworkedField] public int MaxShots; /// /// The prototype that's fired by the gun. /// - [DataField("proto", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] - public string Prototype = default!; + [DataField("proto")] + public EntProtoId Prototype; } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs index 9ef5cbd702..044f75dbc9 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs @@ -57,7 +57,7 @@ public abstract partial class SharedGunSystem Audio.PlayPredicted(component.SoundInsert, uid, args.User); args.Handled = true; UpdateBallisticAppearance(uid, component); - Dirty(uid, component); + DirtyField(uid, component, nameof(BallisticAmmoProviderComponent.Entities)); } private void OnBallisticAfterInteract(EntityUid uid, BallisticAmmoProviderComponent component, AfterInteractEvent args) @@ -194,10 +194,9 @@ public abstract partial class SharedGunSystem !Paused(uid)) { gunComp.NextFire = Timing.CurTime + TimeSpan.FromSeconds(1 / gunComp.FireRateModified); - Dirty(uid, gunComp); + DirtyField(uid, gunComp, nameof(GunComponent.NextFire)); } - Dirty(uid, component); Audio.PlayPredicted(component.SoundRack, uid, user); var shots = GetBallisticShots(component); @@ -228,7 +227,7 @@ public abstract partial class SharedGunSystem { component.UnspawnedCount = Math.Max(0, component.Capacity - component.Container.ContainedEntities.Count); UpdateBallisticAppearance(uid, component); - Dirty(uid, component); + DirtyField(uid, component, nameof(BallisticAmmoProviderComponent.UnspawnedCount)); } } @@ -249,18 +248,19 @@ public abstract partial class SharedGunSystem args.Ammo.Add((entity, EnsureShootable(entity))); component.Entities.RemoveAt(component.Entities.Count - 1); + DirtyField(uid, component, nameof(BallisticAmmoProviderComponent.Entities)); Containers.Remove(entity, component.Container); } else if (component.UnspawnedCount > 0) { component.UnspawnedCount--; + DirtyField(uid, component, nameof(BallisticAmmoProviderComponent.UnspawnedCount)); entity = Spawn(component.Proto, args.Coordinates); args.Ammo.Add((entity, EnsureShootable(entity))); } } UpdateBallisticAppearance(uid, component); - Dirty(uid, component); } private void OnBallisticAmmoCount(EntityUid uid, BallisticAmmoProviderComponent component, ref GetAmmoCountEvent args) diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index c7cc09e618..62e63501ee 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -119,7 +119,7 @@ public abstract partial class SharedGunSystem : EntitySystem if (melee.NextAttack > component.NextFire) { component.NextFire = melee.NextAttack; - Dirty(uid, component); + EntityManager.DirtyField(uid, component, nameof(MeleeWeaponComponent.NextAttack)); } } @@ -200,7 +200,7 @@ public abstract partial class SharedGunSystem : EntitySystem gun.ShotCounter = 0; gun.ShootCoordinates = null; gun.Target = null; - Dirty(uid, gun); + EntityManager.DirtyField(uid, gun, nameof(GunComponent.ShotCounter)); } /// @@ -211,6 +211,7 @@ public abstract partial class SharedGunSystem : EntitySystem gun.ShootCoordinates = toCoordinates; AttemptShoot(user, gunUid, gun); gun.ShotCounter = 0; + EntityManager.DirtyField(gunUid, gun, nameof(GunComponent.ShotCounter)); } /// @@ -228,7 +229,9 @@ public abstract partial class SharedGunSystem : EntitySystem { if (gun.FireRateModified <= 0f || !_actionBlockerSystem.CanAttack(user)) + { return; + } var toCoordinates = gun.ShootCoordinates; @@ -277,7 +280,7 @@ public abstract partial class SharedGunSystem : EntitySystem } // NextFire has been touched regardless so need to dirty the gun. - Dirty(gunUid, gun); + EntityManager.DirtyField(gunUid, gun, nameof(GunComponent.NextFire)); // Get how many shots we're actually allowed to make, due to clip size or otherwise. // Don't do this in the loop so we still reset NextFire. @@ -331,6 +334,7 @@ public abstract partial class SharedGunSystem : EntitySystem // Even if we don't actually shoot update the ShotCounter. This is to avoid spamming empty sounds // where the gun may be SemiAuto or Burst. gun.ShotCounter += shots; + EntityManager.DirtyField(gunUid, gun, nameof(GunComponent.ShotCounter)); if (ev.Ammo.Count <= 0) { @@ -387,8 +391,6 @@ public abstract partial class SharedGunSystem : EntitySystem if (_gravity.IsWeightless(user, userPhysics)) CauseImpulse(fromCoordinates, toCoordinates.Value, user, userPhysics); } - - Dirty(gunUid, gun); } public void Shoot( @@ -442,7 +444,7 @@ public abstract partial class SharedGunSystem : EntitySystem protected void SetCartridgeSpent(EntityUid uid, CartridgeAmmoComponent cartridge, bool spent) { if (cartridge.Spent != spent) - Dirty(uid, cartridge); + DirtyField(uid, cartridge, nameof(CartridgeAmmoComponent.Spent)); cartridge.Spent = spent; Appearance.SetData(uid, AmmoVisuals.Spent, spent); @@ -541,17 +543,59 @@ public abstract partial class SharedGunSystem : EntitySystem RaiseLocalEvent(gun, ref ev); - comp.SoundGunshotModified = ev.SoundGunshot; - comp.CameraRecoilScalarModified = ev.CameraRecoilScalar; - comp.AngleIncreaseModified = ev.AngleIncrease; - comp.AngleDecayModified = ev.AngleDecay; - comp.MaxAngleModified = ev.MaxAngle; - comp.MinAngleModified = ev.MinAngle; - comp.ShotsPerBurstModified = ev.ShotsPerBurst; - comp.FireRateModified = ev.FireRate; - comp.ProjectileSpeedModified = ev.ProjectileSpeed; + if (comp.SoundGunshotModified != ev.SoundGunshot) + { + comp.SoundGunshotModified = ev.SoundGunshot; + DirtyField(gun, nameof(GunComponent.SoundGunshotModified)); + } - Dirty(gun); + if (!MathHelper.CloseTo(comp.CameraRecoilScalarModified, ev.CameraRecoilScalar)) + { + comp.CameraRecoilScalarModified = ev.CameraRecoilScalar; + DirtyField(gun, nameof(GunComponent.CameraRecoilScalarModified)); + } + + if (!comp.AngleIncreaseModified.EqualsApprox(ev.AngleIncrease)) + { + comp.AngleIncreaseModified = ev.AngleIncrease; + DirtyField(gun, nameof(GunComponent.AngleIncreaseModified)); + } + + if (!comp.AngleDecayModified.EqualsApprox(ev.AngleDecay)) + { + comp.AngleDecayModified = ev.AngleDecay; + DirtyField(gun, nameof(GunComponent.AngleDecayModified)); + } + + if (!comp.MaxAngleModified.EqualsApprox(ev.MinAngle)) + { + comp.MaxAngleModified = ev.MaxAngle; + DirtyField(gun, nameof(GunComponent.MaxAngleModified)); + } + + if (!comp.MinAngleModified.EqualsApprox(ev.MinAngle)) + { + comp.MinAngleModified = ev.MinAngle; + DirtyField(gun, nameof(GunComponent.MinAngleModified)); + } + + if (comp.ShotsPerBurstModified != ev.ShotsPerBurst) + { + comp.ShotsPerBurstModified = ev.ShotsPerBurst; + DirtyField(gun, nameof(GunComponent.ShotsPerBurstModified)); + } + + if (!MathHelper.CloseTo(comp.FireRateModified, ev.FireRate)) + { + comp.FireRateModified = ev.FireRate; + DirtyField(gun, nameof(GunComponent.FireRateModified)); + } + + if (!MathHelper.CloseTo(comp.ProjectileSpeedModified, ev.ProjectileSpeed)) + { + comp.ProjectileSpeedModified = ev.ProjectileSpeed; + DirtyField(gun, nameof(GunComponent.ProjectileSpeedModified)); + } } protected abstract void CreateEffect(EntityUid gunUid, MuzzleFlashEvent message, EntityUid? user = null); From b011dbb61e972d842bd1a4d96b4c99365813c597 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 21 Dec 2024 16:08:39 +1100 Subject: [PATCH 200/263] Update submodule to 237.4.0 (#33976) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 92b0e7f1a8..acb1d37b99 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 92b0e7f1a853979a1361ed24d2fb5ffc11f43f66 +Subproject commit acb1d37b99f52ed9e372860ee946fa0f897665b9 From 06e2bba8abb1ffceef3f0f204cf976825465967e Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 21 Dec 2024 17:45:48 +1100 Subject: [PATCH 201/263] Toolshed refactor (#33598) * Content changes for engine toolshed PR * add contains command * more permissive commands --- .../Tests/Toolshed/AdminTest.cs | 20 ++- .../Tests/Toolshed/LocTest.cs | 23 ++- .../Tests/Toolshed/ToolshedTest.cs | 27 ++- Content.Server/Access/AddAccessLogCommand.cs | 17 +- .../Administration/Toolshed/MarkedCommand.cs | 2 +- .../Toolshed/RejuvenateCommand.cs | 2 +- .../Toolshed/SolutionCommand.cs | 34 ++-- .../Administration/Toolshed/TagCommand.cs | 64 ++------ .../V2/Commands/DeleteChatMessageCommand.cs | 2 +- .../V2/Commands/NukeChatMessagesCommand.cs | 2 +- Content.Server/Mind/Toolshed/MindCommand.cs | 11 +- .../Polymorph/Toolshed/PolymorphCommand.cs | 4 +- .../Station/Commands/JobsCommand.cs | 50 ++---- .../Station/Commands/StationCommand.cs | 33 +--- .../BasicStationEventSchedulerSystem.cs | 8 +- .../Commands/AdminDebug/ACmdCommand.cs | 8 +- .../Commands/Verbs/RunVerbAsCommand.cs | 19 +-- .../Toolshed/Commands/VisualizeCommand.cs | 2 +- Resources/toolshedEngineCommandPerms.yml | 154 +++++++++--------- 19 files changed, 212 insertions(+), 270 deletions(-) diff --git a/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs b/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs index 040b09beec..ecb11fc1ba 100644 --- a/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs +++ b/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; -using System.Linq; +using System.Reflection; +using Content.Server.Administration.Managers; using Robust.Shared.Toolshed; namespace Content.IntegrationTests.Tests.Toolshed; @@ -10,10 +11,23 @@ public sealed class AdminTest : ToolshedTest [Test] public async Task AllCommandsHavePermissions() { + var toolMan = Server.ResolveDependency(); + var admin = Server.ResolveDependency(); + var ignored = new HashSet() + {typeof(LocTest).Assembly, typeof(Robust.UnitTesting.Shared.Toolshed.LocTest).Assembly}; + await Server.WaitAssertion(() => { - Assert.That(InvokeCommand("cmd:list where { acmd:perms isnull }", out var res)); - Assert.That((IEnumerable) res, Is.Empty, "All commands must have admin permissions set up."); + Assert.Multiple(() => + { + foreach (var cmd in toolMan.DefaultEnvironment.AllCommands()) + { + if (ignored.Contains(cmd.Cmd.GetType().Assembly)) + continue; + + Assert.That(admin.TryGetCommandFlags(cmd, out _), $"Command does not have admin permissions set up: {cmd.FullName()}"); + } + }); }); } } diff --git a/Content.IntegrationTests/Tests/Toolshed/LocTest.cs b/Content.IntegrationTests/Tests/Toolshed/LocTest.cs index 2b5553ad7d..fb210eba50 100644 --- a/Content.IntegrationTests/Tests/Toolshed/LocTest.cs +++ b/Content.IntegrationTests/Tests/Toolshed/LocTest.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; using System.Globalization; -using Robust.Shared.IoC; +using System.Reflection; using Robust.Shared.Localization; using Robust.Shared.Toolshed; @@ -14,10 +14,27 @@ public sealed class LocTest : ToolshedTest [Test] public async Task AllCommandsHaveDescriptions() { + var locMan = Server.ResolveDependency(); + var toolMan = Server.ResolveDependency(); + var locStrings = new HashSet(); + + var ignored = new HashSet() + {typeof(LocTest).Assembly, typeof(Robust.UnitTesting.Shared.Toolshed.LocTest).Assembly}; + await Server.WaitAssertion(() => { - Assert.That(InvokeCommand("cmd:list where { cmd:descloc loc:tryloc isnull }", out var res)); - Assert.That((IEnumerable)res!, Is.Empty, "All commands must have localized descriptions."); + Assert.Multiple(() => + { + foreach (var cmd in toolMan.DefaultEnvironment.AllCommands()) + { + if (ignored.Contains(cmd.Cmd.GetType().Assembly)) + continue; + + var descLoc = cmd.DescLocStr(); + Assert.That(locStrings.Add(descLoc), $"Duplicate command description key: {descLoc}"); + Assert.That(locMan.TryGetString(descLoc, out _), $"Failed to get command description for command {cmd.FullName()}"); + } + }); }); } } diff --git a/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs b/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs index 7de81fb3dc..6fc27e168c 100644 --- a/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs +++ b/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs @@ -74,15 +74,15 @@ public abstract class ToolshedTest : IInvocationContext return (T) res!; } - protected void ParseCommand(string command, Type? inputType = null, Type? expectedType = null, bool once = false) + protected void ParseCommand(string command, Type? inputType = null, Type? expectedType = null) { var parser = new ParserContext(command, Toolshed); - var success = CommandRun.TryParse(false, parser, inputType, expectedType, once, out _, out _, out var error); + var success = CommandRun.TryParse(parser, inputType, expectedType, out _); - if (error is not null) - ReportError(error); + if (parser.Error is not null) + ReportError(parser.Error); - if (error is null) + if (parser.Error is null) Assert.That(success, $"Parse failed despite no error being reported. Parsed {command}"); } @@ -153,11 +153,28 @@ public abstract class ToolshedTest : IInvocationContext return _errors; } + public bool HasErrors => _errors.Count > 0; + public void ClearErrors() { _errors.Clear(); } + public object? ReadVar(string name) + { + return Variables.GetValueOrDefault(name); + } + + public void WriteVar(string name, object? value) + { + Variables[name] = value; + } + + public IEnumerable GetVars() + { + return Variables.Keys; + } + public Dictionary Variables { get; } = new(); protected void ExpectError(Type err) diff --git a/Content.Server/Access/AddAccessLogCommand.cs b/Content.Server/Access/AddAccessLogCommand.cs index 8b3aebb16b..f55a9b8f1e 100644 --- a/Content.Server/Access/AddAccessLogCommand.cs +++ b/Content.Server/Access/AddAccessLogCommand.cs @@ -10,11 +10,7 @@ namespace Content.Server.Access; public sealed class AddAccessLogCommand : ToolshedCommand { [CommandImplementation] - public void AddAccessLog( - [CommandInvocationContext] IInvocationContext ctx, - [CommandArgument] EntityUid input, - [CommandArgument] float seconds, - [CommandArgument] ValueRef accessor) + public void AddAccessLog(IInvocationContext ctx, EntityUid input, float seconds, string accessor) { var accessReader = EnsureComp(input); @@ -23,19 +19,14 @@ public sealed class AddAccessLogCommand : ToolshedCommand ctx.WriteLine($"WARNING: Surpassing the limit of the log by {accessLogCount - accessReader.AccessLogLimit+1} entries!"); var accessTime = TimeSpan.FromSeconds(seconds); - var accessName = accessor.Evaluate(ctx)!; - accessReader.AccessLog.Enqueue(new AccessRecord(accessTime, accessName)); + accessReader.AccessLog.Enqueue(new AccessRecord(accessTime, accessor)); ctx.WriteLine($"Successfully added access log to {input} with this information inside:\n " + $"Time of access: {accessTime}\n " + - $"Accessed by: {accessName}"); + $"Accessed by: {accessor}"); } [CommandImplementation] - public void AddAccessLogPiped( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input, - [CommandArgument] float seconds, - [CommandArgument] ValueRef accessor) + public void AddAccessLogPiped(IInvocationContext ctx, [PipedArgument] EntityUid input, float seconds, string accessor) { AddAccessLog(ctx, input, seconds, accessor); } diff --git a/Content.Server/Administration/Toolshed/MarkedCommand.cs b/Content.Server/Administration/Toolshed/MarkedCommand.cs index b9e39cb82d..54d45a352d 100644 --- a/Content.Server/Administration/Toolshed/MarkedCommand.cs +++ b/Content.Server/Administration/Toolshed/MarkedCommand.cs @@ -7,7 +7,7 @@ namespace Content.Server.Administration.Toolshed; public sealed class MarkedCommand : ToolshedCommand { [CommandImplementation] - public IEnumerable Marked([CommandInvocationContext] IInvocationContext ctx) + public IEnumerable Marked(IInvocationContext ctx) { var res = (IEnumerable?)ctx.ReadVar("marked"); res ??= Array.Empty(); diff --git a/Content.Server/Administration/Toolshed/RejuvenateCommand.cs b/Content.Server/Administration/Toolshed/RejuvenateCommand.cs index 61b0d6213a..3925badc58 100644 --- a/Content.Server/Administration/Toolshed/RejuvenateCommand.cs +++ b/Content.Server/Administration/Toolshed/RejuvenateCommand.cs @@ -23,7 +23,7 @@ public sealed class RejuvenateCommand : ToolshedCommand } [CommandImplementation] - public void Rejuvenate([CommandInvocationContext] IInvocationContext ctx) + public void Rejuvenate(IInvocationContext ctx) { _rejuvenate ??= GetSys(); if (ExecutingEntity(ctx) is not { } ent) diff --git a/Content.Server/Administration/Toolshed/SolutionCommand.cs b/Content.Server/Administration/Toolshed/SolutionCommand.cs index f8c9bdd5c7..c529bcd16d 100644 --- a/Content.Server/Administration/Toolshed/SolutionCommand.cs +++ b/Content.Server/Administration/Toolshed/SolutionCommand.cs @@ -8,6 +8,7 @@ using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Syntax; using Robust.Shared.Toolshed.TypeParsers; using System.Linq; +using Robust.Shared.Prototypes; namespace Content.Server.Administration.Toolshed; @@ -17,48 +18,38 @@ public sealed class SolutionCommand : ToolshedCommand private SharedSolutionContainerSystem? _solutionContainer; [CommandImplementation("get")] - public SolutionRef? Get( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input, - [CommandArgument] ValueRef name - ) + public SolutionRef? Get([PipedArgument] EntityUid input, string name) { _solutionContainer ??= GetSys(); - if (_solutionContainer.TryGetSolution(input, name.Evaluate(ctx)!, out var solution)) + if (_solutionContainer.TryGetSolution(input, name, out var solution)) return new SolutionRef(solution.Value); return null; } [CommandImplementation("get")] - public IEnumerable Get( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] IEnumerable input, - [CommandArgument] ValueRef name - ) + public IEnumerable Get([PipedArgument] IEnumerable input, string name) { - return input.Select(x => Get(ctx, x, name)).Where(x => x is not null).Cast(); + return input.Select(x => Get(x, name)).Where(x => x is not null).Cast(); } [CommandImplementation("adjreagent")] public SolutionRef AdjReagent( - [CommandInvocationContext] IInvocationContext ctx, [PipedArgument] SolutionRef input, - [CommandArgument] Prototype name, - [CommandArgument] ValueRef amountRef + ProtoId proto, + FixedPoint2 amount ) { _solutionContainer ??= GetSys(); - var amount = amountRef.Evaluate(ctx); if (amount > 0) { - _solutionContainer.TryAddReagent(input.Solution, name.Value.ID, amount, out _); + _solutionContainer.TryAddReagent(input.Solution, proto, amount, out _); } else if (amount < 0) { - _solutionContainer.RemoveReagent(input.Solution, name.Value.ID, -amount); + _solutionContainer.RemoveReagent(input.Solution, proto, -amount); } return input; @@ -66,12 +57,11 @@ public sealed class SolutionCommand : ToolshedCommand [CommandImplementation("adjreagent")] public IEnumerable AdjReagent( - [CommandInvocationContext] IInvocationContext ctx, [PipedArgument] IEnumerable input, - [CommandArgument] Prototype name, - [CommandArgument] ValueRef amountRef + ProtoId name, + FixedPoint2 amount ) - => input.Select(x => AdjReagent(ctx, x, name, amountRef)); + => input.Select(x => AdjReagent(x, name, amount)); } public readonly record struct SolutionRef(Entity Solution) diff --git a/Content.Server/Administration/Toolshed/TagCommand.cs b/Content.Server/Administration/Toolshed/TagCommand.cs index 4c6f790e49..a751b85914 100644 --- a/Content.Server/Administration/Toolshed/TagCommand.cs +++ b/Content.Server/Administration/Toolshed/TagCommand.cs @@ -36,82 +36,50 @@ public sealed class TagCommand : ToolshedCommand } [CommandImplementation("add")] - public EntityUid Add( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input, - [CommandArgument] ValueRef> @ref - ) + public EntityUid Add([PipedArgument] EntityUid input, ProtoId tag) { _tag ??= GetSys(); - _tag.AddTag(input, @ref.Evaluate(ctx)!); + _tag.AddTag(input, tag); return input; } [CommandImplementation("add")] - public IEnumerable Add( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] IEnumerable input, - [CommandArgument] ValueRef> @ref - ) - => input.Select(x => Add(ctx, x, @ref)); + public IEnumerable Add([PipedArgument] IEnumerable input, ProtoId tag) + => input.Select(x => Add(x, tag)); [CommandImplementation("rm")] - public EntityUid Rm( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input, - [CommandArgument] ValueRef> @ref - ) + public EntityUid Rm([PipedArgument] EntityUid input, ProtoId tag) { _tag ??= GetSys(); - _tag.RemoveTag(input, @ref.Evaluate(ctx)!); + _tag.RemoveTag(input, tag); return input; } [CommandImplementation("rm")] - public IEnumerable Rm( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] IEnumerable input, - [CommandArgument] ValueRef> @ref - ) - => input.Select(x => Rm(ctx, x, @ref)); + public IEnumerable Rm([PipedArgument] IEnumerable input, ProtoId tag) + => input.Select(x => Rm(x, tag)); [CommandImplementation("addmany")] - public EntityUid AddMany( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input, - [CommandArgument] ValueRef, IEnumerable> @ref - ) + public EntityUid AddMany([PipedArgument] EntityUid input, IEnumerable> tags) { _tag ??= GetSys(); - _tag.AddTags(input, (IEnumerable>)@ref.Evaluate(ctx)!); + _tag.AddTags(input, tags); return input; } [CommandImplementation("addmany")] - public IEnumerable AddMany( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] IEnumerable input, - [CommandArgument] ValueRef, IEnumerable> @ref - ) - => input.Select(x => AddMany(ctx, x, @ref)); + public IEnumerable AddMany([PipedArgument] IEnumerable input, IEnumerable> tags) + => input.Select(x => AddMany(x, tags.ToArray())); [CommandImplementation("rmmany")] - public EntityUid RmMany( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input, - [CommandArgument] ValueRef, IEnumerable> @ref - ) + public EntityUid RmMany([PipedArgument] EntityUid input, IEnumerable> tags) { _tag ??= GetSys(); - _tag.RemoveTags(input, (IEnumerable>)@ref.Evaluate(ctx)!); + _tag.RemoveTags(input, tags); return input; } [CommandImplementation("rmmany")] - public IEnumerable RmMany( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] IEnumerable input, - [CommandArgument] ValueRef, IEnumerable> @ref - ) - => input.Select(x => RmMany(ctx, x, @ref)); + public IEnumerable RmMany([PipedArgument] IEnumerable input, IEnumerable> tags) + => input.Select(x => RmMany(x, tags.ToArray())); } diff --git a/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs b/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs index 1f9203d299..2aeb899829 100644 --- a/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs +++ b/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs @@ -14,7 +14,7 @@ public sealed class DeleteChatMessageCommand : ToolshedCommand [Dependency] private readonly IEntitySystemManager _manager = default!; [CommandImplementation("id")] - public void DeleteChatMessage([CommandInvocationContext] IInvocationContext ctx, [CommandArgument] uint messageId) + public void DeleteChatMessage(IInvocationContext ctx, uint messageId) { if (!_manager.GetEntitySystem().Delete(messageId)) { diff --git a/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs b/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs index 3d8b69dd76..07b4cd9796 100644 --- a/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs +++ b/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs @@ -14,7 +14,7 @@ public sealed class NukeChatMessagesCommand : ToolshedCommand [Dependency] private readonly IEntitySystemManager _manager = default!; [CommandImplementation("usernames")] - public void Command([CommandInvocationContext] IInvocationContext ctx, [CommandArgument] string usernamesCsv) + public void Command(IInvocationContext ctx, string usernamesCsv) { var usernames = usernamesCsv.Split(','); diff --git a/Content.Server/Mind/Toolshed/MindCommand.cs b/Content.Server/Mind/Toolshed/MindCommand.cs index 917e6fb7f1..5f82029dc0 100644 --- a/Content.Server/Mind/Toolshed/MindCommand.cs +++ b/Content.Server/Mind/Toolshed/MindCommand.cs @@ -29,19 +29,10 @@ public sealed class MindCommand : ToolshedCommand } [CommandImplementation("control")] - public EntityUid Control( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid target, - [CommandArgument] ValueRef playerRef) + public EntityUid Control(IInvocationContext ctx, [PipedArgument] EntityUid target, ICommonSession player) { _mind ??= GetSys(); - var player = playerRef.Evaluate(ctx); - if (player is null) - { - ctx.ReportError(new NotForServerConsoleError()); - return target; - } if (!_mind.TryGetMind(player, out var mindId, out var mind)) { diff --git a/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs b/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs index 5654c84722..db1e1faad6 100644 --- a/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs +++ b/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs @@ -20,7 +20,7 @@ public sealed class PolymorphCommand : ToolshedCommand [CommandImplementation] public EntityUid? Polymorph( [PipedArgument] EntityUid input, - [CommandArgument] ProtoId protoId + ProtoId protoId ) { _system ??= GetSys(); @@ -34,7 +34,7 @@ public sealed class PolymorphCommand : ToolshedCommand [CommandImplementation] public IEnumerable Polymorph( [PipedArgument] IEnumerable input, - [CommandArgument] ProtoId protoId + ProtoId protoId ) => input.Select(x => Polymorph(x, protoId)).Where(x => x is not null).Select(x => (EntityUid)x!); } diff --git a/Content.Server/Station/Commands/JobsCommand.cs b/Content.Server/Station/Commands/JobsCommand.cs index 1d023c4a84..599a87aac6 100644 --- a/Content.Server/Station/Commands/JobsCommand.cs +++ b/Content.Server/Station/Commands/JobsCommand.cs @@ -30,7 +30,7 @@ public sealed class JobsCommand : ToolshedCommand => stations.SelectMany(Jobs); [CommandImplementation("job")] - public JobSlotRef Job([PipedArgument] EntityUid station, [CommandArgument] Prototype job) + public JobSlotRef Job([PipedArgument] EntityUid station, Prototype job) { _jobs ??= GetSys(); @@ -38,7 +38,7 @@ public sealed class JobsCommand : ToolshedCommand } [CommandImplementation("job")] - public IEnumerable Job([PipedArgument] IEnumerable stations, [CommandArgument] Prototype job) + public IEnumerable Job([PipedArgument] IEnumerable stations, Prototype job) => stations.Select(x => Job(x, job)); [CommandImplementation("isinfinite")] @@ -50,63 +50,41 @@ public sealed class JobsCommand : ToolshedCommand => jobs.Select(x => IsInfinite(x, inverted)); [CommandImplementation("adjust")] - public JobSlotRef Adjust( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] JobSlotRef @ref, - [CommandArgument] ValueRef by - ) + public JobSlotRef Adjust([PipedArgument] JobSlotRef @ref, int by) { _jobs ??= GetSys(); - _jobs.TryAdjustJobSlot(@ref.Station, @ref.Job, by.Evaluate(ctx), true, true); + _jobs.TryAdjustJobSlot(@ref.Station, @ref.Job, by, true, true); return @ref; } [CommandImplementation("adjust")] - public IEnumerable Adjust( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] IEnumerable @ref, - [CommandArgument] ValueRef by - ) - => @ref.Select(x => Adjust(ctx, x, by)); + public IEnumerable Adjust([PipedArgument] IEnumerable @ref, int by) + => @ref.Select(x => Adjust(x, by)); [CommandImplementation("set")] - public JobSlotRef Set( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] JobSlotRef @ref, - [CommandArgument] ValueRef by - ) + public JobSlotRef Set([PipedArgument] JobSlotRef @ref, int by) { _jobs ??= GetSys(); - _jobs.TrySetJobSlot(@ref.Station, @ref.Job, by.Evaluate(ctx), true); + _jobs.TrySetJobSlot(@ref.Station, @ref.Job, by, true); return @ref; } [CommandImplementation("set")] - public IEnumerable Set( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] IEnumerable @ref, - [CommandArgument] ValueRef by - ) - => @ref.Select(x => Set(ctx, x, by)); + public IEnumerable Set([PipedArgument] IEnumerable @ref, int by) + => @ref.Select(x => Set(x, by)); [CommandImplementation("amount")] - public int Amount( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] JobSlotRef @ref - ) + public int Amount([PipedArgument] JobSlotRef @ref) { _jobs ??= GetSys(); _jobs.TryGetJobSlot(@ref.Station, @ref.Job, out var slots); - return (int)(slots ?? 0); + return slots ?? 0; } [CommandImplementation("amount")] - public IEnumerable Amount( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] IEnumerable @ref - ) - => @ref.Select(x => Amount(ctx, x)); + public IEnumerable Amount([PipedArgument] IEnumerable @ref) + => @ref.Select(Amount); } // Used for Toolshed queries. diff --git a/Content.Server/Station/Commands/StationCommand.cs b/Content.Server/Station/Commands/StationCommand.cs index e1013548ac..8fe8c67646 100644 --- a/Content.Server/Station/Commands/StationCommand.cs +++ b/Content.Server/Station/Commands/StationCommand.cs @@ -27,7 +27,7 @@ public sealed class StationsCommand : ToolshedCommand } [CommandImplementation("get")] - public EntityUid Get([CommandInvocationContext] IInvocationContext ctx) + public EntityUid Get(IInvocationContext ctx) { _station ??= GetSys(); @@ -54,7 +54,6 @@ public sealed class StationsCommand : ToolshedCommand public EntityUid? LargestGrid([PipedArgument] EntityUid input) { _station ??= GetSys(); - return _station.GetLargestGrid(Comp(input)); } @@ -80,46 +79,30 @@ public sealed class StationsCommand : ToolshedCommand => input.Select(Config); [CommandImplementation("addgrid")] - public void AddGrid( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input, - [CommandArgument] ValueRef grid - ) + public void AddGrid([PipedArgument] EntityUid input, EntityUid grid) { _station ??= GetSys(); - - _station.AddGridToStation(input, grid.Evaluate(ctx)); + _station.AddGridToStation(input, grid); } [CommandImplementation("rmgrid")] - public void RmGrid( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input, - [CommandArgument] ValueRef grid - ) + public void RmGrid([PipedArgument] EntityUid input, EntityUid grid) { _station ??= GetSys(); - - _station.RemoveGridFromStation(input, grid.Evaluate(ctx)); + _station.RemoveGridFromStation(input, grid); } [CommandImplementation("rename")] - public void Rename([CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input, - [CommandArgument] ValueRef name - ) + public void Rename([PipedArgument] EntityUid input, string name) { _station ??= GetSys(); - - _station.RenameStation(input, name.Evaluate(ctx)!); + _station.RenameStation(input, name); } [CommandImplementation("rerollBounties")] - public void RerollBounties([CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] EntityUid input) + public void RerollBounties([PipedArgument] EntityUid input) { _cargo ??= GetSys(); - _cargo.RerollBountyDatabase(input); } } diff --git a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs index bdc9a47e18..a3c2440fe9 100644 --- a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs +++ b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs @@ -94,7 +94,7 @@ namespace Content.Server.StationEvents /// to even exist) so I think it's fine. /// [CommandImplementation("simulate")] - public IEnumerable<(string, float)> Simulate([CommandArgument] EntityPrototype eventScheduler, [CommandArgument] int rounds, [CommandArgument] int playerCount, [CommandArgument] float roundEndMean, [CommandArgument] float roundEndStdDev) + public IEnumerable<(string, float)> Simulate(EntityPrototype eventScheduler, int rounds, int playerCount, float roundEndMean, float roundEndStdDev) { _stationEvent ??= GetSys(); _entityTable ??= GetSys(); @@ -146,7 +146,7 @@ namespace Content.Server.StationEvents } [CommandImplementation("lsprob")] - public IEnumerable<(string, float)> LsProb([CommandArgument] EntityPrototype eventScheduler) + public IEnumerable<(string, float)> LsProb(EntityPrototype eventScheduler) { _compFac ??= IoCManager.Resolve(); _stationEvent ??= GetSys(); @@ -166,7 +166,7 @@ namespace Content.Server.StationEvents } [CommandImplementation("lsprobtime")] - public IEnumerable<(string, float)> LsProbTime([CommandArgument] EntityPrototype eventScheduler, [CommandArgument] float time) + public IEnumerable<(string, float)> LsProbTime(EntityPrototype eventScheduler, float time) { _compFac ??= IoCManager.Resolve(); _stationEvent ??= GetSys(); @@ -188,7 +188,7 @@ namespace Content.Server.StationEvents } [CommandImplementation("prob")] - public float Prob([CommandArgument] EntityPrototype eventScheduler, [CommandArgument] string eventId) + public float Prob(EntityPrototype eventScheduler, string eventId) { _compFac ??= IoCManager.Resolve(); _stationEvent ??= GetSys(); diff --git a/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs b/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs index f113e49655..ff110a9d9e 100644 --- a/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs +++ b/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs @@ -22,13 +22,9 @@ public sealed class ACmdCommand : ToolshedCommand } [CommandImplementation("caninvoke")] - public bool CanInvoke( - [CommandInvocationContext] IInvocationContext ctx, - [PipedArgument] CommandSpec command, - [CommandArgument] ValueRef player - ) + public bool CanInvoke(IInvocationContext ctx, [PipedArgument] CommandSpec command, ICommonSession player) { // Deliberately discard the error. - return ((IPermissionController) _adminManager).CheckInvokable(command, player.Evaluate(ctx), out var err); + return ((IPermissionController) _adminManager).CheckInvokable(command, player, out _); } } diff --git a/Content.Server/Toolshed/Commands/Verbs/RunVerbAsCommand.cs b/Content.Server/Toolshed/Commands/Verbs/RunVerbAsCommand.cs index 5c1bac6c93..d251d66898 100644 --- a/Content.Server/Toolshed/Commands/Verbs/RunVerbAsCommand.cs +++ b/Content.Server/Toolshed/Commands/Verbs/RunVerbAsCommand.cs @@ -15,10 +15,10 @@ public sealed class RunVerbAsCommand : ToolshedCommand [CommandImplementation] public IEnumerable RunVerbAs( - [CommandInvocationContext] IInvocationContext ctx, + IInvocationContext ctx, [PipedArgument] IEnumerable input, - [CommandArgument] ValueRef runner, - [CommandArgument] string verb + EntityUid runner, + string verb ) { _verb ??= GetSys(); @@ -26,17 +26,14 @@ public sealed class RunVerbAsCommand : ToolshedCommand foreach (var i in input) { - var runnerNet = runner.Evaluate(ctx); - var runnerEid = EntityManager.GetEntity(runnerNet); - - if (EntityManager.Deleted(runnerEid) && runnerEid.IsValid()) - ctx.ReportError(new DeadEntity(runnerEid)); + if (EntityManager.Deleted(runner) && runner.IsValid()) + ctx.ReportError(new DeadEntity(runner)); if (ctx.GetErrors().Any()) yield break; var eId = EntityManager.GetEntity(i); - var verbs = _verb.GetLocalVerbs(eId, runnerEid, Verb.VerbTypes, true); + var verbs = _verb.GetLocalVerbs(eId, runner, Verb.VerbTypes, true); // if the "verb name" is actually a verb-type, try run any verb of that type. var verbType = Verb.VerbTypes.FirstOrDefault(x => x.Name == verb); @@ -45,7 +42,7 @@ public sealed class RunVerbAsCommand : ToolshedCommand var verbTy = verbs.FirstOrDefault(v => v.GetType() == verbType); if (verbTy != null) { - _verb.ExecuteVerb(verbTy, runnerEid, eId, forced: true); + _verb.ExecuteVerb(verbTy, runner, eId, forced: true); yield return i; } } @@ -54,7 +51,7 @@ public sealed class RunVerbAsCommand : ToolshedCommand { if (verbTy.Text.ToLowerInvariant() == verb) { - _verb.ExecuteVerb(verbTy, runnerEid, eId, forced: true); + _verb.ExecuteVerb(verbTy, runner, eId, forced: true); yield return i; } } diff --git a/Content.Server/Toolshed/Commands/VisualizeCommand.cs b/Content.Server/Toolshed/Commands/VisualizeCommand.cs index 2225bfaf44..41613cab86 100644 --- a/Content.Server/Toolshed/Commands/VisualizeCommand.cs +++ b/Content.Server/Toolshed/Commands/VisualizeCommand.cs @@ -16,7 +16,7 @@ public sealed class VisualizeCommand : ToolshedCommand [CommandImplementation] public void VisualizeEntities( - [CommandInvocationContext] IInvocationContext ctx, + IInvocationContext ctx, [PipedArgument] IEnumerable input ) { diff --git a/Resources/toolshedEngineCommandPerms.yml b/Resources/toolshedEngineCommandPerms.yml index ac7ffddd5f..b9911e9468 100644 --- a/Resources/toolshedEngineCommandPerms.yml +++ b/Resources/toolshedEngineCommandPerms.yml @@ -6,7 +6,6 @@ - physics - player - splat - - emplace - bin - extremes - reduce @@ -19,113 +18,88 @@ - iota - rep - to - - iterate - Flags: DEBUG Commands: - comp - delete - - do + - with + - prototyped - named - paused - - with - - count + - emplace + - do + - iterate - select - where - - prototyped + - count - types - - ecscomp - actor - spawn + - replace - mappos - pos - tp - allcomps - - replace - entitysystemupdateorder - mind - -- Flags: HOST - Commands: - - methods - - ioc - -- Commands: - fuck - - ent - - as - - buildinfo - - help - - explain - - cmd - - stopwatch - - self - - search - - isnull - - help - - isempty - - any - - unique - - cd - - ls - - loc - - vars - '=>' - - first - - val - - '+' - - '-' - - '*' - - '/' - - 'min' - - 'max' - - '&' - - '|' - - '^' - - 'neg' - - '<' - - '>' - - '<=' - - '>=' - - '==' - - '!=' - - f - - i - - s - - b - - '+/' - - '-/' - - '*/' - - '//' - - join - - append - '?' - 'or?' - '??' - rng - - 'sum' + - self + - sum - take - - curtick - - curtime - - realtime - - servertime - - more + - join + - search + - first + - unique + - any + - contains + - isnull + - isempty + - cd + - ls + - stopwatch + - append + - min + - max + - average + - '+' + - '-' + - '*' + - '/' - '%' - '%/' - '&~' - '|~' - '^~' - '~' - - 'abs' - - 'average' - - 'bibytecount' - - 'shortestbitlength' - - 'countleadzeros' - - 'counttrailingzeros' - - 'fpi' - - 'fe' - - 'ftau' - - 'fepsilon' + - '<' + - '>' + - '<=' + - '>=' + - '==' + - '!=' + - '+/' + - '-/' + - '*/' + - '//' + - '&' + - '|' + - '^' + - neg + - abs + - bibytecount + - shortestbitlength + - countleadzeros + - counttrailingzeros + - fpi + - fe + - ftau + - fepsilon - dpi - de - dtau @@ -181,3 +155,29 @@ - atanpi - pick - tee + +- Flags: HOST + Commands: + - methods + - ioc + +- Commands: + - ent + - f + - i + - s + - b + - as + - var + - vars + - val + - help + - explain + - cmd + - buildinfo + - loc + - curtick + - curtime + - realtime + - servertime + - more From b3551fb0003f9e3676a11cdc8eb63c9ba6317b4a Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 21 Dec 2024 06:46:54 +0000 Subject: [PATCH 202/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 00b3c81806..ba5c69e0ca 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix storage UI being buggy. - type: Fix - id: 7246 - time: '2024-08-29T03:23:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31616 - author: MisterMecky changes: - message: Changed strange pill possible reagents. They are no longer mostly composed @@ -3937,3 +3930,11 @@ id: 7745 time: '2024-12-21T03:28:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33902 +- author: ElectroJr + changes: + - message: Toolshed console commands have been reworked. Some old commands may no + longer work. + type: Tweak + id: 7746 + time: '2024-12-21T06:45:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33598 From 7baa1ae07075bc8cec2640f59818b97cb4448fa7 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 21 Dec 2024 18:02:04 +1100 Subject: [PATCH 203/263] Update engine to v238.0.0 (#33980) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index acb1d37b99..5e97db435c 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit acb1d37b99f52ed9e372860ee946fa0f897665b9 +Subproject commit 5e97db435c05b4c188184ef90e5d77b0500403d0 From 1abe9db99c016d5fd74ced110d9c1aeaa3275716 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 21 Dec 2024 07:03:11 +0000 Subject: [PATCH 204/263] Automatic changelog update --- Resources/Changelog/Admin.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 3854878cef..079fb57ede 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -643,5 +643,19 @@ Entries: id: 80 time: '2024-12-18T13:15:05.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33879 +- author: ElectroJr + changes: + - message: Some toolshed command permissions have changed. The "emplace" and "iterate" + command no longer require QUER` permissions, they now match the "do" command + and only require DEBUG. Several previously unrestricted commands now require + the DEBUG flag. + type: Tweak + - message: Toolshed command parsing has changed. In particular, command substitution + (using the output of a command in place of another command's argument) now requires + that the command be wrapped in curly braces + type: Tweak + id: 81 + time: '2024-12-21T07:02:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33980 Name: Admin Order: 1 From 58181c3412679cea7edb126d09d2e8c7ef2903a3 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Sun, 22 Dec 2024 09:02:55 +0100 Subject: [PATCH 205/263] adjust eshotgun recharge delay (#33996) --- .../Entities/Objects/Weapons/Guns/Battery/battery_guns.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 46c3d36ebc..a270f16191 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -768,4 +768,4 @@ autoRecharge: true autoRechargeRate: 24 autoRechargePause: true - autoRechargePauseTime: 10 \ No newline at end of file + autoRechargePauseTime: 30 From 6331379213c37c2b9d3571bc1b5d7a69be548f8d Mon Sep 17 00:00:00 2001 From: Ed Date: Sun, 22 Dec 2024 15:45:16 +0300 Subject: [PATCH 206/263] swap to RU --- .../Localizations/ContentLocalizationManager.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 586fcf3f1c..4a3415be2c 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -10,7 +10,8 @@ namespace Content.Shared.Localizations [Dependency] private readonly ILocalizationManager _loc = default!; // If you want to change your codebase's language, do it here. - public const string Culture = "en-US"; // CrystallEdge-Localization. "ru-RU" or "en-US" + //public const string Culture = "en-US"; + public const string Culture = "ru-RU"; /// /// Custom format strings used for parsing and displaying minutes:seconds timespans. @@ -28,9 +29,9 @@ namespace Content.Shared.Localizations var culture = new CultureInfo(Culture); _loc.LoadCulture(culture); // Uncomment for Ru localization - //var fallbackCulture = new CultureInfo("en-US"); - //_loc.LoadCulture(fallbackCulture); - //_loc.SetFallbackCluture(fallbackCulture); + var fallbackCulture = new CultureInfo("en-US"); + _loc.LoadCulture(fallbackCulture); + _loc.SetFallbackCluture(fallbackCulture); // _loc.AddFunction(culture, "PRESSURE", FormatPressure); From 1450c4cade4b126e92abef691c290b5e93de1b2d Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 22 Dec 2024 17:12:37 +0100 Subject: [PATCH 207/263] Specify privacy policy for Wizard's Den (#34013) --- Resources/ConfigPresets/WizardsDen/wizardsDen.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 2efa9ef23c..fda04b1628 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -41,3 +41,8 @@ alert.min_players_sharing_connection = 2 [atmos] max_explosion_range = 5 + +[status] +privacy_policy_link = "https://account.spacestation14.com/Home/Privacy" +privacy_policy_identifier = "wizden" +privacy_policy_version = "2024-12-22" From f28c8127e21784de52d6c5e153422fa0d813c912 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sun, 22 Dec 2024 20:56:30 +0100 Subject: [PATCH 208/263] Localized holopads for Box (#34011) I love holopads --- Resources/Locale/en-US/holopad/holopad.ftl | 6 + Resources/Maps/box.yml | 1211 +++++++---------- .../Entities/Structures/Machines/holopad.yml | 48 + 3 files changed, 566 insertions(+), 699 deletions(-) diff --git a/Resources/Locale/en-US/holopad/holopad.ftl b/Resources/Locale/en-US/holopad/holopad.ftl index 9e3401dd4b..fbb7a78531 100644 --- a/Resources/Locale/en-US/holopad/holopad.ftl +++ b/Resources/Locale/en-US/holopad/holopad.ftl @@ -70,6 +70,8 @@ holopad-command-hos = Command - HoS # Science holopad-science-anomaly = Science - Anomaly holopad-science-artifact = Science - Artifact +holopad-science-artifact-north = Science - Artifact North +holopad-science-artifact-south = Science - Artifact South holopad-science-robotics = Science - Robotics holopad-science-rnd = Science - R&D holopad-science-front = Science - Front @@ -93,6 +95,7 @@ holopad-cargo-salvage-bay = Cargo - Salvage Bay holopad-cargo-breakroom = Cargo - Breakroom holopad-cargo-ats = Cargo - ATS holopad-cargo-shuttle = Cargo - Shuttle +holopad-cargo-mailroom = Cargo - Mailroom # Engineering holopad-engineering-atmos-front = Atmos - Front @@ -105,6 +108,7 @@ holopad-engineering-telecoms = Engineering - Telecoms holopad-engineering-tech-vault = Engineering - Tech Vault holopad-engineering-ame = Engineering - AME holopad-engineering-power = Engineering - Power +holopad-engineering-main = Engineering - Main # Security holopad-security-front = Security - Front @@ -119,6 +123,8 @@ holopad-security-lawyer = Security - Lawyer holopad-security-armory = Security - Armory holopad-security-locker-room = Security - Locker Room holopad-security-brig-med = Security - Brig Med +holopad-security-evac-checkpoint = Security - Evac Checkpoint +holopad-security-arrivals-checkpoint = Security - Arrivals Checkpoint # Service holopad-service-janitor = Service - Janitor diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index e7343a76fe..e90d712a35 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -6381,7 +6381,7 @@ entities: 0: 61423 8,-1: 0: 12320 - 2: 34944 + 4: 34944 -8,-4: 0: 30583 -8,-5: @@ -6732,7 +6732,7 @@ entities: 0: 30583 6,-12: 1: 4369 - 4: 204 + 2: 204 3: 49152 6,-11: 1: 61713 @@ -6741,10 +6741,10 @@ entities: 0: 29424 6,-13: 1: 4369 - 4: 49152 + 2: 49152 3: 204 7,-12: - 4: 17 + 2: 17 3: 4096 1: 17476 7,-11: @@ -6753,7 +6753,7 @@ entities: 7,-10: 0: 61680 7,-13: - 4: 4096 + 2: 4096 1: 17476 3: 17 8,-12: @@ -6791,7 +6791,7 @@ entities: 1: 8704 8,0: 0: 63523 - 2: 8 + 4: 8 8,1: 0: 61440 8,2: @@ -7071,24 +7071,24 @@ entities: 1: 35064 0: 771 9,0: - 2: 15 + 4: 15 0: 65296 9,1: 0: 47232 9,2: 0: 48955 9,-1: - 2: 65520 + 4: 65520 0: 1 10,0: - 2: 1 + 4: 1 0: 65292 10,1: 0: 56789 10,2: 0: 64961 10,-1: - 2: 4368 + 4: 4368 0: 57548 11,0: 0: 30543 @@ -8924,36 +8924,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 235 - 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 - volume: 2500 temperature: 293.15 moles: @@ -8969,6 +8939,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -11922,7 +11922,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -32560.857 + secondsUntilStateChange: -35533.973 state: Opening - type: DeviceLinkSource lastSignals: @@ -85219,7 +85219,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -26749.395 + secondsUntilStateChange: -29722.51 state: Closing - uid: 15010 components: @@ -85712,7 +85712,7 @@ entities: pos: -4.5,-71.5 parent: 8364 - type: Door - secondsUntilStateChange: -18497.125 + secondsUntilStateChange: -21470.24 state: Closing - proto: Fireplace entities: @@ -121993,681 +121993,494 @@ entities: - type: Transform pos: 10.513089,-49.606483 parent: 8364 -- proto: Holopad +- proto: HolopadAiBackupPower entities: - - uid: 4228 - components: - - type: MetaData - name: holopad (Library Meeting) - - type: Transform - pos: 56.5,2.5 - parent: 8364 - - type: Label - currentLabel: Library Meeting - - type: NameModifier - baseName: holopad - - uid: 19029 - components: - - type: MetaData - name: holopad (Brig) - - type: Transform - pos: -1.5,27.5 - parent: 8364 - - type: Label - currentLabel: Brig - - type: NameModifier - baseName: holopad - - uid: 19060 - components: - - type: MetaData - name: holopad (Captain's Office) - - type: Transform - pos: 9.5,-14.5 - parent: 8364 - - type: Label - currentLabel: Captain's Office - - type: NameModifier - baseName: holopad - - uid: 19079 - components: - - type: MetaData - name: holopad (AI Upload) - - type: Transform - pos: -0.5,-13.5 - parent: 8364 - - type: Label - currentLabel: AI Upload - - type: NameModifier - baseName: holopad - - uid: 22740 - components: - - type: MetaData - name: holopad (Bridge) - - type: Transform - pos: -1.5,-7.5 - parent: 8364 - - type: Label - currentLabel: Bridge - - type: NameModifier - baseName: holopad - - uid: 23046 - components: - - type: MetaData - name: holopad (Command Conference) - - type: Transform - pos: -10.5,-14.5 - parent: 8364 - - type: Label - currentLabel: Command Conference - - type: NameModifier - baseName: holopad - - uid: 23250 - components: - - type: MetaData - name: holopad (HoP's Office) - - type: Transform - pos: -9.5,-23.5 - parent: 8364 - - type: Label - currentLabel: HoP's Office - - type: NameModifier - baseName: holopad - - uid: 23260 - components: - - type: MetaData - name: holopad (Cargo) - - type: Transform - pos: -26.5,-23.5 - parent: 8364 - - type: Label - currentLabel: Cargo - - type: NameModifier - baseName: holopad - - uid: 25350 - components: - - type: MetaData - name: holopad (QM's Office) - - type: Transform - pos: -32.5,-29.5 - parent: 8364 - - type: Label - currentLabel: QM's Office - - type: NameModifier - baseName: holopad - - uid: 26071 - components: - - type: MetaData - name: holopad (Cargo Loading Dock) - - type: Transform - pos: -38.5,-29.5 - parent: 8364 - - type: Label - currentLabel: Cargo Loading Dock - - type: NameModifier - baseName: holopad - - uid: 27921 - components: - - type: MetaData - name: holopad (Salvage) - - type: Transform - pos: -26.5,-34.5 - parent: 8364 - - type: Label - currentLabel: Salvage - - type: NameModifier - baseName: holopad - - uid: 28084 - components: - - type: MetaData - name: holopad (CE's Office) - - type: Transform - pos: -3.5,-64.5 - parent: 8364 - - type: Label - currentLabel: CE's Office - - type: NameModifier - baseName: holopad - - uid: 28085 - components: - - type: MetaData - name: holopad (Engineering Proper) - - type: Transform - pos: 2.5,-68.5 - parent: 8364 - - type: Label - currentLabel: Engineering Proper - - type: NameModifier - baseName: holopad - - uid: 28086 - components: - - type: MetaData - name: holopad (Engineering Locker Room) - - type: Transform - pos: 3.5,-62.5 - parent: 8364 - - type: Label - currentLabel: Engineering Locker Room - - type: NameModifier - baseName: holopad - - uid: 28087 - components: - - type: MetaData - name: holopad (Engineering Break Room) - - type: Transform - pos: 6.5,-53.5 - parent: 8364 - - type: Label - currentLabel: Engineering Break Room - - type: NameModifier - baseName: holopad - - uid: 28090 - components: - - type: MetaData - name: holopad (Engineering Front Desk) - - type: Transform - pos: 5.5,-42.5 - parent: 8364 - - type: Label - currentLabel: Engineering Front Desk - - type: NameModifier - baseName: holopad - - uid: 28091 - components: - - type: MetaData - name: holopad (Atmospherics) - - type: Transform - pos: 16.5,-56.5 - parent: 8364 - - type: Label - currentLabel: Atmospherics - - type: NameModifier - baseName: holopad - - uid: 28092 - components: - - type: MetaData - name: holopad (TEG) - - type: Transform - pos: 15.5,-73.5 - parent: 8364 - - type: Label - currentLabel: TEG - - type: NameModifier - baseName: holopad - - uid: 28093 - components: - - type: MetaData - name: holopad (Warden's Office) - - type: Transform - pos: 1.5,32.5 - parent: 8364 - - type: Label - currentLabel: Warden's Office - - type: NameModifier - baseName: holopad - - uid: 28094 - components: - - type: MetaData - name: holopad (Security Break Room) - - type: Transform - pos: 14.5,33.5 - parent: 8364 - - type: Label - currentLabel: Security Break Room - - type: NameModifier - baseName: holopad - - uid: 28095 - components: - - type: MetaData - name: holopad (HoS's Office) - - type: Transform - pos: 14.5,38.5 - parent: 8364 - - type: Label - currentLabel: HoS's Office - - type: NameModifier - baseName: holopad - - uid: 28096 - components: - - type: MetaData - name: holopad (Courtroom) - - type: Transform - pos: 15.5,25.5 - parent: 8364 - - type: Label - currentLabel: Courtroom - - type: NameModifier - baseName: holopad - - uid: 28097 - components: - - type: MetaData - name: holopad (Interrogation) - - type: Transform - pos: -14.5,32.5 - parent: 8364 - - type: Label - currentLabel: Interrogation - - type: NameModifier - baseName: holopad - - uid: 28098 - components: - - type: MetaData - name: holopad (Detective's Office) - - type: Transform - pos: -4.5,15.5 - parent: 8364 - - type: Label - currentLabel: Detective's Office - - type: NameModifier - baseName: holopad - - uid: 28099 - components: - - type: MetaData - name: holopad (Lawyer's Office) - - type: Transform - pos: -12.5,15.5 - parent: 8364 - - type: Label - currentLabel: Lawyer's Office - - type: NameModifier - baseName: holopad - - uid: 28100 - components: - - type: MetaData - name: holopad (EVA) - - type: Transform - pos: -11.5,4.5 - parent: 8364 - - type: Label - currentLabel: EVA - - type: NameModifier - baseName: holopad - - uid: 28101 - components: - - type: MetaData - name: holopad (Showroom) - - type: Transform - pos: 9.5,-26.5 - parent: 8364 - - type: Label - currentLabel: Showroom - - type: NameModifier - baseName: holopad - - uid: 28102 - components: - - type: MetaData - name: holopad (Chemistry) - - type: Transform - pos: 20.5,-19.5 - parent: 8364 - - type: Label - currentLabel: Chemistry - - type: NameModifier - baseName: holopad - - uid: 28103 - components: - - type: MetaData - name: holopad (Medical Front Desk) - - type: Transform - pos: 30.5,-20.5 - parent: 8364 - - type: Label - currentLabel: Medical Front Desk - - type: NameModifier - baseName: holopad - - uid: 28104 - components: - - type: MetaData - name: holopad (Medical Examination) - - type: Transform - pos: 31.5,-28.5 - parent: 8364 - - type: Label - currentLabel: Medical Examination - - type: NameModifier - baseName: holopad - - uid: 28105 - components: - - type: MetaData - name: holopad (Medical Cryogenics) - - type: Transform - pos: 31.5,-34.5 - parent: 8364 - - type: Label - currentLabel: Medical Cryogenics - - type: NameModifier - baseName: holopad - - uid: 28106 - components: - - type: MetaData - name: holopad (CMO's Office) - - type: Transform - pos: 35.5,-42.5 - parent: 8364 - - type: Label - currentLabel: CMO's Office - - type: NameModifier - baseName: holopad - - uid: 28107 - components: - - type: MetaData - name: holopad (Virology) - - type: Transform - pos: 42.5,-56.5 - parent: 8364 - - type: Label - currentLabel: Virology - - type: NameModifier - baseName: holopad - - uid: 28108 - components: - - type: MetaData - name: holopad (Bar) - - type: Transform - pos: 30.5,-5.5 - parent: 8364 - - type: Label - currentLabel: Bar - - type: NameModifier - baseName: holopad - - uid: 28109 - components: - - type: MetaData - name: holopad (Theatre) - - type: Transform - pos: 21.5,4.5 - parent: 8364 - - type: Label - currentLabel: Theatre - - type: NameModifier - baseName: holopad - - uid: 28110 - components: - - type: MetaData - name: holopad (Botany) - - type: Transform - pos: 46.5,-7.5 - parent: 8364 - - type: Label - currentLabel: Botany - - type: NameModifier - baseName: holopad - - uid: 28112 - components: - - type: MetaData - name: holopad (Library) - - type: Transform - pos: 59.5,-9.5 - parent: 8364 - - type: Label - currentLabel: Library - - type: NameModifier - baseName: holopad - - uid: 28113 - components: - - type: MetaData - name: holopad (Chapel) - - type: Transform - pos: 69.5,-6.5 - parent: 8364 - - type: Label - currentLabel: Chapel - - type: NameModifier - baseName: holopad - - uid: 28114 - components: - - type: MetaData - name: holopad (R&D) - - type: Transform - pos: 71.5,-22.5 - parent: 8364 - - type: Label - currentLabel: R&D - - type: NameModifier - baseName: holopad - - uid: 28115 - components: - - type: MetaData - name: holopad (Robotics) - - type: Transform - pos: 60.5,-21.5 - parent: 8364 - - type: Label - currentLabel: Robotics - - type: NameModifier - baseName: holopad - - uid: 28116 - components: - - type: MetaData - name: holopad (RD's Office) - - type: Transform - pos: 71.5,-36.5 - parent: 8364 - - type: Label - currentLabel: RD's Office - - type: NameModifier - baseName: holopad - - uid: 28117 - components: - - type: MetaData - name: holopad (North Artifacts) - - type: Transform - pos: 79.5,-24.5 - parent: 8364 - - type: Label - currentLabel: North Artifacts - - type: NameModifier - baseName: holopad - - uid: 28118 - components: - - type: MetaData - name: holopad (South Artifacts) - - type: Transform - pos: 75.5,-45.5 - parent: 8364 - - type: Label - currentLabel: South Artifacts - - type: NameModifier - baseName: holopad - - uid: 28119 - components: - - type: MetaData - name: holopad (Anomaly Lab) - - type: Transform - pos: 71.5,-51.5 - parent: 8364 - - type: Label - currentLabel: Anomaly Lab - - type: NameModifier - baseName: holopad - - uid: 28120 - components: - - type: MetaData - name: holopad (Kitchen) - - type: Transform - pos: 36.5,-8.5 - parent: 8364 - - type: Label - currentLabel: Kitchen - - type: NameModifier - baseName: holopad - - uid: 28121 - components: - - type: MetaData - name: holopad (Mailroom) - - type: Transform - pos: -21.5,-17.5 - parent: 8364 - - type: Label - currentLabel: Mailroom - - type: NameModifier - baseName: holopad - - uid: 28122 - components: - - type: MetaData - name: holopad (Morgue) - - type: Transform - pos: 44.5,-19.5 - parent: 8364 - - type: Label - currentLabel: Morgue - - type: NameModifier - baseName: holopad - uid: 28123 components: - - type: MetaData - name: holopad (Perma) - type: Transform - pos: -7.5,49.5 + pos: 33.5,-91.5 parent: 8364 - - type: Label - currentLabel: Perma - - type: NameModifier - baseName: holopad +- proto: HolopadAiCore + entities: - uid: 28124 components: - - type: MetaData - name: holopad (AI Sat Airlock) - - type: Transform - pos: 28.5,-80.5 - parent: 8364 - - type: Label - currentLabel: AI Sat Airlock - - type: NameModifier - baseName: holopad - - uid: 28125 - components: - - type: MetaData - name: holopad (AI Sat Lobby) - - type: Transform - pos: 28.5,-85.5 - parent: 8364 - - type: Label - currentLabel: AI Sat Lobby - - type: NameModifier - baseName: holopad - - uid: 28126 - components: - - type: MetaData - name: holopad (AI Core) - type: Transform pos: 28.5,-108.5 parent: 8364 - - type: Label - currentLabel: AI Core - - type: NameModifier - baseName: holopad - - uid: 28127 - components: - - type: MetaData - name: holopad (Tools) - - type: Transform - pos: -42.5,3.5 - parent: 8364 - - type: Label - currentLabel: Tools - - type: NameModifier - baseName: holopad - - uid: 28128 - components: - - type: MetaData - name: holopad (Security Arrivals Checkpoint) - - type: Transform - pos: -59.5,4.5 - parent: 8364 - - type: Label - currentLabel: Security Arrivals Checkpoint - - type: NameModifier - baseName: holopad - - uid: 28129 - components: - - type: MetaData - name: holopad (Vault) - - type: Transform - pos: -31.5,4.5 - parent: 8364 - - type: Label - currentLabel: Vault - - type: NameModifier - baseName: holopad - - uid: 28130 - components: - - type: MetaData - name: holopad (Janitor) - - type: Transform - pos: 4.5,-34.5 - parent: 8364 - - type: Label - currentLabel: Janitor - - type: NameModifier - baseName: holopad - - uid: 28131 - components: - - type: MetaData - name: holopad (Tech Vault) - - type: Transform - pos: -6.5,-36.5 - parent: 8364 - - type: Label - currentLabel: Tech Vault - - type: NameModifier - baseName: holopad - - uid: 28134 - components: - - type: MetaData - name: holopad (Telecoms) - - type: Transform - pos: -13.5,-53.5 - parent: 8364 - - type: Label - currentLabel: Telecoms - - type: NameModifier - baseName: holopad - - uid: 28135 - components: - - type: MetaData - name: holopad (Security Evac) - - type: Transform - pos: 79.5,-2.5 - parent: 8364 - - type: Label - currentLabel: Security Evac - - type: NameModifier - baseName: holopad - - uid: 28136 - components: - - type: MetaData - name: holopad (Surgery) - - type: Transform - pos: 20.5,-35.5 - parent: 8364 - - type: Label - currentLabel: Surgery - - type: NameModifier - baseName: holopad -- proto: HolopadLongRange +- proto: HolopadAiEntrance entities: - - uid: 28088 + - uid: 28122 + components: + - type: Transform + pos: 28.5,-80.5 + parent: 8364 +- proto: HolopadAiMain + entities: + - uid: 28099 + components: + - type: Transform + pos: 28.5,-85.5 + parent: 8364 +- proto: HolopadAiUpload + entities: + - uid: 19079 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 8364 +- proto: HolopadCargoBay + entities: + - uid: 26071 components: - - type: MetaData - name: long-range holopad (Cargo Loading Dock) - type: Transform pos: -38.5,-25.5 parent: 8364 - - type: Label - currentLabel: Cargo Loading Dock - - type: NameModifier - baseName: long-range holopad - - uid: 28089 +- proto: HolopadCargoBayLongRange + entities: + - uid: 28134 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 8364 +- proto: HolopadCargoFront + entities: + - uid: 23260 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 8364 +- proto: HolopadCargoMailroom + entities: + - uid: 28119 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 8364 +- proto: HolopadCargoSalvageBay + entities: + - uid: 27921 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 8364 +- proto: HolopadCommandBridge + entities: + - uid: 28135 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 8364 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 22740 components: - - type: MetaData - name: long-range holopad (Bridge) - type: Transform pos: 0.5,-7.5 parent: 8364 - - type: Label - currentLabel: Bridge - - type: NameModifier - baseName: long-range holopad +- proto: HolopadCommandCaptain + entities: + - uid: 19060 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 8364 +- proto: HolopadCommandCe + entities: + - uid: 28084 + components: + - type: Transform + pos: -3.5,-64.5 + parent: 8364 +- proto: HolopadCommandCmo + entities: + - uid: 28104 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 8364 +- proto: HolopadCommandHop + entities: + - uid: 23250 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 8364 +- proto: HolopadCommandHos + entities: + - uid: 28085 + components: + - type: Transform + pos: 14.5,38.5 + parent: 8364 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 23046 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 8364 +- proto: HolopadCommandQm + entities: + - uid: 25350 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 8364 +- proto: HolopadCommandRd + entities: + - uid: 28114 + components: + - type: Transform + pos: 71.5,-36.5 + parent: 8364 +- proto: HolopadCommandVault + entities: + - uid: 28126 + components: + - type: Transform + pos: -31.5,4.5 + parent: 8364 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 28089 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 8364 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 28090 + components: + - type: Transform + pos: 15.5,-73.5 + parent: 8364 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 28086 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 8364 + - uid: 28087 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 8364 +- proto: HolopadEngineeringFront + entities: + - uid: 28088 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 8364 +- proto: HolopadEngineeringMain + entities: + - uid: 28143 + components: + - type: Transform + pos: -2.5,-69.5 + parent: 8364 +- proto: HolopadEngineeringPower + entities: + - uid: 28142 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 8364 +- proto: HolopadEngineeringStorage + entities: + - uid: 28141 + components: + - type: Transform + pos: -11.5,-63.5 + parent: 8364 +- proto: HolopadEngineeringTechVault + entities: + - uid: 28128 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 8364 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 28129 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 8364 +- proto: HolopadGeneralCryosleep + entities: + - uid: 28106 + components: + - type: Transform + pos: 24.5,18.5 + parent: 8364 +- proto: HolopadGeneralDisposals + entities: + - uid: 28097 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 8364 +- proto: HolopadGeneralEvac + entities: + - uid: 28145 + components: + - type: Transform + pos: 81.5,-8.5 + parent: 8364 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 28144 + components: + - type: Transform + pos: -11.5,7.5 + parent: 8364 +- proto: HolopadGeneralLounge + entities: + - uid: 28146 + components: + - type: Transform + pos: 12.5,9.5 + parent: 8364 +- proto: HolopadGeneralTools + entities: + - uid: 28125 + components: + - type: Transform + pos: -42.5,3.5 + parent: 8364 +- proto: HolopadMedicalChemistry + entities: + - uid: 28100 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 8364 +- proto: HolopadMedicalCryopods + entities: + - uid: 28103 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 8364 +- proto: HolopadMedicalFront + entities: + - uid: 28101 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 8364 +- proto: HolopadMedicalMedbay + entities: + - uid: 28102 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 8364 +- proto: HolopadMedicalMorgue + entities: + - uid: 28120 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 8364 +- proto: HolopadMedicalSurgery + entities: + - uid: 28131 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 8364 +- proto: HolopadMedicalVirology + entities: + - uid: 28105 + components: + - type: Transform + pos: 42.5,-56.5 + parent: 8364 +- proto: HolopadScienceAnomaly + entities: + - uid: 28117 + components: + - type: Transform + pos: 71.5,-51.5 + parent: 8364 +- proto: HolopadScienceArtifactNorth + entities: + - uid: 28115 + components: + - type: Transform + pos: 79.5,-24.5 + parent: 8364 +- proto: HolopadScienceArtifactSouth + entities: + - uid: 28116 + components: + - type: Transform + pos: 75.5,-45.5 + parent: 8364 +- proto: HolopadScienceFront + entities: + - uid: 28112 + components: + - type: Transform + pos: 72.5,-20.5 + parent: 8364 +- proto: HolopadScienceRobotics + entities: + - uid: 28113 + components: + - type: Transform + pos: 60.5,-21.5 + parent: 8364 +- proto: HolopadSecurityArmory + entities: + - uid: 28138 + components: + - type: Transform + pos: 1.5,38.5 + parent: 8364 +- proto: HolopadSecurityArrivalsCheckpoint + entities: + - uid: 28130 + components: + - type: Transform + pos: -59.5,4.5 + parent: 8364 +- proto: HolopadSecurityBreakroom + entities: + - uid: 28092 + components: + - type: Transform + pos: 14.5,33.5 + parent: 8364 +- proto: HolopadSecurityBrig + entities: + - uid: 19029 + components: + - type: Transform + pos: -1.5,27.5 + parent: 8364 +- proto: HolopadSecurityBrigMed + entities: + - uid: 28139 + components: + - type: Transform + pos: -8.5,31.5 + parent: 8364 +- proto: HolopadSecurityCourtroom + entities: + - uid: 28094 + components: + - type: Transform + pos: 15.5,25.5 + parent: 8364 +- proto: HolopadSecurityDetective + entities: + - uid: 28098 + components: + - type: Transform + pos: -4.5,15.5 + parent: 8364 +- proto: HolopadSecurityEvacCheckpoint + entities: + - uid: 28136 + components: + - type: Transform + pos: 79.5,-2.5 + parent: 8364 +- proto: HolopadSecurityFront + entities: + - uid: 28093 + components: + - type: Transform + pos: 1.5,23.5 + parent: 8364 +- proto: HolopadSecurityInterrogation + entities: + - uid: 28095 + components: + - type: Transform + pos: -14.5,32.5 + parent: 8364 +- proto: HolopadSecurityLawyer + entities: + - uid: 28096 + components: + - type: Transform + pos: -12.5,15.5 + parent: 8364 +- proto: HolopadSecurityPerma + entities: + - uid: 28121 + components: + - type: Transform + pos: -7.5,49.5 + parent: 8364 +- proto: HolopadSecurityWarden + entities: + - uid: 28091 + components: + - type: Transform + pos: 1.5,32.5 + parent: 8364 +- proto: HolopadServiceBar + entities: + - uid: 28147 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 8364 +- proto: HolopadServiceBotany + entities: + - uid: 28108 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 8364 +- proto: HolopadServiceChapel + entities: + - uid: 28110 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 8364 +- proto: HolopadServiceClownMime + entities: + - uid: 28107 + components: + - type: Transform + pos: 21.5,4.5 + parent: 8364 +- proto: HolopadServiceGameRoom + entities: + - uid: 4228 + components: + - type: Transform + pos: 57.5,2.5 + parent: 8364 +- proto: HolopadServiceJanitor + entities: + - uid: 28127 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 8364 +- proto: HolopadServiceKitchen + entities: + - uid: 28118 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 8364 +- proto: HolopadServiceLibrary + entities: + - uid: 28109 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 8364 - proto: HospitalCurtainsOpen entities: - uid: 2213 diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index d3b02fcae0..5d85c06388 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -364,6 +364,22 @@ - type: Label currentLabel: holopad-science-artifact +- type: entity + parent: Holopad + id: HolopadScienceArtifactNorth + suffix: Artifact North + components: + - type: Label + currentLabel: holopad-science-artifact-north + +- type: entity + parent: Holopad + id: HolopadScienceArtifactSouth + suffix: Artifact South + components: + - type: Label + currentLabel: holopad-science-artifact-south + - type: entity parent: Holopad id: HolopadScienceRobotics @@ -502,6 +518,14 @@ - type: Label currentLabel: holopad-cargo-breakroom +- type: entity + parent: Holopad + id: HolopadCargoMailroom + suffix: Cargo Mailroom + components: + - type: Label + currentLabel: holopad-cargo-mailroom + # Engineering - type: entity parent: Holopad @@ -583,6 +607,14 @@ - type: Label currentLabel: holopad-engineering-power +- type: entity + parent: Holopad + id: HolopadEngineeringMain + suffix: Engi Main + components: + - type: Label + currentLabel: holopad-engineering-main + # Security - type: entity parent: Holopad @@ -680,6 +712,22 @@ - type: Label currentLabel: holopad-security-brig-med +- type: entity + parent: Holopad + id: HolopadSecurityEvacCheckpoint + suffix: Sec Evac Checkpoint + components: + - type: Label + currentLabel: holopad-security-evac-checkpoint + +- type: entity + parent: Holopad + id: HolopadSecurityArrivalsCheckpoint + suffix: Sec Arrivals Checkpoint + components: + - type: Label + currentLabel: holopad-security-arrivals-checkpoint + # Service - type: entity parent: Holopad From c873f90f6b8f80e109eb52b88ecf4e21c456785f Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sun, 22 Dec 2024 21:41:35 +0100 Subject: [PATCH 209/263] Train: fix problematic atmos setup (#34018) fix atmos setup --- Resources/Maps/train.yml | 118 +++++++++++++-------------------------- 1 file changed, 38 insertions(+), 80 deletions(-) diff --git a/Resources/Maps/train.yml b/Resources/Maps/train.yml index e268fac014..fe3615e3f1 100644 --- a/Resources/Maps/train.yml +++ b/Resources/Maps/train.yml @@ -59,7 +59,7 @@ tilemap: 122: FloorWoodTile 123: Lattice 124: Plating - 126: PlatingBurnt + 126: PlatingDamaged 129: TrainLattice entities: - proto: "" @@ -32250,11 +32250,6 @@ entities: - type: Transform pos: -4.5,-312.5 parent: 2 - - uid: 4726 - components: - - type: Transform - pos: 4.5,-355.5 - parent: 2 - uid: 13772 components: - type: Transform @@ -35082,6 +35077,12 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-146.5 parent: 2 + - uid: 7565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-356.5 + parent: 2 - proto: ChairFolding entities: - uid: 5222 @@ -36452,6 +36453,13 @@ entities: - type: Transform pos: -5.086961,-272.51526 parent: 2 +- proto: ClothingEyesBlindfold + entities: + - uid: 7570 + components: + - type: Transform + pos: 4.544596,-355.42102 + parent: 2 - proto: ClothingEyesEyepatchHudBeer entities: - uid: 5427 @@ -37280,13 +37288,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-279.5 parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 5560 - components: - - type: Transform - pos: -5.5,-270.5 - parent: 2 - proto: ComputerSolarControl entities: - uid: 5561 @@ -49489,7 +49490,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} -- proto: FloraTree01 +- proto: FloraTree entities: - uid: 7528 components: @@ -49497,21 +49498,17 @@ entities: rot: 3.141592653589793 rad pos: 2.7296805,-40.53731 parent: 2 -- proto: FloraTree05 - entities: - uid: 7529 components: - type: Transform pos: 11.2466135,-200.43379 parent: 2 -- proto: FloraTree06 - entities: - uid: 7530 components: - type: Transform pos: 9.820292,-197.55566 parent: 2 -- proto: FloraTreeLarge01 +- proto: FloraTreeLarge entities: - uid: 7531 components: @@ -49802,13 +49799,6 @@ entities: parent: 2 - proto: GasMixer entities: - - uid: 7565 - components: - - type: Transform - pos: 5.5,-356.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - uid: 13428 components: - type: Transform @@ -49898,14 +49888,6 @@ entities: - type: Transform pos: -25.5,-253.5 parent: 2 - - uid: 7570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-357.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - uid: 7571 components: - type: Transform @@ -50494,14 +50476,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-356.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - uid: 7660 components: - type: Transform @@ -50596,14 +50570,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-357.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - uid: 7673 components: - type: Transform @@ -58329,14 +58295,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-252.5 parent: 2 - - uid: 8644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-357.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - uid: 8645 components: - type: Transform @@ -64747,20 +64705,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-245.5 parent: 2 - - uid: 9446 - components: - - type: Transform - pos: 5.5,-355.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 9447 - components: - - type: Transform - pos: 4.5,-355.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - uid: 9450 components: - type: Transform @@ -76306,7 +76250,7 @@ entities: pos: 8.5,-176.5 parent: 2 - type: Door - secondsUntilStateChange: -147491.25 + secondsUntilStateChange: -148220.45 state: Closing - uid: 11227 components: @@ -78491,6 +78435,10 @@ entities: showEnts: False occludes: True ent: 11564 + item_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: MopItem entities: - uid: 627 @@ -78657,13 +78605,6 @@ entities: - type: Transform pos: -13.5,-257.5 parent: 2 -- proto: NitrousOxideCanister - entities: - - uid: 11591 - components: - - type: Transform - pos: 5.5,-355.5 - parent: 2 - proto: NoticeBoard entities: - uid: 11592 @@ -91037,6 +90978,16 @@ entities: parent: 2 - proto: TableReinforced entities: + - uid: 4726 + components: + - type: Transform + pos: 5.5,-355.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: 4.5,-355.5 + parent: 2 - uid: 11786 components: - type: Transform @@ -92596,6 +92547,13 @@ entities: - type: Transform pos: 4.883979,-282.15594 parent: 2 +- proto: ToyFigurineChaplain + entities: + - uid: 7659 + components: + - type: Transform + pos: 5.399611,-355.25436 + parent: 2 - proto: ToyFigurineChemist entities: - uid: 13901 From 4ddd7d3c5f514e667f5caf4c28b5710542cfe75c Mon Sep 17 00:00:00 2001 From: mubururu_ <139181059+muburu@users.noreply.github.com> Date: Mon, 23 Dec 2024 08:24:09 -0600 Subject: [PATCH 210/263] silent footsteps for ninja (#33280) * waow * nice suggestion * nullable sound * fix stuff --------- Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Client/Tips/TippyUIController.cs | 2 +- .../Movement/Components/FootstepModifierComponent.cs | 4 ++-- Content.Shared/Movement/Systems/SharedMoverController.cs | 9 ++++----- .../Prototypes/Entities/Clothing/Shoes/specific.yml | 3 +++ 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Content.Client/Tips/TippyUIController.cs b/Content.Client/Tips/TippyUIController.cs index 7737a3d698..77c10193a5 100644 --- a/Content.Client/Tips/TippyUIController.cs +++ b/Content.Client/Tips/TippyUIController.cs @@ -104,7 +104,7 @@ public sealed class TippyUIController : UIController ? -WaddleRotation : WaddleRotation; - if (EntityManager.TryGetComponent(_entity, out FootstepModifierComponent? step)) + if (EntityManager.TryGetComponent(_entity, out FootstepModifierComponent? step) && step.FootstepSoundCollection != null) { var audioParams = step.FootstepSoundCollection.Params .AddVolume(-7f) diff --git a/Content.Shared/Movement/Components/FootstepModifierComponent.cs b/Content.Shared/Movement/Components/FootstepModifierComponent.cs index bd7b5377bd..e658f6d948 100644 --- a/Content.Shared/Movement/Components/FootstepModifierComponent.cs +++ b/Content.Shared/Movement/Components/FootstepModifierComponent.cs @@ -9,6 +9,6 @@ namespace Content.Shared.Movement.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class FootstepModifierComponent : Component { - [DataField(required: true), AutoNetworkedField] - public SoundSpecifier FootstepSoundCollection = default!; + [DataField, AutoNetworkedField] + public SoundSpecifier? FootstepSoundCollection; } diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index 472d56b1d6..5de74d7294 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -439,14 +439,14 @@ public abstract partial class SharedMoverController : VirtualController if (FootstepModifierQuery.TryComp(uid, out var moverModifier)) { sound = moverModifier.FootstepSoundCollection; - return true; + return sound != null; } if (_inventory.TryGetSlotEntity(uid, "shoes", out var shoes) && FootstepModifierQuery.TryComp(shoes, out var modifier)) { sound = modifier.FootstepSoundCollection; - return true; + return sound != null; } return TryGetFootstepSound(uid, xform, shoes != null, out sound, tileDef: tileDef); @@ -467,10 +467,9 @@ public abstract partial class SharedMoverController : VirtualController if (FootstepModifierQuery.TryComp(xform.MapUid, out var modifier)) { sound = modifier.FootstepSoundCollection; - return true; } - return false; + return sound != null; } var position = grid.LocalToTile(xform.Coordinates); @@ -493,7 +492,7 @@ public abstract partial class SharedMoverController : VirtualController if (FootstepModifierQuery.TryComp(maybeFootstep, out var footstep)) { sound = footstep.FootstepSoundCollection; - return true; + return sound != null; } } diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 87a0c06c4a..46fb16b1f2 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -136,6 +136,9 @@ # ninja are masters of sneaking around relatively quickly, won't break cloak walkModifier: 1.1 sprintModifier: 1.3 + - type: FootstepModifier + footstepSoundCollection: + collection: null - type: entity parent: ClothingShoesBaseButcherable From 38bd2e5c1cb96852413e941248d80ccebb84e89e Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Dec 2024 14:25:20 +0000 Subject: [PATCH 211/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ba5c69e0ca..f2d2fea239 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: MisterMecky - changes: - - message: Changed strange pill possible reagents. They are no longer mostly composed - of amatoxin and space mirage. - type: Tweak - id: 7247 - time: '2024-08-29T13:21:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30524 - author: slarticodefast changes: - message: Fixed energy shield visuals. @@ -3938,3 +3930,10 @@ id: 7746 time: '2024-12-21T06:45:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33598 +- author: muburu + changes: + - message: Space Ninjas now have silent footsteps. + type: Tweak + id: 7747 + time: '2024-12-23T14:24:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33280 From dfc0e0199a969eb756c7ffa5f83cf431c1de3805 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Mon, 23 Dec 2024 19:25:03 +0100 Subject: [PATCH 212/263] minor fix to "silent footsteps for ninja" (#34040) minor fix --- Resources/Prototypes/Entities/Clothing/Shoes/specific.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 46fb16b1f2..3a17dcde37 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -137,8 +137,7 @@ walkModifier: 1.1 sprintModifier: 1.3 - type: FootstepModifier - footstepSoundCollection: - collection: null + footstepSoundCollection: null - type: entity parent: ClothingShoesBaseButcherable From 661e96831fdbeed4df18a26816c7486a158cd11b Mon Sep 17 00:00:00 2001 From: Ed Date: Mon, 23 Dec 2024 22:13:38 +0300 Subject: [PATCH 213/263] bruh --- .../_CP14/Entities/Structures/Furniture/barrel_crane.yml | 4 ++++ .../_CP14/Reagents/Biological/Consumable/Drink/alcohol.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel_crane.yml b/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel_crane.yml index 45b528d1e6..d35836aa4f 100644 --- a/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel_crane.yml +++ b/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel_crane.yml @@ -14,6 +14,8 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: Wood + - type: Physics + bodyType: Static - type: Transform - type: Anchorable delay: 3 @@ -209,6 +211,8 @@ anchored: true noRot: true - type: Pullable + - type: Physics + bodyType: Static - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/_CP14/Reagents/Biological/Consumable/Drink/alcohol.yml b/Resources/Prototypes/_CP14/Reagents/Biological/Consumable/Drink/alcohol.yml index b5b40cf1ba..aaa92ebadc 100644 --- a/Resources/Prototypes/_CP14/Reagents/Biological/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/_CP14/Reagents/Biological/Consumable/Drink/alcohol.yml @@ -215,7 +215,7 @@ id: CP14AleBloodyTear name: cp14-reagent-name-ale parent: BaseAlcohol - desc: cp14-reagent-desc-ale-bloody-tear + desc: cp14-reagent-desc-ale-bloodytear physicalDesc: reagent-physical-desc-bubbly flavor: CP14bloodyTear color: "#993333" From f98192daffe68db8d84e1ff8bb21f658879905c7 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 23 Dec 2024 20:23:03 +0100 Subject: [PATCH 214/263] Fix the sensor monitoring console (#34035) Still isn't really suitable to just map but at least it doesn't outright NRE anymore. Alternative to #34032 --- Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml.cs b/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml.cs index 307307c687..717ab40765 100644 --- a/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml.cs +++ b/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml.cs @@ -28,6 +28,7 @@ public sealed partial class SensorMonitoringWindow : FancyWindow, IComputerWindo public SensorMonitoringWindow() { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); } public void UpdateState(ConsoleUIState state) From b82605b18530c0d4398b9ad41a108868613cf81e Mon Sep 17 00:00:00 2001 From: amatwiedle Date: Mon, 23 Dec 2024 13:54:18 -0600 Subject: [PATCH 215/263] Fix borgs being able to drink from buckets and spray bottles. (#32964) * Added a check for if the entity trying to drink is a borg. * Fixed missing namespace issue. * Improved code conciseness. * Removed borg chassis check, added stomach check. * Removed unused namespace --------- Co-authored-by: dankeaj --- Content.Server/Nutrition/EntitySystems/DrinkSystem.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index 90a925e39f..44e90537b5 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -165,6 +165,9 @@ public sealed class DrinkSystem : SharedDrinkSystem if (!HasComp(target)) return false; + if (!_body.TryGetBodyOrganEntityComps(target, out var stomachs)) + return false; + if (_openable.IsClosed(item, user)) return true; From 030f97b2be1271e1bb49b3b16814e03b980916fb Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Dec 2024 19:55:25 +0000 Subject: [PATCH 216/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f2d2fea239..f5352e88df 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: Fixed energy shield visuals. - type: Fix - id: 7248 - time: '2024-08-30T01:43:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31619 - author: DieselMohawk changes: - message: Added Armband to back of Security Jumpsuit @@ -3937,3 +3930,10 @@ id: 7747 time: '2024-12-23T14:24:10.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33280 +- author: amatwiedle + changes: + - message: Borgs can no longer drink from tools provided by modules. + type: Fix + id: 7748 + time: '2024-12-23T19:54:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32964 From 5d8e916cb25d957497f262dd34a7c74b98889b3f Mon Sep 17 00:00:00 2001 From: Booblesnoot42 <108703193+Booblesnoot42@users.noreply.github.com> Date: Mon, 23 Dec 2024 18:24:47 -0500 Subject: [PATCH 217/263] Remove cog cargo protolathe (#34026) * Removed protolathe from cargo on Amber * Removed protolathe from cargo on Cog * Revert "Removed protolathe from cargo on Amber" This reverts commit 422db6e34a54c9256e3e1aad2098b64ff4cf0f96. revert commit that should have been done on another branch --- Resources/Maps/cog.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 66b19ac3b3..d1e13e552c 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -15493,7 +15493,7 @@ entities: pos: 26.5,17.5 parent: 12 - type: Door - secondsUntilStateChange: -9377.86 + secondsUntilStateChange: -9854.435 state: Opening - type: DeviceLinkSink invokeCounter: 1 @@ -157521,11 +157521,6 @@ entities: - type: Transform pos: -23.5,-21.5 parent: 12 - - uid: 4165 - components: - - type: Transform - pos: 57.5,-18.5 - parent: 12 - uid: 7312 components: - type: Transform From 2dd99b5669511d860fa429fffdc8d46af35463da Mon Sep 17 00:00:00 2001 From: Booblesnoot42 <108703193+Booblesnoot42@users.noreply.github.com> Date: Mon, 23 Dec 2024 18:24:54 -0500 Subject: [PATCH 218/263] Removed protolathe from cargo on Amber (#34027) --- Resources/Maps/amber.yml | 455 +++++++++++++++++++-------------------- 1 file changed, 225 insertions(+), 230 deletions(-) diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index 81e2feea9a..039ad828f0 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -9703,7 +9703,7 @@ entities: 0: 65437 -4,0: 0: 13243 - 3: 2048 + 1: 2048 -3,-4: 0: 65501 -3,-3: @@ -9714,7 +9714,7 @@ entities: 0: 53247 -3,0: 0: 15 - 3: 13056 + 1: 13056 2: 3072 -3,-5: 0: 36863 @@ -9774,23 +9774,23 @@ entities: 0: 56793 -2,-8: 0: 61495 - 1: 136 + 3: 136 -2,-7: 0: 8177 -2,-6: 0: 64988 -2,-9: 0: 13299 - 1: 32768 + 3: 32768 -1,-8: - 1: 51 + 3: 51 0: 63500 -1,-6: 0: 65535 -1,-5: 0: 4095 -1,-9: - 1: 12288 + 3: 12288 0: 35059 -1,-7: 0: 3822 @@ -9917,7 +9917,7 @@ entities: 0: 43688 -4,1: 0: 62259 - 3: 128 + 1: 128 -5,1: 0: 43690 -4,2: @@ -9931,7 +9931,7 @@ entities: -4,4: 0: 21759 -3,1: - 3: 513 + 1: 513 2: 8208 -3,2: 0: 65280 @@ -9951,7 +9951,7 @@ entities: 0: 13 2: 61696 -1,1: - 3: 1365 + 1: 1365 -1,2: 0: 65280 2: 10 @@ -9966,14 +9966,14 @@ entities: 0,0: 0: 15 2: 3328 - 3: 512 + 1: 512 0,1: 6: 273 - 3: 49356 + 1: 49356 0,2: 0: 65280 2: 6 - 3: 8 + 1: 8 0,3: 0: 19663 2: 256 @@ -10016,7 +10016,7 @@ entities: -8,-4: 2: 6553 -8,-5: - 3: 61440 + 1: 61440 0: 6 2: 256 -9,-4: @@ -10040,7 +10040,7 @@ entities: -8,0: 0: 26189 -7,-4: - 3: 273 + 1: 273 0: 3596 -7,-3: 0: 65535 @@ -10049,7 +10049,7 @@ entities: -7,-1: 0: 65518 -7,-5: - 3: 4096 + 1: 4096 0: 49343 -7,0: 0: 65359 @@ -10079,7 +10079,7 @@ entities: 0: 65535 -9,-5: 2: 1488 - 3: 61440 + 1: 61440 -8,-9: 0: 20479 -7,-8: @@ -10270,30 +10270,30 @@ entities: 2: 50 -12,-4: 2: 3712 - 3: 57344 + 1: 57344 -13,-4: 0: 48896 - 3: 7 + 1: 7 2: 8 -12,-3: 0: 1 2: 62126 -13,-3: 0: 11 - 3: 59136 + 1: 59136 2: 6144 -12,-2: - 3: 59185 + 1: 59185 2: 2254 -13,-2: - 3: 140 + 1: 140 2: 2114 -12,-1: - 3: 140 + 1: 140 2: 34816 -11,-4: 2: 3889 - 3: 61440 + 1: 61440 -11,-3: 2: 61759 -11,-2: @@ -10308,7 +10308,7 @@ entities: 2: 8704 -10,-4: 2: 50517 - 3: 12834 + 1: 12834 -10,-3: 2: 63695 -10,-2: @@ -10319,7 +10319,7 @@ entities: 2: 32768 -10,-5: 2: 7936 - 3: 57344 + 1: 57344 -10,0: 0: 13105 2: 2048 @@ -10329,16 +10329,16 @@ entities: 0: 30711 -12,-6: 2: 256 - 3: 4096 + 1: 4096 0: 36044 -12,-5: - 3: 371 + 1: 371 2: 4736 -13,-6: 2: 61440 -13,-5: 2: 4680 - 3: 60544 + 1: 60544 -12,-9: 0: 52428 -12,-7: @@ -10393,7 +10393,7 @@ entities: -13,-14: 0: 224 2: 49409 - 3: 16 + 1: 16 -11,-14: 0: 52733 -11,-15: @@ -10411,19 +10411,19 @@ entities: -13,1: 2: 65392 -12,2: - 3: 3840 + 1: 3840 2: 61440 -13,2: - 3: 43008 + 1: 43008 2: 21026 -12,3: - 3: 3855 + 1: 3855 2: 61440 -13,3: - 3: 43016 + 1: 43016 2: 21026 -12,4: - 3: 3855 + 1: 3855 2: 61440 -11,1: 2: 63265 @@ -10435,39 +10435,39 @@ entities: -10,1: 0: 51 2: 47104 - 3: 16384 + 1: 16384 -10,3: 2: 7936 - 3: 16384 + 1: 16384 0: 8 -11,4: 2: 15 -10,4: 2: 8471 - 3: 3816 + 1: 3816 -10,2: 2: 546 0: 192 -13,4: - 3: 43016 + 1: 43016 2: 21026 -12,5: - 3: 8207 + 1: 8207 2: 53760 -13,5: - 3: 8200 + 1: 8200 2: 53794 -12,6: - 3: 21872 + 1: 21872 2: 8706 -12,7: - 3: 85 + 1: 85 2: 61986 -12,8: 2: 127 -13,7: 2: 61986 - 3: 85 + 1: 85 -11,5: 2: 61952 -11,7: @@ -10554,14 +10554,14 @@ entities: 2: 49137 -16,-13: 2: 4369 - 3: 43690 + 1: 43690 -17,-12: 2: 49137 -15,-12: 2: 63485 -15,-13: 2: 4369 - 3: 8738 + 1: 8738 -14,-12: 2: 13059 0: 2176 @@ -10579,35 +10579,35 @@ entities: 2: 34816 -16,-16: 2: 4607 - 3: 40960 + 1: 40960 -16,-17: 2: 45056 -17,-16: 2: 4607 - 3: 40960 + 1: 40960 -16,-15: 2: 273 - 3: 47786 + 1: 47786 -17,-15: - 3: 47786 + 1: 47786 2: 273 -16,-14: 2: 481 - 3: 45072 + 1: 45072 -17,-14: 2: 481 - 3: 45072 + 1: 45072 -17,-13: - 3: 43690 + 1: 43690 2: 4369 -15,-16: 2: 4607 - 3: 8192 + 1: 8192 -15,-15: 2: 273 - 3: 12834 + 1: 12834 -15,-14: - 3: 12304 + 1: 12304 2: 481 -15,-17: 2: 12288 @@ -10615,7 +10615,7 @@ entities: 2: 255 -14,-14: 2: 2425 - 3: 128 + 1: 128 -13,-16: 2: 13175 -13,-17: @@ -10672,16 +10672,16 @@ entities: 2: 52428 -18,-16: 2: 63 - 3: 32768 + 1: 32768 -18,-14: 2: 722 - 3: 32800 + 1: 32800 -18,-17: 2: 32768 -18,-15: - 3: 34952 + 1: 34952 -18,-13: - 3: 34952 + 1: 34952 -17,-17: 2: 45056 0,-4: @@ -10690,52 +10690,52 @@ entities: 0: 61166 1,-4: 0: 28927 - 3: 32768 + 1: 32768 1,-3: 0: 13104 2: 2184 1,-2: 0: 12339 - 3: 32904 + 1: 32904 1,-1: 0: 13107 - 3: 136 + 1: 136 2: 32768 1,0: 0: 3 2: 264 - 3: 3712 + 1: 3712 1,-5: 0: 20206 2,-4: 0: 52383 - 3: 4096 + 1: 4096 2,-3: 2: 273 - 3: 17920 + 1: 17920 0: 12 2,-2: - 3: 4241 + 1: 4241 2: 17476 0: 34816 2,-1: - 3: 81 + 1: 81 2: 29700 2,0: 2: 1 - 3: 50 + 1: 50 0: 24576 3,-4: 0: 63263 3,-3: 0: 30479 3,-1: - 3: 4369 + 1: 4369 0: 52428 3,-2: 0: 52960 3,0: - 3: 4353 + 1: 4353 0: 52428 4,-4: 0: 15279 @@ -10872,11 +10872,11 @@ entities: 4,-18: 2: 62960 1,1: - 3: 17 + 1: 17 2: 1028 1,2: 0: 65280 - 3: 4 + 1: 4 2: 8 1,3: 0: 14207 @@ -10936,15 +10936,15 @@ entities: 2: 32776 4,6: 0: 4147 - 3: 24576 + 1: 24576 4,7: 0: 1 2: 47752 - 3: 17510 + 1: 17510 3,8: 2: 136 4,8: - 3: 239 + 1: 239 2: 16 5,-4: 0: 49663 @@ -11101,7 +11101,7 @@ entities: 2: 51200 7,-20: 2: 65530 - 3: 4 + 1: 4 7,-19: 2: 17487 7,-18: @@ -11125,7 +11125,7 @@ entities: 6,3: 0: 441 6,4: - 3: 769 + 1: 769 2: 25600 0: 2048 7,1: @@ -11134,9 +11134,9 @@ entities: 0: 49039 7,3: 0: 35003 - 3: 8192 + 1: 8192 7,4: - 3: 2 + 1: 2 0: 49032 8,0: 0: 49083 @@ -11147,21 +11147,21 @@ entities: 8,3: 0: 30583 4,4: - 3: 640 + 1: 640 5,5: 2: 64591 5,7: 2: 12288 5,4: - 3: 25600 + 1: 25600 5,8: - 3: 1 + 1: 1 2: 50 6,5: 2: 3879 - 3: 128 + 1: 128 7,5: - 3: 32 + 1: 32 0: 59528 7,6: 0: 61166 @@ -11327,7 +11327,7 @@ entities: 10,-14: 0: 57297 10,-17: - 3: 34816 + 1: 34816 2: 576 11,-16: 0: 65520 @@ -11338,7 +11338,7 @@ entities: 11,-13: 0: 127 11,-17: - 3: 62208 + 1: 62208 2: 3104 12,-16: 0: 56712 @@ -11350,9 +11350,9 @@ entities: 0: 47935 9,-19: 2: 62736 - 3: 2082 + 1: 2082 9,-20: - 3: 64 + 1: 64 9,-18: 2: 2126 10,-20: @@ -11360,32 +11360,32 @@ entities: 10,-18: 2: 25862 11,-20: - 3: 13056 + 1: 13056 2: 50304 11,-19: - 3: 30583 + 1: 30583 2: 8 11,-18: - 3: 375 + 1: 375 2: 17920 11,-21: 2: 6481 - 3: 140 + 1: 140 12,-20: - 3: 13104 + 1: 13104 12,-19: 2: 5633 - 3: 16418 + 1: 16418 12,-18: 2: 17425 - 3: 8192 + 1: 8192 9,1: 0: 8083 9,2: 0: 45431 9,3: 0: 11 - 3: 8448 + 1: 8448 10,1: 0: 9010 2: 2176 @@ -11409,7 +11409,7 @@ entities: 12,0: 2: 51393 0: 768 - 3: 1024 + 1: 1024 12,1: 2: 49665 12,2: @@ -11452,18 +11452,18 @@ entities: 14,-5: 0: 12336 14,-1: - 3: 43690 + 1: 43690 2: 17476 14,0: - 3: 1038 + 1: 1038 2: 19264 15,-2: 2: 20478 15,-1: - 3: 43690 + 1: 43690 2: 17476 15,0: - 3: 1038 + 1: 1038 2: 19264 16,-2: 2: 20478 @@ -11496,19 +11496,19 @@ entities: 0: 238 14,-11: 0: 4368 - 3: 19656 + 1: 19656 2: 32768 14,-10: 0: 17 - 3: 2188 + 1: 2188 2: 64 14,-13: 0: 58606 15,-11: - 3: 401 + 1: 401 2: 4710 15,-10: - 3: 48 + 1: 48 2: 3784 15,-12: 2: 8712 @@ -11516,13 +11516,13 @@ entities: 2: 52832 16,-12: 2: 8435 - 3: 35328 + 1: 35328 16,-11: - 3: 10937 + 1: 10937 2: 36864 0: 1024 16,-10: - 3: 383 + 1: 383 2: 2176 12,-17: 0: 34880 @@ -11537,7 +11537,7 @@ entities: 0: 48123 13,-17: 0: 4096 - 3: 16 + 1: 16 2: 230 14,-14: 0: 65535 @@ -11546,12 +11546,12 @@ entities: 0: 8192 14,-17: 2: 4096 - 3: 2 + 1: 2 14,-15: 0: 57890 15,-16: 2: 32775 - 3: 128 + 1: 128 15,-14: 0: 10016 15,-15: @@ -11559,17 +11559,17 @@ entities: 15,-17: 2: 34944 16,-16: - 3: 61104 + 1: 61104 2: 14 16,-15: - 3: 119 + 1: 119 16,-13: 2: 4096 12,-21: 2: 20480 - 3: 8977 + 1: 8977 13,-18: - 3: 8448 + 1: 8448 2: 4096 14,-19: 2: 14540 @@ -11578,23 +11578,23 @@ entities: 14,-20: 2: 60416 15,-20: - 3: 3686 + 1: 3686 15,-19: - 3: 52750 + 1: 52750 2: 8192 15,-18: - 3: 2 + 1: 2 2: 32780 16,-20: - 3: 63235 + 1: 63235 2: 2088 16,-19: - 3: 48031 + 1: 48031 16,-18: - 3: 139 + 1: 139 2: 31744 16,-17: - 3: 48942 + 1: 48942 2: 16384 13,0: 2: 20288 @@ -11602,36 +11602,36 @@ entities: 2: 65280 14,2: 2: 65348 - 3: 10 + 1: 10 14,1: - 3: 43694 + 1: 43694 2: 17472 14,3: 2: 14 15,2: 2: 65348 - 3: 10 + 1: 10 15,1: - 3: 43694 + 1: 43694 2: 17472 15,3: 2: 14 16,0: 2: 19264 - 3: 1038 + 1: 1038 16,2: 2: 65348 - 3: 10 + 1: 10 16,-1: - 3: 43690 + 1: 43690 2: 17476 17,-2: 2: 20478 17,-1: - 3: 43690 + 1: 43690 2: 17476 17,0: - 3: 1038 + 1: 1038 2: 19264 17,-3: 2: 32768 @@ -11651,7 +11651,7 @@ entities: 2: 4407 18,0: 2: 44456 - 3: 512 + 1: 512 19,0: 2: 13105 19,-2: @@ -11661,85 +11661,85 @@ entities: 20,-2: 2: 311 20,-7: - 3: 24576 + 1: 24576 19,-7: 2: 32768 20,-6: 2: 16912 - 3: 36078 + 1: 36078 19,-6: 2: 200 20,-5: 2: 784 - 3: 60552 + 1: 60552 20,-4: - 3: 70 + 1: 70 21,-6: - 3: 18367 + 1: 18367 2: 2048 21,-5: - 3: 55735 + 1: 55735 2: 8 21,-8: 2: 546 - 3: 34952 + 1: 34952 21,-7: - 3: 34958 + 1: 34958 2: 512 21,-4: - 3: 31612 + 1: 31612 21,-9: - 3: 36352 + 1: 36352 2: 231 22,-8: - 3: 57339 + 1: 57339 2: 4 22,-7: - 3: 4271 + 1: 4271 2: 57600 22,-6: - 3: 60493 + 1: 60493 2: 16 22,-5: 2: 1 - 3: 65534 + 1: 65534 22,-9: - 3: 40908 + 1: 40908 2: 16434 22,-4: - 3: 15031 + 1: 15031 2: 8 23,-8: - 3: 60943 + 1: 60943 23,-7: 2: 13056 - 3: 52462 + 1: 52462 23,-6: - 3: 1615 + 1: 1615 23,-5: - 3: 887 + 1: 887 2: 12288 23,-9: - 3: 60943 + 1: 60943 23,-4: - 3: 4 + 1: 4 2: 336 24,-8: - 3: 4353 + 1: 4353 24,-7: - 3: 4369 + 1: 4369 24,-6: - 3: 273 + 1: 273 16,1: - 3: 43694 + 1: 43694 2: 17472 16,3: 2: 14 17,2: 2: 65348 - 3: 10 + 1: 10 17,1: - 3: 43694 + 1: 43694 2: 17472 17,3: 2: 14 @@ -11756,7 +11756,7 @@ entities: 19,3: 2: 3 24,-9: - 3: 12545 + 1: 12545 4,-22: 2: 61440 4,-21: @@ -11766,48 +11766,48 @@ entities: 8,-21: 2: 4352 17,-12: - 3: 53248 + 1: 53248 2: 11980 17,-11: - 3: 40129 + 1: 40129 2: 24588 17,-10: 2: 199 17,-13: 2: 17476 18,-12: - 3: 61426 + 1: 61426 2: 4096 18,-11: - 3: 30591 + 1: 30591 18,-10: 2: 112 18,-13: 2: 51336 19,-12: - 3: 65520 + 1: 65520 19,-11: - 3: 32766 + 1: 32766 2: 32768 19,-13: 2: 4096 19,-10: - 3: 2 + 1: 2 20,-12: - 3: 4352 + 1: 4352 2: 8940 20,-11: - 3: 32784 + 1: 32784 2: 14790 11,-23: - 3: 49152 + 1: 49152 11,-22: - 3: 34956 + 1: 34956 2: 1088 12,-23: - 3: 4096 + 1: 4096 12,-22: - 3: 273 + 1: 273 -4,-22: 2: 28672 -5,-22: @@ -11836,7 +11836,7 @@ entities: 2: 127 -14,7: 2: 61986 - 3: 85 + 1: 85 -3,9: 2: 18 -16,2: @@ -11851,63 +11851,63 @@ entities: 2: 65315 -15,2: 2: 61713 - 3: 2048 + 1: 2048 -15,3: 2: 61713 - 3: 2056 + 1: 2056 -15,4: 2: 61713 - 3: 2056 + 1: 2056 -14,1: 2: 65280 -14,2: - 3: 36608 + 1: 36608 2: 28672 -14,3: - 3: 36623 + 1: 36623 2: 28672 -14,4: - 3: 36623 + 1: 36623 2: 28672 1,-22: 2: 28672 1,-21: 2: 3196 24,-10: - 3: 4096 + 1: 4096 23,-10: 2: 52851 - 3: 12288 + 1: 12288 -16,5: 2: 52364 -16,6: 2: 34956 -15,5: 2: 46353 - 3: 16392 + 1: 16392 -15,6: 2: 4373 -14,5: - 3: 8207 + 1: 8207 2: 53760 -14,6: - 3: 21872 + 1: 21872 2: 8706 -13,6: - 3: 21872 + 1: 21872 2: 8706 20,-13: 2: 12850 20,-10: 2: 35879 - 3: 8 + 1: 8 21,-12: 2: 52851 21,-11: 2: 264 - 3: 4096 + 1: 4096 21,-10: - 3: 1 + 1: 1 2: 29124 22,-12: 2: 4096 @@ -11918,32 +11918,32 @@ entities: 23,-11: 2: 4096 15,-21: - 3: 2048 + 1: 2048 16,-21: - 3: 48058 + 1: 48058 17,-16: 2: 1 - 3: 65534 + 1: 65534 17,-15: - 3: 34021 + 1: 34021 2: 25360 17,-17: - 3: 65505 + 1: 65505 17,-14: 2: 17612 18,-16: - 3: 30583 + 1: 30583 18,-15: - 3: 41968 + 1: 41968 2: 20480 18,-14: 2: 35226 18,-17: - 3: 30578 + 1: 30578 19,-16: 2: 4352 19,-15: - 3: 16 + 1: 16 0: 4096 2: 25088 19,-14: @@ -11951,39 +11951,39 @@ entities: 20,-14: 2: 12816 17,-20: - 3: 49037 + 1: 49037 17,-18: 2: 28464 - 3: 6 + 1: 6 17,-21: - 3: 54545 + 1: 54545 17,-19: - 3: 8418 + 1: 8418 2: 52736 18,-20: - 3: 30513 + 1: 30513 18,-19: - 3: 56784 + 1: 56784 18,-18: 2: 1999 - 3: 28672 + 1: 28672 19,-19: - 3: 4352 + 1: 4352 19,-18: 2: 4097 19,-17: 2: 256 16,-22: - 3: 32768 + 1: 32768 17,-22: - 3: 4096 + 1: 4096 20,-3: 2: 60544 21,-3: 2: 256 - 3: 14 + 1: 14 22,-3: - 3: 1 + 1: 1 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -12001,10 +12001,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -12031,10 +12031,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 235 moles: - - 0 - - 0 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -95220,13 +95220,6 @@ entities: - type: Transform pos: -4.5,-52.5 parent: 2 -- proto: HolopadServiceGameRoom - entities: - - uid: 11044 - components: - - type: Transform - pos: 19.5,-47.5 - parent: 2 - proto: HolopadGeneralTools entities: - uid: 20801 @@ -95412,6 +95405,13 @@ entities: - type: Transform pos: 36.5,-13.5 parent: 2 +- proto: HolopadServiceGameRoom + entities: + - uid: 11044 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 2 - proto: HolopadServiceJanitor entities: - uid: 20441 @@ -102813,11 +102813,6 @@ entities: parent: 2 - proto: Protolathe entities: - - uid: 980 - components: - - type: Transform - pos: 8.5,20.5 - parent: 2 - uid: 4232 components: - type: Transform From 843a5de809f0bfc91d15b86f3bde69653e64dbc5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Dec 2024 23:26:02 +0000 Subject: [PATCH 219/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f5352e88df..11bc1d6b1f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,18 +1,4 @@ Entries: -- author: DieselMohawk - changes: - - message: Added Armband to back of Security Jumpsuit - type: Fix - id: 7249 - time: '2024-08-30T01:46:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31635 -- author: Winkarst-cpu - changes: - - message: Potted plants now fade their sprites, just like trees. - type: Tweak - id: 7250 - time: '2024-08-30T10:34:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31628 - author: AutoOtter changes: - message: Greatly reduced meteorite wall health for easier cleanup and repair. @@ -3937,3 +3923,17 @@ id: 7748 time: '2024-12-23T19:54:18.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32964 +- author: Booblesnoot42 + changes: + - message: On Cog, an unnecessary protolathe was removed from cargo. + type: Remove + id: 7749 + time: '2024-12-23T23:24:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34026 +- author: Booblesnoot42 + changes: + - message: On Amber, an unnecessary protolathe was removed from cargo. + type: Remove + id: 7750 + time: '2024-12-23T23:24:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34027 From 2c4be6be00f66785fc8f638233a399a876317adf Mon Sep 17 00:00:00 2001 From: August Sun <45527070+august-sun@users.noreply.github.com> Date: Mon, 23 Dec 2024 17:34:01 -0600 Subject: [PATCH 220/263] Increases Marathon cryosleep size, added meteor shielding to Marathon chapelroid (#34044) Increases Marathon cryosleep size, added meteor shielding to chapelroid Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com> --- Resources/Maps/marathon.yml | 1188 ++++++++++++++++++++++++++--------- 1 file changed, 886 insertions(+), 302 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 92647154a6..955ebf969a 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -182,11 +182,11 @@ entities: version: 6 1,2: ind: 1,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAZwAAAAADZwAAAAABZwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAZwAAAAAAZwAAAAACZwAAAAABegAAAAAAegAAAAACegAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAZwAAAAADZwAAAAABZwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAZwAAAAAAZwAAAAACZwAAAAABegAAAAAAegAAAAACegAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,2: ind: 2,2 - tiles: fgAAAAAATwAAAAAAfgAAAAAAHwAAAAACJgAAAAACJgAAAAABJgAAAAACJgAAAAAAJgAAAAAAJgAAAAABJgAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADJgAAAAABJgAAAAACfgAAAAAAXQAAAAACHwAAAAADfgAAAAAAZwAAAAADZwAAAAADfgAAAAAAJgAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAABJgAAAAADHwAAAAAAHwAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACJgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACJgAAAAABfgAAAAAAXQAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABHwAAAAAAHwAAAAADXQAAAAACfgAAAAAAZwAAAAAAZwAAAAABfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADHwAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAATwAAAAAAfgAAAAAAHwAAAAACJgAAAAACJgAAAAABJgAAAAACJgAAAAAAJgAAAAAAJgAAAAABJgAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADJgAAAAABJgAAAAACfgAAAAAAXQAAAAACHwAAAAADfgAAAAAAZwAAAAADZwAAAAADfgAAAAAAJgAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAABJgAAAAADHwAAAAAAHwAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACJgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACJgAAAAABfgAAAAAAXQAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABHwAAAAAAHwAAAAADXQAAAAACfgAAAAAAZwAAAAAAZwAAAAABfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADHwAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 2,1: ind: 2,1 @@ -326,11 +326,11 @@ entities: version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: HwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAQAAAAAAAQAAAAAAAHwAAAAADfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACQAAAAAAAQAAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAHBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAQAAAAAAAQAAAAAAAHwAAAAADfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACQAAAAAAAQAAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAHBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -4,-3: ind: -4,-3 @@ -354,23 +354,23 @@ entities: version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAABfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAA version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 0,4: ind: 0,4 @@ -420,6 +420,10 @@ entities: ind: -5,1 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -4333,6 +4337,7 @@ entities: 2072: 2,-33 2817: -8,-51 2938: -17,-53 + 3172: 29,43 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -4341,6 +4346,7 @@ entities: 2819: -14,-51 2937: -19,-53 3111: -6,-12 + 3168: 33,43 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -4351,6 +4357,7 @@ entities: 2843: -5,-52 2940: -17,-56 2982: 12,12 + 3171: 29,41 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -4360,6 +4367,7 @@ entities: 2820: -14,-53 2939: -19,-56 2983: 14,12 + 3167: 33,41 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -4487,6 +4495,7 @@ entities: 3144: -1,-40 3145: -1,-41 3146: -1,-42 + 3170: 29,42 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -4715,6 +4724,7 @@ entities: 3141: -1,-40 3142: -1,-41 3143: -1,-42 + 3169: 33,42 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5849,7 +5859,7 @@ entities: -15,16: 2: 34952 -14,15: - 2: 34 + 2: 546 0: 32768 -13,13: 0: 47359 @@ -5859,7 +5869,7 @@ entities: 0: 62071 -14,16: 0: 34952 - 2: 48 + 2: 32 -13,16: 0: 65535 -12,13: @@ -5925,7 +5935,7 @@ entities: 0: 3840 -12,17: 0: 119 - 2: 20480 + 2: 53248 -13,17: 0: 255 2: 20480 @@ -5942,7 +5952,7 @@ entities: -15,17: 2: 136 -14,17: - 2: 9776 + 2: 42546 -14,18: 2: 12 -4,12: @@ -5974,8 +5984,8 @@ entities: -1,11: 2: 56828 -1,12: - 0: 7 - 2: 64984 + 0: 34959 + 2: 30032 0,10: 2: 4896 0: 34944 @@ -6038,11 +6048,11 @@ entities: 2: 17476 0: 34952 -1,13: - 2: 55517 - 0: 1792 + 2: 20565 + 0: 36744 -1,14: - 2: 40957 - 0: 16384 + 2: 6005 + 0: 51336 -1,15: 2: 1 0: 64392 @@ -6118,20 +6128,20 @@ entities: 7,8: 0: 61152 7,10: - 0: 3812 + 0: 61160 7,11: - 0: 17614 + 0: 17608 7,12: 0: 17476 8,8: 0: 64394 8,9: 0: 49075 - 8,11: - 0: 191 - 2: 61440 8,10: - 0: 41640 + 0: 46008 + 8,11: + 0: 248 + 2: 61440 9,8: 0: 65535 9,9: @@ -6431,24 +6441,34 @@ entities: 2: 34952 6,-6: 2: 61440 - 4: 224 + 6: 224 6,-5: 0: 112 2: 2184 6,-8: 3: 224 - 5: 57344 + 4: 57344 6,-7: - 5: 224 - 6: 57344 + 4: 224 + 5: 57344 6,-9: - 5: 57568 + 4: 57568 7,-5: 2: 4080 + 7,-8: + 2: 35976 + 7,-7: + 2: 35016 7,-6: - 2: 192 + 2: 3276 + 7,-9: + 2: 51340 + 8,-8: + 2: 8994 + 8,-7: + 2: 26162 8,-6: - 2: 22005 + 2: 22519 8,-5: 2: 65525 8,-4: @@ -6512,19 +6532,25 @@ entities: 3,-13: 2: 12835 4,-10: - 2: 241 - 0: 57344 + 2: 17 + 0: 59566 4,-11: 2: 7936 + 0: 8192 5,-11: 2: 20224 + 0: 8192 5,-10: - 2: 35060 - 0: 12288 + 0: 12323 + 2: 35012 6,-10: 2: 8928 7,-10: - 2: 8816 + 2: 43760 + 8,-10: + 2: 8752 + 8,-9: + 2: 12835 -4,-12: 0: 56477 -4,-13: @@ -6785,8 +6811,6 @@ entities: 2: 4471 10,-8: 2: 4369 - 8,-7: - 2: 21504 9,-6: 2: 22005 9,-7: @@ -6860,7 +6884,7 @@ entities: 3,16: 2: 242 12,11: - 0: 2 + 4: 2 14,9: 2: 39304 0: 17476 @@ -7114,12 +7138,12 @@ entities: -13,-9: 2: 13106 -19,-8: - 2: 2184 + 2: 2188 -19,-9: - 2: 36608 + 2: 28672 0: 8 -18,-8: - 2: 34594 + 2: 34560 0: 8 -18,-7: 2: 19660 @@ -7127,7 +7151,6 @@ entities: 2: 196 -18,-9: 0: 36079 - 2: 4096 -17,-6: 2: 9783 -17,-9: @@ -7144,16 +7167,20 @@ entities: 0: 29311 -21,-11: 0: 32975 + 2: 4096 -20,-10: 0: 119 -21,-10: 0: 8 + 2: 20496 + -20,-9: + 2: 50960 + -21,-9: + 2: 143 -19,-12: 0: 7953 -19,-11: 0: 53213 - -20,-9: - 2: 128 -19,-10: 0: 34956 -19,-13: @@ -7247,8 +7274,10 @@ entities: 0: 29956 -13,-14: 0: 29957 + -12,-16: + 2: 18275 -12,-15: - 2: 39417 + 2: 39421 -12,-14: 2: 4601 -12,-13: @@ -7283,6 +7312,7 @@ entities: 0: 51200 -20,-17: 0: 52224 + 2: 17 -19,-16: 0: 65535 -19,-15: @@ -7301,18 +7331,46 @@ entities: 0: 61192 -22,-16: 0: 49152 + -22,-17: + 2: 34944 -21,-14: 0: 32 -22,-12: + 2: 4371 0: 34944 + -22,-11: + 2: 60179 + -22,-10: + 2: 34952 + -20,-18: + 2: 65024 + -21,-18: + 2: 32768 + -21,-17: + 2: 1148 + -19,-18: + 2: 20224 + -18,-18: + 2: 6080 + -18,-17: + 2: 1 -17,-18: - 2: 1404 + 2: 1148 0: 49152 -16,-18: - 2: 199 + 2: 79 0: 13824 + -15,-18: + 2: 15 -14,-18: + 2: 207 0: 256 + -13,-18: + 2: 30481 + -13,-17: + 2: 142 + -12,-17: + 2: 12560 -11,-15: 2: 16 -11,-14: @@ -7494,21 +7552,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -7539,6 +7582,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: BecomesStation id: Marathon @@ -11009,11 +11067,6 @@ entities: - type: Transform pos: 34.5,35.5 parent: 30 - - uid: 14847 - components: - - type: Transform - pos: 30.5,40.5 - parent: 30 - uid: 15646 components: - type: Transform @@ -11144,6 +11197,12 @@ entities: - type: Transform pos: -69.5,-54.5 parent: 30 + - uid: 22995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,40.5 + parent: 30 - proto: AirlockGlassShuttle entities: - uid: 9121 @@ -11465,6 +11524,12 @@ entities: - type: Transform pos: -50.5,37.5 parent: 30 + - uid: 1723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,44.5 + parent: 30 - uid: 5325 components: - type: Transform @@ -11501,6 +11566,18 @@ entities: - type: Transform pos: -4.5,-24.5 parent: 30 + - uid: 9626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,45.5 + parent: 30 + - type: Door + secondsUntilStateChange: -3310.928 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - uid: 9716 components: - type: Transform @@ -11526,11 +11603,6 @@ entities: - type: Transform pos: 16.5,55.5 parent: 30 - - uid: 13668 - components: - - type: Transform - pos: 34.5,44.5 - parent: 30 - uid: 13671 components: - type: Transform @@ -12862,14 +12934,6 @@ entities: - type: Transform pos: -30.5,11.5 parent: 30 - - uid: 1038 - components: - - type: MetaData - name: Maints North East APC - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,43.5 - parent: 30 - uid: 1462 components: - type: MetaData @@ -12957,6 +13021,14 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,40.5 parent: 30 + - uid: 5482 + components: + - type: MetaData + name: North East Maints APC + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,44.5 + parent: 30 - uid: 5561 components: - type: MetaData @@ -15927,6 +15999,11 @@ entities: - type: Transform pos: -34.5,-6.5 parent: 30 + - uid: 1038 + components: + - type: Transform + pos: 30.5,40.5 + parent: 30 - uid: 1043 components: - type: Transform @@ -15947,16 +16024,6 @@ entities: - type: Transform pos: 30.5,41.5 parent: 30 - - uid: 1393 - components: - - type: Transform - pos: 32.5,43.5 - parent: 30 - - uid: 1723 - components: - - type: Transform - pos: 30.5,40.5 - parent: 30 - uid: 1878 components: - type: Transform @@ -16017,6 +16084,11 @@ entities: - type: Transform pos: -57.5,7.5 parent: 30 + - uid: 3348 + components: + - type: Transform + pos: 34.5,45.5 + parent: 30 - uid: 3509 components: - type: Transform @@ -21092,6 +21164,11 @@ entities: - type: Transform pos: 7.5,26.5 parent: 30 + - uid: 6352 + components: + - type: Transform + pos: 35.5,45.5 + parent: 30 - uid: 6648 components: - type: Transform @@ -26542,6 +26619,11 @@ entities: - type: Transform pos: 15.5,55.5 parent: 30 + - uid: 13786 + components: + - type: Transform + pos: 30.5,43.5 + parent: 30 - uid: 13845 components: - type: Transform @@ -27035,7 +27117,7 @@ entities: - uid: 14831 components: - type: Transform - pos: 33.5,44.5 + pos: 31.5,43.5 parent: 30 - uid: 14832 components: @@ -27082,16 +27164,6 @@ entities: - type: Transform pos: 30.5,50.5 parent: 30 - - uid: 14841 - components: - - type: Transform - pos: 33.5,43.5 - parent: 30 - - uid: 14849 - components: - - type: Transform - pos: 34.5,44.5 - parent: 30 - uid: 14850 components: - type: Transform @@ -27622,6 +27694,21 @@ entities: - type: Transform pos: 18.5,61.5 parent: 30 + - uid: 15233 + components: + - type: Transform + pos: 30.5,41.5 + parent: 30 + - uid: 15235 + components: + - type: Transform + pos: 30.5,42.5 + parent: 30 + - uid: 15236 + components: + - type: Transform + pos: 30.5,45.5 + parent: 30 - uid: 15270 components: - type: Transform @@ -27747,6 +27834,11 @@ entities: - type: Transform pos: 43.5,10.5 parent: 30 + - uid: 15927 + components: + - type: Transform + pos: 32.5,44.5 + parent: 30 - uid: 16018 components: - type: Transform @@ -31507,6 +31599,11 @@ entities: - type: Transform pos: -61.5,-30.5 parent: 30 + - uid: 21309 + components: + - type: Transform + pos: 31.5,44.5 + parent: 30 - uid: 21315 components: - type: Transform @@ -31802,6 +31899,11 @@ entities: - type: Transform pos: -82.5,-43.5 parent: 30 + - uid: 22137 + components: + - type: Transform + pos: 32.5,45.5 + parent: 30 - uid: 22227 components: - type: Transform @@ -31941,6 +32043,11 @@ entities: - type: Transform pos: -46.5,8.5 parent: 30 + - uid: 1366 + components: + - type: Transform + pos: 35.5,45.5 + parent: 30 - uid: 2403 components: - type: Transform @@ -33251,6 +33358,11 @@ entities: - type: Transform pos: -13.5,-32.5 parent: 30 + - uid: 6592 + components: + - type: Transform + pos: 34.5,45.5 + parent: 30 - uid: 7096 components: - type: Transform @@ -36326,16 +36438,6 @@ entities: - type: Transform pos: 33.5,45.5 parent: 30 - - uid: 15926 - components: - - type: Transform - pos: 33.5,44.5 - parent: 30 - - uid: 15927 - components: - - type: Transform - pos: 34.5,44.5 - parent: 30 - uid: 15928 components: - type: Transform @@ -40825,11 +40927,6 @@ entities: - type: Transform pos: -33.5,-6.5 parent: 30 - - uid: 9626 - components: - - type: Transform - pos: 32.5,43.5 - parent: 30 - uid: 9627 components: - type: Transform @@ -52169,11 +52266,6 @@ entities: - 0 - 0 - 0 - - uid: 9844 - components: - - type: Transform - pos: 29.5,44.5 - parent: 30 - uid: 16212 components: - type: Transform @@ -52380,29 +52472,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 15236 - components: - - type: Transform - pos: 33.5,41.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16213 components: - type: Transform @@ -55446,15 +55515,17 @@ entities: parent: 30 - proto: CryogenicSleepUnit entities: - - uid: 1771 + - uid: 6594 components: - type: Transform - pos: 31.5,41.5 + rot: 3.141592653589793 rad + pos: 29.5,43.5 parent: 30 - - uid: 5490 + - uid: 6595 components: - type: Transform - pos: 31.5,42.5 + rot: 3.141592653589793 rad + pos: 29.5,41.5 parent: 30 - uid: 7398 components: @@ -55466,21 +55537,26 @@ entities: - type: Transform pos: -27.5,-7.5 parent: 30 -- proto: CryogenicSleepUnitSpawner - entities: - - uid: 13665 + - uid: 8808 + components: + - type: Transform + pos: 33.5,42.5 + parent: 30 + - uid: 9041 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,42.5 parent: 30 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 9041 + - uid: 18260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,41.5 + pos: 33.5,43.5 + parent: 30 + - uid: 22167 + components: + - type: Transform + pos: 33.5,41.5 parent: 30 - proto: CryoPod entities: @@ -56086,6 +56162,11 @@ entities: parent: 30 - proto: DisposalBend entities: + - uid: 5490 + components: + - type: Transform + pos: 35.5,45.5 + parent: 30 - uid: 7196 components: - type: Transform @@ -56148,6 +56229,12 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,10.5 parent: 30 + - uid: 13506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,44.5 + parent: 30 - uid: 13803 components: - type: Transform @@ -56581,17 +56668,6 @@ entities: - type: Transform pos: 46.5,44.5 parent: 30 - - uid: 22136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,44.5 - parent: 30 - - uid: 22137 - components: - - type: Transform - pos: 33.5,45.5 - parent: 30 - uid: 22138 components: - type: Transform @@ -57155,6 +57231,12 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-17.5 parent: 30 + - uid: 9842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,45.5 + parent: 30 - uid: 9891 components: - type: Transform @@ -60541,17 +60623,11 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,45.5 parent: 30 - - uid: 22167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,44.5 - parent: 30 - uid: 22168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,44.5 + rot: -1.5707963267948966 rad + pos: 34.5,45.5 parent: 30 - uid: 22169 components: @@ -81559,6 +81635,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13665 + components: + - type: Transform + pos: 30.5,40.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13754 components: - type: Transform @@ -81750,13 +81833,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13786 - components: - - type: Transform - pos: 30.5,40.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13787 components: - type: Transform @@ -93297,6 +93373,12 @@ entities: - type: Transform pos: -46.5,-0.5 parent: 30 + - uid: 1771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,40.5 + parent: 30 - uid: 1821 components: - type: Transform @@ -93630,12 +93712,6 @@ entities: - type: Transform pos: -15.5,-16.5 parent: 30 - - uid: 3348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-70.5 - parent: 30 - uid: 3405 components: - type: Transform @@ -94214,16 +94290,6 @@ entities: - type: Transform pos: 28.5,39.5 parent: 30 - - uid: 6592 - components: - - type: Transform - pos: 29.5,40.5 - parent: 30 - - uid: 6593 - components: - - type: Transform - pos: 31.5,40.5 - parent: 30 - uid: 6626 components: - type: Transform @@ -95923,6 +95989,12 @@ entities: - type: Transform pos: 35.5,36.5 parent: 30 + - uid: 13668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-71.5 + parent: 30 - uid: 13670 components: - type: Transform @@ -96235,6 +96307,17 @@ entities: - type: Transform pos: 20.5,60.5 parent: 30 + - uid: 14841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-71.5 + parent: 30 + - uid: 14842 + components: + - type: Transform + pos: -73.5,-32.5 + parent: 30 - uid: 14845 components: - type: Transform @@ -96332,12 +96415,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,67.5 parent: 30 - - uid: 15353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-70.5 - parent: 30 - uid: 15445 components: - type: Transform @@ -97693,11 +97770,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,10.5 parent: 30 - - uid: 18260 - components: - - type: Transform - pos: -72.5,-32.5 - parent: 30 - uid: 18261 components: - type: Transform @@ -99148,6 +99220,377 @@ entities: - type: Transform pos: -6.5,-50.5 parent: 30 + - uid: 22966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-32.5 + parent: 30 + - uid: 22983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-32.5 + parent: 30 + - uid: 22984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-32.5 + parent: 30 + - uid: 22985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-33.5 + parent: 30 + - uid: 22986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-66.5 + parent: 30 + - uid: 22989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-57.5 + parent: 30 + - uid: 22990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-68.5 + parent: 30 + - uid: 22992 + components: + - type: Transform + pos: 30.5,40.5 + parent: 30 + - uid: 22997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-69.5 + parent: 30 + - uid: 22998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-69.5 + parent: 30 + - uid: 22999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-69.5 + parent: 30 + - uid: 23000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-69.5 + parent: 30 + - uid: 23001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-40.5 + parent: 30 + - uid: 23002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-68.5 + parent: 30 + - uid: 23003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-67.5 + parent: 30 + - uid: 23004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-67.5 + parent: 30 + - uid: 23005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-66.5 + parent: 30 + - uid: 23006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-68.5 + parent: 30 + - uid: 23008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-66.5 + parent: 30 + - uid: 23009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-70.5 + parent: 30 + - uid: 23010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-64.5 + parent: 30 + - uid: 23012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-68.5 + parent: 30 + - uid: 23013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-33.5 + parent: 30 + - uid: 23014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-70.5 + parent: 30 + - uid: 23015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-69.5 + parent: 30 + - uid: 23016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-69.5 + parent: 30 + - uid: 23018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-71.5 + parent: 30 + - uid: 23019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-71.5 + parent: 30 + - uid: 23020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-71.5 + parent: 30 + - uid: 23021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-63.5 + parent: 30 + - uid: 23022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-71.5 + parent: 30 + - uid: 23023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-70.5 + parent: 30 + - uid: 23024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-69.5 + parent: 30 + - uid: 23025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-69.5 + parent: 30 + - uid: 23026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-68.5 + parent: 30 + - uid: 23027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-69.5 + parent: 30 + - uid: 23028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-33.5 + parent: 30 + - uid: 23029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-65.5 + parent: 30 + - uid: 23031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-69.5 + parent: 30 + - uid: 23032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-62.5 + parent: 30 + - uid: 23033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-63.5 + parent: 30 + - uid: 23034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-61.5 + parent: 30 + - uid: 23035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-67.5 + parent: 30 + - uid: 23036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-38.5 + parent: 30 + - uid: 23037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-62.5 + parent: 30 + - uid: 23038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-47.5 + parent: 30 + - uid: 23039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-46.5 + parent: 30 + - uid: 23040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-45.5 + parent: 30 + - uid: 23041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-43.5 + parent: 30 + - uid: 23042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-41.5 + parent: 30 + - uid: 23043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-41.5 + parent: 30 + - uid: 23044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-40.5 + parent: 30 + - uid: 23045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-39.5 + parent: 30 + - uid: 23046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-36.5 + parent: 30 + - uid: 23047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-36.5 + parent: 30 + - uid: 23048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-35.5 + parent: 30 + - uid: 23050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-35.5 + parent: 30 + - uid: 23051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-35.5 + parent: 30 + - uid: 23052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-34.5 + parent: 30 + - uid: 23054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-34.5 + parent: 30 + - uid: 23062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-69.5 + parent: 30 + - uid: 23063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-70.5 + parent: 30 - proto: GrilleBroken entities: - uid: 695 @@ -99460,12 +99903,6 @@ entities: rot: -1.5707963267948966 rad pos: -70.5,-29.5 parent: 30 - - uid: 18283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-32.5 - parent: 30 - uid: 18284 components: - type: Transform @@ -99500,6 +99937,112 @@ entities: - type: Transform pos: -34.5,-46.5 parent: 30 + - uid: 22987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-66.5 + parent: 30 + - uid: 22988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-59.5 + parent: 30 + - uid: 23007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-65.5 + parent: 30 + - uid: 23011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-70.5 + parent: 30 + - uid: 23017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-71.5 + parent: 30 + - uid: 23030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-64.5 + parent: 30 + - uid: 23049 + components: + - type: Transform + pos: -76.5,-32.5 + parent: 30 + - uid: 23053 + components: + - type: Transform + pos: -80.5,-35.5 + parent: 30 + - uid: 23055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-37.5 + parent: 30 + - uid: 23056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-31.5 + parent: 30 + - uid: 23057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-42.5 + parent: 30 + - uid: 23058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-40.5 + parent: 30 + - uid: 23059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-44.5 + parent: 30 + - uid: 23060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,-47.5 + parent: 30 + - uid: 23061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-69.5 + parent: 30 + - uid: 23064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-71.5 + parent: 30 + - uid: 23065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-71.5 + parent: 30 + - uid: 23066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-71.5 + parent: 30 - proto: GrilleSpawner entities: - uid: 10007 @@ -99914,10 +100457,10 @@ entities: parent: 30 - proto: HolopadGeneralCryosleep entities: - - uid: 22966 + - uid: 14847 components: - type: Transform - pos: 30.5,41.5 + pos: 31.5,42.5 parent: 30 - proto: HolopadGeneralDisposals entities: @@ -107996,6 +108539,12 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,42.5 + parent: 30 - uid: 6682 components: - type: Transform @@ -108975,11 +109524,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-48.5 parent: 30 - - uid: 14842 - components: - - type: Transform - pos: 30.5,42.5 - parent: 30 - uid: 14948 components: - type: Transform @@ -109252,6 +109796,12 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 22991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,42.5 + parent: 30 - proto: PoweredlightExterior entities: - uid: 833 @@ -111981,6 +112531,12 @@ entities: - type: Transform pos: -29.5,9.5 parent: 30 + - uid: 22996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,44.5 + parent: 30 - proto: RandomSnacks entities: - uid: 7565 @@ -113874,16 +114430,6 @@ entities: - type: Transform pos: 11.5,14.5 parent: 30 - - uid: 6590 - components: - - type: Transform - pos: 29.5,40.5 - parent: 30 - - uid: 6591 - components: - - type: Transform - pos: 31.5,40.5 - parent: 30 - uid: 6627 components: - type: Transform @@ -115208,6 +115754,11 @@ entities: - type: Transform pos: 16.5,63.5 parent: 30 + - uid: 14849 + components: + - type: Transform + pos: 30.5,40.5 + parent: 30 - uid: 14915 components: - type: Transform @@ -116216,6 +116767,12 @@ entities: - type: Transform pos: -41.5,-28.5 parent: 30 + - uid: 22136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,40.5 + parent: 30 - uid: 22366 components: - type: Transform @@ -118118,10 +118675,10 @@ entities: parent: 30 - proto: SignCryogenicsMed entities: - - uid: 15233 + - uid: 22993 components: - type: Transform - pos: 32.5,40.5 + pos: 29.5,40.5 parent: 30 - proto: SignDangerMed entities: @@ -118208,10 +118765,10 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,28.5 parent: 30 - - uid: 15235 + - uid: 15353 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: 28.5,40.5 parent: 30 - proto: SignDirectionalDorms @@ -123264,17 +123821,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Shower Room - - uid: 21309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,42.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cryosleep - uid: 21400 components: - type: Transform @@ -124100,6 +124646,15 @@ entities: - SurveillanceCameraService nameSet: True id: Service Hall + - uid: 15926 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 32.5,43.5 + parent: 30 + - type: Physics + bodyType: Dynamic - uid: 21221 components: - type: Transform @@ -138885,16 +139440,17 @@ entities: - type: Transform pos: -37.5,29.5 parent: 30 - - uid: 1366 - components: - - type: Transform - pos: 31.5,43.5 - parent: 30 - uid: 1370 components: - type: Transform pos: -37.5,34.5 parent: 30 + - uid: 1393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,44.5 + parent: 30 - uid: 1463 components: - type: Transform @@ -139323,11 +139879,6 @@ entities: - type: Transform pos: 7.5,31.5 parent: 30 - - uid: 5482 - components: - - type: Transform - pos: 32.5,42.5 - parent: 30 - uid: 5500 components: - type: Transform @@ -139508,11 +140059,6 @@ entities: - type: Transform pos: 35.5,31.5 parent: 30 - - uid: 6352 - components: - - type: Transform - pos: 32.5,43.5 - parent: 30 - uid: 6353 components: - type: Transform @@ -139663,15 +140209,17 @@ entities: - type: Transform pos: 29.5,32.5 parent: 30 - - uid: 6594 + - uid: 6590 components: - type: Transform - pos: 32.5,41.5 + rot: 3.141592653589793 rad + pos: 33.5,44.5 parent: 30 - - uid: 6595 + - uid: 6591 components: - type: Transform - pos: 32.5,40.5 + rot: 3.141592653589793 rad + pos: 29.5,44.5 parent: 30 - uid: 6611 components: @@ -140707,11 +141255,6 @@ entities: - type: Transform pos: -39.5,-9.5 parent: 30 - - uid: 8808 - components: - - type: Transform - pos: 30.5,43.5 - parent: 30 - uid: 8811 components: - type: Transform @@ -140838,10 +141381,11 @@ entities: - type: Transform pos: -42.5,-17.5 parent: 30 - - uid: 9842 + - uid: 9844 components: - type: Transform - pos: 29.5,43.5 + rot: -1.5707963267948966 rad + pos: 34.5,44.5 parent: 30 - uid: 9870 components: @@ -141376,11 +141920,6 @@ entities: - type: Transform pos: 14.5,53.5 parent: 30 - - uid: 13506 - components: - - type: Transform - pos: 34.5,45.5 - parent: 30 - uid: 13508 components: - type: Transform @@ -142674,6 +143213,12 @@ entities: - type: Transform pos: -71.5,-58.5 parent: 30 + - uid: 18283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,44.5 + parent: 30 - uid: 19651 components: - type: Transform @@ -142782,6 +143327,12 @@ entities: - type: Transform pos: -43.5,2.5 parent: 30 + - uid: 22994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,40.5 + parent: 30 - proto: WallSolidRust entities: - uid: 223 @@ -145225,63 +145776,96 @@ entities: - uid: 18300 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: -76.5,-34.5 - parent: 30 + pos: -74.22899,-36.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18301 components: - type: Transform - pos: -75.5,-33.5 - parent: 30 + anchored: False + pos: -73.22899,-35.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18302 components: - type: Transform - pos: -74.5,-33.5 - parent: 30 + anchored: False + pos: -72.22899,-35.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18303 components: - type: Transform - pos: -73.5,-33.5 - parent: 30 + anchored: False + pos: -71.22899,-35.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18304 components: - type: Transform - pos: -72.5,-33.5 - parent: 30 + anchored: False + pos: -70.22899,-35.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18305 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: -72.5,-33.5 - parent: 30 + pos: -70.22899,-35.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18306 components: - type: Transform - pos: -71.5,-32.5 - parent: 30 + anchored: False + pos: -69.22899,-34.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18307 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: -71.5,-32.5 - parent: 30 + pos: -69.22899,-34.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18308 components: - type: Transform - pos: -70.5,-31.5 - parent: 30 + anchored: False + pos: -68.22899,-33.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18309 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: -70.5,-31.5 - parent: 30 + pos: -68.22899,-33.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18310 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: -70.5,-30.5 - parent: 30 + pos: -68.22899,-32.91482 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 18311 components: - type: Transform From 285e9349b672ce937f7afb16242baadf1b01d9a7 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 24 Dec 2024 01:18:31 +0100 Subject: [PATCH 221/263] Fix race condition causing disconnected admins to appear in adminwho (#34033) --- .../Administration/Managers/AdminManager.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Content.Server/Administration/Managers/AdminManager.cs b/Content.Server/Administration/Managers/AdminManager.cs index 4e271009f7..2e2ebd31ba 100644 --- a/Content.Server/Administration/Managers/AdminManager.cs +++ b/Content.Server/Administration/Managers/AdminManager.cs @@ -408,6 +408,17 @@ namespace Content.Server.Administration.Managers } private async Task<(AdminData dat, int? rankId, bool specialLogin)?> LoadAdminData(ICommonSession session) + { + var result = await LoadAdminDataCore(session); + + // Make sure admin didn't disconnect while data was loading. + if (session.Status != SessionStatus.InGame) + return null; + + return result; + } + + private async Task<(AdminData dat, int? rankId, bool specialLogin)?> LoadAdminDataCore(ICommonSession session) { var promoteHost = IsLocal(session) && _cfg.GetCVar(CCVars.ConsoleLoginLocal) || _promotedPlayers.Contains(session.UserId) From 39b2ce8cef9083a9080ca948d14a8021695413bb Mon Sep 17 00:00:00 2001 From: August Sun <45527070+august-sun@users.noreply.github.com> Date: Mon, 23 Dec 2024 18:22:37 -0600 Subject: [PATCH 222/263] Adds more air alarms and sensors throughout Oasis, linked unlinked air devices (#34046) Adds more air alarms and sensors throughout Oasis Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com> --- Resources/Maps/oasis.yml | 919 ++++++++++++++++++++------------------- 1 file changed, 476 insertions(+), 443 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index f1768702f6..17b5285296 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -6213,7 +6213,7 @@ entities: -5,3: 0: 56797 -4,4: - 1: 61183 + 0: 61183 -3,0: 0: 63487 -3,1: @@ -6225,8 +6225,7 @@ entities: -3,-1: 0: 63487 -3,4: - 1: 4401 - 0: 51404 + 0: 55805 -2,0: 0: 63487 -2,1: @@ -6324,12 +6323,11 @@ entities: -1,-5: 0: 63675 -5,4: - 1: 136 - 0: 62256 + 0: 62392 -4,5: - 2: 65532 + 1: 65532 -5,5: - 2: 3264 + 1: 3264 0: 305 -4,6: 0: 6384 @@ -6342,7 +6340,7 @@ entities: -4,8: 0: 55759 -3,5: - 2: 4368 + 1: 4368 0: 3308 -3,6: 0: 4092 @@ -6599,8 +6597,7 @@ entities: 5,-3: 0: 61695 5,-2: - 0: 57599 - 3: 4096 + 0: 61695 5,-5: 0: 32767 6,-4: @@ -6631,7 +6628,7 @@ entities: 0: 3067 4,-9: 0: 37683 - 2: 2184 + 1: 2184 3,-8: 0: 3822 4,-7: @@ -6650,7 +6647,7 @@ entities: 0: 65527 5,-9: 0: 49152 - 2: 307 + 1: 307 6,-8: 0: 43195 6,-7: @@ -6660,8 +6657,7 @@ entities: 6,-9: 0: 45499 7,-8: - 0: 53599 - 4: 128 + 0: 53727 7,-7: 0: 21845 7,-6: @@ -6669,8 +6665,7 @@ entities: 7,-9: 0: 64721 8,-8: - 0: 61455 - 4: 240 + 0: 61695 8,-7: 0: 65520 8,-6: @@ -6856,8 +6851,7 @@ entities: -9,-12: 0: 2039 -8,-11: - 0: 28727 - 3: 64 + 0: 28791 -8,-10: 0: 28791 -9,-11: @@ -6917,8 +6911,7 @@ entities: 8,-9: 0: 65520 9,-8: - 0: 45167 - 4: 16 + 0: 45183 9,-6: 0: 65376 9,-5: @@ -6962,8 +6955,7 @@ entities: 9,-12: 0: 65329 9,-11: - 0: 64015 - 4: 256 + 0: 64271 9,-10: 0: 45963 9,-13: @@ -6975,7 +6967,7 @@ entities: 10,-10: 0: 62207 10,-13: - 5: 9902 + 2: 9902 11,-12: 0: 4913 11,-11: @@ -6984,7 +6976,7 @@ entities: 0: 65262 11,-13: 0: 4352 - 5: 127 + 2: 127 12,-10: 0: 65488 12,-9: @@ -6998,8 +6990,7 @@ entities: 9,0: 0: 53759 10,-3: - 0: 55583 - 4: 1024 + 0: 56607 10,-2: 0: 65529 10,-1: @@ -7015,8 +7006,7 @@ entities: 11,0: 0: 62207 12,-4: - 0: 60495 - 6: 512 + 0: 61007 12,-3: 0: 62702 12,-2: @@ -7092,14 +7082,14 @@ entities: 12,6: 0: 48911 12,7: - 5: 65520 + 2: 65520 -12,-12: 0: 13119 -12,-13: 0: 65427 -13,-12: 0: 56524 - 7: 17 + 6: 17 -12,-11: 0: 60931 -13,-11: @@ -7197,70 +7187,70 @@ entities: -13,1: 0: 57296 -12,1: - 5: 36352 + 2: 36352 -12,3: - 5: 34956 + 2: 34956 -11,1: 0: 127 - 5: 30464 + 2: 30464 -12,2: - 5: 34952 + 2: 34952 -11,2: - 5: 255 - 8: 57344 + 2: 255 + 3: 57344 -12,4: - 5: 53192 + 2: 53192 -11,3: - 5: 61440 - 9: 224 + 2: 61440 + 4: 224 -10,1: 0: 40847 -10,2: - 5: 51 + 2: 51 0: 43656 -10,3: - 5: 12288 + 2: 12288 0: 35498 -10,4: 0: 43690 -13,4: - 5: 32630 + 2: 32630 -12,7: - 5: 52476 + 2: 52476 -13,7: - 5: 26615 + 2: 26615 -12,6: - 5: 51336 + 2: 51336 -12,5: - 5: 34952 + 2: 34952 -11,6: - 5: 61440 - 7: 224 + 2: 61440 + 6: 224 -11,7: - 5: 65535 + 2: 65535 -12,8: - 5: 34952 + 2: 34952 -11,4: - 10: 224 - 7: 57344 + 5: 224 + 6: 57344 -11,5: - 7: 57568 + 6: 57568 -11,8: - 5: 65535 + 2: 65535 -10,6: - 5: 12288 + 2: 12288 0: 35498 -10,7: - 5: 13107 + 2: 13107 0: 34952 -10,5: 0: 43690 -10,8: - 5: 62259 + 2: 62259 0: 136 -9,8: 0: 52479 - 5: 4096 + 2: 4096 0,-16: 0: 65528 -1,-16: @@ -7285,22 +7275,22 @@ entities: 0: 4371 2,-15: 0: 65280 - 5: 3 + 2: 3 2,-14: 0: 65535 2,-16: - 5: 27776 + 2: 27776 3,-16: - 5: 57375 + 2: 57375 3,-15: 0: 30464 - 5: 11 + 2: 11 3,-14: 0: 30583 4,-16: - 5: 4883 + 2: 4883 4,-14: - 5: 2304 + 2: 2304 -4,-15: 0: 65102 -4,-14: @@ -7338,25 +7328,25 @@ entities: -9,-13: 0: 4095 -7,-15: - 7: 61184 + 6: 61184 -7,-14: 0: 32752 -6,-15: - 7: 256 + 6: 256 0: 32768 -6,-14: 0: 65528 -12,-16: - 5: 4880 + 2: 4880 -13,-16: - 5: 65520 + 2: 65520 -12,-15: 0: 53128 -12,-14: 0: 30487 -13,-14: 0: 52232 - 5: 23 + 2: 23 -11,-16: 0: 4352 -11,-15: @@ -7374,32 +7364,32 @@ entities: -10,-16: 0: 8704 -10,-17: - 7: 49152 + 6: 49152 -16,-7: - 5: 52416 + 2: 52416 -16,-6: - 5: 3276 + 2: 3276 0: 32768 -16,-5: 0: 35852 -16,-4: - 5: 52428 + 2: 52428 -15,-7: - 5: 4368 + 2: 4368 0: 3276 -15,-6: - 5: 273 + 2: 273 0: 52428 -15,-5: 0: 53199 -15,-4: - 5: 4369 + 2: 4369 0: 52420 -15,-8: 0: 52416 -15,-9: 0: 34952 - 7: 256 + 6: 256 -14,-8: 0: 49080 -14,-7: @@ -7419,31 +7409,31 @@ entities: -13,-7: 0: 26214 -16,-12: - 7: 32 + 6: 32 -16,-11: - 7: 32768 + 6: 32768 -16,-10: - 7: 8 + 6: 8 -15,-11: - 7: 13036 + 6: 13036 0: 32768 -15,-10: - 7: 307 + 6: 307 0: 34952 -15,-12: - 7: 51336 + 6: 51336 -14,-12: - 7: 4607 + 6: 4607 0: 49152 -14,-11: - 7: 17 + 6: 17 0: 61644 -14,-10: 0: 65535 -14,-13: - 7: 59392 + 6: 59392 -13,-13: - 7: 4352 + 6: 4352 0: 1604 8,9: 0: 65535 @@ -7472,28 +7462,28 @@ entities: 10,10: 0: 3549 10,11: - 7: 275 + 6: 275 10,12: 0: 305 - 5: 3276 + 2: 3276 11,9: 0: 4469 - 5: 49152 + 2: 49152 11,10: 0: 273 - 5: 52428 + 2: 52428 11,11: - 5: 61166 + 2: 61166 11,12: - 5: 53247 + 2: 53247 12,8: - 5: 13175 + 2: 13175 12,9: - 5: 13107 + 2: 13107 12,10: - 5: 63923 + 2: 63923 12,11: - 5: 61443 + 2: 61443 4,9: 0: 58606 3,9: @@ -7516,7 +7506,7 @@ entities: 0: 60928 5,12: 0: 238 - 5: 49152 + 2: 49152 6,9: 0: 65535 6,10: @@ -7595,10 +7585,10 @@ entities: 0: 48059 16,0: 0: 1793 - 5: 4 + 2: 4 16,1: 0: 7 - 5: 1024 + 2: 1024 13,-4: 0: 26215 13,-3: @@ -7617,22 +7607,22 @@ entities: 0: 61098 15,-4: 0: 4113 - 5: 34952 + 2: 34952 15,-3: 0: 4369 - 5: 34952 + 2: 34952 15,-2: 0: 16177 - 5: 8 + 2: 8 15,-5: 0: 4353 - 5: 34952 + 2: 34952 16,-2: 0: 1792 - 5: 4 + 2: 4 16,-1: 0: 4359 - 5: 17408 + 2: 17408 13,-8: 0: 15 13,-6: @@ -7646,49 +7636,49 @@ entities: 14,-9: 0: 36623 15,-8: - 7: 16 + 6: 16 15,-6: - 7: 16 + 6: 16 0: 4096 - 5: 32768 + 2: 32768 15,-9: 0: 4353 16,-5: - 5: 304 + 2: 304 12,-11: - 7: 49156 + 6: 49156 12,-12: - 5: 12 + 2: 12 12,-13: - 5: 52303 + 2: 52303 13,-12: - 5: 15 - 7: 16384 + 2: 15 + 6: 16384 13,-11: - 7: 65228 + 6: 65228 13,-10: 0: 65520 13,-13: - 5: 65295 + 2: 65295 14,-12: - 5: 15 + 2: 15 14,-11: - 7: 65521 + 6: 65521 14,-10: 0: 65392 14,-13: - 5: 65295 + 2: 65295 15,-12: - 5: 1 + 2: 1 15,-11: - 7: 4112 + 6: 4112 15,-10: - 7: 52451 + 6: 52451 0: 4096 15,-13: - 5: 4511 + 2: 4511 16,-10: - 7: 19 + 6: 19 -4,9: 0: 7421 -5,9: @@ -7703,13 +7693,13 @@ entities: 0: 32767 -4,12: 0: 34945 - 7: 13072 + 6: 13072 -3,9: 0: 4095 -3,10: 0: 65535 -3,11: - 7: 61408 + 6: 61408 -2,9: 0: 4095 -2,10: @@ -7722,23 +7712,23 @@ entities: 0: 61678 -9,9: 0: 52430 - 5: 4369 + 2: 4369 -8,10: 0: 65535 -9,10: 0: 52428 -8,11: - 5: 43808 + 2: 43808 -9,11: - 5: 20224 + 2: 20224 -8,12: - 5: 43690 + 2: 43690 -7,9: 0: 45311 -7,10: 0: 49087 -7,11: - 5: 768 + 2: 768 0: 34952 -6,9: 0: 61661 @@ -7748,38 +7738,38 @@ entities: 0: 65535 -7,12: 0: 34952 - 5: 12322 + 2: 12322 -6,12: 0: 65535 -5,12: 0: 13111 - 7: 34816 + 6: 34816 -12,9: - 5: 65497 + 2: 65497 -13,9: - 5: 8 + 2: 8 -12,10: - 5: 52428 + 2: 52428 -11,9: - 5: 4607 - 7: 49152 + 2: 4607 + 6: 49152 -11,10: - 5: 33041 - 7: 204 + 2: 33041 + 6: 204 -12,11: - 5: 136 + 2: 136 -11,11: - 5: 248 + 2: 248 -10,9: - 5: 52479 - 7: 4096 + 2: 52479 + 6: 4096 -10,10: - 7: 17 - 5: 34952 + 6: 17 + 2: 34952 -10,11: - 5: 2296 + 2: 2296 -9,12: - 5: 17476 + 2: 17476 8,-15: 0: 65535 7,-15: @@ -7793,48 +7783,48 @@ entities: 9,-14: 0: 4403 10,-16: - 5: 3584 + 2: 3584 11,-16: - 5: 7936 + 2: 7936 10,-14: - 5: 34816 + 2: 34816 11,-14: - 5: 29489 + 2: 29489 11,-15: - 5: 4369 + 2: 4369 12,-16: - 5: 3840 + 2: 3840 4,-17: - 5: 4096 + 2: 4096 5,-14: - 5: 1024 + 2: 1024 6,-14: - 5: 512 + 2: 512 -8,13: - 5: 29666 + 2: 29666 -9,13: - 5: 3140 + 2: 3140 -8,14: - 5: 15 + 2: 15 -7,13: - 5: 32816 + 2: 32816 0: 1032 -7,14: - 5: 15 + 2: 15 -6,13: 0: 255 -6,14: - 5: 49 + 2: 49 -5,13: 0: 51 - 7: 51208 + 6: 51208 -5,14: - 7: 264 + 6: 264 -4,13: - 7: 29443 + 6: 29443 0: 136 -4,14: - 7: 3 + 6: 3 -3,12: 0: 65520 -3,13: @@ -7853,176 +7843,176 @@ entities: 0: 41634 1,14: 0: 8710 - 5: 34952 + 2: 34952 1,15: 0: 8226 - 5: 34952 + 2: 34952 1,16: 0: 8738 - 5: 34952 + 2: 34952 2,13: 0: 4280 2,14: - 5: 49023 + 2: 49023 2,15: - 5: 44974 + 2: 44974 2,16: - 5: 32702 + 2: 32702 3,13: 0: 255 3,14: - 5: 44847 + 2: 44847 3,15: - 5: 44463 + 2: 44463 0: 512 3,16: - 5: 12207 + 2: 12207 4,14: - 5: 61439 + 2: 61439 4,15: - 5: 44971 + 2: 44971 4,13: 0: 49376 4,16: - 5: 65515 + 2: 65515 5,15: 0: 8243 - 5: 1228 + 2: 1228 5,13: 0: 8738 - 7: 136 + 6: 136 5,14: 0: 546 - 5: 16384 + 2: 16384 5,16: 0: 8738 6,15: - 5: 255 + 2: 255 6,13: 0: 1262 7,13: 0: 1279 7,15: - 5: 255 + 2: 255 8,15: - 5: 255 + 2: 255 9,15: - 5: 255 + 2: 255 10,15: - 5: 55 + 2: 55 10,14: - 5: 65224 + 2: 65224 11,14: - 5: 311 + 2: 311 11,13: - 5: 65228 + 2: 65228 12,12: - 5: 65535 + 2: 65535 13,10: - 5: 17 + 2: 17 13,9: - 5: 13028 + 2: 13028 13,8: - 5: 19652 + 2: 19652 13,7: - 5: 20476 + 2: 20476 14,9: - 5: 248 + 2: 248 14,8: - 5: 52428 + 2: 52428 14,7: - 5: 51711 + 2: 51711 15,8: - 5: 56797 + 2: 56797 15,9: - 5: 248 + 2: 248 15,7: - 5: 55539 + 2: 55539 16,8: - 5: 56797 + 2: 56797 16,9: - 5: 248 + 2: 248 13,5: 0: 1911 13,6: 0: 4879 - 5: 52224 + 2: 52224 14,5: 0: 7633 14,6: 0: 15 - 5: 13056 + 2: 13056 15,5: 0: 35768 15,6: 0: 15 - 5: 13824 + 2: 13824 16,7: - 5: 55544 + 2: 55544 13,12: - 5: 4095 + 2: 4095 14,12: - 5: 4095 + 2: 4095 15,12: - 5: 4095 + 2: 4095 16,12: - 5: 883 + 2: 883 0,18: - 5: 49160 + 2: 49160 0,17: - 5: 34816 + 2: 34816 1,17: - 5: 24856 + 2: 24856 0: 3106 1,18: - 5: 64035 + 2: 64035 1,19: - 5: 200 + 2: 200 2,17: - 5: 57359 + 2: 57359 0: 1792 2,18: - 5: 4238 + 2: 4238 2,19: - 5: 240 + 2: 240 3,17: - 5: 61455 + 2: 61455 0: 1792 3,18: - 5: 255 + 2: 255 3,19: - 5: 240 + 2: 240 4,17: - 5: 12303 + 2: 12303 0: 3840 4,18: - 5: 51203 + 2: 51203 4,19: - 5: 248 + 2: 248 5,17: 0: 290 - 5: 48192 + 2: 48192 5,18: - 5: 61998 + 2: 61998 5,19: - 5: 16 + 2: 16 6,17: - 5: 18244 + 2: 18244 6,18: - 5: 4164 + 2: 4164 6,16: - 5: 16384 + 2: 16384 -15,0: - 5: 1 + 2: 1 0: 52428 -15,1: - 5: 4401 + 2: 4401 0: 34944 -15,2: - 5: 4369 + 2: 4369 0: 2176 -15,3: - 5: 34959 + 2: 34959 -15,-1: 0: 52732 -14,0: @@ -8032,49 +8022,49 @@ entities: -14,2: 0: 61439 -14,3: - 5: 61440 + 2: 61440 0: 14 -14,-1: 0: 65535 -13,2: 0: 817 - 5: 128 + 2: 128 -13,3: - 5: 12834 + 2: 12834 -13,5: - 5: 8742 + 2: 8742 -13,6: - 5: 25122 + 2: 25122 -13,8: - 5: 50722 + 2: 50722 -16,-16: - 5: 30583 + 2: 30583 -16,-17: - 5: 29187 + 2: 29187 -16,-15: - 5: 29426 + 2: 29426 -17,-15: - 5: 29426 + 2: 29426 -16,-14: - 5: 30583 + 2: 30583 -16,-13: - 5: 2 + 2: 2 -15,-15: - 5: 240 + 2: 240 -15,-16: - 5: 65520 + 2: 65520 -15,-13: - 7: 64 + 6: 64 -14,-16: - 5: 24404 + 2: 24404 -14,-15: - 5: 52980 + 2: 52980 -14,-17: - 5: 24404 + 2: 24404 -13,-15: - 5: 29456 + 2: 29456 -14,-14: - 5: 8 + 2: 8 0,-20: 0: 34952 0,-19: @@ -8108,14 +8098,14 @@ entities: -2,-18: 0: 4096 -16,-3: - 5: 17612 + 2: 17612 -16,-2: - 5: 4 + 2: 4 0: 51200 -16,-1: 0: 2240 -15,-3: - 5: 1 + 2: 1 0: 56780 -15,-2: 0: 64973 @@ -8124,131 +8114,131 @@ entities: -14,-2: 0: 65535 16,4: - 5: 25188 + 2: 25188 16,5: - 5: 58914 + 2: 58914 16,6: - 5: 34946 + 2: 34946 16,3: - 5: 18018 + 2: 18018 17,5: - 5: 61440 + 2: 61440 17,6: - 5: 65520 + 2: 65520 17,7: - 5: 55536 + 2: 55536 17,8: - 5: 56797 + 2: 56797 18,5: - 5: 61440 + 2: 61440 18,6: - 5: 65520 + 2: 65520 18,7: - 5: 55536 + 2: 55536 18,8: - 5: 56797 + 2: 56797 19,5: - 5: 61440 + 2: 61440 19,6: - 5: 48056 + 2: 48056 19,7: - 5: 39162 + 2: 39162 19,8: - 5: 39321 + 2: 39321 20,7: - 5: 16 + 2: 16 16,2: - 5: 8192 + 2: 8192 -12,-19: - 5: 61440 + 2: 61440 -13,-19: - 5: 61440 + 2: 61440 -12,-18: - 5: 4880 + 2: 4880 -13,-18: - 5: 65520 + 2: 65520 -12,-17: - 5: 4880 + 2: 4880 -13,-17: - 5: 65520 + 2: 65520 -11,-19: - 5: 61440 + 2: 61440 -10,-19: - 5: 4096 + 2: 4096 -10,-18: - 7: 4 + 6: 4 -18,-12: - 5: 68 + 2: 68 -18,-13: - 5: 17476 + 2: 17476 -18,-15: - 5: 17636 + 2: 17636 -18,-16: - 5: 17476 + 2: 17476 -18,-17: - 5: 17484 + 2: 17484 -18,-14: - 5: 17476 + 2: 17476 -17,-16: - 5: 30583 + 2: 30583 -17,-17: - 5: 29199 + 2: 29199 -17,-14: - 5: 30583 + 2: 30583 -17,-13: - 5: 2 + 2: 2 16,-12: - 5: 546 + 2: 546 16,-13: - 5: 8743 + 2: 8743 -16,-19: - 5: 57344 + 2: 57344 -16,-18: - 5: 10786 + 2: 10786 -15,-19: - 5: 61440 + 2: 61440 -15,-18: - 5: 65520 + 2: 65520 -15,-17: - 5: 65520 + 2: 65520 -14,-19: - 5: 62464 + 2: 62464 -14,-18: - 5: 24404 + 2: 24404 12,-15: - 5: 30496 + 2: 30496 12,-14: - 5: 10103 + 2: 10103 13,-16: - 5: 3840 + 2: 3840 13,-15: - 5: 30496 + 2: 30496 13,-14: - 5: 10103 + 2: 10103 14,-16: - 5: 3840 + 2: 3840 14,-15: - 5: 30496 + 2: 30496 14,-14: - 5: 10103 + 2: 10103 15,-16: - 5: 3840 + 2: 3840 15,-15: - 5: 30496 + 2: 30496 15,-14: - 5: 10103 + 2: 10103 16,-16: - 5: 8960 + 2: 8960 16,-15: - 5: 8738 + 2: 8738 16,-14: - 5: 8738 + 2: 8738 17,9: - 5: 248 + 2: 248 18,9: - 5: 248 + 2: 248 19,9: - 5: 248 + 2: 248 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8265,21 +8255,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 103.92799 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -8295,36 +8270,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 immutable: True moles: @@ -8340,36 +8285,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -8415,6 +8330,21 @@ entities: - 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: RadiationGridResistance @@ -9829,6 +9759,26 @@ entities: - 5218 - 16531 - 16532 + - uid: 10285 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 16346 + - 16345 + - 10466 + - uid: 10655 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 16263 + - 16262 + - 10656 - uid: 14996 components: - type: Transform @@ -10489,6 +10439,10 @@ entities: - 18479 - 14749 - 14748 + - 14766 + - 14765 + - 14763 + - 14764 - uid: 18482 components: - type: Transform @@ -10974,6 +10928,14 @@ entities: - 15898 - 18695 - 15902 + - 15912 + - 15913 + - 15905 + - 15901 + - 15900 + - 15904 + - 15899 + - 15903 - uid: 20717 components: - type: Transform @@ -14649,7 +14611,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111701.01 + secondsUntilStateChange: -112602.51 state: Opening - uid: 6934 components: @@ -14661,7 +14623,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111703.64 + secondsUntilStateChange: -112605.14 state: Opening - uid: 6935 components: @@ -14673,7 +14635,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111702.49 + secondsUntilStateChange: -112603.99 state: Opening - uid: 6936 components: @@ -14684,7 +14646,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111701.71 + secondsUntilStateChange: -112603.21 state: Opening - proto: AirlockTheatreLocked entities: @@ -14774,6 +14736,22 @@ entities: - type: Transform pos: -11.5,19.5 parent: 2 + - uid: 10466 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10285 + - uid: 10656 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10655 - uid: 18245 components: - type: Transform @@ -15454,6 +15432,8 @@ entities: pos: -26.5,-40.5 parent: 2 - type: DeviceNetwork + configurators: + - 10691 deviceLists: - 18691 - uid: 18693 @@ -90951,13 +90931,6 @@ entities: - type: Transform pos: 38.25496,16.711338 parent: 2 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 29445 - components: - - type: Transform - pos: 61.47509,21.65281 - parent: 2 - proto: Eggshells entities: - uid: 19085 @@ -94753,7 +94726,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -103024.99 + secondsUntilStateChange: -103926.49 - type: DeviceNetwork deviceLists: - 18275 @@ -97545,8 +97518,13 @@ entities: friction: 0.4 - type: ScaleVisuals - type: Appearance -- proto: FloraTreeConifer01 +- proto: FloraTreeConifer entities: + - uid: 19176 + components: + - type: Transform + pos: 7.0421615,14.648008 + parent: 2 - uid: 19177 components: - type: Transform @@ -97562,8 +97540,6 @@ entities: - type: Transform pos: 7.4194474,6.70954 parent: 2 -- proto: FloraTreeConifer02 - entities: - uid: 19180 components: - type: Transform @@ -97574,29 +97550,22 @@ entities: - type: Transform pos: 14.398615,8.594956 parent: 2 - - uid: 26509 - components: - - type: Transform - pos: 7.439621,3.8400307 - parent: 21002 -- proto: FloraTreeConifer03 - entities: - - uid: 19176 - components: - - type: Transform - pos: 7.0421615,14.648008 - parent: 2 - uid: 26508 components: - type: Transform pos: 8.48288,-5.3548317 parent: 21002 + - uid: 26509 + components: + - type: Transform + pos: 7.439621,3.8400307 + parent: 21002 - uid: 26513 components: - type: Transform pos: 22.109192,5.674118 parent: 21002 -- proto: FloraTreeSnow02 +- proto: FloraTreeSnow entities: - uid: 19171 components: @@ -97604,8 +97573,11 @@ entities: rot: 1.5707963267948966 rad pos: -5.5474405,-12.275735 parent: 2 -- proto: FloraTreeSnow03 - entities: + - uid: 19172 + components: + - type: Transform + pos: -4.1702504,-6.317836 + parent: 2 - uid: 19173 components: - type: Transform @@ -97616,31 +97588,22 @@ entities: - type: Transform pos: -6.2223334,-4.161586 parent: 2 -- proto: FloraTreeSnow04 - entities: - uid: 19175 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.004216,-6.7445054 parent: 2 - - uid: 26507 - components: - - type: Transform - pos: 24.552963,-6.4198303 - parent: 21002 -- proto: FloraTreeSnow05 - entities: - - uid: 19172 - components: - - type: Transform - pos: -4.1702504,-6.317836 - parent: 2 - uid: 26506 components: - type: Transform pos: 26.667542,-6.5239983 parent: 21002 + - uid: 26507 + components: + - type: Transform + pos: 24.552963,-6.4198303 + parent: 21002 - proto: FloraTreeStumpConifer entities: - uid: 369 @@ -98254,6 +98217,13 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,31.5 parent: 2 +- proto: GameMasterCircuitBoard + entities: + - uid: 29445 + components: + - type: Transform + pos: 61.47509,21.65281 + parent: 2 - proto: GasAnalyzer entities: - uid: 5802 @@ -127694,6 +127664,9 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18480 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14765 @@ -127702,6 +127675,9 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18480 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14768 @@ -128119,6 +128095,8 @@ entities: pos: -27.5,-39.5 parent: 2 - type: DeviceNetwork + configurators: + - 10691 deviceLists: - 18691 - type: AtmosPipeColor @@ -128255,6 +128233,9 @@ entities: - type: Transform pos: -31.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15900 @@ -128262,6 +128243,9 @@ entities: - type: Transform pos: -28.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15901 @@ -128270,6 +128254,9 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15912 @@ -128278,6 +128265,9 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16030 @@ -128417,6 +128407,9 @@ entities: rot: 3.141592653589793 rad pos: 26.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10655 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16285 @@ -128465,6 +128458,9 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10285 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16357 @@ -129587,6 +129583,9 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18480 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14766 @@ -129594,6 +129593,9 @@ entities: - type: Transform pos: 35.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18480 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14767 @@ -130023,6 +130025,8 @@ entities: pos: -27.5,-40.5 parent: 2 - type: DeviceNetwork + configurators: + - 10691 deviceLists: - 18691 - type: AtmosPipeColor @@ -130158,6 +130162,9 @@ entities: - type: Transform pos: -32.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15904 @@ -130165,6 +130172,9 @@ entities: - type: Transform pos: -29.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15905 @@ -130172,6 +130182,9 @@ entities: - type: Transform pos: -26.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15913 @@ -130180,6 +130193,9 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15934 @@ -130312,6 +130328,9 @@ entities: rot: 3.141592653589793 rad pos: 25.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10655 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16267 @@ -130359,6 +130378,9 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10285 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16358 @@ -139440,7 +139462,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -139856.84 + secondsUntilStateChange: -140758.34 state: Opening - uid: 5211 components: @@ -143172,6 +143194,17 @@ entities: rot: -1.5707963267948966 rad pos: 26.492922,39.609303 parent: 2 + - uid: 10691 + components: + - type: Transform + pos: -22.090538,-14.804086 + parent: 2 + - type: NetworkConfigurator + devices: + 'UID: 22442': 15710 + 'UID: 22649': 15711 + 'UID: 3687': 18692 + linkModeActive: False - uid: 23692 components: - type: Transform @@ -191724,7 +191757,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -485061.53 + secondsUntilStateChange: -485963.03 state: Opening - uid: 28863 components: From 1c33073af435a2285e8594cc9c1505af15a73640 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 24 Dec 2024 03:24:19 +0300 Subject: [PATCH 223/263] Multiple items in loadouts (#33193) * loadouts update * Update loadout_groups.yml * darts to candles * Update Resources/Prototypes/Loadouts/dummy_entities.yml --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../UI/Loadouts/LoadoutContainer.xaml.cs | 19 +++++++++--------- Content.Shared/Clothing/LoadoutSystem.cs | 3 +++ .../Preferences/Loadouts/LoadoutPrototype.cs | 6 ++++++ .../Loadouts/Miscellaneous/trinkets.yml | 11 +++++++++- .../Prototypes/Loadouts/dummy_entities.yml | 9 +++++++++ .../Prototypes/Loadouts/loadout_groups.yml | 1 + .../Objects/Misc/candles.rsi/loadout.png | Bin 0 -> 406 bytes .../Objects/Misc/candles.rsi/meta.json | 3 +++ 8 files changed, 42 insertions(+), 10 deletions(-) create mode 100644 Resources/Prototypes/Loadouts/dummy_entities.yml create mode 100644 Resources/Textures/Objects/Misc/candles.rsi/loadout.png diff --git a/Content.Client/Lobby/UI/Loadouts/LoadoutContainer.xaml.cs b/Content.Client/Lobby/UI/Loadouts/LoadoutContainer.xaml.cs index 36f0772d78..2ab40fb37d 100644 --- a/Content.Client/Lobby/UI/Loadouts/LoadoutContainer.xaml.cs +++ b/Content.Client/Lobby/UI/Loadouts/LoadoutContainer.xaml.cs @@ -36,17 +36,18 @@ public sealed partial class LoadoutContainer : BoxContainer if (_protoManager.TryIndex(proto, out var loadProto)) { - var ent = _entManager.System().GetFirstOrNull(loadProto); + var ent = loadProto.DummyEntity ?? _entManager.System().GetFirstOrNull(loadProto); - if (ent != null) - { - _entity = _entManager.SpawnEntity(ent, MapCoordinates.Nullspace); - Sprite.SetEntity(_entity); + if (ent == null) + return; - var spriteTooltip = new Tooltip(); - spriteTooltip.SetMessage(FormattedMessage.FromUnformatted(_entManager.GetComponent(_entity.Value).EntityDescription)); - TooltipSupplier = _ => spriteTooltip; - } + _entity = _entManager.SpawnEntity(ent, MapCoordinates.Nullspace); + Sprite.SetEntity(_entity); + + var spriteTooltip = new Tooltip(); + spriteTooltip.SetMessage(FormattedMessage.FromUnformatted(_entManager.GetComponent(_entity.Value).EntityDescription)); + + TooltipSupplier = _ => spriteTooltip; } } diff --git a/Content.Shared/Clothing/LoadoutSystem.cs b/Content.Shared/Clothing/LoadoutSystem.cs index 2a686efd4f..93b0abfd82 100644 --- a/Content.Shared/Clothing/LoadoutSystem.cs +++ b/Content.Shared/Clothing/LoadoutSystem.cs @@ -90,6 +90,9 @@ public sealed class LoadoutSystem : EntitySystem public string GetName(LoadoutPrototype loadout) { + if (loadout.DummyEntity is not null && _protoMan.TryIndex(loadout.DummyEntity, out var proto)) + return proto.Name; + if (_protoMan.TryIndex(loadout.StartingGear, out var gear)) { return GetName(gear); diff --git a/Content.Shared/Preferences/Loadouts/LoadoutPrototype.cs b/Content.Shared/Preferences/Loadouts/LoadoutPrototype.cs index a570b61d89..1533b605ac 100644 --- a/Content.Shared/Preferences/Loadouts/LoadoutPrototype.cs +++ b/Content.Shared/Preferences/Loadouts/LoadoutPrototype.cs @@ -17,6 +17,12 @@ public sealed partial class LoadoutPrototype : IPrototype, IEquipmentLoadout * You can either use an existing StartingGearPrototype or specify it inline to avoid bloating yaml. */ + /// + /// An entity whose sprite, name and description is used for display in the interface. If null, tries to get the proto of the item from gear (if it is a single item). + /// + [DataField] + public EntProtoId? DummyEntity; + [DataField] public ProtoId? StartingGear; diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index 79fee8bf0d..b4e2cecf8b 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -28,7 +28,7 @@ back: - ClothingNeckHeadphones -# Plushies +# Toys - type: loadout id: PlushieLizard storage: @@ -41,6 +41,15 @@ back: - PlushieSpaceLizard +- type: loadout + id: ThreeCandles + dummyEntity: LoadoutDummyCandles + storage: + back: + - CandleRed + - CandleBlue + - CandleGreenSmall + # Smokeables - type: loadout id: Lighter diff --git a/Resources/Prototypes/Loadouts/dummy_entities.yml b/Resources/Prototypes/Loadouts/dummy_entities.yml new file mode 100644 index 0000000000..69b54bd0b5 --- /dev/null +++ b/Resources/Prototypes/Loadouts/dummy_entities.yml @@ -0,0 +1,9 @@ +- type: entity + id: LoadoutDummyCandles + categories: [ HideSpawnMenu ] + name: three candles + description: A set of three colorful candles for secret rituals! + components: + - type: Sprite + sprite: Objects/Misc/candles.rsi + state: loadout \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 89bf38fef5..990c6f41bb 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -10,6 +10,7 @@ - Headphones - PlushieLizard - PlushieSpaceLizard + - ThreeCandles - Lighter - CigPackGreen - CigPackRed diff --git a/Resources/Textures/Objects/Misc/candles.rsi/loadout.png b/Resources/Textures/Objects/Misc/candles.rsi/loadout.png new file mode 100644 index 0000000000000000000000000000000000000000..daa98a3fcec49120f723b617e9173f9dff6d0a32 GIT binary patch literal 406 zcmV;H0crk;P)Px$P)S5VR9J=Wl`%>KK@^7nStMRS#7e}xZAB3TPoR|-@Bq1hjfGg)so16P0O?_!l+e%+`8k@_R z`tkgfEx_(Tt?i+5vW{9i>r6yydTrMzRL5ut^Wk?ZvkCyJHyc*rMgsTIL}pFG6Lg9A z_KYoHG=xbw09?ru7W^KL%Y(Fz1wYtWz;AXS7pLGiI|u;;LIARqo(JO7pTnI%BBAqD zXiz_3+ZbujRkl=kxFY~y)t^`8L7bjFc;l$cYvVT9_3c9-zh@)h>@~E-THyKhWoXT1 zq{qlMROiR9z Date: Tue, 24 Dec 2024 00:25:26 +0000 Subject: [PATCH 224/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 11bc1d6b1f..7fe7bd1224 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: AutoOtter - changes: - - message: Greatly reduced meteorite wall health for easier cleanup and repair. - type: Tweak - id: 7251 - time: '2024-08-30T23:24:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31651 - author: slarticodefast changes: - message: The revenant can now fly through walls again. @@ -3937,3 +3930,10 @@ id: 7750 time: '2024-12-23T23:24:54.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34027 +- author: TheShuEd + changes: + - message: You can now select candles in trinkets loadout + type: Add + id: 7751 + time: '2024-12-24T00:24:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33193 From 4e9862d01f3f31308c4b841981a8e0081016329a Mon Sep 17 00:00:00 2001 From: crazybrain23 <44417085+crazybrain23@users.noreply.github.com> Date: Tue, 24 Dec 2024 02:14:42 +0000 Subject: [PATCH 225/263] Add crazybrain23 to CODEOWNERS (#34038) Add myself to CODEOWNERS Basically just added myself where Nik was since I am also doing headmin things. --- .github/CODEOWNERS | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 179b7e45d8..35d6b39c06 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -3,17 +3,17 @@ # Sorting by path instead of by who added it one day :( # this isn't how codeowners rules work pls read the first comment instead of trying to force a sorting order -/Resources/ConfigPresets/WizardsDen/ @nikthechampiongr -/Content.*/Administration/ @DrSmugleaf @nikthechampiongr -/Resources/ServerInfo/ @nikthechampiongr -/Resources/ServerInfo/Guidebook/ServerRules/ @nikthechampiongr +/Resources/ConfigPresets/WizardsDen/ @nikthechampiongr @crazybrain23 +/Content.*/Administration/ @DrSmugleaf @nikthechampiongr @crazybrain23 +/Resources/ServerInfo/ @nikthechampiongr @crazybrain23 +/Resources/ServerInfo/Guidebook/ServerRules/ @nikthechampiongr @crazybrain23 /Resources/Prototypes/Maps/** @Emisse /Resources/Prototypes/Body/ @DrSmugleaf # suffering /Resources/Prototypes/Entities/Mobs/Player/ @DrSmugleaf /Resources/Prototypes/Entities/Mobs/Species/ @DrSmugleaf -/Resources/Prototypes/Guidebook/rules.yml @nikthechampiongr +/Resources/Prototypes/Guidebook/rules.yml @nikthechampiongr @crazybrain23 /Content.*/Body/ @DrSmugleaf /Content.YAMLLinter @DrSmugleaf /Content.Shared/Damage/ @DrSmugleaf @@ -25,7 +25,7 @@ # SKREEEE /Content.*.Database/ @PJB3005 @DrSmugleaf -/Content.Shared.Database/Log*.cs @PJB3005 @DrSmugleaf @nikthechampiongr +/Content.Shared.Database/Log*.cs @PJB3005 @DrSmugleaf @nikthechampiongr @crazybrain23 /Pow3r/ @PJB3005 /Content.Server/Power/Pow3r/ @PJB3005 From 31aec7385df92ae27917e8ffa240ec30699e21de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 03:15:26 +0100 Subject: [PATCH 226/263] Update Credits (#33998) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 9af0ceaef0..9a85185c3e 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex From 1cbc8c1dccf9eebaabdb90f2f7d815a344b7b68a Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Tue, 24 Dec 2024 03:25:03 +0100 Subject: [PATCH 227/263] Allow to paint multiple airlocks (#34001) * Allow to paint multiple airlocks * oh right --- .../SprayPainter/Components/SprayPainterComponent.cs | 7 ------- Content.Shared/SprayPainter/SharedSprayPainterSystem.cs | 7 +------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/Content.Shared/SprayPainter/Components/SprayPainterComponent.cs b/Content.Shared/SprayPainter/Components/SprayPainterComponent.cs index 1742b13f8d..0591cb2dcb 100644 --- a/Content.Shared/SprayPainter/Components/SprayPainterComponent.cs +++ b/Content.Shared/SprayPainter/Components/SprayPainterComponent.cs @@ -16,13 +16,6 @@ public sealed partial class SprayPainterComponent : Component [DataField] public TimeSpan PipeSprayTime = TimeSpan.FromSeconds(1); - /// - /// DoAfterId for airlock spraying. - /// Pipes do not track doafters so you can spray multiple at once. - /// - [DataField] - public DoAfterId? AirlockDoAfter; - /// /// Pipe color chosen to spray with. /// diff --git a/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs b/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs index 0e216db146..48a941d598 100644 --- a/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs +++ b/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs @@ -60,8 +60,6 @@ public abstract class SharedSprayPainterSystem : EntitySystem private void OnDoorDoAfter(Entity ent, ref SprayPainterDoorDoAfterEvent args) { - ent.Comp.AirlockDoAfter = null; - if (args.Handled || args.Cancelled) return; @@ -116,7 +114,7 @@ public abstract class SharedSprayPainterSystem : EntitySystem if (args.Handled) return; - if (!TryComp(args.Used, out var painter) || painter.AirlockDoAfter != null) + if (!TryComp(args.Used, out var painter)) return; var group = Proto.Index(ent.Comp.Group); @@ -138,9 +136,6 @@ public abstract class SharedSprayPainterSystem : EntitySystem if (!DoAfter.TryStartDoAfter(doAfterEventArgs, out var id)) return; - // since we are now spraying an airlock prevent spraying more at the same time - // pipes ignore this - painter.AirlockDoAfter = id; args.Handled = true; // Log the attempt From c83532ec3f631720c36d8fb12445365f037c2430 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Dec 2024 02:26:10 +0000 Subject: [PATCH 228/263] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ Resources/Changelog/Changelog.yml | 15 ++++++++------- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 079fb57ede..504fea848f 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -657,5 +657,12 @@ Entries: id: 81 time: '2024-12-21T07:02:05.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33980 +- author: lzk228 + changes: + - message: Fixed spray painter using while being aghost. + type: Fix + id: 82 + time: '2024-12-24T02:25:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34001 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7fe7bd1224..c0e8eb839b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: The revenant can now fly through walls again. - type: Fix - id: 7252 - time: '2024-08-31T03:02:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31670 - author: metalgearsloth changes: - message: Fix AI eye getting deleted by singulo. @@ -3937,3 +3930,11 @@ id: 7751 time: '2024-12-24T00:24:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33193 +- author: lzk228 + changes: + - message: Now you are allowed to paint multiple airlocks with the spray painter. + Along with that you can cancel the doafter by clicking on the door you are painting. + type: Tweak + id: 7752 + time: '2024-12-24T02:25:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34001 From 4064d554d6ac1311e3d38e43ce269a4801412b6c Mon Sep 17 00:00:00 2001 From: War Pigeon <54217755+minus1over12@users.noreply.github.com> Date: Wed, 25 Dec 2024 00:21:39 -0600 Subject: [PATCH 229/263] Link Core cargo shuttle atmos devices (#34061) * Link Core cargo shuttle atmos devices * Remove configurator lines This matches what the DeviceNetworks in core.yml look like now. Hopefully it works? --- Resources/Maps/Shuttles/cargo_core.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Resources/Maps/Shuttles/cargo_core.yml b/Resources/Maps/Shuttles/cargo_core.yml index dcbd4a972c..a0d1d3b813 100644 --- a/Resources/Maps/Shuttles/cargo_core.yml +++ b/Resources/Maps/Shuttles/cargo_core.yml @@ -169,6 +169,10 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 2 + - type: DeviceList + devices: + - 144 + - 95 - proto: AirCanister entities: - uid: 147 @@ -647,6 +651,9 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 145 - proto: GasVentScrubber entities: - uid: 144 @@ -655,6 +662,9 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 145 - proto: GeneratorBasic15kW entities: - uid: 96 From 7803254b6fff2fecea81522e7c90fb37034ebf69 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Wed, 25 Dec 2024 00:08:35 -0700 Subject: [PATCH 230/263] bagel update (#34062) * bagel update * fixgridatmos * fdsafds --- Resources/Maps/bagel.yml | 1321 +++++++++++++++++++++++--------------- 1 file changed, 797 insertions(+), 524 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index cced413d66..a033bfe6ba 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -153,7 +153,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: XQAAAAABXQAAAAABXQAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAcAAAAAAAcAAAAAABeQAAAAACcAAAAAADcAAAAAADcAAAAAADXQAAAAACXQAAAAADXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABcAAAAAADcAAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACXQAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACcAAAAAADcAAAAAADeQAAAAADcAAAAAAAcAAAAAABdQAAAAADXQAAAAABXQAAAAADXQAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAcAAAAAACeQAAAAADcAAAAAABcAAAAAAAdQAAAAABXQAAAAAAXQAAAAABXQAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACdQAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAADPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAADcAAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABcAAAAAAAcAAAAAABeQAAAAAAeQAAAAACeQAAAAADcAAAAAABcAAAAAADcAAAAAACeQAAAAADcAAAAAAAfgAAAAAAKAAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAABXQAAAAADcAAAAAABeQAAAAACcAAAAAAAfgAAAAAAXQAAAAADcAAAAAADeQAAAAACeQAAAAACeQAAAAAAeQAAAAACeQAAAAADeQAAAAACeQAAAAABeQAAAAAAcAAAAAADXQAAAAABcAAAAAAAeQAAAAABcAAAAAABfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAACcAAAAAAAeQAAAAADeQAAAAACcAAAAAADcAAAAAACeQAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAAAeQAAAAABeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABfgAAAAAAcAAAAAABeQAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAABfgAAAAAAcAAAAAACcAAAAAABcAAAAAABcAAAAAABcAAAAAAB + tiles: XQAAAAABXQAAAAABXQAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAcAAAAAAAcAAAAAABeQAAAAACcAAAAAADcAAAAAADcAAAAAADXQAAAAACXQAAAAADXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABcAAAAAADcAAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACXQAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACcAAAAAADcAAAAAADeQAAAAADcAAAAAAAcAAAAAABdQAAAAADXQAAAAABXQAAAAADXQAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAcAAAAAACeQAAAAADcAAAAAABcAAAAAAAdQAAAAABXQAAAAAAXQAAAAABXQAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACdQAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAADPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAADcAAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABcAAAAAAAcAAAAAABeQAAAAAAeQAAAAACeQAAAAADcAAAAAABcAAAAAADcAAAAAACeQAAAAADcAAAAAAAfgAAAAAAKAAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAABfgAAAAAAcAAAAAABeQAAAAACcAAAAAAAfgAAAAAAXQAAAAADcAAAAAADeQAAAAACeQAAAAACeQAAAAAAeQAAAAACeQAAAAADeQAAAAACeQAAAAABeQAAAAAAcAAAAAADXQAAAAABcAAAAAAAeQAAAAABcAAAAAABfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAACcAAAAAAAeQAAAAADeQAAAAACcAAAAAADcAAAAAACeQAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAAAeQAAAAABeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABfgAAAAAAcAAAAAABeQAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAABfgAAAAAAcAAAAAACcAAAAAABcAAAAAABcAAAAAABcAAAAAAB version: 6 3,-3: ind: 3,-3 @@ -221,11 +221,11 @@ entities: version: 6 0,-4: ind: 0,-4 - tiles: XQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA + tiles: XQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAJAAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAB + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAJAAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAB version: 6 -2,-4: ind: -2,-4 @@ -301,7 +301,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAACegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABHwAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABHwAAAAAAHwAAAAACIwAAAAAAHwAAAAABIwAAAAACfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAABegAAAAABHwAAAAABfgAAAAAAIwAAAAAAHwAAAAAAIwAAAAACfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACTgAAAAABXQAAAAADTgAAAAABXQAAAAACTgAAAAABXQAAAAACTgAAAAAAXQAAAAADTgAAAAABXQAAAAADTgAAAAAAXQAAAAACTgAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAATQAAAAADTQAAAAABTQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAACegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABHwAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABHwAAAAAAHwAAAAACIwAAAAAAHwAAAAABIwAAAAACfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAABegAAAAABHwAAAAABfgAAAAAAIwAAAAAAHwAAAAAAIwAAAAACfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACTgAAAAABXQAAAAADTgAAAAABXQAAAAACTgAAAAABXQAAAAACTgAAAAAAXQAAAAADTgAAAAABXQAAAAADTgAAAAAAXQAAAAACTgAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAATQAAAAADTQAAAAABTQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,2: ind: -2,2 @@ -7271,7 +7271,7 @@ entities: -6,4: 0: 15355 -5,4: - 0: 36795 + 0: 35835 4,-13: 0: 65520 5,-12: @@ -7596,7 +7596,7 @@ entities: 9,-1: 0: 63279 9,0: - 0: 26495 + 0: 10111 10,-3: 0: 49080 10,-2: @@ -7956,22 +7956,21 @@ entities: 0,-17: 0: 65535 -1,-16: - 0: 61167 + 0: 61423 0,-15: 0: 65523 -1,-15: - 0: 61160 + 0: 61176 0,-14: 0: 16383 -1,-14: 0: 36863 1,-16: - 0: 7 - 1: 17408 + 0: 8967 + 1,-15: + 0: 8754 1,-14: 0: 20479 - 1,-15: - 1: 1094 2,-14: 0: 2039 -4,-16: @@ -7995,10 +7994,9 @@ entities: -2,-14: 0: 12287 -2,-16: - 0: 12 - 1: 17408 + 0: 34828 -2,-15: - 1: 3148 + 0: 34952 -1,-17: 0: 61439 -8,-13: @@ -8079,7 +8077,7 @@ entities: -4,5: 0: 15291 -5,5: - 0: 63658 + 0: 63674 -4,6: 0: 45503 -5,6: @@ -9728,8 +9726,8 @@ entities: id: docking43669 localAnchorB: -47.5,-40 localAnchorA: 0.5,0 - damping: 1560.5305 - stiffness: 14007.29 + damping: 1560.5402 + stiffness: 14007.377 - proto: AcousticGuitarInstrument entities: - uid: 2133 @@ -9823,15 +9821,9 @@ entities: - 4822 - 4821 - 5062 - - 5066 - - 5064 - - 5174 - 5042 - 5043 - 5044 - - 5175 - - 5192 - - 4823 - 7484 - 4971 - 21169 @@ -9845,9 +9837,6 @@ entities: - type: DeviceList devices: - 5065 - - 5066 - - 5064 - - 5174 - 7485 - 7463 - uid: 5224 @@ -10846,6 +10835,20 @@ entities: - 24361 - 24358 - 9016 + - uid: 24769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-56.5 + parent: 60 + - type: DeviceList + devices: + - 4885 + - 5066 + - 5099 + - 4730 + - 7476 + - 7488 - uid: 24792 components: - type: Transform @@ -11291,10 +11294,12 @@ entities: - type: Transform pos: -21.5,17.5 parent: 60 - - uid: 17650 + - uid: 24768 components: + - type: MetaData + name: Chaplain's Office - type: Transform - pos: -17.5,18.5 + pos: -17.5,17.5 parent: 60 - proto: AirlockChemistryLocked entities: @@ -11431,13 +11436,14 @@ entities: - type: Transform pos: -60.5,17.5 parent: 60 -- proto: AirlockDetectiveGlassLocked +- proto: AirlockDetectiveLocked entities: - - uid: 1593 + - uid: 1905 components: - type: MetaData name: Detective's Office - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,-25.5 parent: 60 - proto: AirlockEngineeringGlass @@ -11471,10 +11477,6 @@ entities: - type: Transform pos: 0.5,12.5 parent: 60 - - type: DeviceLinkSource - linkedPorts: - 13805: - - DoorStatus: Close - uid: 6516 components: - type: MetaData @@ -11493,15 +11495,6 @@ entities: linkedPorts: 5859: - DoorStatus: Close - 13805: - - DoorStatus: Close - - uid: 13805 - components: - - type: MetaData - name: Engi Locker Room - - type: Transform - pos: -1.5,14.5 - parent: 60 - uid: 15490 components: - type: MetaData @@ -11546,6 +11539,11 @@ entities: rot: 3.141592653589793 rad pos: -13.5,3.5 parent: 60 + - uid: 3201 + components: + - type: Transform + pos: -1.5,14.5 + parent: 60 - uid: 3345 components: - type: MetaData @@ -13164,6 +13162,12 @@ entities: - type: Transform pos: -39.5,-23.5 parent: 60 + - uid: 5227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-61.5 + parent: 60 - uid: 5480 components: - type: Transform @@ -13184,6 +13188,12 @@ entities: - type: Transform pos: -43.5,-27.5 parent: 60 + - uid: 7482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-56.5 + parent: 60 - uid: 8015 components: - type: Transform @@ -13264,6 +13274,30 @@ entities: - type: Transform pos: -65.5,50.5 parent: 60 + - uid: 24791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-58.5 + parent: 60 + - uid: 25398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-61.5 + parent: 60 + - uid: 25399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-56.5 + parent: 60 + - uid: 25400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-58.5 + parent: 60 - proto: AirlockMaintMedLocked entities: - uid: 101 @@ -13499,17 +13533,18 @@ entities: - type: Transform pos: 39.5,0.5 parent: 60 - - uid: 13363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,3.5 - parent: 60 - uid: 18902 components: - type: Transform pos: 49.5,3.5 parent: 60 +- proto: AirlockSalvageLocked + entities: + - uid: 5103 + components: + - type: Transform + pos: 37.5,3.5 + parent: 60 - proto: AirlockScienceGlassLocked entities: - uid: 810 @@ -13801,6 +13836,15 @@ entities: - type: DeviceNetwork deviceLists: - 23956 + - uid: 4730 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4833 + - 24769 - uid: 5061 components: - type: Transform @@ -17267,23 +17311,129 @@ entities: parent: 60 - proto: ButtonFrameCaution entities: + - uid: 4723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,11.5 + parent: 60 + - uid: 4874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-33.5 + parent: 60 + - uid: 6473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 60 - uid: 13637 components: - type: Transform pos: -48.5,15.5 parent: 60 + - uid: 13853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-21.5 + parent: 60 + - uid: 18968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 60 - uid: 19838 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,5.5 parent: 60 + - uid: 21786 + components: + - type: Transform + pos: 25.5,5.5 + parent: 60 - uid: 23939 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-18.5 parent: 60 + - uid: 25261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 60 + - uid: 25264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,15.5 + parent: 60 + - uid: 25266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 60 + - uid: 25268 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 60 + - uid: 25273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 60 + - uid: 25381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-35.5 + parent: 60 + - uid: 25382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 60 + - uid: 25392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 60 + - uid: 25393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 60 + - uid: 25396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 60 + - uid: 25397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,26.5 + parent: 60 + - uid: 25411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 60 - proto: ButtonFrameCautionSecurity entities: - uid: 766 @@ -17304,6 +17454,11 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-21.5 parent: 60 + - uid: 25395 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 60 - proto: ButtonFrameGrey entities: - uid: 19839 @@ -17326,6 +17481,24 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-14.5 parent: 60 + - uid: 25263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 60 + - uid: 25270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 60 + - uid: 25383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-33.5 + parent: 60 - proto: CableApcExtension entities: - uid: 23 @@ -33118,6 +33291,31 @@ entities: - type: Transform pos: 42.5,21.5 parent: 60 + - uid: 25405 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 60 + - uid: 25406 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 60 + - uid: 25412 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 60 + - uid: 25413 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 60 + - uid: 25414 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 60 - proto: CableApcStack entities: - uid: 9517 @@ -33699,6 +33897,16 @@ entities: - type: Transform pos: 24.5,-70.5 parent: 60 + - uid: 4495 + components: + - type: Transform + pos: 7.5,24.5 + parent: 60 + - uid: 4614 + components: + - type: Transform + pos: 8.5,24.5 + parent: 60 - uid: 4631 components: - type: Transform @@ -33724,11 +33932,26 @@ entities: - type: Transform pos: -0.5,-39.5 parent: 60 + - uid: 4688 + components: + - type: Transform + pos: 8.5,23.5 + parent: 60 + - uid: 4694 + components: + - type: Transform + pos: 8.5,22.5 + parent: 60 - uid: 4700 components: - type: Transform pos: 5.5,-37.5 parent: 60 + - uid: 4708 + components: + - type: Transform + pos: 8.5,21.5 + parent: 60 - uid: 4785 components: - type: Transform @@ -42579,36 +42802,6 @@ entities: - type: Transform pos: 1.5,22.5 parent: 60 - - uid: 24687 - components: - - type: Transform - pos: 4.5,26.5 - parent: 60 - - uid: 24688 - components: - - type: Transform - pos: 4.5,25.5 - parent: 60 - - uid: 24689 - components: - - type: Transform - pos: 4.5,24.5 - parent: 60 - - uid: 24768 - components: - - type: Transform - pos: 4.5,23.5 - parent: 60 - - uid: 24769 - components: - - type: Transform - pos: 4.5,22.5 - parent: 60 - - uid: 24770 - components: - - type: Transform - pos: 4.5,21.5 - parent: 60 - uid: 24771 components: - type: Transform @@ -42634,6 +42827,36 @@ entities: - type: Transform pos: 1.5,21.5 parent: 60 + - uid: 24821 + components: + - type: Transform + pos: 8.5,20.5 + parent: 60 + - uid: 24826 + components: + - type: Transform + pos: 8.5,19.5 + parent: 60 + - uid: 25253 + components: + - type: Transform + pos: 7.5,19.5 + parent: 60 + - uid: 25255 + components: + - type: Transform + pos: 6.5,19.5 + parent: 60 + - uid: 25257 + components: + - type: Transform + pos: 5.5,19.5 + parent: 60 + - uid: 25259 + components: + - type: Transform + pos: 4.5,19.5 + parent: 60 - proto: CableHVStack entities: - uid: 13606 @@ -43463,6 +43686,11 @@ entities: - type: Transform pos: -1.5,-53.5 parent: 60 + - uid: 4877 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 60 - uid: 4910 components: - type: Transform @@ -43568,6 +43796,11 @@ entities: - type: Transform pos: -4.5,-55.5 parent: 60 + - uid: 5242 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 60 - uid: 5339 components: - type: Transform @@ -43698,6 +43931,16 @@ entities: - type: Transform pos: -2.5,-55.5 parent: 60 + - uid: 6182 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 60 + - uid: 6187 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 60 - uid: 6196 components: - type: Transform @@ -45183,6 +45426,21 @@ entities: - type: Transform pos: -30.5,-6.5 parent: 60 + - uid: 10846 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 60 + - uid: 10847 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 60 + - uid: 10848 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 60 - uid: 10882 components: - type: Transform @@ -46518,6 +46776,11 @@ entities: - type: Transform pos: -13.5,-15.5 parent: 60 + - uid: 16061 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 60 - uid: 16095 components: - type: Transform @@ -50750,6 +51013,30 @@ entities: - type: Transform pos: -52.5,-22.5 parent: 60 + - uid: 5175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-59.5 + parent: 60 + - uid: 5192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-57.5 + parent: 60 + - uid: 5239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-57.5 + parent: 60 + - uid: 5240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-61.5 + parent: 60 - uid: 5280 components: - type: Transform @@ -50815,6 +51102,12 @@ entities: - type: Transform pos: -62.5,-26.5 parent: 60 + - uid: 6189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-59.5 + parent: 60 - uid: 6288 components: - type: Transform @@ -51370,6 +51663,36 @@ entities: - type: Transform pos: -69.5,-25.5 parent: 60 + - uid: 7467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-58.5 + parent: 60 + - uid: 7471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-61.5 + parent: 60 + - uid: 7480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-58.5 + parent: 60 + - uid: 7481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-60.5 + parent: 60 + - uid: 7513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-60.5 + parent: 60 - uid: 7593 components: - type: Transform @@ -56369,12 +56692,6 @@ entities: - type: Transform pos: -41.5,-15.5 parent: 60 - - uid: 4614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-61.5 - parent: 60 - uid: 4615 components: - type: Transform @@ -56721,24 +57038,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-20.5 parent: 60 - - uid: 10847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-57.5 - parent: 60 - - uid: 10848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-58.5 - parent: 60 - - uid: 10849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-57.5 - parent: 60 - uid: 11480 components: - type: Transform @@ -57288,12 +57587,6 @@ entities: - type: Transform pos: -19.5,-16.5 parent: 60 - - uid: 1905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.514114,2.6323514 - parent: 60 - uid: 1924 components: - type: Transform @@ -58518,29 +58811,6 @@ entities: - 0 - 0 - 0 - - uid: 10846 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11659 components: - type: Transform @@ -63384,6 +63654,14 @@ entities: - type: Transform pos: 51.475224,-22.209888 parent: 60 +- proto: CurtainsBlackOpen + entities: + - uid: 23835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,21.5 + parent: 60 - proto: CurtainsRedOpen entities: - uid: 23090 @@ -69863,17 +70141,17 @@ entities: - type: Transform pos: 2.5,-31.5 parent: 60 - - uid: 3201 - components: - - type: Transform - pos: 46.5,-24.5 - parent: 60 - uid: 3202 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-37.5 parent: 60 + - uid: 4878 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 60 - uid: 5202 components: - type: Transform @@ -70257,15 +70535,15 @@ entities: - 4822 - 4821 - 5062 - - 5066 - - 5064 - - 5174 - 5042 - 5043 - 5044 - - 5175 - - 5192 - - 4823 + - 5064 + - 4886 + - 5049 + - 4885 + - 5066 + - 5099 - uid: 4833 components: - type: Transform @@ -70273,9 +70551,10 @@ entities: parent: 60 - type: DeviceList devices: - - 5175 - - 5192 - - 4823 + - 4885 + - 5066 + - 5099 + - 4730 - uid: 5110 components: - type: Transform @@ -70284,9 +70563,9 @@ entities: - type: DeviceList devices: - 5065 - - 5066 - 5064 - - 5174 + - 4886 + - 5049 - uid: 6176 components: - type: Transform @@ -70522,7 +70801,6 @@ entities: parent: 60 - type: DeviceList devices: - - 24791 - 13148 - 13149 - 13150 @@ -71187,12 +71465,6 @@ entities: - type: Transform pos: 0.5,-58.5 parent: 60 - - uid: 4823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-53.5 - parent: 60 - uid: 4824 components: - type: Transform @@ -71218,41 +71490,11 @@ entities: - type: Transform pos: 1.5,-51.5 parent: 60 - - uid: 5064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-54.5 - parent: 60 - - uid: 5066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 60 - uid: 5089 components: - type: Transform pos: -0.5,-58.5 parent: 60 - - uid: 5174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-53.5 - parent: 60 - - uid: 5175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-55.5 - parent: 60 - - uid: 5192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-54.5 - parent: 60 - uid: 8408 components: - type: Transform @@ -71891,6 +72133,63 @@ entities: - type: DeviceNetwork deviceLists: - 21498 + - uid: 4885 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4831 + - 4833 + - 24769 + - uid: 4886 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4831 + - 5110 + - uid: 5049 + components: + - type: Transform + pos: -3.5,-53.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4831 + - 5110 + - uid: 5064 + components: + - type: Transform + pos: -3.5,-55.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4831 + - 5110 + - uid: 5066 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4831 + - 4833 + - 24769 + - uid: 5099 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4831 + - 4833 + - 24769 - uid: 5204 components: - type: Transform @@ -72687,14 +72986,6 @@ entities: - type: DeviceNetwork deviceLists: - 23767 - - uid: 24791 - components: - - type: Transform - pos: 38.5,3.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21543 - uid: 25146 components: - type: Transform @@ -97936,6 +98227,9 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-55.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 24769 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7484 @@ -99392,6 +99686,9 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-53.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 24769 - type: AtmosPipeColor color: '#990000FF' - uid: 7686 @@ -101698,18 +101995,6 @@ entities: - type: Transform pos: 22.5,-63.5 parent: 60 - - uid: 4708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-58.5 - parent: 60 - - uid: 4723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-57.5 - parent: 60 - uid: 4727 components: - type: Transform @@ -101728,12 +102013,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-72.5 parent: 60 - - uid: 4730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-62.5 - parent: 60 - uid: 4735 components: - type: Transform @@ -101884,12 +102163,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-55.5 parent: 60 - - uid: 5121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 60 - uid: 5122 components: - type: Transform @@ -101902,12 +102175,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-56.5 parent: 60 - - uid: 5124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-56.5 - parent: 60 - uid: 5125 components: - type: Transform @@ -101929,11 +102196,6 @@ entities: - type: Transform pos: 3.5,-75.5 parent: 60 - - uid: 5227 - components: - - type: Transform - pos: -3.5,-60.5 - parent: 60 - uid: 5228 components: - type: Transform @@ -101944,26 +102206,6 @@ entities: - type: Transform pos: -3.5,-73.5 parent: 60 - - uid: 5239 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 60 - - uid: 5240 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 60 - - uid: 5241 - components: - - type: Transform - pos: -3.5,-57.5 - parent: 60 - - uid: 5242 - components: - - type: Transform - pos: -3.5,-61.5 - parent: 60 - uid: 5245 components: - type: Transform @@ -102133,11 +102375,6 @@ entities: - type: Transform pos: -70.5,29.5 parent: 60 - - uid: 6163 - components: - - type: Transform - pos: -5.5,-62.5 - parent: 60 - uid: 6164 components: - type: Transform @@ -102164,30 +102401,12 @@ entities: - type: Transform pos: -5.5,-71.5 parent: 60 - - uid: 6182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-62.5 - parent: 60 - uid: 6185 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-69.5 parent: 60 - - uid: 6187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-62.5 - parent: 60 - - uid: 6189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-60.5 - parent: 60 - uid: 6190 components: - type: Transform @@ -102205,11 +102424,6 @@ entities: - type: Transform pos: -80.5,-26.5 parent: 60 - - uid: 6200 - components: - - type: Transform - pos: -4.5,-62.5 - parent: 60 - uid: 6222 components: - type: Transform @@ -102447,11 +102661,6 @@ entities: - type: Transform pos: 3.5,-59.5 parent: 60 - - uid: 7110 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 60 - uid: 7127 components: - type: Transform @@ -102709,17 +102918,6 @@ entities: - type: Transform pos: -2.5,-76.5 parent: 60 - - uid: 7513 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 60 - - uid: 7520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-61.5 - parent: 60 - uid: 7611 components: - type: Transform @@ -104099,11 +104297,6 @@ entities: - type: Transform pos: -19.5,20.5 parent: 60 - - uid: 14619 - components: - - type: Transform - pos: -19.5,21.5 - parent: 60 - uid: 14687 components: - type: Transform @@ -110374,17 +110567,17 @@ entities: parent: 60 - proto: IntercomCommand entities: + - uid: 7449 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 60 - uid: 15201 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,18.5 parent: 60 - - uid: 23835 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 60 - uid: 23836 components: - type: Transform @@ -110973,6 +111166,28 @@ entities: - type: Transform pos: -112.56269,8.416946 parent: 60 +- proto: LockableButtonEngineering + entities: + - uid: 14517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,26.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 21780: + - Pressed: Toggle + 21781: + - Pressed: Toggle + 21782: + - Pressed: Toggle + 21783: + - Pressed: Toggle + 21784: + - Pressed: Toggle + 21785: + - Pressed: Toggle - proto: LockableButtonMedical entities: - uid: 859 @@ -110989,6 +111204,36 @@ entities: - Pressed: Open 94: - Pressed: Open + - uid: 25271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-21.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 24366: + - Pressed: Toggle + 24367: + - Pressed: Toggle + 24368: + - Pressed: Toggle + 24369: + - Pressed: Toggle + 24372: + - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 25410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 25409: + - Pressed: Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 15401 @@ -114910,10 +115155,10 @@ entities: parent: 60 - proto: PosterLegitPeriodicTable entities: - - uid: 4495 + - uid: 7447 components: - type: Transform - pos: 35.5,-11.5 + pos: 36.5,-11.5 parent: 60 - uid: 17002 components: @@ -116018,6 +116263,18 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-6.5 parent: 60 + - uid: 25407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-59.5 + parent: 60 + - uid: 25408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-59.5 + parent: 60 - proto: Poweredlight entities: - uid: 96 @@ -118434,6 +118691,18 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-37.5 parent: 60 + - uid: 7450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,20.5 + parent: 60 + - uid: 7466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,20.5 + parent: 60 - uid: 7847 components: - type: Transform @@ -118488,18 +118757,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-17.5 parent: 60 - - uid: 9597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,21.5 - parent: 60 - - uid: 9647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,21.5 - parent: 60 - uid: 10587 components: - type: Transform @@ -120171,6 +120428,18 @@ entities: - type: Transform pos: 36.5,22.5 parent: 60 + - uid: 25403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-60.5 + parent: 60 + - uid: 25404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-57.5 + parent: 60 - proto: RandomSnacks entities: - uid: 14222 @@ -122000,21 +122269,6 @@ entities: - type: Transform pos: -9.5,-56.5 parent: 60 - - uid: 4872 - components: - - type: Transform - pos: -3.5,-60.5 - parent: 60 - - uid: 4874 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 60 - - uid: 4877 - components: - - type: Transform - pos: -3.5,-57.5 - parent: 60 - uid: 4880 components: - type: Transform @@ -122035,16 +122289,6 @@ entities: - type: Transform pos: -13.5,-56.5 parent: 60 - - uid: 4885 - components: - - type: Transform - pos: -3.5,-61.5 - parent: 60 - - uid: 4886 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 60 - uid: 4893 components: - type: Transform @@ -122077,11 +122321,6 @@ entities: - type: Transform pos: -7.5,-56.5 parent: 60 - - uid: 5049 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 60 - uid: 5052 components: - type: Transform @@ -122093,24 +122332,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-55.5 parent: 60 - - uid: 5099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-61.5 - parent: 60 - - uid: 5103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-62.5 - parent: 60 - - uid: 5104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-62.5 - parent: 60 - uid: 5114 components: - type: Transform @@ -122485,11 +122706,6 @@ entities: - type: Transform pos: 57.5,-13.5 parent: 60 - - uid: 6473 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 60 - uid: 6520 components: - type: Transform @@ -122661,6 +122877,11 @@ entities: - type: Transform pos: 10.5,-14.5 parent: 60 + - uid: 7244 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 60 - uid: 7245 components: - type: Transform @@ -122846,21 +123067,6 @@ entities: - type: Transform pos: -5.5,-64.5 parent: 60 - - uid: 7447 - components: - - type: Transform - pos: -5.5,-62.5 - parent: 60 - - uid: 7449 - components: - - type: Transform - pos: -4.5,-62.5 - parent: 60 - - uid: 7450 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 60 - uid: 7452 components: - type: Transform @@ -122871,18 +123077,6 @@ entities: - type: Transform pos: 3.5,-75.5 parent: 60 - - uid: 7466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-58.5 - parent: 60 - - uid: 7467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-60.5 - parent: 60 - uid: 7468 components: - type: Transform @@ -122895,36 +123089,12 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-69.5 parent: 60 - - uid: 7471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-57.5 - parent: 60 - uid: 7477 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-64.5 parent: 60 - - uid: 7480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 60 - - uid: 7481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-56.5 - parent: 60 - - uid: 7482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-62.5 - parent: 60 - uid: 7486 components: - type: Transform @@ -126741,6 +126911,11 @@ entities: - type: Transform pos: 42.5,-16.5 parent: 60 + - uid: 25409 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 60 - proto: ShuttersRadiationOpen entities: - uid: 16369 @@ -127293,26 +127468,6 @@ entities: - Pressed: Toggle 19158: - Pressed: Toggle - - uid: 12331 - components: - - type: MetaData - name: Shutters - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-19.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 24369: - - Pressed: Toggle - 24368: - - Pressed: Toggle - 24367: - - Pressed: Toggle - 24366: - - Pressed: Toggle - 24372: - - Pressed: Toggle - uid: 13095 components: - type: Transform @@ -127698,13 +127853,6 @@ entities: linkedPorts: 24785: - Pressed: Toggle -- proto: SignalButtonWindows - entities: - - uid: 21786 - components: - - type: Transform - pos: 3.5,26.5 - parent: 60 - proto: SignalSwitchDirectional entities: - uid: 8127 @@ -127963,10 +128111,10 @@ entities: - type: Transform pos: -23.5,10.5 parent: 60 - - uid: 17271 + - uid: 14619 components: - type: Transform - pos: -17.5,17.5 + pos: -17.5,18.5 parent: 60 - proto: SignChem entities: @@ -129403,16 +129551,6 @@ entities: - type: Transform pos: 4.5,-72.5 parent: 60 - - uid: 4688 - components: - - type: Transform - pos: -3.5,-61.5 - parent: 60 - - uid: 4694 - components: - - type: Transform - pos: 4.5,-61.5 - parent: 60 - uid: 7534 components: - type: Transform @@ -129469,6 +129607,18 @@ entities: rot: 3.141592653589793 rad pos: -6.5,38.5 parent: 60 + - uid: 25401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-62.5 + parent: 60 + - uid: 25402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-62.5 + parent: 60 - proto: SignSurgery entities: - uid: 2137 @@ -129679,11 +129829,6 @@ entities: parent: 60 - proto: SMESBasic entities: - - uid: 3207 - components: - - type: Transform - pos: -5.5,33.5 - parent: 60 - uid: 5409 components: - type: Transform @@ -134329,6 +134474,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Dorm Room 4 + - uid: 17650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Library Hall - uid: 21081 components: - type: Transform @@ -134449,17 +134605,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Dorm Hall West - - uid: 24274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,17.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library Main Hall - uid: 24283 components: - type: Transform @@ -136702,11 +136847,6 @@ entities: - type: Transform pos: -8.5,32.5 parent: 60 - - uid: 18968 - components: - - type: Transform - pos: 38.5,3.5 - parent: 60 - uid: 19011 components: - type: Transform @@ -136998,6 +137138,14 @@ entities: - type: Transform pos: 19.5,-31.5 parent: 60 +- proto: TableFancyBlack + entities: + - uid: 7110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,21.5 + parent: 60 - proto: TableFancyGreen entities: - uid: 23896 @@ -138386,10 +138534,10 @@ entities: parent: 60 - proto: TeslaGenerator entities: - - uid: 16424 + - uid: 24770 components: - type: Transform - pos: -7.5,35.5 + pos: -6.5,34.5 parent: 60 - proto: TeslaGroundingRod entities: @@ -138529,11 +138677,6 @@ entities: - type: Transform pos: -19.5,20.5 parent: 60 - - uid: 14517 - components: - - type: Transform - pos: -19.5,21.5 - parent: 60 - uid: 14631 components: - type: Transform @@ -143135,21 +143278,23 @@ entities: - type: Transform pos: 8.5,-46.5 parent: 60 + - uid: 4823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-58.5 + parent: 60 - uid: 4873 components: - type: Transform - pos: -3.5,-56.5 + rot: 3.141592653589793 rad + pos: 6.5,-57.5 parent: 60 - uid: 4876 components: - type: Transform pos: -6.5,-56.5 parent: 60 - - uid: 4878 - components: - - type: Transform - pos: -3.5,-59.5 - parent: 60 - uid: 4879 components: - type: Transform @@ -143170,10 +143315,35 @@ entities: - type: Transform pos: -17.5,-56.5 parent: 60 + - uid: 5104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-61.5 + parent: 60 - uid: 5109 components: - type: Transform - pos: 4.5,-59.5 + rot: 3.141592653589793 rad + pos: 6.5,-56.5 + parent: 60 + - uid: 5121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-57.5 + parent: 60 + - uid: 5124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-59.5 + parent: 60 + - uid: 5174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-62.5 parent: 60 - uid: 5201 components: @@ -143731,7 +143901,8 @@ entities: - uid: 6172 components: - type: Transform - pos: 4.5,-56.5 + rot: 3.141592653589793 rad + pos: -5.5,-58.5 parent: 60 - uid: 6175 components: @@ -143750,6 +143921,12 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-28.5 parent: 60 + - uid: 6200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-59.5 + parent: 60 - uid: 6202 components: - type: Transform @@ -144373,11 +144550,6 @@ entities: - type: Transform pos: 9.5,35.5 parent: 60 - - uid: 7244 - components: - - type: Transform - pos: 2.5,-59.5 - parent: 60 - uid: 7254 components: - type: Transform @@ -144438,16 +144610,17 @@ entities: - type: Transform pos: -2.5,-78.5 parent: 60 - - uid: 7459 - components: - - type: Transform - pos: -1.5,-59.5 - parent: 60 - uid: 7479 components: - type: Transform pos: 58.5,10.5 parent: 60 + - uid: 7520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-62.5 + parent: 60 - uid: 7528 components: - type: Transform @@ -145180,6 +145353,12 @@ entities: - type: Transform pos: -52.5,15.5 parent: 60 + - uid: 9597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-62.5 + parent: 60 - uid: 9648 components: - type: Transform @@ -145300,6 +145479,18 @@ entities: - type: Transform pos: -60.5,5.5 parent: 60 + - uid: 10849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-60.5 + parent: 60 + - uid: 10856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-56.5 + parent: 60 - uid: 10945 components: - type: Transform @@ -145467,6 +145658,12 @@ entities: - type: Transform pos: 8.5,-33.5 parent: 60 + - uid: 12331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-62.5 + parent: 60 - uid: 12400 components: - type: Transform @@ -145801,6 +145998,18 @@ entities: - type: Transform pos: 56.5,5.5 parent: 60 + - uid: 13361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 60 + - uid: 13363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-61.5 + parent: 60 - uid: 13469 components: - type: Transform @@ -145897,6 +146106,12 @@ entities: rot: 3.141592653589793 rad pos: -5.5,17.5 parent: 60 + - uid: 13805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-62.5 + parent: 60 - uid: 13834 components: - type: Transform @@ -147183,6 +147398,12 @@ entities: rot: 3.141592653589793 rad pos: -2.5,37.5 parent: 60 + - uid: 16424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-62.5 + parent: 60 - uid: 16425 components: - type: Transform @@ -150403,6 +150624,11 @@ entities: - type: Transform pos: -32.5,-1.5 parent: 60 + - uid: 1593 + components: + - type: Transform + pos: -17.5,18.5 + parent: 60 - uid: 1627 components: - type: Transform @@ -151114,6 +151340,11 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-21.5 parent: 60 + - uid: 3207 + components: + - type: Transform + pos: 38.5,3.5 + parent: 60 - uid: 3210 components: - type: Transform @@ -151861,6 +152092,12 @@ entities: - type: Transform pos: -10.5,-52.5 parent: 60 + - uid: 4872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-57.5 + parent: 60 - uid: 5141 components: - type: Transform @@ -151891,6 +152128,12 @@ entities: - type: Transform pos: -33.5,-33.5 parent: 60 + - uid: 5241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-57.5 + parent: 60 - uid: 5275 components: - type: Transform @@ -152024,6 +152267,12 @@ entities: - type: Transform pos: 42.5,-37.5 parent: 60 + - uid: 6163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-60.5 + parent: 60 - uid: 6225 components: - type: Transform @@ -152253,6 +152502,11 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-33.5 parent: 60 + - uid: 7459 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 60 - uid: 7495 components: - type: Transform @@ -152697,6 +152951,12 @@ entities: - type: Transform pos: -56.5,5.5 parent: 60 + - uid: 9647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-60.5 + parent: 60 - uid: 9687 components: - type: Transform @@ -153333,11 +153593,6 @@ entities: - type: Transform pos: -17.5,19.5 parent: 60 - - uid: 13853 - components: - - type: Transform - pos: -17.5,17.5 - parent: 60 - uid: 13860 components: - type: Transform @@ -154189,6 +154444,30 @@ entities: - type: Transform pos: 28.5,-25.5 parent: 60 + - uid: 24274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-56.5 + parent: 60 + - uid: 24687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-59.5 + parent: 60 + - uid: 24688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-59.5 + parent: 60 + - uid: 24689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-56.5 + parent: 60 - uid: 24978 components: - type: Transform @@ -154199,6 +154478,11 @@ entities: - type: Transform pos: 48.5,22.5 parent: 60 + - uid: 25394 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 60 - proto: WallSolidRust entities: - uid: 4 @@ -154973,11 +155257,6 @@ entities: - type: Transform pos: 55.5,-10.5 parent: 60 - - uid: 10856 - components: - - type: Transform - pos: 3.5,-61.5 - parent: 60 - uid: 11536 components: - type: Transform @@ -155282,10 +155561,10 @@ entities: - type: Transform pos: -32.5,32.5 parent: 60 - - uid: 16061 + - uid: 17271 components: - type: Transform - pos: -6.5,34.5 + pos: -5.5,33.5 parent: 60 - uid: 19720 components: @@ -155751,12 +156030,6 @@ entities: parent: 60 - proto: WindoorSecureSalvageLocked entities: - - uid: 13361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 - parent: 60 - uid: 19006 components: - type: Transform From 392046fc700da2bbda8ab03af93455ca4d0ab5a8 Mon Sep 17 00:00:00 2001 From: TytosB <54259736+TytosB@users.noreply.github.com> Date: Wed, 25 Dec 2024 13:16:58 -0600 Subject: [PATCH 231/263] Loop Station update and fixes (#34067) * many changes * contentingregrationtests * serialized invalid removed * blank * "Changes and fixes as suggested" * blank * blank * added desk bells * engi rework rework rework * added gate to content integration * tweaks * aaa * bbb * added holopads * ccc * Update default.yml * hotfix * aaa * bbb * many many tweaks and fixes * aaa --------- Co-authored-by: Emisse <99158783+Emisse@users.noreply.github.com> --- Resources/Maps/loop.yml | 4322 ++++++++++++++++++---------- Resources/Prototypes/Maps/loop.yml | 2 +- 2 files changed, 2779 insertions(+), 1545 deletions(-) diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml index c94e2a175b..e8aa35e890 100644 --- a/Resources/Maps/loop.yml +++ b/Resources/Maps/loop.yml @@ -16,6 +16,7 @@ tilemap: 43: FloorDirt 45: FloorFreezer 54: FloorGold + 1: FloorGrass 36: FloorGrayConcrete 57: FloorGreenCircuit 53: FloorMime @@ -27,6 +28,7 @@ tilemap: 42: FloorSteelDirty 33: FloorTechMaint 38: FloorTechMaint2 + 2: FloorWhite 39: FloorWhitePlastic 37: FloorWood 40: FloorWoodTile @@ -71,7 +73,7 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: IgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAA + tiles: IgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAA version: 6 -2,-1: ind: -2,-1 @@ -95,15 +97,15 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAA + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAJwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAAgAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAA + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAAgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAA version: 6 -3,1: ind: -3,1 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -3,0: ind: -3,0 @@ -131,7 +133,7 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -4,1: ind: -4,1 @@ -143,11 +145,11 @@ entities: version: 6 -4,2: ind: -4,2 - tiles: HQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: KQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAA + tiles: KQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAA version: 6 -5,1: ind: -5,1 @@ -155,19 +157,19 @@ entities: version: 6 -5,2: ind: -5,2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -5,0: ind: -5,0 - tiles: MQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAMQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: MQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAMQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAAgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAMAAAAAAALAAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMgAAAAAAMgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAA + tiles: JwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAIAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAALAAAAAAALAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAA version: 6 0,2: ind: 0,2 @@ -175,11 +177,11 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: MAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALQAAAAAALQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA + tiles: MAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALQAAAAAALQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA version: 6 -4,3: ind: -4,3 - tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALwAAAAAALwAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA version: 6 -5,3: ind: -5,3 @@ -187,15 +189,15 @@ entities: version: 6 -2,3: ind: -2,3 - tiles: LAAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA + tiles: LAAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: MgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAA + tiles: MgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAA version: 6 -4,4: ind: -4,4 - tiles: HQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: HQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 -5,4: ind: -5,4 @@ -211,11 +213,11 @@ entities: version: 6 0,3: ind: 0,3 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAA + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAA version: 6 0,4: ind: 0,4 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -1,4: ind: -1,4 @@ -223,7 +225,7 @@ entities: version: 6 -2,4: ind: -2,4 - tiles: JQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: JQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 -6,3: ind: -6,3 @@ -267,7 +269,7 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -428,6 +430,31 @@ entities: 1570: 8,72 1571: 6,72 1572: 6,73 + 1886: -28,39 + 1887: -27,39 + 1888: -26,39 + 1889: -25,39 + 1890: -24,39 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 1876: -30,42 + 1877: -29,42 + 1878: -30,41 + 1879: -30,40 + 1880: -30,39 + 1881: -29,39 + 1882: -23,39 + 1883: -23,40 + 1884: -23,41 + 1885: -23,42 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 1907: -24,42 + 1908: -28,42 - node: color: '#FFFFFFFF' id: Box @@ -558,6 +585,13 @@ entities: 1575: -13,38 1630: -5,27 1633: -7,34 + 1873: -14,23 + 1874: -13,24 + - node: + color: '#A4610696' + id: BrickCornerOverlaySE + decals: + 1875: -3,56 - node: color: '#D381C996' id: BrickCornerOverlaySE @@ -590,11 +624,6 @@ entities: decals: 1581: -5,15 1596: -3,8 - - node: - color: '#52B4E996' - id: BrickCornerOverlaySW - decals: - 1573: -16,38 - node: color: '#D381C996' id: BrickCornerOverlaySW @@ -1121,8 +1150,8 @@ entities: decals: 593: -32,50 596: -10,45 - 598: -2,44 844: 5,45 + 1871: -3,44 - node: color: '#FA750096' id: BrickTileWhiteCornerNe @@ -1191,7 +1220,6 @@ entities: 684: -29,23 740: -18,30 759: -20,23 - 788: -13,23 808: -11,30 - node: color: '#A4610696' @@ -1214,7 +1242,6 @@ entities: id: BrickTileWhiteCornerSe decals: 595: -32,41 - 599: -2,43 846: 5,43 - node: color: '#FA750096' @@ -1236,6 +1263,7 @@ entities: 760: -27,23 786: -18,23 809: -16,30 + 1977: -16,38 - node: color: '#A4610696' id: BrickTileWhiteCornerSw @@ -1261,6 +1289,11 @@ entities: id: BrickTileWhiteCornerSw decals: 639: -42,28 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndE + decals: + 1872: -2,43 - node: color: '#43990996' id: BrickTileWhiteLineE @@ -1282,7 +1315,6 @@ entities: 741: -18,31 742: -18,32 762: -20,24 - 784: -13,24 802: -11,31 803: -11,32 - node: @@ -1306,7 +1338,6 @@ entities: 429: -3,59 430: -3,58 431: -3,57 - 432: -3,56 433: -3,55 452: 14,72 453: 14,73 @@ -1477,11 +1508,9 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 393: -3,44 394: -4,44 395: -5,44 396: -6,44 - 397: -7,44 398: -8,44 399: -9,44 400: -12,44 @@ -1498,6 +1527,7 @@ entities: 412: -31,47 434: -4,66 594: -33,50 + 1870: -7,44 - node: color: '#FA750096' id: BrickTileWhiteLineN @@ -1534,7 +1564,6 @@ entities: 505: -15,43 506: -14,43 507: -13,43 - 509: -15,38 620: -41,23 621: -40,23 622: -39,23 @@ -1579,11 +1608,11 @@ entities: 779: -17,23 780: -16,23 781: -15,23 - 782: -14,23 798: -15,30 799: -14,30 800: -13,30 801: -12,30 + 1978: -15,38 - node: color: '#A4610696' id: BrickTileWhiteLineS @@ -1669,7 +1698,6 @@ entities: id: BrickTileWhiteLineW decals: 512: -16,39 - 513: -16,40 514: -16,41 515: -16,42 616: -42,24 @@ -1757,21 +1785,77 @@ entities: 672: -31,29 673: -31,31 674: -31,32 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 1847: -69.17599,0.20316815 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 1854: -72.08224,-0.87495685 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 1852: -69.09786,3.0469182 + 1853: -70.36349,-0.59370685 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 1851: -67.97286,-0.92183185 + 1855: -72.19161,-1.5312068 - node: color: '#FFFFFFFF' id: Bushg2 decals: 1495: -1.2506938,80.23881 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 1858: -23.53892,55.84783 + 1859: -13.76613,55.332207 - node: color: '#FFFFFFFF' id: Bushh3 decals: 1493: -2.8444438,80.08256 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 1848: -68.31661,-0.062456846 - node: color: '#FFFFFFFF' id: Bushi4 decals: 1494: -2.0788188,79.89506 + - node: + color: '#FFFFFFFF' + id: Bushj2 + decals: + 1861: -11.953106,55.94158 + 1862: -33.49198,55.982 + - node: + color: '#FFFFFFFF' + id: Bushk1 + decals: + 1860: -11.093731,55.72283 + - node: + color: '#FFFFFFFF' + id: Bushl1 + decals: + 1849: -71.69161,-1.2655818 + 1857: -23.50767,54.488457 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 1850: -71.34786,2.8594182 + 1856: -30.262743,55.833405 - node: color: '#DE3A3A96' id: Delivery @@ -1813,6 +1897,121 @@ entities: 1710: 11,73 1711: 13,73 1712: 13,71 + 1905: -25,42 + 1909: -53,21 + 1910: -52,21 + 1911: -56,19 + 1912: -56,20 + 1913: -47,19 + 1914: -47,20 + 1915: -40,19 + 1916: -40,21 + 1917: -40,20 + 1918: -46,34 + 1919: -45,34 + 1920: -44,34 + 1921: -46,37 + 1922: -45,37 + 1923: -44,37 + 1924: -58,35 + 1925: -58,36 + 1926: -69,35 + 1927: -69,36 + 1928: -74,53 + 1929: -73,53 + 1930: -72,53 + 1931: -83,54 + 1932: -83,55 + 1933: -83,56 + 1934: -83,69 + 1935: -83,68 + 1936: -83,70 + 1937: -71,63 + 1938: -71,62 + 1939: -46,50 + 1940: -45,50 + 1941: -44,50 + 1942: -56,62 + 1943: -56,63 + 1944: -37,58 + 1945: -37,57 + 1946: -37,53 + 1947: -37,54 + 1948: -37,52 + 1949: -8,54 + 1950: -8,53 + 1951: -8,52 + 1952: -8,57 + 1953: -8,58 + 1954: -2,54 + 1955: -2,53 + 1956: -2,52 + 1957: 0,51 + 1958: 1,51 + 1959: 2,51 + 1960: -24,59 + 1961: -23,59 + 1962: -22,59 + 1963: 0,34 + 1964: 2,34 + 1965: 1,34 + 1966: 0,22 + 1967: 1,22 + 1968: 2,22 + 1969: -18,19 + 1970: -18,20 + 1971: -18,21 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 1801: -72,44 + 1802: -72,42 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 1793: -24,70 + 1794: -23,70 + 1795: -22,70 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 1774: -31,56 + 1775: -22,56 + 1776: -13,55 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 1764: -37,56 + 1765: -37,55 + 1766: -8,56 + 1767: -8,55 + 1768: -12,55 + 1769: -14,56 + 1777: -23,54 + 1778: -23,61 + 1779: -23,62 + 1780: -23,63 + 1799: -72,41 + 1800: -72,45 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 1796: -72,46 + 1797: -72,43 + 1798: -72,40 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 1770: -15,55 + 1771: -22,54 + 1772: -24,55 + 1773: -33,55 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -1858,6 +2057,161 @@ entities: 678: -35,29 679: -35,30 680: -35,31 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 1762: -37,55 + 1763: -37,56 + 1781: -23,61 + 1782: -23,62 + 1783: -23,63 + 1817: -72,41 + 1818: -72,44 + 1842: -68.58224,-1.9687068 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 1719: -59,38 + 1720: -58,39 + 1827: -71.20724,0.23441815 + 1828: -71.75411,1.2969182 + 1829: -70.98849,2.0000432 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 1819: -72,42 + 1820: -72,46 + 1838: -70.30099,-1.3905818 + 1839: -71.62911,-2.0468318 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 1717: -60,39 + 1718: -59,39 + 1756: -8,55 + 1757: -8,56 + 1790: -24,70 + 1791: -23,70 + 1792: -22,70 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 1721: -58,38 + 1722: -57,39 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 1803: -72,46 + 1804: -72,45 + 1805: -72,44 + 1806: -72,43 + 1807: -72,42 + 1808: -72,41 + 1809: -72,40 + 1835: -68.33224,0.92191815 + 1836: -68.00411,1.8750432 + 1837: -69.69161,-0.43745685 + 1840: -70.75411,-1.9218318 + 1841: -69.64474,-1.9530818 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 1723: -57,38 + 1725: -60,38 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 1830: -70.50411,2.7187932 + 1831: -72.01974,2.7656682 + 1832: -69.23849,1.0469182 + 1833: -68.05099,2.8281682 + 1834: -69.51974,2.7031682 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 1758: -8,56 + 1759: -8,55 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 1810: -72,40 + 1811: -72,41 + 1812: -72,42 + 1813: -72,44 + 1814: -72,43 + 1815: -72,45 + 1816: -72,46 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 1748: -31,55 + 1749: -30,56 + 1750: -22,54 + 1751: -22,56 + 1752: -15,55 + 1753: -11,56 + 1754: -8,56 + 1755: -8,55 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 1843: -68.91036,-0.81245685 + 1844: -70.56661,-0.23433185 + 1845: -69.97286,2.2812932 + 1846: -71.80099,2.0937932 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 1727: -34,56 + 1728: -34,55 + 1729: -33,56 + 1760: -37,55 + 1761: -37,56 + 1784: -23,61 + 1785: -23,62 + 1786: -23,63 + 1787: -24,70 + 1788: -23,70 + 1789: -22,70 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 1730: -33,55 + 1731: -32,56 + 1732: -30,55 + 1733: -24,56 + 1734: -23,55 + 1735: -24,54 + 1736: -22,55 + 1737: -15,56 + 1738: -14,55 + 1739: -12,55 + 1740: -12,56 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 1741: -11,55 + 1742: -13,55 + 1743: -14,56 + 1744: -24,55 + 1745: -23,54 + 1746: -32,55 + 1747: -31,56 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -1915,6 +2269,23 @@ entities: id: MiniTileWhiteCornerSw decals: 1703: 9,37 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 1972: -14,39 + 1974: -14,40 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 1975: -14,40 + 1980: -15,40 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 1976: -14,40 - node: color: '#FFFFFFFF' id: Remains @@ -1922,14 +2293,19 @@ entities: 1565: -64,2 - node: color: '#FFFFFFFF' - id: Rock06 + id: Rock01 decals: - 1437: -71,-1 + 1821: -69,2 - node: color: '#FFFFFFFF' - id: Rock07 + id: Rock03 decals: - 1438: -69,2 + 1823: -72,0 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 1822: -71,-1 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -2034,6 +2410,11 @@ entities: id: WarnCornerNE decals: 111: -7,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 1906: -24,41 - node: color: '#EFB34196' id: WarnCornerNW @@ -2049,6 +2430,11 @@ entities: id: WarnCornerNW decals: 112: -11,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1892: -29,41 - node: color: '#EFB34196' id: WarnCornerSE @@ -2064,6 +2450,11 @@ entities: id: WarnCornerSE decals: 110: -7,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1894: -24,40 - node: color: '#EFB34196' id: WarnCornerSW @@ -2079,6 +2470,11 @@ entities: id: WarnCornerSW decals: 113: -11,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1895: -29,40 - node: color: '#EFB34196' id: WarnLineE @@ -2100,6 +2496,11 @@ entities: 114: -7,-3 115: -7,-2 116: -7,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 1903: -26,42 - node: color: '#EFB34196' id: WarnLineN @@ -2121,6 +2522,14 @@ entities: 123: -10,-4 124: -9,-4 125: -8,-4 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 1898: -28,40 + 1899: -27,40 + 1900: -26,40 + 1901: -25,40 - node: color: '#EFB34196' id: WarnLineS @@ -2142,6 +2551,11 @@ entities: 117: -11,-3 118: -11,-2 119: -11,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 1904: -27,42 - node: color: '#EFB34196' id: WarnLineW @@ -2165,202 +2579,26 @@ entities: 122: -8,0 - node: color: '#FFFFFFFF' - id: bushsnowa1 + id: WarnLineW decals: - 1401: -24,70 - 1402: -23,70 - 1403: -22,70 + 1896: -28,41 + 1897: -25,41 - node: color: '#FFFFFFFF' - id: bushsnowb1 + id: b decals: - 1442: -69,1 - - node: - color: '#FFFFFFFF' - id: bushsnowb2 - decals: - 1650: -36.990356,55.55721 - 1651: -37.052856,54.93221 - 1652: -36.990356,56.072834 - 1653: -7.994808,54.916584 - 1654: -7.994808,55.447834 - 1655: -7.963558,56.05721 - - node: - color: '#FFFFFFFF' - id: bushsnowb3 - decals: - 1441: -71,2 + 1865: -2.8403497,54.976276 + 1866: -2.8403497,54.976276 - node: color: '#DE3A3A96' id: exclamationmark decals: 1563: -64,0 - - node: - color: '#FFFFFFFF' - id: grasssnow - decals: - 156: -34,56 - 157: -34,55 - 158: -33,56 - 159: -33,55 - 160: -32,55 - 161: -32,56 - 162: -31,56 - 163: -31,56 - 164: -30,56 - 165: -30,55 - 166: -31,55 - 167: -15,56 - 168: -14,56 - 169: -13,56 - 170: -12,56 - 171: -11,56 - 172: -11,55 - 173: -12,55 - 174: -13,55 - 175: -14,55 - 176: -15,55 - 177: -24,54 - 178: -24,55 - 179: -24,56 - 180: -23,56 - 181: -23,55 - 182: -22,56 - 183: -22,55 - 186: -23,54 - 187: -22,54 - 206: -60,39 - 207: -60,38 - 208: -59,39 - 209: -59,38 - 210: -59,39 - 211: -58,39 - 212: -58,38 - 213: -57,39 - 215: -57,38 - 1404: -24,70 - 1405: -23,70 - 1406: -22,70 - 1426: -72,40 - 1427: -72,41 - 1428: -72,42 - 1429: -72,43 - 1430: -72,44 - 1431: -72,45 - 1432: -72,46 - 1556: -23,63 - - node: - color: '#FFFFFFFF' - id: grasssnow02 - decals: - 1467: -68.87945,2.9204502 - - node: - color: '#FFFFFFFF' - id: grasssnow04 - decals: - 1475: -70.18346,-0.81155574 - 1476: -69.66783,-1.3740556 - - node: - color: '#FFFFFFFF' - id: grasssnow05 - decals: - 1465: -71.87945,0.20170009 - 1466: -70.11382,2.9673252 - - node: - color: '#FFFFFFFF' - id: grasssnow06 - decals: - 1469: -68.00445,2.0923252 - 1470: -68.0357,-1.220175 - - node: - color: '#FFFFFFFF' - id: grasssnow08 - decals: - 1464: -72.08257,-1.0483 - - node: - color: '#FFFFFFFF' - id: grasssnow10 - decals: - 139: -23,61 - 147: -23,62 - 1444: -71,-1 - 1446: -70,0 - 1447: -69,0 - 1448: -70,0 - 1449: -68,1 - 1450: -69,0 - 1457: -70.42632,-0.4545499 - 1458: -69.7232,-0.3920499 - 1459: -68.9107,0.3579501 - 1460: -68.31695,0.2798251 - 1461: -68.36382,1.1235751 - - node: - color: '#FFFFFFFF' - id: grasssnow13 - decals: - 1463: -71.89507,-1.720175 - 1468: -68.56695,3.17045 - - node: - color: '#FFFFFFFF' - id: grasssnowa1 - decals: - 1424: -72,41 - - node: - color: '#FFFFFFFF' - id: grasssnowa2 - decals: - 1451: -71,3 - 1452: -71.0982,2.4985752 - 1453: -71.30132,1.6392002 - 1454: -70.86382,1.4673251 - 1455: -71.30132,0.9985751 - 1456: -70.86382,0.3579501 - 1472: -68.0357,-1.813925 - 1473: -69.71471,-1.3428056 - 1474: -69.93346,-1.8428056 - - node: - color: '#FFFFFFFF' - id: grasssnowb1 - decals: - 1421: -72,44 - 1656: -7.994808,55.90096 - 1657: -7.994808,55.27596 - - node: - color: '#FFFFFFFF' - id: grasssnowb2 - decals: - 1422: -72,43 - - node: - color: '#FFFFFFFF' - id: grasssnowb3 - decals: - 1555: -23,63 - - node: - color: '#FFFFFFFF' - id: grasssnowc1 - decals: - 143: -23,61 - 146: -23,62 - 1419: -72,46 - 1420: -72,45 - 1423: -72,42 - 1440: -71,0 - node: color: '#FFFFFFFF' id: grasssnowc2 decals: - 1648: -37,56 - 1649: -37,55 1661: -18.00116,11.9928 - - node: - color: '#FFFFFFFF' - id: grasssnowc3 - decals: - 1407: -24,70 - 1408: -23,70 - 1409: -22,70 - 1425: -72,40 - 1462: -70.4732,-1.6108 - node: color: '#52B4E996' id: med @@ -2485,9 +2723,9 @@ entities: 4: 4096 2: 17476 -4,0: - 0: 65535 + 0: 65534 -5,0: - 0: 48059 + 0: 48051 -4,1: 0: 61695 -5,1: @@ -2535,11 +2773,11 @@ entities: 0,-5: 2: 16159 -1,-4: - 2: 43690 + 2: 64716 0,-3: 2: 13107 -1,-3: - 2: 63674 + 2: 65484 0,-2: 2: 23 0: 64512 @@ -2609,7 +2847,7 @@ entities: -7,-1: 0: 36863 -6,0: - 0: 65535 + 0: 65523 -6,1: 0: 65535 -6,2: @@ -2618,8 +2856,10 @@ entities: 0: 65359 -6,4: 0: 61695 + -6,-1: + 0: 35771 -5,-1: - 0: 16383 + 0: 65535 -5,4: 0: 61627 -8,-4: @@ -2638,7 +2878,8 @@ entities: 2: 34959 -8,-2: 2: 1 - 0: 52236 + 6: 4 + 0: 52232 -9,-2: 2: 34952 -8,-1: @@ -2666,8 +2907,6 @@ entities: -6,-2: 2: 240 0: 45056 - -6,-1: - 0: 3003 -6,-5: 0: 4112 2: 15 @@ -2680,19 +2919,19 @@ entities: 0: 61440 -5,-5: 2: 61167 + -4,-4: + 2: 63897 -4,-3: - 2: 61666 + 2: 65433 -4,-2: 2: 255 0: 41472 - -4,-4: - 2: 43690 -4,-5: - 2: 64170 + 2: 63897 -3,-4: 2: 63628 -3,-3: - 2: 63736 + 2: 65416 -3,-2: 2: 255 0: 61440 @@ -2701,7 +2940,7 @@ entities: -2,-4: 2: 63625 -2,-3: - 2: 61680 + 2: 65416 -2,-2: 2: 255 0: 47104 @@ -2710,7 +2949,7 @@ entities: -1,-1: 0: 1911 -1,-5: - 2: 64170 + 2: 64716 -4,-8: 2: 65280 -5,-8: @@ -2720,25 +2959,27 @@ entities: -5,-7: 2: 61007 -4,-6: - 2: 41696 + 2: 63903 + -5,-6: + 2: 61166 -3,-8: 2: 65280 -3,-7: 2: 65423 -3,-6: - 2: 63736 + 2: 63631 -2,-8: 2: 65280 -2,-7: 2: 65295 -2,-6: - 2: 61680 + 2: 63631 -1,-8: 2: 65280 -1,-7: 2: 65295 -1,-6: - 2: 43704 + 2: 64719 0,-8: 2: 61696 0,-7: @@ -2782,8 +3023,6 @@ entities: -6,-6: 2: 1 0: 4112 - -5,-6: - 2: 61166 -5,-9: 2: 28672 1,-8: @@ -3246,7 +3485,7 @@ entities: 0: 65532 -13,12: 0: 4351 - 6: 57344 + 7: 57344 -12,9: 0: 56783 -12,10: @@ -3255,7 +3494,7 @@ entities: 0: 65500 -12,12: 0: 60639 - 6: 4096 + 7: 4096 -11,9: 0: 56605 -11,10: @@ -3281,7 +3520,7 @@ entities: -9,12: 0: 36319 -8,9: - 0: 56607 + 0: 53535 -8,10: 0: 7645 -8,11: @@ -3434,19 +3673,20 @@ entities: -8,12: 0: 21845 -7,9: - 0: 62735 - 7: 2560 + 0: 61455 -7,10: - 0: 8189 - 7: 2 + 0: 7775 + 6: 256 + 8: 160 -7,11: 0: 57343 -7,12: 0: 7645 -6,9: - 0: 47887 + 0: 47119 -6,10: - 0: 37819 + 0: 37563 + 6: 256 -6,11: 0: 28671 -6,12: @@ -3473,12 +3713,12 @@ entities: 0: 4095 3,12: 0: 143 - 2: 29440 + 2: 62208 -12,13: - 6: 1 + 7: 1 0: 65484 -13,13: - 6: 14 + 7: 14 0: 65280 -12,14: 0: 65535 @@ -3495,7 +3735,7 @@ entities: -11,15: 0: 65535 -11,16: - 0: 30577 + 0: 30705 -10,13: 0: 65535 -10,14: @@ -3503,7 +3743,7 @@ entities: -10,15: 0: 63351 -10,16: - 0: 30577 + 0: 30578 -9,13: 0: 65535 -9,14: @@ -3739,7 +3979,7 @@ entities: 4,14: 2: 119 3,14: - 2: 29932 + 2: 64748 0: 16 4,15: 2: 4369 @@ -3770,7 +4010,7 @@ entities: 0: 62463 3,13: 0: 48 - 2: 29764 + 2: 64716 3,16: 0: 28774 0,17: @@ -4298,6 +4538,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -4314,10 +4569,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 23.57087 + - 88.67137 - 0 - 0 - 0 @@ -4339,7 +4594,7 @@ entities: - uid: 2659 components: - type: Transform - pos: -28.379654,6.5276575 + pos: -28.412497,6.410239 parent: 2 - uid: 4708 components: @@ -4374,6 +4629,20 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 5512 + - uid: 13953 + components: + - type: Transform + parent: 4429 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4429 + - uid: 13956 + components: + - type: Transform + parent: 4857 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4857 - proto: ActionToggleJetpack entities: - uid: 5995 @@ -4397,8 +4666,29 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 5512 + - uid: 13952 + components: + - type: Transform + parent: 4429 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4429 + - uid: 13955 + components: + - type: Transform + parent: 4857 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4857 - proto: ActionToggleLight entities: + - uid: 2206 + components: + - type: Transform + parent: 5578 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5578 - uid: 6242 components: - type: Transform @@ -4679,6 +4969,20 @@ entities: - 11331 - 11827 - 3523 + - uid: 7638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 1453 + - 11459 + - 11457 + - 11453 + - 11435 + - 12183 - uid: 9991 components: - type: Transform @@ -4725,6 +5029,31 @@ entities: - 11419 - 12164 - 361 + - uid: 10285 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 6208 + - 6207 + - 6209 + - 1164 + - 6971 + - 3051 + - 4674 + - 7255 + - 7172 + - 3638 + - 1679 + - 6202 + - 6201 + - 6200 + - 11872 + - 11556 + - 11560 + - 12466 - uid: 10324 components: - type: Transform @@ -5223,20 +5552,6 @@ entities: - 11438 - 5659 - 12252 - - uid: 11442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,37.5 - parent: 2 - - type: DeviceList - devices: - - 1453 - - 11459 - - 11457 - - 11453 - - 11435 - - 12183 - uid: 11443 components: - type: Transform @@ -5621,31 +5936,6 @@ entities: - 2905 - 11687 - 13542 - - uid: 11561 - components: - - type: Transform - pos: -8.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 6208 - - 6207 - - 6209 - - 1164 - - 6971 - - 3051 - - 11556 - - 11560 - - 7255 - - 7172 - - 3638 - - 1679 - - 6202 - - 6201 - - 6200 - - 11501 - - 11872 - - 12466 - uid: 11562 components: - type: Transform @@ -5987,6 +6277,34 @@ entities: - type: Transform pos: -26.5,59.5 parent: 2 + - type: DeviceList + devices: + - 11325 + - 11867 + - 15388 + - 10459 + - 10460 + - 11866 + - 1984 + - 1420 + - 6241 + - 3523 + - 6244 + - 6245 + - 6246 + - 5937 + - 4763 + - 6108 + - 2654 + - 6239 + - 6238 + - 6237 + - 6234 + - 6233 + - 2645 + - 6248 + - 6249 + - 6250 - uid: 15479 components: - type: Transform @@ -6199,119 +6517,25 @@ entities: parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 67 + - uid: 4510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,48.5 + pos: -27.5,48.5 parent: 2 - - uid: 1327 + - uid: 4675 components: - type: Transform - pos: -7.5,14.5 + pos: -29.5,51.5 parent: 2 - - uid: 1520 + - uid: 4836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,47.5 + pos: -27.5,51.5 parent: 2 - - uid: 1521 + - uid: 6442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,47.5 - parent: 2 - - uid: 1796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,47.5 - parent: 2 - - uid: 4295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,45.5 - parent: 2 - - uid: 5031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,47.5 - parent: 2 - - uid: 5047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,45.5 - parent: 2 - - uid: 13989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,68.5 - parent: 2 - - uid: 13990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,67.5 - parent: 2 - - uid: 13992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,44.5 - parent: 2 - - uid: 13993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,18.5 - parent: 2 - - uid: 14056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,64.5 - parent: 2 - - uid: 14276 - components: - - type: Transform - pos: 6.5,44.5 - parent: 2 -- proto: AirlockBrigLocked - entities: - - uid: 12116 - components: - - type: Transform - pos: -0.5,43.5 - parent: 2 - - uid: 13955 - components: - - type: Transform - pos: -40.5,47.5 - parent: 2 - - uid: 13956 - components: - - type: Transform - pos: -31.5,40.5 - parent: 2 - - uid: 13957 - components: - - type: Transform - pos: -34.5,44.5 - parent: 2 - - uid: 13958 - components: - - type: Transform - pos: -34.5,45.5 - parent: 2 - - uid: 13963 - components: - - type: Transform - pos: -9.5,42.5 + pos: -29.5,48.5 parent: 2 - proto: AirlockCaptainGlassLocked entities: @@ -6375,9 +6599,10 @@ entities: parent: 2 - proto: AirlockChemistryLocked entities: - - uid: 13930 + - uid: 4859 components: - type: Transform + rot: 3.141592653589793 rad pos: -31.5,31.5 parent: 2 - proto: AirlockChiefEngineerGlassLocked @@ -6452,6 +6677,10 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,59.5 parent: 2 + - type: AccessReader + access: + - - Command + - - HeadOfPersonnel - proto: AirlockCommandLocked entities: - uid: 5629 @@ -6466,18 +6695,17 @@ entities: parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 12878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,42.5 - parent: 2 - uid: 14981 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,37.5 parent: 2 + - uid: 16940 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 - proto: AirlockEngineeringGlassLocked entities: - uid: 139 @@ -6620,6 +6848,7 @@ entities: access: - - Brig - - Engineering + - - Security - uid: 14017 components: - type: Transform @@ -6735,21 +6964,6 @@ entities: parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 5913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,57.5 - parent: 2 - - type: AccessReader - access: - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5936: - - DoorStatus: DoorBolt - uid: 5936 components: - type: Transform @@ -6760,10 +6974,10 @@ entities: access: - - Salvage - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 5913: + 16895: - DoorStatus: DoorBolt - uid: 16431 components: @@ -6777,6 +6991,18 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,75.5 parent: 2 + - uid: 16895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,57.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5936: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 354 @@ -6837,22 +7063,6 @@ entities: linkedPorts: 3822: - DoorStatus: DoorBolt - - uid: 4618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,53.5 - parent: 2 - - type: AccessReader - access: - - - Engineering - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 4797: - - DoorStatus: DoorBolt - uid: 4797 components: - type: Transform @@ -6864,10 +7074,10 @@ entities: - - Engineering - - Salvage - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 4618: + 16894: - DoorStatus: DoorBolt - uid: 7337 components: @@ -6924,6 +7134,22 @@ entities: linkedPorts: 14633: - DoorStatus: DoorBolt + - uid: 16894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,53.5 + parent: 2 + - type: AccessReader + access: + - - Engineering + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4797: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 1200 @@ -6931,6 +7157,9 @@ entities: - type: Transform pos: -14.5,77.5 parent: 2 + - type: AccessReader + access: + - - Command - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -7087,6 +7316,11 @@ entities: rot: 3.141592653589793 rad pos: -14.5,85.5 parent: 2 + - type: AccessReader + access: + - - Command + - - External + - - ResearchDirector - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -7100,6 +7334,8 @@ entities: parent: 2 - type: AccessReader access: + - - Command + - - External - - ResearchDirector - type: DeviceLinkSink invokeCounter: 5 @@ -7652,6 +7888,7 @@ entities: - uid: 1502 components: - type: Transform + rot: 1.5707963267948966 rad pos: -33.5,7.5 parent: 2 - uid: 14026 @@ -7870,20 +8107,10 @@ entities: parent: 2 - type: AccessReader access: - - - Brig - - Medical + - - Security - proto: AirlockMaintRnDLocked entities: - - uid: 13995 - components: - - type: Transform - pos: 9.5,26.5 - parent: 2 - - uid: 13996 - components: - - type: Transform - pos: 9.5,24.5 - parent: 2 - uid: 14067 components: - type: Transform @@ -7919,18 +8146,6 @@ entities: - type: Transform pos: -49.5,68.5 parent: 2 -- proto: AirlockMedical - entities: - - uid: 13977 - components: - - type: Transform - pos: -16.5,30.5 - parent: 2 - - uid: 13980 - components: - - type: Transform - pos: -21.5,26.5 - parent: 2 - proto: AirlockMedicalGlassLocked entities: - uid: 13975 @@ -7953,6 +8168,20 @@ entities: - type: Transform pos: -13.5,29.5 parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 5031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,30.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,26.5 + parent: 2 - proto: AirlockMedicalMorgueLocked entities: - uid: 1952 @@ -7964,8 +8193,8 @@ entities: parent: 2 - type: AccessReader access: - - - Brig - - Medical + - - Security - uid: 1953 components: - type: MetaData @@ -7975,13 +8204,17 @@ entities: parent: 2 - type: AccessReader access: - - - Brig - - Medical + - - Security - uid: 13969 components: - type: Transform pos: -8.5,33.5 parent: 2 + - type: AccessReader + access: + - - Medical + - - Security - proto: AirlockQuartermasterGlassLocked entities: - uid: 14040 @@ -8048,23 +8281,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,63.5 parent: 2 -- proto: AirlockScience - entities: - - uid: 13986 - components: - - type: Transform - pos: 10.5,34.5 - parent: 2 - - uid: 13987 - components: - - type: Transform - pos: 6.5,36.5 - parent: 2 - - uid: 13988 - components: - - type: Transform - pos: 11.5,41.5 - parent: 2 - proto: AirlockScienceGlassLocked entities: - uid: 1397 @@ -8087,30 +8303,119 @@ entities: - type: Transform pos: 14.5,31.5 parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 5150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,36.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,41.5 + parent: 2 + - uid: 12121 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - type: AccessReader + access: + - - Atmospherics + - - Research - proto: AirlockSecurityGlassLocked entities: - - uid: 13949 + - uid: 1249 components: - type: Transform - pos: -29.5,51.5 + pos: -13.5,45.5 parent: 2 - - uid: 13950 + - uid: 1327 components: - type: Transform - pos: -27.5,51.5 + pos: -3.5,67.5 parent: 2 - - uid: 13951 + - uid: 1520 components: - type: Transform - pos: -29.5,48.5 + pos: -21.5,47.5 parent: 2 - - uid: 13952 + - uid: 1521 components: - type: Transform - pos: -27.5,48.5 + pos: -18.5,47.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: -15.5,47.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 6.5,44.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: -69.5,64.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: -12.5,45.5 parent: 2 - proto: AirlockSecurityLawyerGlassLocked entities: + - uid: 6441 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 - uid: 13954 components: - type: Transform @@ -8122,16 +8427,41 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,64.5 parent: 2 -- proto: AirlockSecurityLawyerLocked +- proto: AirlockSecurityLocked entities: - - uid: 13953 + - uid: 1796 components: - type: Transform - pos: -34.5,48.5 + pos: -34.5,44.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + pos: -34.5,45.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: -31.5,40.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: -40.5,47.5 parent: 2 - proto: AirlockServiceLocked entities: - - uid: 14057 + - uid: 6932 components: - type: Transform rot: 3.141592653589793 rad @@ -8145,6 +8475,18 @@ entities: parent: 2 - proto: AirlockTheatreLocked entities: + - uid: 6789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,64.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,64.5 + parent: 2 - uid: 11447 components: - type: Transform @@ -8156,18 +8498,6 @@ entities: rot: 3.141592653589793 rad pos: -60.5,61.5 parent: 2 - - uid: 14053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,64.5 - parent: 2 - - uid: 14055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,64.5 - parent: 2 - proto: AirSensor entities: - uid: 430 @@ -8238,6 +8568,7 @@ entities: - type: DeviceNetwork deviceLists: - 10458 + - 15383 - uid: 10461 components: - type: Transform @@ -8610,9 +8941,9 @@ entities: - type: DeviceNetwork deviceLists: - 11429 - - 11442 - 13611 - 5941 + - 7638 - uid: 11439 components: - type: Transform @@ -8641,10 +8972,10 @@ entities: deviceLists: - 11443 - 11444 - - 11442 - 2728 - 13611 - 5853 + - 7638 - uid: 11454 components: - type: Transform @@ -8681,7 +9012,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11442 + - 7638 - uid: 11468 components: - type: Transform @@ -8766,7 +9097,6 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - 11561 - uid: 11506 components: - type: Transform @@ -8944,7 +9274,7 @@ entities: - type: DeviceNetwork deviceLists: - 11562 - - 11561 + - 10285 - 11623 - 148 - uid: 11557 @@ -9148,6 +9478,7 @@ entities: - type: DeviceNetwork deviceLists: - 10458 + - 15383 - uid: 16068 components: - type: Transform @@ -9355,12 +9686,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,40.5 parent: 2 - - uid: 7638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,37.5 - parent: 2 - uid: 7640 components: - type: Transform @@ -9517,6 +9842,12 @@ entities: - type: Transform pos: -3.5,26.5 parent: 2 + - uid: 13949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,38.5 + parent: 2 - uid: 14244 components: - type: Transform @@ -9575,6 +9906,15 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,6.5 parent: 2 +- proto: APCElectronics + entities: + - uid: 11258 + components: + - type: Transform + parent: 5958 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AppraisalTool entities: - uid: 6118 @@ -10108,6 +10448,11 @@ entities: parent: 2 - proto: Bed entities: + - uid: 401 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 - uid: 2108 components: - type: Transform @@ -10158,16 +10503,6 @@ entities: - type: Transform pos: -47.5,28.5 parent: 2 - - uid: 4762 - components: - - type: Transform - pos: -10.5,25.5 - parent: 2 - - uid: 5023 - components: - - type: Transform - pos: -1.5,46.5 - parent: 2 - uid: 5082 components: - type: Transform @@ -10233,6 +10568,11 @@ entities: - type: Transform pos: -47.5,74.5 parent: 2 + - uid: 15523 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 - proto: BedsheetCaptain entities: - uid: 7445 @@ -10260,7 +10600,7 @@ entities: - uid: 4761 components: - type: Transform - pos: -10.5,25.5 + pos: -8.5,25.5 parent: 2 - proto: BedsheetCosmos entities: @@ -10403,11 +10743,6 @@ entities: - type: Transform pos: -16.5,50.5 parent: 2 - - uid: 5147 - components: - - type: Transform - pos: -1.5,46.5 - parent: 2 - uid: 5148 components: - type: Transform @@ -10418,6 +10753,11 @@ entities: - type: Transform pos: -51.5,67.5 parent: 2 + - uid: 15524 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 - proto: BedsheetSyndie entities: - uid: 5149 @@ -10495,6 +10835,41 @@ entities: - type: Transform pos: -3.5,-5.5 parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -42.5,43.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: -42.5,44.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: -42.5,45.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 - proto: BlastDoorScience entities: - uid: 1862 @@ -10952,13 +11327,12 @@ entities: - uid: 4965 components: - type: Transform - pos: -12.564862,63.584015 + pos: -13.046014,63.586082 parent: 2 - uid: 5576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.54729,25.631472 + pos: -9.564337,25.815563 parent: 2 - uid: 6686 components: @@ -11033,7 +11407,7 @@ entities: - uid: 1435 components: - type: Transform - pos: -18.36792,63.56839 + pos: -18.030388,63.570457 parent: 2 - uid: 5420 components: @@ -13027,6 +13401,16 @@ entities: - type: Transform pos: -56.5,51.5 parent: 2 + - uid: 6841 + components: + - type: Transform + pos: -72.5,0.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 - uid: 6868 components: - type: Transform @@ -15747,11 +16131,6 @@ entities: - type: Transform pos: -16.5,46.5 parent: 2 - - uid: 8644 - components: - - type: Transform - pos: -25.5,37.5 - parent: 2 - uid: 8645 components: - type: Transform @@ -22862,6 +23241,41 @@ entities: - type: Transform pos: 12.5,67.5 parent: 2 + - uid: 16870 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 16871 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 16872 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 16873 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 16932 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 16933 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - uid: 16934 + components: + - type: Transform + pos: 21.5,36.5 + parent: 2 - proto: CableApcStack entities: - uid: 5976 @@ -23078,11 +23492,6 @@ entities: - type: Transform pos: -25.5,-14.5 parent: 2 - - uid: 242 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 2 - uid: 243 components: - type: Transform @@ -23228,11 +23637,6 @@ entities: - type: Transform pos: -25.5,-26.5 parent: 2 - - uid: 413 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 2 - uid: 436 components: - type: Transform @@ -23258,11 +23662,6 @@ entities: - type: Transform pos: -25.5,-24.5 parent: 2 - - uid: 465 - components: - - type: Transform - pos: -24.5,-20.5 - parent: 2 - uid: 466 components: - type: Transform @@ -23283,21 +23682,11 @@ entities: - type: Transform pos: -11.5,-4.5 parent: 2 - - uid: 543 - components: - - type: Transform - pos: -24.5,-18.5 - parent: 2 - uid: 544 components: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 545 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 2 - uid: 548 components: - type: Transform @@ -23358,21 +23747,11 @@ entities: - type: Transform pos: -25.5,-22.5 parent: 2 - - uid: 671 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 2 - uid: 676 components: - type: Transform pos: -24.5,-16.5 parent: 2 - - uid: 682 - components: - - type: Transform - pos: -23.5,-20.5 - parent: 2 - uid: 772 components: - type: Transform @@ -23523,11 +23902,6 @@ entities: - type: Transform pos: -35.5,-24.5 parent: 2 - - uid: 990 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 2 - uid: 991 components: - type: Transform @@ -28498,6 +28872,31 @@ entities: - type: Transform pos: -19.5,0.5 parent: 2 + - uid: 16685 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 16686 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 16776 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 16807 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 16862 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 - proto: CableHVStack entities: - uid: 5975 @@ -28519,8 +28918,10 @@ entities: - uid: 15356 components: - type: Transform - pos: -29.608511,-7.3505936 - parent: 2 + parent: 4723 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CableHVStack10 entities: - uid: 6578 @@ -31395,11 +31796,6 @@ entities: - type: Transform pos: -25.5,38.5 parent: 2 - - uid: 7871 - components: - - type: Transform - pos: -25.5,37.5 - parent: 2 - uid: 7873 components: - type: Transform @@ -31525,11 +31921,6 @@ entities: - type: Transform pos: -21.5,27.5 parent: 2 - - uid: 7903 - components: - - type: Transform - pos: -27.5,26.5 - parent: 2 - uid: 7904 components: - type: Transform @@ -32050,6 +32441,11 @@ entities: - type: Transform pos: -9.5,44.5 parent: 2 + - uid: 8644 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 - uid: 9069 components: - type: Transform @@ -32345,6 +32741,11 @@ entities: - type: Transform pos: 0.5,29.5 parent: 2 + - uid: 13034 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 - uid: 13753 components: - type: Transform @@ -32400,6 +32801,11 @@ entities: - type: Transform pos: 0.5,35.5 parent: 2 + - uid: 14056 + components: + - type: Transform + pos: -31.5,38.5 + parent: 2 - uid: 14186 components: - type: Transform @@ -32425,6 +32831,51 @@ entities: - type: Transform pos: -50.5,50.5 parent: 2 + - uid: 15351 + components: + - type: Transform + pos: -36.5,45.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: -37.5,45.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: -40.5,45.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: -39.5,45.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: -41.5,45.5 + parent: 2 + - uid: 15487 + components: + - type: Transform + pos: -42.5,45.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: -38.5,45.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: -42.5,44.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: -42.5,43.5 + parent: 2 - uid: 15574 components: - type: Transform @@ -32505,6 +32956,11 @@ entities: - type: Transform pos: -61.5,4.5 parent: 2 + - uid: 15970 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 - uid: 15987 components: - type: Transform @@ -32765,6 +33221,16 @@ entities: - type: Transform pos: -38.5,63.5 parent: 2 + - uid: 16867 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - uid: 16868 + components: + - type: Transform + pos: -31.5,36.5 + parent: 2 - proto: CableMVStack entities: - uid: 5974 @@ -33502,6 +33968,16 @@ entities: - type: Transform pos: 0.5,75.5 parent: 2 + - uid: 9021 + components: + - type: Transform + pos: -62.5,53.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: -62.5,54.5 + parent: 2 - uid: 14875 components: - type: Transform @@ -33577,6 +34053,161 @@ entities: - type: Transform pos: -67.5,56.5 parent: 2 + - uid: 15456 + components: + - type: Transform + pos: -62.5,55.5 + parent: 2 + - uid: 16909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,52.5 + parent: 2 + - uid: 16910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,50.5 + parent: 2 + - uid: 16911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,52.5 + parent: 2 + - uid: 16912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,51.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,50.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,51.5 + parent: 2 + - uid: 16915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,48.5 + parent: 2 + - uid: 16916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,47.5 + parent: 2 + - uid: 16917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,46.5 + parent: 2 + - uid: 16918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,55.5 + parent: 2 + - uid: 16919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,54.5 + parent: 2 + - uid: 16920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,55.5 + parent: 2 + - uid: 16921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,54.5 + parent: 2 + - uid: 16922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,53.5 + parent: 2 + - uid: 16923 + components: + - type: Transform + pos: -58.5,50.5 + parent: 2 + - uid: 16924 + components: + - type: Transform + pos: -58.5,51.5 + parent: 2 + - uid: 16925 + components: + - type: Transform + pos: -58.5,52.5 + parent: 2 + - uid: 16926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,53.5 + parent: 2 + - uid: 16941 + components: + - type: Transform + pos: -58.5,48.5 + parent: 2 + - uid: 16942 + components: + - type: Transform + pos: -58.5,47.5 + parent: 2 + - uid: 16943 + components: + - type: Transform + pos: -58.5,46.5 + parent: 2 + - uid: 16944 + components: + - type: Transform + pos: -57.5,48.5 + parent: 2 + - uid: 16945 + components: + - type: Transform + pos: -57.5,46.5 + parent: 2 + - uid: 16946 + components: + - type: Transform + pos: -56.5,48.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + pos: -56.5,47.5 + parent: 2 + - uid: 16948 + components: + - type: Transform + pos: -56.5,46.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + pos: -57.5,47.5 + parent: 2 - proto: CarpetOrange entities: - uid: 15062 @@ -33733,6 +34364,16 @@ entities: parent: 2 - proto: CarpetSBlue entities: + - uid: 389 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 - uid: 6194 components: - type: Transform @@ -33786,16 +34427,6 @@ entities: - type: Transform pos: -9.5,24.5 parent: 2 - - uid: 15059 - components: - - type: Transform - pos: -9.5,23.5 - parent: 2 - - uid: 15060 - components: - - type: Transform - pos: -10.5,23.5 - parent: 2 - proto: Catwalk entities: - uid: 63 @@ -36770,6 +37401,24 @@ entities: - type: Transform pos: -29.5,71.5 parent: 2 + - uid: 16869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,36.5 + parent: 2 + - uid: 16892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,53.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,57.5 + parent: 2 - proto: Cautery entities: - uid: 15530 @@ -37306,6 +37955,12 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-10.5 parent: 2 + - uid: 16930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 - proto: ChairFolding entities: - uid: 6385 @@ -37597,6 +38252,12 @@ entities: parent: 2 - proto: ChairWood entities: + - uid: 711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.540464,24.676523 + parent: 2 - uid: 1076 components: - type: Transform @@ -37619,11 +38280,6 @@ entities: rot: 3.141592653589793 rad pos: -65.447655,55.547363 parent: 2 - - uid: 3924 - components: - - type: Transform - pos: -59.84017,55.41412 - parent: 2 - uid: 3926 components: - type: Transform @@ -37674,30 +38330,30 @@ entities: - type: Transform pos: -66.416405,58.65674 parent: 2 - - uid: 5573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.469165,25.537722 - parent: 2 - uid: 5675 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.605324,61.141937 parent: 2 + - uid: 6220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.493355,55.870567 + parent: 2 + - uid: 6830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.430855,55.870567 + parent: 2 - uid: 6901 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.394043,52.243153 parent: 2 - - uid: 6932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.24642,54.585995 - parent: 2 - uid: 7151 components: - type: Transform @@ -37732,12 +38388,6 @@ entities: rot: 3.141592653589793 rad pos: -60.46517,53.66412 parent: 2 - - uid: 9595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.418297,53.742245 - parent: 2 - uid: 10359 components: - type: Transform @@ -37847,6 +38497,23 @@ entities: rot: 3.141592653589793 rad pos: -15.5249605,8.752403 parent: 2 + - uid: 16906 + components: + - type: Transform + pos: -60.57115,55.462524 + parent: 2 + - uid: 16907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.4149,53.743774 + parent: 2 + - uid: 16908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.336777,54.6344 + parent: 2 - proto: CheckerBoard entities: - uid: 7424 @@ -38002,8 +38669,7 @@ entities: - uid: 5579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.95354,23.537722 + pos: -10.259214,25.598398 parent: 2 - proto: CigPackRed entities: @@ -38019,6 +38685,13 @@ entities: - type: Transform pos: 9.5,38.5 parent: 2 +- proto: CleanerDispenser + entities: + - uid: 16879 + components: + - type: Transform + pos: -34.5,71.5 + parent: 2 - proto: ClosetBombFilled entities: - uid: 5174 @@ -38520,7 +39193,7 @@ entities: - uid: 12671 components: - type: Transform - pos: -27.565609,24.395536 + pos: -26.565462,24.560215 parent: 2 - proto: ClothingBeltMedicalFilled entities: @@ -38582,7 +39255,7 @@ entities: - uid: 15527 components: - type: Transform - pos: -24.94287,31.460716 + pos: -25.243147,31.500374 parent: 2 - proto: ClothingEyesGlassesMeson entities: @@ -38756,38 +39429,6 @@ entities: - type: Transform pos: -70.43467,19.37735 parent: 2 -- proto: ClothingHeadHatSantahat - entities: - - uid: 6843 - components: - - type: Transform - pos: -40.568184,46.637524 - parent: 2 - - uid: 6845 - components: - - type: Transform - pos: -40.58381,45.77815 - parent: 2 - - uid: 6846 - components: - - type: Transform - pos: -40.58381,45.77815 - parent: 2 - - uid: 6847 - components: - - type: Transform - pos: -40.536934,44.793774 - parent: 2 - - uid: 6848 - components: - - type: Transform - pos: -40.630684,43.71565 - parent: 2 - - uid: 6849 - components: - - type: Transform - pos: -40.599434,42.8094 - parent: 2 - proto: ClothingHeadHatSkub entities: - uid: 6930 @@ -39065,17 +39706,17 @@ entities: - uid: 4856 components: - type: Transform - pos: -22.750301,38.59426 + pos: -28.677435,39.61053 parent: 2 - uid: 4858 components: - type: Transform - pos: -22.258114,38.6177 + pos: -28.739935,39.469906 parent: 2 - uid: 4886 components: - type: Transform - pos: -22.469051,38.570824 + pos: -28.807816,39.532406 parent: 2 - proto: ClothingOuterHoodieChaplain entities: @@ -39098,33 +39739,6 @@ entities: - type: Transform pos: -15.480845,64.753845 parent: 2 -- proto: ClothingOuterSanta - entities: - - uid: 6839 - components: - - type: Transform - pos: -40.58381,42.71565 - parent: 2 - - uid: 6840 - components: - - type: Transform - pos: -40.58381,43.5594 - parent: 2 - - uid: 6841 - components: - - type: Transform - pos: -40.58381,44.65315 - parent: 2 - - uid: 6842 - components: - - type: Transform - pos: -40.58381,45.543774 - parent: 2 - - uid: 6844 - components: - - type: Transform - pos: -40.568184,46.575024 - parent: 2 - proto: ClothingOuterSkub entities: - uid: 6929 @@ -39295,6 +39909,14 @@ entities: rot: 1.5707963267948966 rad pos: -28.370186,89.64728 parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 16897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.415659,74.5697 + parent: 2 - proto: ComputerAlert entities: - uid: 6472 @@ -39541,6 +40163,12 @@ entities: - type: Transform pos: -17.5,75.5 parent: 2 + - uid: 16881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,57.5 + parent: 2 - proto: ComputerResearchAndDevelopment entities: - uid: 2558 @@ -39675,10 +40303,10 @@ entities: parent: 2 - proto: ComputerTechnologyDiskTerminal entities: - - uid: 10362 + - uid: 16927 components: - type: Transform - pos: 19.5,38.5 + pos: 19.5,39.5 parent: 2 - proto: ComputerTelevision entities: @@ -40295,6 +40923,35 @@ entities: - type: Transform pos: 10.5,52.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11258 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateEngineeringSolar entities: - uid: 3757 @@ -40307,6 +40964,42 @@ entities: - type: Transform pos: -68.5,76.5 parent: 2 + - uid: 4723 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15356 + - 4762 + - 5023 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateFilledSpawner entities: - uid: 5832 @@ -40521,10 +41214,10 @@ entities: parent: 2 - proto: CrateMindShieldImplants entities: - - uid: 4675 + - uid: 5572 components: - type: Transform - pos: -26.5,40.5 + pos: -27.5,42.5 parent: 2 - type: EntityStorage air: @@ -40550,8 +41243,8 @@ entities: showEnts: False occludes: True ents: - - 6440 - - 6441 + - 13977 + - 13980 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -40615,11 +41308,40 @@ entities: parent: 2 - proto: CrateTrackingImplants entities: - - uid: 4898 + - uid: 5594 components: - type: Transform - pos: -25.5,40.5 + pos: -23.5,42.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11266 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrayonBox entities: - uid: 4721 @@ -40809,7 +41531,7 @@ entities: pos: -9.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -234090.9 + secondsUntilStateChange: -246904.17 state: Opening - uid: 6747 components: @@ -40817,7 +41539,7 @@ entities: pos: -8.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -234091.61 + secondsUntilStateChange: -246904.88 state: Opening - uid: 6749 components: @@ -40825,7 +41547,7 @@ entities: pos: -6.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -234090.17 + secondsUntilStateChange: -246903.44 state: Opening - uid: 6750 components: @@ -40833,7 +41555,7 @@ entities: pos: -5.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -234089.55 + secondsUntilStateChange: -246902.81 state: Opening - proto: CyberPen entities: @@ -40889,23 +41611,6 @@ entities: rot: -1.5707963267948966 rad pos: -78.36314,12.746755 parent: 2 -- proto: DecoratedFirTree - entities: - - uid: 6828 - components: - - type: Transform - pos: -31.5,56.5 - parent: 2 - - uid: 6829 - components: - - type: Transform - pos: -12.5,56.5 - parent: 2 - - uid: 8353 - components: - - type: Transform - pos: -60.5,10.5 - parent: 2 - proto: DefaultStationBeacon entities: - uid: 5479 @@ -41433,7 +42138,7 @@ entities: - uid: 16790 components: - type: Transform - pos: -46.514275,46.57406 + pos: -46.57003,46.54843 parent: 2 - uid: 16791 components: @@ -41499,11 +42204,23 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 2 + - uid: 545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,63.5 + parent: 2 - uid: 579 components: - type: Transform pos: -40.5,71.5 parent: 2 + - uid: 990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 2 - uid: 1413 components: - type: Transform @@ -41801,11 +42518,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,12.5 parent: 2 - - uid: 10285 - components: - - type: Transform - pos: -14.5,20.5 - parent: 2 - uid: 10305 components: - type: Transform @@ -42011,6 +42723,12 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,20.5 + parent: 2 - uid: 2918 components: - type: Transform @@ -42103,6 +42821,18 @@ entities: parent: 2 - proto: DisposalPipe entities: + - uid: 671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,58.5 + parent: 2 + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,59.5 + parent: 2 - uid: 686 components: - type: Transform @@ -42202,6 +42932,12 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,54.5 parent: 2 + - uid: 2957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,62.5 + parent: 2 - uid: 2991 components: - type: Transform @@ -42332,6 +43068,12 @@ entities: rot: 3.141592653589793 rad pos: 15.5,33.5 parent: 2 + - uid: 5573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,60.5 + parent: 2 - uid: 5751 components: - type: Transform @@ -44631,12 +45373,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,63.5 parent: 2 - - uid: 10314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,63.5 - parent: 2 - uid: 10316 components: - type: Transform @@ -44658,8 +45394,8 @@ entities: - uid: 10319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,63.5 + rot: 3.141592653589793 rad + pos: -49.5,61.5 parent: 2 - uid: 10320 components: @@ -45119,6 +45855,23 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,54.5 parent: 2 + - uid: 14880 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,20.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,20.5 + parent: 2 - uid: 16024 components: - type: Transform @@ -45164,6 +45917,12 @@ entities: parent: 2 - proto: DisposalTrunk entities: + - uid: 543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,57.5 + parent: 2 - uid: 2703 components: - type: Transform @@ -45192,6 +45951,11 @@ entities: - type: Transform pos: 22.5,33.5 parent: 2 + - uid: 5147 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 - uid: 5596 components: - type: Transform @@ -45357,12 +46121,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,15.5 parent: 2 - - uid: 10309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,63.5 - parent: 2 - uid: 10345 components: - type: Transform @@ -45394,10 +46152,10 @@ entities: parent: 2 - proto: DisposalUnit entities: - - uid: 711 + - uid: 413 components: - type: Transform - pos: -51.5,63.5 + pos: -49.5,57.5 parent: 2 - uid: 713 components: @@ -45574,6 +46332,11 @@ entities: - type: Transform pos: -4.5,28.5 parent: 2 + - uid: 11262 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 - uid: 12112 components: - type: Transform @@ -45666,10 +46429,10 @@ entities: parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 2166 + - uid: 6107 components: - type: Transform - pos: -10.5,23.5 + pos: -9.5,25.5 parent: 2 - proto: DresserFilled entities: @@ -45688,6 +46451,7 @@ entities: - type: Transform pos: -47.5,73.5 parent: 2 + - type: ActiveUserInterface - uid: 14863 components: - type: Transform @@ -46178,6 +46942,12 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,15.5 parent: 2 + - uid: 13993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,39.5 + parent: 2 - proto: EmitterFlatpack entities: - uid: 959 @@ -46208,7 +46978,7 @@ entities: - uid: 11180 components: - type: Transform - pos: -1.2358546,-2.3674276 + pos: -1.2557645,-2.3590539 parent: 2 - uid: 16757 components: @@ -46364,18 +47134,8 @@ entities: - type: Transform pos: -11.5,13.5 parent: 2 - - uid: 10832 - components: - - type: Transform - pos: 19.5,35.5 - parent: 2 - proto: filingCabinetRandom entities: - - uid: 5826 - components: - - type: Transform - pos: 18.5,35.5 - parent: 2 - uid: 6336 components: - type: Transform @@ -46391,6 +47151,11 @@ entities: - type: Transform pos: -30.5,60.5 parent: 2 + - uid: 10832 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 - proto: FireAxeCabinetFilled entities: - uid: 1049 @@ -46670,7 +47435,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 11623 - uid: 1166 components: @@ -46730,6 +47495,7 @@ entities: deviceLists: - 6838 - 10458 + - 15383 - uid: 1421 components: - type: Transform @@ -46778,8 +47544,8 @@ entities: - type: DeviceNetwork deviceLists: - 11444 - - 11442 - 13611 + - 7638 - uid: 1587 components: - type: Transform @@ -46809,7 +47575,7 @@ entities: - type: DeviceNetwork deviceLists: - 11551 - - 11561 + - 10285 - uid: 1736 components: - type: Transform @@ -46928,6 +47694,7 @@ entities: deviceLists: - 10458 - 10465 + - 15383 - uid: 2014 components: - type: Transform @@ -47049,6 +47816,7 @@ entities: deviceLists: - 10458 - 158 + - 15383 - uid: 2654 components: - type: Transform @@ -47059,6 +47827,7 @@ entities: deviceLists: - 10458 - 13611 + - 15383 - uid: 2775 components: - type: Transform @@ -47154,7 +47923,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 11623 - uid: 3132 components: @@ -47234,6 +48003,7 @@ entities: - 6838 - 10458 - 10462 + - 15383 - uid: 3562 components: - type: Transform @@ -47253,7 +48023,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 13598 - 11636 - uid: 3709 @@ -47423,6 +48193,9 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10285 - uid: 4684 components: - type: Transform @@ -47442,6 +48215,7 @@ entities: deviceLists: - 10458 - 13611 + - 15383 - uid: 4822 components: - type: Transform @@ -47660,6 +48434,7 @@ entities: deviceLists: - 10458 - 13611 + - 15383 - uid: 6108 components: - type: Transform @@ -47670,6 +48445,7 @@ entities: deviceLists: - 10458 - 13611 + - 15383 - uid: 6173 components: - type: Transform @@ -47826,7 +48602,7 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - 11561 + - 10285 - uid: 6201 components: - type: Transform @@ -47836,7 +48612,7 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - 11561 + - 10285 - uid: 6202 components: - type: Transform @@ -47846,7 +48622,7 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - 11561 + - 10285 - uid: 6203 components: - type: Transform @@ -47896,7 +48672,7 @@ entities: - type: DeviceNetwork deviceLists: - 11562 - - 11561 + - 10285 - uid: 6208 components: - type: Transform @@ -47906,7 +48682,7 @@ entities: - type: DeviceNetwork deviceLists: - 11562 - - 11561 + - 10285 - uid: 6209 components: - type: Transform @@ -47916,7 +48692,7 @@ entities: - type: DeviceNetwork deviceLists: - 11562 - - 11561 + - 10285 - uid: 6210 components: - type: Transform @@ -48092,6 +48868,7 @@ entities: deviceLists: - 10458 - 15346 + - 15383 - uid: 6234 components: - type: Transform @@ -48102,6 +48879,7 @@ entities: deviceLists: - 10458 - 15346 + - 15383 - uid: 6237 components: - type: Transform @@ -48112,6 +48890,7 @@ entities: deviceLists: - 10458 - 15346 + - 15383 - uid: 6238 components: - type: Transform @@ -48122,6 +48901,7 @@ entities: deviceLists: - 10458 - 15346 + - 15383 - uid: 6239 components: - type: Transform @@ -48132,6 +48912,7 @@ entities: deviceLists: - 10458 - 15346 + - 15383 - uid: 6241 components: - type: Transform @@ -48142,6 +48923,7 @@ entities: deviceLists: - 10462 - 10458 + - 15383 - uid: 6244 components: - type: Transform @@ -48152,6 +48934,7 @@ entities: deviceLists: - 10462 - 10458 + - 15383 - uid: 6245 components: - type: Transform @@ -48162,6 +48945,7 @@ entities: deviceLists: - 10462 - 10458 + - 15383 - uid: 6246 components: - type: Transform @@ -48172,6 +48956,7 @@ entities: deviceLists: - 10462 - 10458 + - 15383 - uid: 6248 components: - type: Transform @@ -48182,6 +48967,7 @@ entities: deviceLists: - 10458 - 10466 + - 15383 - uid: 6249 components: - type: Transform @@ -48192,6 +48978,7 @@ entities: deviceLists: - 10458 - 10466 + - 15383 - uid: 6250 components: - type: Transform @@ -48202,6 +48989,7 @@ entities: deviceLists: - 10458 - 10466 + - 15383 - uid: 6252 components: - type: Transform @@ -48693,7 +49481,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 11623 - uid: 6978 components: @@ -48721,7 +49509,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 13598 - 11636 - uid: 7255 @@ -48732,7 +49520,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 13598 - 11636 - uid: 7305 @@ -49314,7 +50102,7 @@ entities: - uid: 6713 components: - type: Transform - pos: -21.261318,3.5464506 + pos: -21.436565,3.4491062 parent: 2 - type: HandheldLight toggleActionEntity: 6714 @@ -49362,6 +50150,13 @@ entities: - type: Transform pos: -2.1807637,39.543873 parent: 2 +- proto: Floodlight + entities: + - uid: 16953 + components: + - type: Transform + pos: 14.46328,60.620407 + parent: 2 - proto: FloodlightBroken entities: - uid: 16586 @@ -49400,40 +50195,37 @@ entities: parent: 2 - type: Fixtures fixtures: {} -- proto: FloraTreeChristmas01 +- proto: FloraTree entities: - - uid: 6220 + - uid: 4503 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.172295,56.391037 + pos: -31.493382,55.983173 parent: 2 - - uid: 15310 + - uid: 6395 + components: + - type: Transform + pos: -12.441932,56.076923 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: -70.03536,0.75004315 + parent: 2 +- proto: FloraTreeLarge + entities: + - uid: 14735 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.498674,70.553856 + pos: -22.532864,54.78604 parent: 2 -- proto: FloraTreeChristmas02 +- proto: FloraTreeStump entities: - uid: 6793 components: - type: Transform - pos: -22.4959,55.647743 - parent: 2 -- proto: FloraTreeConifer - entities: - - uid: 14321 - components: - - type: Transform - pos: -69.45763,0.6511259 - parent: 2 -- proto: FloraTreeSnow - entities: - - uid: 14322 - components: - - type: Transform - pos: -68.17972,-1.0051241 + pos: -68.28536,-0.85933185 parent: 2 - proto: FoamCutlass entities: @@ -49478,6 +50270,13 @@ entities: - type: Transform pos: -23.386885,72.63357 parent: 2 +- proto: FoodBoxNugget + entities: + - uid: 2109 + components: + - type: Transform + pos: -50.571457,73.15823 + parent: 2 - proto: FoodBoxPizzaFilled entities: - uid: 14837 @@ -49675,7 +50474,7 @@ entities: - uid: 5115 components: - type: Transform - pos: -60.043602,54.563835 + pos: -61.2274,54.712524 parent: 2 - uid: 5469 components: @@ -49707,7 +50506,7 @@ entities: - uid: 12519 components: - type: Transform - pos: -59.82148,54.475403 + pos: -60.993027,54.5719 parent: 2 - uid: 16780 components: @@ -49728,13 +50527,6 @@ entities: - type: Transform pos: 25.27469,22.639818 parent: 2 -- proto: FoodTacoShell - entities: - - uid: 4219 - components: - - type: Transform - pos: -50.59677,73.1865 - parent: 2 - proto: FrenchHornInstrument entities: - uid: 4725 @@ -50095,6 +50887,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6829 + components: + - type: Transform + pos: -18.5,30.5 + parent: 2 - uid: 7935 components: - type: Transform @@ -50103,11 +50900,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8021 - components: - - type: Transform - pos: -18.5,30.5 - parent: 2 - uid: 8235 components: - type: Transform @@ -50392,18 +51184,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11262 + - uid: 11269 components: - type: Transform - pos: 16.5,36.5 + rot: 1.5707963267948966 rad + pos: 10.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,36.5 + rot: -1.5707963267948966 rad + pos: 7.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -50431,6 +51224,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11289 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11334 components: - type: Transform @@ -50895,14 +51695,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12490 components: - type: Transform @@ -50964,6 +51756,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15192 components: - type: Transform @@ -50986,6 +51786,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 16887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 4282 @@ -51042,13 +51850,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11260 - components: - - type: Transform - pos: 11.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11937 components: - type: Transform @@ -51728,11 +52529,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4503 - components: - - type: Transform - pos: -17.5,30.5 - parent: 2 - uid: 4504 components: - type: Transform @@ -52020,6 +52816,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6828 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 - uid: 7044 components: - type: Transform @@ -56183,14 +56984,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11259 components: - type: Transform @@ -56219,42 +57012,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11266 - components: - - type: Transform - pos: 16.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,36.5 + pos: 11.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -56265,13 +57026,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11273 - components: - - type: Transform - pos: 10.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11274 components: - type: Transform @@ -56351,34 +57105,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,38.5 + pos: 13.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11292 components: - type: Transform - pos: 11.5,39.5 + rot: 1.5707963267948966 rad + pos: 12.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -56793,6 +57532,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11452 components: - type: Transform @@ -58491,13 +59238,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11906 - components: - - type: Transform - pos: -37.5,70.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11907 components: - type: Transform @@ -61320,34 +62060,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,37.5 + pos: 11.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 12474 components: - type: Transform - pos: 12.5,36.5 + rot: 1.5707963267948966 rad + pos: 9.5,36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -62024,6 +62757,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12749 components: - type: Transform @@ -62060,6 +62801,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13258 components: - type: Transform @@ -62402,6 +63151,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 16885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 85 @@ -63127,10 +63916,26 @@ entities: - type: AtmosPipeColor color: '#0055CCFF' - uid: 11271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11290 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,36.5 + pos: 11.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -63702,18 +64507,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12469 + - uid: 12470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,37.5 + rot: -1.5707963267948966 rad + pos: 11.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 12473 + color: '#0055CCFF' + - uid: 12471 components: - type: Transform - pos: 12.5,37.5 + rot: -1.5707963267948966 rad + pos: -37.5,70.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -63755,6 +64561,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12528 components: - type: Transform @@ -63962,6 +64776,18 @@ entities: - type: Transform pos: -26.5,8.5 parent: 2 + - uid: 16876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 16877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 - proto: GasThermoMachineFreezerEnabled entities: - uid: 6823 @@ -63974,6 +64800,20 @@ entities: - type: Transform pos: -17.5,33.5 parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 16878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - uid: 16880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 - proto: GasValve entities: - uid: 7048 @@ -64132,6 +64972,9 @@ entities: - type: Transform pos: -17.5,54.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15383 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10480 @@ -64249,6 +65092,7 @@ entities: - type: DeviceNetwork deviceLists: - 10458 + - 15383 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11327 @@ -64529,7 +65373,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11442 + - 7638 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11460 @@ -64785,7 +65629,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11567 @@ -65206,6 +66050,7 @@ entities: - type: DeviceNetwork deviceLists: - 10458 + - 15383 - type: AtmosPipeColor color: '#990000FF' - uid: 11867 @@ -65216,6 +66061,7 @@ entities: - type: DeviceNetwork deviceLists: - 10458 + - 15383 - type: AtmosPipeColor color: '#990000FF' - uid: 11868 @@ -65258,7 +66104,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - type: AtmosPipeColor color: '#990000FF' - uid: 11881 @@ -65561,7 +66407,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11442 + - 7638 - type: AtmosPipeColor color: '#990000FF' - uid: 12184 @@ -65893,7 +66739,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - type: AtmosPipeColor color: '#990000FF' - uid: 12480 @@ -66128,6 +66974,14 @@ entities: - 16071 - type: AtmosPipeColor color: '#990000FF' + - uid: 16899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: Gauze entities: - uid: 2384 @@ -67853,12 +68707,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,22.5 parent: 2 - - uid: 5562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,26.5 - parent: 2 - uid: 5676 components: - type: Transform @@ -68819,6 +69667,18 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-22.5 parent: 2 + - uid: 11906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,52.5 + parent: 2 + - uid: 12116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,58.5 + parent: 2 - uid: 12406 components: - type: Transform @@ -68848,6 +69708,12 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-21.5 parent: 2 + - uid: 12468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,56.5 + parent: 2 - uid: 12521 components: - type: Transform @@ -70938,6 +71804,12 @@ entities: rot: 3.141592653589793 rad pos: 8.5,85.5 parent: 2 + - uid: 16594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,54.5 + parent: 2 - uid: 16680 components: - type: Transform @@ -71369,60 +72241,33 @@ entities: parent: 2 - proto: GunSafeLaserCarbine entities: - - uid: 13034 + - uid: 13958 components: - type: Transform - pos: -26.5,38.5 + pos: -26.5,39.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6442 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: GunSafePistolMk58 entities: - - uid: 4506 + - uid: 14055 components: - type: Transform - pos: -23.5,38.5 + pos: -23.5,39.5 parent: 2 - proto: GunSafeRifleLecter entities: - - uid: 4505 + - uid: 16863 components: - type: Transform - pos: -25.5,38.5 + pos: -25.5,39.5 parent: 2 - proto: GunSafeShotgunKammerer entities: - - uid: 13031 + - uid: 13930 components: + - type: MetaData + name: Shotgun safe - type: Transform - pos: -24.5,38.5 + pos: -24.5,39.5 parent: 2 - type: EntityStorage air: @@ -71455,10 +72300,10 @@ entities: ent: null - proto: GunSafeSubMachineGunDrozd entities: - - uid: 4507 + - uid: 11260 components: - type: Transform - pos: -27.5,38.5 + pos: -27.5,39.5 parent: 2 - proto: Handcuffs entities: @@ -71543,23 +72388,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.7397442,11.575177 parent: 2 -- proto: Holopad - entities: - - uid: 16852 - components: - - type: Transform - pos: -61.5,22.5 - parent: 2 - - uid: 16853 - components: - - type: Transform - pos: -65.5,9.5 - parent: 2 - - uid: 16854 - components: - - type: Transform - pos: -65.5,9.5 - parent: 2 - proto: HolopadAiCore entities: - uid: 16805 @@ -71581,6 +72409,13 @@ entities: - type: Transform pos: 10.5,72.5 parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 15529 + components: + - type: Transform + pos: 13.5,76.5 + parent: 2 - proto: HolopadCargoFront entities: - uid: 16821 @@ -71597,7 +72432,14 @@ entities: parent: 2 - proto: HolopadCommandBridge entities: - - uid: 16816 + - uid: 15516 + components: + - type: Transform + pos: -22.5,69.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 9672 components: - type: Transform pos: -23.5,73.5 @@ -71695,10 +72537,10 @@ entities: parent: 2 - proto: HolopadEngineeringTelecoms entities: - - uid: 16849 + - uid: 13996 components: - type: Transform - pos: -32.5,12.5 + pos: -27.5,10.5 parent: 2 - proto: HolopadGeneralArrivals entities: @@ -71707,6 +72549,13 @@ entities: - type: Transform pos: -72.5,63.5 parent: 2 +- proto: HolopadGeneralCryosleep + entities: + - uid: 15540 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 - proto: HolopadGeneralEvac entities: - uid: 16830 @@ -71716,16 +72565,18 @@ entities: parent: 2 - proto: HolopadGeneralEVAStorage entities: - - uid: 16826 - components: - - type: Transform - pos: -31.5,49.5 - parent: 2 - uid: 16827 components: - type: Transform pos: -27.5,63.5 parent: 2 +- proto: HolopadGeneralLounge + entities: + - uid: 13995 + components: + - type: Transform + pos: -61.5,22.5 + parent: 2 - proto: HolopadGeneralTools entities: - uid: 16850 @@ -71749,10 +72600,10 @@ entities: parent: 2 - proto: HolopadMedicalMedbay entities: - - uid: 16837 + - uid: 15515 components: - type: Transform - pos: -28.5,30.5 + pos: -25.5,32.5 parent: 2 - proto: HolopadMedicalSurgery entities: @@ -71798,10 +72649,10 @@ entities: parent: 2 - proto: HolopadSecurityArmory entities: - - uid: 16807 + - uid: 13986 components: - type: Transform - pos: -26.5,41.5 + pos: -25.5,42.5 parent: 2 - proto: HolopadSecurityBrig entities: @@ -71810,6 +72661,13 @@ entities: - type: Transform pos: -19.5,45.5 parent: 2 +- proto: HolopadSecurityBrigMed + entities: + - uid: 382 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 - proto: HolopadSecurityCourtroom entities: - uid: 16825 @@ -71817,12 +72675,19 @@ entities: - type: Transform pos: -14.5,65.5 parent: 2 -- proto: HolopadSecurityFront +- proto: HolopadSecurityDetective entities: - - uid: 16846 + - uid: 16816 components: - type: Transform - pos: -30.5,52.5 + pos: -2.5,37.5 + parent: 2 +- proto: HolopadSecurityFront + entities: + - uid: 15518 + components: + - type: Transform + pos: -28.5,46.5 parent: 2 - proto: HolopadSecurityInterrogation entities: @@ -71868,11 +72733,23 @@ entities: parent: 2 - proto: HolopadServiceChapel entities: - - uid: 16824 + - uid: 1832 components: - type: Transform pos: -56.5,13.5 parent: 2 + - uid: 2166 + components: + - type: Transform + pos: -65.5,9.5 + parent: 2 +- proto: HolopadServiceJanitor + entities: + - uid: 15758 + components: + - type: Transform + pos: -34.5,68.5 + parent: 2 - proto: HolopadServiceKitchen entities: - uid: 16834 @@ -72080,6 +72957,14 @@ entities: - type: Transform pos: -54.5,41.5 parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 16896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.728159,74.49158 + parent: 2 - proto: InflatableWall entities: - uid: 14378 @@ -72104,6 +72989,46 @@ entities: - type: Transform pos: -8.43362,74.25302 parent: 2 +- proto: IntercomEngineering + entities: + - uid: 14276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,18.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 16903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,22.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 14740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,37.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 13988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,51.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 16905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,59.5 + parent: 2 - proto: JanitorialTrolley entities: - uid: 6627 @@ -72166,13 +73091,35 @@ entities: - uid: 4429 components: - type: Transform - pos: -28.73388,38.59426 + pos: -28.271185,39.501156 parent: 2 + - type: GasTank + toggleActionEntity: 13953 + - type: Jetpack + toggleActionEntity: 13952 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 13952 + - 13953 - uid: 4857 components: - type: Transform - pos: -28.288567,38.59426 + pos: -28.271185,39.688656 parent: 2 + - type: GasTank + toggleActionEntity: 13956 + - type: Jetpack + toggleActionEntity: 13955 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 13955 + - 13956 - proto: Jukebox entities: - uid: 15425 @@ -72297,15 +73244,24 @@ entities: - uid: 5578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.45354,23.881472 - parent: 2 - - uid: 6107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.389595,12.915945 + pos: -10.649839,25.551523 parent: 2 + - type: HandheldLight + toggleActionEntity: 2206 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 2206 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 6530 components: - type: Transform @@ -72337,6 +73293,11 @@ entities: - type: Transform pos: -35.585,62.874256 parent: 2 + - uid: 15928 + components: + - type: Transform + pos: -65.50867,12.664488 + parent: 2 - uid: 16681 components: - type: Transform @@ -72426,10 +73387,40 @@ entities: - Pressed: Toggle 6171: - Pressed: Toggle +- proto: LockableButtonBar + entities: + - uid: 16964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,48.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16956: + - Pressed: Toggle + 16955: + - Pressed: Toggle + 16957: + - Pressed: Toggle + 16958: + - Pressed: Toggle + 16959: + - Pressed: Toggle + 16960: + - Pressed: Toggle + 16961: + - Pressed: Toggle + 16962: + - Pressed: Toggle + 16963: + - Pressed: Toggle - proto: LockableButtonBrig entities: - uid: 15056 components: + - type: MetaData + name: Cell Shutters - type: Transform rot: -1.5707963267948966 rad pos: -14.5,46.5 @@ -72532,6 +73523,20 @@ entities: - Pressed: Toggle 14274: - Pressed: Toggle +- proto: LockableButtonMedical + entities: + - uid: 15502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13976: + - Pressed: Open + 13975: + - Pressed: Open - proto: LockableButtonResearch entities: - uid: 4540 @@ -72561,6 +73566,56 @@ entities: - Pressed: Toggle 1862: - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 14322 + components: + - type: MetaData + name: Locker room blast doors + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7442: + - Pressed: Toggle + 8021: + - Pressed: Toggle + 8353: + - Pressed: Toggle + - uid: 15310 + components: + - type: MetaData + name: Locker room blast doors + - type: Transform + pos: -38.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7442: + - Pressed: Toggle + 8021: + - Pressed: Toggle + 8353: + - Pressed: Toggle + - uid: 15350 + components: + - type: MetaData + name: Perma Blast doors + - type: Transform + pos: -8.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8356: + - Pressed: Toggle + 8357: + - Pressed: Toggle + 10340: + - Pressed: Toggle + 14321: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 6057 @@ -72855,6 +73910,35 @@ entities: - type: Transform pos: -1.5,76.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2111 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerResearchDirectorFilled entities: - uid: 5867 @@ -73534,7 +74618,7 @@ entities: - uid: 6005 components: - type: Transform - pos: 7.4917555,61.666073 + pos: 7.6876793,61.672943 parent: 2 - proto: MedkitBruteFilled entities: @@ -73580,7 +74664,7 @@ entities: - uid: 5577 components: - type: Transform - pos: -9.500415,23.553347 + pos: -10.634214,25.770273 parent: 2 - proto: MedkitFilled entities: @@ -73695,17 +74779,17 @@ entities: parent: 2 - proto: MindShieldImplanter entities: - - uid: 6440 + - uid: 13977 components: - type: Transform - parent: 4675 + parent: 5572 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 6441 + - uid: 13980 components: - type: Transform - parent: 4675 + parent: 5572 - type: Physics canCollide: False - type: InsideEntityStorage @@ -73963,11 +75047,12 @@ entities: rot: 3.141592653589793 rad pos: -28.651436,88.49884 parent: 2 -- proto: NuclearBomb +- proto: NuclearBombUnanchored entities: - - uid: 6151 + - uid: 13957 components: - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,74.5 parent: 2 - proto: NutimovCircuitBoard @@ -73987,16 +75072,16 @@ entities: parent: 2 - proto: OperatingTable entities: + - uid: 2956 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 - uid: 5686 components: - type: Transform pos: -12.5,25.5 parent: 2 - - uid: 5687 - components: - - type: Transform - pos: -12.5,23.5 - parent: 2 - uid: 8355 components: - type: Transform @@ -74163,18 +75248,48 @@ entities: rot: 3.141592653589793 rad pos: -10.5,16.5 parent: 2 + - uid: 11268 + components: + - type: Transform + pos: -1.5,64.5 + parent: 2 - uid: 13822 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,61.5 parent: 2 + - uid: 13989 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 - uid: 16632 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,3.5 parent: 2 + - uid: 16928 + components: + - type: Transform + pos: -12.5,63.5 + parent: 2 + - uid: 16931 + components: + - type: Transform + pos: -42.5,66.5 + parent: 2 + - uid: 16936 + components: + - type: Transform + pos: -18.5,63.5 + parent: 2 - proto: PaperCNCSheet entities: - uid: 6026 @@ -74298,7 +75413,7 @@ entities: - uid: 6926 components: - type: Transform - pos: -59.46517,54.44537 + pos: -61.6649,54.618774 parent: 2 - uid: 7429 components: @@ -74651,21 +75766,16 @@ entities: parent: 2 - proto: PortableFlasher entities: - - uid: 4859 - components: - - type: Transform - pos: -27.5,40.5 - parent: 2 - - uid: 4860 - components: - - type: Transform - pos: -24.5,40.5 - parent: 2 - uid: 5416 components: - type: Transform pos: -28.5,47.5 parent: 2 + - uid: 13951 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 - proto: PortableGeneratorJrPacman entities: - uid: 5978 @@ -74713,11 +75823,6 @@ entities: - type: Transform pos: -81.5,10.5 parent: 2 - - uid: 15120 - components: - - type: Transform - pos: -47.5,7.5 - parent: 2 - uid: 16606 components: - type: Transform @@ -74877,11 +75982,11 @@ entities: parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 14740 + - uid: 13794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,37.5 + rot: 3.141592653589793 rad + pos: -24.5,38.5 parent: 2 - proto: PosterLegitAnatomyPoster entities: @@ -74976,15 +76081,10 @@ entities: parent: 2 - proto: PosterLegitSecWatch entities: - - uid: 5150 + - uid: 242 components: - type: Transform - pos: -30.5,51.5 - parent: 2 - - uid: 14735 - components: - - type: Transform - pos: -0.5,47.5 + pos: -0.5,48.5 parent: 2 - proto: PottedPlantRandom entities: @@ -74998,6 +76098,11 @@ entities: - type: Transform pos: -71.5,39.5 parent: 2 + - uid: 5574 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 - uid: 7256 components: - type: Transform @@ -75013,11 +76118,6 @@ entities: - type: Transform pos: -57.5,41.5 parent: 2 - - uid: 9021 - components: - - type: Transform - pos: 19.5,39.5 - parent: 2 - uid: 9395 components: - type: Transform @@ -75028,6 +76128,11 @@ entities: - type: Transform pos: -6.5,60.5 parent: 2 + - uid: 11267 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 - uid: 12405 components: - type: Transform @@ -75118,11 +76223,6 @@ entities: - type: Transform pos: -41.5,19.5 parent: 2 - - uid: 14880 - components: - - type: Transform - pos: -22.5,19.5 - parent: 2 - uid: 14881 components: - type: Transform @@ -75320,6 +76420,18 @@ entities: - type: Transform pos: 20.5,28.5 parent: 2 + - uid: 16882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,31.5 + parent: 2 + - uid: 16884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,28.5 + parent: 2 - proto: PowerDrill entities: - uid: 5874 @@ -75402,6 +76514,12 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 + - uid: 2958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,46.5 + parent: 2 - uid: 3588 components: - type: Transform @@ -75465,6 +76583,12 @@ entities: - type: Transform pos: -31.5,12.5 parent: 2 + - uid: 6843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,1.5 + parent: 2 - uid: 6888 components: - type: Transform @@ -75754,12 +76878,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,38.5 parent: 2 - - uid: 13046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 2 - uid: 13047 components: - type: Transform @@ -76082,12 +77200,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,44.5 parent: 2 - - uid: 13142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,38.5 - parent: 2 - uid: 13143 components: - type: Transform @@ -76513,6 +77625,12 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 2 + - uid: 14053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,39.5 + parent: 2 - uid: 14426 components: - type: Transform @@ -76719,6 +77837,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,49.5 parent: 2 + - uid: 16954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,90.5 + parent: 2 - proto: PoweredlightEmpty entities: - uid: 8250 @@ -76926,6 +78050,12 @@ entities: - type: Transform pos: -64.5,19.5 parent: 2 + - uid: 9675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,44.5 + parent: 2 - uid: 9699 components: - type: Transform @@ -77122,12 +78252,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,38.5 parent: 2 - - uid: 13155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,44.5 - parent: 2 - uid: 13159 components: - type: Transform @@ -77482,6 +78606,11 @@ entities: - type: Transform pos: 13.5,19.5 parent: 2 + - uid: 15120 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 - uid: 15223 components: - type: Transform @@ -77550,173 +78679,24 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,47.5 parent: 2 + - uid: 16874 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 16875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 - proto: PresentRandom entities: - - uid: 5594 - components: - - type: Transform - pos: -66.74379,12.63207 - parent: 2 - - uid: 6394 - components: - - type: Transform - pos: -21.630596,55.345287 - parent: 2 - - uid: 6395 - components: - - type: Transform - pos: -21.489971,56.345287 - parent: 2 - - uid: 6827 - components: - - type: Transform - pos: -22.864971,54.892162 - parent: 2 - - uid: 6830 - components: - - type: Transform - pos: -22.005596,54.876537 - parent: 2 - - uid: 6831 - components: - - type: Transform - pos: -23.427471,55.501537 - parent: 2 - - uid: 6832 - components: - - type: Transform - pos: -23.411846,56.345287 - parent: 2 - - uid: 7442 - components: - - type: Transform - pos: -39.450897,33.51881 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: -60.17829,9.635829 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: -60.943916,9.635829 - parent: 2 - - uid: 10340 - components: - - type: Transform - pos: -9.50252,10.634818 - parent: 2 - - uid: 15350 - components: - - type: Transform - pos: -57.292038,55.797287 - parent: 2 - - uid: 15351 - components: - - type: Transform - pos: -56.542038,56.391037 - parent: 2 - - uid: 15384 - components: - - type: Transform - pos: 3.5937185,77.014595 - parent: 2 - - uid: 15452 - components: - - type: Transform - pos: -1.5520172,72.67265 - parent: 2 - - uid: 15481 - components: - - type: Transform - pos: -57.792038,56.391037 - parent: 2 - - uid: 15483 - components: - - type: Transform - pos: -14.419653,32.468876 - parent: 2 - - uid: 15487 - components: - - type: Transform - pos: -60.498016,25.594759 - parent: 2 - - uid: 15496 - components: - - type: Transform - pos: -8.50803,4.330428 - parent: 2 - - uid: 15502 - components: - - type: Transform - pos: 7.4579153,35.724957 - parent: 2 - - uid: 15503 - components: - - type: Transform - pos: 14.83531,38.536007 - parent: 2 - - uid: 15514 - components: - - type: Transform - pos: -35.564705,45.56895 - parent: 2 - - uid: 15515 - components: - - type: Transform - pos: -35.564705,44.740826 - parent: 2 - - uid: 15516 - components: - - type: Transform - pos: -35.502205,43.9127 - parent: 2 - - uid: 15517 - components: - - type: Transform - pos: -35.502205,43.0377 - parent: 2 - - uid: 15518 - components: - - type: Transform - pos: -35.502205,42.615826 - parent: 2 - - uid: 15522 - components: - - type: Transform - pos: -20.72513,72.59908 - parent: 2 - - uid: 15523 - components: - - type: Transform - pos: -15.435194,65.41911 - parent: 2 - - uid: 15524 - components: - - type: Transform - pos: -9.553135,64.59099 - parent: 2 - uid: 15526 components: - type: Transform pos: -58.441887,33.360012 parent: 2 - - uid: 15528 - components: - - type: Transform - pos: -35.29947,23.620623 - parent: 2 - - uid: 15529 - components: - - type: Transform - pos: -39.315094,23.698748 - parent: 2 - - uid: 15540 - components: - - type: Transform - pos: -66.41477,55.61628 - parent: 2 - proto: Protolathe entities: - uid: 15806 @@ -77752,11 +78732,6 @@ entities: - type: Transform pos: -12.5,3.5 parent: 2 - - uid: 2206 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - uid: 2453 components: - type: Transform @@ -77787,22 +78762,12 @@ entities: rot: 3.141592653589793 rad pos: -68.5,79.5 parent: 2 - - uid: 4446 - components: - - type: Transform - pos: -28.5,38.5 - parent: 2 - uid: 4668 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,27.5 parent: 2 - - uid: 4836 - components: - - type: Transform - pos: -22.5,38.5 - parent: 2 - uid: 4841 components: - type: Transform @@ -78022,16 +78987,16 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,1.5 parent: 2 - - uid: 13794 - components: - - type: Transform - pos: -24.5,42.5 - parent: 2 - uid: 14024 components: - type: Transform pos: 12.5,-0.5 parent: 2 + - uid: 14057 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 - uid: 14169 components: - type: Transform @@ -78118,6 +79083,11 @@ entities: - type: Transform pos: -26.5,62.5 parent: 2 + - uid: 15450 + components: + - type: Transform + pos: -28.5,39.5 + parent: 2 - uid: 15587 components: - type: Transform @@ -78154,6 +79124,11 @@ entities: - type: Transform pos: 19.5,-2.5 parent: 2 + - uid: 16937 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 - proto: RadiationCollectorFlatpack entities: - uid: 4514 @@ -78250,14 +79225,12 @@ entities: - uid: 3493 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.296396,9.029954 + pos: -21.34766,9.038694 parent: 2 - uid: 12771 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.624521,8.670579 + pos: -21.613285,8.679319 parent: 2 - proto: RagItem entities: @@ -78743,6 +79716,11 @@ entities: parent: 2 - proto: RandomDrinkGlass entities: + - uid: 6832 + components: + - type: Transform + pos: -57.5,56.5 + parent: 2 - uid: 6928 components: - type: Transform @@ -79195,6 +80173,11 @@ entities: - type: Transform pos: -9.5,66.5 parent: 2 + - uid: 16950 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 - proto: RandomSpawner entities: - uid: 3912 @@ -79547,11 +80530,6 @@ entities: - type: Transform pos: -68.5,55.5 parent: 2 - - uid: 15758 - components: - - type: Transform - pos: -66.5,60.5 - parent: 2 - uid: 15759 components: - type: Transform @@ -79983,11 +80961,6 @@ entities: - type: Transform pos: -4.5,32.5 parent: 2 - - uid: 15665 - components: - - type: Transform - pos: -27.5,39.5 - parent: 2 - uid: 15666 components: - type: Transform @@ -80108,6 +81081,11 @@ entities: - type: Transform pos: -61.5,21.5 parent: 2 + - uid: 16866 + components: + - type: Transform + pos: -27.5,40.5 + parent: 2 - proto: RandomVending entities: - uid: 2772 @@ -80135,6 +81113,11 @@ entities: - type: Transform pos: -58.5,25.5 parent: 2 + - uid: 9671 + components: + - type: Transform + pos: -2.5,57.5 + parent: 2 - uid: 9683 components: - type: Transform @@ -80160,11 +81143,6 @@ entities: - type: Transform pos: 7.5,50.5 parent: 2 - - uid: 15243 - components: - - type: Transform - pos: -2.5,55.5 - parent: 2 - uid: 15747 components: - type: Transform @@ -80197,20 +81175,10 @@ entities: - type: Transform pos: -14.5,72.5 parent: 2 - - uid: 9669 - components: - - type: Transform - pos: -54.5,61.5 - parent: 2 - uid: 9673 components: - type: Transform - pos: 0.5,44.5 - parent: 2 - - uid: 9676 - components: - - type: Transform - pos: -23.5,19.5 + pos: -55.5,52.5 parent: 2 - uid: 9680 components: @@ -80222,10 +81190,15 @@ entities: - type: Transform pos: -68.5,40.5 parent: 2 - - uid: 14062 + - uid: 11561 components: - type: Transform - pos: -43.5,28.5 + pos: -0.5,45.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + pos: -9.5,22.5 parent: 2 - proto: RandomVendingSnacks entities: @@ -80259,31 +81232,26 @@ entities: - type: Transform pos: -54.5,60.5 parent: 2 - - uid: 9671 - components: - - type: Transform - pos: -43.5,27.5 - parent: 2 - - uid: 9675 - components: - - type: Transform - pos: -24.5,19.5 - parent: 2 - uid: 9681 components: - type: Transform pos: -73.5,61.5 parent: 2 - - uid: 12118 + - uid: 15059 components: - type: Transform - pos: 0.5,46.5 + pos: -10.5,22.5 parent: 2 - uid: 15282 components: - type: Transform pos: -2.5,6.5 parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 - proto: RCD entities: - uid: 6329 @@ -82085,6 +83053,12 @@ entities: - type: Transform pos: -6.5,26.5 parent: 2 + - uid: 12469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,58.5 + parent: 2 - uid: 12625 components: - type: Transform @@ -82741,6 +83715,24 @@ entities: - type: Transform pos: -30.5,0.5 parent: 2 + - uid: 16889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,56.5 + parent: 2 + - uid: 16890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,54.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,52.5 + parent: 2 - proto: ResearchAndDevelopmentServer entities: - uid: 1410 @@ -82862,6 +83854,15 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,57.5 parent: 2 +- proto: SalvageMagnetMachineCircuitboard + entities: + - uid: 2111 + components: + - type: Transform + parent: 6063 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Scalpel entities: - uid: 5693 @@ -82904,10 +83905,10 @@ entities: parent: 2 - proto: SecurityTechFab entities: - - uid: 4840 + - uid: 404 components: - type: Transform - pos: -22.5,42.5 + pos: -24.5,42.5 parent: 2 - proto: SeedExtractor entities: @@ -83003,7 +84004,7 @@ entities: - uid: 4845 components: - type: Transform - pos: -24.369856,42.532604 + pos: -22.49318,42.578167 parent: 2 - uid: 5815 components: @@ -83030,6 +84031,15 @@ entities: - type: Transform pos: -35.630722,16.88498 parent: 2 +- proto: SheetGlass10 + entities: + - uid: 5023 + components: + - type: Transform + parent: 4723 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SheetPlasma entities: - uid: 200 @@ -83071,7 +84081,7 @@ entities: - uid: 4846 components: - type: Transform - pos: -24.338606,42.595104 + pos: -22.61818,42.656292 parent: 2 - uid: 5657 components: @@ -83123,7 +84133,7 @@ entities: - uid: 4844 components: - type: Transform - pos: -24.651106,42.57948 + pos: -22.49318,42.703167 parent: 2 - uid: 5812 components: @@ -83155,6 +84165,35 @@ entities: - type: Transform pos: 1.4167118,6.61458 parent: 2 + - uid: 16935 + components: + - type: Transform + pos: 13.4516945,-7.4342813 + parent: 2 + - uid: 16938 + components: + - type: Transform + pos: -12.597899,2.5793796 + parent: 2 + - uid: 16939 + components: + - type: Transform + pos: -12.301024,2.4231296 + parent: 2 + - uid: 16965 + components: + - type: Transform + pos: 7.82189,55.61495 + parent: 2 +- proto: SheetSteel10 + entities: + - uid: 4762 + components: + - type: Transform + parent: 4723 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SheetUranium entities: - uid: 201 @@ -83302,6 +84341,60 @@ entities: rot: 3.141592653589793 rad pos: -15.5,51.5 parent: 2 + - uid: 16955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,51.5 + parent: 2 + - uid: 16956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,51.5 + parent: 2 + - uid: 16957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,51.5 + parent: 2 + - uid: 16958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,50.5 + parent: 2 + - uid: 16959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,49.5 + parent: 2 + - uid: 16960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,48.5 + parent: 2 + - uid: 16961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,47.5 + parent: 2 + - uid: 16962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,46.5 + parent: 2 + - uid: 16963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,45.5 + parent: 2 - proto: ShuttersWindowOpen entities: - uid: 3872 @@ -84135,11 +85228,11 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,18.5 parent: 2 - - uid: 1249 + - uid: 16904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 + rot: 3.141592653589793 rad + pos: -9.5,18.5 parent: 2 - proto: SignEscapePods entities: @@ -84454,11 +85547,11 @@ entities: parent: 2 - proto: SignRND entities: - - uid: 12517 + - uid: 16902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,37.5 + rot: 3.141592653589793 rad + pos: 6.5,35.5 parent: 2 - proto: SignRobo entities: @@ -84862,16 +85955,6 @@ entities: - type: Transform pos: -34.5,-18.5 parent: 2 - - uid: 40 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 2 - - uid: 41 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 2 - uid: 43 components: - type: Transform @@ -84967,11 +86050,6 @@ entities: - type: Transform pos: -26.5,-16.5 parent: 2 - - uid: 269 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 2 - uid: 270 components: - type: Transform @@ -85027,11 +86105,6 @@ entities: - type: Transform pos: -32.5,-14.5 parent: 2 - - uid: 382 - components: - - type: Transform - pos: -24.5,-20.5 - parent: 2 - uid: 383 components: - type: Transform @@ -85047,31 +86120,11 @@ entities: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 389 - components: - - type: Transform - pos: -24.5,-18.5 - parent: 2 - - uid: 396 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 2 - - uid: 401 - components: - - type: Transform - pos: -23.5,-20.5 - parent: 2 - uid: 402 components: - type: Transform pos: -25.5,-16.5 parent: 2 - - uid: 404 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 2 - uid: 406 components: - type: Transform @@ -86581,6 +87634,45 @@ entities: - type: Transform pos: 19.5,47.5 parent: 2 +- proto: SpawnMobBee + entities: + - uid: 6845 + components: + - type: Transform + pos: -68.5,1.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: -71.5,-1.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 6831 + components: + - type: Transform + pos: -30.5,55.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: -71.5,2.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: -21.5,55.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: -13.5,56.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: -69.5,-0.5 + parent: 2 - proto: SpawnMobCatException entities: - uid: 5590 @@ -86646,6 +87738,13 @@ entities: rot: 3.141592653589793 rad pos: -10.5,68.5 parent: 2 +- proto: SpawnMobFrog + entities: + - uid: 6844 + components: + - type: Transform + pos: -68.5,2.5 + parent: 2 - proto: SpawnMobGoat entities: - uid: 4552 @@ -86706,13 +87805,6 @@ entities: - type: Transform pos: -26.5,5.5 parent: 2 -- proto: SpawnMobPenguin - entities: - - uid: 15928 - components: - - type: Transform - pos: -69.5,-0.5 - parent: 2 - proto: SpawnMobPossumMorty entities: - uid: 4367 @@ -87327,6 +88419,14 @@ entities: - type: Transform pos: -24.5,34.5 parent: 2 +- proto: StationAiUploadCircuitboard + entities: + - uid: 16898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.150034,74.5072 + parent: 2 - proto: StationAiUploadComputer entities: - uid: 5295 @@ -87638,14 +88738,6 @@ entities: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 1978 - components: - - type: Transform - anchored: False - pos: -13.5,5.5 - parent: 2 - - type: Physics - bodyType: Dynamic - uid: 1979 components: - type: Transform @@ -87823,10 +88915,10 @@ entities: parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 5089 + - uid: 9676 components: - type: Transform - pos: -1.5,44.5 + pos: -3.5,44.5 parent: 2 - uid: 10743 components: @@ -87866,11 +88958,6 @@ entities: parent: 2 - proto: SuitStorageSec entities: - - uid: 4510 - components: - - type: Transform - pos: -29.5,38.5 - parent: 2 - uid: 4515 components: - type: Transform @@ -87891,8 +88978,23 @@ entities: - type: Transform pos: -29.5,42.5 parent: 2 + - uid: 15581 + components: + - type: Transform + pos: -28.5,42.5 + parent: 2 - proto: SurveillanceCameraCommand entities: + - uid: 5575 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge 2 - uid: 5888 components: - type: Transform @@ -88066,6 +89168,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Telecomms Server room + - uid: 9669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment North - uid: 10366 components: - type: Transform @@ -88076,6 +89189,39 @@ entities: - SurveillanceCameraEngineering nameSet: True id: engi lockers + - uid: 12118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment East + - uid: 13046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment West + - uid: 13155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG - uid: 13763 components: - type: Transform @@ -88193,6 +89339,16 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos distro north + - uid: 13963 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME - uid: 15494 components: - type: Transform @@ -88978,6 +90134,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo Front + - uid: 14062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,72.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: QM office - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 4744 @@ -89820,6 +90987,17 @@ entities: - type: Transform pos: 7.5,78.5 parent: 2 + - uid: 16883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,28.5 + parent: 2 + - uid: 16929 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 - proto: TableCarpet entities: - uid: 2359 @@ -90063,26 +91241,6 @@ entities: - type: Transform pos: -54.5,47.5 parent: 2 - - uid: 2109 - components: - - type: Transform - pos: -61.5,51.5 - parent: 2 - - uid: 2111 - components: - - type: Transform - pos: -60.5,50.5 - parent: 2 - - uid: 2112 - components: - - type: Transform - pos: -60.5,51.5 - parent: 2 - - uid: 2114 - components: - - type: Transform - pos: -60.5,49.5 - parent: 2 - uid: 2118 components: - type: Transform @@ -90098,26 +91256,6 @@ entities: - type: Transform pos: -46.5,47.5 parent: 2 - - uid: 2179 - components: - - type: Transform - pos: -60.5,45.5 - parent: 2 - - uid: 2180 - components: - - type: Transform - pos: -60.5,47.5 - parent: 2 - - uid: 2181 - components: - - type: Transform - pos: -60.5,46.5 - parent: 2 - - uid: 2183 - components: - - type: Transform - pos: -60.5,48.5 - parent: 2 - uid: 2188 components: - type: Transform @@ -90236,6 +91374,12 @@ entities: - type: Transform pos: -27.5,43.5 parent: 2 + - uid: 4898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,74.5 + parent: 2 - uid: 4926 components: - type: Transform @@ -90458,6 +91602,11 @@ entities: - type: Transform pos: -21.5,3.5 parent: 2 + - uid: 41 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 - uid: 214 components: - type: Transform @@ -90504,6 +91653,42 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,39.5 parent: 2 + - uid: 2112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,51.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,50.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,51.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,49.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,46.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,48.5 + parent: 2 - uid: 2187 components: - type: Transform @@ -90541,6 +91726,12 @@ entities: - type: Transform pos: -57.5,52.5 parent: 2 + - uid: 4219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,45.5 + parent: 2 - uid: 4387 components: - type: Transform @@ -90675,23 +91866,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,24.5 parent: 2 - - uid: 5572 - components: - - type: Transform - pos: -8.5,25.5 - parent: 2 - - uid: 5574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,23.5 - parent: 2 - - uid: 5575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 2 - uid: 5582 components: - type: Transform @@ -90753,6 +91927,12 @@ entities: - type: Transform pos: -26.5,3.5 parent: 2 + - uid: 6394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,56.5 + parent: 2 - uid: 6552 components: - type: Transform @@ -90788,10 +91968,11 @@ entities: - type: Transform pos: -23.5,72.5 parent: 2 - - uid: 6925 + - uid: 6839 components: - type: Transform - pos: -59.5,54.5 + rot: 3.141592653589793 rad + pos: -57.5,56.5 parent: 2 - uid: 7092 components: @@ -90882,6 +92063,11 @@ entities: - type: Transform pos: -34.5,62.5 parent: 2 + - uid: 9595 + components: + - type: Transform + pos: -61.5,54.5 + parent: 2 - uid: 10159 components: - type: Transform @@ -91109,6 +92295,12 @@ entities: - type: Transform pos: -51.5,60.5 parent: 2 + - uid: 16952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,47.5 + parent: 2 - proto: TargetDarts entities: - uid: 2399 @@ -91600,10 +92792,12 @@ entities: - type: Transform pos: -22.08365,23.664106 parent: 2 - - uid: 12670 +- proto: ToyFigurinePassenger + entities: + - uid: 16951 components: - type: Transform - pos: -27.534359,25.161161 + pos: -55.461906,30.667084 parent: 2 - proto: ToyFigurineQuartermaster entities: @@ -91689,6 +92883,15 @@ entities: - type: Transform pos: -65.95986,56.574608 parent: 2 +- proto: TrackingImplanter + entities: + - uid: 11266 + components: + - type: Transform + parent: 5594 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: TrainingBomb entities: - uid: 13922 @@ -91696,11 +92899,6 @@ entities: - type: Transform pos: -33.5,43.5 parent: 2 - - uid: 15590 - components: - - type: Transform - pos: -28.5,42.5 - parent: 2 - proto: TwoWayLever entities: - uid: 6870 @@ -91987,11 +93185,6 @@ entities: - type: Transform pos: 1.5,8.5 parent: 2 - - uid: 9672 - components: - - type: Transform - pos: 0.5,45.5 - parent: 2 - uid: 12770 components: - type: Transform @@ -92095,26 +93288,21 @@ entities: - type: Transform pos: -3.5,46.5 parent: 2 - - uid: 12121 - components: - - type: Transform - pos: -71.5,58.5 - parent: 2 - uid: 13549 components: - type: Transform pos: 21.5,19.5 parent: 2 - - uid: 13550 - components: - - type: Transform - pos: 21.5,19.5 - parent: 2 - uid: 13852 components: - type: Transform pos: -58.5,26.5 parent: 2 + - uid: 15517 + components: + - type: Transform + pos: -66.5,60.5 + parent: 2 - proto: VendingMachineGeneDrobe entities: - uid: 5632 @@ -92333,10 +93521,10 @@ entities: parent: 2 - proto: VendingMachineTheater entities: - - uid: 4723 + - uid: 5026 components: - type: Transform - pos: -52.5,63.5 + pos: -54.5,61.5 parent: 2 - proto: VendingMachineVendomat entities: @@ -92431,6 +93619,11 @@ entities: - type: Transform pos: -72.5,71.5 parent: 2 + - uid: 40 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 - uid: 61 components: - type: Transform @@ -92442,6 +93635,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,38.5 + parent: 2 - uid: 68 components: - type: Transform @@ -92570,6 +93769,11 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-5.5 parent: 2 + - uid: 269 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 - uid: 288 components: - type: Transform @@ -94418,11 +95622,6 @@ entities: - type: Transform pos: -0.5,49.5 parent: 2 - - uid: 2250 - components: - - type: Transform - pos: -0.5,46.5 - parent: 2 - uid: 2251 components: - type: Transform @@ -94431,7 +95630,7 @@ entities: - uid: 2252 components: - type: Transform - pos: -0.5,45.5 + pos: -1.5,47.5 parent: 2 - uid: 2260 components: @@ -94542,21 +95741,6 @@ entities: - type: Transform pos: -22.5,37.5 parent: 2 - - uid: 2292 - components: - - type: Transform - pos: -24.5,37.5 - parent: 2 - - uid: 2293 - components: - - type: Transform - pos: -26.5,37.5 - parent: 2 - - uid: 2294 - components: - - type: Transform - pos: -25.5,37.5 - parent: 2 - uid: 2295 components: - type: Transform @@ -95480,21 +96664,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,42.5 parent: 2 - - uid: 2956 - components: - - type: Transform - pos: -8.5,22.5 - parent: 2 - - uid: 2957 - components: - - type: Transform - pos: -10.5,22.5 - parent: 2 - - uid: 2958 - components: - - type: Transform - pos: -9.5,22.5 - parent: 2 - uid: 2963 components: - type: Transform @@ -96798,12 +97967,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,45.5 parent: 2 - - uid: 5024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,45.5 - parent: 2 - uid: 5037 components: - type: Transform @@ -96825,6 +97988,11 @@ entities: - type: Transform pos: 24.5,42.5 parent: 2 + - uid: 5089 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 - uid: 5129 components: - type: Transform @@ -97349,6 +98517,12 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,73.5 parent: 2 + - uid: 5687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,44.5 + parent: 2 - uid: 5773 components: - type: Transform @@ -97972,6 +99146,18 @@ entities: rot: 3.141592653589793 rad pos: -20.5,47.5 parent: 2 + - uid: 7871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,38.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,38.5 + parent: 2 - uid: 7919 components: - type: Transform @@ -98085,6 +99271,16 @@ entities: - type: Transform pos: 14.5,0.5 parent: 2 + - uid: 10309 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 - uid: 10372 components: - type: Transform @@ -98361,6 +99557,12 @@ entities: - type: Transform pos: -45.5,17.5 parent: 2 + - uid: 13142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,37.5 + parent: 2 - uid: 13218 components: - type: Transform @@ -98699,12 +99901,30 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,14.5 parent: 2 + - uid: 13950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,37.5 + parent: 2 - uid: 13966 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,71.5 parent: 2 + - uid: 13987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,38.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,38.5 + parent: 2 - uid: 14006 components: - type: Transform @@ -99101,6 +100321,24 @@ entities: - type: Transform pos: -18.5,-25.5 parent: 2 + - uid: 15590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,38.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,38.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,38.5 + parent: 2 - uid: 15764 components: - type: Transform @@ -99337,6 +100575,12 @@ entities: - type: Transform pos: 6.5,-22.5 parent: 2 + - uid: 16865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,37.5 + parent: 2 - proto: WallSolid entities: - uid: 19 @@ -99786,12 +101030,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,22.5 parent: 2 - - uid: 1832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,22.5 - parent: 2 - uid: 1833 components: - type: Transform @@ -100779,6 +102017,11 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,64.5 parent: 2 + - uid: 2250 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 - uid: 2254 components: - type: Transform @@ -102354,6 +103597,11 @@ entities: rot: 3.141592653589793 rad pos: -56.5,40.5 parent: 2 + - uid: 4618 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 - uid: 4653 components: - type: Transform @@ -102398,6 +103646,11 @@ entities: - type: Transform pos: 14.5,30.5 parent: 2 + - uid: 5024 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 - uid: 5051 components: - type: Transform @@ -103570,11 +104823,6 @@ entities: - type: Transform pos: -21.5,50.5 parent: 2 - - uid: 5026 - components: - - type: Transform - pos: -1.5,47.5 - parent: 2 - uid: 5083 components: - type: Transform @@ -103862,21 +105110,12 @@ entities: parent: 2 - type: ChamberMagazineAmmoProvider boltClosed: True -- proto: WeaponLaserCarbine - entities: - - uid: 6442 - components: - - type: Transform - parent: 13034 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WeaponShotgunEnforcer entities: - uid: 6443 components: - type: Transform - parent: 13031 + parent: 13930 - type: Physics canCollide: False - type: InsideEntityStorage @@ -104636,11 +105875,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,13.5 parent: 2 - - uid: 6789 - components: - - type: Transform - pos: -27.5,26.5 - parent: 2 - uid: 7089 components: - type: Transform diff --git a/Resources/Prototypes/Maps/loop.yml b/Resources/Prototypes/Maps/loop.yml index 64d1e297a5..beef9d6e78 100644 --- a/Resources/Prototypes/Maps/loop.yml +++ b/Resources/Prototypes/Maps/loop.yml @@ -2,7 +2,7 @@ id: Loop mapName: 'Loop Station' mapPath: /Maps/loop.yml - minPlayers: 30 + minPlayers: 35 maxPlayers: 70 stations: Loop: From 4b34dd672e13be9f49b11e08e96a0443a2111f46 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Wed, 25 Dec 2024 21:43:53 -0500 Subject: [PATCH 232/263] Amber Station - Fixed evac shuttle screens (#34071) Added Devicenetwork component to ensure the screens work --- Resources/Maps/Shuttles/emergency_amber.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Resources/Maps/Shuttles/emergency_amber.yml b/Resources/Maps/Shuttles/emergency_amber.yml index 63b5b8fc64..78f4c0fae9 100644 --- a/Resources/Maps/Shuttles/emergency_amber.yml +++ b/Resources/Maps/Shuttles/emergency_amber.yml @@ -47,6 +47,11 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer + deviceNetId: Wireless - type: OccluderTree - type: SpreaderGrid - type: Shuttle From 52d39aac46b1ee69ba22d2782a6e451d5a74abdb Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Thu, 26 Dec 2024 00:06:48 -0700 Subject: [PATCH 233/263] bagel update (#34073) --- Resources/Maps/bagel.yml | 230 ++++++++++++++++++++++----------------- 1 file changed, 130 insertions(+), 100 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index a033bfe6ba..1e14ea21b2 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -8383,7 +8383,7 @@ entities: 1: 39312 -12,8: 4: 12 - 6: 3072 + 5: 3072 -11,5: 0: 63351 -11,6: @@ -8392,7 +8392,7 @@ entities: -11,8: 4: 1 1: 17476 - 6: 256 + 5: 256 -11,7: 1: 17484 -10,5: @@ -8490,10 +8490,10 @@ entities: 0: 255 1: 57344 -8,11: - 5: 816 + 6: 816 1: 34952 -9,11: - 5: 2176 + 6: 2176 1: 8738 -8,12: 1: 34959 @@ -8513,7 +8513,7 @@ entities: -6,11: 0: 4095 -6,12: - 5: 61166 + 6: 61166 -5,9: 0: 65528 -5,10: @@ -8521,7 +8521,7 @@ entities: -5,11: 0: 36863 -5,12: - 5: 30515 + 6: 30515 0: 12 -4,9: 0: 65528 @@ -8531,7 +8531,7 @@ entities: 0: 4095 -4,12: 0: 1 - 5: 65518 + 6: 65518 -4,13: 1: 61680 -5,13: @@ -8545,7 +8545,7 @@ entities: -5,15: 1: 17487 -3,12: - 5: 13107 + 6: 13107 1: 34944 -3,13: 1: 47792 @@ -8611,7 +8611,7 @@ entities: 1: 61713 -12,9: 0: 16 - 5: 3084 + 6: 3084 -13,9: 1: 39305 -13,10: @@ -8621,18 +8621,18 @@ entities: 0: 12544 -12,10: 3: 12 - 5: 3072 + 6: 3072 -12,11: - 5: 12 + 6: 12 -11,9: - 5: 257 + 6: 257 1: 17476 -11,10: 3: 1 - 5: 256 + 6: 256 1: 17476 -11,11: - 5: 1 + 6: 1 1: 17476 -11,12: 1: 17487 @@ -8686,7 +8686,7 @@ entities: 1: 15 -13,12: 1: 34952 - 6: 48 + 5: 48 4: 12288 -12,13: 1: 61455 @@ -8720,11 +8720,11 @@ entities: 1: 62671 -7,14: 1: 244 - 5: 57344 + 6: 57344 0: 1024 -7,15: 1: 61440 - 5: 238 + 6: 238 0: 1024 -7,16: 1: 65524 @@ -8783,7 +8783,7 @@ entities: -14,12: 0: 1 1: 8738 - 6: 128 + 5: 128 4: 32768 -17,12: 0: 52232 @@ -9392,7 +9392,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 + - 6666.982 - 0 - 0 - 0 @@ -9407,7 +9407,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 + - 0 - 0 - 0 - 0 @@ -9755,6 +9755,22 @@ entities: parent: 19510 - type: InstantAction container: 19510 +- proto: ActionToggleLight + entities: + - uid: 4547 + components: + - type: Transform + parent: 18456 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 18456 + - uid: 13684 + components: + - type: Transform + parent: 18476 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 18476 - proto: AirAlarm entities: - uid: 249 @@ -15711,6 +15727,11 @@ entities: - type: Transform pos: -40.5,-10.5 parent: 60 + - uid: 18801 + components: + - type: Transform + pos: -0.5,17.5 + parent: 60 - proto: BananaPhoneInstrument entities: - uid: 21478 @@ -17108,7 +17129,7 @@ entities: - uid: 16092 components: - type: Transform - pos: 0.97444147,20.461615 + pos: 0.43422604,17.607504 parent: 60 - proto: BoxMouthSwab entities: @@ -57065,18 +57086,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,20.5 parent: 60 - - uid: 15698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 60 - - uid: 15702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,19.5 - parent: 60 - uid: 15703 components: - type: Transform @@ -60712,8 +60721,7 @@ entities: - uid: 6584 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.3543596,15.57648 + pos: 2.287873,17.693514 parent: 60 - uid: 9612 components: @@ -60723,8 +60731,7 @@ entities: - uid: 13716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5262346,15.435855 + pos: 2.448494,17.568514 parent: 60 - uid: 21464 components: @@ -60852,7 +60859,7 @@ entities: - uid: 16082 components: - type: Transform - pos: 1.4378321,20.761402 + pos: 1.3649788,21.025267 parent: 60 - proto: ClothingHeadsetMedicalScience entities: @@ -73082,13 +73089,41 @@ entities: - uid: 18456 components: - type: Transform - pos: 1.5308173,20.376057 + pos: 0.76574916,21.115711 parent: 60 + - type: HandheldLight + toggleActionEntity: 4547 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 4547 + - type: ActionsContainer - uid: 18476 components: - type: Transform - pos: 1.6245673,20.188557 + pos: 0.68762416,21.240711 parent: 60 + - type: HandheldLight + toggleActionEntity: 13684 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 13684 + - type: ActionsContainer - uid: 18702 components: - type: Transform @@ -74188,12 +74223,12 @@ entities: - uid: 16093 components: - type: Transform - pos: 0.49396247,20.925829 + pos: 0.5013861,20.773125 parent: 60 - uid: 16094 components: - type: Transform - pos: 0.6231174,20.88675 + pos: 0.7201361,20.6325 parent: 60 - proto: FoodPlateSmall entities: @@ -110836,11 +110871,6 @@ entities: - type: Transform pos: -61.5,15.5 parent: 60 - - uid: 18801 - components: - - type: Transform - pos: 0.52521247,19.644579 - parent: 60 - proto: JetpackMiniFilled entities: - uid: 4647 @@ -113052,7 +113082,7 @@ entities: - uid: 16090 components: - type: Transform - pos: 1.0003321,21.120777 + pos: 0.83625203,17.623129 parent: 60 - uid: 17912 components: @@ -113994,7 +114024,7 @@ entities: - uid: 16988 components: - type: Transform - pos: 0.57978624,20.080126 + pos: 1.6429996,20.509642 parent: 60 - uid: 17387 components: @@ -115894,11 +115924,6 @@ entities: - type: Transform pos: 36.5,-13.5 parent: 60 - - uid: 857 - components: - - type: Transform - pos: 0.5,20.5 - parent: 60 - uid: 1620 components: - type: Transform @@ -115966,6 +115991,11 @@ entities: rot: 3.141592653589793 rad pos: 7.5,15.5 parent: 60 + - uid: 15698 + components: + - type: Transform + pos: 3.5,17.5 + parent: 60 - uid: 16987 components: - type: Transform @@ -119290,11 +119320,6 @@ entities: parent: 60 - proto: Rack entities: - - uid: 536 - components: - - type: Transform - pos: 5.5,13.5 - parent: 60 - uid: 958 components: - type: Transform @@ -119565,6 +119590,11 @@ entities: - type: Transform pos: -27.5,32.5 parent: 60 + - uid: 15695 + components: + - type: Transform + pos: 5.5,13.5 + parent: 60 - uid: 16065 components: - type: Transform @@ -119719,26 +119749,6 @@ entities: - type: Transform pos: 24.630735,-0.3057616 parent: 60 - - uid: 16085 - components: - - type: Transform - pos: 1.2244415,19.742865 - parent: 60 - - uid: 16086 - components: - - type: Transform - pos: 1.4275665,19.899115 - parent: 60 - - uid: 16087 - components: - - type: Transform - pos: 1.6463165,19.742865 - parent: 60 - - uid: 16088 - components: - - type: Transform - pos: 1.4275665,19.555365 - parent: 60 - uid: 19150 components: - type: Transform @@ -126380,6 +126390,16 @@ entities: - type: Transform pos: -27.5,32.5 parent: 60 + - uid: 15702 + components: + - type: Transform + pos: 1.5009258,17.567764 + parent: 60 + - uid: 16085 + components: + - type: Transform + pos: 1.5009258,17.567764 + parent: 60 - uid: 17024 components: - type: Transform @@ -132733,26 +132753,26 @@ entities: parent: 60 - proto: SpawnPointTechnicalAssistant entities: - - uid: 4547 - components: - - type: Transform - pos: -0.5,19.5 - parent: 60 - uid: 7562 components: - type: Transform pos: 2.5,21.5 parent: 60 + - uid: 16086 + components: + - type: Transform + pos: -0.5,20.5 + parent: 60 + - uid: 16087 + components: + - type: Transform + pos: -0.5,21.5 + parent: 60 - uid: 17297 components: - type: Transform pos: 2.5,20.5 parent: 60 - - uid: 17386 - components: - - type: Transform - pos: 2.5,19.5 - parent: 60 - proto: SpawnPointWarden entities: - uid: 1461 @@ -136017,6 +136037,11 @@ entities: - type: Transform pos: 55.5,-8.5 parent: 60 + - uid: 536 + components: + - type: Transform + pos: 0.5,17.5 + parent: 60 - uid: 730 components: - type: Transform @@ -136032,6 +136057,11 @@ entities: - type: Transform pos: 39.5,-10.5 parent: 60 + - uid: 857 + components: + - type: Transform + pos: 1.5,17.5 + parent: 60 - uid: 948 components: - type: Transform @@ -136673,11 +136703,6 @@ entities: - type: Transform pos: 1.5,20.5 parent: 60 - - uid: 15695 - components: - - type: Transform - pos: 0.5,19.5 - parent: 60 - uid: 15696 components: - type: Transform @@ -136691,7 +136716,7 @@ entities: - uid: 15700 components: - type: Transform - pos: 1.5,19.5 + pos: 2.5,17.5 parent: 60 - uid: 15701 components: @@ -136718,6 +136743,11 @@ entities: - type: Transform pos: 42.5,-1.5 parent: 60 + - uid: 16088 + components: + - type: Transform + pos: 3.5,17.5 + parent: 60 - uid: 16410 components: - type: Transform @@ -138761,16 +138791,16 @@ entities: - type: Transform pos: 14.490113,-48.331394 parent: 60 - - uid: 13684 - components: - - type: Transform - pos: 5.4793596,13.51398 - parent: 60 - uid: 15378 components: - type: Transform pos: -18.570131,32.730915 parent: 60 + - uid: 17386 + components: + - type: Transform + pos: 5.501162,13.623979 + parent: 60 - uid: 19151 components: - type: Transform From bf727b0ab61dd7c24e61566df6b2d39f55b5ab5a Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Thu, 26 Dec 2024 14:47:22 -0800 Subject: [PATCH 234/263] Reinforced tables require welding to construct/deconstruct (#33992) --- .../Construction/Graphs/furniture/tables.yml | 48 ++++++++++--------- 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/tables.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/tables.yml index 1c828b05ac..d7ef51e96b 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/tables.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/tables.yml @@ -55,6 +55,8 @@ - material: Plasteel amount: 1 doAfter: 1 + - tool: Welding + doAfter: 3 - to: TableGlass steps: @@ -73,7 +75,7 @@ - material: PlasmaGlass amount: 1 doAfter: 1 - + - to: TableBrass steps: - material: Brass @@ -143,6 +145,8 @@ prototype: SheetPlasteel1 amount: 1 steps: + - tool: Welding + doAfter: 3 - tool: Anchoring doAfter: 1 @@ -211,73 +215,73 @@ - material: Cloth amount: 1 doAfter: 1 - + - to: TableFancyBlack - steps: + steps: - tag: CarpetBlack name: black carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-black - + - to: TableFancyBlue - steps: + steps: - tag: CarpetBlue name: blue carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-blue - + - to: TableFancyCyan - steps: + steps: - tag: CarpetCyan name: cyan carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-cyan - + - to: TableFancyGreen - steps: + steps: - tag: CarpetGreen name: green carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-green - + - to: TableFancyOrange - steps: + steps: - tag: CarpetOrange name: orange carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-orange - + - to: TableFancyPurple - steps: + steps: - tag: CarpetPurple name: purple carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-purple - + - to: TableFancyPink - steps: + steps: - tag: CarpetPink name: pink carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-pink - + - to: TableFancyRed - steps: + steps: - tag: CarpetRed name: red carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-red - + - to: TableFancyWhite - steps: + steps: - tag: CarpetWhite name: white carpet icon: @@ -295,7 +299,7 @@ steps: - tool: Prying doAfter: 1 - + - node: TableFancyBlack entity: TableFancyBlack edges: @@ -307,7 +311,7 @@ steps: - tool: Prying doAfter: 1 - + - node: TableFancyBlue entity: TableFancyBlue edges: @@ -319,7 +323,7 @@ steps: - tool: Prying doAfter: 1 - + - node: TableFancyCyan entity: TableFancyCyan edges: From fab5dd178d3961959f1e3a9ca408e6046ebdcc36 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 26 Dec 2024 22:48:31 +0000 Subject: [PATCH 235/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c0e8eb839b..c8abf2c9d6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix AI eye getting deleted by singulo. - type: Fix - id: 7253 - time: '2024-08-31T08:24:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31556 - author: slarticodefast changes: - message: Fixed toggleable pointlights for the toy sword, lighters, welders and @@ -3938,3 +3931,10 @@ id: 7752 time: '2024-12-24T02:25:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34001 +- author: ArtisticRoomba + changes: + - message: Reinforced tables now require welding to construct and deconstruct. + type: Tweak + id: 7753 + time: '2024-12-26T22:47:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33992 From 34e9979dc5af833ea16fd3234f2626a2403c9f54 Mon Sep 17 00:00:00 2001 From: crazybrain23 <44417085+crazybrain23@users.noreply.github.com> Date: Fri, 27 Dec 2024 12:34:30 +0000 Subject: [PATCH 236/263] Arrivals blacklist for bluespace lockers and QSIs (#34072) * Ensure Arrivals Blacklist in Bluespace Locker rule * While I'm at it, stop the QSI too * fix thing I broke somehow * Every bluespace locker arrivals blacklisted * Add ArrivalsBlacklist to the prototypes too --- Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs | 3 +++ Resources/Prototypes/Entities/Objects/Devices/swapper.yml | 1 + .../Entities/Structures/Storage/Closets/Lockers/lockers.yml | 1 + .../Prototypes/Entities/Structures/Storage/Closets/closets.yml | 2 ++ 4 files changed, 7 insertions(+) diff --git a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs index 191a0ac57c..3a88bf3910 100644 --- a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs +++ b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs @@ -16,6 +16,7 @@ using Robust.Shared.Containers; using Robust.Shared.Random; using Robust.Shared.Timing; using Robust.Shared.Prototypes; +using Content.Server.Shuttles.Components; namespace Content.Server.Storage.EntitySystems; @@ -47,6 +48,8 @@ public sealed class BluespaceLockerSystem : EntitySystem if (component.BehaviorProperties.BluespaceEffectOnInit) BluespaceEffect(uid, component, component, true); + + EnsureComp(uid); // To stop people getting to arrivals terminal } public void BluespaceEffect(EntityUid effectTargetUid, BluespaceLockerComponent effectSourceComponent, BluespaceLockerComponent? effectTargetComponent, bool bypassLimit = false) diff --git a/Resources/Prototypes/Entities/Objects/Devices/swapper.yml b/Resources/Prototypes/Entities/Objects/Devices/swapper.yml index 8a743f4796..821b6f6b6a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/swapper.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/swapper.yml @@ -12,6 +12,7 @@ - type: Item size: Small - type: Appearance + - type: ArrivalsBlacklist - type: SwapTeleporter teleporterWhitelist: tags: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 0ab9e03fd1..97ef052153 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -421,6 +421,7 @@ parent: LockerSyndicatePersonal description: Advanced locker technology. components: + - type: ArrivalsBlacklist - type: BluespaceLocker minBluespaceLinks: 1 behaviorProperties: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml index 3bef14b33f..8c8c493aa3 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml @@ -171,6 +171,7 @@ parent: ClosetMaintenance description: It's a storage unit... right? components: + - type: ArrivalsBlacklist - type: BluespaceLocker pickLinksFromSameMap: true minBluespaceLinks: 1 @@ -189,6 +190,7 @@ parent: ClosetMaintenance description: It's a storage unit... right? components: + - type: ArrivalsBlacklist - type: BluespaceLocker pickLinksFromSameMap: true minBluespaceLinks: 1 From ca0596e6f107891089e7f9dc34d2511f3ab681eb Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 27 Dec 2024 12:35:38 +0000 Subject: [PATCH 237/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c8abf2c9d6..bbd95e72f2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: Fixed toggleable pointlights for the toy sword, lighters, welders and - arabian lamp. - type: Fix - id: 7254 - time: '2024-08-31T08:28:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31655 - author: juliangiebel changes: - message: Adds the station anchor. It anchors stations in space and prevents them @@ -3938,3 +3930,11 @@ id: 7753 time: '2024-12-26T22:47:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33992 +- author: crazybrain + changes: + - message: Bluespace lockers and quantum spin inverters can no longer go on the + arrivals shuttle. + type: Tweak + id: 7754 + time: '2024-12-27T12:34:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34072 From 860052c383aa60b969d2d08f1a4124d4beb80af3 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Fri, 27 Dec 2024 05:34:32 -0800 Subject: [PATCH 238/263] Fix popup on handcuffing for person being handcuffed (#33639) * Fix popup on handcuffing for person being handcuffed * wrap onto newlines to appease the style gods --- Content.Shared/Cuffs/SharedCuffableSystem.cs | 24 +++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index b323dc6dd1..0e8b51137f 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -534,7 +534,7 @@ namespace Content.Shared.Cuffs { _popup.PopupClient(Loc.GetString("handcuff-component-start-cuffing-target-message", ("targetName", Identity.Name(target, EntityManager, user))), user, user); - _popup.PopupClient(Loc.GetString("handcuff-component-start-cuffing-by-other-message", + _popup.PopupEntity(Loc.GetString("handcuff-component-start-cuffing-by-other-message", ("otherName", Identity.Name(user, EntityManager, target))), target, target); } @@ -642,10 +642,14 @@ namespace Content.Shared.Cuffs _adminLog.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user)} is trying to uncuff {ToPrettyString(target)}"); - _popup.PopupEntity(Loc.GetString("cuffable-component-start-uncuffing-observer", - ("user", Identity.Name(user, EntityManager)), ("target", Identity.Name(target, EntityManager))), - target, Filter.Pvs(target, entityManager: EntityManager) - .RemoveWhere(e => e.AttachedEntity == target || e.AttachedEntity == user), true); + _popup.PopupEntity( + Loc.GetString("cuffable-component-start-uncuffing-observer", + ("user", Identity.Name(user, EntityManager)), + ("target", Identity.Name(target, EntityManager))), + target, + Filter.Pvs(target, entityManager: EntityManager) + .RemoveWhere(e => e.AttachedEntity == target || e.AttachedEntity == user), + true); if (target == user) { @@ -654,9 +658,13 @@ namespace Content.Shared.Cuffs else { _popup.PopupClient(Loc.GetString("cuffable-component-start-uncuffing-target-message", - ("targetName", Identity.Name(target, EntityManager, user))), user, user); - _popup.PopupClient(Loc.GetString("cuffable-component-start-uncuffing-by-other-message", - ("otherName", Identity.Name(user, EntityManager, target))), target, target); + ("targetName", Identity.Name(target, EntityManager, user))), + user, + user); + _popup.PopupEntity(Loc.GetString("cuffable-component-start-uncuffing-by-other-message", + ("otherName", Identity.Name(user, EntityManager, target))), + target, + target); } _audio.PlayPredicted(isOwner ? cuff.StartBreakoutSound : cuff.StartUncuffSound, target, user); From 9acce42f926c84508124ec46884be2ee0b50cbab Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 27 Dec 2024 13:35:38 +0000 Subject: [PATCH 239/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bbd95e72f2..53713b46d1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: juliangiebel - changes: - - message: Adds the station anchor. It anchors stations in space and prevents them - from moving. - type: Add - id: 7255 - time: '2024-08-31T14:40:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26098 - author: Moomoobeef changes: - message: medibelts are found in the medidrobe instead of in lockers. @@ -3938,3 +3930,10 @@ id: 7754 time: '2024-12-27T12:34:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34072 +- author: Plykiya + changes: + - message: You now see a popup when being cuffed or uncuffed again. + type: Fix + id: 7755 + time: '2024-12-27T13:34:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33639 From 97dd5513f56698df28ff06555593038fbf1d53ce Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 28 Dec 2024 11:54:32 +1100 Subject: [PATCH 240/263] Ignore audio entities in SpawnAndDeleteEntityCountTest (#34021) --- Content.IntegrationTests/Tests/EntityTest.cs | 33 ++++++++++++-------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 42bea8989c..5dba8ac658 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Numerics; using Robust.Shared; +using Robust.Shared.Audio.Components; using Robust.Shared.Configuration; using Robust.Shared.GameObjects; using Robust.Shared.Log; @@ -216,14 +217,17 @@ namespace Content.IntegrationTests.Tests /// generally not spawn unrelated / detached entities. Any entities that do get spawned should be parented to /// the spawned entity (e.g., in a container). If an entity needs to spawn an entity somewhere in null-space, /// it should delete that entity when it is no longer required. This test mainly exists to prevent "entity leak" - /// bugs, where spawning some entity starts spawning unrelated entities in null space. + /// bugs, where spawning some entity starts spawning unrelated entities in null space that stick around after + /// the original entity is gone. + /// + /// Note that this isn't really a strict requirement, and there are probably quite a few edge cases. Its a pretty + /// crude test to try catch issues like this, and possibly should just be disabled. /// [Test] public async Task SpawnAndDeleteEntityCountTest() { var settings = new PoolSettings { Connected = true, Dirty = true }; await using var pair = await PoolManager.GetServerClient(settings); - var mapManager = pair.Server.ResolveDependency(); var mapSys = pair.Server.System(); var server = pair.Server; var client = pair.Client; @@ -261,6 +265,9 @@ namespace Content.IntegrationTests.Tests await pair.RunTicksSync(3); + // We consider only non-audio entities, as some entities will just play sounds when they spawn. + int Count(IEntityManager ent) => ent.EntityCount - ent.Count(); + foreach (var protoId in protoIds) { // TODO fix ninja @@ -268,8 +275,8 @@ namespace Content.IntegrationTests.Tests if (protoId == "MobHumanSpaceNinja") continue; - var count = server.EntMan.EntityCount; - var clientCount = client.EntMan.EntityCount; + var count = Count(server.EntMan); + var clientCount = Count(client.EntMan); EntityUid uid = default; await server.WaitPost(() => uid = server.EntMan.SpawnEntity(protoId, coords)); await pair.RunTicksSync(3); @@ -277,30 +284,30 @@ namespace Content.IntegrationTests.Tests // If the entity deleted itself, check that it didn't spawn other entities if (!server.EntMan.EntityExists(uid)) { - if (server.EntMan.EntityCount != count) + if (Count(server.EntMan) != count) { Assert.Fail($"Server prototype {protoId} failed on deleting itself"); } - if (client.EntMan.EntityCount != clientCount) + if (Count(client.EntMan) != clientCount) { Assert.Fail($"Client prototype {protoId} failed on deleting itself\n" + - $"Expected {clientCount} and found {client.EntMan.EntityCount}.\n" + + $"Expected {clientCount} and found {Count(client.EntMan)}.\n" + $"Server was {count}."); } continue; } // Check that the number of entities has increased. - if (server.EntMan.EntityCount <= count) + if (Count(server.EntMan) <= count) { Assert.Fail($"Server prototype {protoId} failed on spawning as entity count didn't increase"); } - if (client.EntMan.EntityCount <= clientCount) + if (Count(client.EntMan) <= clientCount) { Assert.Fail($"Client prototype {protoId} failed on spawning as entity count didn't increase" + - $"Expected at least {clientCount} and found {client.EntMan.EntityCount}. " + + $"Expected at least {clientCount} and found {Count(client.EntMan)}. " + $"Server was {count}"); } @@ -308,15 +315,15 @@ namespace Content.IntegrationTests.Tests await pair.RunTicksSync(3); // Check that the number of entities has gone back to the original value. - if (server.EntMan.EntityCount != count) + if (Count(server.EntMan) != count) { Assert.Fail($"Server prototype {protoId} failed on deletion count didn't reset properly"); } - if (client.EntMan.EntityCount != clientCount) + if (Count(client.EntMan) != clientCount) { Assert.Fail($"Client prototype {protoId} failed on deletion count didn't reset properly:\n" + - $"Expected {clientCount} and found {client.EntMan.EntityCount}.\n" + + $"Expected {clientCount} and found {Count(client.EntMan)}.\n" + $"Server was {count}."); } } From d92ed7570377798f27b254edd3aa3e451ee18f32 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sat, 28 Dec 2024 11:00:12 +0100 Subject: [PATCH 241/263] Fix wagging action name and desc (#34089) --- Resources/Locale/en-US/actions/actions/wagging.ftl | 2 -- Resources/Prototypes/Actions/types.yml | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 Resources/Locale/en-US/actions/actions/wagging.ftl diff --git a/Resources/Locale/en-US/actions/actions/wagging.ftl b/Resources/Locale/en-US/actions/actions/wagging.ftl deleted file mode 100644 index da0cfa0f27..0000000000 --- a/Resources/Locale/en-US/actions/actions/wagging.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-toggle-wagging = Wagging Tail -action-description-toggle-wagging = Start or stop wagging tail. diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index d80e36bde1..a9ac169d3c 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -319,8 +319,8 @@ - type: entity id: ActionToggleWagging - name: action-name-toggle-wagging - description: action-description-toggle-wagging + name: Wagging Tail + description: Start or stop wagging your tail. components: - type: InstantAction icon: { sprite: Mobs/Customization/reptilian_parts.rsi, state: tail_smooth_behind } From a21d8099a9eb177e71d65c551d3b2d5cc24c1770 Mon Sep 17 00:00:00 2001 From: Alpaccalypse Date: Sat, 28 Dec 2024 10:13:13 +0000 Subject: [PATCH 242/263] Removed Power Monitoring Computer boards from research and lathe recipes. Added default engineering sprites for atmos computer boards. (#34078) * Defined sprites for Atmospheric Alerts and Monitoring computer boards. Added research unlocks and lathe recipes for them. * Defined default engineering sprite for atmospherics computer boards. Removed Power Monitoring Computer board from research and lathe recipes. * Defined engineering sprite for atmos computer boards. Removed Power Monitoring Computer board from research and lathe recipes. --- .../Entities/Objects/Devices/Circuitboards/computer.yml | 6 +++++- Resources/Prototypes/Entities/Structures/Machines/lathe.yml | 1 - Resources/Prototypes/Recipes/Lathes/electronics.yml | 5 ----- Resources/Prototypes/Research/industrial.yml | 1 - 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index 26f2881ae8..de7513e735 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -24,15 +24,19 @@ name: atmospheric alerts computer board description: A computer printed circuit board for an atmospheric alerts computer. components: + - type: Sprite + state: cpu_engineering - type: ComputerBoard prototype: ComputerAlert - + - type: entity parent: BaseComputerCircuitboard id: AtmosMonitoringComputerCircuitboard name: atmospheric network monitor board description: A computer printed circuit board for an atmospheric network monitor. components: + - type: Sprite + state: cpu_engineering - type: ComputerBoard prototype: ComputerAtmosMonitoring diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 55f754df3d..4b8622e430 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -474,7 +474,6 @@ - SolarControlComputerCircuitboard - SolarTrackerElectronics - TurboItemRechargerCircuitboard - - PowerComputerCircuitboard - AutolatheHyperConvectionMachineCircuitboard - ProtolatheHyperConvectionMachineCircuitboard - CircuitImprinterHyperConvectionMachineCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index af74e7f3c7..0a2afc6b71 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -429,11 +429,6 @@ id: SolarTrackerElectronics result: SolarTrackerElectronics -- type: latheRecipe - parent: BaseCircuitboardRecipe - id: PowerComputerCircuitboard - result: PowerComputerCircuitboard - - type: latheRecipe parent: BaseCircuitboardRecipe id: CloningConsoleComputerCircuitboard diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index e05212bf68..a9cafa5fa9 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -83,7 +83,6 @@ - PortableGeneratorPacmanMachineCircuitboard - PortableGeneratorSuperPacmanMachineCircuitboard - PortableGeneratorJrPacmanMachineCircuitboard - - PowerComputerCircuitboard #the actual solar panel itself should be in here - SolarControlComputerCircuitboard - SolarTrackerElectronics - EmitterCircuitboard From b24ab389927f7e083184fadcf725340636a979f5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 28 Dec 2024 10:14:21 +0000 Subject: [PATCH 243/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 53713b46d1..abc71655c4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Moomoobeef - changes: - - message: medibelts are found in the medidrobe instead of in lockers. - type: Tweak - id: 7256 - time: '2024-08-31T23:22:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31470 - author: EmoGarbage404 changes: - message: Removed the reclaimer shuttle. @@ -3937,3 +3930,11 @@ id: 7755 time: '2024-12-27T13:34:32.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33639 +- author: Alpaccalypse + changes: + - message: Power monitoring computer boards can no longer be researched or printed, + as originally intended. + type: Remove + id: 7756 + time: '2024-12-28T10:13:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34078 From 616d34102b13978af237d558cd7a0470235389fd Mon Sep 17 00:00:00 2001 From: psykana <36602558+psykana@users.noreply.github.com> Date: Sat, 28 Dec 2024 15:49:03 +0100 Subject: [PATCH 244/263] Traitor can no longer get multiple objectives to save/help/kill the same person (#33704) * Deduplicate traitor objectives * Remove redundant check --- .../Systems/HelpProgressConditionSystem.cs | 22 +++++++++++-------- .../Objectives/Systems/KeepAliveCondition.cs | 14 +++++++++++- .../Systems/KillPersonConditionSystem.cs | 13 ++++++++++- 3 files changed, 38 insertions(+), 11 deletions(-) diff --git a/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs b/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs index e0a56149b3..7639e69bfd 100644 --- a/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs +++ b/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs @@ -45,10 +45,7 @@ public sealed class HelpProgressConditionSystem : EntitySystem return; } - var traitors = _traitorRule.GetOtherTraitorMindsAliveAndConnected(args.Mind) - .Select(pair => pair.Item1) - .ToHashSet(); - var removeList = new List(); + var traitors = _traitorRule.GetOtherTraitorMindsAliveAndConnected(args.Mind).ToHashSet(); // cant help anyone who is tasked with helping: // 1. thats boring @@ -56,19 +53,26 @@ public sealed class HelpProgressConditionSystem : EntitySystem foreach (var traitor in traitors) { // TODO: replace this with TryComp(traitor) or something when objectives are moved out of mind - if (!TryComp(traitor, out var mind)) + if (!TryComp(traitor.Id, out var mind)) continue; foreach (var objective in mind.Objectives) { if (HasComp(objective)) - removeList.Add(traitor); + traitors.RemoveWhere(x => x.Mind == mind); } } - foreach (var tot in removeList) + // Can't have multiple objectives to help/save the same person + foreach (var objective in args.Mind.Objectives) { - traitors.Remove(tot); + if (HasComp(objective) || HasComp(objective)) + { + if (TryComp(objective, out var help)) + { + traitors.RemoveWhere(x => x.Id == help.Target); + } + } } // no more helpable traitors @@ -78,7 +82,7 @@ public sealed class HelpProgressConditionSystem : EntitySystem return; } - _target.SetTarget(uid, _random.Pick(traitors), target); + _target.SetTarget(uid, _random.Pick(traitors).Id, target); } private float GetProgress(EntityUid target) diff --git a/Content.Server/Objectives/Systems/KeepAliveCondition.cs b/Content.Server/Objectives/Systems/KeepAliveCondition.cs index 48df96e742..fad8aa6d18 100644 --- a/Content.Server/Objectives/Systems/KeepAliveCondition.cs +++ b/Content.Server/Objectives/Systems/KeepAliveCondition.cs @@ -44,7 +44,19 @@ public sealed class KeepAliveConditionSystem : EntitySystem return; } - var traitors = Enumerable.ToList<(EntityUid Id, MindComponent Mind)>(_traitorRule.GetOtherTraitorMindsAliveAndConnected(args.Mind)); + var traitors = _traitorRule.GetOtherTraitorMindsAliveAndConnected(args.Mind).ToHashSet(); + + // Can't have multiple objectives to help/save the same person + foreach (var objective in args.Mind.Objectives) + { + if (HasComp(objective) || HasComp(objective)) + { + if (TryComp(objective, out var help)) + { + traitors.RemoveWhere(x => x.Id == help.Target); + } + } + } // You are the first/only traitor. if (traitors.Count == 0) diff --git a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs index f662d6a578..3aa4d606fc 100644 --- a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs +++ b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Mind; using Content.Shared.Objectives.Components; using Robust.Shared.Configuration; using Robust.Shared.Random; +using System.Linq; namespace Content.Server.Objectives.Systems; @@ -52,8 +53,18 @@ public sealed class KillPersonConditionSystem : EntitySystem if (target.Target != null) return; - // no other humans to kill var allHumans = _mind.GetAliveHumans(args.MindId); + + // Can't have multiple objectives to kill the same person + foreach (var objective in args.Mind.Objectives) + { + if (HasComp(objective) && TryComp(objective, out var kill)) + { + allHumans.RemoveWhere(x => x.Owner == kill.Target); + } + } + + // no other humans to kill if (allHumans.Count == 0) { args.Cancelled = true; From 1b478d46f578c488f4b05fec226ab5a0f5587857 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 28 Dec 2024 14:50:11 +0000 Subject: [PATCH 245/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index abc71655c4..03e3dd9bd6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: Removed the reclaimer shuttle. - type: Remove - - message: Removed fultons and fulton beacons from the autolathe - type: Remove - - message: Adjusted equipment inside salvage lockers and vendors. - type: Tweak - id: 7257 - time: '2024-08-31T23:39:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31333 - author: Moomoobeef changes: - message: Added flavors to an array of previously indescribable things. @@ -3938,3 +3927,11 @@ id: 7756 time: '2024-12-28T10:13:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34078 +- author: psykana + changes: + - message: Traitor can no longer get multiple objectives to save/help/kill the same + person + type: Fix + id: 7757 + time: '2024-12-28T14:49:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33704 From 01980cb0bfde51e7507e3ec15fe47d4c7adbe787 Mon Sep 17 00:00:00 2001 From: PursuitInAshes Date: Sat, 28 Dec 2024 08:52:27 -0800 Subject: [PATCH 246/263] Removes weh.txt from Textures/Parallaxes (#34097) Removes Unneeded File --- Resources/Textures/Parallaxes/weh.txt | 1 - 1 file changed, 1 deletion(-) delete mode 100644 Resources/Textures/Parallaxes/weh.txt diff --git a/Resources/Textures/Parallaxes/weh.txt b/Resources/Textures/Parallaxes/weh.txt deleted file mode 100644 index 0d2bc485cd..0000000000 --- a/Resources/Textures/Parallaxes/weh.txt +++ /dev/null @@ -1 +0,0 @@ -spacescape \ No newline at end of file From 6c465153abfafda2f5582d1853038c5d0bc3a567 Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Sat, 28 Dec 2024 17:33:15 -0600 Subject: [PATCH 247/263] UI improvements for holopads (#34055) * Initial commit * Minor update --- Content.Client/Holopad/HolopadWindow.xaml | 31 +++++++++++++------ Content.Client/Holopad/HolopadWindow.xaml.cs | 12 +++++-- Content.Server/Telephone/TelephoneSystem.cs | 5 +-- .../Telephone/SharedTelephoneSystem.cs | 17 ++++++++++ .../Telephone/TelephoneComponent.cs | 3 +- Resources/Locale/en-US/holopad/holopad.ftl | 2 ++ .../Locale/en-US/telephone/telephone.ftl | 4 ++- 7 files changed, 57 insertions(+), 17 deletions(-) diff --git a/Content.Client/Holopad/HolopadWindow.xaml b/Content.Client/Holopad/HolopadWindow.xaml index 9c3dfab1ea..882f918158 100644 --- a/Content.Client/Holopad/HolopadWindow.xaml +++ b/Content.Client/Holopad/HolopadWindow.xaml @@ -27,7 +27,11 @@ @@ -68,18 +72,25 @@ - + - + - - - + + - - - + + + + + + + + + + diff --git a/Content.Client/Holopad/HolopadWindow.xaml.cs b/Content.Client/Holopad/HolopadWindow.xaml.cs index bcab0d43df..25982b901c 100644 --- a/Content.Client/Holopad/HolopadWindow.xaml.cs +++ b/Content.Client/Holopad/HolopadWindow.xaml.cs @@ -171,8 +171,10 @@ public sealed partial class HolopadWindow : FancyWindow // Caller ID text var callerId = _telephoneSystem.GetFormattedCallerIdForEntity(telephone.LastCallerId.Item1, telephone.LastCallerId.Item2, Color.LightGray, "Default", 11); + var holoapdId = _telephoneSystem.GetFormattedDeviceIdForEntity(telephone.LastCallerId.Item3, Color.LightGray, "Default", 11); CallerIdText.SetMessage(FormattedMessage.FromMarkupOrThrow(callerId)); + HolopadIdText.SetMessage(FormattedMessage.FromMarkupOrThrow(holoapdId)); LockOutIdText.SetMessage(FormattedMessage.FromMarkupOrThrow(callerId)); // Sort holopads alphabetically @@ -236,10 +238,13 @@ public sealed partial class HolopadWindow : FancyWindow // Make / update required children foreach (var child in ContactsList.Children) { - if (child is not HolopadContactButton) + if (child is not HolopadContactButton contactButton) continue; - var contactButton = (HolopadContactButton)child; + var passesFilter = string.IsNullOrEmpty(SearchLineEdit.Text) || + contactButton.Text?.Contains(SearchLineEdit.Text, StringComparison.CurrentCultureIgnoreCase) == true; + + contactButton.Visible = passesFilter; contactButton.Disabled = (_currentState != TelephoneState.Idle || lockButtons); } @@ -290,7 +295,7 @@ public sealed partial class HolopadWindow : FancyWindow FetchingAvailableHolopadsContainer.Visible = (ContactsList.ChildCount == 0); ActiveCallControlsContainer.Visible = (_currentState != TelephoneState.Idle || _currentUiKey == HolopadUiKey.AiRequestWindow); CallPlacementControlsContainer.Visible = !ActiveCallControlsContainer.Visible; - CallerIdText.Visible = (_currentState == TelephoneState.Ringing); + CallerIdContainer.Visible = (_currentState == TelephoneState.Ringing); AnswerCallButton.Visible = (_currentState == TelephoneState.Ringing); } @@ -316,6 +321,7 @@ public sealed partial class HolopadWindow : FancyWindow HorizontalExpand = true; SetHeight = 32; Margin = new Thickness(0f, 1f, 0f, 1f); + ReservesSpace = false; } public void UpdateValues(NetEntity netEntity, string label) diff --git a/Content.Server/Telephone/TelephoneSystem.cs b/Content.Server/Telephone/TelephoneSystem.cs index d4398c76d3..cb0c72939a 100644 --- a/Content.Server/Telephone/TelephoneSystem.cs +++ b/Content.Server/Telephone/TelephoneSystem.cs @@ -151,7 +151,7 @@ public sealed class TelephoneSystem : SharedTelephoneSystem break; - // Try to hang up if their has been no recent in-call activity + // Try to hang up if there has been no recent in-call activity case TelephoneState.InCall: if (_timing.CurTime > telephone.StateStartTime + TimeSpan.FromSeconds(telephone.IdlingTimeout)) EndTelephoneCalls(entity); @@ -214,7 +214,8 @@ public sealed class TelephoneSystem : SharedTelephoneSystem source.Comp.LinkedTelephones.Add(receiver); source.Comp.Muted = options?.MuteSource == true; - receiver.Comp.LastCallerId = GetNameAndJobOfCallingEntity(user); // This will be networked when the state changes + var callerInfo = GetNameAndJobOfCallingEntity(user); + receiver.Comp.LastCallerId = (callerInfo.Item1, callerInfo.Item2, Name(source)); // This will be networked when the state changes receiver.Comp.LinkedTelephones.Add(source); receiver.Comp.Muted = options?.MuteReceiver == true; diff --git a/Content.Shared/Telephone/SharedTelephoneSystem.cs b/Content.Shared/Telephone/SharedTelephoneSystem.cs index ab423623cb..78a72d59a5 100644 --- a/Content.Shared/Telephone/SharedTelephoneSystem.cs +++ b/Content.Shared/Telephone/SharedTelephoneSystem.cs @@ -36,4 +36,21 @@ public abstract class SharedTelephoneSystem : EntitySystem return callerId; } + + public string GetFormattedDeviceIdForEntity(string? deviceName, Color fontColor, string fontType = "Default", int fontSize = 12) + { + if (deviceName == null) + { + return Loc.GetString("chat-telephone-unknown-device", + ("color", fontColor), + ("fontType", fontType), + ("fontSize", fontSize)); + } + + return Loc.GetString("chat-telephone-device-id", + ("deviceName", deviceName), + ("color", fontColor), + ("fontType", fontType), + ("fontSize", fontSize)); + } } diff --git a/Content.Shared/Telephone/TelephoneComponent.cs b/Content.Shared/Telephone/TelephoneComponent.cs index 530748f4d3..d739a8412d 100644 --- a/Content.Shared/Telephone/TelephoneComponent.cs +++ b/Content.Shared/Telephone/TelephoneComponent.cs @@ -127,9 +127,10 @@ public sealed partial class TelephoneComponent : Component /// /// The presumed name and/or job of the last person to call this telephone + /// and the name of the device that they used to do so /// [ViewVariables, AutoNetworkedField] - public (string?, string?) LastCallerId; + public (string?, string?, string?) LastCallerId; } #region: Telephone events diff --git a/Resources/Locale/en-US/holopad/holopad.ftl b/Resources/Locale/en-US/holopad/holopad.ftl index fbb7a78531..8a268eb1c3 100644 --- a/Resources/Locale/en-US/holopad/holopad.ftl +++ b/Resources/Locale/en-US/holopad/holopad.ftl @@ -6,6 +6,7 @@ holopad-window-options = [color=darkgray][font size=10][italic]Please select an # Call status holopad-window-no-calls-in-progress = No holo-calls in progress holopad-window-incoming-call = Incoming holo-call from: +holopad-window-relay-label = Originating at: holopad-window-outgoing-call = Attempting to establish a connection... holopad-window-call-in-progress = Holo-call in progress holopad-window-call-ending = Disconnecting... @@ -28,6 +29,7 @@ holopad-window-access-denied = Access denied holopad-window-select-contact-from-list = Select a contact to initiate a holo-call holopad-window-fetching-contacts-list = No holopads are currently contactable holopad-window-contact-label = {CAPITALIZE($label)} +holopad-window-filter-line-placeholder = Search for a contact # Flavor holopad-window-flavor-left = ⚠ Do not enter while projector is active diff --git a/Resources/Locale/en-US/telephone/telephone.ftl b/Resources/Locale/en-US/telephone/telephone.ftl index 915d54843f..b1b27768e6 100644 --- a/Resources/Locale/en-US/telephone/telephone.ftl +++ b/Resources/Locale/en-US/telephone/telephone.ftl @@ -5,4 +5,6 @@ chat-telephone-message-wrap-bold = [color={$color}][bold]{$name}[/bold] {$verb}, # Caller ID chat-telephone-unknown-caller = [color={$color}][font={$fontType} size={$fontSize}][bolditalic]Unknown caller[/bolditalic][/font][/color] chat-telephone-caller-id-with-job = [color={$color}][font={$fontType} size={$fontSize}][bold]{CAPITALIZE($callerName)} ({CAPITALIZE($callerJob)})[/bold][/font][/color] -chat-telephone-caller-id-without-job = [color={$color}][font={$fontType} size={$fontSize}][bold]{CAPITALIZE($callerName)}[/bold][/font][/color] \ No newline at end of file +chat-telephone-caller-id-without-job = [color={$color}][font={$fontType} size={$fontSize}][bold]{CAPITALIZE($callerName)}[/bold][/font][/color] +chat-telephone-unknown-device = [color={$color}][font={$fontType} size={$fontSize}][bolditalic]Unknown device[/bolditalic][/font][/color] +chat-telephone-device-id = [color={$color}][font={$fontType} size={$fontSize}][bold]{CAPITALIZE($deviceName)}[/bold][/font][/color] From 4155440a1ba236e7d1044cbf38b947b198100fe0 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 28 Dec 2024 23:34:22 +0000 Subject: [PATCH 248/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 03e3dd9bd6..f1a17bb7d5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Moomoobeef - changes: - - message: Added flavors to an array of previously indescribable things. - type: Add - id: 7258 - time: '2024-09-01T00:03:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31685 - author: Ilya246 changes: - message: Fixed tip 26 being misinformation about the tesla. It now displays truthful @@ -3935,3 +3928,12 @@ id: 7757 time: '2024-12-28T14:49:03.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33704 +- author: chromiumboy + changes: + - message: The holoapd UI has been updated to include a text-based filter for the + contacts list, and also to specify the name of the holopad that incoming calls + originate from + type: Tweak + id: 7758 + time: '2024-12-28T23:33:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34055 From 3f84b04e4ce1ff35657f56a421ff91d05145149c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Dec 2024 01:39:04 +0100 Subject: [PATCH 249/263] Update Credits (#34109) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 9a85185c3e..65813dbb34 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex From 5d0d37161dddcdf4f3c65d3a267e257273a82b7a Mon Sep 17 00:00:00 2001 From: zHonys <69396539+zHonys@users.noreply.github.com> Date: Sat, 28 Dec 2024 22:49:05 -0300 Subject: [PATCH 250/263] Added support so that smile can use hats (#33924) * Added support so that smile can use hats Changed Prototypes/Entities/Mobs/NPCs/pets.yml Added smile_inventory_template.yml in Resources/Prototypes/inventoryTemplates Added dir smile_displacement.rsi inside Resources/Textures/Mobs/Pets/smile.rsi Added smile_displacement.rsi/meta.json Added smile_displacement.rsi/head.png * Fixed sprite path in ProtoTypes/Entities/Mobs/NPCs/pets.yml mapping to wrong smile_displacement.rsi Fixed smile_inventory_template.yml using uiWindowPos as 1,2 instead of 0,1 Moved Resources/Textures/Mobs/Pets/smile.rsi/ to .../Pets/smile/smile.rsi/ Moved Resources/Textures/Mobs/Pets/smile.rsi/smile_displacement.rsi to .../Pets/smile/smile_displacement.rsi * Minor fixes: removing comments and change naming Renamed Resources/Textures/Mobs/Pets/smile/smile.rsi To .../Mobs/Pets/Smile/smile.rsi * Removed smile_inventory_template.yml and used head_inventory_template.yml instead --- .../Prototypes/Entities/Mobs/NPCs/pets.yml | 14 ++++++++++++-- .../{ => Smile}/smile.rsi/inhand-left.png | Bin .../{ => Smile}/smile.rsi/inhand-right.png | Bin .../Mobs/Pets/{ => Smile}/smile.rsi/meta.json | 0 .../Smile/smile_displacement.rsi/head.png | Bin 0 -> 236 bytes .../Smile/smile_displacement.rsi/meta.json | 18 ++++++++++++++++++ 6 files changed, 30 insertions(+), 2 deletions(-) rename Resources/Textures/Mobs/Pets/{ => Smile}/smile.rsi/inhand-left.png (100%) rename Resources/Textures/Mobs/Pets/{ => Smile}/smile.rsi/inhand-right.png (100%) rename Resources/Textures/Mobs/Pets/{ => Smile}/smile.rsi/meta.json (100%) create mode 100644 Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png create mode 100644 Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 5adb891445..4cee650e0f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -712,7 +712,7 @@ - type: entity name: Smile id: MobSlimesPet - parent: MobAdultSlimes + parent: [MobAdultSlimes, StripableInventoryBase] description: This masterpiece has gone through thousands of experiments. But it is the sweetest creature in the world. Smile Slime! components: - type: Sprite @@ -722,6 +722,16 @@ - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] state: aslime-_3 shader: unshaded + - map: [ "head" ] + - type: Inventory + speciesId: slime + templateId: head + displacements: + head: + sizeMaps: + 32: + sprite: Mobs/Pets/Smile/smile_displacement.rsi + state: head - type: MobThresholds thresholds: 0: Alive @@ -767,7 +777,7 @@ Caustic: 1 - type: MultiHandedItem - type: Item - sprite: Mobs/Pets/smile.rsi + sprite: Mobs/Pets/Smile/smile.rsi size: Huge - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-slime diff --git a/Resources/Textures/Mobs/Pets/smile.rsi/inhand-left.png b/Resources/Textures/Mobs/Pets/Smile/smile.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Mobs/Pets/smile.rsi/inhand-left.png rename to Resources/Textures/Mobs/Pets/Smile/smile.rsi/inhand-left.png diff --git a/Resources/Textures/Mobs/Pets/smile.rsi/inhand-right.png b/Resources/Textures/Mobs/Pets/Smile/smile.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Mobs/Pets/smile.rsi/inhand-right.png rename to Resources/Textures/Mobs/Pets/Smile/smile.rsi/inhand-right.png diff --git a/Resources/Textures/Mobs/Pets/smile.rsi/meta.json b/Resources/Textures/Mobs/Pets/Smile/smile.rsi/meta.json similarity index 100% rename from Resources/Textures/Mobs/Pets/smile.rsi/meta.json rename to Resources/Textures/Mobs/Pets/Smile/smile.rsi/meta.json diff --git a/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png new file mode 100644 index 0000000000000000000000000000000000000000..a579919824015b187ab41f3e38719b6591ea2f93 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|mU+53hE&XX zdvhaiLjcc_3oM2vvWq_-uVDSglpgtV(|hCl4q<)g&$NEGWWB&Niz$QAmvKwOGKMIJ zU#y?xE8RQ;E{fJmA~rDd;JBZ=|VE}ETh0Drs~pzlh*-V%;4$j=d#Wz Gp$Pyua!d07 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/meta.json b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/meta.json new file mode 100644 index 0000000000..1d2a84bf6d --- /dev/null +++ b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Head displacement made by zHonys", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "head", + "directions": 4 + } + ] +} From 9f9553b5261995d7f44fc29f1d3fa30c5bc35cd9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 29 Dec 2024 01:50:11 +0000 Subject: [PATCH 251/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f1a17bb7d5..d2ab10a1d7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Ilya246 - changes: - - message: Fixed tip 26 being misinformation about the tesla. It now displays truthful - information. - type: Fix - id: 7259 - time: '2024-09-01T11:03:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31705 - author: yuitop changes: - message: space dragon fire breath ability now has cursor indicator @@ -3937,3 +3929,10 @@ id: 7758 time: '2024-12-28T23:33:16.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34055 +- author: zHonys + changes: + - message: Smile can now use hats + type: Add + id: 7759 + time: '2024-12-29T01:49:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33924 From bfb256f0bacbef19c957ff0426e8f1aa4bf2a88a Mon Sep 17 00:00:00 2001 From: SolStar <44028047+ewokswagger@users.noreply.github.com> Date: Sat, 28 Dec 2024 20:50:49 -0500 Subject: [PATCH 252/263] Add a guaranteed cotton pizza to pizza crates (#33997) * add guaranteed cotton pizza to pizza crates * saner parenting * Use clearer suffix on cotton pizza box --- Resources/Prototypes/Catalog/Fills/Crates/food.yml | 6 ++++-- .../Objects/Consumable/Food/Containers/box.yml | 11 +++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Catalog/Fills/Crates/food.yml b/Resources/Prototypes/Catalog/Fills/Crates/food.yml index e43d918bb9..cbce467cf7 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/food.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/food.yml @@ -7,7 +7,8 @@ - type: StorageFill contents: - id: FoodBoxPizzaFilled - amount: 4 + amount: 3 + - id: FoodBoxPizzaCotton - id: LidSalami prob: 0.01 @@ -20,7 +21,8 @@ - type: StorageFill contents: - id: FoodBoxPizzaFilled - amount: 16 + amount: 15 + - id: FoodBoxPizzaCotton - id: LidSalami prob: 0.04 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index 69621aa944..f613cddaaf 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -274,6 +274,17 @@ prob: 0.10 orGroup: Pizza - id: KnifePlastic + +- type: entity + name: pizza box + parent: FoodBoxPizzaFilled + id: FoodBoxPizzaCotton + suffix: Cotton Pizza + components: + - type: StorageFill + contents: + - id: FoodPizzaCotton + - id: KnifePlastic # Nugget From 4bb68c4bacd9ecf34dcf813a5f7fd116cf5ea9e2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 29 Dec 2024 01:51:56 +0000 Subject: [PATCH 253/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d2ab10a1d7..07f46efe86 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: yuitop - changes: - - message: space dragon fire breath ability now has cursor indicator - type: Tweak - id: 7260 - time: '2024-09-01T19:28:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31725 - author: EmoGarbage404 changes: - message: The grappling gun is now available inside the salvage vendor. Additional @@ -3936,3 +3929,10 @@ id: 7759 time: '2024-12-29T01:49:05.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33924 +- author: ewokswagger + changes: + - message: Pizza deliveries are now guaranteed to have at least one cotton pizza. + type: Tweak + id: 7760 + time: '2024-12-29T01:50:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33997 From 2c41ed0939b6cd1ed7b04a239105b5f71db9219f Mon Sep 17 00:00:00 2001 From: Booblesnoot42 <108703193+Booblesnoot42@users.noreply.github.com> Date: Sat, 28 Dec 2024 20:56:23 -0500 Subject: [PATCH 254/263] Corrected Cotton Dough Recipe (#33988) --- Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 7e5e20139b..98d892db82 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -23,7 +23,8 @@ WARNING: This is not an automatically generated list, things here may become out - Uncooked Animal Protein: Grind Raw Meat Buzz! Don't forget about Moth diet! -- Cotton Dough = 5 Flour, 10 Fabric, 10 Water +- Fiber: Juice Fabric in a Reagent Grinder, 3 Fiber per Fabric +- Cotton Dough = 5 Flour, 10 Fiber, 10 Water - Cotton bread baked the same as default but with cotton dough instead - Cotton Pizza: Microwave 1 Flat Cotton Dough and 4 Cotton Bolls for 30 Seconds From e07609b3b3109604b664ec62d6712334ec2fbc97 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sat, 28 Dec 2024 18:02:24 -0800 Subject: [PATCH 255/263] New cotton baguette, crostini, chevre-chaud, bagel, and croissant foods for moffs (#33508) * A looooooooot of new cotton foods for the moffs * address slam's comments on the food for moffs not having any moff food in the food (the food that's intended for moffs) * alternative sprites for bagel-cottondough.png, baguette-cotton.png, and croissant-cotton.png * update requested sprites * change requested sprites * address part of sloth's review, awaiting response * address second half of review, fix magical food nutriment mitosis bug --- .../Objects/Consumable/Food/Baked/bagel.yml | 28 ++++++ .../Objects/Consumable/Food/Baked/bread.yml | 71 ++++++++++++++ .../Objects/Consumable/Food/Baked/misc.yml | 66 ++++++++++++- .../Objects/Consumable/Food/ingredients.yml | 89 +++++++++++++++++- .../Construction/Graphs/food/doughrope.yml | 16 +++- .../Recipes/Cooking/meal_recipes.yml | 37 ++++++++ .../Baked/bagel.rsi/bagel-cottondough.png | Bin 0 -> 543 bytes .../Consumable/Food/Baked/bagel.rsi/meta.json | 19 ++-- .../baguette-cotton-equipped-BELT.png | Bin 0 -> 432 bytes .../bread.rsi/baguette-cotton-inhand-left.png | Bin 0 -> 454 bytes .../baguette-cotton-inhand-right.png | Bin 0 -> 522 bytes .../Food/Baked/bread.rsi/baguette-cotton.png | Bin 0 -> 660 bytes .../Food/Baked/bread.rsi/crostini-cotton.png | Bin 0 -> 404 bytes .../Consumable/Food/Baked/bread.rsi/meta.json | 20 +++- .../Baked/misc.rsi/chevrechaud-cotton.png | Bin 0 -> 869 bytes .../Food/Baked/misc.rsi/croissant-cotton.png | Bin 0 -> 763 bytes .../Consumable/Food/Baked/misc.rsi/meta.json | 8 +- .../ingredients.rsi/cotton-dough-rope.png | Bin 0 -> 482 bytes .../ingredients.rsi/cotton-dough-slice.png | Bin 0 -> 521 bytes .../ingredients.rsi/croissant-raw-cotton.png | Bin 0 -> 307 bytes .../Consumable/Food/ingredients.rsi/meta.json | 11 ++- 21 files changed, 349 insertions(+), 16 deletions(-) create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/bagel-cottondough.png create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-equipped-BELT.png create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-left.png create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-right.png create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton.png create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/crostini-cotton.png create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/chevrechaud-cotton.png create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/croissant-cotton.png create mode 100644 Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-rope.png create mode 100644 Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-slice.png create mode 100644 Resources/Textures/Objects/Consumable/Food/ingredients.rsi/croissant-raw-cotton.png diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml index 8f23b6c7df..114b3e01f2 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml @@ -47,3 +47,31 @@ Quantity: 5 - ReagentId: Nutriment Quantity: 5 + +- type: entity + id: FoodBagelCotton + parent: FoodBagelBase + name: cotton bagel + description: A delicious bagel made with cotton dough. + components: + - type: FlavorProfile + flavors: + - bread + - cotton + - type: Sprite + state: bagel-cottondough + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - ClothMade + - type: SolutionContainerManager + solutions: + food: + maxVol: 12 + reagents: + - ReagentId: Nutriment + Quantity: 2.5 + - ReagentId: Fiber + Quantity: 2.5 + diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index 0fb3df4d27..db77d81ce8 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -702,6 +702,46 @@ Blunt: 1 # bonk # Tastes like France. +- type: entity + name: cotton baguette + parent: FoodBreadBaguette + id: FoodBreadBaguetteCotton + description: Bon azzétit! + components: + - type: Sprite + state: baguette-cotton + - type: SliceableFood + slice: FoodBreadBaguetteCottonSlice + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - Bread + - ClothMade + - type: Clothing + equippedPrefix: baguette-cotton + - type: Item + inhandVisuals: + left: + - state: baguette-cotton-inhand-left + right: + - state: baguette-cotton-inhand-right + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Nutriment + Quantity: 3 + - ReagentId: Fiber + Quantity: 3 + - ReagentId: Vitamin + Quantity: 1 + - ReagentId: TableSalt + Quantity: 1 + - ReagentId: Blackpepper + Quantity: 1 + - type: entity name: crostini parent: FoodBreadSliceBase @@ -724,6 +764,37 @@ - ReagentId: Blackpepper Quantity: 0.1 +- type: entity + name: cotton crostini + parent: FoodBreadBaguetteSlice + id: FoodBreadBaguetteCottonSlice + description: Bon az-zetite! + components: + - type: Sprite + state: crostini-cotton + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - Bread + - Slice + - ClothMade + - type: SolutionContainerManager + solutions: + food: + maxVol: 2 + reagents: + - ReagentId: Nutriment + Quantity: 0.25 + - ReagentId: Fiber + Quantity: 0.25 + - ReagentId: Vitamin + Quantity: 0.1 + - ReagentId: TableSalt + Quantity: 0.1 + - ReagentId: Blackpepper + Quantity: 0.1 + - type: entity name: buttered toast parent: FoodBreadSliceBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index b4be6a8dfd..db8c186856 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -28,7 +28,7 @@ description: A delicious and spongy little cake. components: - type: Food - trash: + trash: - FoodPlateMuffinTin - type: Sprite sprite: Objects/Consumable/Food/Baked/misc.rsi @@ -609,6 +609,38 @@ - ReagentId: Vitamin Quantity: 0.5 +- type: entity + name: cotton chèvre chaud + parent: FoodBakedChevreChaud + id: FoodBakedChevreChaudCotton + description: A disk of slightly melted chèvre flopped on top of a... cotton crostini, and toasted all-round. + components: + - type: FlavorProfile + flavors: + - bread + - nutty + - creamy + - smokey + - cotton + - type: Sprite + state: chevrechaud-cotton + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - ClothMade + - type: SolutionContainerManager + solutions: + food: + maxVol: 5 + reagents: + - ReagentId: Nutriment + Quantity: 1 + - ReagentId: Fiber + Quantity: 1 + - ReagentId: Vitamin + Quantity: 0.5 + - type: entity name: brownies parent: FoodBakedBase @@ -771,3 +803,35 @@ damage: types: Blunt: 0 # so the damage stats icon doesn't immediately give away the syndie ones + +- type: entity + name: cotton croissant + parent: FoodBakedCroissant + id: FoodBakedCroissantCotton + description: Buttery, flaky, fibery goodness. + components: + - type: FlavorProfile + flavors: + - bread + - butter + - cotton + - type: Sprite + state: croissant-cotton + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - ClothMade + - type: SolutionContainerManager + solutions: + food: + maxVol: 7 + reagents: + - ReagentId: Nutriment + Quantity: 1.5 + - ReagentId: Fiber + Quantity: 1.5 + - ReagentId: Butter + Quantity: 2 + - ReagentId: Vitamin + Quantity: 1 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index af7d75b175..30d0189492 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -315,6 +315,13 @@ - type: Construction graph: DoughRope node: start + - type: SolutionContainerManager + solutions: + food: + maxVol: 6 + reagents: + - ReagentId: Nutriment + Quantity: 5 - type: entity name: dough rope @@ -330,6 +337,13 @@ - type: Construction graph: DoughRope node: rolled + - type: SolutionContainerManager + solutions: + food: + maxVol: 6 + reagents: + - ReagentId: Nutriment + Quantity: 5 - type: entity name: cornmeal dough @@ -426,9 +440,9 @@ - cotton - type: Sprite state: cotton-dough - # - type: SliceableFood # TODO add it - # count: 3 - # slice: FoodDoughCottonSlice + - type: SliceableFood + count: 3 + slice: FoodDoughCottonSlice - type: Construction graph: CottonPizza node: start @@ -446,6 +460,59 @@ - ReagentId: Fiber Quantity: 10 +- type: entity + name: cotton dough slice + parent: FoodBakingBase + id: FoodDoughCottonSlice + description: A slice of cotton dough. + components: + - type: FlavorProfile + flavors: + - dough + - cotton + - type: Sprite + state: cotton-dough-slice + - type: Tag + tags: + - Slice + - type: Construction + graph: DoughRopeCotton + node: start + - type: SolutionContainerManager + solutions: + food: + maxVol: 6 + reagents: + - ReagentId: Nutriment + Quantity: 1.5 + - ReagentId: Fiber + Quantity: 3.5 + +- type: entity + name: dough rope + parent: FoodBakingBase + id: FoodDoughCottonRope + description: A thin noodle of cotton dough. Can be cooked into a cotton bagel. + components: + - type: FlavorProfile + flavors: + - dough + - cotton + - type: Sprite + state: cotton-dough-rope + - type: Construction + graph: DoughRopeCotton + node: rolled + - type: SolutionContainerManager + solutions: + food: + maxVol: 6 + reagents: + - ReagentId: Nutriment + Quantity: 1.5 + - ReagentId: Fiber + Quantity: 3.5 + - type: entity name: raw pastry base parent: FoodBakingBase @@ -499,6 +566,9 @@ - type: Construction graph: CottonPizza node: flat + - type: SliceableFood + count: 3 + slice: FoodCroissantRawCotton - type: entity name: pizza bread @@ -818,3 +888,16 @@ reagents: - ReagentId: Nutriment Quantity: 3 + +- type: entity + name: raw cotton croissant + parent: FoodCroissantRaw + id: FoodCroissantRawCotton + description: Buttery, flaky, fibery goodness waiting to happen. + components: + - type: FlavorProfile + flavors: + - dough + - cotton + - type: Sprite + state: croissant-raw-cotton diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/food/doughrope.yml b/Resources/Prototypes/Recipes/Construction/Graphs/food/doughrope.yml index 52a9a817cf..1b95d46dce 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/food/doughrope.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/food/doughrope.yml @@ -10,4 +10,18 @@ - tool: Rolling doAfter: 1 - node: rolled - entity: FoodDoughRope \ No newline at end of file + entity: FoodDoughRope + +- type: constructionGraph + id: DoughRopeCotton + start: start + graph: + - node: start + entity: FoodDoughCottonSlice + edges: + - to: rolled + steps: + - tool: Rolling + doAfter: 1 + - node: rolled + entity: FoodDoughCottonRope diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 1ec6fc7233..abfd0fd321 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -24,6 +24,14 @@ FoodDoughRope: 1 PoppySeeds: 1 +- type: microwaveMealRecipe + id: RecipeBagelCotton + name: cotton bagel recipe + result: FoodBagelCotton + time: 5 + solids: + FoodDoughCottonRope: 1 + #Burgers - type: microwaveMealRecipe @@ -458,6 +466,17 @@ solids: FoodDough: 1 +- type: microwaveMealRecipe + id: RecipeBaguetteCotton + name: baguette recipe + result: FoodBreadBaguetteCotton + time: 15 + reagents: + TableSalt: 5 + Blackpepper: 5 + solids: + FoodDoughCotton: 1 + - type: microwaveMealRecipe id: RecipeBaguetteSword name: baguette sword recipe @@ -1939,6 +1958,15 @@ FoodChevreSlice: 1 FoodBreadBaguetteSlice: 1 +- type: microwaveMealRecipe + id: RecipeFoodBakedChevreChaudCotton + name: cotton chevre chaud recipe + result: FoodBakedChevreChaudCotton + time: 5 + solids: + FoodChevreSlice: 1 + FoodBreadBaguetteCottonSlice: 1 + - type: microwaveMealRecipe id: RecipeCannabisButter name: cannabis butter recipe @@ -2067,6 +2095,15 @@ FoodCroissantRaw: 1 FoodButterSlice: 1 +- type: microwaveMealRecipe + id: RecipeCroissantCotton + name: cotton croissant recipe + result: FoodBakedCroissantCotton + time: 5 + solids: + FoodCroissantRawCotton: 1 + FoodButterSlice: 1 + - type: microwaveMealRecipe id: RecipeThrowingCroissant name: throwing croissant recipe diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/bagel-cottondough.png b/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/bagel-cottondough.png new file mode 100644 index 0000000000000000000000000000000000000000..57fbe72b5cf2a8ab6c82f69d09cf3ae1cd445671 GIT binary patch literal 543 zcmV+)0^t3LP)VAm z0BWCW0K|vR<0Tw6-hZJ5W(#5sP$}j$noZ&*9D?sZPTkYWZGSY)nzc6_A*^PgQp{_v zFpQUQLL-3SFyQ!Wy=i^G=H~u1VAPbDVMg+ zjAoNux%;@Iw)HJ2l;#0Qd%wDR>vEE7BLk$|69%1gcnOEGbUy$$%P*{St!7|pc2cuT zYs8N};chMiu(4flgEN7Ou<7UQb>{mG+xWv|iZzBzotk%=p*R@`rmN7<>w7WPXV~oD-ZORxU zV~lneXCz7M_BiPY{6ppx&0VHU1}n{~0}h hj3R&tAOh$)z)zQW?ZehZYO(+T002ovPDHLkV1iqU@gx8M literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/meta.json index fcd9dc077d..60e45949fd 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/meta.json @@ -1,17 +1,20 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Bagel and BagelPoppy were created by DrEnzyme", + "copyright": "Bagel and BagelPoppy were created by DrEnzyme. Bagel-cottondough by JuneSzalkowska.", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "bagel" - }, - { - "name": "bagel-poppy" - } + { + "name": "bagel" + }, + { + "name": "bagel-poppy" + }, + { + "name": "bagel-cottondough" + } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-equipped-BELT.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-equipped-BELT.png new file mode 100644 index 0000000000000000000000000000000000000000..b631cbea3eeec7d39b9b726bed4daed31d7c0637 GIT binary patch literal 432 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zvpiiKLn`LH zy|r=eAp-%n2d8I0s^Z6Z~vfN7A3UM~c3+UKO0M`Tu9x^G~AhGv;2uoK@bV#<-ec+GojJ{_Xo$ z9hF|k{a86m#$l;Z-tK#A7uBnj-fBruSu%TnkYv0$_u{BtHH9hf_$y~OP1vRHvpk`M z$?0v~;+f~BTlcmaNI5K?xvf3AVE*3Me>EoxKwJnS4{X2ijqT9O))NzQ5}bG*zGXON z^EY-*%Qou|O54Ph!`97i{U~Op6(cU={e10vhRA7Vv((F<#a??D#&|;Br!?|b+20pt z6(@dmo)NLuPZ56exA(#oYyGg@$wm9_0DZYCPx$fJsC_RCt{2+C5IgFcb&y7sLS=7*I!8ID>Nl-Xd_J;&p4&S6 zAb17f{`I5idZz7ePe!ZkgW%0*#Z6Um&NHD1ZD8|s%S1#k@1L|>t%KW3ElP)tR(yS4 zP}g&IL5S8_I}7qx6Y0>Jk{UGr@OH zu-{3}DA526_XO9GY^svCyS;d7J(X(M`tH2@2zEVFm+9dO0000000000;D_(!X1152 zL%uh>p*PFNBng1gitTHW>m{fCeYUj-+}7MwC5Lui>fKTF%Gqee4>t=UBD#8fn`AA5 zSOBDI24c4>5&&-N!(MToWLkBPM>M9%^#-t&kiT#Jx8Rb`nPrTEkmBs&R8 w^F1;Cn*a>=1eawYULTN>Z!H1<007L>7irS!^R3i@&j0`b07*qoM6N<$f^4S9fB*mh literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..61880dfe04063854aa2417e2d771a08e943e2f38 GIT binary patch literal 522 zcmV+l0`>igP)Px$#7RU!RCt{2+O1B*P!tF7fB8^^1c4YML4W~Gf@mLrG&q77qNqLqZ_w-w5J)f} zT7h3CkW7%EFg4Tx6%|W(fP)|x$kK&=+?Czt|C3F2bI<8%*PMF*A|fIpqRIl-mjB*E zRSR_&kjNLn+$7XWK;YVvq+MUck zyNct>p|QaOK3{1+M56IJ|nE@gqA|e3z1lN-4DS8o@1poj5 M07*qoM6N<$f}IuZO8@`> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton.png new file mode 100644 index 0000000000000000000000000000000000000000..fc00041207539a7e591298561c0fc5c49dd3efa3 GIT binary patch literal 660 zcmV;F0&D$=P)Px%PDw;TR9J=WmOp3{VHn1L*A}d)C4Yzz8i}TVB*9D;?14kFh(d-+hEQ-$=&FNm zLRW{b8N{Vna28@g5bDycgAgs6(FZ?mqZE@B2RA z%fUnw{bMPA3slIehGPx$PDw;TR9J=WlfOy>K@f*OHDGnbg%lQY1R?dMN}&%R`T{{jYYQ7oLD0uY9jm-R ziu59;x~s!pLfV9kaVsHaZOlpS{i@m7`SY7y1_FUVAQ1RtHdaZ}T3cfbaU3%o z4vC@&V+_@5_1E=&m9S`>BncvdQVJ1q_ad^gkRM6Y)GnAzCe~VOU;EGYwg2pV3p-6y z>sxozCrE2;_ls|ch@0FDx&X|I6&E)vRxpDuNs^$o_7YL>2~tYIbnI*qq43$zou|De zLB<%L(ta;+eRRlZURs(Qa7_!-9#OeQRIZ_vBFi#*&D-?}0BByFljk{6xrT@^D^?iI zOTgFEd7hJH8F3u@mi7ArfWcVk+?;XQdZKf4=KS?Wo7UwC^+ucS{RJ;?@AURc-U7VW ye5G_P;Ah48fZr9n>C_m6RnK_7inS`%3$7*HE8Jz7CA~b4`jTkQo}H1} zA-fZg6cZ$gqfufRlOlamZON>*um9IK&5C$*c{{A(iX%@!ya`cD(lsa55IrZ4$(qXj zZ=RkpI1qG?CZXZU_usl9vIF1SzW;UP``^b<_Xrnu#lIps4S$HfUD3J@AhrQ#mlaLh zh4W2le{iyH_E)Nt9X1SjJ%yGGwBA6|LXcJYoRfPOVHn3hCA1l=?BK-_-I-G$!m@`1F%rVlirz$!DCxF`PJ#!6 z@Df3PL350RK!gws1;G_uV-AJvsF#A>W-HXg?!I(bmOy$s?L=ttjs!uxpUeC5^8EO| z&kryd3sI{0gz*scSB?K)BN-qG8H z`|A=nUM$7_nkTlCj*_>j7d^UfPx%wMj%lR9J=WmOn@vVHn1L(TXvkCN_bzq770DO(At)BzUO(~ z=e;+98fy68p{aJ`c%M}Ouo(4BF0NL6&aFx}_+1VGV6-<^xRV1M!roDuY6Mjz!0&Ph z60xnL4S?`r3*PA|VqZQm)P6$vumuoBmLsIDQgT~I8#a4Cn7YB#O?*F2S67$#Qehof zSYhb#9XY0J3-G%ff_M5Gci%0E4igdaK_bGKL&v<=NzcR#;h(=5bLa?vdPdL03@=9> zmK0G^faHAc%?m<4H=VDh6e6|`k^mSC26<0>KQ3Q?eci4qLbV6vvfKNy*+s{}kI(Ui z)|mG?dDM{wAe}oW8jTX)kF%A}lFl`dN~QR%Zn>I4Km0|eZI3K5bcNxA!+J+y@y&<-8EL$s5+92D;EHrHdZRYa5!TeXg2KWf&nZ6$K!;I5|`d8TP+4;M%4t74vjEZNjFL`0rF3 zh@wb&o`)_N$m5pJzt^{+Z&GK#wM_-Euvj6EW5O^b4sQXtu}tRY=h)f%Gu;gIr2rzA z2jIzfc<#=iiylucAMgHQAWy3GV-j%`MJfmaC31O0E>GBW=yuvP9UJfZ5?%CY)N3rP zZjL2~2~J>HmMWLa6bc1i9)0ev&IVKVS^BjNfRyq>-Bc%VZBrRW1<&&^41@F2D!|xN zCNXjYu5GIRotuu$jb*aFwaeeD`b6?CZNRln)u`84ksFkMRtBk-QfgAlaovd|HqfZo zSl`;ER1|bOZGhA(pQr%uK)l507*qoM6N<$f?*rkQUCw| literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-slice.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-slice.png new file mode 100644 index 0000000000000000000000000000000000000000..ca7e2347d7b8fa3df3d0935354624f808937453e GIT binary patch literal 521 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|?gjXSxZXXn z<>8qf_fBqoa%$7V zaR2Dqi#r!RKC|ui!IgWK^sZ^mJg{Qoqq93N?OJ^I@ah$fsk;~VY@OS-x+P=p(!SQk&S5=GT$rwX8lF=!r+S zuiU+IrYSdeZb#X%9V<63nfm_y`)ALd-Mo48{Q2`Y%0H$96?v5e`33){3@{+H=L#LR z0h-$E>Eak-(fjtoPQk+t9IOFX9h{%VEcoBXb1*9<+tllgkNs0ancJ_`ZZrR5YIA>P zdf?$||YuX8omirD29x_{4S02*) zCcC4f9hq?GfIcfq)BOR{`awc)wYbCbytk|e~4Bvn@RmC`ubq!Y@l-(JYD@< J);T3K0RYKvEw%sv literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/croissant-raw-cotton.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/croissant-raw-cotton.png new file mode 100644 index 0000000000000000000000000000000000000000..f80dc893319c30fcca50270f110b99e15685c0cb GIT binary patch literal 307 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|v;urWT!C~) zu}w;p?VoS^zTKJd?s&rfn&7(=LjJEvSzY8aJRFR7{Q3X>T;sGZksbLS9vu5`C_b|ISFrL{ zT-kwZ6S{UkZaKW{gnJ7MSIY#yFHS23H^#Gwirr)I?+iHRePg>CM{k3diNf^SRyU`M zpZrVOSvDL_i!aWawu~bywnbIJO=YcBN#CVOjmMQ&NiAL%{#dzyv0KspK*}M0#nixi qy5Hgzb*3?zZ)E*3_uDW3_4>+LoNJYtmD7L@W$<+Mb6Mw<&;$UiZiBM` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json index 366f39f96a..dd802fb59f 100644 --- a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and baystation and modified by potato1234x at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and https://github.com/Baystation12/Baystation12/commit/a6067826de7fd8f698793f6d84e6c2f1f9b1f188. Tofu and tofu-slice were created by Discord user rosysyntax#6514. Chevrelog and chevredisk created by Github user deathride58, tortilladough tortillaflat and tortillaslice added by Phunny, butter-slice and croissant-raw taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380)", + "copyright": "Taken from tgstation and baystation and modified by potato1234x at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and https://github.com/Baystation12/Baystation12/commit/a6067826de7fd8f698793f6d84e6c2f1f9b1f188. Tofu and tofu-slice were created by Discord user rosysyntax#6514. Chevrelog and chevredisk created by Github user deathride58, tortilladough tortillaflat and tortillaslice added by Phunny, butter-slice and croissant-raw taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380). Croissant-raw-cotton, cotton-dough-slice and cotton-dough-rope by JuneSzalkowska", "size": { "x": 32, "y": 32 @@ -46,6 +46,12 @@ { "name": "cotton-dough" }, + { + "name": "cotton-dough-slice" + }, + { + "name": "cotton-dough-rope" + }, { "name": "dough" }, @@ -123,6 +129,9 @@ }, { "name": "croissant-raw" + }, + { + "name": "croissant-raw-cotton" } ] } From a7ca552dfcf193c8b8d706f7567eb12fcc33b69c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 29 Dec 2024 02:03:31 +0000 Subject: [PATCH 256/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 07f46efe86..6517c6ddc6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,16 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: The grappling gun is now available inside the salvage vendor. Additional - ones can be scavenged in space. - type: Add - - message: Removed the grappling gun from science research and lathes. - type: Remove - - message: Fixed issue that made the rope from the grappling gun not appear. - type: Fix - id: 7261 - time: '2024-09-02T04:33:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31737 - author: yuitop changes: - message: added in-hand sprite for Smile the Slime @@ -3936,3 +3924,17 @@ id: 7760 time: '2024-12-29T01:50:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33997 +- author: ArtisticRoomba, JuneSzalkowska + changes: + - message: New cotton dough slices and cotton dough rolls. + type: Add + - message: New cotton baguette, cotton crostini, cotton chevre-chaud, cotton bagel, + and cotton croissant recipes. You can make them by following the recipes for + regular baguettes, bagels, etc, but use cotton dough instead. + type: Add + - message: Slicing dough into thirds now divides the nutriment value into thirds. + Previously you could slice dough to triple your nutriment. + type: Fix + id: 7761 + time: '2024-12-29T02:02:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33508 From d6a9fe1c84ba803740b7526c210002de351520e7 Mon Sep 17 00:00:00 2001 From: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com> Date: Sat, 28 Dec 2024 21:25:39 -0600 Subject: [PATCH 257/263] Rolling joints no longer requires a filter (#34106) * Remove filters from joint crafting * err * hmmm * guhhh * yyyy * whitespace --------- Co-authored-by: Velcroboy --- Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml index 419d7bff33..fd613ae0a1 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml @@ -7,7 +7,6 @@ - to: joint steps: - material: PaperRolling - - material: CigaretteFilter - material: GroundCannabis doAfter: 2 - node: joint @@ -22,7 +21,6 @@ - to: jointRainbow steps: - material: PaperRolling - - material: CigaretteFilter - material: GroundCannabisRainbow doAfter: 2 - node: jointRainbow From da8bb996b174ac9b781b61c73a1ed206b93a4233 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 29 Dec 2024 03:26:46 +0000 Subject: [PATCH 258/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6517c6ddc6..c488dc4e61 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: yuitop - changes: - - message: added in-hand sprite for Smile the Slime - type: Add - id: 7262 - time: '2024-09-02T04:36:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31731 - author: EmoGarbage404 changes: - message: Space Carp and Sharkminnows are a bit weaker overall. @@ -3938,3 +3931,10 @@ id: 7761 time: '2024-12-29T02:02:25.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33508 +- author: Velcroboy + changes: + - message: Rolling joints no longer requires a cigarette filter. + type: Tweak + id: 7762 + time: '2024-12-29T03:25:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34106 From 072b973f3b6f3eccaeb19a5c36bcda134f822a45 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 29 Dec 2024 04:28:58 +0100 Subject: [PATCH 259/263] fix interdimensional teleporter desc (#34108) Update hand_teleporter.yml --- .../Prototypes/Entities/Objects/Devices/hand_teleporter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml index 094e3b4579..192aca65fc 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml @@ -20,7 +20,7 @@ suffix: Admeme parent: BaseItem name: interdimensional teleporter - description: allows you to open stable portal gates that are not limited by distance + description: Allows you to open stable portal gates that are not limited by distance. components: - type: Sprite sprite: /Textures/Objects/Devices/hand_teleporter.rsi @@ -29,4 +29,4 @@ color: green - type: HandTeleporter firstPortalPrototype: PortalGatewayBlue - secondPortalPrototype: PortalGatewayOrange \ No newline at end of file + secondPortalPrototype: PortalGatewayOrange From c2ffc25970a1f15ce81be1bce2e71f28572a7848 Mon Sep 17 00:00:00 2001 From: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com> Date: Sun, 29 Dec 2024 12:14:36 -0600 Subject: [PATCH 260/263] Adds kitchen/botany-locked maints airlock (#34116) Co-authored-by: Velcroboy --- .../Entities/Structures/Doors/Airlocks/access.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index f6889cbce0..fcdc655a37 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -969,6 +969,15 @@ containers: board: [ DoorElectronicsKitchen ] +- type: entity + parent: AirlockMaintServiceLocked + id: AirlockMaintKitchenHydroLocked + suffix: Kitchen/Hydroponics, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchenHydroponics ] + - type: entity parent: AirlockMaint id: AirlockMaintIntLocked From 608b433da4905c41928c77b150f75048b236ea25 Mon Sep 17 00:00:00 2001 From: Dylan Hunter Whittingham <45404433+DylanWhittingham@users.noreply.github.com> Date: Sun, 29 Dec 2024 20:23:18 +0000 Subject: [PATCH 261/263] Added ID entry for captain on Bagel (#34120) added id for captain Co-authored-by: dylanhunter --- Resources/Maps/bagel.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 1e14ea21b2..015e4500a5 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -49587,6 +49587,13 @@ entities: - type: Transform pos: 23.743336,21.526909 parent: 60 +- proto: CaptainIDCard + entities: + - uid: 60213 + components: + - type: Transform + pos: 237.90862,73.403786 + parent: 60 - proto: CarbonDioxideCanister entities: - uid: 15245 From 4acfec8e36d5ae975486499a815678ffc2884b50 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Mon, 30 Dec 2024 02:37:05 -0500 Subject: [PATCH 262/263] Amber Station Overhaul (#34113) * Step 01: Remade arrivals * Nearly finished, also added new beacons and a holopad * Wrapped up all changes, also added a beacon for the docking arm --- Resources/Locale/en-US/holopad/holopad.ftl | 1 + .../en-US/navmap-beacons/station-beacons.ftl | 7 + Resources/Maps/amber.yml | 86221 +++++++++------- .../Objects/Devices/station_beacon.yml | 56 + .../Entities/Structures/Machines/holopad.yml | 12 +- 5 files changed, 49349 insertions(+), 36948 deletions(-) diff --git a/Resources/Locale/en-US/holopad/holopad.ftl b/Resources/Locale/en-US/holopad/holopad.ftl index 8a268eb1c3..a843b6a0e4 100644 --- a/Resources/Locale/en-US/holopad/holopad.ftl +++ b/Resources/Locale/en-US/holopad/holopad.ftl @@ -89,6 +89,7 @@ holopad-medical-paramedic = Medical - Paramedic holopad-medical-virology = Medical - Virology holopad-medical-front = Medical - Front holopad-medical-breakroom = Medical - Breakroom +holopad-medical-clinic = Medical - Clinic # Cargo holopad-cargo-front = Cargo - Front diff --git a/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl b/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl index a2664a44ca..89b4266ddc 100644 --- a/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl +++ b/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl @@ -9,6 +9,7 @@ station-beacon-hop = HOP station-beacon-security = Security station-beacon-brig = Brig +station-beacon-brig-med = Brig Med station-beacon-warden = Warden station-beacon-hos = HOS station-beacon-armory = Armory @@ -25,6 +26,8 @@ station-beacon-cryonics = Cryopods station-beacon-cmo = CMO station-beacon-morgue = Morgue station-beacon-surgery = Surgery +station-beacon-psychology = Psychology +station-beacon-clinic = Clinic station-beacon-science = Science station-beacon-research-and-development = Research @@ -62,12 +65,16 @@ station-beacon-janitor = Janitor station-beacon-ai = AI station-beacon-ai-sat = AI Sat station-beacon-ai-core = AI Core +station-beacon-ai-upload = AI Upload +station-beacon-ai-power = AI Power station-beacon-arrivals = Arrivals station-beacon-evac = Evac +station-beacon-docking-arm = Docking Arm station-beacon-eva-storage = EVA Storage station-beacon-chapel = Chapel station-beacon-library = Library +station-beacon-reporter = Reporter station-beacon-dorms = Dorms station-beacon-theater = Theater station-beacon-tools = Tools diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index 039ad828f0..3117fef42d 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -14,10 +14,13 @@ tilemap: 50: FloorCarpetClown 63: FloorCarpetOffice 28: FloorDark + 7: FloorDarkDiagonal 65: FloorDarkDiagonalMini 3: FloorDarkMono 64: FloorDarkPavement 61: FloorDarkPavementVertical + 6: FloorDarkPlastic + 10: FloorEighties 29: FloorFreezer 73: FloorGlass 66: FloorGold @@ -26,11 +29,14 @@ tilemap: 2: FloorKitchen 36: FloorLino 62: FloorMime + 8: FloorMowedAstroGrass 15: FloorRGlass 69: FloorReinforced + 5: FloorShuttleGrey 9: FloorSteel 70: FloorSteelCheckerDark 56: FloorSteelCheckerLight + 4: FloorSteelDamaged 33: FloorSteelDiagonal 26: FloorSteelMini 47: FloorSteelPavement @@ -75,91 +81,91 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: CQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABDwAAAAADDwAAAAADDwAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAABDwAAAAABDwAAAAADDwAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABGgAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADwAAAAACDwAAAAABDwAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAAAGgAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDwAAAAADDwAAAAABDwAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADwAAAAAADwAAAAACDwAAAAADCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACGgAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACDwAAAAABDwAAAAADDwAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACGgAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: CQAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAADCQAAAAADCQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAACCQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAADCQAAAAABCQAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: IwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADIwAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABIwAAAAACIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHAAAAAABHAAAAAABIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGgAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAABIwAAAAAAIwAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADHAAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAIIwAAAAADIwAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABHAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAAHAAAAAABIwAAAAACIwAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAAAHAAAAAACKQAAAAAAKwAAAAABKwAAAAAAKwAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAAHAAAAAABIwAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAAAHAAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAB + tiles: IwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAABIwAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAAGgAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAABIwAAAAADIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAIwAAAAAAIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAACCQAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAAAIwAAAAAAIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAAHAAAAAADIwAAAAADIwAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAABIwAAAAABIwAAAAAAIwAAAAADHAAAAAACHAAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACIwAAAAADIwAAAAACDwAAAAABDwAAAAABIwAAAAADIwAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAADIwAAAAADDwAAAAACDwAAAAACIwAAAAACIwAAAAABHAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADHAAAAAAAIwAAAAABIwAAAAACDwAAAAABDwAAAAABIwAAAAADIwAAAAACHAAAAAABKQAAAAAAKwAAAAABKwAAAAADKwAAAAAADgAAAAAACQAAAAAAHAAAAAAADgAAAAAAHAAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAAAIwAAAAADHAAAAAACDgAAAAAAKwAAAAACKwAAAAADKwAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAD version: 6 -1,-4: ind: -1,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAIwAAAAABIwAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAADIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAB + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAIwAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAABIwAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAACIwAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAAAQAAAAAAAQAAAAACAQAAAAABDgAAAAAAIwAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACIwAAAAACIwAAAAAAIwAAAAABIwAAAAADIwAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: CQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAMAAAAAAAMAAAAAAEMAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACLwAAAAABLwAAAAACLwAAAAABLwAAAAABLwAAAAABLwAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAACLwAAAAADAAAAAAAHLwAAAAABLwAAAAACLwAAAAADAAAAAAABAAAAAAAAAAAAAAAALwAAAAAALwAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABAAAAAAAALwAAAAACLwAAAAACLwAAAAACAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAADDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAAAAAAAKLwAAAAACLwAAAAACLwAAAAADAAAAAAAIAAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAMAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADHAAAAAAAHAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADLwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAABLwAAAAABAQAAAAACLwAAAAABLwAAAAABLwAAAAAAAQAAAAACAQAAAAAAAQAAAAAALwAAAAAALwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABAQAAAAADLwAAAAACLwAAAAABLwAAAAADAQAAAAADAQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACLwAAAAAALwAAAAACLwAAAAADAQAAAAACAQAAAAADDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAALwAAAAACLwAAAAAALwAAAAAAAQAAAAADAQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAALwAAAAADLwAAAAACLwAAAAACAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACAAAAAAACLwAAAAABLwAAAAADLwAAAAABAAAAAAAAAAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAAHAAAAAAACQAAAAACCQAAAAABDgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAAAMQAAAAABMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADCQAAAAAACQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAADLwAAAAADLwAAAAACLwAAAAADAQAAAAACAQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAAAQAAAAACLwAAAAADLwAAAAABLwAAAAACAQAAAAACAQAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACCQAAAAABCQAAAAABDgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABCQAAAAACCQAAAAACDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: LAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAADLgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAALAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAACCQAAAAABHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADCQAAAAACCQAAAAACCQAAAAADHAAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACQAAAAAC + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAAHQAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAACCQAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAADCQAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADDgAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABCQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAACCQAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: MwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAANwAAAAAANwAAAAABNwAAAAACNwAAAAACCQAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAABMwAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAANwAAAAADNwAAAAADNwAAAAAANwAAAAABDgAAAAAADgAAAAAAMwAAAAACDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAABOAAAAAACDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAAOAAAAAABOAAAAAADOAAAAAABOAAAAAAAOAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAADOAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAABOAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAAA + tiles: MwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAADCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAADCQAAAAACCQAAAAACCQAAAAADDgAAAAAANwAAAAAANwAAAAAANwAAAAABNwAAAAABCQAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAANwAAAAABNwAAAAAANwAAAAADNwAAAAACDgAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAOAAAAAACOAAAAAAAOAAAAAABOAAAAAADOAAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAOAAAAAADOAAAAAADOAAAAAADOAAAAAADOAAAAAADDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABOAAAAAABOAAAAAADOAAAAAAAOAAAAAADOAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAOAAAAAACOAAAAAAAOAAAAAACOAAAAAAAOAAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: DgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABIwAAAAABIwAAAAACIwAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAAIwAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAACDgAAAAAAHAAAAAACIwAAAAAAIwAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAACDgAAAAAAHAAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAACQAAAAACHAAAAAAAHAAAAAAAHAAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAAAMwAAAAADCQAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAADCQAAAAABHAAAAAABHAAAAAAAHAAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAAD + tiles: DgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACIwAAAAADIwAAAAADDgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAACDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADDgAAAAAAIwAAAAABIwAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAAHAAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABHAAAAAABHAAAAAACHAAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAAAHAAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAACMwAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAADCQAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAHAAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAABMwAAAAACMwAAAAABCQAAAAACCQAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAAD version: 6 -2,-4: ind: -2,-4 - tiles: CQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAOQAAAAADOQAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAAIwAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAHAAAAAACHAAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAACIwAAAAACIwAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAACIwAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAIwAAAAADIwAAAAAD + tiles: DgAAAAAAHAAAAAAAHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAADHAAAAAAAHAAAAAABOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAOQAAAAAAOQAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAADHAAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAABIwAAAAABDgAAAAAAHAAAAAADHAAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAACIwAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAAIwAAAAABIwAAAAAD version: 6 -2,-5: ind: -2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: CQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: DgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAACMwAAAAABMwAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAACHAAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAAAMwAAAAADMwAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAIwAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAF + tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADHAAAAAABHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAAIwAAAAACIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAAIwAAAAADIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAC version: 6 -2,1: ind: -2,1 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAMAAAAAAAAAAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAACAQAAAAACAQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAADAQAAAAAADgAAAAAADgAAAAAA version: 6 -2,2: ind: -2,2 - tiles: LAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAAHAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAADCQAAAAAACQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABHAAAAAABHAAAAAACLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAABCQAAAAACCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAADHAAAAAADLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAAADgAAAAAAHAAAAAACLgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACDgAAAAAAHAAAAAABLgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAACMwAAAAABMwAAAAABDgAAAAAAHAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAADLAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAACMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABMwAAAAABMwAAAAADMwAAAAADCQAAAAACDgAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAADMwAAAAABMwAAAAADDgAAAAAACQAAAAACDgAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADDgAAAAAALAAAAAAADgAAAAAACQAAAAAAMwAAAAADMwAAAAADDgAAAAAACQAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABMwAAAAADMwAAAAACMwAAAAABCQAAAAABDgAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADHAAAAAACHAAAAAACHAAAAAACDgAAAAAAHAAAAAABDgAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACHAAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: LgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAADLgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAACDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAMwAAAAADMwAAAAAADgAAAAAAMwAAAAADMwAAAAABAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAMMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABAAAAAAAHAAAAAAAEAAAAAAAAAAAAAAAEAAAAAAAAMwAAAAADMwAAAAADDgAAAAAAMQAAAAABMQAAAAAAMQAAAAABLgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAADDgAAAAAAMwAAAAACMwAAAAADMwAAAAABLgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAMwAAAAABMwAAAAACMwAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAABLgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAMwAAAAACMwAAAAADMwAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAACLgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABMwAAAAADMwAAAAADMwAAAAADDgAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAAD version: 6 -3,-4: ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABGgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAABHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAABIwAAAAABIwAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABIwAAAAAAIwAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAD version: 6 -3,-5: ind: -3,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAD version: 6 -3,0: ind: -3,0 - tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAACDgAAAAAAMwAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAADMQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAADDgAAAAAACQAAAAABDgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAABDgAAAAAAMwAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAABMQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 -3,2: ind: -3,2 @@ -167,159 +173,155 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: HAAAAAADDgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HAAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAACCQAAAAABDgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABLgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADLAAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAB version: 6 -4,-4: ind: -4,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -5,-2: ind: -5,-2 tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 - -5,-3: - ind: -5,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + -6,-4: + ind: -6,-4 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAA + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADDgAAAAAAPAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAFPAAAAAACIwAAAAABPAAAAAAGDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADHAAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAMAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAAAAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAADPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAACDgAAAAAAHAAAAAAAPQAAAAAB + tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAADAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAACAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: IQAAAAAAIQAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADwAAAAADDwAAAAADDwAAAAAACQAAAAABHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAACCQAAAAADDwAAAAABMgAAAAAADwAAAAADCQAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADwAAAAABDwAAAAACDwAAAAADCQAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: IQAAAAABIQAAAAACDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADwAAAAABDwAAAAACDwAAAAADCQAAAAABHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAABCQAAAAACCQAAAAAADwAAAAACMgAAAAAADwAAAAAACQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADwAAAAAADwAAAAACDwAAAAABCQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: CQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAAAAAAAAADgAAAAAADgAAAAAAIwAAAAADGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAACIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIQAAAAACIQAAAAADDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAACDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADIQAAAAADIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAB + tiles: CQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAAIwAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAAAQAAAAABAQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACAQAAAAAADgAAAAAADgAAAAAAIwAAAAACGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADDgAAAAAAIwAAAAADIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIQAAAAADIQAAAAADDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAAIQAAAAADIQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAAMQAAAAAAMQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAMQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAC + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAMQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADCQAAAAACCQAAAAABCQAAAAADDgAAAAAAMQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAADAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAAMQAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAACAQAAAAADCQAAAAADCQAAAAACCQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAADDgAAAAAAAQAAAAABAQAAAAAAAQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAAB version: 6 0,-5: ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAA version: 6 0,0: ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAKMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACPQAAAAACLAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACOwAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABOwAAAAAAOwAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAALMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADPQAAAAACLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADLwAAAAADLwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAABCQAAAAAALwAAAAABLwAAAAAALwAAAAADDgAAAAAALwAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALAAAAAAAMAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABLwAAAAACLwAAAAAALwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAAALwAAAAADLwAAAAAADgAAAAAALwAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAA version: 6 0,1: ind: 0,1 - tiles: CQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: CQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA version: 6 0,2: ind: 0,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACAAAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABAAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAAAHAAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADHAAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAADHAAAAAACDgAAAAAACQAAAAAB + tiles: HgAAAAAADgAAAAAASgAAAAACHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAASgAAAAADSgAAAAADSgAAAAADSgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAACHAAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAABQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACAwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAAwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAACQAAAAACCQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: CQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAABHAAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAACDwAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAAACQAAAAACDwAAAAACCQAAAAADCQAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACHAAAAAABDgAAAAAAHAAAAAACCQAAAAACCQAAAAAACQAAAAABHAAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAAA + tiles: CQAAAAADCQAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAAHAAAAAACDgAAAAAAHAAAAAADCQAAAAACDwAAAAAACQAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADCQAAAAAADwAAAAADCQAAAAABCQAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAAHAAAAAABDgAAAAAAHAAAAAABCQAAAAACCQAAAAADCQAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: DgAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABIwAAAAACIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAABIwAAAAADIwAAAAADIwAAAAADIwAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAADIwAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAADIwAAAAABIwAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAA + tiles: DgAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACIwAAAAACIwAAAAAAIwAAAAACIwAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAAAIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAACIwAAAAABIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAECQAAAAADCQAAAAADCQAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABDgAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAADHAAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAAMwAAAAABMwAAAAADDgAAAAAAQQAAAAAAQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAAMwAAAAABMwAAAAABDgAAAAAAQQAAAAADQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAIwAAAAACIwAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAAQQAAAAADQQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAMwAAAAADMwAAAAACDgAAAAAAQQAAAAAAQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAADMQAAAAADDgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAACMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAQgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAQgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA version: 6 1,0: ind: 1,0 - tiles: DgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAADHAAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAAAHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAACQAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAACQAAAAACHAAAAAACHAAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADQAAAAAABDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABLwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAB + tiles: DgAAAAAADgAAAAAAAwAAAAACAwAAAAACHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAAwAAAAAAAwAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAAAHAAAAAAAHAAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADHAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACDgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAD version: 6 1,1: ind: 1,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAMAAAAAAADgAAAAAAMAAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAADBAAAAAADCQAAAAABCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAAACQAAAAADRwAAAAAARwAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAABAAAAAABCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,2: ind: 1,2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: CQAAAAAADgAAAAAAQAAAAAADQAAAAAADDwAAAAACQAAAAAAAQAAAAAACQAAAAAABQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAAQAAAAAADQAAAAAACDwAAAAADQAAAAAABQAAAAAAADgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAABDwAAAAAAQAAAAAABQAAAAAACQAAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAQAAAAAADQAAAAAABQAAAAAACQAAAAAAAQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAABIwAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAQwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAADDgAAAAAAQAAAAAABQAAAAAABDwAAAAACQAAAAAAAQAAAAAABQAAAAAABQAAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAAQAAAAAABQAAAAAABDwAAAAADQAAAAAADQAAAAAAADgAAAAAAQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAQAAAAAADQAAAAAADDwAAAAACQAAAAAACQAAAAAADQAAAAAABQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAACIwAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAACIwAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAABIwAAAAADIwAAAAADIwAAAAACDgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADCQAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAADCAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: CQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAAOQAAAAABOQAAAAAAOQAAAAADOQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAACOQAAAAAAOQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABOQAAAAADOQAAAAACOQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACGgAAAAAALwAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABGgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADGgAAAAABLwAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABGgAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADGgAAAAABLwAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACGgAAAAABDgAAAAAACQAAAAACDgAAAAAAQAAAAAACQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADGgAAAAADLwAAAAAACQAAAAAADgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAACQAAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAABDwAAAAADQAAAAAABQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAB + tiles: CQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAAOQAAAAAAOQAAAAAAOQAAAAACOQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAAAOQAAAAAAOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADOQAAAAABOQAAAAACOQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABGgAAAAADLwAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACGgAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAAGgAAAAAALwAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABGgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABGgAAAAABLwAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAAGgAAAAADDgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAAAQAAAAAACQAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABGgAAAAABLwAAAAADCQAAAAADDgAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAABQAAAAAACQAAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAAQAAAAAAAQAAAAAACDwAAAAADQAAAAAACQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAB version: 6 2,-3: ind: 2,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAAHAAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAADIQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAAHAAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACIQAAAAAAIQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAAwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAABLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABRwAAAAABLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADDgAAAAAA version: 6 2,0: ind: 2,0 - tiles: QwAAAAADCQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAQwAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAIwAAAAABDgAAAAAAIwAAAAACDgAAAAAADgAAAAAAQwAAAAACCQAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAACCQAAAAACDgAAAAAAMAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAAMAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: CQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA version: 6 2,1: ind: 2,1 - tiles: QwAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAQwAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: CQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAABBAAAAAAECQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAABCQAAAAACBAAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAADRwAAAAABGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAARwAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: CQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA + tiles: CQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAAAGgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAADDgAAAAAAGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAAALwAAAAAALwAAAAABGgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACGgAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAAAGgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAADGgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAACLwAAAAACLwAAAAADGgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAADLwAAAAAALwAAAAADGgAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADGgAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAAALwAAAAABLwAAAAACGgAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAACGgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAASAAAAAAASAAAAAACSAAAAAABDgAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAABLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSAAAAAABSAAAAAAASAAAAAACHAAAAAABHAAAAAAADgAAAAAAHAAAAAACSQAAAAACSQAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAASAAAAAACSAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAASAAAAAACSAAAAAAASAAAAAADDgAAAAAAHAAAAAACDgAAAAAAHAAAAAABDgAAAAAAHAAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABSAAAAAABSAAAAAADSAAAAAACHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACSQAAAAADSQAAAAADLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAADSAAAAAAASAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAHAAAAAADDgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAADgAAAAAARgAAAAACRgAAAAADDgAAAAAARgAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAAADgAAAAAAHAAAAAADDgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAADDgAAAAAARgAAAAADRgAAAAAADgAAAAAARgAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAAMwAAAAABDgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 3,0: ind: 3,0 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,1: ind: 3,1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-1: ind: 4,-1 @@ -327,35 +329,35 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAAQAAAAAACQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAAAQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAADRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAAQAAAAAABDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAABDgAAAAAAQAAAAAADQAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAACDgAAAAAAQAAAAAAAQAAAAAACQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAAHAAAAAADRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAAMwAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAADDgAAAAAADgAAAAAADgAAAAAAQAAAAAABDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAACQAAAAAABDgAAAAAAQAAAAAACQAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 4,0: ind: 4,0 tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 - -4,-5: - ind: -4,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAA + -5,-5: + ind: -5,-5 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAA version: 6 6,-2: ind: 6,-2 - tiles: QAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAALAAAAAAARwAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABHAAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAACMwAAAAABMwAAAAACRwAAAAACMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAAAMwAAAAACMwAAAAACMwAAAAADDgAAAAAAMwAAAAAAMwAAAAABDgAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAACDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAALAAAAAAASQAAAAADHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAADLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAADLAAAAAAARwAAAAABRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAAADgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAADMwAAAAADRwAAAAABMwAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAACDgAAAAAAMwAAAAABMwAAAAABDgAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAABLAAAAAAALAAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAACDgAAAAAAMwAAAAADMwAAAAACMwAAAAAALAAAAAAASQAAAAADHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAACSQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAACSQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAACCQAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACLgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAARwAAAAABCQAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACDgAAAAAABAAAAAACBAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAADRwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,2: ind: -4,2 @@ -375,11 +377,11 @@ entities: version: 6 0,-6: ind: 0,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAARwAAAAACLgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAAABAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADBAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABRwAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAACPAAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAADPAAAAAAEDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 6,-3: ind: 6,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,1: ind: -4,1 @@ -387,11 +389,11 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAACMwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAABQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAACDgAAAAAAQAAAAAADDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAACDgAAAAAADgAAAAAAQAAAAAACDgAAAAAA + tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAACMwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAABQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAPQAAAAADDgAAAAAAQAAAAAAADgAAAAAAQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAADDgAAAAAADgAAAAAAQAAAAAADDgAAAAAA version: 6 - -5,-5: - ind: -5,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAA + -6,-5: + ind: -6,-5 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 3,-6: ind: 3,-6 @@ -399,27 +401,55 @@ entities: version: 6 4,-4: ind: 4,-4 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAACSgAAAAABSgAAAAABSgAAAAACSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAACSQAAAAACHAAAAAABHAAAAAABSgAAAAACSgAAAAAASgAAAAABSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADSQAAAAACSQAAAAADSQAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAABSgAAAAABSgAAAAAASgAAAAACSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABLgAAAAAASQAAAAACSQAAAAADHAAAAAABHAAAAAAASgAAAAACSgAAAAAASgAAAAADSgAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABSQAAAAAASQAAAAACSQAAAAADHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: PAAAAAABIwAAAAABDgAAAAAALAAAAAAAPAAAAAAFDgAAAAAAIwAAAAABIwAAAAABIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADRwAAAAACLAAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAACPAAAAAAEIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAAPAAAAAAAPAAAAAAEDgAAAAAADgAAAAAADgAAAAAAPAAAAAACIwAAAAAAIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGPAAAAAAEIwAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADPAAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSgAAAAADDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAADSgAAAAADDgAAAAAASgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: PAAAAAAFIwAAAAAADgAAAAAALAAAAAAAPAAAAAAFDgAAAAAAIwAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACRwAAAAAALAAAAAAADgAAAAAAIwAAAAADDgAAAAAAIwAAAAADPAAAAAAFIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACPAAAAAAGPAAAAAADDgAAAAAADgAAAAAADgAAAAAAPAAAAAABIwAAAAADIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAADPAAAAAAGIwAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAAAPAAAAAAEDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACSgAAAAABDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAALAAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAABSgAAAAADDgAAAAAASgAAAAACSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-6: ind: 4,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAADgAAAAAAPAAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAADDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAACDgAAAAAADgAAAAAAIwAAAAADPAAAAAACDgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACDgAAAAAAPAAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAAIwAAAAADDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAEDgAAAAAADgAAAAAAIwAAAAABPAAAAAAGDgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAARwAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAARwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAARwAAAAACDgAAAAAARwAAAAACDgAAAAAARwAAAAABHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAARwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-4: ind: 5,-4 tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 + -1,-7: + ind: -1,-7 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + version: 6 + 0,-7: + ind: 0,-7 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + version: 6 + 1,-7: + ind: 1,-7 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + version: 6 + -3,-6: + ind: -3,-6 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAB + version: 6 -2,-6: ind: -2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + version: 6 + -4,-5: + ind: -4,-5 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + version: 6 + -5,-3: + ind: -5,-3 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + version: 6 + -6,-3: + ind: -6,-3 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 - type: Broadphase - type: Physics @@ -461,18 +491,6 @@ entities: id: Arrows decals: 4235: -52,-13 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 11180: -1,-10 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 11179: 1,-8 - node: zIndex: 1 color: '#DE3A3A96' @@ -508,6 +526,22 @@ entities: 10826: 1,26 10827: 7,26 10828: 7,16 + 15952: -36,-32 + 15955: -36,-29 + 18617: 28,-5 + 18618: 27,-5 + 18619: 26,-5 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bot + decals: + 15805: -34,-6 + 15806: -34,-4 + 15807: -34,-3 + 17694: -16,-17 + 18555: 28,2 + 18556: 28,1 - node: color: '#D381C996' id: BotGreyscale @@ -522,6 +556,11 @@ entities: id: BotGreyscale decals: 9810: 34,-28 + - node: + color: '#D4D4D496' + id: BotGreyscale + decals: + 18583: 18,0 - node: color: '#FBB2FFFF' id: BotGreyscale @@ -534,76 +573,51 @@ entities: color: '#FFFFFFFF' id: BotGreyscale decals: - 1688: 23,-12 - 1689: 22,-12 - 1690: 22,-13 - 1691: 23,-13 - 1692: 24,-13 - 1693: 24,-12 - 1696: 23,-11 - 3071: -41,-46 - 3072: -41,-47 - 3073: -41,-49 - 3074: -39,-49 - 3075: -39,-48 - 3076: -39,-47 + 15945: -47,-47 + 15946: -47,-45 + 15947: -47,-44 + 15948: -45,-44 + 15949: -45,-45 + 15950: -45,-46 + 15951: -45,-47 - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 15902: 25,-7 + 15903: 25,-8 + 15904: 26,-8 + 15905: 26,-9 + 15906: 25,-9 + 15907: 24,-9 + 15908: 24,-8 + - node: + zIndex: 1 color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 1694: 24,-11 + 15901: 26,-7 + 17847: 20,-3 + 17848: 21,-3 - node: + zIndex: 1 color: '#FFFFFFFF' id: BotRightGreyscale decals: - 1695: 22,-11 - - node: - color: '#334E6DC8' - id: BrickBoxOverlay - decals: - 1365: 20,-1 - 1378: 5,-18 + 15900: 24,-7 - node: color: '#52B4E996' - id: BrickBoxOverlay + id: BrickLineOverlayE decals: - 1362: 20,3 - 1377: 7,-18 + 18580: 22,1 + 18581: 22,2 - node: - color: '#9FED5896' - id: BrickBoxOverlay + color: '#52B4E996' + id: BrickLineOverlayN decals: - 1368: 22,-1 - 1374: 6,-20 - - node: - color: '#A4610696' - id: BrickBoxOverlay - decals: - 1370: 22,3 - 1379: 9,-20 - - node: - color: '#D381C996' - id: BrickBoxOverlay - decals: - 1369: 22,2 - 1380: 8,-20 - - node: - color: '#D4D4D428' - id: BrickBoxOverlay - decals: - 1372: 22,0 - 1373: 5,-20 - - node: - color: '#DE3A3A96' - id: BrickBoxOverlay - decals: - 1375: 9,-18 - - node: - color: '#EFB34196' - id: BrickBoxOverlay - decals: - 1363: 20,2 - 1376: 8,-18 + 18584: 21,3 + 18585: 20,3 - node: zIndex: 1 color: '#FFFFFFFF' @@ -629,6 +643,8 @@ entities: id: BrickTileDarkCornerNw decals: 4135: -13,-37 + 17687: -38,-53 + 17780: 33,0 - node: zIndex: 1 color: '#FFFFFFFF' @@ -646,19 +662,14 @@ entities: id: BrickTileDarkInnerNe decals: 1449: -7,-42 - 14878: 12,-10 15001: -6,-41 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 14877: 14,-10 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: 14364: -13,-41 + 17688: -38,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw @@ -670,7 +681,6 @@ entities: decals: 1441: -7,-41 1442: -7,-40 - 14874: 12,-9 15002: -6,-40 15003: -6,-39 - node: @@ -689,7 +699,6 @@ entities: 1444: -11,-38 1445: -10,-38 1446: -9,-38 - 14875: 13,-10 - node: zIndex: 1 color: '#FFFFFFFF' @@ -714,6 +723,12 @@ entities: 14372: -21,-41 14373: -22,-41 15020: -8,-38 + 17685: -37,-53 + 17693: -39,-54 + 19371: 14,26 + 19372: 13,26 + 19373: 12,26 + 19374: 11,26 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -741,7 +756,6 @@ entities: 1422: -12,-41 1427: -9,-43 10356: -9,-44 - 14876: 14,-9 - node: zIndex: 1 color: '#FFFFFFFF' @@ -750,23 +764,83 @@ entities: 4136: -13,-38 4137: -13,-39 4138: -13,-40 + 17781: 33,-1 + 17783: 33,-3 + 17784: 33,-4 + 17960: 33,-2 - node: + zIndex: 2 color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 17968: 33,-5 + - node: + zIndex: 1 + color: '#95171093' id: BrickTileSteelBox decals: - 9261: 5,-19 + 17735: -47,-57 - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelCornerSe + decals: + 17736: -46,-58 + - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelCornerSw + decals: + 17737: -48,-58 + - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelLineE + decals: + 17738: -46,-57 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 18565: 27,2 + 18566: 27,1 + - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelLineS + decals: + 17739: -47,-58 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 19367: 14,26 + 19368: 13,26 + 19369: 12,26 + 19370: 11,26 + - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelLineW + decals: + 17740: -48,-57 + - node: + zIndex: 1 color: '#3EB38896' id: BrickTileWhiteBox decals: - 12153: 34,-8 - 12154: 29,-10 - 12155: 29,-11 + 17185: 29,-9 + 17186: 29,-8 + 17187: 29,-7 - node: - color: '#52B4E996' + zIndex: 1 + color: '#A4610696' id: BrickTileWhiteBox decals: - 9241: 20,1 + 17176: 11,-20 + 17177: 11,-19 - node: zIndex: 1 color: '#D381C996' @@ -775,21 +849,28 @@ entities: 9613: 35,-47 9614: 35,-45 - node: - color: '#DE3A3A96' + zIndex: 1 + color: '#D4D4D496' id: BrickTileWhiteBox decals: - 9242: 20,0 + 17180: 15,-20 + 17181: 15,-19 + 17184: 14,-20 - node: zIndex: 1 color: '#DE3A3A96' id: BrickTileWhiteBox decals: 9418: -31,3 + 17182: 17,-19 + 17183: 17,-18 - node: - color: '#FF000093' + zIndex: 1 + color: '#EFB34196' id: BrickTileWhiteBox decals: - 14879: 13,-9 + 17178: 13,-20 + 17179: 13,-19 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe @@ -801,7 +882,7 @@ entities: id: BrickTileWhiteCornerNe decals: 12370: -20,-47 - 14860: -24,-16 + 15787: -37,-15 - node: zIndex: 1 color: '#52B4E996' @@ -814,6 +895,13 @@ entities: id: BrickTileWhiteCornerNe decals: 14941: -34,17 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteCornerNe + decals: + 15139: -9,-92 + 15141: -7,-93 - node: color: '#D381C996' id: BrickTileWhiteCornerNe @@ -825,24 +913,40 @@ entities: id: BrickTileWhiteCornerNe decals: 10881: -8,-18 - 11039: -1,-18 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteCornerNe decals: 2236: -8,-11 + 15881: -1,-18 + 17192: 10,-16 + 17211: 10,-19 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: 11357: -25,-45 + - node: + zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 15788: -39,-15 - node: zIndex: 1 color: '#606C5B93' id: BrickTileWhiteCornerNw decals: 14940: -35,17 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteCornerNw + decals: + 15143: -12,-92 + 15155: 9,-93 + 15156: 11,-92 - node: color: '#D381C996' id: BrickTileWhiteCornerNw @@ -863,6 +967,8 @@ entities: decals: 2232: -14,-11 11031: -6,-18 + 17189: 3,-19 + 17191: 8,-16 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe @@ -873,7 +979,19 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 14859: -24,-17 + 15786: -37,-16 + - node: + zIndex: 1 + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 17577: 22,-1 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteCornerSe + decals: + 15153: -7,-96 - node: color: '#D381C996' id: BrickTileWhiteCornerSe @@ -884,31 +1002,31 @@ entities: id: BrickTileWhiteCornerSe decals: 10892: -8,-22 - 11053: -1,-16 - 11940: -1,-22 11941: -4,-22 - node: - color: '#FF000093' + zIndex: 1 + color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 14881: 14,-10 + 15885: -1,-22 + 17210: 10,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: 11354: -25,-49 - - node: - zIndex: 1 - color: '#334E6DC8' - id: BrickTileWhiteCornerSw - decals: - 14858: -25,-17 - node: zIndex: 1 color: '#606C5B93' id: BrickTileWhiteCornerSw decals: 14939: -35,16 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteCornerSw + decals: + 15154: 9,-96 - node: color: '#D381C996' id: BrickTileWhiteCornerSw @@ -929,34 +1047,67 @@ entities: id: BrickTileWhiteCornerSw decals: 2226: -14,-16 + 17188: 3,-20 - node: - color: '#FF000093' - id: BrickTileWhiteCornerSw + zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteEndE decals: - 14880: 12,-10 + 17767: -30,-51 - node: zIndex: 1 color: '#D381C996' id: BrickTileWhiteEndE decals: 9611: 36,-47 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteEndE + decals: + 17193: 12,-17 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteEndN + decals: + 15887: 1,-19 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteEndS + decals: + 15888: 1,-22 - node: zIndex: 1 color: '#334E6DC8' id: BrickTileWhiteEndW decals: - 14854: -26,-16 + 15785: -40,-16 + 17766: -32,-51 - node: zIndex: 1 color: '#D381C996' id: BrickTileWhiteEndW decals: 9612: 36,-45 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteEndW + decals: + 17190: 3,-17 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: 11365: -24,-47 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteInnerNe + decals: + 15140: -9,-93 - node: zIndex: 1 color: '#DE3A3A96' @@ -967,14 +1118,25 @@ entities: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 11090: -8,-16 11098: -14,-14 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 12386: -8,-13 + 17223: 10,-17 + - node: + zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 15789: -39,-16 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteInnerNw + decals: + 15163: 11,-93 - node: zIndex: 1 color: '#DE3A3A96' @@ -987,7 +1149,12 @@ entities: decals: 10868: -13,-19 11043: -10,-14 - 11089: -3,-16 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteInnerNw + decals: + 17225: 8,-17 - node: zIndex: 1 color: '#DE3A3A96' @@ -1001,20 +1168,12 @@ entities: decals: 2247: -12,-14 2257: -14,-11 - 12387: -8,-13 - - node: - zIndex: 1 - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 14857: -25,-16 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: 10869: -13,-21 11044: -10,-14 - 11087: -3,-13 11095: -10,-11 - node: color: '#334E6DC8' @@ -1022,6 +1181,12 @@ entities: decals: 11355: -20,-48 11364: -24,-46 + - node: + zIndex: 1 + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 17578: 22,0 - node: zIndex: 1 color: '#9FED5896' @@ -1029,6 +1194,13 @@ entities: decals: 13771: -21,-8 13772: -21,-9 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteLineE + decals: + 15147: -7,-94 + 15152: -7,-95 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -1067,13 +1239,6 @@ entities: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 11020: -1,-19 - 11021: -1,-20 - 11022: -1,-21 - 11050: -1,-13 - 11051: -1,-14 - 11052: -1,-15 - 11086: -8,-15 11099: -14,-13 11100: -14,-12 - node: @@ -1083,22 +1248,20 @@ entities: decals: 2222: -8,-12 2223: -12,-15 - 12388: -8,-14 14243: -8,-21 14244: -8,-20 14245: -8,-19 - - node: - color: '#FF000093' - id: BrickTileWhiteLineE - decals: - 14884: 14,-9 + 15882: -1,-19 + 15883: -1,-20 + 15884: -1,-21 + 15891: 1,-21 + 15892: 1,-20 + 17228: 0,-15 + 17229: 0,-16 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 11117: -22,-15 - 11119: -21,-15 - 11121: -20,-15 11361: -21,-47 11362: -22,-47 11363: -23,-47 @@ -1107,7 +1270,18 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 14861: -25,-16 + 15792: -39,-15 + 15793: -38,-15 + 17769: -31,-51 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteLineN + decals: + 15144: -11,-92 + 15145: -10,-92 + 15161: 12,-92 + 15162: 10,-93 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -1137,12 +1311,6 @@ entities: 10879: -10,-18 10880: -9,-18 11040: -5,-18 - 11049: -6,-13 - 11073: -6,-16 - 11074: -5,-16 - 11076: -7,-16 - 11077: -4,-16 - 11080: -7,-13 11096: -10,-11 11097: -9,-11 - node: @@ -1156,17 +1324,34 @@ entities: 2261: -13,-14 2262: -12,-14 2263: -11,-14 + 17212: 9,-19 + 17213: 8,-19 + 17214: 7,-19 + 17215: 6,-19 + 17216: 5,-19 + 17217: 4,-19 + 17218: 4,-17 + 17219: 5,-17 + 17220: 6,-17 + 17221: 7,-17 + 17222: 11,-17 + 17224: 9,-16 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 11118: -21,-16 - 11120: -20,-16 - 11124: -22,-16 11366: -21,-49 11367: -22,-49 11368: -23,-49 11370: -24,-49 + - node: + zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 15790: -39,-16 + 15791: -38,-16 + 17768: -31,-51 - node: zIndex: 1 color: '#334E6DFF' @@ -1175,6 +1360,22 @@ entities: 4075: -19,-55 4076: -18,-55 4077: -17,-55 + - node: + zIndex: 1 + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 17571: 19,2 + 17572: 21,-1 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteLineS + decals: + 15150: -9,-96 + 15151: -8,-96 + 15159: 10,-96 + 15160: 11,-96 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -1204,17 +1405,6 @@ entities: 10890: -10,-22 10891: -9,-22 11054: -9,-16 - 11055: -8,-16 - 11057: -6,-16 - 11058: -5,-16 - 11060: -3,-16 - 11061: -2,-16 - 11069: -6,-13 - 11070: -5,-13 - 11078: -7,-13 - 11079: -4,-13 - 11081: -7,-16 - 11082: -4,-16 11943: -5,-22 - node: zIndex: 1 @@ -1226,11 +1416,20 @@ entities: 2264: -13,-11 2265: -12,-11 2266: -11,-11 - - node: - color: '#FF000093' - id: BrickTileWhiteLineS - decals: - 14882: 13,-10 + 17194: 11,-17 + 17195: 10,-17 + 17196: 9,-17 + 17197: 8,-17 + 17198: 7,-17 + 17199: 6,-17 + 17200: 5,-17 + 17201: 4,-17 + 17202: 4,-20 + 17203: 5,-20 + 17204: 6,-20 + 17205: 7,-20 + 17206: 8,-20 + 17207: 9,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1254,6 +1453,7 @@ entities: id: BrickTileWhiteLineW decals: 14937: -39,17 + 17574: 20,0 - node: zIndex: 1 color: '#9FED5896' @@ -1261,6 +1461,14 @@ entities: decals: 13773: -22,-8 13774: -22,-9 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteLineW + decals: + 15148: -12,-93 + 15157: 9,-94 + 15158: 9,-95 - node: color: '#D381C996' id: BrickTileWhiteLineW @@ -1295,8 +1503,6 @@ entities: 11035: -6,-19 11036: -6,-20 11037: -6,-21 - 11083: -3,-15 - 11084: -3,-14 11094: -10,-15 11101: -14,-12 11102: -14,-13 @@ -1309,53 +1515,77 @@ entities: 2249: -14,-15 2253: -10,-13 2254: -10,-12 + 15889: 1,-21 + 15890: 1,-20 + 17226: -4,-15 + 17227: -4,-16 - node: - color: '#FF000093' - id: BrickTileWhiteLineW + cleanable: True + zIndex: 3 + angle: 3.141592653589793 rad + color: '#FF00007E' + id: BushCOne decals: - 14883: 12,-9 + 15121: 20.005093,-53.971985 - node: + cleanable: True + zIndex: 3 + angle: 3.141592653589793 rad + color: '#FF00003F' + id: BushCTwo + decals: + 15119: 20.484497,-53.96156 + 15120: 19.36936,-53.899017 + - node: + zIndex: 1 color: '#FFFFFFFF' - id: BushAOne + id: BushDOne decals: - 1600: 12.928376,-7.0316486 + 15623: -1.8747854,-52.058655 + 15624: -5.9705667,-52.45476 + 18315: -11.886084,12.918579 - node: + zIndex: 1 color: '#FFFFFFFF' id: BushDThree decals: - 9843: -18.699919,29.106472 + 18314: -17.209408,12.720526 - node: + zIndex: 1 color: '#FFFFFFFF' id: BushDTwo decals: - 9844: -19.033417,28.825027 + 18313: -17.178143,12.188906 + 18317: -11.0210705,12.845613 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Busha1 + id: Bushd1 decals: - 1602: 12.990907,-5.999682 + 15614: 7.348914,-51.72509 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushc1 + id: Bushd2 decals: - 9890: -17.08512,14.31797 + 15615: 4.7642984,-51.339405 + 15616: 4.0035048,-54.07047 - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushd3 + decals: + 15617: 7.9039936,-54.060047 + 15619: 5.4926233,-51.047535 + 15620: -2.8335946,-51.047535 + 15621: -2.8231728,-54.080894 + - node: + zIndex: 1 color: '#FFFFFFFF' id: Bushd4 decals: - 9894: -11.957956,14.819774 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushf1 - decals: - 10041: 13.947853,-4.296533 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 9882: -10.14693,12.1271715 - 9888: -17.097357,12.139411 + 15625: -4.6991034,-51.641697 + 18316: -11.448366,13.179177 - node: color: '#FFFFFFFF' id: Bushg2 @@ -1372,38 +1602,127 @@ entities: decals: 321: -4.978131,-38.875713 - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushg4 + decals: + 18318: -11.647733,14.357079 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + decals: + 15645: -4.580308,-53.828274 + 15653: -4.264282,-52.553818 + 15654: -3.7223463,-51.980503 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Bushi1 + decals: + 17962: 33.222042,-2.3265424 + - node: + zIndex: 3 + color: '#FFFFFFFF' + id: Bushi1 + decals: + 15637: 3.8748503,-53.025635 + - node: + zIndex: 1 color: '#FFFFFFFF' id: Bushi2 decals: - 9878: -11.79888,15.260381 + 18320: -16.03246,13.673138 + 18321: -11.905412,15.490874 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Bushi2 + decals: + 15646: -5.0076036,-54.109722 + 15647: -4.257231,-54.18269 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 1606: 13.655601,-5.8224754 12158: -1.7835784,-39.817196 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi3 + decals: + 15627: 7.3632383,-54.21396 + 15628: 7.873908,-53.630222 + 15629: -3.5804038,-51.034668 + 15630: -4.1640263,-51.62883 + 18319: -16.053303,14.444507 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 9880: -16.155132,15.480683 12159: -2.3776236,-40.025677 - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi4 + decals: + 15631: -4.1640263,-51.13891 + 15648: -5.9038815,-51.9207 + 15649: -5.5599613,-52.681644 + 15650: -1.9610562,-53.09586 + 15651: -2.075696,-53.585785 + 15652: -3.6493936,-52.678905 + 17796: 33.100418,-3.2685184 + 18322: -11.936677,17.16912 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Bushi4 + decals: + 15635: 3.9999118,-52.58783 + 17961: 32.93023,-1.607293 + - node: + zIndex: 3 + color: '#FFFFFFFF' + id: Bushi4 + decals: + 15636: 4.2917233,-52.93182 + - node: + zIndex: 4 + color: '#FFFFFFFF' + id: Bushi4 + decals: + 15638: 4.1770835,-53.463436 + - node: + zIndex: 1 color: '#FFFFFFFF' id: Bushl1 decals: - 9889: -11.419543,14.832012 + 15639: 6.2718725,-51.701797 + 15640: 5.5631876,-51.19103 - node: color: '#FFFFFFFF' - id: Bushl4 + id: Bushm1 decals: - 9883: -9.657462,12.188368 - 9884: -11.933483,14.207818 + 15801: 49.53584,-23.971285 + 15804: 49.44209,-19.898706 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 9886: -17.244196,12.788083 + 15800: 48.57913,-23.83066 + - node: + color: '#FFFFFFFF' + id: Bushm4 + decals: + 15802: 47.78584,-19.945581 + 15803: 48.25459,-19.867456 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushn1 + decals: + 15641: 6.0217485,-51.38908 - node: zIndex: 1 color: '#3EB38896' @@ -1431,154 +1750,11 @@ entities: 14235: -9,-6 14236: -9,-10 14237: -10,-10 - - node: - color: '#43990996' - id: CheckerNESW - decals: - 14159: -4,-49 - 14160: -3,-49 - 14161: -2,-49 - 14162: -1,-49 - 14163: 0,-49 - 14164: 1,-49 - 14165: 2,-49 - 14166: 3,-49 - 14167: 4,-49 - 14168: 5,-49 - 14169: 6,-49 - 14170: -38,-31 - 14171: -37,-31 - 14172: -36,-31 - 14173: -35,-31 - 14174: -34,-31 - 14175: -33,-31 - 14176: -32,-31 - 14177: -31,-31 - 14178: -30,-31 - 14179: -29,-31 - 14203: -24,-38 - 14204: -24,-37 - 14205: -24,-36 - 14206: -24,-35 - 14207: -24,-34 - 14208: -24,-33 - 14209: -24,-32 - 14210: -24,-31 - 14211: -24,-30 - 14212: -24,-29 - 14213: -24,-28 - 14214: -24,-27 - 14215: -24,-26 - 14216: -24,-25 - 14217: -24,-24 - - node: - zIndex: 1 - color: '#43990996' - id: CheckerNESW - decals: - 13986: -22,-42 - 13987: -21,-42 - 13988: -20,-42 - 13989: -19,-42 - 13990: -18,-42 - 13991: -17,-42 - 13992: -16,-42 - 13993: -15,-42 - 13994: -14,-42 - 13995: -24,-20 - 13996: -23,-20 - 13997: -22,-20 - 13998: -21,-20 - 13999: -20,-20 - 14000: -19,-20 - 14001: -18,-20 - 14002: -17,-20 - 14015: 3,12 - 14016: 3,13 - 14017: 5,13 - 14018: 5,12 - 14019: 4,17 - 14020: 3,17 - 14021: 2,17 - 14022: 1,17 - 14023: 5,17 - 14024: 6,17 - 14025: 7,17 - 14026: 8,17 - 14027: 9,17 - 14028: 0,17 - 14029: -1,17 - 14052: -1,25 - 14053: 0,25 - 14054: 1,25 - 14055: 2,25 - 14056: 3,25 - 14057: 4,25 - 14058: 5,25 - 14059: 6,25 - 14060: 7,25 - 14061: 8,25 - 14063: 20,-4 - 14064: 21,-4 - 14065: 22,-4 - 14066: 23,-4 - 14067: 24,-4 - 14068: 25,-4 - 14069: 26,-4 - 14070: 27,-4 - 14071: 28,-4 - 14072: 29,-4 - 14073: 30,-4 - 14074: 31,-4 - 14075: 32,-4 - 14095: 47,-22 - 14096: 48,-22 - 14097: 49,-22 - 14098: 50,-22 - 14099: 51,-22 - 14100: 29,-22 - 14101: 28,-22 - 14102: 27,-22 - 14103: 26,-22 - 14104: 30,-22 - 14105: 31,-22 - 14106: 32,-22 - 14107: 33,-22 - 14108: 34,-22 - 14109: 35,-22 - 14110: 36,-22 - 14111: 37,-22 - 14112: 38,-22 - 14113: 39,-22 - 14114: 40,-22 - 14115: 41,-22 - 14116: 42,-22 - 14139: 20,-22 - 14140: 21,-22 - 14141: 22,-22 - 14142: 23,-22 - 14143: 24,-22 - 14144: 15,-33 - 14145: 11,-33 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 10382: -38,-28 - 10383: -40,-26 - node: color: '#639137FF' id: CheckerNESW decals: 2475: -22,-38 - - node: - color: '#9FED5896' - id: CheckerNESW - decals: - 8786: 28,-1 - 8787: 27,-1 - 8788: 28,0 - 8789: 27,0 - node: zIndex: 1 color: '#9FED5896' @@ -1590,6 +1766,13 @@ entities: 12964: 62,-78 12965: 62,-79 12966: 62,-80 + 17825: 27,4 + 17826: 28,4 + - node: + color: '#FA750096' + id: CheckerNESW + decals: + 16044: -34,-34 - node: color: '#334E6DC8' id: CheckerNWSE @@ -1620,6 +1803,31 @@ entities: 14432: -20,-53 14433: -16,-52 14434: -15,-52 + 17741: -31,-49 + 17742: -30,-49 + 17743: -29,-49 + 17744: -28,-49 + 17745: -27,-49 + 17746: -27,-48 + 17747: -27,-47 + 17748: -27,-46 + 17749: -27,-45 + 17750: -28,-45 + 17751: -28,-46 + 17752: -28,-47 + 17753: -28,-48 + 17754: -29,-48 + 17755: -29,-47 + 17756: -29,-46 + 17757: -29,-45 + 17758: -30,-45 + 17759: -30,-46 + 17760: -30,-47 + 17761: -30,-48 + 17762: -31,-48 + 17763: -31,-47 + 17764: -31,-46 + 17765: -31,-45 - node: zIndex: 1 color: '#43990996' @@ -1635,39 +1843,38 @@ entities: color: '#52B4E996' id: CheckerNWSE decals: - 10384: -38,-26 - 10385: -40,-28 - 10806: -43,-34 - 10807: -42,-34 - 10808: -41,-34 - 10809: -41,-35 - 10810: -42,-35 - 10811: -43,-35 - 10812: -43,-36 - 10813: -42,-36 - 10814: -41,-36 - 10815: -41,-37 - 10816: -42,-37 - 10817: -43,-37 - 10818: -42,-38 - 10819: -42,-39 - 10820: -43,-39 - 10821: -41,-39 - 10822: -42,-40 - 10823: -40,-34 + 16036: -34,-27 - node: + zIndex: 1 color: '#8C347F96' id: CheckerNWSE decals: - 8777: 27,-1 - 8778: 28,-1 - 8779: 28,0 - 8780: 27,0 - 8781: 27,1 - 8782: 28,1 - 8783: 27,2 - 8784: 28,2 - 8785: 29,2 + 17550: 26,-1 + 17551: 27,-1 + 17556: 28,-1 + 17809: 25,-1 + 17810: 24,-1 + 17811: 24,0 + 17812: 24,1 + 17813: 24,2 + 17814: 24,3 + 17815: 25,3 + 17823: 28,4 + 17824: 27,4 + - node: + zIndex: 1 + color: '#8D1C9996' + id: CheckerNWSE + decals: + 19375: 11,27 + 19376: 12,27 + 19377: 13,27 + 19378: 14,27 + 19379: 14,28 + 19380: 13,28 + 19381: 12,28 + 19382: 11,28 + 19383: 10,28 - node: color: '#9FED5896' id: CheckerNWSE @@ -1722,42 +1929,6 @@ entities: 11216: -18,-1 11217: -22,-1 11218: -22,-2 - 14148: -3,-49 - 14149: -2,-49 - 14150: -1,-49 - 14151: 0,-49 - 14152: 1,-49 - 14153: 2,-49 - 14154: 3,-49 - 14155: 4,-49 - 14156: 5,-49 - 14157: -4,-49 - 14158: 6,-49 - 14180: -38,-31 - 14181: -37,-31 - 14182: -36,-31 - 14183: -35,-31 - 14184: -34,-31 - 14185: -33,-31 - 14186: -32,-31 - 14187: -31,-31 - 14188: -30,-31 - 14189: -29,-31 - 14190: -24,-26 - 14191: -24,-27 - 14192: -24,-28 - 14193: -24,-29 - 14194: -24,-30 - 14195: -24,-31 - 14196: -24,-32 - 14197: -24,-33 - 14198: -24,-34 - 14199: -24,-35 - 14200: -24,-36 - 14201: -24,-37 - 14202: -24,-38 - 14218: -24,-24 - 14219: -24,-25 - node: zIndex: 1 color: '#DE3A3A96' @@ -1766,93 +1937,6 @@ entities: 13010: -31,-4 13011: -30,-4 13012: -29,-4 - 13977: -14,-42 - 13978: -15,-42 - 13979: -16,-42 - 13980: -17,-42 - 13981: -18,-42 - 13982: -19,-42 - 13983: -20,-42 - 13984: -21,-42 - 13985: -22,-42 - 14003: -24,-20 - 14004: -23,-20 - 14005: -22,-20 - 14006: -21,-20 - 14007: -20,-20 - 14008: -19,-20 - 14009: -18,-20 - 14010: -17,-20 - 14011: 5,12 - 14012: 5,13 - 14013: 3,13 - 14014: 3,12 - 14030: -1,17 - 14031: 0,17 - 14032: 1,17 - 14033: 2,17 - 14034: 3,17 - 14035: 4,17 - 14036: 5,17 - 14037: 6,17 - 14038: 7,17 - 14039: 8,17 - 14040: 9,17 - 14041: -1,25 - 14042: 0,25 - 14043: 1,25 - 14044: 2,25 - 14045: 3,25 - 14046: 4,25 - 14047: 5,25 - 14048: 6,25 - 14049: 7,25 - 14050: 8,25 - 14051: 9,25 - 14076: 20,-4 - 14077: 21,-4 - 14078: 22,-4 - 14079: 23,-4 - 14080: 24,-4 - 14081: 25,-4 - 14082: 26,-4 - 14083: 27,-4 - 14084: 28,-4 - 14085: 29,-4 - 14086: 30,-4 - 14087: 31,-4 - 14088: 32,-4 - 14089: 47,-22 - 14090: 48,-22 - 14091: 49,-22 - 14092: 50,-22 - 14094: 51,-22 - 14117: 42,-22 - 14118: 41,-22 - 14119: 40,-22 - 14120: 39,-22 - 14121: 38,-22 - 14122: 37,-22 - 14123: 36,-22 - 14124: 35,-22 - 14125: 34,-22 - 14126: 33,-22 - 14127: 32,-22 - 14128: 31,-22 - 14129: 30,-22 - 14130: 29,-22 - 14131: 28,-22 - 14132: 27,-22 - 14133: 26,-22 - 14134: 24,-22 - 14135: 23,-22 - 14136: 22,-22 - 14137: 21,-22 - 14138: 20,-22 - 14146: 11,-33 - 14147: 15,-33 - 15033: -33,-4 - 15034: -32,-4 15035: -31,-6 15036: -30,-6 15037: -29,-6 @@ -1885,6 +1969,13 @@ entities: 14323: -9,-36 14324: -8,-36 14325: -7,-36 + - node: + cleanable: True + zIndex: 5 + color: '#3AB3DAFF' + id: Clandestine + decals: + 19307: 34,24 - node: cleanable: True color: '#52B4E9FF' @@ -1909,22 +2000,9 @@ entities: id: Delivery decals: 1409: -14,-45 - 2152: -26,-41 - 2153: -26,-42 - 2154: -26,-43 - 2155: -25,-40 - 2156: -24,-40 - 2157: -23,-40 - 2158: -30,-63 - 2159: -31,-63 - 2168: -8,-58 - 2169: -9,-58 2183: 16,8 2184: 15,8 2185: 14,8 - 2194: 33,21 - 2195: 32,21 - 2196: 31,21 2203: 25,-23 2204: 25,-22 2205: 25,-21 @@ -1936,18 +2014,45 @@ entities: 9908: -7,10 9910: 4,14 9933: 5,24 - 9934: 3,24 9935: 3,18 - 9936: 5,18 10360: -7,11 - 11944: -18,-18 - 11945: -17,-18 - 11946: -16,-18 11947: -18,-6 11948: -17,-6 11949: -16,-6 - 14593: -30,-51 - 14594: -31,-51 + 16323: -23,-40 + 16324: -24,-40 + 16325: -25,-40 + 16326: -23,-22 + 16327: -24,-22 + 16328: -25,-22 + 16329: -27,-43 + 16330: -27,-42 + 16333: -27,-41 + 16334: -33,-47 + 16335: -34,-47 + 16336: -35,-47 + 19429: -35,-67 + 19430: -34,-67 + 19431: -33,-67 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Delivery + decals: + 15688: 5,18 + 15689: 3,24 + 18341: 30,-16 + 18342: 31,-16 + 18343: 32,-16 + 18344: 32,-6 + 18345: 31,-6 + 18346: 30,-6 + 18347: 26,6 + 18348: 26,7 + 18349: 26,8 + 18350: 33,16 + 18351: 32,16 + 18352: 31,16 - node: cleanable: True zIndex: 1 @@ -1971,6 +2076,31 @@ entities: 10329: -1,-32 10330: -1,-33 10331: 0,-33 + - node: + cleanable: True + zIndex: 5 + color: '#0000007F' + id: Dirt + decals: + 18439: 17,-39 + 18440: 17,-40 + 18441: 17,-41 + 18442: 18,-41 + 18443: 18,-40 + 18444: 17,-37 + 18445: 18,-37 + 18446: 17,-36 + 18447: 17,-38 + 18448: 14,-38 + 18449: 15,-38 + 18450: 15,-37 + 18451: 19,-43 + 18452: 19,-44 + 18453: 18,-45 + 18454: 17,-44 + 18455: 17,-43 + 18456: 18,-43 + 18457: 18,-44 - node: cleanable: True zIndex: 5 @@ -1986,30 +2116,15 @@ entities: 1168: 19,-53 1169: 20,-53 1170: 19,-55 - 3293: 18,5 - 3294: 19,5 4798: 43,-8 4799: 43,-7 4800: 48,-6 4801: 47,-6 4802: 47,-5 4803: 48,-5 - 10046: 14,0 - 10047: 14,-12 - 10048: 16,-13 - 10346: 13,-13 - 10347: 12,-13 - 10348: 12,-12 - 10349: 16,-12 - 10350: 16,-11 - 10351: 15,-12 11503: 26,-40 11775: -27,-22 - 11776: -30,-20 11777: -29,-22 - 11778: -31,-24 - 11779: -33,-22 - 11804: -39,-27 11824: 18,12 11825: 16,15 11866: -32,14 @@ -2056,12 +2171,9 @@ entities: 14395: -10,-48 14400: 15,-53 14401: 13,-52 - 14429: 11,-12 - 14430: 10,-12 14435: -18,-52 14467: 34,-23 14468: 48,-27 - 14503: 33,-5 14514: 34,15 14527: -28,4 14539: -25,2 @@ -2083,16 +2195,86 @@ entities: 14815: -14,21 14816: -7,21 14817: 21,12 - 14818: 21,1 - 14862: -25,-17 - 14885: 13,-10 - 14886: 13,-12 14898: -34,19 14942: 40,11 14966: 39,5 14967: 37,9 14972: 33,2 - 15059: 30,25 + 15168: -4,-94 + 15169: -3,-94 + 15170: -2,-93 + 15171: -4,-89 + 15172: -5,-89 + 15173: -10,-89 + 15174: -10,-90 + 15175: -8,-96 + 15176: -8,-95 + 15177: -8,-94 + 15178: 4,-99 + 15179: 6,-99 + 15180: 6,-100 + 15181: 9,-95 + 15182: 11,-94 + 15183: 9,-93 + 15184: 8,-90 + 15185: 7,-90 + 15186: 9,-90 + 15187: 5,-93 + 15188: 6,-93 + 15189: 6,-94 + 15452: -10,-62 + 15500: 13,-61 + 15501: 16,-60 + 16408: -41,-45 + 16409: -38,-46 + 16410: -40,-49 + 16411: -47,-50 + 16412: -46,-49 + 16502: -34,-49 + 16989: -31,-8 + 16990: -31,-9 + 16991: -31,-10 + 16998: -32,-26 + 17120: -36,-63 + 17149: -37,-68 + 17283: 27,-18 + 17314: 30,7 + 17590: 18,0 + 17620: 25,1 + 17856: 17,-5 + 17858: 23,-5 + 17971: 31,15 + 18054: 37,13 + 18131: -13,7 + 18557: 28,1 + 18631: -58,-54 + 18632: -59,-53 + 18633: -54,-54 + 18844: -36,-53 + 18845: -37,-56 + 18846: -39,-56 + 18847: -39,-55 + 18848: -42,-55 + 18849: -39,-50 + 18903: 38,17 + 18904: 37,17 + 18905: 33,17 + 18906: 33,15 + 18908: 28,21 + 18909: 33,24 + 18910: 34,24 + 18911: 36,24 + 18913: 47,22 + 18914: 45,22 + 18915: 41,21 + 18916: 39,22 + 18917: 37,21 + 18918: 45,20 + 18919: 33,18 + 18920: 31,20 + 18921: 37,20 + 19343: 32,22 + 19385: 14,27 - node: cleanable: True zIndex: 5 @@ -2102,8 +2284,6 @@ entities: 3283: 17,7 3284: 18,8 3285: 19,8 - 3286: 19,7 - 3287: 19,6 3916: 50,-47 3917: 50,-46 3918: 50,-45 @@ -2118,15 +2298,11 @@ entities: 4333: 27,-58 4334: 28,-58 4335: 23,-55 - 4337: 4,-50 - 4339: -3,-49 - 4341: -4,-50 4343: -8,-53 4344: -9,-54 4345: -9,-48 4346: -9,-43 4347: -13,-37 - 4348: -19,-42 4782: 36,-11 4783: 36,-8 4784: 37,-7 @@ -2166,16 +2342,7 @@ entities: 4824: 40,-11 4825: 42,-10 4832: 31,-8 - 4865: 21,-3 - 4866: 23,-5 - 4867: 22,-5 - 4868: 18,-5 - 4869: 18,-4 - 4870: 19,-4 4871: 19,-5 - 4873: 14,-4 - 4874: 14,-3 - 4875: 15,-3 4925: 0,10 4926: 0,11 4927: -3,10 @@ -2187,11 +2354,8 @@ entities: 5187: 2,-17 5188: 3,-17 5189: 2,-18 - 5190: 2,-19 5191: 2,-20 5192: 3,-20 - 5193: 3,-19 - 5194: 3,-19 5195: 3,-18 5196: 3,-17 5197: 2,-17 @@ -2208,7 +2372,6 @@ entities: 5277: 16,-45 5278: 19,-45 5279: 19,-43 - 5280: 18,-43 5281: 18,-45 5282: 15,-43 5283: 14,-43 @@ -2227,25 +2390,14 @@ entities: 5511: -24,-52 5512: -25,-52 5517: -31,-49 - 5518: -30,-47 - 5519: -30,-47 - 5520: -32,-44 - 5521: -32,-44 5522: -32,-45 5523: -32,-47 5524: -33,-47 5525: -34,-46 5526: -33,-45 - 5527: -34,-44 5528: -35,-44 5529: -35,-46 - 5699: -51,-42 - 5700: -52,-44 - 5701: -52,-42 - 6067: -21,-20 6068: -22,-19 - 6069: -22,-20 - 6070: -17,-20 6071: -18,-19 6072: -16,-19 6073: -16,-20 @@ -2263,7 +2415,6 @@ entities: 6260: -22,-39 6261: -22,-38 6262: -24,-39 - 6268: -24,-37 6269: -25,-38 6270: -25,-39 6271: -25,-37 @@ -2276,60 +2427,11 @@ entities: 6793: 14,7 6795: 16,7 6797: 14,6 - 6798: 18,7 - 6799: 18,6 - 6800: 18,5 - 6801: 19,5 - 6802: 19,6 - 6803: 19,7 6804: 19,8 6805: 18,8 - 6806: 18,7 - 6807: 19,7 - 6808: 18,6 - 6809: 19,6 - 6810: 19,5 - 6838: 11,5 - 6839: 11,5 - 6840: 10,6 - 6841: 9,6 - 6842: 8,6 - 6843: 8,4 6844: 10,3 6845: 10,3 - 6846: 14,-1 - 6847: 14,0 - 6848: 14,1 - 6849: 15,0 - 6850: 15,-1 - 6851: 15,1 - 6852: 14,1 - 6853: 15,1 - 6854: 14,0 - 6855: 14,0 - 6856: 15,-1 - 6857: 15,0 - 6858: 16,0 - 6859: 14,0 - 6860: 14,-1 - 6861: 15,-1 - 6862: 16,0 - 6863: 16,-1 - 6864: 14,-2 - 6865: 15,-2 - 6866: 16,-2 - 6867: 15,-3 - 6868: 14,-3 - 6871: 15,2 - 6872: 14,2 - 6873: 14,3 - 6874: 15,3 - 6894: 17,-37 6896: 19,-38 - 6897: 19,-39 - 6898: 19,-41 - 6901: 17,-37 - 6903: 19,-39 6905: 14,-39 6906: 15,-38 6907: 14,-37 @@ -2338,9 +2440,6 @@ entities: 6911: 15,-40 6912: 15,-38 6913: 16,-38 - 6914: 17,-37 - 6917: 17,-44 - 6918: 18,-44 6919: 19,-44 6920: 22,-43 6921: 23,-43 @@ -2453,9 +2552,6 @@ entities: 7196: 37,-27 7197: 38,-27 7198: 39,-26 - 7215: 36,-22 - 7220: 33,-22 - 7221: 35,-22 7223: 36,-23 7224: 37,-23 7225: 38,-23 @@ -2465,7 +2561,6 @@ entities: 7232: 35,-18 7233: 34,-18 7234: 42,-21 - 7235: 42,-22 7236: 42,-23 7237: 41,-23 7238: 46,-29 @@ -2593,23 +2688,10 @@ entities: 7460: 47,7 7461: 45,7 7462: 45,7 - 7508: 28,3 - 7509: 27,3 - 7510: 27,4 - 7511: 28,4 - 7512: 29,4 - 7513: 29,3 - 7559: 24,5 7560: 25,5 - 7561: 24,5 7562: 22,5 7563: 23,6 - 7564: 23,5 - 7565: 23,5 7566: 27,6 - 7567: 28,6 - 7568: 29,6 - 7569: 29,6 7570: 27,10 7571: 27,11 7572: 28,10 @@ -2635,97 +2717,15 @@ entities: 7604: 28,19 7605: 29,19 7606: 29,19 - 7607: 35,27 - 7608: 35,27 - 7609: 35,29 - 7610: 35,29 - 7611: 34,29 - 7612: 34,29 - 7613: 34,27 - 7614: 36,27 - 7615: 36,29 - 7616: 34,35 - 7617: 35,35 - 7618: 36,35 - 7619: 36,37 - 7620: 35,37 - 7621: 34,37 - 7622: 33,32 - 7623: 32,32 - 7624: 32,31 - 7625: 31,32 - 7626: 31,31 - 7627: 31,33 - 7628: 31,35 - 7629: 32,39 - 7630: 33,41 - 7631: 31,42 - 7632: 31,41 - 7633: 33,43 - 7634: 31,43 - 7635: 31,44 - 7636: 33,44 - 7637: 33,45 - 7638: 31,45 7639: 23,-15 7640: 23,-15 - 7641: 22,-15 - 7642: 22,-15 - 7645: 20,-15 - 7646: 20,-15 - 7647: 19,-15 - 7648: 19,-14 - 7649: 20,-14 7664: 17,-17 - 7668: 16,-14 - 7669: 13,-14 - 7671: 10,-14 - 7672: 10,-13 - 7673: 10,-12 - 7676: 12,-11 - 7678: 14,-10 - 7679: 13,-9 - 7680: 12,-9 - 7681: 14,-11 - 7684: 17,-11 - 7685: 17,-11 - 7686: 16,-10 - 7687: 16,-10 - 7688: 16,-9 - 7689: 16,-9 - 7690: 19,-9 - 7691: 19,-10 - 7692: 19,-10 - 7693: 19,-11 - 7694: 19,-11 - 7695: 19,-12 - 7696: 19,-12 - 7697: 19,-9 7698: 18,-7 - 7700: 18,-4 - 7701: 18,-3 7702: 17,-3 - 7704: 20,2 - 7705: 20,3 - 7706: 22,3 - 7707: 22,2 - 7709: 20,-1 - 7710: 22,-1 - 7711: 22,0 - 7712: 18,5 - 7713: 19,5 - 7714: 19,6 7715: 15,5 7716: 14,4 7717: 13,5 7718: 13,5 - 7719: 12,5 - 7720: 12,5 - 7721: 8,4 - 7722: 9,4 - 7723: 10,4 - 7724: 10,5 - 7725: 9,5 7726: 11,11 7727: 10,11 7728: 9,10 @@ -2737,7 +2737,6 @@ entities: 7736: -18,-12 7737: -17,-14 7738: -18,-16 - 7740: -19,-20 7741: -19,-21 7743: -7,-27 7744: -6,-27 @@ -2745,14 +2744,10 @@ entities: 7746: -14,-35 7752: -13,-40 7753: -13,-42 - 7754: -4,-50 7758: -5,-53 7759: -4,-53 - 7760: -5,-52 - 7761: -6,-52 7762: -5,-56 7763: -8,-57 - 7764: -9,-58 7765: -8,-60 7767: -8,-63 7771: -6,-69 @@ -2784,13 +2779,6 @@ entities: 7807: 22,-60 7808: 22,-60 7809: 22,-59 - 7810: 24,-60 - 7811: 24,-60 - 7812: 24,-59 - 7813: 25,-59 - 7814: 25,-59 - 7815: 25,-60 - 7816: 24,-59 7817: 19,-59 7818: 18,-59 7819: 18,-60 @@ -2827,10 +2815,6 @@ entities: 7853: 11,-48 7854: 10,-49 7855: 9,-49 - 7856: 13,-44 - 7857: 13,-43 - 7858: 13,-42 - 7860: 17,-38 7879: 37,-37 7880: 36,-36 7881: 36,-35 @@ -2843,41 +2827,27 @@ entities: 7942: 18,-28 7943: 18,-26 7944: 18,-25 - 7945: 20,-22 7946: 21,-21 7947: 21,-20 7948: 21,-20 7949: 20,-20 7950: 20,-20 7951: 19,-20 - 7952: 19,-19 - 7953: 20,-19 - 7954: 21,-19 - 7955: 21,-19 - 7956: 20,-19 - 7957: 20,-18 - 7958: 20,-19 7959: 20,-20 7960: 19,-20 7961: 21,-20 7962: 20,-21 - 7963: 20,-22 7965: 18,-23 7966: 18,-23 7970: 20,-23 7971: 19,-23 7974: 21,-23 7975: 19,-23 - 7976: 19,-22 7977: 21,-23 7978: 22,-23 7980: 23,-23 - 7981: 24,-22 7982: 27,-23 - 7983: 28,-22 - 7984: 28,-22 7985: 27,-21 - 7986: 26,-21 7994: 26,-18 8000: 26,-18 8004: 31,-19 @@ -2903,7 +2873,6 @@ entities: 8025: 34,-21 8026: 33,-21 8027: 31,-21 - 8028: 31,-22 8029: 30,-21 8030: 31,-23 8032: 44,-23 @@ -2919,45 +2888,12 @@ entities: 8045: 43,-7 8049: 33,8 8050: 33,11 - 8051: 32,17 - 8052: 32,17 8053: 32,12 8054: 32,11 - 8055: 31,6 8056: 32,2 - 8057: 31,0 - 8058: 27,-5 - 8059: 26,-5 - 8060: 25,-5 - 8061: 24,-4 - 8062: 23,-3 - 8063: 22,-3 - 8064: 23,-4 - 8065: 24,-5 - 8066: 26,-4 - 8067: 25,-3 - 8068: 26,-3 - 8069: 27,-3 8070: 28,-5 - 8071: 25,-4 - 8072: 24,-4 - 8073: 23,-4 - 8075: 21,-5 - 8076: 21,-5 - 8077: 23,-5 - 8079: 15,2 8080: 14,5 - 8082: 1,-12 8083: 1,-13 - 8086: 1,-12 - 8087: 1,-15 - 8088: 2,-15 - 8089: 2,-15 - 8090: 3,-15 - 8091: 4,-15 - 8092: 5,-15 - 8093: 6,-15 - 8094: 6,-15 8095: 3,-18 8096: -2,-27 8097: -1,-26 @@ -3028,36 +2964,18 @@ entities: 8162: 1,-22 8163: 1,-20 8164: 1,-19 - 8165: 1,-18 - 8166: 1,-15 8167: 5,-16 8168: 7,-16 - 8169: 8,-16 - 8170: 9,-16 - 8171: 7,-15 - 8172: 6,-15 8173: 12,-19 8174: 12,-18 - 8175: 18,-17 - 8176: 18,-17 8177: 17,-17 - 8178: 20,-14 - 8179: 19,-14 - 8180: 20,-14 - 8181: 19,-14 - 8182: 21,-16 8183: 26,-23 8185: 30,-23 - 8186: 30,-22 - 8187: 29,-22 8188: 28,-23 8190: 30,-23 8192: 28,-23 - 8193: 28,-22 8194: 29,-21 - 8195: 30,-22 8196: 28,-23 - 8197: 27,-22 8215: 29,-23 8257: -42,-56 8258: -40,-56 @@ -3067,21 +2985,10 @@ entities: 8262: -36,-56 8263: -36,-55 8264: -36,-54 - 8265: -41,-53 8266: -42,-53 8267: -42,-54 8268: -41,-54 - 8269: -40,-54 - 8270: -40,-53 - 8271: -40,-52 - 8272: -39,-52 - 8273: -38,-52 - 8274: -38,-52 - 8275: -38,-54 - 8276: -39,-54 8277: -38,-55 - 8278: -38,-52 - 8279: -41,-52 8280: -42,-52 8281: -42,-51 8282: -44,-51 @@ -3090,39 +2997,12 @@ entities: 8285: -42,-52 8286: -42,-53 8287: -42,-53 - 8290: -43,-47 - 8302: -40,-49 - 8303: -40,-49 - 8304: -40,-47 - 8305: -40,-47 - 8306: -40,-46 - 8307: -41,-46 - 8308: -41,-48 - 8309: -41,-49 - 8310: -39,-49 - 8311: -39,-47 - 8333: -46,-23 - 8346: -31,-20 - 8347: -30,-20 - 8348: -28,-20 - 8349: -29,-19 - 8350: -28,-19 - 8351: -28,-19 - 8352: -27,-19 8353: -28,-21 - 8354: -28,-20 - 8355: -29,-20 - 8357: -30,-20 - 8358: -31,-20 8359: -25,-21 8360: -25,-20 8361: -25,-19 8362: -23,-19 - 8366: -31,-24 - 8370: -30,-20 - 8371: -28,-20 8372: -28,-21 - 8373: -28,-19 8374: -16,-26 8377: -18,-30 8378: -19,-30 @@ -3131,10 +3011,7 @@ entities: 8381: -20,-30 8382: -21,-30 8383: -21,-31 - 8384: -24,-34 8387: -22,-33 - 8388: -23,-40 - 8389: -24,-40 8390: -25,-38 8391: -25,-39 8392: -24,-39 @@ -3143,7 +3020,6 @@ entities: 8395: -26,-37 8399: -28,-41 8400: -27,-42 - 8401: -28,-43 8402: -22,-44 8403: -21,-44 8404: -20,-44 @@ -3155,7 +3031,6 @@ entities: 8410: -16,-45 8411: -14,-45 8412: -13,-45 - 8419: -15,-42 8423: -14,-48 8424: -13,-48 8428: -13,-48 @@ -3253,18 +3128,12 @@ entities: 8751: 0,-9 8753: 4,-9 8754: 2,-11 - 8755: 0,-11 8757: -5,-11 - 8758: 5,-11 - 8759: 5,-11 8760: 5,-9 8761: 5,-7 8762: 3,-8 8763: 3,-9 - 8773: 5,-13 8774: 4,-13 - 8775: 6,-15 - 8776: 5,-15 8868: -11,10 9034: -66,-14 9035: -66,-13 @@ -3272,15 +3141,8 @@ entities: 9054: -21,-24 9055: -21,-19 9056: -24,-21 - 9058: -36,-31 - 9068: -24,-38 - 9069: -24,-35 - 9072: -31,-31 9100: -29,-36 9101: -30,-36 - 9181: 49,-22 - 9182: 48,-22 - 9183: 47,-22 9185: 47,-19 9419: -26,0 9420: -26,-2 @@ -3306,45 +3168,21 @@ entities: 9578: -16,-1 9579: -17,-3 9585: -19,-10 - 10049: 13,-12 - 10050: 13,-11 - 10051: 17,-12 - 10052: 16,-11 - 10053: 17,-11 - 10070: 3,12 10071: 2,14 - 10072: 3,17 - 10073: 4,17 - 10074: 4,18 10075: 4,19 - 10076: 5,17 10077: 4,16 10078: 5,16 - 10079: 1,17 - 10080: 0,17 10081: -2,18 10082: -3,19 10083: -2,22 10084: -2,24 - 10085: -1,25 - 10087: 4,25 - 10088: 5,25 10089: 4,24 10090: 4,23 - 10091: 7,25 - 10092: 9,25 10093: 12,23 10094: 12,23 - 10095: 12,24 10096: 13,24 10099: 14,24 10100: 14,23 - 10101: 15,21 - 10102: 14,20 - 10103: 15,19 - 10104: 15,18 - 10105: 14,18 - 10106: 15,17 10107: 11,19 10108: 11,20 10109: 10,18 @@ -3353,7 +3191,6 @@ entities: 10168: -14,13 10169: -14,17 10170: -13,16 - 10253: -33,-36 10254: -32,-36 10255: -31,-36 10256: -30,-36 @@ -3364,22 +3201,6 @@ entities: 10688: -16,-32 10691: -21,-37 10692: -21,-38 - 10772: -43,-41 - 10773: -39,-41 - 10774: -38,-40 - 10775: -38,-39 - 10776: -38,-38 - 10777: -38,-33 - 10778: -39,-33 - 10779: -39,-27 - 10780: -39,-26 - 10781: -43,-23 - 10782: -51,-31 - 10783: -52,-31 - 10784: -51,-28 - 10785: -52,-28 - 10786: -52,-29 - 10787: -51,-29 11455: 29,-39 11456: 30,-39 11457: 30,-38 @@ -3423,25 +3244,15 @@ entities: 11523: 40,-46 11525: 30,-9 11526: 30,-8 - 11527: 30,-7 11528: 33,-8 - 11529: 33,-5 - 11530: 18,-3 - 11531: 8,17 - 11532: 6,17 - 11533: 4,17 11534: -3,19 11535: -2,20 11536: 4,20 11537: 4,23 11538: 12,19 - 11539: 15,18 - 11540: 15,19 - 11541: 15,21 11542: 16,22 11543: 16,23 11544: 14,24 - 11545: 12,24 11546: 2,10 11547: 0,10 11548: -15,9 @@ -3493,8 +3304,6 @@ entities: 11642: -5,-18 11643: -4,-18 11644: -2,-18 - 11645: -1,-18 - 11646: -1,-21 11649: -2,-21 11650: -5,-21 11651: -6,-21 @@ -3505,54 +3314,6 @@ entities: 11706: -9,-11 11707: -10,-11 11708: -9,-13 - 11723: -45,-32 - 11724: -44,-31 - 11725: -43,-32 - 11726: -40,-31 - 11727: -38,-34 - 11728: -35,-28 - 11729: -36,-27 - 11730: -36,-26 - 11731: -37,-26 - 11732: -36,-25 - 11733: -37,-25 - 11734: -36,-24 - 11735: -35,-23 - 11736: -38,-23 - 11737: -39,-22 - 11738: -41,-23 - 11739: -39,-24 - 11740: -39,-25 - 11741: -39,-27 - 11742: -40,-27 - 11743: -39,-28 - 11744: -34,-24 - 11745: -33,-23 - 11746: -35,-22 - 11780: -44,-44 - 11781: -44,-43 - 11782: -44,-42 - 11783: -48,-43 - 11784: -45,-39 - 11785: -46,-39 - 11786: -45,-38 - 11787: -45,-37 - 11788: -46,-37 - 11789: -45,-36 - 11790: -46,-36 - 11791: -45,-34 - 11792: -52,-31 - 11793: -51,-32 - 11794: -52,-32 - 11795: -53,-31 - 11796: -53,-30 - 11797: -52,-30 - 11798: -52,-29 - 11799: -50,-29 - 11800: -50,-28 - 11801: -46,-32 - 11802: -41,-32 - 11803: -45,-23 11830: 17,15 11831: 17,14 11833: 18,13 @@ -3607,17 +3368,12 @@ entities: 11935: 22,-26 11951: 27,-19 11952: 28,-19 - 11953: 28,-18 - 11954: 27,-18 11955: 27,-17 11956: 28,-17 11957: 26,-17 11958: 25,-17 11959: 25,-18 11960: 25,-19 - 11961: 27,-18 - 11962: 27,-18 - 11963: 28,-18 12179: 45,-55 12180: 45,-54 12181: 46,-54 @@ -3681,19 +3437,7 @@ entities: 12330: 37,-57 12331: 46,-57 12332: 45,-58 - 12404: -30,-21 - 12405: -30,-22 - 12406: -31,-22 - 12407: -31,-23 - 12408: -30,-23 - 12409: -31,-24 - 12410: -30,-24 - 12411: -29,-24 - 12412: -28,-24 - 12415: -30,-23 12416: -28,-22 - 12417: -24,-24 - 12418: -24,-26 12419: -25,-26 12420: -25,-25 12421: -25,-24 @@ -3702,7 +3446,6 @@ entities: 12424: -23,-26 12425: -24,-23 12426: -13,-26 - 12428: 13,-45 12429: 19,-48 12430: 20,-48 12431: 45,-59 @@ -3752,18 +3495,12 @@ entities: 12554: -17,-9 12555: -19,-11 12556: -12,-16 - 12557: -8,-13 - 12558: -8,-14 12559: -9,-14 12560: -9,-15 12561: -11,-20 12562: -13,-20 12563: -14,-20 12564: -20,-21 - 12565: -29,-32 - 12566: -29,-31 - 12567: -30,-34 - 12568: -39,-35 12675: 43,-51 12676: 42,-52 12677: 44,-51 @@ -3963,16 +3700,7 @@ entities: 13764: -21,-8 13780: -14,17 13783: 4,13 - 13784: 5,13 - 13785: 5,12 13915: -24,-53 - 13969: 33,37 - 13970: 33,30 - 13971: 31,30 - 13972: 33,25 - 13973: 31,25 - 13974: 33,18 - 13975: 31,19 13976: 33,6 14329: -5,-32 14330: -4,-31 @@ -3984,7 +3712,6 @@ entities: 14336: -10,-32 14337: -8,-35 14338: -9,-35 - 14363: 5,-49 14388: -9,-46 14389: -8,-46 14390: -8,-47 @@ -4013,12 +3740,8 @@ entities: 14462: 37,-26 14463: 32,-27 14469: 45,-16 - 14504: 32,-5 - 14505: 32,-6 14506: 31,-6 - 14507: 33,-6 14515: 34,12 - 14516: 33,19 14517: 29,-15 14518: 29,-14 14528: -28,3 @@ -4059,8 +3782,6 @@ entities: 14650: -43,-6 14651: -40,-6 14652: -38,-6 - 14653: -33,-5 - 14654: -32,-5 14655: -30,-5 14656: -31,-6 14657: -30,-6 @@ -4081,8 +3802,6 @@ entities: 14721: -41,-6 14722: -30,-6 14723: -31,-5 - 14724: -32,-5 - 14725: -33,-4 14726: -26,-5 14727: -25,-5 14728: -25,-6 @@ -4120,44 +3839,15 @@ entities: 14762: -25,15 14763: -23,16 14764: -23,17 - 14819: 27,2 - 14820: 27,1 - 14821: 28,2 14822: 25,5 14823: 26,6 14824: 16,10 - 14825: 3,13 - 14826: 2,13 14827: 1,16 - 14828: -29,-28 - 14829: -29,-27 - 14830: -28,-27 - 14831: -32,-27 - 14832: -33,-26 - 14833: -32,-26 - 14834: -33,-27 - 14835: -28,-28 - 14836: -28,-24 - 14837: -31,-22 - 14838: -30,-22 - 14839: -33,-22 - 14840: -35,-22 - 14841: -35,-23 - 14842: -36,-23 - 14843: -29,-50 - 14844: -30,-52 14845: -31,-52 - 14846: -31,-50 14847: -31,-53 14848: -31,-54 14849: -33,-50 - 14863: -25,-16 - 14864: -24,-16 - 14887: 12,-10 - 14892: 13,-10 - 14893: 16,-16 14894: 8,-15 - 14895: 7,-15 14899: -33,19 14900: -34,18 14901: -33,18 @@ -4207,6 +3897,1244 @@ entities: 15023: -29,-1 15024: -23,-1 15025: -37,17 + 15190: 6,-95 + 15191: 7,-94 + 15192: 7,-93 + 15193: 9,-93 + 15194: 9,-94 + 15195: 9,-95 + 15196: 10,-95 + 15197: 10,-96 + 15198: 11,-96 + 15199: 9,-96 + 15200: 11,-93 + 15201: 12,-93 + 15202: 12,-92 + 15203: 8,-90 + 15204: 9,-90 + 15205: 10,-90 + 15206: 10,-89 + 15207: 10,-88 + 15208: 12,-89 + 15209: 12,-90 + 15210: 12,-88 + 15211: 12,-89 + 15212: 12,-88 + 15240: -5,-93 + 15241: -5,-94 + 15242: -5,-95 + 15243: -4,-96 + 15244: -4,-95 + 15245: -3,-95 + 15246: -3,-96 + 15247: -2,-96 + 15248: -1,-96 + 15249: -5,-96 + 15250: -3,-95 + 15251: -3,-94 + 15252: -2,-93 + 15253: -7,-93 + 15254: -7,-94 + 15255: -7,-95 + 15256: -7,-96 + 15257: -8,-96 + 15258: -9,-96 + 15259: -9,-92 + 15260: -10,-92 + 15261: -11,-92 + 15262: -12,-92 + 15263: -10,-93 + 15264: -9,-93 + 15265: -12,-93 + 15266: -11,-93 + 15267: -10,-90 + 15268: -10,-91 + 15269: 6,-95 + 15270: 6,-94 + 15271: 5,-93 + 15272: 4,-91 + 15273: 0,-87 + 15274: -1,-87 + 15275: -1,-88 + 15395: 9,-76 + 15396: 10,-76 + 15397: 11,-76 + 15398: 11,-75 + 15399: 10,-75 + 15400: 9,-75 + 15401: 10,-74 + 15402: 11,-73 + 15403: 10,-73 + 15404: 10,-72 + 15405: 11,-71 + 15406: 10,-71 + 15407: 9,-71 + 15408: 9,-70 + 15409: 10,-70 + 15410: 11,-70 + 15411: 9,-78 + 15412: 11,-78 + 15413: 11,-79 + 15414: 9,-79 + 15415: 7,-75 + 15416: 7,-74 + 15417: 7,-69 + 15418: 7,-68 + 15424: -5,-74 + 15425: -7,-75 + 15426: -7,-76 + 15427: -8,-75 + 15428: -8,-74 + 15429: -9,-74 + 15430: -9,-73 + 15431: -8,-73 + 15432: -8,-72 + 15433: -9,-72 + 15434: -9,-71 + 15435: -8,-71 + 15436: -7,-70 + 15437: -7,-69 + 15438: -7,-68 + 15439: -8,-67 + 15440: -9,-67 + 15441: -8,-68 + 15442: -8,-66 + 15443: -7,-66 + 15444: -10,-65 + 15445: -10,-64 + 15446: -9,-63 + 15447: -9,-64 + 15448: -8,-63 + 15449: -7,-63 + 15450: -7,-64 + 15451: -8,-65 + 15466: -4,-58 + 15467: -3,-58 + 15468: -3,-57 + 15469: -4,-57 + 15470: -9,-57 + 15471: -9,-57 + 15472: -9,-53 + 15473: -7,-53 + 15474: -7,-52 + 15475: 3,-50 + 15476: 1,-50 + 15477: 9,-53 + 15478: 9,-59 + 15479: 9,-60 + 15480: 6,-58 + 15481: 6,-57 + 15482: 6,-56 + 15483: 3,-57 + 15484: -1,-57 + 15485: 6,-58 + 15486: 5,-58 + 15487: 5,-59 + 15488: 13,-59 + 15489: 13,-60 + 15490: 13,-61 + 15491: 16,-60 + 15492: 13,-57 + 15493: 13,-56 + 15494: 14,-59 + 15495: 14,-60 + 15496: 15,-63 + 15497: 14,-63 + 15498: 14,-64 + 15499: 15,-64 + 15879: 23,0 + 16413: -46,-51 + 16414: -46,-50 + 16415: -47,-49 + 16416: -49,-49 + 16417: -49,-49 + 16418: -51,-49 + 16419: -51,-50 + 16420: -51,-51 + 16421: -49,-51 + 16422: -49,-50 + 16423: -51,-48 + 16424: -40,-49 + 16425: -40,-51 + 16426: -40,-51 + 16427: -38,-49 + 16428: -38,-47 + 16429: -38,-46 + 16430: -37,-46 + 16431: -37,-47 + 16432: -41,-46 + 16433: -42,-46 + 16434: -42,-47 + 16435: -43,-47 + 16436: -43,-46 + 16437: -43,-45 + 16438: -43,-44 + 16439: -42,-44 + 16440: -42,-45 + 16441: -41,-45 + 16442: -41,-44 + 16443: -38,-45 + 16444: -38,-44 + 16445: -38,-43 + 16446: -38,-42 + 16447: -39,-42 + 16448: -40,-42 + 16449: -40,-41 + 16450: -38,-46 + 16451: -37,-46 + 16452: -37,-47 + 16453: -38,-47 + 16503: -35,-50 + 16504: -34,-50 + 16505: -33,-49 + 16506: -34,-48 + 16507: -35,-51 + 16508: -35,-52 + 16509: -30,-53 + 16510: -32,-53 + 16511: -32,-52 + 16512: -31,-52 + 16513: -31,-51 + 16514: -32,-51 + 16515: -30,-51 + 16516: -31,-54 + 16517: -30,-54 + 16518: -31,-56 + 16519: -32,-56 + 16520: -34,-56 + 16521: -35,-56 + 16522: -34,-55 + 16523: -34,-54 + 16524: -35,-53 + 16525: -35,-55 + 16526: -34,-54 + 16527: -35,-54 + 16528: -33,-54 + 16566: -48,-46 + 16567: -48,-45 + 16568: -49,-45 + 16569: -50,-45 + 16570: -50,-44 + 16571: -49,-42 + 16572: -49,-41 + 16573: -48,-41 + 16574: -46,-39 + 16575: -45,-39 + 16576: -43,-39 + 16577: -42,-39 + 16578: -42,-38 + 16579: -42,-37 + 16580: -42,-36 + 16581: -44,-36 + 16582: -45,-36 + 16583: -46,-36 + 16585: -49,-36 + 16586: -49,-35 + 16587: -48,-34 + 16588: -49,-34 + 16589: -48,-32 + 16590: -49,-31 + 16591: -50,-31 + 16592: -49,-31 + 16593: -49,-29 + 16594: -49,-28 + 16595: -49,-27 + 16596: -52,-31 + 16597: -53,-31 + 16598: -51,-31 + 16599: -54,-31 + 16600: -54,-30 + 16601: -55,-30 + 16602: -55,-31 + 16603: -56,-31 + 16604: -56,-30 + 16605: -55,-29 + 16606: -56,-29 + 16607: -58,-30 + 16608: -59,-30 + 16609: -59,-31 + 16610: -58,-30 + 16611: -58,-31 + 16612: -58,-32 + 16613: -58,-32 + 16614: -58,-32 + 16615: -59,-32 + 16616: -60,-32 + 16617: -60,-31 + 16618: -60,-30 + 16619: -48,-30 + 16620: -48,-28 + 16621: -48,-27 + 16622: -50,-27 + 16623: -48,-25 + 16624: -49,-25 + 16625: -50,-25 + 16626: -50,-24 + 16627: -50,-23 + 16628: -50,-22 + 16629: -51,-22 + 16630: -51,-23 + 16631: -52,-23 + 16632: -48,-22 + 16633: -53,-23 + 16634: -42,-22 + 16635: -44,-22 + 16636: -45,-22 + 16637: -47,-22 + 16638: -46,-21 + 16639: -45,-21 + 16640: -43,-21 + 16641: -42,-21 + 16642: -43,-23 + 16643: -44,-23 + 16644: -45,-23 + 16645: -46,-24 + 16646: -45,-25 + 16647: -45,-24 + 16648: -43,-24 + 16649: -43,-25 + 16650: -43,-26 + 16651: -45,-26 + 16652: -43,-28 + 16653: -45,-28 + 16654: -46,-30 + 16655: -46,-32 + 16656: -46,-32 + 16657: -44,-32 + 16658: -43,-31 + 16659: -43,-30 + 16660: -41,-29 + 16661: -40,-29 + 16662: -42,-31 + 16663: -41,-32 + 16664: -40,-34 + 16665: -40,-34 + 16667: -37,-34 + 16668: -35,-33 + 16669: -34,-34 + 16670: -35,-33 + 16671: -34,-31 + 16672: -35,-31 + 16673: -34,-29 + 16674: -35,-28 + 16675: -36,-27 + 16676: -39,-27 + 16677: -34,-29 + 16678: -32,-28 + 16679: -29,-28 + 16680: -27,-28 + 16681: -26,-29 + 16682: -27,-30 + 16683: -27,-32 + 16684: -29,-32 + 16685: -30,-32 + 16686: -32,-32 + 16687: -31,-31 + 16688: -31,-30 + 16689: -29,-29 + 16690: -27,-29 + 16691: -27,-30 + 16692: -28,-32 + 16693: -30,-32 + 16694: -30,-30 + 16695: -31,-29 + 16696: -32,-31 + 16697: -31,-32 + 16698: -30,-32 + 16699: -27,-33 + 16700: -27,-26 + 16701: -29,-26 + 16702: -32,-26 + 16705: -28,-23 + 16706: -30,-23 + 16707: -31,-23 + 16708: -30,-22 + 16709: -28,-22 + 16710: -34,-25 + 16711: -36,-25 + 16712: -34,-24 + 16713: -37,-23 + 16714: -38,-24 + 16715: -37,-24 + 16716: -38,-23 + 16717: -40,-24 + 16718: -33,-21 + 16719: -34,-21 + 16720: -36,-21 + 16721: -37,-21 + 16722: -39,-21 + 16723: -40,-20 + 16724: -37,-20 + 16725: -35,-20 + 16726: -31,-20 + 16727: -31,-20 + 16728: -33,-20 + 16729: -33,-19 + 16730: -33,-17 + 16731: -35,-16 + 16732: -35,-18 + 16733: -35,-18 + 16734: -37,-16 + 16735: -37,-16 + 16736: -40,-16 + 16737: -40,-15 + 16738: -38,-15 + 16739: -36,-15 + 16740: -35,-16 + 16741: -37,-13 + 16742: -38,-13 + 16743: -38,-13 + 16744: -34,-15 + 16745: -34,-14 + 16746: -35,-13 + 16747: -35,-13 + 16748: -33,-12 + 16749: -33,-12 + 16750: -33,-10 + 16751: -33,-9 + 16752: -33,-8 + 16753: -33,-6 + 16754: -33,-5 + 16755: -33,-5 + 16756: -34,-5 + 16757: -34,-3 + 16758: -33,-3 + 16759: -33,-4 + 16760: -33,-2 + 16761: -33,-1 + 16762: -33,0 + 16763: -30,-2 + 16764: -31,-2 + 16765: -31,-1 + 16766: -31,0 + 16767: -31,-17 + 16768: -28,-17 + 16769: -26,-17 + 16770: -23,-17 + 16771: -22,-16 + 16772: -24,-16 + 16773: -26,-16 + 16774: -26,-15 + 16775: -25,-16 + 16776: -29,-16 + 16777: -29,-17 + 16778: -26,-13 + 16779: -26,-12 + 16780: -19,-17 + 16781: -19,-16 + 16782: -19,-18 + 16783: -20,-16 + 16784: -21,-17 + 16785: -23,-16 + 16786: -26,-17 + 16787: -28,-16 + 16788: -29,-17 + 16789: -31,-17 + 16790: -33,-16 + 16791: -33,-17 + 16792: -33,-19 + 16793: -33,-21 + 16794: -34,-21 + 16795: -35,-18 + 16796: -31,-26 + 16797: -27,-35 + 16798: -29,-35 + 16799: -30,-36 + 16800: -31,-37 + 16801: -32,-37 + 16802: -33,-36 + 16803: -34,-37 + 16804: -35,-38 + 16805: -35,-37 + 16806: -36,-37 + 16807: -35,-38 + 16808: -33,-37 + 16809: -34,-36 + 16810: -36,-36 + 16811: -35,-37 + 16812: -32,-37 + 16813: -31,-38 + 16814: -30,-39 + 16815: -28,-39 + 16816: -27,-39 + 16817: -29,-38 + 16818: -29,-37 + 16819: -29,-36 + 16820: -39,-39 + 16821: -40,-38 + 16822: -40,-38 + 16823: -39,-38 + 16824: -38,-36 + 16825: -40,-37 + 16826: -40,-38 + 16827: -41,-29 + 16828: -40,-28 + 16829: -45,-29 + 16830: -51,-38 + 16831: -53,-38 + 16832: -52,-39 + 16833: -52,-39 + 16834: -49,-41 + 16835: -48,-41 + 16836: -49,-42 + 16992: -38,-4 + 16993: -31,0 + 16994: -33,-3 + 16995: -34,-3 + 16996: -34,-4 + 16997: -22,-21 + 16999: -32,-26 + 17000: -30,-33 + 17001: -34,-31 + 17002: -35,-30 + 17003: -34,-30 + 17004: -35,-31 + 17087: -34,-63 + 17088: -35,-65 + 17089: -34,-67 + 17090: -35,-69 + 17091: -34,-71 + 17092: -34,-73 + 17094: -34,-77 + 17095: -33,-79 + 17096: -35,-82 + 17097: -33,-81 + 17098: -32,-81 + 17099: -32,-80 + 17100: -34,-81 + 17101: -35,-80 + 17102: -35,-78 + 17104: -36,-73 + 17105: -36,-72 + 17106: -33,-71 + 17107: -33,-69 + 17108: -35,-68 + 17109: -34,-66 + 17110: -35,-65 + 17111: -35,-64 + 17112: -35,-62 + 17113: -36,-60 + 17114: -33,-62 + 17116: -34,-58 + 17117: -35,-56 + 17118: -34,-53 + 17119: -35,-50 + 17150: -33,-62 + 17151: -32,-62 + 17152: -30,-62 + 17153: -30,-61 + 17154: -30,-60 + 17155: -30,-59 + 17156: -31,-60 + 17157: -31,-60 + 17158: -29,-60 + 17159: -29,-61 + 17160: -29,-62 + 17161: -29,-63 + 17162: -30,-64 + 17163: -31,-65 + 17164: -30,-65 + 17165: -30,-64 + 17166: -30,-63 + 17167: -31,-62 + 17168: -32,-62 + 17169: -35,-59 + 17170: -35,-58 + 17171: -37,-56 + 17172: -37,-56 + 17173: -38,-55 + 17175: -54,-24 + 17257: 21,-16 + 17280: 15,-9 + 17284: 27,-18 + 17285: 28,-18 + 17286: 27,-19 + 17287: 27,-18 + 17288: 27,-17 + 17289: 28,-17 + 17290: 28,-19 + 17317: 27,4 + 17321: 26,-1 + 17323: 27,-1 + 17325: 28,-1 + 17341: 23,1 + 17343: 23,2 + 17346: 23,4 + 17348: 22,5 + 17349: 21,5 + 17350: 20,5 + 17352: 20,7 + 17353: 21,7 + 17355: 23,6 + 17356: 16,5 + 17357: 15,5 + 17358: 14,6 + 17359: 14,7 + 17361: 23,7 + 17362: 23,7 + 17363: 23,8 + 17364: 25,8 + 17365: 28,8 + 17366: 27,7 + 17367: 25,7 + 17368: 24,7 + 17369: 25,6 + 17371: 26,6 + 17373: 31,7 + 17374: 29,8 + 17375: 27,8 + 17376: 27,7 + 17377: 33,9 + 17378: 33,8 + 17380: 27,4 + 17390: 28,-1 + 17392: 32,1 + 17394: 31,-4 + 17396: 30,-8 + 17397: 26,-11 + 17398: 25,-11 + 17399: 24,-11 + 17400: 24,-10 + 17401: 23,-10 + 17402: 23,-8 + 17403: 25,-7 + 17404: 27,-7 + 17406: 21,-11 + 17407: 19,-8 + 17409: 18,-7 + 17411: 27,-5 + 17412: 28,-5 + 17413: 24,-4 + 17416: 19,-3 + 17417: 17,-3 + 17418: 17,-3 + 17419: 15,-2 + 17420: 15,-3 + 17421: 14,-7 + 17422: 14,-6 + 17423: 14,-5 + 17424: 14,-6 + 17425: 14,-7 + 17426: 15,-9 + 17427: 15,-10 + 17428: 15,-11 + 17429: 15,-12 + 17430: 16,-15 + 17431: 15,-15 + 17432: 14,-15 + 17433: 18,-15 + 17434: 18,-15 + 17435: 21,-15 + 17436: 21,-17 + 17437: 21,-16 + 17438: 19,-16 + 17439: 19,-17 + 17440: 18,-16 + 17441: 12,-15 + 17442: 12,-14 + 17443: 25,-14 + 17444: 24,-14 + 17445: 23,-13 + 17446: 24,-13 + 17447: 25,-13 + 17448: 26,-13 + 17449: 27,-13 + 17450: 27,-13 + 17451: 27,-15 + 17452: 26,-15 + 17453: 24,-15 + 17454: 21,-19 + 17455: 19,-19 + 17456: 19,-19 + 17457: 15,-19 + 17458: 15,-20 + 17459: 14,-20 + 17460: 13,-20 + 17461: 13,-19 + 17462: 14,-19 + 17463: 12,-19 + 17464: 12,-20 + 17465: 11,-20 + 17466: 11,-19 + 17467: 9,-20 + 17468: 8,-20 + 17469: 6,-20 + 17470: 4,-20 + 17471: 3,-19 + 17472: 5,-19 + 17473: 7,-19 + 17474: 9,-19 + 17475: 11,-19 + 17476: 12,-17 + 17477: 9,-17 + 17478: 7,-17 + 17479: 5,-17 + 17480: 3,-17 + 17481: 8,-16 + 17482: 9,-16 + 17483: 10,-15 + 17484: 8,-15 + 17505: 19,6 + 17506: 19,7 + 17507: 21,6 + 17508: 27,8 + 17509: 23,8 + 17592: 19,2 + 17597: 21,2 + 17599: 21,-1 + 17601: 22,-1 + 17602: 25,2 + 17603: 25,3 + 17622: 27,-1 + 17623: 26,-1 + 17624: 24,-1 + 17625: 24,-1 + 17626: 24,1 + 17627: 24,2 + 17628: 24,3 + 17631: 28,4 + 17632: 29,4 + 17633: 29,5 + 17634: 28,5 + 17635: 30,5 + 17636: 30,4 + 17637: 30,3 + 17640: 30,0 + 17641: 30,-1 + 17650: 27,5 + 17859: 21,-5 + 17860: 22,-5 + 17862: 26,-5 + 17864: 20,-5 + 17865: 19,-5 + 17866: 18,-5 + 17867: 17,-5 + 17868: 16,-8 + 17869: 14,-7 + 17870: 14,-6 + 17871: 14,-5 + 17872: 13,-3 + 17873: 12,-3 + 17874: 12,-2 + 17875: 13,-2 + 17876: 15,-2 + 17877: 15,0 + 17878: 14,1 + 17879: 21,1 + 17880: 21,0 + 17881: 19,2 + 17884: 19,3 + 17887: 25,2 + 17888: 25,3 + 17889: 26,3 + 17890: 27,3 + 17891: 28,3 + 17892: 28,4 + 17895: 28,0 + 17896: 27,0 + 17897: 26,0 + 17898: 25,0 + 17899: 25,1 + 17900: 25,2 + 17901: 30,0 + 17902: 30,1 + 17903: 30,2 + 17904: 30,4 + 17905: 30,6 + 17906: 29,6 + 17907: 27,6 + 17908: 25,6 + 17909: 25,5 + 17910: 23,5 + 17911: 20,5 + 17912: 17,5 + 17913: 30,1 + 17915: 30,-3 + 17916: 29,-11 + 17917: 26,-11 + 17918: 24,-10 + 17919: 27,-11 + 17920: 27,-10 + 17921: 26,-13 + 17922: 25,-13 + 17923: 23,-13 + 17924: 19,-16 + 17925: 19,-17 + 17926: 18,-16 + 17927: 21,-16 + 17928: 21,-17 + 17929: 15,-16 + 17930: 16,-16 + 17931: 21,-12 + 17932: 16,-14 + 17933: 16,-15 + 17934: 15,-15 + 17935: 14,-15 + 17936: 15,-12 + 17937: 24,-21 + 17938: 30,-18 + 17939: 29,-14 + 17940: 29,-13 + 17979: 37,17 + 17983: 37,19 + 17984: 38,19 + 17985: 38,18 + 17986: 38,17 + 17987: 38,20 + 17988: 37,20 + 17989: 37,21 + 17990: 38,21 + 17991: 39,21 + 17992: 40,21 + 17993: 40,22 + 18003: 34,25 + 18004: 33,24 + 18009: 30,21 + 18055: 37,12 + 18056: 37,11 + 18057: 37,10 + 18058: 37,9 + 18059: 37,15 + 18060: 36,15 + 18061: 36,15 + 18062: 36,14 + 18063: 34,13 + 18064: 32,14 + 18065: 31,14 + 18066: 31,15 + 18067: 31,16 + 18068: 31,17 + 18070: 29,19 + 18071: 28,19 + 18072: 26,18 + 18073: 26,19 + 18074: 31,12 + 18077: 32,-5 + 18078: 41,9 + 18079: 37,13 + 18080: 39,15 + 18081: 39,16 + 18082: 39,17 + 18132: -14,8 + 18133: -13,8 + 18134: -13,9 + 18135: -14,9 + 18136: -15,9 + 18137: -15,10 + 18138: -17,10 + 18139: -13,7 + 18140: -15,6 + 18141: -15,7 + 18142: -9,10 + 18143: -10,10 + 18144: -11,10 + 18145: -8,12 + 18146: -9,12 + 18147: -4,12 + 18148: -5,12 + 18149: -6,12 + 18150: -6,10 + 18151: -4,10 + 18152: 3,12 + 18153: 5,12 + 18154: 4,12 + 18155: 4,13 + 18156: 2,13 + 18157: 5,13 + 18158: 5,12 + 18159: 7,17 + 18160: 6,17 + 18161: 4,17 + 18162: 1,17 + 18163: 0,17 + 18164: 7,17 + 18165: 8,17 + 18166: 9,25 + 18167: 7,25 + 18168: 4,25 + 18169: 1,25 + 18170: -1,25 + 18171: 3,25 + 18172: 2,25 + 18430: 14,8 + 18431: 14,9 + 18432: 16,9 + 18433: 15,9 + 18434: 14,9 + 18435: 18,8 + 18436: 18,7 + 18437: 32,0 + 18438: 30,-10 + 18539: 26,2 + 18540: 26,1 + 18544: 29,2 + 18545: 29,1 + 18546: 26,0 + 18547: 28,3 + 18548: 29,1 + 18551: 26,2 + 18552: 26,1 + 18558: 28,2 + 18559: 29,2 + 18560: 29,1 + 18634: -52,-53 + 18635: -52,-52 + 18636: -52,-51 + 18637: -53,-51 + 18638: -54,-51 + 18639: -54,-50 + 18640: -53,-50 + 18641: -53,-49 + 18642: -54,-49 + 18643: -53,-48 + 18644: -53,-49 + 18645: -54,-49 + 18646: -54,-54 + 18647: -54,-55 + 18648: -56,-55 + 18649: -57,-55 + 18650: -58,-55 + 18651: -58,-54 + 18652: -59,-54 + 18653: -59,-53 + 18702: -46,-54 + 18703: -46,-53 + 18704: -46,-52 + 18705: -46,-52 + 18706: -46,-52 + 18707: -47,-52 + 18708: -47,-51 + 18709: -46,-51 + 18710: -45,-49 + 18711: -47,-49 + 18712: -49,-49 + 18713: -51,-49 + 18714: -51,-49 + 18715: -51,-47 + 18716: -53,-48 + 18717: -53,-49 + 18718: -54,-49 + 18719: -54,-51 + 18720: -54,-51 + 18721: -53,-50 + 18722: -54,-50 + 18723: -53,-51 + 18724: -52,-51 + 18725: -52,-53 + 18726: -53,-54 + 18727: -53,-52 + 18728: -54,-52 + 18729: -54,-53 + 18730: -52,-54 + 18731: -54,-55 + 18732: -53,-56 + 18733: -52,-56 + 18734: -52,-57 + 18735: -52,-58 + 18736: -51,-58 + 18737: -50,-57 + 18738: -50,-56 + 18739: -50,-54 + 18740: -51,-53 + 18741: -52,-53 + 18742: -53,-61 + 18743: -54,-61 + 18744: -54,-59 + 18745: -54,-58 + 18746: -53,-58 + 18747: -53,-58 + 18748: -53,-61 + 18749: -54,-61 + 18750: -54,-61 + 18751: -57,-61 + 18752: -58,-61 + 18753: -59,-60 + 18754: -58,-59 + 18755: -56,-59 + 18756: -59,-60 + 18757: -61,-60 + 18758: -63,-60 + 18759: -64,-60 + 18760: -64,-60 + 18761: -64,-59 + 18762: -64,-57 + 18763: -64,-57 + 18764: -64,-55 + 18765: -63,-55 + 18766: -64,-55 + 18767: -72,-55 + 18768: -56,-55 + 18769: -56,-55 + 18770: -58,-55 + 18771: -58,-55 + 18772: -59,-54 + 18773: -59,-53 + 18774: -58,-53 + 18775: -56,-53 + 18776: -57,-54 + 18777: -55,-54 + 18778: -54,-54 + 18779: -54,-56 + 18780: -51,-53 + 18781: -50,-54 + 18782: -50,-55 + 18783: -51,-58 + 18784: -51,-59 + 18785: -51,-60 + 18786: -46,-57 + 18787: -47,-57 + 18788: -48,-57 + 18789: -44,-58 + 18790: -42,-58 + 18791: -41,-58 + 18792: -38,-58 + 18793: -37,-58 + 18794: -37,-58 + 18795: -37,-59 + 18796: -39,-53 + 18797: -39,-52 + 18798: -38,-52 + 18799: -37,-52 + 18800: -38,-52 + 18801: -39,-52 + 18802: -41,-55 + 18803: -42,-55 + 18804: -42,-56 + 18805: -41,-56 + 18806: -41,-54 + 18807: -42,-54 + 18808: -42,-53 + 18809: -41,-53 + 18810: -42,-51 + 18811: -43,-51 + 18812: -41,-51 + 18813: -39,-50 + 18814: -38,-50 + 18815: -41,-50 + 18816: -43,-50 + 18817: -38,-47 + 18818: -38,-46 + 18819: -44,-50 + 18820: -45,-50 + 18821: -45,-52 + 18822: -46,-52 + 18823: -47,-51 + 18824: -46,-53 + 18825: -49,-53 + 18826: -48,-54 + 18827: -49,-54 + 18828: -48,-55 + 18829: -48,-55 + 18830: -46,-55 + 18831: -49,-51 + 18832: -49,-50 + 18833: -51,-53 + 18889: 24,-5 + 18895: 11,-59 + 18922: 39,17 + 18923: 40,17 + 18924: 40,18 + 18925: 39,18 + 18926: 40,19 + 18927: 41,19 + 18928: 41,20 + 18929: 42,20 + 18930: 43,20 + 18931: 43,21 + 18932: 45,20 + 18933: 46,20 + 18935: 48,21 + 18937: 45,22 + 18938: 45,22 + 18939: 45,23 + 18940: 45,24 + 18941: 48,24 + 18942: 47,23 + 18943: 49,21 + 18944: 50,21 + 18945: 50,19 + 18946: 49,19 + 18947: 48,19 + 18948: 46,19 + 18949: 45,19 + 18950: 45,20 + 18951: 45,21 + 18952: 43,20 + 18953: 43,19 + 18954: 42,20 + 18955: 40,19 + 18956: 40,19 + 18957: 40,18 + 18958: 41,17 + 18959: 39,17 + 18960: 37,17 + 18961: 38,19 + 18962: 37,21 + 18963: 37,22 + 18964: 40,22 + 18965: 38,22 + 18966: 37,24 + 18967: 37,24 + 18968: 37,24 + 18969: 38,24 + 18970: 37,25 + 18971: 37,24 + 18972: 35,24 + 18973: 34,25 + 18974: 35,26 + 18975: 34,26 + 18976: 35,25 + 18977: 34,24 + 18978: 33,24 + 18979: 33,25 + 18980: 32,24 + 18982: 30,25 + 18983: 30,24 + 18986: 30,22 + 18988: 28,21 + 18989: 28,22 + 18990: 28,24 + 18991: 27,25 + 18992: 27,23 + 18993: 27,22 + 18994: 25,22 + 18995: 23,22 + 18997: 18,22 + 18998: 16,22 + 18999: 17,21 + 19002: 24,21 + 19003: 26,21 + 19004: 16,17 + 19005: 16,18 + 19006: 15,18 + 19007: 15,17 + 19008: 14,18 + 19009: 14,19 + 19010: 14,20 + 19011: 15,21 + 19012: 16,21 + 19013: 15,22 + 19014: 14,22 + 19015: 13,23 + 19016: 16,24 + 19017: 17,27 + 19018: 17,27 + 19019: 17,29 + 19020: 17,31 + 19021: 16,31 + 19022: 16,30 + 19023: 16,29 + 19024: 16,28 + 19025: 16,28 + 19026: 16,27 + 19027: 16,26 + 19032: 13,26 + 19033: 12,26 + 19042: 11,25 + 19043: 11,25 + 19044: 11,24 + 19045: 13,24 + 19046: 15,24 + 19047: 16,25 + 19050: 13,26 + 19051: 13,26 + 19052: 17,31 + 19053: 16,31 + 19054: 15,31 + 19055: 15,32 + 19056: 15,33 + 19057: 17,33 + 19058: 17,33 + 19059: 16,32 + 19060: 16,32 + 19061: 16,34 + 19070: 18,17 + 19071: 19,17 + 19072: 20,17 + 19073: 21,17 + 19074: 21,18 + 19075: 20,18 + 19076: 20,19 + 19077: 19,19 + 19078: 21,19 + 19079: 22,19 + 19080: 23,19 + 19081: 23,18 + 19082: 22,18 + 19083: 21,18 + 19084: 27,21 + 19085: 26,21 + 19086: 25,19 + 19087: 25,18 + 19088: 26,18 + 19089: 24,15 + 19090: 24,16 + 19091: 23,16 + 19092: 23,15 + 19093: 24,15 + 19094: 23,14 + 19095: 23,14 + 19096: 23,13 + 19097: 26,15 + 19098: 27,15 + 19099: 29,15 + 19100: 29,15 + 19101: 25,10 + 19102: 24,10 + 19103: 23,10 + 19104: 23,10 + 19105: 23,13 + 19106: 23,14 + 19107: 23,12 + 19108: 22,12 + 19109: 21,12 + 19110: 20,12 + 19111: 18,14 + 19112: 28,21 + 19113: 27,21 + 19114: 27,22 + 19115: 28,22 + 19116: 28,23 + 19117: 27,23 + 19118: 27,24 + 19119: 28,24 + 19120: 28,25 + 19121: 27,25 + 19122: 27,26 + 19123: 27,27 + 19124: 27,27 + 19125: 27,28 + 19126: 27,29 + 19127: 27,29 + 19128: 26,28 + 19129: 28,28 + 19131: 30,24 + 19132: 30,25 + 19133: 32,25 + 19134: 33,24 + 19135: 34,24 + 19136: 34,25 + 19137: 34,26 + 19138: 35,25 + 19139: 32,17 + 19140: 33,17 + 19327: 20,-1 + 19328: 18,2 + 19329: 22,3 + 19330: 22,-1 + 19344: 32,22 + 19345: 32,21 + 19346: 31,22 + 19347: 22,22 + 19348: 21,22 + 19386: 13,27 + 19387: 11,26 + 19388: 11,27 + 19389: 11,28 + 19390: 10,28 + 19391: 12,28 + 19392: 13,28 + 19393: 14,28 - node: cleanable: True zIndex: 5 @@ -4224,7 +5152,6 @@ entities: 3221: 39,-28 3222: 38,-28 3224: 40,-30 - 3288: 19,6 3844: 38,-29 3857: 39,-45 3858: 39,-46 @@ -4252,12 +5179,7 @@ entities: 4351: -28,-42 4352: -28,-44 4353: -29,-48 - 4354: -28,-46 - 4355: -30,-54 4356: -31,-57 - 4357: -30,-60 - 4358: -31,-64 - 4359: -30,-56 4878: 16,-5 4922: -3,11 4923: -2,11 @@ -4280,15 +5202,6 @@ entities: 5432: -20,-44 5433: -21,-44 5434: -22,-44 - 5554: -30,-31 - 5558: -32,-31 - 5696: -53,-41 - 5697: -51,-41 - 5698: -51,-42 - 5908: -40,-31 - 5909: -38,-31 - 5910: -37,-31 - 5911: -39,-31 6550: -16,7 6551: -17,7 6552: -15,6 @@ -4296,30 +5209,11 @@ entities: 6554: -15,3 6555: -15,3 7323: 53,-19 - 7534: 24,1 - 7535: 24,0 - 7536: 24,-1 7537: 25,-1 - 7538: 24,1 - 7539: 23,1 7540: 23,2 - 7541: 23,1 - 7542: 22,1 - 7543: 21,1 - 7544: 21,1 - 7545: 21,3 - 7546: 24,2 - 7547: 25,2 - 7548: 24,1 - 7549: 24,0 7550: 25,-1 7551: 25,0 - 7552: 24,0 - 7553: 23,5 - 7554: 23,5 7555: 23,6 - 7556: 23,5 - 7557: 24,5 7558: 25,5 8226: 14,-30 8227: 13,-30 @@ -4339,11 +5233,7 @@ entities: 8245: -1,-51 8246: -2,-51 8247: -6,-56 - 8248: -31,-59 8249: -31,-58 - 8250: -30,-57 - 8251: -30,-62 - 8252: -31,-61 8253: -42,-56 8254: -41,-56 8255: -40,-56 @@ -4372,10 +5262,7 @@ entities: 8504: 0,-42 8505: 0,-40 8506: 1,-40 - 9102: -34,-35 - 9187: 50,-22 9188: 49,-25 - 9189: 50,-25 9447: -26,-2 9448: -27,-2 9449: -26,0 @@ -4396,12 +5283,8 @@ entities: 10263: -29,-34 10693: -19,-38 11524: 34,-36 - 11666: -7,-14 11667: -6,-14 11668: -6,-15 - 11669: -7,-15 - 11670: -4,-14 - 11671: -3,-14 11713: -13,-12 11714: -12,-12 11715: -11,-12 @@ -4409,14 +5292,10 @@ entities: 11717: -12,-13 11718: -13,-13 11719: -14,-20 - 11720: -39,-34 - 11721: -43,-35 - 11722: -42,-36 11826: 19,12 11827: 19,13 11829: 17,14 12646: -7,-50 - 12647: -4,-49 12649: 2,-48 12650: 5,-50 12651: 11,-50 @@ -4447,7 +5326,6 @@ entities: 14456: 34,-32 14457: 35,-31 14464: 39,-28 - 14508: 32,-7 14509: 33,-3 14510: 31,8 14511: 34,13 @@ -4456,7 +5334,6 @@ entities: 14669: -26,-11 14670: -26,-10 14865: -25,-14 - 14866: -21,-16 14912: -31,15 14913: -30,16 14914: -30,19 @@ -4470,6 +5347,109 @@ entities: 15040: 21,-26 15041: 21,-27 15042: 20,-27 + 15276: 0,-88 + 15277: 1,-88 + 15278: 1,-87 + 15279: 2,-87 + 15280: 1,-85 + 15281: 1,-85 + 15282: -1,-85 + 15283: -1,-85 + 15284: 8,-89 + 15285: 7,-89 + 15286: 7,-90 + 15287: 6,-90 + 15288: 6,-91 + 15289: 7,-91 + 15419: -5,-69 + 15420: -5,-68 + 17005: -34,-32 + 17006: -35,-32 + 17007: -35,-33 + 17008: -35,-34 + 17009: -36,-34 + 17011: -42,-33 + 17012: -44,-33 + 17013: -44,-32 + 17014: -43,-31 + 17015: -45,-31 + 17016: -46,-31 + 17252: 20,-12 + 17258: 21,-15 + 17259: 26,-13 + 17260: 18,-12 + 17261: 14,-6 + 17262: 15,-16 + 17263: 8,-16 + 17264: 8,-19 + 17265: 3,13 + 17266: 15,2 + 17268: 30,8 + 17269: 48,9 + 17270: 42,-4 + 17271: 53,-22 + 17485: 12,-17 + 17486: 10,-17 + 17487: 7,-17 + 17488: 3,-17 + 17493: 14,2 + 17496: 23,5 + 17497: 24,5 + 17498: 18,7 + 17499: 17,7 + 17500: 18,6 + 17501: 19,6 + 17502: 20,5 + 17503: 20,6 + 17504: 20,7 + 17529: 21,0 + 17530: 21,1 + 17533: 21,-1 + 17534: 21,0 + 17535: 21,1 + 17538: 20,-11 + 17539: 18,-11 + 17540: 18,-10 + 17541: 21,-10 + 17542: 21,-12 + 17543: 21,-11 + 17544: 18,-8 + 17545: 18,-8 + 17585: 19,1 + 17586: 18,1 + 17587: 18,0 + 17589: 19,1 + 17621: 27,0 + 17850: 20,-3 + 17851: 21,-3 + 17853: 18,1 + 17854: 18,0 + 18502: 12,-32 + 18503: 13,-31 + 18504: 12,-30 + 18505: 13,-30 + 18506: 14,-27 + 18892: 36,-44 + 19141: 34,17 + 19142: 35,18 + 19143: 34,18 + 19144: 37,18 + 19145: 37,17 + 19146: 38,17 + 19147: 38,18 + 19148: 38,20 + 19149: 36,21 + 19150: 37,22 + 19151: 40,22 + 19152: 41,20 + 19153: 43,20 + 19154: 43,19 + 19156: 30,22 + 19157: 28,21 + 19159: 30,25 + 19160: 33,25 + 19161: 35,24 + 19332: 19,0 - node: cleanable: True zIndex: 5 @@ -4480,7 +5460,6 @@ entities: 1595: -17,10 1596: -17,8 3976: 8,-55 - 3977: 7,-53 3978: 7,-54 3979: 8,-56 3980: 8,-57 @@ -4494,11 +5473,9 @@ entities: 3989: 9,-48 3990: 9,-49 3991: 7,-50 - 3992: 6,-49 3993: 5,-50 3994: 0,-50 3995: -1,-48 - 3996: -3,-50 3997: -5,-49 3998: -7,-48 3999: -8,-50 @@ -4509,35 +5486,19 @@ entities: 4006: -9,-56 4007: -6,-56 4008: -7,-56 - 4009: -8,-59 4010: -9,-60 4023: -8,-37 4024: -9,-37 4025: -9,-37 4026: -13,-39 4027: -13,-41 - 4360: -30,-56 4361: -30,-58 4362: -31,-57 - 4363: -31,-60 - 4364: -30,-59 - 4365: -30,-64 - 4366: -31,-62 - 4367: -30,-55 4368: -31,-56 4369: -31,-55 - 4370: -30,-50 - 4371: -28,-46 4372: -27,-42 - 4375: -24,-32 - 4376: -24,-30 - 4378: -24,-26 - 4379: -24,-25 4380: -24,-23 4381: -23,-21 - 4382: -22,-20 - 4383: -19,-20 - 4384: -19,-20 4385: -16,-20 4387: -17,-16 4388: -18,-14 @@ -4564,23 +5525,15 @@ entities: 4414: 15,10 4415: 16,8 4417: 15,4 - 4418: 15,2 - 4419: 15,0 - 4420: 15,-2 4422: 17,-4 - 4425: 25,-4 - 4426: 26,-3 4427: 28,-5 4431: 32,-9 4432: 31,-10 4434: 30,-15 4435: 31,-17 4436: 30,-20 - 4437: 32,-22 4438: 32,-24 - 4439: 35,-22 4440: 38,-23 - 4441: 40,-22 4442: 43,-22 4443: 44,-22 4446: 53,-24 @@ -4589,14 +5542,9 @@ entities: 4455: 51,-17 4464: 53,-20 4466: 47,-19 - 4468: 41,-22 4469: 39,-21 - 4471: 32,-22 - 4472: 30,-22 - 4473: 27,-22 4474: 25,-22 4476: 21,-21 - 4477: 19,-22 4478: 17,-22 4479: 14,-23 4480: 12,-23 @@ -4616,24 +5564,7 @@ entities: 4494: 10,-47 4495: 12,-44 4496: 14,-45 - 4497: 17,-44 - 4498: 17,-43 4499: 16,-43 - 4620: 31,35 - 4621: 34,35 - 4622: 32,33 - 4623: 31,31 - 4624: 32,28 - 4625: 31,26 - 4626: 33,25 - 4627: 32,26 - 4628: 32,28 - 4629: 31,28 - 4630: 33,23 - 4631: 32,20 - 4632: 32,17 - 4633: 33,18 - 4634: 32,19 4635: 31,15 4636: 32,13 4637: 32,10 @@ -4644,12 +5575,9 @@ entities: 4643: 31,7 4644: 32,6 4645: 32,2 - 4646: 31,0 - 4647: 33,-2 4648: 33,-3 4650: 31,-7 4651: 31,-9 - 4652: 33,-7 4653: 30,-8 4654: 30,-10 4655: 33,-11 @@ -4657,21 +5585,15 @@ entities: 4659: 31,-17 4660: 32,-17 4661: 30,-20 - 4662: 33,-22 4665: 33,-21 4666: 31,-21 4667: 36,-21 - 4668: 35,-22 4669: 40,-23 - 4670: 41,-22 4672: 32,-21 - 4673: 29,-22 - 4674: 27,-22 4675: 26,-23 4676: 25,-23 4677: 23,-21 4678: 22,-23 - 4679: 20,-22 4680: 17,-23 4681: 15,-23 4682: 17,-23 @@ -4679,10 +5601,8 @@ entities: 4684: 18,-23 4685: 24,-23 4686: 23,-23 - 4687: 24,-22 4690: 20,-21 4691: 19,-23 - 4692: 20,-19 4693: 20,-20 4694: 19,-20 4695: 17,-23 @@ -4710,7 +5630,6 @@ entities: 4759: 21,-32 4760: 21,-32 4762: 30,-21 - 4764: 34,-22 4765: 30,-23 4766: 35,-19 4767: 37,-18 @@ -4727,31 +5646,6 @@ entities: 4778: 38,-13 4780: 35,-18 4781: 35,-19 - 4843: 32,24 - 4844: 31,25 - 4845: 30,24 - 4846: 29,24 - 4847: 29,27 - 4848: 29,26 - 4849: 31,30 - 4850: 33,31 - 4851: 31,32 - 4852: 33,36 - 4853: 32,40 - 4854: 31,40 - 4855: 33,41 - 4856: 31,38 - 4857: 33,38 - 4858: 31,37 - 4859: 27,-4 - 4860: 26,-5 - 4861: 24,-3 - 4862: 23,-5 - 4879: 14,-2 - 4880: 14,-1 - 4881: 15,-1 - 4882: 14,2 - 4883: 14,3 4884: 14,5 4886: 16,7 4888: 17,7 @@ -4789,20 +5683,13 @@ entities: 5167: -9,-7 5168: -10,-7 5199: 2,-17 - 5200: 2,-19 5201: 2,-20 5202: 3,-20 - 5203: 7,-20 5204: 7,-19 - 5205: 5,-19 - 5206: 6,-18 5207: 7,-19 - 5208: 9,-19 - 5209: 11,-20 5210: 11,-18 5211: 12,-18 5212: 12,-19 - 5213: 12,-20 5231: 11,-28 5232: 9,-31 5233: 9,-32 @@ -4822,7 +5709,6 @@ entities: 5267: 10,-45 5268: 11,-45 5269: 12,-44 - 5270: 12,-42 5271: 11,-41 5272: 10,-41 5273: 9,-41 @@ -4851,7 +5737,6 @@ entities: 5352: -1,-48 5353: 0,-48 5354: -5,-50 - 5355: -4,-49 5356: -8,-49 5357: -7,-48 5358: -8,-48 @@ -4860,11 +5745,8 @@ entities: 5363: -9,-52 5364: -8,-52 5366: -5,-53 - 5367: -5,-52 - 5368: -6,-52 5369: -6,-55 5370: -5,-55 - 5371: -5,-54 5373: -6,-56 5374: -7,-56 5375: -8,-57 @@ -4895,8 +5777,6 @@ entities: 5401: -7,-69 5402: -8,-69 5403: -9,-69 - 5435: -21,-42 - 5436: -20,-42 5437: -23,-42 5438: -23,-41 5439: -24,-41 @@ -4911,25 +5791,7 @@ entities: 5500: -18,-57 5501: -19,-57 5502: -20,-57 - 5665: -51,-42 - 5666: -52,-42 - 5667: -52,-44 - 5668: -50,-46 - 5669: -52,-46 - 5670: -51,-47 - 5671: -50,-47 - 5717: -38,-42 - 5836: -51,-33 - 5838: -53,-34 - 5839: -51,-34 - 5840: -52,-35 - 5981: -29,-31 - 5983: -26,-32 - 5984: -25,-31 - 5986: -24,-32 - 5987: -24,-29 5988: -23,-27 - 5989: -24,-26 6038: -19,-25 6039: -18,-26 6040: -19,-26 @@ -4947,15 +5809,9 @@ entities: 6052: -19,-23 6053: -19,-21 6054: -20,-21 - 6055: -20,-20 - 6057: -23,-20 6058: -24,-21 6059: -21,-21 - 6060: -24,-20 6061: -23,-23 - 6090: -26,-23 - 6091: -21,-16 - 6092: -21,-15 6100: -17,-16 6101: -17,-15 6102: -17,-14 @@ -4994,10 +5850,8 @@ entities: 6274: -26,-36 6275: -25,-36 6276: -25,-35 - 6277: -24,-35 6278: -25,-34 6282: -25,-38 - 6283: -24,-40 6284: -24,-41 6285: -25,-41 6358: -5,-35 @@ -5012,19 +5866,7 @@ entities: 6377: -2,-27 6378: -3,-28 6379: -1,-27 - 6414: -31,-69 - 6415: -33,-69 - 6416: -32,-70 - 6417: -31,-70 - 6418: -31,-70 - 6419: -30,-69 - 6420: -31,-68 - 6421: -31,-66 - 6422: -30,-64 - 6423: -32,-62 - 6424: -31,-60 6425: -32,-58 - 6426: -30,-56 6427: -33,-55 6428: -33,-55 6429: -35,-55 @@ -5036,22 +5878,16 @@ entities: 6435: -35,-47 6436: -35,-46 6437: -35,-44 - 6438: -32,-44 - 6439: -32,-44 6440: -34,-46 - 6441: -31,-45 6442: -32,-41 6443: -34,-41 6444: -34,-41 6445: -31,-42 6446: -28,-42 6447: -23,-31 - 6448: -24,-29 6449: -23,-26 - 6450: -24,-25 6451: -23,-22 6452: -25,-20 - 6453: -23,-20 6485: -16,-5 6488: -16,1 6556: -15,6 @@ -5102,14 +5938,6 @@ entities: 6776: 7,10 6777: 10,10 6778: 10,12 - 6875: 14,3 - 6876: 14,2 - 6877: 14,1 - 6878: 15,1 - 6879: 15,0 - 6880: 14,0 - 6881: 14,1 - 6882: 16,0 6883: 16,1 6884: 16,3 6885: 15,4 @@ -5157,18 +5985,10 @@ entities: 7383: 48,-9 7384: 47,-9 7385: 48,-8 - 7650: 19,-15 - 7652: 22,-15 7653: 23,-15 8199: 30,-23 - 8200: 29,-22 - 8201: 29,-22 8202: 29,-21 8203: 27,-21 - 8204: 27,-22 - 8205: 26,-22 - 8206: 33,-22 - 8210: 34,-22 8211: 35,-21 8212: 32,-21 8213: 29,-23 @@ -5197,13 +6017,8 @@ entities: 9050: -21,-24 9051: -20,-25 9052: -21,-19 - 9053: -24,-20 9109: -29,-35 9110: -30,-35 - 9117: -24,-36 - 9118: -16,-42 - 9119: -17,-42 - 9120: -18,-42 9462: -31,4 9463: -30,4 9464: -31,3 @@ -5217,61 +6032,26 @@ entities: 9542: -17,-11 10066: 16,11 10067: 15,12 - 10068: 5,12 - 10069: 3,13 10159: -20,18 10160: -20,17 10161: -20,17 10162: -17,19 10163: -18,19 10164: -17,19 - 10264: -37,-34 - 10265: -37,-35 - 10268: -35,-32 - 10269: -33,-32 - 10272: -33,-32 - 10273: -37,-32 10274: -33,-34 10275: -30,-38 10276: -30,-37 - 10279: -34,-39 10280: -29,-35 10281: -29,-34 10282: -28,-34 - 10294: -30,-34 - 10295: -31,-32 - 10296: -30,-32 - 10297: -34,-38 - 10298: -34,-36 10697: -21,-38 10701: -15,-33 10702: -16,-33 10703: -15,-32 - 10788: -51,-33 - 10789: -51,-34 - 10791: -45,-31 - 10792: -45,-33 - 10793: -46,-34 - 10794: -45,-37 - 10795: -45,-40 - 10796: -45,-42 - 10797: -45,-43 - 10798: -44,-43 - 10799: -44,-42 11709: -10,-13 11710: -9,-14 11711: -13,-16 11712: -13,-15 - 11747: -44,-23 - 11748: -36,-23 - 11749: -37,-23 - 11750: -37,-22 - 11751: -38,-22 - 11761: -28,-24 - 11762: -29,-24 - 11763: -30,-24 - 11764: -31,-23 - 11765: -31,-23 11769: -28,-22 11770: -28,-22 12223: 44,-59 @@ -5291,81 +6071,26 @@ entities: 12523: 10,10 12524: 8,11 12525: 5,10 - 12526: 3,12 12527: -1,10 12528: 9,16 12529: 9,16 - 12530: 9,17 12531: 8,16 - 12532: 8,17 - 12533: 7,17 12534: -2,16 12535: -2,16 12536: -2,17 - 12537: -1,17 12538: -2,17 12539: -2,18 12540: -3,18 - 12569: -39,-32 - 12570: -36,-31 - 12571: -34,-32 - 12572: -32,-31 - 12573: -31,-32 - 12574: -37,-27 - 12575: -39,-27 - 12576: -36,-26 - 12577: -39,-25 - 12578: -36,-23 - 12579: -44,-23 - 12580: -46,-23 - 12581: -44,-25 - 12582: -45,-27 - 12583: -44,-31 - 12584: -45,-33 - 12585: -46,-36 - 12586: -46,-39 - 12587: -45,-40 - 12588: -45,-37 - 12589: -45,-33 - 12590: -45,-31 - 12591: -50,-31 - 12592: -52,-31 - 12593: -53,-32 - 12594: -52,-34 - 12595: -51,-34 - 12596: -51,-31 - 12597: -52,-30 - 12598: -51,-28 - 12599: -51,-27 - 12600: -49,-43 - 12601: -51,-46 - 12602: -48,-44 - 12603: -44,-44 - 12604: -43,-47 - 12605: -44,-48 12606: -43,-50 - 12607: -40,-49 - 12608: -44,-49 - 12609: -44,-49 12610: -42,-53 12611: -43,-51 - 12612: -39,-53 - 12613: -40,-54 12614: -36,-55 12615: -33,-55 12616: -34,-55 12617: -38,-58 12618: -39,-59 12619: -36,-59 - 12620: -33,-59 - 12621: -31,-59 - 12622: -30,-57 - 12623: -31,-60 - 12624: -31,-64 - 12625: -31,-67 - 12626: -31,-68 12627: -29,-56 - 12629: -29,-50 12630: -24,-47 12631: -25,-45 12632: -20,-47 @@ -5383,8 +6108,6 @@ entities: 12665: 10,-54 12666: 9,-54 12667: 9,-57 - 12668: 7,-53 - 12669: 6,-49 12784: 88,-31 12785: 88,-32 12786: 87,-30 @@ -5465,7 +6188,6 @@ entities: 12919: -20,-40 12920: -15,-39 12921: 14,-33 - 12922: 11,-33 12931: 10,-32 12932: 13,-29 12933: 12,-29 @@ -5552,12 +6274,6 @@ entities: 14354: -11,-43 14355: -12,-43 14356: -13,-43 - 14357: -14,-42 - 14358: -17,-42 - 14359: -4,-49 - 14360: -3,-49 - 14361: 5,-49 - 14362: 6,-49 14419: 15,-56 14420: 16,-58 14421: 14,-58 @@ -5607,7 +6323,6 @@ entities: 14686: -26,-5 14687: -26,-6 14688: -30,-5 - 14689: -32,-5 14690: -36,-4 14691: -37,-4 14692: -38,-4 @@ -5647,14 +6362,575 @@ entities: 15011: -6,-41 15012: -4,-42 15013: -5,-40 - 15026: -12,12 - 15027: -11,12 - 15028: -16,12 - 15029: -17,12 15030: -13,12 15031: 14,12 15032: 13,12 15044: 21,-28 + 15213: 12,-89 + 15214: 12,-88 + 15215: 0,-87 + 15216: -1,-87 + 15217: -1,-88 + 15218: 1,-90 + 15219: 2,-90 + 15220: 2,-91 + 15221: 3,-91 + 15222: 3,-90 + 15223: -1,-93 + 15224: -2,-93 + 15225: 0,-95 + 15226: -1,-96 + 15227: -2,-96 + 15228: -4,-95 + 15229: -5,-95 + 15230: -5,-94 + 15231: -9,-92 + 15232: -10,-92 + 15233: -7,-94 + 15234: -7,-96 + 15235: -8,-96 + 15236: -8,-90 + 15237: -6,-89 + 15238: -5,-89 + 15239: -4,-89 + 15421: -5,-69 + 15422: -5,-75 + 15423: -5,-74 + 15502: 10,-65 + 15503: 9,-65 + 15504: 9,-64 + 15505: 8,-64 + 15506: 8,-63 + 15507: 7,-68 + 15508: 7,-69 + 15509: 10,-69 + 15510: 10,-69 + 15511: 10,-68 + 15512: 10,-67 + 15513: 7,-68 + 15514: 11,-68 + 15515: 11,-66 + 15516: 11,-65 + 15517: 10,-66 + 15518: 9,-66 + 15519: 9,-68 + 15520: 11,-73 + 15521: 10,-74 + 15522: 9,-74 + 15523: 11,-76 + 15524: 11,-73 + 15525: -8,-76 + 15526: -9,-75 + 15527: -8,-73 + 15528: -7,-72 + 15529: -7,-72 + 15530: -7,-70 + 15531: -7,-69 + 15532: -9,-69 + 15533: -9,-71 + 15534: -7,-72 + 15535: -8,-69 + 15536: -8,-68 + 15537: -8,-66 + 15538: -8,-66 + 15539: -9,-65 + 15540: -8,-64 + 15541: -6,-64 + 15542: -6,-63 + 15543: -7,-63 + 15544: -7,-61 + 15545: -8,-60 + 15546: -10,-62 + 15547: -10,-62 + 15548: -5,-58 + 15549: -4,-58 + 15550: -5,-57 + 15551: -1,-57 + 15552: 0,-57 + 15553: -1,-57 + 15554: 0,-58 + 15555: 3,-58 + 15556: 3,-56 + 15557: 0,-56 + 15558: -3,-56 + 15559: -3,-57 + 15560: -3,-52 + 15561: -2,-52 + 15562: -3,-51 + 15564: 0,-51 + 15565: 2,-51 + 15566: 2,-52 + 15567: 1,-54 + 15568: 7,-57 + 15569: 6,-58 + 15570: 9,-57 + 15571: 11,-57 + 15572: 9,-58 + 15573: 10,-59 + 15574: 9,-60 + 15575: 9,-59 + 15576: 11,-59 + 15577: 11,-60 + 15578: 9,-61 + 15579: 9,-62 + 15580: 11,-63 + 15581: 9,-63 + 15582: 8,-63 + 15583: 8,-64 + 15584: 13,-59 + 15585: 16,-59 + 15586: 16,-58 + 15587: 17,-56 + 15588: 15,-55 + 15589: 15,-54 + 15590: 14,-54 + 15591: 13,-54 + 15592: 13,-55 + 15593: 13,-57 + 15594: 13,-61 + 15595: 14,-61 + 15596: 15,-61 + 15597: 24,-57 + 15598: 23,-56 + 15599: 21,-54 + 15600: 8,-48 + 15601: -2,-49 + 16454: -39,-47 + 16455: -39,-46 + 16529: -33,-54 + 16530: -35,-54 + 16531: -35,-53 + 16532: -33,-53 + 16533: -35,-57 + 16534: -34,-57 + 16535: -33,-57 + 16536: -33,-58 + 16537: -34,-58 + 16538: -35,-58 + 16539: -35,-59 + 16540: -34,-59 + 16541: -31,-57 + 16542: -32,-56 + 16543: -32,-55 + 16544: -32,-54 + 16545: -35,-55 + 16546: -34,-54 + 16547: -35,-49 + 16548: -35,-48 + 16549: -36,-43 + 16550: -36,-42 + 16551: -36,-41 + 16552: -36,-40 + 16553: -35,-40 + 16554: -33,-40 + 16555: -33,-41 + 16556: -31,-41 + 16557: -29,-41 + 16558: -28,-41 + 16559: -28,-42 + 16560: -29,-43 + 16562: -30,-42 + 16563: -29,-42 + 16564: -27,-42 + 16565: -31,-43 + 16837: -49,-39 + 16838: -49,-37 + 16839: -48,-36 + 16840: -49,-34 + 16841: -50,-33 + 16842: -49,-32 + 16843: -50,-32 + 16844: -50,-31 + 16845: -50,-29 + 16846: -48,-27 + 16847: -48,-28 + 16848: -48,-30 + 16849: -46,-31 + 16850: -46,-30 + 16851: -45,-30 + 16852: -44,-31 + 16853: -44,-30 + 16854: -41,-31 + 16855: -42,-31 + 16856: -41,-30 + 16857: -40,-30 + 16858: -40,-29 + 16859: -42,-28 + 16860: -43,-28 + 16861: -45,-28 + 16862: -46,-28 + 16863: -46,-33 + 16864: -44,-33 + 16865: -43,-33 + 16866: -44,-34 + 16867: -41,-33 + 16868: -41,-34 + 16869: -40,-34 + 16871: -37,-33 + 16872: -36,-33 + 16873: -35,-33 + 16874: -36,-32 + 16875: -35,-31 + 16876: -36,-30 + 16877: -36,-30 + 16878: -36,-29 + 16879: -36,-32 + 16880: -32,-33 + 16881: -32,-32 + 16882: -31,-31 + 16883: -30,-32 + 16884: -31,-33 + 16885: -29,-33 + 16886: -26,-32 + 16887: -26,-31 + 16888: -26,-30 + 16889: -27,-29 + 16890: -28,-29 + 16891: -24,-30 + 16892: -25,-31 + 16893: -24,-30 + 16894: -25,-28 + 16895: -24,-28 + 16896: -23,-29 + 16897: -25,-31 + 16898: -24,-33 + 16899: -25,-33 + 16900: -23,-34 + 16901: -24,-34 + 16902: -25,-34 + 16903: -24,-35 + 16904: -27,-35 + 16905: -29,-35 + 16906: -28,-36 + 16907: -29,-38 + 16908: -30,-38 + 16909: -32,-38 + 16910: -32,-37 + 16911: -34,-37 + 16912: -35,-37 + 16913: -36,-37 + 16914: -35,-36 + 16915: -36,-37 + 16916: -38,-39 + 16917: -38,-38 + 16918: -39,-37 + 16919: -40,-38 + 16920: -43,-39 + 16924: -45,-39 + 16925: -48,-45 + 16926: -51,-46 + 16927: -48,-46 + 16928: -47,-47 + 16929: -46,-46 + 16930: -50,-49 + 16931: -51,-49 + 16932: -51,-50 + 16933: -39,-48 + 16934: -38,-47 + 16935: -42,-46 + 16936: -38,-42 + 16937: -39,-42 + 16938: -36,-42 + 16939: -36,-41 + 16940: -34,-41 + 16941: -35,-31 + 16942: -35,-29 + 16943: -35,-27 + 16945: -40,-27 + 16946: -38,-24 + 16947: -39,-25 + 16948: -41,-24 + 16949: -38,-24 + 16950: -35,-24 + 16951: -35,-23 + 16952: -36,-23 + 16953: -36,-25 + 16954: -33,-20 + 16955: -35,-21 + 16956: -37,-21 + 16957: -39,-20 + 16958: -40,-20 + 16959: -42,-21 + 16960: -43,-21 + 16961: -45,-21 + 16962: -46,-22 + 16963: -45,-22 + 16964: -43,-22 + 16965: -42,-22 + 16966: -44,-23 + 16967: -45,-24 + 16968: -45,-24 + 16969: -45,-24 + 16970: -44,-25 + 16971: -37,-16 + 16972: -39,-16 + 16973: -34,-14 + 16974: -34,-12 + 16975: -33,-12 + 16976: -31,-12 + 16977: -26,-13 + 16978: -26,-11 + 16979: -28,-10 + 16980: -28,-9 + 16981: -27,-8 + 16982: -29,-9 + 16983: -29,-8 + 16984: -29,-6 + 16985: -30,-5 + 16986: -30,-5 + 16987: -31,-8 + 16988: -31,-9 + 17253: 15,-9 + 17510: 21,5 + 17511: 22,5 + 17514: 27,4 + 17516: 28,-5 + 17517: 27,-5 + 17606: 25,1 + 17607: 25,0 + 17608: 26,0 + 17609: 27,0 + 17610: 28,0 + 17613: 28,4 + 17941: 32,-9 + 17942: 30,-7 + 17943: 30,-4 + 17944: 30,-5 + 17945: 32,-5 + 17946: 32,-4 + 17947: 32,-3 + 17948: 30,-3 + 17949: 30,-2 + 17950: 32,-2 + 17951: 32,-1 + 18027: 34,24 + 18028: 34,24 + 18029: 36,24 + 18031: 36,23 + 18034: 38,20 + 18035: 40,20 + 18036: 40,21 + 18037: 40,20 + 18038: 39,20 + 18039: 39,17 + 18041: 39,16 + 18042: 40,15 + 18043: 41,15 + 18044: 41,18 + 18045: 39,16 + 18046: 40,15 + 18047: 40,14 + 18048: 38,14 + 18049: 36,14 + 18050: 37,15 + 18051: 36,15 + 18052: 36,14 + 18053: 37,11 + 18083: 39,15 + 18084: 40,15 + 18085: 40,18 + 18086: 37,17 + 18087: 37,18 + 18088: 38,19 + 18090: 31,18 + 18101: 34,25 + 18102: 36,24 + 18106: 38,21 + 18107: 39,21 + 18108: 41,21 + 18109: 38,21 + 18110: 37,19 + 18111: 39,18 + 18112: 33,15 + 18113: 31,15 + 18115: 32,16 + 18116: 33,14 + 18117: 34,14 + 18118: 32,12 + 18119: 32,11 + 18458: 17,-41 + 18459: 18,-40 + 18460: 20,-40 + 18461: 21,-41 + 18462: 22,-41 + 18463: 22,-40 + 18464: 19,-40 + 18465: 19,-42 + 18466: 21,-44 + 18467: 22,-44 + 18468: 22,-45 + 18469: 21,-45 + 18470: 20,-44 + 18471: 18,-47 + 18472: 14,-45 + 18473: 14,-44 + 18474: 14,-43 + 18475: 13,-43 + 18476: 13,-44 + 18477: 12,-44 + 18478: 12,-43 + 18479: 12,-45 + 18480: 10,-44 + 18481: 10,-42 + 18482: 10,-40 + 18483: 11,-37 + 18484: 11,-37 + 18485: 11,-40 + 18486: 11,-43 + 18487: 9,-45 + 18488: 9,-43 + 18489: 9,-40 + 18490: 9,-37 + 18491: 8,-37 + 18492: 12,-34 + 18493: 14,-34 + 18494: 15,-34 + 18495: 16,-34 + 18496: 16,-32 + 18497: 16,-31 + 18498: 16,-30 + 18499: 11,-29 + 18500: 11,-30 + 18501: 11,-31 + 18507: 9,-38 + 18850: -45,-51 + 18851: -43,-51 + 18852: -51,-49 + 18853: -53,-48 + 18854: -53,-49 + 18855: -53,-54 + 18856: -53,-56 + 18857: -54,-56 + 18858: -58,-55 + 18859: -58,-54 + 18860: -58,-53 + 18861: -59,-53 + 18862: -64,-59 + 18863: -54,-59 + 18864: -54,-58 + 18865: -52,-56 + 18866: -47,-58 + 18867: -37,-58 + 18868: -35,-59 + 18869: -35,-58 + 18870: -36,-66 + 18871: -30,-64 + 18872: -31,-64 + 18873: -31,-65 + 18874: -30,-65 + 18875: -29,-62 + 18876: -29,-61 + 18877: -31,-60 + 18878: -31,-59 + 18879: -30,-59 + 18880: -34,-69 + 18881: -35,-70 + 18882: -34,-76 + 18883: -35,-76 + 18884: -35,-77 + 18885: -35,-81 + 18886: -48,-45 + 18887: -46,-46 + 18888: -46,-47 + 18890: 28,-3 + 18893: 34,-42 + 18896: -7,-59 + 18897: -13,-42 + 18898: -48,-36 + 18899: -43,-25 + 18900: 16,17 + 18902: 38,17 + 19162: 32,23 + 19164: 29,22 + 19165: 27,22 + 19166: 27,23 + 19167: 24,21 + 19170: 22,18 + 19171: 21,17 + 19172: 19,17 + 19173: 18,17 + 19174: 19,19 + 19175: 21,19 + 19176: 23,18 + 19177: 22,18 + 19180: 17,22 + 19181: 16,22 + 19182: 17,24 + 19183: 14,24 + 19184: 14,22 + 19185: 14,22 + 19186: 20,21 + 19188: 24,22 + 19189: 33,18 + 19190: 33,17 + 19191: 33,18 + 19192: 32,18 + 19193: 31,17 + 19194: 34,17 + 19195: 36,17 + 19196: 39,17 + 19197: 41,19 + 19198: 42,19 + 19199: 45,20 + 19201: 46,22 + 19202: 45,22 + 19203: 46,20 + 19205: 49,19 + 19206: 50,19 + 19207: 51,21 + 19208: 50,21 + 19209: 49,21 + 19210: 46,22 + 19211: 46,21 + 19212: 42,20 + 19213: 41,21 + 19214: 40,21 + 19215: 42,21 + 19216: 39,22 + 19333: 19,3 + 19335: 19,5 + 19336: 18,5 + 19337: 39,18 + 19338: 36,17 + 19339: 35,17 + 19340: 34,17 + 19341: 35,18 + 19342: 37,18 + 19394: 12,26 + 19395: 12,27 + 19396: 12,25 + 19397: 13,25 + 19398: 14,25 + 19399: 12,24 + 19400: 14,25 + 19401: 15,25 + 19402: 17,21 + 19403: 17,22 + 19404: 15,20 + 19405: 14,20 + 19406: 15,18 + 19407: 16,18 + 19408: 15,17 + 19409: 20,22 + 19410: 22,22 + 19411: 23,22 + 19412: 22,21 + 19413: 23,23 + 19414: 22,23 + 19415: 21,23 + 19416: 31,20 + 19417: 23,18 + 19418: 20,19 + 19419: 19,19 + 19420: 20,17 + 19421: 21,17 + 19422: 23,17 + 19423: 23,16 + 19424: 23,15 + 19425: 24,15 + 19426: 24,16 + 19427: 27,16 + 19428: 28,16 - node: cleanable: True zIndex: 5 @@ -5664,8 +6940,6 @@ entities: 1159: 21,-54 1160: 20,-54 1161: 19,-54 - 3289: 18,6 - 3290: 18,7 3291: 18,8 3292: 19,8 3945: 35,-56 @@ -5686,22 +6960,12 @@ entities: 4514: 10,-24 4515: 12,-22 4516: 16,-22 - 4517: 19,-22 - 4520: 26,-22 - 4521: 28,-21 - 4522: 29,-22 - 4523: 32,-22 - 4524: 36,-22 4525: 37,-21 - 4526: 40,-22 - 4527: 41,-21 4528: 44,-22 4537: 45,-22 4538: 45,-20 4542: 46,-17 4543: 45,-19 - 4547: 40,-21 - 4549: 31,-22 4550: 31,-20 4551: 32,-18 4552: 31,-16 @@ -5710,63 +6974,24 @@ entities: 4555: 31,-9 4556: 31,-7 4558: 33,-4 - 4559: 30,-4 - 4560: 32,-3 - 4561: 31,0 4565: 33,9 4567: 32,13 4568: 32,15 4569: 31,17 - 4570: 33,20 - 4571: 33,22 - 4572: 31,24 - 4573: 33,27 - 4574: 33,29 - 4575: 32,31 - 4576: 32,34 - 4577: 32,36 - 4578: 32,39 - 4579: 32,41 - 4580: 33,37 - 4581: 32,34 - 4582: 32,31 - 4583: 30,27 - 4584: 29,26 - 4585: 31,24 - 4586: 32,23 - 4587: 33,21 - 4588: 32,18 4589: 32,15 4591: 32,10 4592: 32,8 - 4595: 32,0 4596: 32,4 4598: 34,5 4599: 32,7 - 4600: 31,5 4602: 33,9 4604: 33,11 4606: 32,13 4607: 32,16 - 4608: 33,17 4609: 33,16 - 4610: 31,19 - 4611: 33,24 - 4612: 31,23 - 4613: 32,25 - 4614: 31,27 - 4615: 31,29 - 4616: 32,30 - 4617: 33,33 - 4618: 33,35 - 4619: 32,35 - 4833: 30,-5 - 4834: 32,-4 - 4835: 30,-7 4836: 33,-8 4837: 30,-10 4838: 32,-11 - 4840: 33,19 4841: 31,18 4842: 31,16 4889: 16,7 @@ -5795,8 +7020,6 @@ entities: 5156: -14,-8 5214: 12,-18 5215: 12,-19 - 5216: 12,-20 - 5217: 11,-20 5218: 11,-18 5219: 8,-22 5220: 10,-23 @@ -5834,7 +7057,6 @@ entities: 5333: 15,-54 5334: 7,-50 5336: 6,-50 - 5337: 5,-49 5338: 4,-48 5339: 3,-48 5340: 3,-50 @@ -5848,9 +7070,7 @@ entities: 5411: -9,-69 5412: -8,-62 5413: -9,-61 - 5414: -8,-59 5415: -9,-52 - 5427: -15,-42 5474: -16,-54 5475: -16,-56 5476: -16,-57 @@ -5860,44 +7080,7 @@ entities: 5480: -20,-56 5485: -19,-55 5486: -17,-55 - 5672: -51,-46 - 5673: -52,-46 - 5674: -53,-47 - 5675: -51,-47 - 5676: -52,-47 - 5677: -51,-48 - 5678: -52,-48 - 5679: -50,-47 - 5680: -50,-46 - 5681: -53,-46 - 5682: -53,-47 - 5683: -52,-44 - 5687: -51,-43 - 5688: -52,-44 - 5689: -51,-43 - 5690: -51,-42 - 5691: -52,-42 - 5692: -53,-44 - 5693: -53,-42 - 5694: -53,-41 - 5695: -50,-41 - 5860: -50,-34 - 5861: -52,-34 - 5862: -53,-34 - 5863: -52,-35 - 5864: -51,-35 - 5865: -51,-33 - 5872: -53,-28 - 5876: -52,-27 - 5883: -45,-31 - 5913: -39,-31 - 5914: -40,-31 - 5924: -33,-31 - 5925: -34,-31 - 5950: -27,-36 5990: -23,-28 - 5991: -24,-28 - 5994: -24,-27 5996: -23,-26 5997: -23,-25 6000: -23,-24 @@ -5929,12 +7112,9 @@ entities: 6034: -18,-24 6035: -18,-23 6036: -19,-23 - 6076: -18,-20 6077: -18,-21 6078: -17,-19 6080: -18,-17 - 6081: -21,-16 - 6083: -21,-15 6137: -5,-23 6144: 2,-20 6145: 3,-20 @@ -5950,16 +7130,11 @@ entities: 6286: -23,-41 6287: -25,-42 6288: -24,-42 - 6290: -28,-43 - 6293: -27,-41 - 6294: -29,-43 6296: -28,-44 6297: -29,-44 - 6298: -28,-46 6299: -20,-41 6300: -21,-41 6301: -22,-41 - 6302: -20,-42 6303: -19,-41 6304: -17,-41 6305: -16,-41 @@ -5986,17 +7161,6 @@ entities: 6400: 2,-48 6401: 1,-48 6402: -23,-54 - 6403: -30,-68 - 6404: -31,-69 - 6405: -31,-69 - 6406: -32,-70 - 6407: -33,-70 - 6408: -33,-68 - 6409: -33,-68 - 6410: -32,-69 - 6411: -33,-69 - 6412: -31,-68 - 6413: -30,-70 6519: -26,6 6531: -16,10 6532: -16,9 @@ -6015,45 +7179,17 @@ entities: 6783: 14,11 6784: 13,10 6785: 13,11 - 6811: 18,5 - 6812: 19,5 - 6813: 19,6 - 6814: 18,6 - 6815: 18,7 6816: 17,7 6817: 17,7 6818: 18,8 6819: 19,8 - 6820: 19,7 - 6821: 18,7 - 6822: 19,7 - 6823: 18,6 - 6824: 19,5 - 6825: 19,5 - 6826: 18,5 - 6827: 10,4 - 6828: 10,5 - 6829: 10,6 - 6830: 9,6 - 6831: 8,6 - 6832: 8,5 - 6833: 8,4 6834: 10,3 6835: 9,3 6836: 10,3 - 6837: 11,5 - 7654: 20,-15 - 7655: 19,-15 - 7656: 19,-14 - 7658: 21,-15 - 7659: 21,-15 7660: 17,-17 - 7661: 18,-17 7662: 17,-17 - 7663: 18,-17 9104: -33,-35 9105: -30,-35 - 9190: 51,-25 9191: 52,-23 9194: 53,-21 9197: 46,-23 @@ -6086,9 +7222,7 @@ entities: 9490: -26,10 10061: 23,-7 10062: 20,-5 - 10063: 18,-5 10064: 16,-4 - 10065: 16,-3 10112: 11,18 10113: 16,24 10114: 15,24 @@ -6149,80 +7283,15 @@ entities: 10193: 10,14 10194: 11,14 10195: 11,15 - 10198: 4,18 - 10199: 2,17 - 10200: 1,17 10201: 1,18 10202: 2,18 - 10203: -1,25 - 10204: -1,25 10205: -2,24 - 10206: 14,3 10706: -14,-32 10707: -23,-38 10708: -23,-35 10709: -23,-33 - 10710: -24,-33 10711: -28,-34 10712: -25,-35 - 10713: -25,-33 - 10714: -25,-32 - 10715: -35,-30 - 10716: -35,-28 - 10718: -37,-27 - 10719: -38,-26 - 10720: -39,-26 - 10721: -39,-24 - 10722: -38,-23 - 10723: -40,-23 - 10724: -37,-23 - 10725: -37,-24 - 10726: -36,-24 - 10727: -44,-24 - 10728: -43,-23 - 10729: -45,-23 - 10730: -45,-24 - 10731: -45,-26 - 10732: -45,-28 - 10733: -44,-29 - 10734: -45,-30 - 10735: -45,-31 - 10736: -43,-31 - 10737: -42,-32 - 10738: -43,-32 - 10739: -42,-31 - 10740: -39,-31 - 10741: -39,-32 - 10742: -38,-32 - 10743: -38,-34 - 10744: -38,-35 - 10745: -46,-33 - 10746: -46,-34 - 10747: -45,-35 - 10748: -46,-36 - 10749: -46,-37 - 10750: -43,-37 - 10751: -42,-37 - 10752: -41,-37 - 10753: -43,-36 - 10754: -43,-35 - 10755: -45,-36 - 10756: -45,-37 - 10757: -38,-38 - 10758: -39,-38 - 10759: -38,-39 - 10760: -37,-40 - 10761: -38,-41 - 10762: -40,-41 - 10763: -41,-41 - 10764: -44,-41 - 10765: -45,-42 - 10766: -45,-43 - 10767: -44,-44 - 10768: -42,-44 - 10769: -40,-44 - 10770: -38,-44 - 10771: -38,-43 11482: 37,-33 11483: 37,-32 11484: 36,-33 @@ -6261,7 +7330,6 @@ entities: 11663: -9,-16 11664: -9,-15 11672: -2,-14 - 11673: -2,-13 11674: -2,-9 11675: -3,-9 11676: -4,-8 @@ -6270,13 +7338,11 @@ entities: 11679: -3,-10 11680: -3,-11 11681: -4,-11 - 11682: -1,-11 11683: 2,-11 11684: 2,-10 11685: 3,-8 11686: 5,-10 11687: 3,-11 - 11688: 2,-9 11689: 2,-4 11690: -1,-4 11691: -5,-4 @@ -6295,8 +7361,6 @@ entities: 11851: 19,13 11852: 19,12 11853: 29,-5 - 11854: 29,-4 - 11855: 29,-3 11887: -34,4 11888: -34,6 11889: -33,7 @@ -6404,45 +7468,11 @@ entities: 12470: 31,12 12471: 33,14 12472: 32,16 - 12473: 32,17 - 12474: 32,19 - 12475: 32,21 - 12476: 31,23 - 12477: 34,23 - 12478: 34,24 - 12479: 34,25 - 12480: 32,25 - 12481: 32,27 - 12482: 32,29 - 12483: 33,30 - 12484: 32,30 - 12485: 32,32 - 12486: 31,34 - 12487: 33,36 - 12488: 31,38 - 12489: 33,40 - 12490: 32,42 - 12491: 32,32 - 12492: 33,29 - 12493: 32,27 - 12494: 32,23 - 12495: 33,20 12496: 32,16 12497: 31,13 12498: 32,10 12499: 32,7 - 12500: 31,4 - 12502: 31,-1 - 12503: 32,-4 - 12505: 29,-4 - 12506: 26,-5 - 12507: 23,-4 - 12508: 21,-5 - 12509: 19,-4 12510: 17,-5 - 12512: 14,-2 - 12513: 15,1 - 12514: 15,3 12515: 15,5 12516: 16,6 12517: 16,6 @@ -6470,8 +7500,6 @@ entities: 13929: -26,-52 13930: -25,-48 13931: -25,-47 - 13932: -27,-47 - 13933: -29,-46 13934: -20,-38 13935: -20,-39 13936: -28,-36 @@ -6491,24 +7519,15 @@ entities: 14458: 32,-31 14459: 32,-32 14460: 35,-32 - 14478: -27,-24 - 14479: -28,-23 - 14480: -27,-23 14481: -14,18 14482: 17,10 14483: 16,10 - 14484: 18,-6 14485: 20,-3 - 14486: 30,8 14487: 31,8 14519: 29,-12 14520: 29,-13 - 14521: 29,-11 - 14522: 29,-10 - 14523: 34,-8 14524: 32,-8 14525: 32,-9 - 14526: 28,-1 14549: -27,5 14550: -27,4 14551: -26,4 @@ -6544,8 +7563,6 @@ entities: 14795: -27,-10 14796: -25,-9 14797: -26,-9 - 14798: -28,-8 - 14799: -28,-9 14800: -20,16 14801: -20,19 14802: -22,19 @@ -6554,28 +7571,20 @@ entities: 14805: -26,19 14807: -31,18 14808: -30,16 - 14867: -26,-17 14868: -26,-14 - 14869: -20,-16 14870: -18,-16 14871: -17,-3 14872: -8,-21 14873: -5,-22 - 14888: 14,-10 - 14889: 14,-9 - 14890: 12,-9 - 14891: 13,-9 14974: 33,3 14975: 33,4 14976: 35,2 14977: 34,2 14978: 33,5 - 14979: 30,8 14980: 34,13 14981: 33,14 14982: 34,14 14983: 33,13 - 14984: 33,21 15045: 19,-28 15046: 19,-25 15047: 20,-28 @@ -6583,13 +7592,434 @@ entities: 15049: 20,-32 15050: 28,-27 15051: 30,-29 - 15052: 29,-10 - 15053: 34,-8 - 15054: 27,0 - 15055: 33,-1 15056: 31,11 15057: 31,10 - 15058: 29,26 + 15290: 2,-90 + 15291: 1,-90 + 15292: 2,-91 + 15293: 2,-92 + 15294: 0,-93 + 15295: 1,-94 + 15296: -1,-93 + 15297: 0,-95 + 15298: -1,-96 + 15299: -2,-96 + 15300: -4,-96 + 15301: -5,-96 + 15302: -5,-93 + 15453: -8,-61 + 15454: -8,-60 + 15455: -7,-60 + 15456: -9,-60 + 15457: -9,-59 + 15458: -7,-59 + 15459: -5,-58 + 15460: -4,-58 + 15461: -3,-58 + 15462: -3,-59 + 15463: -4,-59 + 15464: -5,-59 + 15465: -5,-57 + 16456: -37,-47 + 16457: -37,-46 + 16458: -42,-46 + 16459: -43,-47 + 16460: -42,-47 + 16461: -35,-46 + 16462: -34,-46 + 16463: -34,-45 + 16464: -35,-45 + 16465: -35,-44 + 16466: -36,-44 + 16467: -36,-43 + 16468: -35,-43 + 16469: -34,-43 + 16470: -33,-43 + 16471: -33,-44 + 16472: -33,-45 + 16473: -33,-46 + 16474: -36,-42 + 16475: -36,-41 + 16476: -35,-41 + 16477: -35,-42 + 16478: -34,-42 + 16479: -34,-41 + 16480: -34,-40 + 16481: -35,-40 + 16482: -36,-40 + 16483: -34,-40 + 16484: -33,-41 + 16485: -32,-41 + 16486: -31,-41 + 16487: -31,-42 + 16488: -32,-42 + 16490: -32,-43 + 16491: -33,-42 + 16492: -33,-48 + 16493: -33,-48 + 16494: -33,-49 + 16495: -33,-50 + 16497: -34,-51 + 16498: -34,-50 + 16499: -34,-49 + 16500: -35,-48 + 16501: -35,-49 + 17017: -52,-32 + 17018: -52,-31 + 17019: -52,-30 + 17020: -54,-31 + 17021: -54,-30 + 17022: -55,-30 + 17023: -54,-29 + 17024: -55,-28 + 17025: -58,-31 + 17026: -58,-30 + 17027: -59,-30 + 17028: -60,-30 + 17029: -60,-32 + 17030: -59,-32 + 17031: -48,-34 + 17032: -48,-36 + 17033: -48,-38 + 17034: -51,-39 + 17035: -51,-38 + 17036: -53,-38 + 17037: -46,-39 + 17038: -45,-39 + 17039: -43,-39 + 17040: -43,-40 + 17041: -44,-40 + 17042: -46,-40 + 17043: -46,-39 + 17044: -45,-39 + 17046: -42,-37 + 17047: -43,-36 + 17048: -44,-35 + 17049: -46,-36 + 17051: -41,-38 + 17052: -41,-38 + 17053: -40,-37 + 17054: -40,-37 + 17055: -38,-37 + 17056: -39,-38 + 17057: -38,-39 + 17058: -36,-38 + 17059: -34,-37 + 17060: -31,-38 + 17061: -31,-38 + 17062: -28,-38 + 17063: -28,-39 + 17064: -28,-35 + 17065: -31,-36 + 17066: -28,-33 + 17067: -31,-33 + 17068: -31,-31 + 17069: -29,-30 + 17070: -32,-29 + 17071: -34,-31 + 17072: -35,-30 + 17073: -35,-28 + 17074: -39,-27 + 17075: -40,-28 + 17076: -41,-30 + 17077: -42,-30 + 17078: -44,-28 + 17079: -44,-27 + 17080: -45,-26 + 17081: -45,-26 + 17082: -46,-25 + 17083: -45,-25 + 17084: -41,-25 + 17085: -41,-24 + 17086: -40,-24 + 17121: -33,-66 + 17122: -35,-66 + 17123: -34,-69 + 17124: -35,-71 + 17125: -35,-74 + 17126: -36,-74 + 17127: -36,-73 + 17128: -33,-72 + 17129: -33,-73 + 17131: -33,-78 + 17132: -35,-81 + 17133: -35,-79 + 17134: -35,-78 + 17135: -36,-81 + 17136: -36,-81 + 17137: -32,-81 + 17138: -32,-80 + 17139: -37,-78 + 17140: -36,-78 + 17141: -36,-76 + 17142: -37,-76 + 17143: -35,-82 + 17144: -35,-83 + 17145: -33,-82 + 17146: -33,-83 + 17147: -36,-70 + 17148: -37,-70 + 17254: 15,-11 + 17256: 19,-15 + 17272: 41,-23 + 17273: 24,-22 + 17274: 9,-24 + 17275: 16,-34 + 17276: 9,-41 + 17277: -2,-50 + 17278: 4,-48 + 17279: -15,-43 + 17281: 15,-10 + 17282: 15,-3 + 17616: 28,4 + 17617: 24,3 + 17618: 24,2 + 17619: 24,1 + 17952: 20,7 + 17953: 22,7 + 17954: 15,7 + 18122: 37,18 + 18127: 33,25 + 18128: 39,16 + 18129: -14,7 + 18130: -14,8 + 18173: 0,25 + 18174: 3,25 + 18175: 5,25 + 18176: 7,25 + 18177: 8,25 + 18178: 4,24 + 18179: 4,23 + 18180: -18,-10 + 18181: -18,-9 + 18182: -19,-10 + 18183: -18,-12 + 18184: -18,-14 + 18185: -18,-16 + 18186: -18,-18 + 18187: -18,-20 + 18188: -19,-20 + 18189: -21,-20 + 18190: -24,-20 + 18191: -25,-20 + 18192: -24,-21 + 18193: -24,-24 + 18194: -24,-26 + 18195: -24,-28 + 18196: -24,-30 + 18197: -24,-33 + 18198: -24,-35 + 18199: -24,-37 + 18200: -24,-39 + 18201: -24,-35 + 18202: -24,-33 + 18203: -24,-31 + 18204: -24,-28 + 18205: -24,-26 + 18206: -24,-24 + 18207: -24,-22 + 18208: -23,-20 + 18209: -20,-20 + 18210: -18,-20 + 18211: -21,-20 + 18212: -22,-28 + 18213: -23,-31 + 18214: -23,-30 + 18215: -20,-42 + 18216: -20,-42 + 18217: -18,-42 + 18218: -16,-42 + 18219: -15,-42 + 18220: -14,-42 + 18221: -22,-42 + 18222: -19,-42 + 18223: -17,-42 + 18224: -17,-43 + 18225: 12,-44 + 18226: 13,-44 + 18227: 15,-44 + 18228: 16,-44 + 18230: 10,-42 + 18231: 10,-40 + 18232: 10,-38 + 18233: 19,-22 + 18234: 17,-22 + 18235: 14,-22 + 18236: 13,-22 + 18237: 16,-22 + 18238: 19,-22 + 18239: 22,-22 + 18240: 25,-22 + 18241: 27,-22 + 18242: 30,-22 + 18243: 32,-22 + 18244: 35,-22 + 18245: 33,-22 + 18246: 36,-22 + 18247: 39,-22 + 18248: 40,-22 + 18249: 41,-22 + 18250: 39,-22 + 18251: 38,-22 + 18252: 36,-22 + 18253: 35,-22 + 18254: 33,-22 + 18255: 34,-22 + 18256: 32,-22 + 18257: 41,-21 + 18258: 39,-21 + 18259: 38,-21 + 18260: 37,-21 + 18261: 47,-22 + 18262: 49,-22 + 18263: 48,-22 + 18264: 49,-22 + 18265: 50,-22 + 18266: 51,-22 + 18267: 47,-22 + 18268: 50,-18 + 18269: 49,-18 + 18270: 46,-18 + 18271: 44,-19 + 18272: 30,-14 + 18273: 29,-11 + 18274: 30,-11 + 18275: 29,-8 + 18276: 29,-7 + 18277: 29,-9 + 18278: 32,-8 + 18279: 30,-7 + 18280: 32,-4 + 18281: 32,-4 + 18282: 32,-3 + 18283: 32,-1 + 18284: 30,-2 + 18285: 30,-4 + 18286: 30,-5 + 18287: 33,1 + 18288: 33,2 + 18289: 32,3 + 18290: 28,3 + 18291: 27,8 + 18292: 31,9 + 18293: 31,11 + 18294: 31,11 + 18295: 31,13 + 18296: 34,13 + 18297: 34,14 + 18298: 31,14 + 18299: 32,12 + 18300: 32,10 + 18301: 12,14 + 18302: 11,14 + 18303: 10,14 + 18654: -56,-55 + 18655: -58,-55 + 18656: -58,-54 + 18657: -58,-53 + 18658: -56,-53 + 18659: -59,-53 + 18660: -59,-54 + 18661: -54,-56 + 18662: -52,-56 + 18663: -52,-57 + 18664: -52,-58 + 18665: -53,-58 + 18666: -54,-58 + 18667: -54,-59 + 18668: -53,-59 + 18669: -56,-61 + 18670: -57,-61 + 18671: -58,-61 + 18672: -59,-61 + 18673: -59,-60 + 18674: -59,-59 + 18675: -58,-59 + 18676: -54,-59 + 18677: -54,-60 + 18678: -52,-59 + 18679: -52,-61 + 18680: -52,-61 + 18681: -53,-61 + 18682: -55,-61 + 18683: -51,-58 + 18684: -50,-59 + 18685: -50,-58 + 18686: -50,-56 + 18687: -50,-55 + 18688: -48,-57 + 18689: -48,-58 + 18690: -47,-58 + 18691: -46,-58 + 18692: -46,-57 + 18693: -47,-57 + 18694: -44,-57 + 18695: -44,-57 + 18696: -44,-56 + 18697: -44,-53 + 18698: -45,-52 + 18699: -45,-51 + 18700: -45,-50 + 18701: -45,-50 + 18891: 29,-15 + 18894: -4,-50 + 19217: 37,21 + 19218: 38,22 + 19219: 40,18 + 19220: 39,17 + 19221: 37,17 + 19222: 34,17 + 19223: 32,17 + 19224: 31,18 + 19225: 33,18 + 19226: 35,18 + 19227: 38,18 + 19228: 35,18 + 19229: 35,19 + 19230: 34,19 + 19231: 32,19 + 19232: 31,19 + 19234: 30,21 + 19235: 30,22 + 19236: 32,22 + 19237: 32,23 + 19238: 31,23 + 19239: 30,24 + 19240: 30,25 + 19241: 31,25 + 19242: 32,24 + 19243: 32,24 + 19244: 32,25 + 19245: 33,24 + 19246: 34,24 + 19247: 34,25 + 19248: 34,26 + 19249: 35,25 + 19250: 35,24 + 19251: 36,24 + 19252: 38,24 + 19253: 38,23 + 19254: 39,22 + 19255: 37,21 + 19256: 37,20 + 19257: 40,20 + 19258: 31,24 + 19259: 31,24 + 19262: 30,21 + 19264: 31,22 + 19265: 31,21 + 19266: 31,22 + 19267: 31,21 + 19268: 31,20 + 19269: 31,19 + 19270: 34,17 + 19272: 37,17 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 17967: 33.18721,-4.4394064 - node: zIndex: 5 color: '#FFFFFFFF' @@ -6607,7 +8037,6 @@ entities: id: FlowersBRTwo decals: 317: -2.739346,-40.11955 - 1610: 12.91565,-6.2081604 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -6619,50 +8048,116 @@ entities: decals: 318: -4.969619,-39.139698 - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 18330: -11.69503,12.177545 + - node: + zIndex: 1 color: '#FFFFFFFF' id: Flowersbr3 decals: - 9898: -16.75473,14.587231 + 17787: 33.11084,-0.26643348 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 18331: -16.268726,16.97848 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 324: -3.7796192,-40.04319 - 9897: -16.962753,14.391405 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 10040: 13.999963,-3.5679688 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 12156: -1.8773756,-39.973557 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 17792: 33.142105,-0.5791509 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 17966: 33.145523,-4.856363 + 18329: -16.61251,12.989137 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 15776: 50.140865,-24.035677 + 15928: 13.019715,-10.544371 - node: color: '#FFFFFFFF' id: Flowersy2 decals: 312: -4.9800406,-39.202244 + 15782: 49.40649,-24.098177 + 15799: 47.97223,-24.092237 + 15925: 13.129791,-9.737151 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 18332: -16.928978,15.908884 - node: zIndex: 5 color: '#FFFFFFFF' id: Flowersy2 decals: 15016: -4.4530544,-40.059788 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 15779: 49.40649,-20.113802 + 15780: 47.890865,-20.051302 + 15798: 48.62848,-24.076612 + 15923: 12.872949,-12.109887 + 15926: 12.285879,-9.981764 + 15929: 13.11756,-11.35159 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 17790: 33.142105,-1.0273786 + 17791: 33.152527,-3.977344 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 18333: -11.676373,16.32584 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 15720: 50.200966,-20.04399 + 15747: -11.010044,14.23223 + 15778: 48.62524,-20.035677 + 15820: -20.325151,30.24467 + 15821: -19.497026,30.43217 + 15822: -19.575151,29.666546 + 15823: -20.387651,29.416546 + 15824: -19.965776,30.729046 + 15922: 12.004576,-11.999812 + 15924: 12.970793,-8.954393 + 15927: 11.821117,-10.006225 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: 10909: -10,-26 10910: -9,-26 - 11106: -22,-17 - 11107: -21,-17 - 11108: -20,-17 - 11109: -20,-14 - 11110: -21,-14 - 11111: -22,-14 11322: -18,-54 11348: -19,-58 11349: -18,-58 @@ -6675,53 +8170,66 @@ entities: 14249: -15,-50 14250: -13,-51 14256: -19,-48 - 14257: -24,-44 - 14258: -25,-44 - 14259: -26,-48 14260: -20,-50 14261: -21,-50 14262: -23,-50 + 19432: -31,-50 + 19433: -26,-48 + 19434: -25,-44 + 19435: -24,-44 - node: color: '#3EB38896' id: FullTileOverlayGreyscale decals: 15061: -15,-57 15062: -15,-56 + - node: + color: '#43990996' + id: FullTileOverlayGreyscale + decals: + 16145: -52,-32 + 16161: -57,-30 + 16241: -52,-30 + 16242: -51,-31 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 10375: -31,-29 - 10415: -39,-24 - 10416: -40,-23 - 10417: -38,-23 - 10418: -39,-22 - 10419: -39,-23 - 10420: -33,-24 - 10421: -34,-24 - 10422: -35,-24 - 10426: -35,-25 - 10427: -35,-26 - 10428: -35,-27 - 10429: -35,-28 - 10571: -33,-30 - 10572: -32,-30 11344: -21,-55 + 15998: -43,-30 + 15999: -43,-31 + 16167: -46,-35 + 16260: -49,-43 + 16261: -49,-40 + 16284: -46,-40 + 16285: -45,-40 + 16286: -44,-40 + 16287: -43,-40 + 16288: -42,-40 + 16298: -44,-27 + 16299: -35,-26 - node: zIndex: 1 color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 13794: -33,-28 - 13795: -29,-29 - 13796: -28,-29 - 13799: -30,-26 - 13800: -29,-26 + 17713: -26,-26 + 17714: -33,-25 + 18524: -28,-27 + 18525: -29,-27 + 18526: -30,-27 + 19436: -47,-32 + 19437: -47,-29 + 19446: -44,-27 + 19447: -44,-34 - node: - color: '#8D1C9996' + zIndex: 1 + color: '#8D1C994C' id: FullTileOverlayGreyscale decals: - 14502: 10,28 + 19355: 23,23 + 19356: 22,23 + 19357: 21,23 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -6758,6 +8266,14 @@ entities: 11230: -26,13 11231: -25,13 11345: -21,-56 + - node: + zIndex: 1 + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 15744: -29,-8 + 15745: -29,-9 + 15746: -26,-13 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -6775,6 +8291,29 @@ entities: 14241: -7,-21 14242: -7,-19 14246: -13,-23 + - node: + color: '#FA750096' + id: FullTileOverlayGreyscale + decals: + 16046: -30,-34 + 16047: -29,-34 + 16048: -28,-34 + 16049: -27,-39 + 16058: -41,-38 + 16059: -41,-37 + 16060: -34,-35 + 16082: -33,-36 + 16093: -27,-35 + - node: + zIndex: 1 + color: '#FA750096' + id: FullTileOverlayGreyscale + decals: + 17715: -37,-37 + 17716: -36,-35 + 18527: -30,-34 + 18528: -29,-34 + 18529: -28,-34 - node: cleanable: True zIndex: 1 @@ -6790,156 +8329,238 @@ entities: decals: 12392: 50.02343,-62.087116 - node: - cleanable: True color: '#FFFFFFFF' - id: Grassa2 + id: Grassb1 decals: - 10036: 14.044986,-5.245513 + 15812: -19.028276,31.02592 + 15816: -20.043901,29.135296 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 9855: -20.350283,29.526943 - 9856: -17.0117,12.212846 + 15819: -20.965776,30.041546 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 15817: -18.997026,29.99467 + 15818: -20.950151,29.010296 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 9833: -20.01782,31.702026 + 15813: -20.950151,30.979046 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 9859: -11.700985,14.073188 - 9870: -17.036173,14.574991 + 15814: -19.028276,28.99467 + 15815: -19.934526,30.947796 - node: + zIndex: 1 color: '#FFFFFFFF' id: Grassc1 decals: - 9875: -16.228554,14.097667 + 15602: -5.0673695,-51.198616 + 15603: -2.071126,-54.07047 + 15604: 5.0193954,-54.007927 + 15655: -4.02458,-52.82484 + 15656: -2.7635374,-53.908924 + 15657: -5.264778,-53.846382 + 15658: -5.9109316,-53.231373 + 18307: -16.99055,13.033243 + 18308: -11.800474,12.19933 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassc2 + decals: + 15605: 7.939578,-52.058655 + 15606: -2.7613235,-52.079502 + 15659: -1.9610562,-52.61636 + 15660: -3.6389718,-54.02359 + 15661: -5.285622,-52.387035 + 15662: -3.5243318,-51.448883 - node: color: '#FFFFFFFF' id: Grassc3 decals: - 9874: -10.954549,14.256775 + 15677: 4.112058,-53.992317 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassc3 + decals: + 15607: -5.825343,-54.060047 + 15663: -4.5560937,-51.657364 + 15664: -3.3263166,-52.553818 + 15665: -4.5977807,-52.65806 + 15666: -4.2955475,-53.283493 + 18326: -10.894494,15.021798 + 18327: -16.98517,15.053069 + 18328: -16.484922,16.251818 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 15675: 4.257964,-52.251526 + 15676: 6.0400977,-51.21956 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassc4 + decals: + 18325: -10.863229,16.14758 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 9838: -19.48772,29.638092 - 9852: -21.142344,30.07941 + 15674: 7.8534985,-53.022892 + 15739: -10.963169,12.20098 - node: zIndex: 1 color: '#FFFFFFFF' id: Grassd1 decals: - 13873: -10.821783,12.144812 - 13874: -11.751936,13.562604 - 13875: -17.031513,15.671419 - 13876: -10.890116,15.516535 + 15608: -5.63775,-53.392914 + 15609: -5.575218,-51.662548 + 15610: -2.532043,-52.78833 + 15611: 5.379187,-52.74663 + 18338: -11.238655,12.828213 + 18339: -17.304165,13.515579 + 18340: -17.304165,12.400222 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 9847: -21.053404,29.077984 + 15678: 5.248039,-53.76299 + 15679: 7.009329,-51.344646 + 15735: -16.135044,15.48223 - node: zIndex: 1 color: '#FFFFFFFF' id: Grassd2 decals: - 13821: 48.944115,-24.02116 - 13822: 47.906635,-20.008194 + 15612: 7.09879,-51.235165 + 15680: 6.9572196,-52.18898 + 15681: -5.836478,-53.929775 + 15682: -4.8776693,-51.302948 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 9848: -18.035362,29.998701 - 9853: -20.121004,31.069683 + 15734: -16.228794,12.935355 + 15740: -11.588169,15.29473 - node: zIndex: 1 color: '#FFFFFFFF' id: Grassd3 decals: - 13877: -17.031513,16.922413 + 15667: 4.4455566,-53.992317 + 15668: 6.894689,-53.950623 + 15683: -3.0746922,-51.59482 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Grassd3 + decals: + 18334: -17.095728,13.973569 + 18335: -16.845604,13.556613 + 18336: -11.801435,14.765786 + 18337: -10.936422,15.276557 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 9863: -16.987225,15.027837 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grasse1 - decals: - 10038: 13.951189,-3.671503 + 15732: -16.18192,12.216605 - node: zIndex: 1 color: '#FFFFFFFF' id: Grasse1 decals: - 13823: 48.83679,-20.02011 - 13878: -11.009367,16.97007 - 13879: -11.975295,17.017725 - 13899: -42.352955,-42.949028 + 15613: 4.2119412,-51.996113 + 17963: 33.159508,-2.7539225 + 17964: 33.159508,-1.8261949 + 18310: -10.091294,12.147211 + 18311: -17.063503,16.796272 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 9864: -16.228554,14.073188 - 9866: -11.9212475,17.059526 + 15736: -17.02567,15.935354 + 15748: -16.510044,14.154105 - node: zIndex: 1 color: '#FFFFFFFF' id: Grasse2 decals: - 13824: 49.981594,-19.99628 - 13854: 16.265568,-5.974714 - 13855: 14.011734,-7.1423073 - 13871: -11.322636,12.812008 - 13872: -11.740011,12.156726 + 15669: 5.8733487,-53.961044 + 17798: 33.17337,-3.8209858 + 18312: -15.927523,16.295923 + 18324: -11.686554,16.324785 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 9836: -20.019234,30.044624 - 9867: -16.228554,14.807534 - 9868: -11.835589,15.798901 + 15672: 6.67583,-51.261253 + 15673: 5.4147882,-51.2821 + 15733: -17.02567,12.29473 + 15737: -11.744419,13.66973 + 17804: 33.12126,-4.1337028 + 17805: 33.11084,-0.29601222 - node: zIndex: 1 color: '#FFFFFFFF' id: Grasse3 decals: - 13819: 47.966263,-23.96159 - 13820: 49.957745,-23.985418 - 13856: 14.250236,-6.1415133 - 13897: -41.589752,-42.091206 - 13898: -38.95432,-42.97286 + 15670: 6.2068477,-53.210526 + 15671: 6.5507684,-52.2411 + 17799: 33.142105,-1.0482265 + 17965: 33.17679,-4.960602 + 18306: -16.172466,17.015173 + 18323: -11.019556,17.023188 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: 10905: -10,-27 10906: -9,-27 - - node: - color: '#43990996' - id: HalfTileOverlayGreyscale - decals: - 10800: -48,-43 - 10801: -47,-43 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 10379: -39,-28 - 10397: -37,-21 - 10531: -52,-33 - 10532: -51,-33 - 10544: -44,-41 + 16002: -44,-31 + 16003: -42,-31 + 16004: -43,-32 + 16199: -29,-30 + 16218: -29,-32 + 16226: -29,-28 + 16300: -37,-23 + 16301: -38,-23 + 16302: -39,-23 + 16303: -40,-23 - node: - color: '#8C347F96' + zIndex: 1 + color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 1578: 28,4 + 17708: -31,-22 + 17709: -30,-22 + 17710: -29,-22 + 17711: -28,-22 + 17712: -27,-22 + - node: + zIndex: 1 + color: '#8D1C994C' + id: HalfTileOverlayGreyscale + decals: + 19354: 22,22 + - node: + zIndex: 1 + color: '#95171093' + id: HalfTileOverlayGreyscale + decals: + 17731: -47,-58 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -6987,21 +8608,53 @@ entities: 10902: -10,-25 10903: -9,-25 - node: - color: '#43990996' + zIndex: 1 + color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 3126: -52,-44 - 10802: -48,-44 - 10803: -47,-44 - 10804: -50,-44 - 10805: -51,-44 + 18508: -24,-43 + 18509: -25,-43 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 10376: -39,-26 - 10529: -51,-29 - 10530: -52,-29 + 16000: -44,-30 + 16001: -42,-30 + 16005: -43,-29 + 16200: -29,-31 + 16219: -29,-29 + 16294: -43,-26 + 16295: -44,-26 + 16296: -45,-26 + 16297: -46,-26 + 16304: -41,-25 + 16305: -40,-25 + 16306: -39,-25 + 16307: -38,-25 + 16308: -37,-25 + - node: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 17696: -32,-26 + 17697: -31,-26 + 17698: -30,-26 + 17699: -29,-26 + 17700: -28,-26 + 17701: -27,-26 + - node: + zIndex: 1 + color: '#8D1C994C' + id: HalfTileOverlayGreyscale180 + decals: + 19353: 22,21 + - node: + zIndex: 1 + color: '#8D1C9996' + id: HalfTileOverlayGreyscale180 + decals: + 18624: 15,17 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -7029,9 +8682,7 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale180 decals: - 10249: -30,-39 - 10250: -29,-39 - 10252: -34,-39 + 16227: -29,-33 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -7041,19 +8692,49 @@ entities: color: '#43990996' id: HalfTileOverlayGreyscale270 decals: - 3128: -53,-43 - 3129: -53,-42 + 16152: -56,-32 + 16153: -56,-31 + 16154: -56,-30 + 16155: -56,-29 + 16156: -56,-28 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 10377: -38,-27 - 10503: -46,-23 + 16173: -43,-47 + 16174: -43,-46 + 16175: -43,-45 + 16176: -43,-44 + 16214: -35,-30 + 16215: -35,-31 + 16237: -25,-31 + 16238: -25,-30 + 16244: -50,-34 + 16245: -50,-33 + 16246: -50,-32 + 16247: -50,-31 + 16248: -50,-30 + 16249: -50,-29 + 16250: -50,-28 + 16251: -50,-27 + 16252: -49,-36 + 16253: -49,-37 + 16254: -49,-38 + 16255: -49,-39 + 16256: -49,-41 + 16257: -49,-42 + 16274: -46,-37 + 16289: -46,-38 + 16320: -36,-25 + 16321: -36,-24 + 16322: -36,-23 + 18573: 20,1 - node: - color: '#8C347F96' + zIndex: 1 + color: '#95171093' id: HalfTileOverlayGreyscale270 decals: - 1577: 27,3 + 17730: -46,-57 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -7087,27 +8768,63 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale270 decals: - 10251: -35,-35 + 16062: -40,-39 + 16063: -40,-38 + 16064: -40,-37 + 16065: -40,-36 + 16070: -36,-36 + 16071: -36,-37 + 16072: -36,-38 + 16084: -32,-38 + 16085: -32,-37 + 16086: -32,-36 + 16087: -32,-35 - node: color: '#43990996' id: HalfTileOverlayGreyscale90 decals: - 3131: -50,-42 + 16147: -54,-28 + 16148: -54,-29 + 16149: -54,-30 + 16150: -54,-31 + 16151: -54,-32 + 16157: -58,-29 + 16158: -58,-30 + 16159: -58,-31 + 16160: -58,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 10378: -40,-27 + 16119: -48,-33 + 16120: -48,-34 + 16121: -48,-35 + 16122: -48,-36 + 16123: -48,-37 + 16124: -48,-38 + 16125: -48,-39 + 16126: -48,-32 + 16127: -48,-31 + 16128: -48,-30 + 16129: -48,-29 + 16130: -48,-28 + 16131: -48,-27 + 16177: -41,-47 + 16212: -34,-31 + 16213: -34,-30 + 16258: -48,-41 + 16259: -48,-42 + 16271: -42,-37 + 16290: -42,-38 + 16309: -34,-23 + 16310: -34,-24 + 16311: -34,-25 - node: - color: '#8C347F96' + zIndex: 1 + color: '#95171093' id: HalfTileOverlayGreyscale90 decals: - 1579: 29,3 - - node: - color: '#8D1C9996' - id: HalfTileOverlayGreyscale90 - decals: - 14488: 17,23 + 17729: -48,-57 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -7136,6 +8853,21 @@ entities: decals: 9329: -26,10 9330: -26,11 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale90 + decals: + 16066: -38,-39 + 16067: -38,-38 + 16068: -38,-37 + 16069: -38,-36 + 16075: -33,-38 + 16083: -33,-37 + 16088: -28,-37 + 16089: -28,-36 + 16090: -28,-35 + 16091: -28,-38 + 16092: -28,-39 - node: color: '#FFFFFFFF' id: LoadingArea @@ -7177,90 +8909,90 @@ entities: id: QuarterTileOverlayGreyscale decals: 10908: -8,-27 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale - decals: - 3132: -52,-41 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 10389: -41,-22 - 10393: -40,-22 - 10394: -40,-21 - 10395: -39,-21 - 10396: -38,-21 - 10452: -39,-41 - 10453: -39,-40 - 10454: -39,-39 - 10455: -39,-38 - 10504: -46,-22 - 10505: -45,-22 - 10506: -45,-21 - 10510: -45,-30 - 10511: -45,-31 - 10512: -46,-31 - 10514: -48,-31 - 10536: -52,-28 - 10540: -41,-41 - 10541: -40,-41 - 10545: -45,-41 - 10546: -45,-42 - 10580: -39,-30 - 10581: -40,-30 - 10582: -41,-30 - 10583: -26,-30 - 10584: -25,-30 - 10585: -25,-29 - 10586: -25,-28 10587: -25,-27 10588: -25,-26 10589: -25,-25 10590: -25,-24 10591: -25,-23 + 15984: -37,-33 + 15986: -39,-33 + 16010: -46,-30 + 16011: -46,-29 + 16012: -46,-28 + 16013: -45,-28 + 16014: -44,-28 + 16015: -43,-28 + 16016: -42,-28 + 16017: -41,-28 + 16018: -41,-27 + 16019: -40,-27 + 16020: -39,-27 + 16022: -37,-27 + 16023: -36,-27 + 16024: -35,-27 + 16033: -35,-32 + 16034: -35,-33 + 16035: -36,-33 + 16179: -32,-28 + 16180: -31,-28 + 16181: -30,-28 + 16197: -31,-30 + 16198: -30,-30 + 16206: -32,-32 + 16207: -31,-32 + 16208: -30,-32 + 16234: -25,-28 + 16240: -25,-32 + 16266: -45,-36 - node: zIndex: 1 - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 11810: -47,-31 - 12396: -38,-30 - - node: color: '#8C347F96' id: QuarterTileOverlayGreyscale decals: - 1516: 27,-3 - 1517: 28,-3 - 1519: 30,-3 - 1520: 31,-3 - 1521: 31,-2 - 1522: 31,-1 - 1523: 31,0 - 1524: 31,1 - 1525: 31,2 - 1526: 31,3 - 1527: 31,4 - 1528: 31,5 - 1541: 27,-2 - 1542: 28,-2 - 11856: 29,-3 + 17829: 30,5 + 17830: 30,4 + 17831: 30,3 + 17833: 30,0 + 17834: 30,-1 + 17835: 30,-2 + - node: + zIndex: 1 + color: '#8D1C994C' + id: QuarterTileOverlayGreyscale + decals: + 18610: 19,22 + 18611: 20,22 + 18630: 18,22 + 19352: 21,22 - node: color: '#8D1C9996' id: QuarterTileOverlayGreyscale decals: 10003: 11,25 - 10022: 14,17 - 10023: 14,18 - 10024: 14,19 - 10025: 14,20 - 10026: 14,21 10030: 11,22 10031: 11,23 10032: 11,24 - 14499: 11,28 - 14500: 11,27 - 14501: 11,26 + - node: + zIndex: 1 + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale + decals: + 18628: 14,20 + 18629: 14,21 + 19322: 27,22 + 19323: 27,23 + 19324: 27,24 + 19325: 27,25 + - node: + zIndex: 1 + color: '#95171093' + id: QuarterTileOverlayGreyscale + decals: + 17733: -46,-58 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -7303,8 +9035,6 @@ entities: 10862: -18,-5 10864: -18,-7 10865: -18,-8 - 14600: -28,-8 - 14601: -28,-9 14602: -27,-8 14603: -27,-7 14604: -27,-6 @@ -7323,73 +9053,88 @@ entities: 9591: -18,-4 9592: -17,-4 9593: -17,-3 + 15742: -28,-8 - node: + zIndex: 1 color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 11372: -29,-49 - 11373: -28,-49 - 11374: -29,-50 - 11378: -27,-48 - 11379: -27,-47 - 11380: -27,-46 - 11381: -27,-45 - 11382: -27,-44 - 11383: -27,-43 - 14586: -28,-48 - 14587: -30,-50 - 14588: -30,-52 - 14589: -30,-53 - 14590: -30,-54 - 14591: -30,-55 - 14592: -30,-56 + 18510: -26,-43 + 18511: -28,-43 + 18512: -29,-43 + 18513: -30,-43 + 18514: -31,-43 + 18515: -32,-43 + 18516: -33,-43 + 18517: -33,-44 + 18518: -33,-45 + 18519: -33,-46 + 18520: -33,-48 + 18521: -33,-49 + 18522: -33,-50 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 10403: -33,-23 - 10451: -45,-32 - 10465: -45,-33 - 10466: -45,-34 - 10467: -45,-35 - 10468: -45,-36 - 10469: -45,-37 - 10470: -45,-38 - 10471: -45,-39 - 10480: -44,-32 - 10481: -43,-32 - 10486: -44,-28 - 10487: -44,-27 - 10493: -44,-26 - 10494: -44,-25 - 10495: -44,-24 - 10534: -51,-34 - 10552: -41,-44 - 10553: -40,-44 - 10554: -39,-44 - 10555: -38,-44 + 15987: -40,-32 + 15989: -40,-31 + 16193: -27,-31 + 16194: -28,-31 + 16217: -34,-29 + 16223: -28,-29 + 16224: -27,-29 + 16225: -26,-29 - node: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 17841: 22,5 + 17842: 21,5 + 17843: 20,5 + 17844: 19,5 + 17845: 18,5 + 17846: 17,5 + - node: + zIndex: 1 color: '#8C347F96' id: QuarterTileOverlayGreyscale180 decals: - 1543: 27,-2 - 1544: 28,-2 + 17827: 28,6 + 17828: 29,6 + 17836: 26,6 + 17837: 25,6 + 17838: 25,5 + 17839: 24,5 + 17840: 23,5 + - node: + zIndex: 1 + color: '#8D1C994C' + id: QuarterTileOverlayGreyscale180 + decals: + 18602: 23,21 + 18603: 24,21 + 18604: 25,21 + 18605: 26,21 - node: color: '#8D1C9996' id: QuarterTileOverlayGreyscale180 decals: - 10013: 17,22 - 10014: 17,21 10015: 16,21 - 10016: 15,21 - 10017: 15,20 - 10018: 15,19 - 10019: 15,18 - 10020: 15,17 - 10021: 14,17 10027: 13,22 10028: 12,22 10029: 11,22 + - node: + zIndex: 1 + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 + decals: + 17568: 27,6 + 18614: 17,21 + 18620: 16,20 + 18621: 16,19 + 18622: 16,18 + 18623: 16,17 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 @@ -7434,8 +9179,6 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 10304: 33,4 - 10308: 33,0 - 10309: 33,-1 14617: -25,-12 14618: -24,-12 14619: -23,-12 @@ -7454,19 +9197,9 @@ entities: color: '#FA750096' id: QuarterTileOverlayGreyscale180 decals: - 10233: -28,-32 - 10235: -31,-32 - 10236: -32,-32 - 10237: -33,-32 - 10238: -34,-32 - 10239: -35,-32 - 10240: -36,-32 - 10241: -37,-32 - 10242: -37,-33 - 10243: -37,-34 - 10244: -37,-35 - 10245: -37,-36 - 10293: -29,-32 + 16228: -28,-33 + 16229: -27,-33 + 16230: -26,-33 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -7497,53 +9230,51 @@ entities: 13809: -10,-45 14386: -10,-46 14387: -10,-47 - - node: - zIndex: 1 - color: '#43990996' - id: QuarterTileOverlayGreyscale270 - decals: - 14062: 9,25 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 10390: -41,-24 - 10391: -40,-24 - 10392: -40,-25 - 10449: -39,-32 - 10456: -39,-36 - 10457: -39,-35 - 10458: -39,-34 - 10459: -39,-33 - 10472: -46,-32 - 10473: -46,-33 - 10474: -46,-34 - 10475: -46,-35 - 10476: -46,-36 - 10477: -46,-37 - 10478: -46,-38 - 10479: -46,-39 - 10482: -41,-32 - 10483: -40,-32 - 10497: -45,-28 - 10498: -45,-27 - 10499: -45,-26 - 10500: -45,-25 - 10501: -45,-24 - 10502: -46,-24 - 10515: -48,-32 - 10516: -47,-32 - 10533: -52,-34 - 10548: -45,-44 - 10549: -45,-43 - 10550: -44,-44 - 10551: -43,-44 + 15971: -46,-33 + 15972: -45,-33 + 15973: -44,-33 + 15974: -43,-33 + 15975: -42,-33 + 15976: -41,-33 + 15977: -41,-34 + 16006: -46,-32 + 16008: -46,-30 + 16025: -39,-28 + 16027: -37,-28 + 16028: -36,-28 + 16029: -35,-28 + 16030: -35,-29 + 16191: -31,-31 + 16192: -30,-31 + 16202: -32,-29 + 16203: -31,-29 + 16209: -30,-29 + 16239: -25,-29 + 16263: -49,-35 + 16264: -46,-31 + 18574: 20,2 - node: - color: '#9FED5896' + zIndex: 1 + color: '#8D1C994C' id: QuarterTileOverlayGreyscale270 decals: - 1533: 28,-2 - 1534: 27,-2 + 18606: 21,21 + 18607: 20,21 + 18609: 18,21 + 19351: 19,21 + - node: + zIndex: 1 + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale270 + decals: + 18625: 14,17 + 18626: 14,18 + 18627: 14,19 + 19326: 27,21 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -7644,75 +9375,71 @@ entities: 9598: -17,4 9599: -17,5 9600: -17,6 + 15741: -31,-12 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale270 decals: - 2997: -26,-32 - 2998: -25,-32 2999: -25,-34 3000: -25,-35 3001: -25,-36 3002: -25,-37 3003: -25,-38 3004: -25,-39 - 10592: -25,-33 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale90 - decals: - 3133: -51,-41 - - node: - zIndex: 1 - color: '#43990996' - id: QuarterTileOverlayGreyscale90 - decals: - 12372: -50,-43 + 16041: -36,-34 + 16042: -35,-34 + 16043: -37,-34 + 16105: -25,-33 + 16110: -30,-33 + 16111: -31,-33 + 16112: -32,-33 + 16117: -39,-34 + 16118: -40,-34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 10398: -36,-21 - 10399: -35,-21 - 10400: -34,-21 - 10401: -33,-21 - 10460: -45,-40 - 10484: -43,-30 - 10485: -44,-30 - 10509: -43,-22 - 10535: -51,-28 - 10542: -43,-41 - 10563: -37,-38 - 10564: -37,-39 - 10565: -37,-40 - 10566: -37,-41 - 10567: -37,-42 - 10568: -37,-43 - 10575: -30,-30 - 10576: -29,-30 - 10577: -28,-30 - 10578: -35,-30 + 15990: -40,-30 + 15991: -40,-29 + 16195: -27,-30 + 16196: -28,-30 + 16216: -34,-32 + 16220: -28,-32 + 16221: -27,-32 + 16222: -26,-32 + 16231: -28,-28 + 16232: -27,-28 + 16233: -26,-28 + 16265: -43,-36 - node: + zIndex: 1 + color: '#8D1C994C' + id: QuarterTileOverlayGreyscale90 + decals: + 18598: 23,22 + 18599: 24,22 + 18600: 25,22 + 18601: 26,22 + - node: + zIndex: 1 color: '#8D1C9996' id: QuarterTileOverlayGreyscale90 decals: 14489: 17,24 14490: 17,25 14491: 16,25 - 14492: 15,25 - 14493: 14,25 - 14494: 13,25 - 14495: 12,25 - 14496: 12,26 - 14497: 12,27 - 14498: 12,28 + 18615: 17,23 + 18616: 17,22 + 19315: 15,25 + 19384: 14,25 - node: - color: '#9FED5896' + zIndex: 1 + color: '#95171093' id: QuarterTileOverlayGreyscale90 decals: - 1539: 28,-2 - 1540: 27,-2 + 17732: -48,-58 - node: + zIndex: 1 color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: @@ -7731,7 +9458,6 @@ entities: 9989: 7,26 9990: 8,26 9991: 9,26 - 9992: 9,25 9993: -5,12 9994: -4,12 9995: -3,12 @@ -7783,7 +9509,6 @@ entities: 2381: -16,-12 2382: -16,-13 2383: -16,-14 - 2385: -16,-17 2386: -16,-19 2387: -16,-20 2388: -16,-21 @@ -7804,94 +9529,130 @@ entities: decals: 9031: -15,-1 9032: -15,-3 + 17695: -16,-18 + - node: + color: '#FA750096' + id: QuarterTileOverlayGreyscale90 + decals: + 16095: -28,-41 + 16096: -29,-41 + 16097: -30,-41 + 16098: -31,-41 + 16099: -32,-41 + 16100: -33,-41 + 16101: -33,-40 + 16102: -34,-40 + 16103: -35,-40 + 16104: -36,-40 + - node: + zIndex: 1 + color: '#FA750096' + id: QuarterTileOverlayGreyscale90 + decals: + 18305: -26,-41 + - node: + cleanable: True + zIndex: 3 + color: '#FF00007E' + id: Rock01 + decals: + 15122: 20.025936,-53.93029 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 15827: 12.0275755,-42.045773 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 15828: 12.8557005,-42.030148 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 15830: 11.9650755,-41.186398 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 15829: 13.1682005,-42.092648 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 13912: -2,-49 + 15110: -2,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 13911: -1,-49 + 15111: -1,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 13910: 0,-49 + 15112: 0,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 13908: 1,-49 + 15113: 1,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 13909: 2,-49 + 15114: 2,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 13913: 3,-49 + 15115: 3,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 13914: 4,-49 + 15116: 4,-49 - node: zIndex: 1 angle: -1.5707963267948966 rad color: '#000000FF' - id: StandClearGreyscale + id: StandClear decals: - 11807: -28.026443,-31.005596 - - node: - zIndex: 1 - color: '#000000FF' - id: StandClearGreyscale - decals: - 11805: -36.514652,-29.992134 + 17665: -33.770382,-32.499474 + 17666: -33.765556,-28.499897 + 17669: -38.77519,-33.50241 - node: zIndex: 1 angle: 1.5707963267948966 rad color: '#000000FF' - id: StandClearGreyscale + id: StandClear decals: - 11808: -25.999617,-30.968533 + 17664: -32.27392,-32.46859 + 17667: -32.27231,-28.469011 + 17668: -37.275627,-33.468437 + 17671: -37.260666,-27.469044 - node: - zIndex: 1 - angle: 3.141592653589793 rad - color: '#000000FF' - id: StandClearGreyscale + zIndex: 2 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear decals: - 11809: -36.54651,-27.965483 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 3120: -53,-41 - 3121: -52,-40 + 17969: 29.722523,1.5337591 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 10521: -53,-33 - 10524: -53,-28 - 10525: -52,-27 - 10573: -31,-30 - - node: - color: '#8C347F96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1572: 27,4 + 16187: -32,-30 + 16267: -45,-35 + 16270: -46,-36 + 18575: 18,3 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale @@ -7904,20 +9665,12 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 9756: 34,-42 - - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale - decals: - 10224: -35,-38 - 10225: -35,-34 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 10517: -50,-34 - 10520: -50,-29 - 10526: -51,-35 - 10570: -37,-44 + 16188: -26,-31 + 16281: -42,-39 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 @@ -7930,25 +9683,15 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 14451: 33,-32 - - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 10218: -28,-39 - 10222: -33,-39 - 10227: -27,-35 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3123: -53,-44 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 10522: -53,-34 - 10523: -53,-29 - 10527: -52,-35 + 16189: -32,-31 + 16262: -50,-35 + 16282: -46,-39 + 18571: 20,-1 + 18572: 18,2 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 @@ -7956,32 +9699,14 @@ entities: 11236: 30,-30 11245: 27,-32 11284: 34,-35 - - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 10219: -31,-39 - 10220: -35,-36 - 10221: -35,-39 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 3124: -50,-41 - 3125: -51,-40 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 10518: -50,-33 - 10519: -50,-28 - 10528: -51,-27 - 10574: -34,-30 - - node: - color: '#8C347F96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1573: 29,4 + 16190: -26,-30 + 16268: -43,-35 + 16269: -42,-36 + 18582: 22,3 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 @@ -7989,22 +9714,22 @@ entities: 11243: 27,-27 11251: 30,-25 - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale90 + cleanable: True + zIndex: 5 + color: '#5E7C16FF' + id: Tunnel decals: - 10223: -33,-38 - 10226: -27,-34 + 19313: -44,-58 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnBox decals: 4261: -51,-13 - 4291: 22,-9 - 4292: 25,2 10998: -4,-21 11062: -2,-21 - 14856: -26,-17 + 15784: -40,-15 + 15896: 24,-11 - node: zIndex: 1 color: '#D381C996' @@ -8017,12 +9742,6 @@ entities: id: WarnCornerGreyscaleNW decals: 9798: 33,-25 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNW - decals: - 12380: 29,1 - node: zIndex: 1 color: '#D381C996' @@ -8039,7 +9758,6 @@ entities: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3281: 10,5 10285: -70,-15 - node: zIndex: 1 @@ -8051,7 +9769,6 @@ entities: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3279: 9,5 10286: -66,-15 - node: zIndex: 1 @@ -8063,7 +9780,6 @@ entities: color: '#FFFFFFFF' id: WarnCornerSE decals: - 3280: 10,4 10287: -70,-11 - node: zIndex: 1 @@ -8075,7 +9791,6 @@ entities: color: '#FFFFFFFF' id: WarnCornerSW decals: - 3282: 9,4 10288: -66,-11 - node: zIndex: 1 @@ -8088,15 +9803,31 @@ entities: id: WarnCornerSmallGreyscaleNE decals: 9920: 9,12 - 10984: -5,-7 - 11177: -1,-11 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 18569: 27,0 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 17245: -2,-12 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: 9919: 13,12 - 10983: -1,-7 - 11178: 1,-11 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 17244: 0,-12 - node: zIndex: 1 color: '#D381C996' @@ -8108,8 +9839,19 @@ entities: id: WarnCornerSmallGreyscaleSE decals: 10985: -5,-5 - 11164: 2,-12 - 11176: -1,-7 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 18570: 27,3 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 17243: -2,-8 - node: zIndex: 1 color: '#D381C996' @@ -8121,7 +9863,13 @@ entities: id: WarnCornerSmallGreyscaleSW decals: 10986: -1,-5 - 11175: 1,-7 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 17242: 0,-8 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -8133,13 +9881,14 @@ entities: 10959: -4,-19 10962: -3,-19 10963: -2,-19 - 11092: -6,-13 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnCornerSmallNE decals: 11000: -5,-21 + 15167: -3,-96 + 15695: -30,-65 - node: color: '#3EB38896' id: WarnCornerSmallNW @@ -8155,7 +9904,12 @@ entities: 10958: -3,-19 10960: -4,-19 10961: -2,-19 - 11027: -1,-21 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 15859: -1,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -8169,6 +9923,7 @@ entities: id: WarnCornerSmallSE decals: 11041: -5,-18 + 15696: -30,-59 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -8180,19 +9935,37 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 11042: -1,-18 + 15886: -1,-18 - node: zIndex: 1 color: '#52B4E996' - id: WarnEndGreyscaleE + id: WarnEndGreyscaleN decals: - 14448: -29,-23 + 19439: -38,-33 + 19441: -38,-27 + 19442: -33,-28 + 19445: -33,-32 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnEndGreyscaleN + decals: + 18563: 29,2 - node: zIndex: 1 color: '#52B4E996' - id: WarnEndGreyscaleW + id: WarnEndGreyscaleS decals: - 12397: -30,-23 + 19438: -38,-28 + 19440: -38,-34 + 19443: -33,-29 + 19444: -33,-33 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnEndGreyscaleS + decals: + 18564: 29,1 - node: color: '#FFFFFFFF' id: WarnEndN @@ -8224,6 +9997,12 @@ entities: 4286: 40,-47 10994: -5,-19 10995: -5,-20 + 15166: -3,-95 + 15690: -30,-60 + 15691: -30,-61 + 15692: -30,-62 + 15693: -30,-63 + 15694: -30,-64 - node: zIndex: 1 color: '#D381C996' @@ -8234,26 +10013,30 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 3079: -40,-46 - 3080: -40,-47 - 3081: -40,-48 - 3082: -40,-49 - 11162: 2,-13 - 11167: -1,-9 - 11168: -1,-8 - 11169: -1,-10 + 15941: -46,-44 + 15942: -46,-45 + 15943: -46,-46 + 15944: -46,-47 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 17239: -2,-11 + 17240: -2,-10 + 17241: -2,-9 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 17808: 19,3 - node: zIndex: 1 color: '#D381C996' id: WarnLineGreyscaleN decals: 9804: 34,-25 - - node: - color: '#FA750096' - id: WarnLineGreyscaleN - decals: - 10291: -34,-38 - 10292: -30,-34 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -8261,12 +10044,21 @@ entities: 9915: 10,12 9916: 11,12 9917: 12,12 - 10977: -4,-7 - 10978: -2,-7 - 10982: -3,-7 - 11174: 0,-11 11424: 34,-34 11425: 35,-34 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 18568: 28,0 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 17237: -1,-12 - node: zIndex: 1 color: '#D381C996' @@ -8275,12 +10067,6 @@ entities: 9772: 33,-23 9773: 34,-23 9808: 34,-27 - - node: - color: '#FA750096' - id: WarnLineGreyscaleS - decals: - 10289: -34,-36 - 10290: -30,-32 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -8291,16 +10077,23 @@ entities: 10979: -4,-5 10980: -3,-5 10981: -2,-5 - 11173: 0,-7 11427: 20,-28 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2200: 31,34 - 2201: 32,34 - 2202: 33,34 + 15919: 8,-16 + 15920: 9,-16 + 15921: 10,-16 + 18567: 28,3 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 17238: -1,-8 - node: zIndex: 1 color: '#D381C996' @@ -8311,20 +10104,19 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 3083: -40,-49 - 3084: -40,-47 - 3085: -40,-46 9918: 13,13 - 11170: 1,-9 - 11171: 1,-10 - 11172: 1,-8 + 15938: -46,-44 + 15939: -46,-45 + 15940: -46,-47 - node: + cleanable: True zIndex: 1 color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 12379: 29,0 - 12381: 29,-1 + 17234: 0,-9 + 17235: 0,-10 + 17236: 0,-11 - node: color: '#FFFFFFFF' id: WarnLineN @@ -8337,25 +10129,21 @@ entities: id: WarnLineN decals: 2336: 4,-24 - 4288: 24,-10 - 4289: 23,-10 - 4290: 22,-10 4328: 29,-58 4329: 31,-58 4330: 27,-58 4331: 28,-58 + 15916: 8,-15 + 15917: 9,-15 + 15918: 10,-15 + 18589: 17,30 + 18590: 16,30 - node: zIndex: 1 color: '#3EB38896' id: WarnLineS decals: 2106: -10,0 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 11024: -1,-19 - 11025: -1,-20 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8365,6 +10153,10 @@ entities: 4262: -62,-16 13016: -9,-21 13017: -9,-19 + 15857: -1,-20 + 15858: -1,-19 + 18586: 18,29 + 18587: 18,28 - node: color: '#FFFFFFFF' id: WarnLineW @@ -8376,11 +10168,6 @@ entities: 9930: 6,26 10917: -10,-22 10921: -12,-22 - 10988: -3,-13 - 10989: -2,-13 - 10991: -5,-13 - 11091: -4,-13 - 11093: -1,-13 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8390,6 +10177,20 @@ entities: 4263: -64,-10 4264: -62,-10 4265: -61,-10 + 15164: -2,-96 + 15165: -1,-96 + 15897: 24,-10 + 15911: 25,-10 + 15912: 26,-10 + 18591: 17,26 + 18592: 16,26 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 18416: 20,-44 + 18419: 18,-46 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -8402,7 +10203,10 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 14289: 20,-36 + 15123: 3,-51 + 18381: 22,-40 + 18411: 19,-39 + 18412: 22,-44 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8422,21 +10226,30 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 14281: 17,-36 - 14290: 19,-36 14297: 13,-37 + 15128: -1,-51 + 18374: 19,-40 + 18415: 21,-44 - node: zIndex: 2 color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 12361: -18,-47 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 17674: -37,-56 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 14288: 20,-41 + 15130: 3,-54 + 18382: 22,-42 + 18389: 19,-44 + 18413: 22,-45 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8448,13 +10261,17 @@ entities: id: WoodTrimThinCornerSw decals: 12135: 16,-41 + 17673: -39,-56 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 14287: 19,-41 14299: 13,-39 + 15129: -1,-54 + 18373: 19,-42 + 18414: 21,-45 + 18429: 17,-44 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8466,12 +10283,25 @@ entities: id: WoodTrimThinEndE decals: 15106: -4,-43 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 18404: 19,-37 + 18417: 21,-47 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: 12107: 36,-10 15104: -7,-44 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 18403: 17,-36 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS @@ -8482,25 +10312,37 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 14277: 17,-41 + 18386: 18,-45 - node: color: '#FFFFFFFF' id: WoodTrimThinEndW decals: 15107: -6,-43 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 18418: 17,-47 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: 12106: 37,-12 12109: 36,-11 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 18406: 17,-37 + 18409: 17,-39 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: 12105: 35,-12 12108: 36,-11 - 12127: 17,-38 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe @@ -8512,19 +10354,23 @@ entities: id: WoodTrimThinInnerSe decals: 12342: -8,-42 - 14282: 17,-38 + 18405: 17,-37 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: 12110: 35,-12 - 12128: 17,-38 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: 14284: 19,-38 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 17677: -37,-55 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8533,12 +10379,11 @@ entities: 12343: -8,-43 12345: -8,-44 12346: -8,-45 - 14275: 17,-39 - 14276: 17,-40 - 14293: 20,-40 - 14294: 20,-39 - 14295: 20,-38 - 14296: 20,-37 + 15124: 3,-52 + 15125: 3,-53 + 18380: 22,-41 + 18390: 19,-43 + 18402: 17,-38 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8551,14 +10396,22 @@ entities: decals: 1616: 18,-59 12100: 36,-13 - 12142: 18,-38 15108: -5,-43 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 14292: 18,-38 + 15134: 0,-51 + 15135: 1,-51 + 15136: 2,-51 + 18376: 20,-40 + 18377: 21,-40 + 18407: 18,-37 + 18410: 18,-39 + 18420: 18,-47 + 18421: 19,-47 + 18422: 20,-47 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8576,9 +10429,8 @@ entities: 12112: 35,-12 12113: 36,-12 12114: 37,-12 - 12140: 17,-41 - 12141: 19,-41 15109: -5,-43 + 17676: -38,-56 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8588,7 +10440,14 @@ entities: 12347: -6,-42 12348: -5,-42 12349: -4,-42 - 14283: 18,-38 + 15132: 1,-54 + 15133: 2,-54 + 18378: 20,-42 + 18379: 21,-42 + 18408: 18,-37 + 18423: 18,-47 + 18424: 19,-47 + 18425: 20,-47 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8603,22 +10462,25 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 12118: 18,-36 - 12119: 18,-37 - 12122: 17,-37 12137: 16,-40 - 12138: 17,-38 + 17691: -39,-54 + 17692: -39,-55 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 14278: 17,-40 - 14279: 17,-39 - 14285: 19,-39 - 14286: 19,-40 - 14291: 19,-37 14298: 13,-38 + 15126: -1,-52 + 15127: -1,-53 + 18375: 19,-41 + 18393: 17,-40 + 18394: 17,-39 + 18395: 17,-37 + 18401: 17,-38 + 18426: 17,-41 + 18427: 17,-42 + 18428: 17,-43 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8627,54 +10489,29 @@ entities: 12362: -18,-48 - node: cleanable: True - angle: 0.5235987755982988 rad - color: '#FFFFFFFF' - id: body + zIndex: 1 + color: '#D58C18FF' + id: arrow decals: - 1581: 2.6982818,-19.07067 + 17728: -51.898464,-57.467903 - node: cleanable: True zIndex: 4 color: '#FFFFFF7F' id: burnt1 decals: - 1635: 16,-12 - 1636: 15,-12 - 1637: 15,-13 - 1645: 16,-11 - 1646: 17,-12 - 1651: 10,-14 - 1653: 11,-14 1654: 40,-47 1655: 40,-46 1656: 40,-45 1657: 39,-45 1661: 39,-47 - 3189: 13,-14 3190: 14,-14 - 3192: 11,-14 - 3194: 10,-12 - 3197: 12,-11 - 3198: 12,-12 - 3200: 16,-14 - 3201: 17,-11 - 3202: 18,-12 - 3203: 17,-12 - 3205: 16,-16 - 3206: 22,-17 3207: 21,-20 3208: 24,-23 4830: 35,-11 4831: 36,-8 4941: -4,11 - 4948: 14,0 5275: 10,-43 - 5797: -45,-31 - 5807: -51,-34 - 5808: -52,-34 - 5809: -52,-35 - 5810: -50,-34 - 5813: -50,-28 6314: -15,-35 6315: -19,-36 6316: -21,-35 @@ -8718,18 +10555,7 @@ entities: 7499: 38,8 7500: 35,9 7501: 27,6 - 7502: 28,6 - 7503: 29,6 - 10207: 14,-2 - 10208: 16,-1 10209: 14,4 - 10214: 12,-14 - 10215: 14,-12 - 10216: 16,-13 - 10217: 17,-11 - 10352: 13,-13 - 10353: 13,-12 - 10354: 14,-12 13546: 89,-28 13547: 88,-28 13548: 86,-28 @@ -8836,23 +10662,87 @@ entities: 13702: 70,-61 13703: 72,-61 13704: 71,-61 + 15312: -11,-92 + 15313: -8,-95 + 15314: -7,-94 + 15315: -5,-94 + 15316: -4,-94 + 15317: 6,-95 + 15318: 7,-94 + 15319: 7,-95 + 15320: 10,-95 + 15386: -8,-73 + 15387: -9,-65 + 15388: -3,-57 + 15389: 1,-53 + 15390: -3,-49 + 15391: -9,-51 + 15392: 10,-51 + 15393: 12,-64 + 15394: 7,-69 + 16364: 27,-39 + 16365: 28,-39 + 16366: 28,-38 + 16372: -41,-47 + 16373: -42,-46 + 16374: -43,-46 + 16375: -43,-47 + 16376: -43,-45 + 16377: -42,-45 + 16378: -42,-44 + 16379: -43,-44 + 16380: -41,-45 + 16381: -41,-46 + 16382: -38,-46 + 16383: -38,-47 + 16384: -40,-49 + 16385: -46,-49 + 16386: -47,-49 + 16387: -48,-49 + 18835: -53,-50 + 18836: -53,-48 + 18837: -56,-53 + 18838: -64,-59 + 18839: -54,-58 + 18840: -50,-59 + 18841: -51,-58 + 18842: -44,-58 + 18843: -37,-53 + 18901: 20,-8 + 19273: 38,18 + 19274: 37,18 + 19275: 37,19 + 19276: 37,20 + 19277: 37,21 + 19278: 37,22 + 19279: 39,22 + 19280: 36,23 + 19281: 36,24 + 19282: 34,24 + 19283: 31,24 + 19284: 31,21 + 19285: 31,19 + 19286: 31,18 + 19287: 34,17 + 19290: 45,22 + 19300: 17,28 + 19301: 25,22 + 19302: 34,15 + 19303: 40,15 + 19304: 40,11 + 19305: 46,21 - node: cleanable: True zIndex: 4 color: '#FFFFFF7F' id: burnt2 decals: - 1631: 14,-11 - 1648: 10,-12 - 1649: 10,-13 - 1650: 10,-14 1675: 42,-51 4826: 42,-10 4827: 43,-11 4828: 40,-12 4829: 36,-15 6317: -21,-33 - 6322: -21,-15 6323: -14,-15 13082: 73,-58 13083: 73,-59 @@ -8963,26 +10853,26 @@ entities: 13322: 84,-41 13323: 84,-40 13324: 83,-40 + 15684: -6,-95 + 15685: -7,-95 + 16367: 29,-39 + 16368: 29,-40 + 16369: 28,-40 + 16370: 26,-40 + 16371: 24,-40 + 17311: 33,7 + 17312: 29,10 - node: cleanable: True zIndex: 4 color: '#FFFFFF7F' id: burnt3 decals: - 1639: 14,-11 - 1642: 12,-12 - 1647: 16,-12 1670: 44,-53 - 3178: 11,-14 - 3179: 10,-14 - 3180: 10,-13 - 3182: 10,-12 7102: 53,-42 7104: 50,-43 7105: 50,-42 7106: 51,-41 - 10210: 14,-3 - 10211: 16,-2 13172: 61,-79 13173: 62,-79 13174: 62,-80 @@ -9044,6 +10934,47 @@ entities: 13543: 96,-27 13544: 96,-26 13545: 96,-25 + 15340: 12,-89 + 15341: 10,-90 + 15342: 9,-90 + 15343: 9,-89 + 15344: 2,-87 + 15345: 1,-87 + 15346: 0,-87 + 15347: 0,-88 + 15348: 1,-88 + 15349: 2,-88 + 15350: 3,-88 + 15351: 3,-87 + 15352: 1,-85 + 15353: 0,-85 + 15354: -1,-85 + 15355: 1,-84 + 15356: 2,-85 + 15357: 1,-90 + 15358: 0,-90 + 15359: -1,-88 + 15360: -5,-89 + 15361: 0,-95 + 15362: -1,-96 + 15363: -2,-96 + 15364: -4,-96 + 15365: -4,-95 + 15366: -5,-95 + 15367: -5,-94 + 15368: -7,-95 + 15369: -10,-92 + 15370: -11,-92 + 15371: -8,-95 + 15372: -2,-99 + 15373: -2,-100 + 15374: -4,-98 + 15375: 4,-99 + 15376: 7,-102 + 15377: 8,-102 + 15378: 9,-102 + 15686: -12,-95 + 15687: -13,-95 - node: cleanable: True zIndex: 4 @@ -9268,50 +11199,96 @@ entities: 13691: 58,-56 13692: 59,-57 13693: 73,-64 + 15303: -1,-96 + 15304: -3,-96 + 15305: -3,-94 + 15306: -2,-93 + 15307: -10,-90 + 15308: -9,-92 + 15309: -7,-93 + 15310: -7,-96 + 15311: -8,-96 + 15321: 9,-93 + 15322: 12,-93 + 15323: 12,-92 + 15324: 11,-93 + 15325: 11,-92 + 15326: 10,-93 + 15327: 11,-96 + 15328: 10,-96 + 15329: 9,-95 + 15330: 7,-90 + 15331: 8,-90 + 15332: 9,-90 + 15333: 7,-91 + 15334: 6,-91 + 15335: 10,-89 + 15336: 10,-88 + 15337: 12,-89 + 15338: 12,-88 + 15339: 12,-90 + 15379: 6,-100 + 15380: 6,-97 + 15381: 4,-91 + 15382: 11,-79 + 15383: 11,-78 + 15384: -9,-79 + 15385: -9,-78 + 16361: 27,-40 + 16362: 27,-38 + 16363: 26,-38 + 16388: -46,-50 + 16389: -46,-51 + 16390: -50,-49 + 16391: -51,-49 + 16392: -42,-46 + 16393: -42,-45 + 16394: -43,-45 + 16395: -43,-44 + 16396: -42,-44 + 16397: -41,-46 + 16398: -41,-45 + 16399: -41,-44 + 16400: -41,-47 + 16401: -42,-47 + 16402: -43,-47 + 16403: -43,-46 + 16404: -38,-46 + 16405: -37,-46 + 16406: -38,-45 + 16407: -35,-42 + 17291: 27,-18 + 17292: 28,-18 + 17293: 28,-19 + 17294: 21,-15 + 17295: 19,-19 + 17296: 15,-15 + 17297: 16,-15 + 17299: 25,-11 + 17300: 25,-4 + 17301: 24,-4 + 17303: 18,-3 + 17304: 15,1 + 17308: 21,5 + 17309: 15,6 + 17310: 29,7 + 18834: -51,-53 + 19291: 48,19 + 19292: 40,17 + 19293: 45,19 + 19294: 45,20 + 19295: 38,20 + 19296: 32,18 + 19297: 16,19 + 19298: 11,22 + 19299: 17,29 - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowa1 + cleanable: True + zIndex: 5 + color: '#C74EBDFF' + id: carp decals: - 14227: -10.478444,12.046731 - 14228: -12.035086,12.943187 - 14229: -10.910086,14.485925 - 14267: -19.1523,29.318792 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowa2 - decals: - 14224: 12.62475,-41.99786 - 14230: -11.11842,13.2767515 - 14231: -15.86923,12.388497 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowa3 - decals: - 14232: -17.035896,15.640755 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowb1 - decals: - 14269: -21.23229,31.205517 - 14273: -20.221872,31.872646 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowb2 - decals: - 14225: 13.239334,-41.580902 - 14233: -10.759171,15.666258 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowb3 - decals: - 14226: 11.864334,-41.99786 - 14274: -19.086456,30.371607 + 19314: 45,22 - node: cleanable: True color: '#52B4E9FF' @@ -9333,191 +11310,19 @@ entities: decals: 12394: 53.009716,-54.006245 - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow03 + cleanable: True + zIndex: 5 + color: '#8932B8FF' + id: face decals: - 14270: -20.48229,29.600237 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow07 - decals: - 13816: 48.049736,-24.140303 - 13817: 48.90834,-24.12839 - 13846: 16.122467,-6.963594 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow08 - decals: - 13896: -43.056534,-42.806057 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow09 - decals: - 13847: 16.027067,-5.8317432 - 13848: 14.083284,-4.104182 - 13849: 13.9878845,-6.880194 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow10 - decals: - 13814: 50.029293,-23.973503 - 13825: 47.978188,-19.85331 - 13865: -11.682715,15.111451 - 13867: -16.886286,12.383097 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow11 - decals: - 13906: -38.918545,-42.96094 - 13907: -41.88788,-42.817974 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow12 - decals: - 13815: 49.05144,-23.985418 - 13830: 49.850418,-19.99628 - 14223: 11.531,-41.862347 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowa1 - decals: - 13828: 47.787384,-19.99628 - 13829: 50.363194,-19.948624 - 13841: 13.630134,-7.070822 - 13868: -12.085838,13.24092 - 13890: -11.951445,16.243301 - 13891: -11.927595,14.59914 - 13892: -41.852104,-42.865627 - 14222: 12.416417,-41.851925 + 19308: 37,8 - node: cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowa1 + zIndex: 5 + color: '#F9801DFF' + id: matt decals: - 13834: 13.916334,-4.842863 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowa2 - decals: - 13845: 16.229794,-6.689567 - 13869: -11.930813,12.549895 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowa3 - decals: - 13842: 14.1667595,-6.427454 - 13870: -10.726383,12.764351 - 13888: -16.649912,17.017725 - 13889: -15.827084,16.124159 - 13895: -42.31718,-41.97206 - 13905: -41.768627,-43.056255 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowb1 - decals: - 13813: 48.753315,-23.985418 - 13903: -41.72093,-42.222263 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowb2 - decals: - 13811: 47.94241,-23.96159 - 13827: 49.480743,-19.972452 - 13884: -16.10136,16.171816 - 13885: -11.021292,16.243301 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowb3 - decals: - 13850: 14.11906,-7.0350795 - 13886: -10.937816,17.148783 - 13887: -15.827084,17.136868 - 13902: -38.918545,-42.091206 - 13904: -42.31718,-42.484375 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowb3 - decals: - 13831: 14.488735,-3.830155 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc1 - decals: - 13812: 50.029293,-23.985418 - 13818: 49.254166,-24.033075 - 13826: 48.43134,-19.984365 - 13843: 15.943592,-5.9627995 - 13857: -16.081608,15.148648 - 13858: -16.224709,12.263954 - 13863: -10.871813,12.049498 - 13880: -17.043438,16.10033 - 13881: -11.7367935,16.3267 - 13893: -42.996906,-42.865627 - 13900: -40.58805,-42.115032 - 14221: 12.041417,-41.101402 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc2 - decals: - 13844: 15.931667,-7.154221 - 13852: 15.371189,-5.891314 - 13853: 14.488735,-6.0819416 - 13859: -16.045834,12.966892 - 13864: -10.955287,13.574518 - 13882: -10.83049,15.039968 - 13883: -16.983814,16.910498 - 13901: -39.57442,-42.317574 - 14271: -18.971872,30.830257 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc2 - decals: - 13832: 14.786861,-4.8190346 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc3 - decals: - 13851: 14.989588,-5.9985423 - 13860: -16.65401,12.716694 - 13861: -11.754265,13.646004 - 13862: -11.86159,12.08524 - 13894: -42.87766,-42.04355 - 14220: 13.0935,-41.90404 - 14272: -21.096872,30.96577 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc3 - decals: - 13833: 14.667612,-3.9969535 - - node: - cleanable: True - color: '#96DAFFFF' - id: med - decals: - 3266: -35.00749,-50.022392 + 19309: 23,-5 - node: cleanable: True angle: 1.5707963267948966 rad @@ -9525,12 +11330,6 @@ entities: id: pound decals: 3273: 30.961885,-53.0384 - - node: - cleanable: True - color: '#FFFFFF7F' - id: revolution - decals: - 14428: 11,-13 - node: cleanable: True angle: 1.5707963267948966 rad @@ -9540,32 +11339,43 @@ entities: 1157: 20.014956,-53.965996 - node: cleanable: True - color: '#FBB2FFFF' + zIndex: 5 + color: '#80C71FFF' + id: safe + decals: + 19311: 31,20 + - node: + cleanable: True + zIndex: 1 + color: '#D58C18FF' id: shop decals: - 3267: -40.0287,-52.975376 + 17726: -53.402473,-52.917152 + 17727: -51.908886,-57.9891 - node: cleanable: True - angle: 0.2617993877991494 rad - color: '#FBB2FFFF' - id: slash + zIndex: 1 + angle: -1.5707963267948966 rad + color: '#D58C18FF' + id: shortline decals: - 3269: -39.550877,-51.98042 - 3270: -40.436733,-52.03254 + 17723: -53.855377,-53.500507 + 17724: -52.834038,-52.583206 - node: cleanable: True + zIndex: 1 angle: 1.5707963267948966 rad - color: '#FBB2FFFF' - id: slash + color: '#D58C18FF' + id: shortline decals: - 3272: -39.999016,-51.646854 + 17725: -53.792847,-52.563328 - node: cleanable: True - angle: 1.8325957145940461 rad - color: '#FBB2FFFF' - id: slash + zIndex: 5 + color: '#80C71FFF' + id: space decals: - 3271: -39.978172,-52.418224 + 19310: 49,-32 - node: cleanable: True angle: -1.5707963267948966 rad @@ -9585,6 +11395,21 @@ entities: id: splatter decals: 1391: 53.607197,-41.451954 + - node: + cleanable: True + zIndex: 3 + color: '#FF00003F' + id: splatter + decals: + 15117: 19.58822,-54.07622 + - node: + cleanable: True + zIndex: 3 + angle: 3.141592653589793 rad + color: '#FF00003F' + id: splatter + decals: + 15118: 19.952984,-53.45079 - node: cleanable: True color: '#FF00FF51' @@ -9675,10 +11500,34 @@ entities: 1155: 20.108753,-54.466343 - node: cleanable: True - color: '#FBB2FFFF' + zIndex: 1 + angle: -3.141592653589793 rad + color: '#D58C18FF' + id: thinline + decals: + 17719: -54.1993,-52.979313 + - node: + cleanable: True + zIndex: 1 + color: '#D58C18FF' + id: thinline + decals: + 17721: -52.52138,-52.98974 + - node: + cleanable: True + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#D58C18FF' + id: thinline + decals: + 17722: -53.084164,-53.47966 + - node: + cleanable: True + zIndex: 5 + color: '#D58C18FF' id: trade decals: - 3268: -40.039124,-51.97468 + 19312: -51,-53 - type: GridAtmosphere version: 2 data: @@ -9688,7 +11537,8 @@ entities: -4,-5: 0: 7645 -5,-4: - 0: 52733 + 0: 52431 + 2: 256 -4,-3: 0: 53727 -5,-3: @@ -9703,7 +11553,7 @@ entities: 0: 65437 -4,0: 0: 13243 - 1: 2048 + 3: 2048 -3,-4: 0: 65501 -3,-3: @@ -9714,14 +11564,14 @@ entities: 0: 53247 -3,0: 0: 15 - 1: 13056 + 3: 13056 2: 3072 -3,-5: 0: 36863 -2,-4: - 0: 65535 + 0: 57341 -2,-3: - 0: 56529 + 0: 56541 -2,-2: 0: 61661 -2,-1: @@ -9734,7 +11584,7 @@ entities: -1,-4: 0: 65535 -1,-3: - 0: 65525 + 0: 65535 -1,-2: 0: 62975 -1,-1: @@ -9742,8 +11592,10 @@ entities: -1,0: 0: 15 2: 3840 + 0,-4: + 0: 65523 0,-3: - 0: 65526 + 0: 65535 0,-2: 0: 61695 0,-1: @@ -9774,23 +11626,23 @@ entities: 0: 56793 -2,-8: 0: 61495 - 3: 136 + 1: 136 -2,-7: - 0: 8177 + 0: 8176 -2,-6: 0: 64988 -2,-9: 0: 13299 - 3: 32768 + 1: 32768 -1,-8: - 3: 51 + 1: 51 0: 63500 -1,-6: 0: 65535 -1,-5: 0: 4095 -1,-9: - 3: 12288 + 1: 12288 0: 35059 -1,-7: 0: 3822 @@ -9799,7 +11651,9 @@ entities: 0,-7: 0: 12287 0,-6: - 0: 11002 + 0: 15355 + 0,-5: + 0: 36795 -4,-12: 0: 62719 -4,-13: @@ -9825,25 +11679,25 @@ entities: -3,-13: 0: 55483 -2,-12: - 0: 64799 + 0: 64927 -2,-11: 0: 65503 -2,-10: 0: 32767 -2,-13: - 0: 65309 + 0: 65471 -1,-12: - 0: 63247 + 0: 65407 -1,-11: - 0: 63287 + 0: 63295 -1,-10: 0: 1911 -1,-13: - 0: 65473 + 0: 65471 0,-12: - 0: 64399 + 0: 62991 0,-11: - 0: 65419 + 0: 65286 0,-10: 0: 64399 0,-9: @@ -9851,10 +11705,10 @@ entities: -4,-16: 2: 17663 -5,-16: - 2: 191 + 2: 255 -4,-15: + 2: 100 0: 45056 - 2: 68 -5,-15: 0: 65024 -4,-14: @@ -9864,60 +11718,81 @@ entities: -5,-13: 0: 53759 -4,-17: - 2: 60144 + 2: 17663 -3,-16: - 2: 16 + 2: 17 0: 52428 -3,-15: 0: 47308 -3,-14: 0: 35775 -3,-17: - 0: 52428 - 2: 4352 + 0: 52360 + 2: 19 -2,-16: - 0: 16305 + 0: 13175 + 2: 32768 -2,-15: - 0: 53555 - 2: 136 + 0: 64435 -2,-14: - 0: 64989 + 0: 65339 -2,-17: - 0: 4379 - 2: 34816 - -1,-16: - 0: 256 + 0: 13119 + 2: 2048 + -1,-15: + 0: 65328 + 2: 8 -1,-14: - 0: 4096 + 0: 65295 + -1,-16: + 2: 59392 + 0,-15: + 2: 15 + 0: 65280 + 0,-14: + 0: 65295 0,-13: - 0: 65520 + 0: 65535 + -4,-18: + 2: 59592 + -5,-18: + 2: 40960 -5,-17: - 2: 19104 - -3,-19: - 2: 708 - 0: 34816 + 2: 255 + -4,-20: + 2: 51400 + -4,-21: + 2: 51404 + -4,-19: + 2: 51400 -3,-18: - 0: 52364 - -3,-20: - 2: 17484 + 2: 12288 + 0: 34952 -3,-21: - 2: 32113 + 2: 18575 + -3,-20: + 0: 2176 + -3,-19: + 0: 34952 -2,-20: - 2: 4369 + 0: 4913 + 2: 34816 -2,-19: - 2: 50737 + 0: 15347 -2,-18: - 0: 62209 + 0: 45875 2: 136 -2,-21: - 2: 32124 - -1,-18: - 0: 4096 + 2: 21299 + -1,-19: + 0: 16 + -1,-17: + 0: 1 -5,0: 0: 43688 -4,1: 0: 62259 - 1: 128 + 3: 128 -5,1: 0: 43690 -4,2: @@ -9931,7 +11806,7 @@ entities: -4,4: 0: 21759 -3,1: - 1: 513 + 3: 513 2: 8208 -3,2: 0: 65280 @@ -9951,7 +11826,7 @@ entities: 0: 13 2: 61696 -1,1: - 1: 1365 + 3: 1365 -1,2: 0: 65280 2: 10 @@ -9966,14 +11841,14 @@ entities: 0,0: 0: 15 2: 3328 - 1: 512 + 3: 512 0,1: 6: 273 - 1: 49356 + 3: 3276 0,2: 0: 65280 2: 6 - 1: 8 + 3: 8 0,3: 0: 19663 2: 256 @@ -9986,7 +11861,7 @@ entities: -4,6: 2: 50272 -3,5: - 0: 8107 + 0: 8099 -3,6: 0: 119 2: 53248 @@ -10014,34 +11889,32 @@ entities: 0,6: 0: 36863 -8,-4: - 2: 6553 + 0: 15 + 2: 768 -8,-5: - 1: 61440 - 0: 6 - 2: 256 + 0: 61543 -9,-4: - 2: 62532 + 0: 26239 -8,-3: - 2: 4096 - 0: 19660 - -8,-2: - 2: 1 - 0: 65028 + 0: 44782 -9,-3: - 2: 62224 + 0: 34958 + 2: 12288 + -8,-2: + 0: 65034 -9,-2: - 2: 142 - 0: 62208 + 0: 64904 + 2: 3 -8,-1: - 0: 56591 + 0: 60942 -9,-1: - 0: 35003 + 0: 35037 2: 12288 -8,0: - 0: 26189 + 0: 26190 -7,-4: - 1: 273 - 0: 3596 + 0: 17487 + 2: 256 -7,-3: 0: 65535 -7,-2: @@ -10049,12 +11922,12 @@ entities: -7,-1: 0: 65518 -7,-5: - 1: 4096 - 0: 49343 + 0: 61576 -7,0: 0: 65359 -6,-4: - 0: 3551 + 0: 15 + 2: 2304 -6,-3: 0: 53727 -6,-2: @@ -10062,34 +11935,33 @@ entities: -6,-1: 0: 65422 -6,-5: - 0: 53503 + 0: 61695 -6,0: 0: 60931 -8,-8: - 0: 45055 - -9,-8: - 0: 8191 - -8,-7: - 0: 12282 - -9,-7: - 0: 15291 - -8,-6: - 0: 28654 - -9,-6: 0: 65535 - -9,-5: - 2: 1488 - 1: 61440 -8,-9: - 0: 20479 + 0: 64767 + -9,-8: + 0: 63359 + -8,-7: + 0: 65487 + -9,-7: + 0: 62079 + -8,-6: + 0: 3826 + -9,-6: + 0: 62071 + -9,-5: + 0: 61423 -7,-8: - 0: 40959 + 0: 65535 -7,-7: - 0: 35771 + 0: 49055 -7,-6: - 0: 39871 + 0: 35768 -7,-9: - 0: 36857 + 0: 63929 -6,-8: 0: 15283 -6,-7: @@ -10099,29 +11971,29 @@ entities: -6,-9: 0: 48051 -8,-12: - 0: 47580 - -8,-13: - 0: 65126 + 0: 61166 -9,-12: - 0: 61152 + 0: 61166 -8,-11: - 0: 64415 + 0: 65520 -9,-11: - 0: 65038 - -8,-10: - 0: 61152 + 0: 65535 -9,-10: - 0: 20196 + 0: 65295 + -8,-10: + 0: 65504 -9,-9: - 0: 52974 + 0: 63327 + -8,-13: + 0: 57975 -7,-12: 0: 48063 -7,-11: - 0: 65531 + 0: 65528 -7,-10: - 0: 47576 + 0: 55736 -7,-13: - 0: 37102 + 0: 45294 -6,-12: 0: 53759 -6,-11: @@ -10131,62 +12003,79 @@ entities: -6,-13: 0: 64187 -8,-16: - 0: 65391 - -8,-17: - 0: 65399 + 0: 52686 + -9,-16: + 0: 65535 -8,-15: - 0: 61439 + 0: 28782 -9,-15: - 0: 3568 + 0: 61182 -8,-14: - 0: 26470 + 0: 30583 -9,-14: - 0: 4095 + 0: 65262 -9,-13: - 0: 61167 + 0: 65262 + -8,-17: + 0: 24576 + 2: 206 + -7,-15: + 2: 256 -7,-16: - 2: 2784 + 2: 238 -7,-14: 0: 58470 -6,-16: - 2: 17662 + 2: 17663 -6,-14: 0: 48043 -6,-17: - 2: 60136 + 2: 17663 -6,-15: 2: 196 0: 32768 - -8,-18: - 0: 30464 + -8,-20: + 0: 1 + 2: 512 + -8,-21: + 0: 4096 + 2: 32 + -9,-20: + 0: 61423 + -9,-19: + 0: 65519 -9,-18: - 0: 52224 - 2: 768 + 0: 61423 + -8,-18: + 2: 40960 -9,-17: - 0: 12 + 0: 65519 -7,-17: - 2: 3744 + 2: 511 + -7,-18: + 2: 40960 + -6,-18: + 2: 40960 -9,0: - 0: 51336 - 2: 4386 + 0: 59528 + 2: 34 -8,1: 0: 6 2: 24576 -9,1: - 0: 52428 - 2: 4352 + 0: 52462 + 2: 4096 -8,2: 2: 2 0: 61056 -9,2: - 0: 56572 + 0: 60668 -8,3: - 0: 30492 + 0: 26396 -9,3: - 0: 19663 - 2: 256 + 0: 20207 -8,4: - 0: 63334 + 0: 59238 -7,1: 0: 65535 -7,2: @@ -10204,7 +12093,7 @@ entities: -6,4: 0: 61567 -9,4: - 0: 52974 + 0: 36590 -8,5: 0: 65327 -9,5: @@ -10270,30 +12159,30 @@ entities: 2: 50 -12,-4: 2: 3712 - 1: 57344 + 3: 57344 -13,-4: 0: 48896 - 1: 7 + 3: 7 2: 8 -12,-3: 0: 1 2: 62126 -13,-3: 0: 11 - 1: 59136 + 3: 59136 2: 6144 -12,-2: - 1: 59185 + 3: 59185 2: 2254 -13,-2: - 1: 140 + 3: 140 2: 2114 -12,-1: - 1: 140 + 3: 140 2: 34816 -11,-4: - 2: 3889 - 1: 61440 + 2: 1841 + 3: 61440 -11,-3: 2: 61759 -11,-2: @@ -10302,172 +12191,199 @@ entities: -12,0: 2: 35562 -11,-5: - 2: 8080 + 2: 8048 -11,-1: 0: 34958 2: 8704 -10,-4: - 2: 50517 - 1: 12834 + 0: 59647 + 3: 4096 -10,-3: - 2: 63695 + 2: 61633 -10,-2: 0: 65280 - 2: 8 + 2: 12 -10,-1: 0: 13311 2: 32768 - -10,-5: - 2: 7936 - 1: 57344 -10,0: 0: 13105 - 2: 2048 + 2: 34816 -12,-8: - 0: 35071 - -13,-8: - 0: 30711 - -12,-6: - 2: 256 - 1: 4096 - 0: 36044 - -12,-5: - 1: 371 - 2: 4736 - -13,-6: - 2: 61440 - -13,-5: - 2: 4680 - 1: 60544 + 0: 64991 -12,-9: - 0: 52428 - -12,-7: - 0: 34952 - -11,-8: - 0: 7163 - -11,-7: - 0: 4369 - 2: 1028 - -11,-6: - 0: 7163 - -10,-8: - 0: 36863 - -10,-7: - 0: 65535 - -10,-6: - 0: 65535 - -10,-9: - 0: 61422 - -12,-11: - 0: 35007 - -13,-11: - 0: 30591 - -12,-10: - 0: 52424 - -12,-12: - 0: 2184 - -12,-13: - 0: 32768 - -11,-12: - 0: 20479 - -11,-11: - 0: 65535 - -11,-13: - 0: 61695 - -11,-10: - 0: 57572 - -11,-9: - 0: 3822 - -10,-12: - 0: 35771 - -10,-11: - 0: 65535 - -10,-13: - 0: 47615 - -10,-10: - 0: 61166 - -13,-15: - 2: 45875 - -12,-14: - 0: 3838 - -13,-14: - 0: 224 - 2: 49409 - 1: 16 - -11,-14: + 0: 53725 + -13,-8: 0: 52733 + -12,-7: + 0: 56349 + -13,-7: + 0: 51404 + 2: 17 + -12,-6: + 0: 52701 + -13,-6: + 0: 3838 + -12,-5: + 3: 305 + 2: 4800 + -13,-5: + 3: 60552 + 2: 4672 + -11,-8: + 0: 65535 + -11,-7: + 0: 45983 + -11,-6: + 0: 63295 + -11,-9: + 0: 63799 + -10,-8: + 0: 4369 + 2: 1088 + -10,-7: + 0: 61695 + -10,-6: + 0: 61695 + -10,-5: + 0: 3087 + 2: 256 + -10,-9: + 0: 65287 + -12,-12: + 0: 65524 + -12,-13: + 0: 63726 + -13,-12: + 0: 61058 + -12,-11: + 0: 4367 + 2: 1024 + -13,-11: + 0: 34958 + -12,-10: + 0: 57308 + -13,-10: + 0: 49080 + -13,-9: + 0: 52424 + 2: 272 + -11,-10: + 0: 65399 + -11,-13: + 0: 65521 + -11,-12: + 0: 61152 + -11,-11: + 0: 14 + 2: 1024 + -10,-12: + 0: 32738 + -10,-11: + 0: 32614 + -10,-10: + 0: 63346 + -10,-13: + 0: 65294 + -12,-15: + 2: 3 + 0: 30464 + -12,-14: + 0: 30576 + -13,-14: + 0: 32213 + -13,-13: + 0: 60629 -11,-15: - 0: 3296 + 0: 7936 + 2: 10 + -11,-14: + 0: 56799 -10,-15: - 0: 20208 + 0: 3968 + 2: 2 -10,-14: - 0: 30711 - -9,-16: - 2: 1092 + 0: 61166 + -10,-16: + 2: 16384 + -10,-20: + 2: 4 + 0: 3072 + -10,-21: + 2: 16512 + -10,-19: + 0: 12 + 2: 1024 -10,-18: - 2: 35968 + 2: 4 + 0: 3072 + -10,-17: + 0: 12 + -9,-21: + 0: 64170 -12,1: 2: 65416 -13,1: 2: 65392 -12,2: - 1: 3840 + 3: 3840 2: 61440 -13,2: - 1: 43008 + 3: 43008 2: 21026 -12,3: - 1: 3855 + 3: 3855 2: 61440 -13,3: - 1: 43016 + 3: 43016 2: 21026 -12,4: - 1: 3855 + 3: 3855 2: 61440 -11,1: 2: 63265 0: 8 -11,3: - 2: 36608 + 2: 34560 + 3: 2048 -11,0: 0: 52416 -10,1: 0: 51 2: 47104 - 1: 16384 + 3: 16384 -10,3: - 2: 7936 - 1: 16384 - 0: 8 + 3: 49408 + 2: 4096 + 0: 140 -11,4: 2: 15 + -10,2: + 2: 290 + 0: 32960 -10,4: 2: 8471 - 1: 3816 - -10,2: - 2: 546 - 0: 192 + 3: 3816 -13,4: - 1: 43016 + 3: 43016 2: 21026 -12,5: - 1: 8207 + 3: 8207 2: 53760 -13,5: - 1: 8200 + 3: 8200 2: 53794 -12,6: - 1: 21872 + 3: 21872 2: 8706 -12,7: - 1: 85 + 3: 85 2: 61986 -12,8: 2: 127 -13,7: 2: 61986 - 1: 85 + 3: 85 -11,5: 2: 61952 -11,7: @@ -10529,97 +12445,110 @@ entities: 2: 23 -14,-5: 2: 43695 + -16,-8: + 2: 10098 + -16,-7: + 2: 8995 -16,-6: - 2: 4080 + 2: 4083 -17,-6: 2: 36848 -17,-5: 2: 72 + -16,-9: + 2: 12848 + -15,-8: + 0: 32631 -15,-6: - 2: 57336 - -14,-6: - 2: 63283 - -14,-7: - 2: 63008 - 0: 8 + 2: 14196 + -15,-7: + 2: 10240 -14,-8: - 0: 34952 - -14,-9: - 0: 34816 - -13,-7: - 0: 55 - -13,-9: - 0: 30512 + 0: 30711 + -14,-7: + 0: 7 + -14,-6: + 0: 4095 -16,-12: - 2: 49137 + 2: 16369 -16,-13: 2: 4369 - 1: 43690 + 3: 8738 -17,-12: 2: 49137 + -16,-11: + 2: 12850 + -16,-10: + 2: 5272 + 3: 49668 -15,-12: - 2: 63485 + 2: 4083 + -15,-10: + 2: 39248 + 3: 160 -15,-13: - 2: 4369 - 1: 8738 + 2: 4352 + 3: 8208 + 0: 8 -14,-12: - 2: 13059 - 0: 2176 - -14,-13: - 2: 24576 - -14,-11: - 2: 2 - 0: 34952 - -13,-12: - 0: 10099 - -13,-10: - 0: 3 - 2: 17408 + 2: 3888 + 0: 8 -14,-10: - 2: 34816 + 3: 816 + 2: 1 + 0: 34944 + -15,-9: + 2: 8 + -14,-9: + 2: 273 + 3: 2 + -14,-13: + 0: 52428 -16,-16: - 2: 4607 - 1: 40960 + 2: 319 -16,-17: - 2: 45056 + 2: 12288 -17,-16: - 2: 4607 - 1: 40960 + 2: 20991 + 3: 8192 -16,-15: - 2: 273 - 1: 47786 - -17,-15: - 1: 47786 - 2: 273 + 0: 287 + 3: 4096 + 2: 8192 -16,-14: - 2: 481 - 1: 45072 + 3: 12337 + 2: 450 + -17,-15: + 2: 33045 + 3: 12834 -17,-14: - 2: 481 - 1: 45072 + 2: 361 + 3: 45200 -17,-13: - 1: 43690 + 3: 43690 2: 4369 -15,-16: - 2: 4607 - 1: 8192 + 2: 15 + 0: 57344 -15,-15: - 2: 273 - 1: 12834 + 0: 239 + 2: 4096 -15,-14: - 1: 12304 - 2: 481 - -15,-17: - 2: 12288 + 2: 1 + 0: 61120 -14,-16: - 2: 255 + 2: 63 + 0: 53248 + -14,-15: + 0: 3295 + 2: 4096 -14,-14: - 2: 2425 - 1: 128 + 0: 57308 -13,-16: - 2: 13175 - -13,-17: - 2: 28672 + 2: 33843 + 0: 4096 + -13,-15: + 0: 22387 -20,-4: 2: 52428 -20,-5: @@ -10656,118 +12585,135 @@ entities: 2: 40944 -18,-5: 2: 1113 - -19,-12: - 2: 61164 - -19,-13: - 2: 52292 - -18,-12: - 2: 36848 - -19,-16: - 2: 52462 - -19,-17: + -21,-16: + 2: 52460 + -21,-17: 2: 57344 - -19,-15: + -21,-15: 2: 52428 - -19,-14: + -21,-14: 2: 52428 - -18,-16: - 2: 63 - 1: 32768 - -18,-14: + -21,-13: + 2: 50252 + -21,-12: + 2: 61164 + -20,-16: + 2: 159 + 3: 32768 + -20,-14: 2: 722 - 1: 32800 - -18,-17: + 3: 32800 + -20,-17: 2: 32768 + -19,-16: + 2: 4607 + 3: 40960 + -20,-15: + 3: 34952 + -19,-15: + 2: 273 + 3: 47786 + -19,-14: + 3: 45072 + 2: 481 + -20,-13: + 3: 34952 + -19,-13: + 2: 4369 + 3: 43690 + -19,-17: + 2: 45056 + -19,-12: + 2: 49137 + -18,-16: + 2: 4607 + 3: 40960 -18,-15: - 1: 34952 + 2: 273 + 3: 47786 + -18,-14: + 3: 45072 + 2: 481 -18,-13: - 1: 34952 + 2: 4369 + 3: 43690 + -18,-17: + 2: 45056 + -18,-12: + 2: 49073 -17,-17: 2: 45056 - 0,-4: - 0: 57582 - 0,-5: - 0: 61166 1,-4: - 0: 28927 - 1: 32768 - 1,-3: - 0: 13104 - 2: 2184 + 0: 1136 + 2: 57344 1,-2: - 0: 12339 - 1: 32904 + 0: 61440 + 3: 238 1,-1: - 0: 13107 - 1: 136 - 2: 32768 - 1,0: - 0: 3 - 2: 264 - 1: 3712 + 0: 65535 1,-5: - 0: 20206 + 0: 65535 + 1,-3: + 2: 226 + 3: 57344 + 1,0: + 0: 15 + 2: 18176 2,-4: - 0: 52383 - 1: 4096 + 0: 119 + 2: 28672 2,-3: - 2: 273 - 1: 17920 - 0: 12 + 2: 25173 2,-2: - 1: 4241 - 2: 17476 - 0: 34816 + 0: 61440 + 2: 236 2,-1: - 1: 81 - 2: 29700 + 0: 32631 + 2,-5: + 0: 65535 2,0: - 2: 1 - 1: 50 - 0: 24576 + 0: 15 + 3: 30464 3,-4: - 0: 63263 + 0: 4090 3,-3: - 0: 30479 - 3,-1: - 1: 4369 - 0: 52428 + 0: 43963 3,-2: - 0: 52960 + 2: 16 + 0: 21952 + 3,-1: + 0: 4016 + 3,-5: + 0: 16383 3,0: - 1: 4353 - 0: 52428 + 0: 52445 + 2: 4352 4,-4: - 0: 15279 + 0: 8157 4,-3: - 0: 56831 + 0: 56797 4,-2: - 0: 62804 + 0: 61919 4,-1: - 0: 4607 - 2: 16384 + 0: 37759 1,-8: 0: 61694 1,-7: 0: 36622 1,-6: - 0: 35771 + 0: 3003 2,-8: 0: 65278 2,-7: 0: 65518 2,-6: - 0: 4095 - 2,-5: - 0: 4095 + 0: 12287 2,-9: 0: 61182 3,-8: 0: 65535 3,-6: - 0: 20476 - 3,-5: - 0: 2047 + 0: 4092 3,-9: 0: 65308 3,-7: @@ -10777,19 +12723,19 @@ entities: 4,-7: 0: 56792 4,-6: - 0: 53240 + 0: 61432 4,-5: - 0: 29113 + 0: 33720 1,-12: - 0: 65039 + 0: 64799 1,-11: - 0: 3824 + 0: 7665 1,-10: - 0: 61694 + 0: 61949 1,-9: 0: 3824 1,-13: - 0: 65308 + 0: 65519 2,-12: 0: 65263 2,-11: @@ -10797,7 +12743,7 @@ entities: 2,-10: 0: 65278 2,-13: - 0: 65487 + 0: 65519 3,-12: 0: 62702 3,-11: @@ -10806,106 +12752,106 @@ entities: 0: 61164 3,-13: 0: 57582 - 4,-12: - 0: 62702 4,-11: - 0: 62207 + 0: 65263 4,-10: 0: 65535 4,-9: 0: 16175 - 0,-14: - 2: 29184 - 1,-14: - 0: 51336 + 0,-16: + 2: 43520 1,-16: - 0: 3200 + 2: 45056 1,-15: + 0: 65248 + 1,-14: + 0: 65294 + 2,-16: + 0: 61183 + 2,-15: + 0: 65262 + 2,-14: + 0: 65518 + 2,-17: + 0: 61167 + 3,-16: + 0: 58589 + 3,-15: + 0: 61422 + 3,-17: + 0: 20736 + 3,-14: + 0: 3814 + 4,-15: + 0: 62941 + 1,-19: + 0: 2240 + 1,-17: + 0: 12 + 2: 2048 + 1,-18: 0: 32768 2: 136 - 1,-17: + 1,-20: 2: 34816 - 0: 8 - 2,-16: - 0: 61420 - 2,-15: - 0: 65260 - 2,-14: - 0: 65535 - 2,-17: - 0: 52430 - 3,-16: - 0: 4369 - 3,-15: - 0: 60432 - 2: 12 - 3,-14: - 0: 4046 - 3,-17: - 0: 4369 - 4,-15: - 2: 1 - 0: 62924 - 4,-14: - 0: 43683 - 1,-18: - 0: 49152 - 2: 128 - 2,-18: - 0: 65164 2,-19: - 2: 708 - 0: 34816 - 2,-20: - 2: 17484 + 0: 61182 2,-21: - 2: 32113 - 3,-20: - 2: 4369 - 3,-19: - 2: 529 - 3,-18: - 0: 4353 - 2: 50368 + 2: 24302 + 2,-20: + 0: 20196 + 2,-18: + 0: 61166 3,-21: - 2: 32124 + 2: 39167 + 3,-18: + 2: 58600 + 3,-20: + 2: 34952 + 4,-20: + 2: 4112 + 3,-19: + 2: 34952 + 4,-19: + 2: 4112 4,-18: 2: 62960 1,1: - 1: 17 + 3: 16657 2: 1028 1,2: 0: 65280 - 1: 4 + 3: 4 2: 8 1,3: 0: 14207 1,4: 0: 65535 2,1: - 0: 2039 + 3: 32775 + 2: 31488 2,2: - 2: 9 + 2: 1 0: 65280 + 3: 2 2,3: 0: 49359 2: 256 2,4: 0: 65535 + 3,1: + 2: 17 + 0: 52416 3,2: - 2: 1 0: 65484 3,3: 0: 63679 - 3,1: - 0: 52460 3,4: 0: 64985 4,0: - 0: 4369 - 2: 16384 + 0: 56797 4,1: - 0: 65489 + 0: 65529 4,2: 0: 7965 4,3: @@ -10927,71 +12873,68 @@ entities: 3,5: 0: 65503 3,6: - 0: 61951 - 3,7: - 0: 15 - 2: 32768 - 4,5: - 0: 13104 - 2: 32776 - 4,6: - 0: 4147 - 1: 24576 - 4,7: - 0: 1 - 2: 47752 - 1: 17510 - 3,8: - 2: 136 - 4,8: - 1: 239 - 2: 16 - 5,-4: - 0: 49663 - 5,-2: - 2: 16 - 0: 61576 - 5,-1: - 0: 61695 - 5,-3: - 0: 61166 - 5,0: 0: 30719 - 5,-5: - 0: 51643 - 6,-4: - 0: 7408 - 6,-3: + 3,7: + 0: 32775 + 2: 17408 + 3,8: + 2: 36452 + 0: 136 + 4,4: + 0: 47568 + 4,5: + 0: 16369 + 4,6: 0: 13107 - 2: 2056 + 2: 8 + 4,7: + 0: 13175 + 2: 16512 + 4,8: + 0: 307 + 2: 16068 + 5,-4: + 0: 44987 + 5,-3: + 0: 48051 + 5,-2: + 0: 61627 + 5,-1: + 0: 29567 + 5,-5: + 0: 47291 + 5,0: + 0: 30583 + 6,-4: + 0: 65520 + 6,-3: + 0: 65520 6,-2: - 0: 61440 - 2: 64 + 0: 61695 6,-1: - 0: 45567 + 0: 63711 6,0: - 0: 48059 + 0: 65535 6,-5: 0: 61152 7,-4: 0: 61180 7,-2: - 0: 64716 - 2: 17 + 0: 56558 7,-1: - 0: 47359 + 0: 56543 7,-5: 0: 56828 7,-3: - 0: 52974 + 0: 60652 7,0: - 0: 49083 + 0: 56797 8,-4: 0: 56797 8,-3: 0: 7645 8,-2: - 0: 45943 + 0: 45499 8,-1: 0: 15291 5,-8: @@ -11002,7 +12945,7 @@ entities: 5,-6: 0: 65523 5,-9: - 0: 7975 + 0: 7974 6,-8: 0: 35067 2: 4096 @@ -11027,14 +12970,16 @@ entities: 0: 65520 8,-5: 0: 56793 + 4,-12: + 0: 58606 4,-13: 0: 61154 5,-12: - 0: 59579 + 0: 24763 5,-11: - 0: 56559 + 0: 63238 5,-10: - 0: 30493 + 0: 30215 5,-13: 0: 48056 6,-12: @@ -11064,6 +13009,8 @@ entities: 0: 61430 8,-9: 0: 60636 + 4,-14: + 0: 43682 5,-15: 0: 62054 5,-14: @@ -11089,6 +13036,8 @@ entities: 0: 3838 8,-13: 2: 36906 + 4,-21: + 2: 4112 5,-18: 2: 62974 5,-19: @@ -11101,7 +13050,7 @@ entities: 2: 51200 7,-20: 2: 65530 - 1: 4 + 3: 4 7,-19: 2: 17487 7,-18: @@ -11112,32 +13061,30 @@ entities: 2: 29456 8,-19: 2: 2255 - 5,2: - 0: 62382 - 5,3: - 0: 15251 5,1: - 0: 10914 + 0: 65522 + 5,2: + 0: 57130 + 5,3: + 0: 48031 6,1: - 0: 8120 + 0: 65464 6,2: - 0: 64287 + 0: 64271 6,3: - 0: 441 + 0: 62395 + 5,4: + 0: 65464 6,4: - 1: 769 - 2: 25600 - 0: 2048 + 0: 26191 7,1: - 0: 35723 + 0: 65535 7,2: 0: 49039 7,3: - 0: 35003 - 1: 8192 + 0: 47291 7,4: - 1: 2 - 0: 49032 + 0: 49083 8,0: 0: 49083 8,1: @@ -11145,57 +13092,33 @@ entities: 8,2: 0: 29627 8,3: - 0: 30583 - 4,4: - 1: 640 + 0: 30711 5,5: - 2: 64591 + 0: 61424 5,7: - 2: 12288 - 5,4: - 1: 25600 - 5,8: - 1: 1 - 2: 50 + 0: 16 6,5: - 2: 3879 - 1: 128 - 7,5: - 1: 32 - 0: 59528 - 7,6: - 0: 61166 - 7,7: - 0: 34958 - 2: 512 - 8,4: - 0: 13107 - 2: 2176 - 8,5: - 0: 29491 - 2: 128 - 8,6: - 0: 62327 - 8,7: - 0: 29683 - 7,8: - 0: 34952 - 7,10: - 2: 4096 - 0: 36040 - 7,9: - 2: 8192 - 0: 34952 - 7,11: + 0: 36848 + 6,6: 2: 2 - 0: 136 - 8,8: - 0: 62327 - 8,9: - 0: 13299 - 2: 32768 - 8,10: - 0: 10099 + 0: 34952 + 6,7: + 0: 140 + 7,5: + 0: 40952 + 7,6: + 0: 221 + 2: 24576 + 7,7: + 0: 1 + 2: 2 + 8,4: + 0: 65523 + 8,5: + 0: 4369 + 8,6: + 0: 3327 + 2: 4096 9,-4: 0: 30583 9,-3: @@ -11306,7 +13229,7 @@ entities: 12,-10: 0: 64989 12,-9: - 0: 47901 + 0: 16157 8,-15: 2: 1634 9,-14: @@ -11327,7 +13250,7 @@ entities: 10,-14: 0: 57297 10,-17: - 1: 34816 + 3: 34816 2: 576 11,-16: 0: 65520 @@ -11338,7 +13261,7 @@ entities: 11,-13: 0: 127 11,-17: - 1: 62208 + 3: 62208 2: 3104 12,-16: 0: 56712 @@ -11350,9 +13273,9 @@ entities: 0: 47935 9,-19: 2: 62736 - 1: 2082 + 3: 2082 9,-20: - 1: 64 + 3: 64 9,-18: 2: 2126 10,-20: @@ -11360,40 +13283,40 @@ entities: 10,-18: 2: 25862 11,-20: - 1: 13056 + 3: 13056 2: 50304 11,-19: - 1: 30583 + 3: 30583 2: 8 11,-18: - 1: 375 + 3: 375 2: 17920 11,-21: 2: 6481 - 1: 140 + 3: 140 12,-20: - 1: 13104 + 3: 13104 12,-19: 2: 5633 - 1: 16418 + 3: 16418 12,-18: 2: 17425 - 1: 8192 + 3: 8192 9,1: 0: 8083 9,2: - 0: 45431 + 0: 45943 9,3: - 0: 11 - 1: 8448 + 0: 65339 10,1: 0: 9010 2: 2176 10,2: 0: 56575 10,3: - 0: 13 - 2: 1792 + 0: 57101 + 9,4: + 0: 65528 11,0: 0: 32624 11,1: @@ -11402,42 +13325,44 @@ entities: 11,2: 0: 65535 11,3: - 0: 15 - 2: 19456 - 11,4: - 2: 4084 + 0: 271 12,0: 2: 51393 0: 768 - 1: 1024 + 3: 1024 12,1: 2: 49665 12,2: 0: 30577 12,3: 0: 7 - 2: 34816 - 9,4: - 2: 3856 - 9,5: - 2: 272 + 2: 17408 9,6: - 0: 4096 - 9,7: - 0: 16 + 0: 119 + 2: 8192 + 9,5: + 0: 28398 10,4: - 2: 4080 + 0: 62256 + 2: 128 + 10,5: + 0: 511 + 2: 49152 + 10,6: + 2: 3 + 11,4: + 2: 80 + 0: 61440 + 11,5: + 0: 44799 + 11,6: + 0: 170 12,4: - 2: 4092 - 8,11: - 0: 34 - 9,8: - 0: 4096 - 9,9: - 0: 16 - 2: 4096 - 9,10: - 2: 1 + 0: 61440 + 2: 68 + 12,5: + 0: 241 + 2: 24576 12,-1: 2: 4 13,-4: @@ -11452,18 +13377,18 @@ entities: 14,-5: 0: 12336 14,-1: - 1: 43690 + 3: 43690 2: 17476 14,0: - 1: 1038 + 3: 1038 2: 19264 15,-2: 2: 20478 15,-1: - 1: 43690 + 3: 43690 2: 17476 15,0: - 1: 1038 + 3: 1038 2: 19264 16,-2: 2: 20478 @@ -11475,8 +13400,8 @@ entities: 13,-6: 0: 65523 13,-9: - 0: 4353 2: 16388 + 0: 257 14,-7: 0: 12336 14,-6: @@ -11496,19 +13421,19 @@ entities: 0: 238 14,-11: 0: 4368 - 1: 19656 + 3: 19656 2: 32768 14,-10: 0: 17 - 1: 2188 + 3: 2188 2: 64 14,-13: 0: 58606 15,-11: - 1: 401 + 3: 401 2: 4710 15,-10: - 1: 48 + 3: 48 2: 3784 15,-12: 2: 8712 @@ -11516,13 +13441,13 @@ entities: 2: 52832 16,-12: 2: 8435 - 1: 35328 + 3: 35328 16,-11: - 1: 10937 + 3: 10937 2: 36864 0: 1024 16,-10: - 1: 383 + 3: 383 2: 2176 12,-17: 0: 34880 @@ -11537,7 +13462,7 @@ entities: 0: 48123 13,-17: 0: 4096 - 1: 16 + 3: 16 2: 230 14,-14: 0: 65535 @@ -11546,12 +13471,12 @@ entities: 0: 8192 14,-17: 2: 4096 - 1: 2 + 3: 2 14,-15: 0: 57890 15,-16: 2: 32775 - 1: 128 + 3: 128 15,-14: 0: 10016 15,-15: @@ -11559,17 +13484,17 @@ entities: 15,-17: 2: 34944 16,-16: - 1: 61104 + 3: 61104 2: 14 16,-15: - 1: 119 + 3: 119 16,-13: - 2: 4096 + 2: 4098 12,-21: 2: 20480 - 1: 8977 + 3: 8977 13,-18: - 1: 8448 + 3: 8448 2: 4096 14,-19: 2: 14540 @@ -11578,23 +13503,23 @@ entities: 14,-20: 2: 60416 15,-20: - 1: 3686 + 3: 3686 15,-19: - 1: 52750 + 3: 52750 2: 8192 15,-18: - 1: 2 + 3: 2 2: 32780 16,-20: - 1: 63235 + 3: 63235 2: 2088 16,-19: - 1: 48031 + 3: 48031 16,-18: - 1: 139 + 3: 139 2: 31744 16,-17: - 1: 48942 + 3: 48942 2: 16384 13,0: 2: 20288 @@ -11602,36 +13527,38 @@ entities: 2: 65280 14,2: 2: 65348 - 1: 10 + 3: 10 14,1: - 1: 43694 + 3: 43694 2: 17472 14,3: 2: 14 15,2: 2: 65348 - 1: 10 + 3: 10 15,1: - 1: 43694 + 3: 43694 2: 17472 15,3: 2: 14 16,0: 2: 19264 - 1: 1038 + 3: 1038 16,2: 2: 65348 - 1: 10 + 3: 10 + 12,6: + 2: 2 16,-1: - 1: 43690 + 3: 43690 2: 17476 17,-2: 2: 20478 17,-1: - 1: 43690 + 3: 43690 2: 17476 17,0: - 1: 1038 + 3: 1038 2: 19264 17,-3: 2: 32768 @@ -11651,7 +13578,7 @@ entities: 2: 4407 18,0: 2: 44456 - 1: 512 + 3: 512 19,0: 2: 13105 19,-2: @@ -11661,85 +13588,85 @@ entities: 20,-2: 2: 311 20,-7: - 1: 24576 + 3: 24576 19,-7: 2: 32768 20,-6: 2: 16912 - 1: 36078 + 3: 36078 19,-6: 2: 200 20,-5: 2: 784 - 1: 60552 + 3: 60552 20,-4: - 1: 70 + 3: 70 21,-6: - 1: 18367 + 3: 18367 2: 2048 21,-5: - 1: 55735 + 3: 55735 2: 8 21,-8: 2: 546 - 1: 34952 + 3: 34952 21,-7: - 1: 34958 + 3: 34958 2: 512 21,-4: - 1: 31612 + 3: 31612 21,-9: - 1: 36352 + 3: 36352 2: 231 22,-8: - 1: 57339 + 3: 57339 2: 4 22,-7: - 1: 4271 + 3: 4271 2: 57600 22,-6: - 1: 60493 + 3: 60493 2: 16 22,-5: 2: 1 - 1: 65534 + 3: 65534 22,-9: - 1: 40908 + 3: 40908 2: 16434 22,-4: - 1: 15031 + 3: 15031 2: 8 23,-8: - 1: 60943 + 3: 60943 23,-7: 2: 13056 - 1: 52462 + 3: 52462 23,-6: - 1: 1615 + 3: 1615 23,-5: - 1: 887 + 3: 887 2: 12288 23,-9: - 1: 60943 + 3: 60943 23,-4: - 1: 4 + 3: 4 2: 336 24,-8: - 1: 4353 + 3: 4353 24,-7: - 1: 4369 + 3: 4369 24,-6: - 1: 273 + 3: 273 16,1: - 1: 43694 + 3: 43694 2: 17472 16,3: 2: 14 17,2: 2: 65348 - 1: 10 + 3: 10 17,1: - 1: 43694 + 3: 43694 2: 17472 17,3: 2: 14 @@ -11756,74 +13683,118 @@ entities: 19,3: 2: 3 24,-9: - 1: 12545 + 3: 12545 + 4,-24: + 2: 13107 + 4,-25: + 2: 4096 + 3,-24: + 2: 224 + 3: 12567 + 4,-23: + 2: 4915 + 3,-23: + 3: 4415 + 2: 34816 4,-22: - 2: 61440 - 4,-21: - 2: 497 - 5,-21: - 2: 1 + 2: 4369 + 3,-22: + 2: 35016 + 3: 1 8,-21: 2: 4352 17,-12: - 1: 53248 + 3: 53248 2: 11980 17,-11: - 1: 40129 + 3: 40129 2: 24588 17,-10: 2: 199 17,-13: 2: 17476 18,-12: - 1: 61426 + 3: 61426 2: 4096 18,-11: - 1: 30591 + 3: 30591 18,-10: 2: 112 18,-13: 2: 51336 19,-12: - 1: 65520 + 3: 65520 19,-11: - 1: 32766 + 3: 32766 2: 32768 19,-13: 2: 4096 19,-10: - 1: 2 + 3: 2 20,-12: - 1: 4352 + 3: 4352 2: 8940 20,-11: - 1: 32784 + 3: 32784 2: 14790 11,-23: - 1: 49152 + 3: 49152 11,-22: - 1: 34956 + 3: 34956 2: 1088 12,-23: - 1: 4096 + 3: 4096 12,-22: - 1: 273 + 3: 273 + -4,-24: + 3: 238 + 2: 19456 + -4,-25: + 3: 57344 + -4,-23: + 2: 52292 -4,-22: - 2: 28672 - -5,-22: - 2: 32768 - -4,-21: - 2: 3196 - -5,-21: - 2: 132 - -1,-21: - 2: 505 + 2: 52428 + -3,-24: + 2: 487 + 3: 63000 + -3,-23: + 3: 50287 + 2: 4096 + -3,-25: + 2: 11840 + 3: 16384 + 0: 32768 + -3,-22: + 3: 4 + 2: 34816 + -2,-24: + 3: 49147 + -2,-23: + 3: 49416 + 2: 13024 + -2,-22: + 2: 13106 + 3: 68 + -1,-24: + 3: 65535 + -1,-23: + 2: 248 + 3: 39426 -1,-22: - 2: 63488 + 2: 48 + 3: 32968 + -1,-25: + 3: 7492 + 2: 178 + 0,-24: + 3: 30481 + 2: 35054 + 0,-23: + 2: 58 + 3: 57284 0,-22: - 2: 36608 - 0,-21: - 2: 143 + 3: 29439 -16,8: 2: 204 -16,7: @@ -11836,7 +13807,7 @@ entities: 2: 127 -14,7: 2: 61986 - 1: 85 + 3: 85 -3,9: 2: 18 -16,2: @@ -11851,63 +13822,82 @@ entities: 2: 65315 -15,2: 2: 61713 - 1: 2048 + 3: 2048 -15,3: 2: 61713 - 1: 2056 + 3: 2056 -15,4: 2: 61713 - 1: 2056 + 3: 2056 -14,1: 2: 65280 -14,2: - 1: 36608 + 3: 36608 2: 28672 -14,3: - 1: 36623 + 3: 36623 2: 28672 -14,4: - 1: 36623 + 3: 36623 2: 28672 + 0,-21: + 3: 2 + 0,-25: + 2: 43679 + 3: 256 + 1,-24: + 2: 547 + 3: 44236 + 0: 16384 + 1,-23: + 3: 52696 1,-22: - 2: 28672 - 1,-21: - 2: 3196 + 2: 96 + 1,-25: + 2: 8449 + 3: 50772 + 2,-24: + 3: 61438 + 2,-23: + 3: 32552 + 2,-22: + 3: 231 + 2: 60928 24,-10: - 1: 4096 + 3: 4096 23,-10: 2: 52851 - 1: 12288 + 3: 12288 -16,5: 2: 52364 -16,6: 2: 34956 -15,5: 2: 46353 - 1: 16392 + 3: 16392 -15,6: 2: 4373 -14,5: - 1: 8207 + 3: 8207 2: 53760 -14,6: - 1: 21872 + 3: 21872 2: 8706 -13,6: - 1: 21872 + 3: 21872 2: 8706 20,-13: 2: 12850 20,-10: 2: 35879 - 1: 8 + 3: 8 21,-12: 2: 52851 21,-11: 2: 264 - 1: 4096 + 3: 4096 21,-10: - 1: 1 + 3: 1 2: 29124 22,-12: 2: 4096 @@ -11918,32 +13908,34 @@ entities: 23,-11: 2: 4096 15,-21: - 1: 2048 + 3: 2048 16,-21: - 1: 48058 + 3: 48058 + 16,-14: + 2: 2 17,-16: 2: 1 - 1: 65534 + 3: 65534 17,-15: - 1: 34021 + 3: 34021 2: 25360 17,-17: - 1: 65505 + 3: 65505 17,-14: 2: 17612 18,-16: - 1: 30583 + 3: 30583 18,-15: - 1: 41968 + 3: 41968 2: 20480 18,-14: 2: 35226 18,-17: - 1: 30578 + 3: 30578 19,-16: 2: 4352 19,-15: - 1: 16 + 3: 16 0: 4096 2: 25088 19,-14: @@ -11951,39 +13943,57 @@ entities: 20,-14: 2: 12816 17,-20: - 1: 49037 + 3: 49037 17,-18: 2: 28464 - 1: 6 + 3: 6 17,-21: - 1: 54545 + 3: 54545 17,-19: - 1: 8418 + 3: 8418 2: 52736 18,-20: - 1: 30513 + 3: 30513 18,-19: - 1: 56784 + 3: 56784 18,-18: 2: 1999 - 1: 28672 + 3: 28672 19,-19: - 1: 4352 + 3: 4352 19,-18: 2: 4097 19,-17: 2: 256 16,-22: - 1: 32768 + 3: 32768 17,-22: - 1: 4096 + 3: 4096 20,-3: 2: 60544 21,-3: 2: 256 - 1: 14 + 3: 14 22,-3: - 1: 1 + 3: 1 + -2,-25: + 2: 640 + -1,-26: + 2: 24576 + 0,-26: + 2: 52352 + 1,-26: + 2: 4672 + 3: 19456 + 2,-26: + 3: 17152 + 2: 35856 + 2,-25: + 2: 3328 + 3,-25: + 2: 768 + -20,-12: + 2: 36848 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -12001,10 +14011,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 235 moles: - - 0 - - 0 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -12031,10 +14041,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -12094,47 +14104,36 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap -- proto: ActionToggleInternals +- proto: AcousticGuitarInstrument entities: - - uid: 5122 + - uid: 10313 components: - type: Transform - parent: 5121 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5121 - - uid: 11282 + pos: -9.451197,-24.49092 + parent: 2 + - uid: 12113 components: - type: Transform - parent: 11111 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 11111 - - uid: 11300 - components: - - type: Transform - parent: 11126 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 11126 -- proto: ActionToggleJetpack + pos: -58.50044,23.5087 + parent: 2 +- proto: ActionToggleBlock entities: - - uid: 11276 + - uid: 5100 components: - type: Transform - parent: 11111 + parent: 8291 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 11111 - - uid: 11298 - components: - - type: Transform - parent: 11126 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 11126 + container: 8291 - proto: ActionToggleLight entities: + - uid: 121 + components: + - type: Transform + parent: 88 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 88 - uid: 494 components: - type: Transform @@ -12149,6 +14148,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 5765 + - uid: 4147 + components: + - type: Transform + parent: 4105 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4105 - uid: 5704 components: - type: Transform @@ -12163,13 +14169,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 5977 - - uid: 6747 + - uid: 6113 components: - type: Transform - parent: 18616 + parent: 6098 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 18616 + container: 6098 - uid: 7271 components: - type: Transform @@ -12191,20 +14197,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 10091 - - uid: 14387 + - uid: 13295 components: - type: Transform - parent: 6167 + parent: 15782 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 6167 - - uid: 14544 - components: - - type: Transform - parent: 6188 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6188 + container: 15782 - uid: 19551 components: - type: Transform @@ -12237,22 +14236,6 @@ entities: - 13651 - 13649 - 13666 - - uid: 38 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 2 - - type: DeviceList - devices: - - 15273 - - 15274 - - 15275 - - 14183 - - 14193 - - 14184 - - 15233 - - 15234 - - 15235 - uid: 58 components: - type: Transform @@ -12261,9 +14244,9 @@ entities: parent: 2 - type: DeviceList devices: - - 15149 - - 15148 - - 1722 + - 16318 + - 16319 + - 16320 - 15151 - 15152 - 15153 @@ -12304,36 +14287,6 @@ entities: - 14325 - 14473 - 1921 - - uid: 2080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-55.5 - parent: 2 - - type: DeviceList - devices: - - 8449 - - 8214 - - uid: 2352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 16263 - - 6941 - - 670 - - 16247 - - 16243 - - 16242 - - 16246 - - 16262 - - 10416 - - 2394 - - 10415 - - 3639 - uid: 2395 components: - type: Transform @@ -12348,21 +14301,34 @@ entities: - 15210 - 15209 - 15208 - - uid: 2564 + - uid: 2583 components: - type: Transform - pos: -33.5,-28.5 + rot: 3.141592653589793 rad + pos: 3.5,-54.5 parent: 2 - type: DeviceList devices: - - 14781 - - 14782 - - 15381 - - 15380 - - 15340 - - 15341 - - 15344 - - 15343 + - 6272 + - 12184 + - 3486 + - 8014 + - 15007 + - 10963 + - 6529 + - 3721 + - 11007 + - 1537 + - 1533 + - 15192 + - 15193 + - 15194 + - 10579 + - 8188 + - 5039 + - 11142 + - 11143 + - 11140 - uid: 2670 components: - type: Transform @@ -12388,21 +14354,10 @@ entities: - 680 - 12654 - 11556 - - uid: 3053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-38.5 - parent: 2 - - type: DeviceList - devices: - - 9507 - - 9514 - - 9521 - - 9508 - - 15142 - uid: 3489 components: + - type: MetaData + name: CE - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-24.5 @@ -12411,28 +14366,35 @@ entities: devices: - 8787 - 8468 - - uid: 4428 + - uid: 3722 components: - type: Transform - pos: 30.5,-32.5 + pos: -0.5,-54.5 parent: 2 - type: DeviceList devices: - - 8498 - - 7976 - - 7482 - - 9525 - - 8146 - - uid: 5138 + - 21068 + - 21067 + - 21076 + - 11155 + - 21069 + - uid: 5030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,9.5 + rot: 1.5707963267948966 rad + pos: -9.5,-66.5 parent: 2 - type: DeviceList devices: - - 14159 - - 14158 + - 5823 + - 21134 + - 4689 + - 20834 + - 11274 + - 21081 + - 10579 + - 11140 + - 8188 - uid: 5565 components: - type: Transform @@ -12451,17 +14413,64 @@ entities: devices: - 14619 - 14622 - - uid: 7123 + - uid: 7178 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-14.5 + pos: 8.5,-43.5 parent: 2 - type: DeviceList devices: - - 13355 - - 13361 - - 4359 + - 15201 + - 15200 + - 15199 + - 13411 + - 13410 + - 13412 + - 15879 + - 15912 + - 7925 + - 21424 + - 21423 + - 21420 + - 21421 + - 21422 + - 21425 + - 8008 + - 8119 + - 5945 + - 15192 + - 15193 + - 15194 + - uid: 7632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 10520 + - 13243 + - 13680 + - 151 + - 14089 + - uid: 7931 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 16128 + - 16137 + - 16129 + - 4961 + - 5024 + - 4976 + - 16318 + - 16319 + - 16320 - uid: 8606 components: - type: Transform @@ -12481,29 +14490,172 @@ entities: - 19001 - 14382 - 14368 + - uid: 8983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 8498 + - 7976 + - 7482 + - 9525 + - 8146 + - 9311 + - uid: 9147 + components: + - type: MetaData + name: Clinic air alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 21808 + - 21800 + - 21801 + - 21856 + - uid: 9278 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 588 + - 592 + - uid: 9309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 4976 + - 5024 + - 4961 + - 6558 + - 8436 + - 8446 + - 16164 + - 16180 + - 16165 + - 16178 + - 16179 + - 16166 + - 16260 + - 16256 + - 16267 + - uid: 9393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-62.5 + parent: 2 + - type: DeviceList + devices: + - 21080 + - 11243 + - 8410 + - 11604 + - 10573 + - 11007 + - 1537 + - 1533 + - 21135 - uid: 9652 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,7.5 parent: 2 - - uid: 12728 + - uid: 10102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-29.5 + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 parent: 2 - type: DeviceList devices: - - 1882 - - 1909 - - 8505 - - 8500 - - 4143 - - 8069 - - 8070 - - 8075 - - 8056 + - 4519 + - 4559 + - 2011 + - 14651 + - 14650 + - 14706 + - 19008 + - 19006 + - 15672 + - 14711 + - 14712 + - 14710 + - 15301 + - 15302 + - uid: 10105 + components: + - type: MetaData + name: Janitor air alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 21816 + - 21855 + - 21854 + - 21853 + - uid: 11632 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 2173 + - 2176 + - 9861 + - 6545 + - uid: 11724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 16263 + - 6941 + - 16247 + - 16243 + - 16242 + - 16246 + - 16262 + - 10416 + - 2394 + - 10103 + - 7420 + - uid: 12518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-74.5 + parent: 2 + - type: DeviceList + devices: + - 16307 + - 16310 + - 16309 + - 16271 + - 16304 + - 16302 + - 8446 + - 8436 + - 6558 - uid: 13089 components: - type: Transform @@ -12603,7 +14755,6 @@ entities: - 13525 - 13526 - 12378 - - 13703 - 15209 - 15208 - 15206 @@ -12630,34 +14781,6 @@ entities: - 15429 - 15430 - 4410 - - uid: 13650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 2 - - type: DeviceList - devices: - - 15200 - - 15199 - - 13411 - - 13410 - - 13412 - - 15201 - - 15192 - - 15193 - - 15194 - - 15203 - - 15204 - - 13 - - 15860 - - 3932 - - 15908 - - 15912 - - 15879 - - 2991 - - 6890 - - 2397 - uid: 13652 components: - type: Transform @@ -12727,26 +14850,6 @@ entities: devices: - 11354 - 4246 - - uid: 13662 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 2 - - type: DeviceList - devices: - - 13407 - - 13409 - - 13408 - - 15199 - - 15200 - - 15201 - - 15192 - - 15193 - - 15194 - - 15203 - - 15204 - - 9450 - - 9438 - uid: 13665 components: - type: Transform @@ -12777,19 +14880,6 @@ entities: - 1003 - 1021 - 1017 - - uid: 13683 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 2 - - type: DeviceList - devices: - - 13679 - - 13681 - - 13680 - - 13076 - - 2791 - - 13077 - uid: 13793 components: - type: Transform @@ -12798,13 +14888,14 @@ entities: parent: 2 - type: DeviceList devices: - - 1800 - - 2413 - - 2082 - - 15397 - - 15398 + - 3014 + - 9627 + - 4902 + - 3025 + - 2540 - 15395 - 15396 + - 2516 - uid: 13796 components: - type: Transform @@ -12814,27 +14905,10 @@ entities: devices: - 1585 - 1569 - - 13797 - 15395 - 15396 - 15394 - 15393 - - uid: 13798 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 20738 - - 17886 - - 17885 - - 15301 - - 15302 - - 15324 - - 15323 - - 19984 - - 19983 - uid: 13800 components: - type: Transform @@ -12844,24 +14918,6 @@ entities: devices: - 131 - 4794 - - uid: 13805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 13804 - - uid: 13806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 2 - - type: DeviceList - devices: - - 13803 - uid: 13810 components: - type: Transform @@ -12873,6 +14929,8 @@ entities: - 13811 - uid: 13846 components: + - type: MetaData + name: Hydroponics Air Alarm - type: Transform pos: -16.5,-31.5 parent: 2 @@ -12890,25 +14948,6 @@ entities: - 13822 - 13823 - 13833 - - uid: 13903 - components: - - type: Transform - pos: -30.5,-42.5 - parent: 2 - - uid: 13972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-41.5 - parent: 2 - - type: DeviceList - devices: - - 13971 - - 13970 - - 13973 - - 15149 - - 15148 - - 1722 - uid: 14004 components: - type: Transform @@ -12922,6 +14961,9 @@ entities: - 15626 - 15638 - 15639 + - 4456 + - 5609 + - 5596 - uid: 14019 components: - type: Transform @@ -12937,6 +14979,8 @@ entities: - 15625 - uid: 14047 components: + - type: MetaData + name: HoP's Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-46.5 @@ -12949,15 +14993,6 @@ entities: - 15143 - 15639 - 2693 - - uid: 14059 - components: - - type: Transform - pos: 28.5,5.5 - parent: 2 - - type: DeviceList - devices: - - 14057 - - 14058 - uid: 14085 components: - type: Transform @@ -12966,50 +15001,45 @@ entities: parent: 2 - type: DeviceList devices: - - 15232 - - 15231 - - 15230 - - 15240 - - 15241 - - 15242 - - 14136 - - 1263 - - 14095 - - 11498 - - 3667 - - 12434 - - uid: 14163 + - 2919 + - 2321 + - 3985 + - 765 + - 9458 + - 9373 + - 22073 + - 9457 + - 22072 + - 10396 + - 10457 + - 10397 + - 9161 + - 22074 + - 580 + - 2342 + - 1720 + - 2520 + - 21855 + - 21854 + - 21853 + - uid: 14210 components: + - type: MetaData + name: Chemistry Air Alarm - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-34.5 + rot: 3.141592653589793 rad + pos: -31.5,-38.5 parent: 2 - type: DeviceList devices: - - 8168 - - 14446 - - uid: 14167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 4052 - - 14162 - - 4653 - - 4360 - - 1276 - - uid: 14169 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 13215 + - 12430 + - 10202 + - 15910 - 13781 + - 15920 + - 12170 + - 12169 + - 14275 - uid: 14595 components: - type: Transform @@ -13035,164 +15065,58 @@ entities: devices: - 14709 - 14671 - - uid: 14765 + - uid: 14795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-36.5 + pos: -0.5,-42.5 parent: 2 - type: DeviceList devices: - - 14748 - - 3066 - - 14749 - - 14764 - - 14750 - - 14747 - - 2966 - - 15343 - - 15348 - - 15349 - - uid: 14783 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 2 - - type: DeviceList - devices: - - 7496 - - 7490 - - 15340 - - 15341 - - 15344 - - uid: 14851 - components: - - type: Transform - pos: -42.5,-28.5 - parent: 2 - - type: DeviceList - devices: - - 312 - - 12508 - - 6391 - - 2528 - - 2542 - - 14850 - - 8135 - - 8137 - - uid: 14939 - components: - - type: Transform - pos: -39.5,-39.5 - parent: 2 - - type: DeviceList - devices: - - 14835 - - 14935 - - 14871 - - 1327 - - 1328 - - 1329 - - uid: 14940 + - 14983 + - 14984 + - 1809 + - 20277 + - 15168 + - 15169 + - 15170 + - 15166 + - 20173 + - 15860 + - 20393 + - 6322 + - uid: 14915 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-26.5 + pos: -46.5,-33.5 parent: 2 - type: DeviceList devices: - - 14944 - - 14950 - - 2746 - - 14951 - - 14952 - - 15380 - - 15381 - - 15382 - - uid: 14953 - components: - - type: Transform - pos: -47.5,-41.5 - parent: 2 - - type: DeviceList - devices: - - 14933 - - 14937 - - 14934 - - 14938 - - 14955 - - 14956 - - uid: 14957 + - 7662 + - 14055 + - 14054 + - 14057 + - 14058 + - 14059 + - 14063 + - 7655 + - 14931 + - 14941 + - uid: 14943 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-49.5 + pos: 22.5,20.5 parent: 2 - type: DeviceList devices: - - 14921 - - 14936 - - uid: 14980 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - type: DeviceList - devices: - - 14979 - - 14978 - - 15008 - - 15009 - - 15010 - - 15007 - - 15192 - - 15193 - - 15194 - - 15156 - - 15155 - - 15154 - - uid: 15037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-54.5 - parent: 2 - - type: DeviceList - devices: - - 15184 - - 15185 - - uid: 15050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-65.5 - parent: 2 - - type: DeviceList - devices: - - 15048 - - 15044 - - 15045 - - 15046 - - 15049 - - 15047 - - 15186 - - 15187 - - uid: 15074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-65.5 - parent: 2 - - type: DeviceList - devices: - - 15069 - - 15073 - - 15070 - - 15068 - - 15072 - - 15071 - - 15184 - - 15185 + - 21847 + - 11233 + - 13236 + - 13367 + - 22345 + - 22358 + - 22381 - uid: 15139 components: - type: Transform @@ -13200,7 +15124,6 @@ entities: parent: 2 - type: DeviceList devices: - - 15075 - 15170 - 15169 - 15168 @@ -13209,27 +15132,10 @@ entities: - 15118 - 15112 - 15116 - - 1695 - 15165 - 15164 - 15150 - - 15154 - - 15155 - - 15156 - 17575 - - uid: 15188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-56.5 - parent: 2 - - type: DeviceList - devices: - - 15186 - - 15187 - - 13370 - - 25 - - 13371 - uid: 15205 components: - type: Transform @@ -13239,27 +15145,17 @@ entities: - type: DeviceList devices: - 9455 - - 9454 - - uid: 15260 + - 22225 + - uid: 15287 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,30.5 + pos: -30.5,-60.5 parent: 2 - type: DeviceList devices: - - 15256 - - 15245 - - 15250 - - 15259 - - 15258 - - 15257 - - 15242 - - 15241 - - 15240 - - 15243 - - 15255 - - 15249 + - 15269 + - 15279 - uid: 15331 components: - type: Transform @@ -13268,33 +15164,21 @@ entities: parent: 2 - type: DeviceList devices: - - 15325 - - 15326 - - 15327 - - 14732 - - 15333 - - 15339 - - 14378 - - 14381 - - 14524 - - uid: 15332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-35.5 - parent: 2 - - type: DeviceList - devices: - - 15348 - - 15349 - 14730 - 14727 - 13433 - - 15337 - - 15338 - - 15153 - - 15152 - 15151 + - 15152 + - 15153 + - 15338 + - 15337 + - 2011 + - 4559 + - 4519 + - 14524 + - 14381 + - 14378 + - 15911 - uid: 15421 components: - type: Transform @@ -13306,49 +15190,131 @@ entities: - 2282 - 2642 - 1580 - - 13724 - - 13725 - - 13723 - - 15230 - - 15231 - - 15232 - - uid: 15422 + - 666 + - 9497 + - 9131 + - 2919 + - 2321 + - 3985 + - uid: 15862 components: - type: Transform - pos: 21.5,-1.5 + pos: -41.5,-26.5 parent: 2 - type: DeviceList devices: - - 13213 - - 13788 - - 13212 - - 15233 - - 15234 - - 15235 - - 15237 - - 15238 - - 15232 - - 15231 - - 15230 - - 13004 - - 15269 - - 12388 - - uid: 15673 + - 14931 + - 14941 + - 14947 + - 14948 + - 14945 + - 14946 + - 15868 + - 14867 + - 14868 + - 12415 + - 12421 + - 15867 + - uid: 15869 components: - type: Transform - pos: -19.5,-17.5 + rot: -1.5707963267948966 rad + pos: -41.5,-24.5 parent: 2 - type: DeviceList devices: - - 14710 - - 14712 - - 14711 - - 8854 - - 19003 - - 15574 - - 15325 - - 15326 - - 15327 + - 14884 + - 15870 + - 14885 + - 14887 + - 14886 + - uid: 15875 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 14902 + - 14900 + - uid: 15894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 15876 + - 3378 + - 3375 + - 6581 + - 3376 + - 15933 + - 15934 + - 15936 + - uid: 15937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 14381 + - 14727 + - 14951 + - 14952 + - 14950 + - 14949 + - 15936 + - 15934 + - 15933 + - 15910 + - 13781 + - 15920 + - 9406 + - 15911 + - 9381 + - uid: 16062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 12398 + - 12397 + - 14947 + - 14948 + - 14949 + - 14950 + - 14951 + - 14952 + - 14945 + - 14946 + - uid: 16096 + components: + - type: MetaData + name: Cryogenics Air Alarm + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 12519 + - 16097 + - uid: 16098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-47.5 + parent: 2 + - type: DeviceList + devices: + - 14130 + - 14144 - uid: 16446 components: - type: Transform @@ -13433,21 +15399,6 @@ entities: - 17359 - 17368 - 115 - - uid: 17353 - components: - - type: Transform - pos: 14.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 5421 - - 12056 - - 17424 - - 12246 - - 17393 - - 390 - - 5348 - - 5420 - uid: 17445 components: - type: Transform @@ -13471,26 +15422,6 @@ entities: - 15165 - 15164 - 17582 - - uid: 17658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - - type: DeviceList - devices: - - 14706 - - 14650 - - 14651 - - 19008 - - 19006 - - 15672 - - 15574 - - 8854 - - 19003 - - 15302 - - 15323 - - 15324 - uid: 18900 components: - type: Transform @@ -13505,26 +15436,6 @@ entities: - 14675 - 3201 - 14468 - - uid: 18978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-52.5 - parent: 2 - - type: DeviceList - devices: - - 227 - - 15146 - - 15147 - - 13900 - - 13901 - - 13850 - - 13820 - - 13851 - - 13852 - - 13853 - - 13854 - - 15145 - uid: 19009 components: - type: Transform @@ -13551,13 +15462,144 @@ entities: devices: - 4869 - 4911 -- proto: AirAlarmAssembly - entities: - - uid: 2321 + - uid: 21678 components: - type: Transform - pos: 11.5,-10.5 + pos: 15.5,26.5 parent: 2 + - type: DeviceList + devices: + - 22322 + - 22332 + - 22331 + - 13236 + - 13367 + - 17424 + - 12246 + - 5420 + - 12056 + - 5421 + - 21848 + - 22327 + - 22041 + - uid: 22071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 13850 + - 22070 + - 7862 + - 15273 + - 15274 + - 15275 + - 10396 + - 10457 + - 10397 + - uid: 22255 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 22231 + - 22232 + - 22230 + - 22234 + - 22233 + - 22252 + - 22251 + - 22253 + - 22259 + - 22258 + - 22270 + - 22254 + - uid: 22432 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 22431 + - 22437 + - 22436 + - 21360 + - 167 + - 21817 + - 8966 + - uid: 22438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 21817 + - 8966 + - 2342 + - 1720 + - 2520 + - 21907 + - 18410 + - 18412 + - 22392 + - 22410 + - 22395 + - 22387 + - 22388 + - 22389 + - uid: 22439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 22454 + - 22451 + - 22450 + - 22440 + - 22441 + - 22455 + - 18412 + - 18410 + - 21907 + - 21360 + - 167 + - 17823 + - 5591 + - 5597 + - uid: 22510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 14159 + - 14158 + - uid: 22600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-52.5 + parent: 2 + - type: DeviceList + devices: + - 22578 + - 22579 + - 22597 + - 22598 + - 22596 + - 22599 - proto: AirCanister entities: - uid: 790 @@ -13570,58 +15612,78 @@ entities: - type: Transform pos: -11.5,-1.5 parent: 2 - - uid: 3175 + - uid: 7156 components: - type: Transform - pos: 2.5,-14.5 - parent: 2 - - uid: 3180 - components: - - type: Transform - pos: 19.5,-8.5 + pos: 27.5,15.5 parent: 2 - uid: 7239 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 10702 + - uid: 8516 components: - type: Transform - pos: -41.5,-55.5 + pos: -34.5,-16.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + pos: 29.5,-6.5 parent: 2 - uid: 14315 components: - type: Transform pos: 25.5,-54.5 parent: 2 - - uid: 17967 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 2 - uid: 19874 components: - type: Transform pos: 48.5,-54.5 parent: 2 + - uid: 21184 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 21861 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 - proto: Airlock entities: - - uid: 237 - components: - - type: Transform - pos: 8.5,-42.5 - parent: 2 - - uid: 267 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 2 - uid: 5908 components: - type: Transform pos: 8.5,-38.5 parent: 2 + - uid: 6966 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: 11.5,-89.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: 7.5,-91.5 + parent: 2 - proto: AirlockArmoryGlassLocked entities: - uid: 5379 @@ -13629,6 +15691,20 @@ entities: - type: Transform pos: -23.5,-4.5 parent: 2 +- proto: AirlockAssemblyCargoGlass + entities: + - uid: 19235 + components: + - type: Transform + pos: -5.5,-93.5 + parent: 2 +- proto: AirlockAssemblyCommand + entities: + - uid: 6383 + components: + - type: Transform + pos: 1.5,-85.5 + parent: 2 - proto: AirlockAssemblyMedicalGlass entities: - uid: 2365 @@ -13690,6 +15766,18 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 6672 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 - proto: AirlockBarGlassLocked entities: - uid: 8369 @@ -13699,10 +15787,15 @@ entities: parent: 2 - proto: AirlockBarLocked entities: - - uid: 20416 + - uid: 371 components: - type: Transform - pos: -0.5,-44.5 + pos: 0.5,-44.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 3.5,-44.5 parent: 2 - proto: AirlockCaptainLocked entities: @@ -13721,6 +15814,34 @@ entities: - type: Transform pos: -25.5,-53.5 parent: 2 +- proto: AirlockCargoGlass + entities: + - uid: 15048 + components: + - type: Transform + pos: 8.5,-93.5 + parent: 2 + - uid: 15059 + components: + - type: Transform + pos: 8.5,-94.5 + parent: 2 + - uid: 19207 + components: + - type: Transform + pos: 6.5,-97.5 + parent: 2 + - uid: 19224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-96.5 + parent: 2 + - uid: 19256 + components: + - type: Transform + pos: 6.5,-100.5 + parent: 2 - proto: AirlockCargoGlassLocked entities: - uid: 365 @@ -13779,16 +15900,23 @@ entities: parent: 2 - proto: AirlockChemistryGlassLocked entities: - - uid: 4856 + - uid: 22304 components: - type: Transform - pos: -29.5,-32.5 + rot: -1.5707963267948966 rad + pos: -40.5,-37.5 parent: 2 - - uid: 4882 +- proto: AirlockChemistryLocked + entities: + - uid: 12110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-36.5 + pos: -36.5,-36.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + pos: -33.5,-34.5 parent: 2 - proto: AirlockChiefEngineerLocked entities: @@ -13797,25 +15925,30 @@ entities: - type: Transform pos: -8.5,-23.5 parent: 2 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 12697 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 1385 + - uid: 13125 components: - type: Transform - pos: -41.5,-39.5 + pos: -48.5,-25.5 parent: 2 - - uid: 2032 +- proto: AirlockCommandGlassLocked + entities: + - uid: 5519 components: - type: Transform - pos: -39.5,-33.5 + rot: 3.141592653589793 rad + pos: -25.5,-47.5 parent: 2 - proto: AirlockCommandLocked entities: - - uid: 18 - components: - - type: Transform - pos: -25.5,-47.5 - parent: 2 - uid: 19 components: - type: Transform @@ -13831,30 +15964,20 @@ entities: - type: Transform pos: -20.5,-49.5 parent: 2 - - uid: 3168 + - uid: 2755 components: - type: Transform - pos: -18.5,-14.5 + pos: -35.5,-15.5 parent: 2 - - uid: 5535 + - uid: 5142 components: - type: Transform - pos: 7.5,-20.5 + pos: -35.5,-14.5 parent: 2 - - uid: 6364 + - uid: 5300 components: - type: Transform - pos: 24.5,-1.5 - parent: 2 - - uid: 6676 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 2 - - uid: 6960 - components: - - type: Transform - pos: -22.5,-15.5 + pos: -30.5,-49.5 parent: 2 - uid: 6962 components: @@ -13888,25 +16011,42 @@ entities: - type: Transform pos: 34.5,2.5 parent: 2 +- proto: AirlockEngineering + entities: + - uid: 12754 + components: + - type: Transform + pos: -4.5,-91.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + pos: -8.5,-88.5 + parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 69 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 2 - - uid: 476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 2 - uid: 1267 components: - type: Transform pos: -8.5,-16.5 parent: 2 + - uid: 1525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 - proto: AirlockEngineeringLocked entities: - uid: 100 @@ -13914,6 +16054,17 @@ entities: - type: Transform pos: -11.5,23.5 parent: 2 + - uid: 137 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,14.5 + parent: 2 - uid: 285 components: - type: Transform @@ -13924,16 +16075,17 @@ entities: - type: Transform pos: -14.5,-12.5 parent: 2 - - uid: 429 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 2 - uid: 629 components: - type: Transform pos: -14.5,-11.5 parent: 2 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,17.5 + parent: 2 - uid: 2083 components: - type: Transform @@ -13944,6 +16096,11 @@ entities: - type: Transform pos: -4.5,-16.5 parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 - uid: 3602 components: - type: Transform @@ -13954,40 +16111,45 @@ entities: - type: Transform pos: 2.5,-36.5 parent: 2 + - uid: 4593 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 - uid: 6699 components: - type: Transform pos: -30.5,21.5 parent: 2 + - uid: 6939 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 - uid: 7421 components: - type: Transform pos: 26.5,-51.5 parent: 2 - - uid: 8501 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 2 - uid: 8840 components: - type: Transform pos: 43.5,2.5 parent: 2 - - uid: 9312 + - uid: 10101 components: - type: Transform - pos: 24.5,12.5 + pos: -54.5,-59.5 parent: 2 - - uid: 9625 + - uid: 10238 components: - type: Transform - pos: -36.5,-54.5 + pos: -31.5,-19.5 parent: 2 - - uid: 10397 + - uid: 10486 components: - type: Transform - pos: -42.5,-54.5 + pos: 9.5,-20.5 parent: 2 - uid: 11394 components: @@ -13999,85 +16161,27 @@ entities: - type: Transform pos: -6.5,-20.5 parent: 2 - - uid: 12070 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 2 - uid: 15014 components: - type: Transform pos: -19.5,14.5 parent: 2 - - uid: 16022 - components: - - type: Transform - pos: 36.5,10.5 - parent: 2 - - uid: 17009 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 2 - - uid: 17185 - components: - - type: Transform - pos: -25.5,-19.5 - parent: 2 - proto: AirlockEVAGlassLocked entities: - - uid: 2077 + - uid: 1305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-52.5 + pos: -5.5,-56.5 + parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 16056 + components: + - type: Transform + pos: 4.5,-56.5 parent: 2 - proto: AirlockExternalGlass entities: - - uid: 30 - components: - - type: Transform - pos: -5.5,-68.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6931: - - DoorStatus: DoorBolt - - uid: 31 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6868: - - DoorStatus: DoorBolt - - uid: 61 - components: - - type: Transform - pos: 8.5,-61.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6671: - - DoorStatus: DoorBolt - - uid: 63 - components: - - type: Transform - pos: 8.5,-68.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6544: - - DoorStatus: DoorBolt - uid: 183 components: - type: Transform @@ -14118,17 +16222,40 @@ entities: linkedPorts: 9150: - DoorStatus: DoorBolt - - uid: 397 + - uid: 2544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,12.5 + pos: 60.5,-53.5 parent: 2 - - uid: 1640 + - uid: 12785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-74.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-67.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-67.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-74.5 + parent: 2 + - uid: 21932 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-58.5 + pos: -35.5,12.5 parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: @@ -14155,6 +16282,54 @@ entities: linkedPorts: 1479: - DoorStatus: DoorBolt + - uid: 6101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6419: + - DoorStatus: DoorBolt + - uid: 6419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6101: + - DoorStatus: DoorBolt + - uid: 8772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10382: + - DoorStatus: DoorBolt + - uid: 10382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8772: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 1067 @@ -14169,6 +16344,30 @@ entities: linkedPorts: 12340: - DoorStatus: DoorBolt + - uid: 1722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 22491: + - DoorStatus: InputA + - uid: 1756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 22393: + - DoorStatus: InputB - uid: 2672 components: - type: Transform @@ -14181,56 +16380,37 @@ entities: linkedPorts: 3910: - DoorStatus: DoorBolt - - uid: 3146 + - uid: 20665 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,28.5 + pos: 16.5,26.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 15761: + 22393: - DoorStatus: InputA - - uid: 7343 + - uid: 21849 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,27.5 + pos: 16.5,30.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 15761: - - DoorStatus: InputB - - uid: 8487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,28.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7561: - - DoorStatus: InputA - - uid: 10666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,27.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7561: + 22491: - DoorStatus: InputB - proto: AirlockExternalGlassCommandLocked entities: + - uid: 97 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 - uid: 498 components: - type: Transform @@ -14253,54 +16433,36 @@ entities: linkedPorts: 498: - DoorStatus: DoorBolt - - uid: 5729 + - uid: 5124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 + pos: -36.5,-13.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 14545: - - DoorStatus: DoorBolt - - uid: 14545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-14.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5729: - - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 5815 + - uid: 73 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 + rot: 3.141592653589793 rad + pos: 6.5,-13.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5819: + 4602: - DoorStatus: DoorBolt - - uid: 5819 + - uid: 4602 components: - type: Transform - pos: 3.5,-12.5 + rot: 3.141592653589793 rad + pos: 4.5,-14.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5815: + 73: - DoorStatus: DoorBolt - uid: 8794 components: @@ -14336,27 +16498,29 @@ entities: linkedPorts: 17960: - DoorStatus: DoorBolt - - uid: 10649 + - uid: 16736 components: - type: Transform - pos: -47.5,-54.5 + rot: 1.5707963267948966 rad + pos: -62.5,-59.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10650: + 16892: - DoorStatus: DoorBolt - - uid: 10650 + - uid: 16892 components: - type: Transform - pos: -50.5,-54.5 + rot: 1.5707963267948966 rad + pos: -63.5,-57.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10649: + 16736: - DoorStatus: DoorBolt - uid: 17960 components: @@ -14371,41 +16535,19 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - - uid: 154 + - uid: 294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-70.5 + rot: -1.5707963267948966 rad + pos: 27.5,26.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 456: + 938: - DoorStatus: DoorBolt - - uid: 376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-73.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7030: - - DoorStatus: DoorBolt - - uid: 456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-73.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 154: + 21958: - DoorStatus: DoorBolt - uid: 862 components: @@ -14419,28 +16561,31 @@ entities: linkedPorts: 19896: - DoorStatus: DoorBolt - - uid: 975 + - uid: 938 components: - type: Transform - pos: -37.5,9.5 + rot: -1.5707963267948966 rad + pos: 26.5,28.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 20502: + 21958: - DoorStatus: DoorBolt - - uid: 3520 + 294: + - DoorStatus: DoorBolt + - uid: 3999 components: - type: Transform - pos: -30.5,-66.5 + pos: -35.5,-75.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 18578: - - DoorStatus: InputB + 4672: + - DoorStatus: DoorBolt - uid: 4043 components: - type: Transform @@ -14463,153 +16608,141 @@ entities: linkedPorts: 4043: - DoorStatus: DoorBolt - - uid: 5887 + - uid: 4729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,35.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5892: - - DoorStatus: DoorBolt - - uid: 5888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,29.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5893: - - DoorStatus: DoorBolt - - uid: 5891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,27.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5890: - - DoorStatus: DoorBolt - - uid: 6148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,37.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5894: - - DoorStatus: DoorBolt - - uid: 7030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-70.5 + pos: -35.5,-69.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 376: + 3682: - DoorStatus: DoorBolt - - uid: 7147 + - uid: 4772 components: - type: Transform - pos: 31.5,43.5 + pos: -35.5,-67.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7204: + 3636: - DoorStatus: DoorBolt - - uid: 7155 + - uid: 4773 components: - type: Transform - pos: 33.5,43.5 + pos: -35.5,-77.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4673: + - DoorStatus: DoorBolt + - uid: 5184 + components: + - type: Transform + pos: -34.5,-81.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6115: + - DoorStatus: DoorBolt + - uid: 5764 + components: + - type: Transform + pos: -32.5,-81.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6166: + - DoorStatus: DoorBolt + - uid: 8579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,23.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 7158: + 8851: - DoorStatus: DoorBolt - - uid: 7654 + - uid: 8740 components: - type: Transform - pos: 27.5,18.5 + rot: 3.141592653589793 rad + pos: 47.5,23.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7655: + 21929: - DoorStatus: DoorBolt - - uid: 7655 + - uid: 11974 components: - type: Transform - pos: 30.5,18.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7654: - - DoorStatus: DoorBolt - - uid: 8096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-66.5 + rot: -1.5707963267948966 rad + pos: -34.5,9.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 18578: - - DoorStatus: InputA - - uid: 10047 - components: - - type: Transform - pos: -29.5,-66.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 18578: - - DoorStatus: InputA - - uid: 17704 - components: - - type: Transform - pos: 60.5,-53.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17705: + 22090: - DoorStatus: DoorBolt - - uid: 18576 + - uid: 13406 components: - type: Transform - pos: -33.5,-68.5 + pos: 10.5,-76.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 18575: - - DoorStatus: InputB + 14421: + - DoorStatus: DoorBolt + - uid: 13550 + components: + - type: Transform + pos: -7.5,-76.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14497: + - DoorStatus: DoorBolt + - uid: 14421 + components: + - type: Transform + pos: 10.5,-80.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13406: + - DoorStatus: DoorBolt + - uid: 14497 + components: + - type: Transform + pos: -7.5,-80.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13550: + - DoorStatus: DoorBolt - uid: 19896 components: - type: Transform @@ -14621,75 +16754,81 @@ entities: linkedPorts: 862: - DoorStatus: DoorBolt - - uid: 20502 + - uid: 21863 components: - type: Transform - pos: -34.5,9.5 + rot: 3.141592653589793 rad + pos: 49.5,21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3850: + - DoorStatus: DoorBolt + - uid: 21912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,19.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 975: + 936: + - DoorStatus: DoorBolt + - uid: 21958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,28.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 294: + - DoorStatus: DoorBolt + 938: + - DoorStatus: DoorBolt + - uid: 22090 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11974: - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 6544 + - uid: 12786 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-68.5 + pos: 6.5,-74.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20277: - - DockStatus: InputB - - DockStatus: InputA - - DoorStatus: InputA - - type: DeviceLinkSink - invokeCounter: 3 - - uid: 6671 + - uid: 12792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-61.5 + pos: 6.5,-67.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20221: - - DockStatus: InputB - - DockStatus: InputA - - DoorStatus: InputA - - type: DeviceLinkSink - invokeCounter: 3 - - uid: 6868 + - uid: 12795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-61.5 + pos: -3.5,-74.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20278: - - DoorStatus: InputA - - DockStatus: InputB - - DockStatus: InputA - - type: DeviceLinkSink - invokeCounter: 3 - - uid: 6931 + - uid: 13280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-68.5 + pos: -3.5,-67.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20279: - - DoorStatus: InputA - - DockStatus: InputA - - DockStatus: InputB - - type: DeviceLinkSink - invokeCounter: 3 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 6660 @@ -14750,134 +16889,188 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 20672 + - uid: 22077 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,12.5 + pos: -37.5,12.5 parent: 2 - - uid: 20741 + - uid: 22093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-58.5 + rot: 3.141592653589793 rad + pos: -56.5,-51.5 parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 3498 + - uid: 936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22300: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-67.5 + pos: -37.5,-67.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 18575: - - DoorStatus: InputA - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,27.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12389: + 5120: - DoorStatus: InputA - DockStatus: InputA - DockStatus: InputB - type: DeviceLinkSink invokeCounter: 1 - - uid: 5892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,35.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 618: - - DockStatus: InputB - - DockStatus: InputA - - DoorStatus: InputA - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,29.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 233: - - DockStatus: InputB - - DockStatus: InputA - - DoorStatus: InputA - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 620: - - DockStatus: InputB - - DockStatus: InputA - - DoorStatus: InputA - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 6228 + - uid: 3682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-69.5 + pos: -37.5,-69.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 18575: + 3802: - DoorStatus: InputA - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 7158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,45.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 246: - - DoorStatus: InputA - - DockStatus: InputB - DockStatus: InputA - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 7204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,45.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 624: - - DoorStatus: InputA - DockStatus: InputB - - DockStatus: InputA - type: DeviceLinkSink invokeCounter: 1 - - uid: 10185 + - uid: 3850 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-69.5 + pos: 51.5,21.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 509: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-75.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5252: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-77.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5121: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 5486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5002: + - DoorStatus: InputB + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 6115 + components: + - type: Transform + pos: -34.5,-83.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5127: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6166 + components: + - type: Transform + pos: -32.5,-83.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5123: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22302: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 21929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22301: + - DoorStatus: InputA + - DockStatus: InputB + - DockStatus: InputA + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 21962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - uid: 22009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5002: + - DoorStatus: InputA + - type: DeviceLinkSink + invokeCounter: 2 - proto: AirlockFreezerLocked entities: - uid: 2608 @@ -14897,35 +17090,36 @@ entities: - type: Transform pos: 49.5,-57.5 parent: 2 - - uid: 362 + - uid: 771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-62.5 + pos: 31.5,-5.5 parent: 2 - - uid: 366 + - uid: 772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-46.5 + pos: 32.5,-15.5 parent: 2 - - uid: 394 + - uid: 970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-46.5 + pos: 9.5,-54.5 parent: 2 - - uid: 405 + - uid: 1015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-46.5 + pos: 11.5,-54.5 parent: 2 - uid: 1018 components: - type: Transform pos: -17.5,-1.5 parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 - uid: 1144 components: - type: Transform @@ -14941,11 +17135,10 @@ entities: - type: Transform pos: 14.5,-23.5 parent: 2 - - uid: 2696 + - uid: 2620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-50.5 + pos: 31.5,16.5 parent: 2 - uid: 3024 components: @@ -14953,6 +17146,11 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 + - uid: 3181 + components: + - type: Transform + pos: 9.5,-46.5 + parent: 2 - uid: 3350 components: - type: Transform @@ -14963,11 +17161,6 @@ entities: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 3757 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - uid: 3924 components: - type: Transform @@ -14993,29 +17186,15 @@ entities: - type: Transform pos: -6.5,10.5 parent: 2 - - uid: 5030 + - uid: 5059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-57.5 + pos: 10.5,-46.5 parent: 2 - - uid: 5031 + - uid: 5149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-57.5 - parent: 2 - - uid: 5204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-50.5 - parent: 2 - - uid: 5205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-50.5 + pos: 33.5,16.5 parent: 2 - uid: 5435 components: @@ -15027,6 +17206,11 @@ entities: - type: Transform pos: 45.5,-55.5 parent: 2 + - uid: 5752 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 - uid: 5779 components: - type: Transform @@ -15045,21 +17229,15 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-19.5 parent: 2 - - uid: 5823 + - uid: 5791 components: - type: Transform - pos: 11.5,-50.5 + pos: 16.5,-43.5 parent: 2 - - uid: 5949 + - uid: 7207 components: - type: Transform - pos: 18.5,-45.5 - parent: 2 - - uid: 6540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-62.5 + pos: -7.5,-54.5 parent: 2 - uid: 7248 components: @@ -15069,20 +17247,25 @@ entities: - uid: 7311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-59.5 + pos: -8.5,-54.5 parent: 2 - - uid: 7544 + - uid: 8677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-59.5 + rot: -1.5707963267948966 rad + pos: -33.5,-66.5 parent: 2 - - uid: 8485 + - uid: 8710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-46.5 + rot: -1.5707963267948966 rad + pos: -32.5,-66.5 + parent: 2 + - uid: 8731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-66.5 parent: 2 - uid: 8889 components: @@ -15094,11 +17277,31 @@ entities: - type: Transform pos: 15.5,-27.5 parent: 2 + - uid: 8950 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 - uid: 9152 components: - type: Transform pos: 43.5,-22.5 parent: 2 + - uid: 9320 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 - uid: 9360 components: - type: Transform @@ -15109,27 +17312,15 @@ entities: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 10697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-50.5 - parent: 2 - uid: 10810 components: - type: Transform pos: 14.5,-27.5 parent: 2 - - uid: 11138 + - uid: 11008 components: - type: Transform - pos: 10.5,-50.5 - parent: 2 - - uid: 11173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-46.5 + pos: 11.5,-46.5 parent: 2 - uid: 11194 components: @@ -15137,71 +17328,11 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-21.5 parent: 2 - - uid: 11196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-46.5 - parent: 2 - uid: 11623 components: - type: Transform pos: -16.5,4.5 parent: 2 - - uid: 12334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-1.5 - parent: 2 - - uid: 12335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-1.5 - parent: 2 - - uid: 12336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-1.5 - parent: 2 - - uid: 12337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-4.5 - parent: 2 - - uid: 12338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 2 - - uid: 12339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-2.5 - parent: 2 - - uid: 12345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-21.5 - parent: 2 - - uid: 12346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-21.5 - parent: 2 - - uid: 12347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-21.5 - parent: 2 - uid: 14539 components: - type: Transform @@ -15248,10 +17379,117 @@ entities: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 20629 + - uid: 21434 components: - type: Transform - pos: 32.5,-15.5 + pos: 32.5,-5.5 + parent: 2 + - uid: 22063 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 22065 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 22066 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 22067 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 22068 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 22069 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 22526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 2 + - uid: 22527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 2 + - uid: 22528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 2 + - uid: 22529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-46.5 + parent: 2 + - uid: 22530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-46.5 + parent: 2 + - uid: 22531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-46.5 + parent: 2 + - uid: 22535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-39.5 + parent: 2 + - uid: 22536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 2 + - uid: 22537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 22557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-42.5 + parent: 2 + - uid: 22558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-41.5 + parent: 2 + - uid: 22559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-40.5 parent: 2 - proto: AirlockGlassShuttle entities: @@ -15333,10 +17571,10 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 9382 + - uid: 21364 components: - type: Transform - pos: 30.5,2.5 + pos: 27.5,5.5 parent: 2 - proto: AirlockKitchenGlassLocked entities: @@ -15358,13 +17596,6 @@ entities: - type: Transform pos: -1.5,-34.5 parent: 2 -- proto: AirlockMaintBarLocked - entities: - - uid: 14502 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - proto: AirlockMaintCargoLocked entities: - uid: 1355 @@ -15391,41 +17622,34 @@ entities: parent: 2 - proto: AirlockMaintChemLocked entities: - - uid: 3683 + - uid: 11049 components: - type: Transform - pos: -33.5,-39.5 - parent: 2 -- proto: AirlockMaintChiefEngineerLocked - entities: - - uid: 2556 - components: - - type: Transform - pos: -7.5,-27.5 + pos: -38.5,-39.5 parent: 2 - proto: AirlockMaintCommandLocked entities: - - uid: 194 + - uid: 6747 components: - type: Transform pos: -9.5,-55.5 parent: 2 - - uid: 202 - components: - - type: Transform - pos: 21.5,4.5 - parent: 2 - - uid: 2283 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 - proto: AirlockMaintCommonLocked entities: - - uid: 152 + - uid: 346 components: - type: Transform - pos: -32.5,2.5 + pos: 17.5,-7.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: -32.5,-6.5 parent: 2 - uid: 2398 components: @@ -15457,6 +17681,16 @@ entities: - type: Transform pos: -12.5,-25.5 parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 - uid: 5485 components: - type: Transform @@ -15467,25 +17701,46 @@ entities: - type: Transform pos: 17.5,-51.5 parent: 2 - - uid: 6302 + - uid: 6575 components: - type: Transform - pos: 20.5,-43.5 + pos: 16.5,4.5 parent: 2 - - uid: 9657 + - uid: 6917 components: - type: Transform - pos: -29.5,-40.5 + pos: 21.5,8.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + pos: -18.5,-15.5 parent: 2 - uid: 10143 components: - type: Transform pos: -17.5,11.5 parent: 2 - - uid: 11140 + - uid: 10974 components: - type: Transform - pos: 13.5,-53.5 + pos: -40.5,-20.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + pos: 5.5,-42.5 parent: 2 - uid: 11449 components: @@ -15497,6 +17752,26 @@ entities: - type: Transform pos: 18.5,-57.5 parent: 2 + - uid: 13337 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 13662 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 - uid: 13807 components: - type: Transform @@ -15507,20 +17782,40 @@ entities: - type: Transform pos: 24.5,-57.5 parent: 2 + - uid: 16011 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 - uid: 16200 components: - type: Transform pos: -19.5,24.5 parent: 2 + - uid: 17975 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 - uid: 18979 components: - type: Transform pos: 34.5,6.5 parent: 2 - - uid: 20659 + - uid: 20394 components: - type: Transform - pos: -24.5,20.5 + pos: 12.5,-57.5 + parent: 2 + - uid: 21405 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 21406 + components: + - type: Transform + pos: 5.5,-44.5 parent: 2 - proto: AirlockMaintDetectiveLocked entities: @@ -15529,20 +17824,13 @@ entities: - type: Transform pos: 36.5,5.5 parent: 2 -- proto: AirlockMaintEngiLocked - entities: - - uid: 133 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 2 - proto: AirlockMaintGlassLocked entities: + - uid: 6326 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 - uid: 11447 components: - type: Transform @@ -15564,14 +17852,14 @@ entities: parent: 2 - proto: AirlockMaintJanitorLocked entities: - - uid: 9423 + - uid: 10107 components: - type: Transform - pos: 27.5,5.5 + pos: 27.5,-1.5 parent: 2 - proto: AirlockMaintLawyerLocked entities: - - uid: 6106 + - uid: 2327 components: - type: Transform pos: 26.5,11.5 @@ -15598,36 +17886,16 @@ entities: - type: Transform pos: 23.5,-18.5 parent: 2 - - uid: 2691 - components: - - type: Transform - pos: -31.5,-48.5 - parent: 2 - uid: 3289 components: - type: Transform pos: 45.5,-14.5 parent: 2 - - uid: 3382 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 2 - - uid: 4111 - components: - - type: Transform - pos: 3.5,-46.5 - parent: 2 - uid: 4922 components: - type: Transform pos: 49.5,-36.5 parent: 2 - - uid: 4928 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 2 - uid: 5023 components: - type: Transform @@ -15643,16 +17911,6 @@ entities: - type: Transform pos: 26.5,-55.5 parent: 2 - - uid: 5923 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 2 - - uid: 6029 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 2 - uid: 8358 components: - type: Transform @@ -15668,54 +17926,63 @@ entities: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 11722 + - uid: 10291 components: - type: Transform - pos: -34.5,-58.5 + pos: 29.5,-3.5 parent: 2 - uid: 13374 components: - type: Transform pos: 28.5,-14.5 parent: 2 - - uid: 15750 + - uid: 14170 components: - type: Transform - pos: -37.5,-56.5 - parent: 2 - - uid: 15857 - components: - - type: Transform - pos: 29.5,8.5 + pos: -36.5,-41.5 parent: 2 - uid: 15946 components: - type: Transform pos: 48.5,-27.5 parent: 2 + - uid: 16954 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 22299 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - - uid: 339 + - uid: 1593 components: - type: Transform - pos: -35.5,-40.5 + pos: 21.5,-1.5 parent: 2 - - uid: 8244 + - uid: 3118 components: - type: Transform - pos: -36.5,-44.5 + pos: -34.5,-21.5 parent: 2 - - uid: 9664 + - uid: 10617 components: - type: Transform - pos: -31.5,-42.5 + pos: -42.5,-55.5 parent: 2 -- proto: AirlockMaintQuartermasterLocked - entities: - - uid: 14314 + - uid: 22100 components: - type: Transform - pos: -8.5,20.5 + rot: 1.5707963267948966 rad + pos: 20.5,-1.5 parent: 2 - proto: AirlockMaintRnDLocked entities: @@ -15753,6 +18020,11 @@ entities: - type: Transform pos: -20.5,16.5 parent: 2 + - uid: 2791 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 - proto: AirlockMaintServiceLocked entities: - uid: 3810 @@ -15767,114 +18039,146 @@ entities: parent: 2 - proto: AirlockMedicalGlassLocked entities: - - uid: 68 + - uid: 506 components: - type: Transform - pos: -41.5,-30.5 + rot: 1.5707963267948966 rad + pos: -37.5,-26.5 parent: 2 - - uid: 72 + - uid: 967 components: - type: Transform - pos: -30.5,-27.5 + rot: 1.5707963267948966 rad + pos: -32.5,-31.5 parent: 2 - - uid: 574 + - uid: 1095 components: - type: Transform - pos: -35.5,-28.5 + rot: 1.5707963267948966 rad + pos: -32.5,-32.5 parent: 2 - - uid: 4778 + - uid: 1679 components: - type: Transform - pos: -41.5,-22.5 + rot: 1.5707963267948966 rad + pos: -43.5,-33.5 parent: 2 - - uid: 5477 + - uid: 1781 components: - type: Transform - pos: -36.5,-36.5 + rot: 1.5707963267948966 rad + pos: -32.5,-27.5 parent: 2 - - uid: 5516 + - uid: 2244 components: - type: Transform - pos: -37.5,-36.5 + rot: 1.5707963267948966 rad + pos: -37.5,-27.5 parent: 2 - - uid: 7268 + - uid: 2273 components: - type: Transform - pos: -26.5,-30.5 + rot: 1.5707963267948966 rad + pos: -37.5,-32.5 parent: 2 - - uid: 7983 + - uid: 2287 components: - type: Transform - pos: -43.5,-28.5 + rot: 1.5707963267948966 rad + pos: -37.5,-33.5 parent: 2 - - uid: 8023 + - uid: 2482 components: - type: Transform - pos: -44.5,-28.5 + rot: 1.5707963267948966 rad + pos: -34.5,-25.5 parent: 2 - - uid: 11202 + - uid: 2509 components: - type: Transform - pos: -26.5,-31.5 + rot: 1.5707963267948966 rad + pos: -32.5,-28.5 parent: 2 - - uid: 11203 + - uid: 2901 components: - type: Transform - pos: -26.5,-29.5 + rot: 1.5707963267948966 rad + pos: -32.5,-24.5 parent: 2 - - uid: 12344 + - uid: 2961 components: - type: Transform - pos: -48.5,-30.5 + rot: 1.5707963267948966 rad + pos: -30.5,-23.5 parent: 2 - - uid: 12703 + - uid: 3186 components: - type: Transform - pos: -44.5,-39.5 + rot: 1.5707963267948966 rad + pos: -46.5,-28.5 parent: 2 - - uid: 15141 + - uid: 4119 components: - type: Transform - pos: -36.5,-28.5 + rot: 1.5707963267948966 rad + pos: -46.5,-31.5 parent: 2 - - uid: 15189 + - uid: 9425 components: - type: Transform - pos: -38.5,-36.5 + rot: 1.5707963267948966 rad + pos: 19.5,4.5 parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 1037 + - uid: 6123 components: - type: Transform - pos: -31.5,-21.5 + pos: -35.5,-52.5 parent: 2 - - uid: 1175 + - uid: 10058 components: - type: Transform - pos: -30.5,-24.5 + pos: -43.5,-26.5 parent: 2 - - uid: 1508 + - uid: 10658 components: - type: Transform - pos: -29.5,-43.5 + pos: -25.5,-25.5 parent: 2 - - uid: 17176 + - uid: 12513 components: - type: Transform - pos: -25.5,-23.5 + pos: -46.5,-37.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: -49.5,-37.5 parent: 2 - proto: AirlockMedicalMorgueLocked entities: - - uid: 7154 + - uid: 13390 components: - type: Transform - pos: -41.5,-44.5 + pos: -48.5,-42.5 parent: 2 - - uid: 8239 + - uid: 13881 components: - type: Transform - pos: -39.5,-49.5 + pos: -48.5,-39.5 + parent: 2 +- proto: AirlockMedicalMorgueMaintLocked + entities: + - uid: 13910 + components: + - type: Transform + pos: -45.5,-47.5 parent: 2 - proto: AirlockQuartermasterLocked entities: @@ -15907,6 +18211,26 @@ entities: - type: Transform pos: 13.5,20.5 parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 - uid: 5424 components: - type: Transform @@ -15987,11 +18311,29 @@ entities: - type: Transform pos: -27.5,-4.5 parent: 2 - - uid: 14505 + - uid: 3558 components: - type: Transform - pos: -33.5,-4.5 + rot: 3.141592653589793 rad + pos: -31.5,-4.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10212: + - DoorStatus: DoorBolt + - uid: 10212 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3558: + - DoorStatus: DoorBolt - proto: AirlockSecurityLawyerGlassLocked entities: - uid: 170 @@ -16004,17 +18346,18 @@ entities: - type: Transform pos: -29.5,1.5 parent: 2 - - uid: 7243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,10.5 - parent: 2 - uid: 14812 components: - type: Transform pos: -21.5,-1.5 parent: 2 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 776 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 - proto: AirlockSecurityLocked entities: - uid: 199 @@ -16037,10 +18380,12 @@ entities: - type: Transform pos: -25.5,14.5 parent: 2 - - uid: 20717 +- proto: AirlockServiceGlassLocked + entities: + - uid: 9446 components: - type: Transform - pos: -32.5,-2.5 + pos: 20.5,-36.5 parent: 2 - proto: AirlockTheatreLocked entities: @@ -16076,59 +18421,46 @@ entities: parent: 2 - proto: AirlockVirologyLocked entities: - - uid: 8208 + - uid: 4185 components: - type: Transform - pos: -45.5,-43.5 + rot: -1.5707963267948966 rad + pos: -52.5,-30.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 8215: + 4603: - DoorStatus: DoorBolt - - uid: 8215 + - uid: 4603 components: - type: Transform - pos: -48.5,-43.5 + rot: -1.5707963267948966 rad + pos: -50.5,-30.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 8208: + 4185: - DoorStatus: DoorBolt - - uid: 12622 + - uid: 4653 components: - type: Transform - pos: -50.5,-44.5 + rot: -1.5707963267948966 rad + pos: -56.5,-29.5 parent: 2 - proto: AirSensor entities: - - uid: 25 + - uid: 151 components: - type: Transform - pos: 8.5,-53.5 + pos: -54.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15188 - - uid: 390 - components: - - type: Transform - pos: 14.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17353 - - uid: 670 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2352 + - 7632 - uid: 1005 components: - type: Transform @@ -16153,30 +18485,6 @@ entities: - type: DeviceNetwork deviceLists: - 8606 - - uid: 1263 - components: - - type: Transform - pos: 32.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14085 - - uid: 1276 - components: - - type: Transform - pos: 21.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14167 - - uid: 1329 - components: - - type: Transform - pos: -42.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14939 - uid: 1723 components: - type: Transform @@ -16185,14 +18493,14 @@ entities: - type: DeviceNetwork deviceLists: - 13549 - - uid: 1882 + - uid: 1809 components: - type: Transform - pos: -50.5,-27.5 + pos: -3.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 + - 14795 - uid: 1921 components: - type: Transform @@ -16201,22 +18509,6 @@ entities: - type: DeviceNetwork deviceLists: - 708 - - uid: 2082 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - uid: 2397 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13650 - uid: 2591 components: - type: Transform @@ -16225,46 +18517,30 @@ entities: - type: DeviceNetwork deviceLists: - 13665 - - uid: 2791 + - uid: 3014 components: - type: Transform - pos: 14.5,-18.5 + pos: 2.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13683 - - uid: 2991 + - 13793 + - uid: 4456 components: - type: Transform - pos: 5.5,-38.5 + pos: -29.5,-46.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 - - uid: 4359 + - 14004 + - uid: 6272 components: - type: Transform - pos: -23.5,-16.5 + pos: -7.5,-52.5 parent: 2 - type: DeviceNetwork deviceLists: - - 7123 - - uid: 6391 - components: - - type: Transform - pos: -44.5,-36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14851 - - uid: 6890 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13650 + - 2583 - uid: 6941 components: - type: Transform @@ -16272,23 +18548,44 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2352 - - uid: 8075 + - 11724 + - uid: 7627 components: - type: Transform - pos: -50.5,-33.5 + pos: -59.5,-30.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: -48.5,-30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 - - uid: 8500 + - 14915 + - uid: 7662 components: - type: Transform - pos: -50.5,-30.5 + pos: -50.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 + - 14915 + - uid: 7925 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - uid: 8119 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 - uid: 8993 components: - type: Transform @@ -16297,6 +18594,38 @@ entities: - type: DeviceNetwork deviceLists: - 19009 + - uid: 9311 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8983 + - uid: 9457 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - uid: 9458 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - uid: 9497 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15421 - uid: 9525 components: - type: Transform @@ -16304,7 +18633,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 4428 + - 8983 - uid: 9572 components: - type: Transform @@ -16321,6 +18650,19 @@ entities: - type: DeviceNetwork deviceLists: - 2697 + - uid: 10963 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - uid: 11000 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 - uid: 11185 components: - type: Transform @@ -16345,22 +18687,6 @@ entities: - type: DeviceNetwork deviceLists: - 8606 - - uid: 12434 - components: - - type: Transform - pos: 32.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14085 - - uid: 13004 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - uid: 13013 components: - type: Transform @@ -16382,14 +18708,6 @@ entities: - type: Transform pos: -19.5,-41.5 parent: 2 - - uid: 13409 - components: - - type: Transform - pos: 15.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 - uid: 13410 components: - type: Transform @@ -16397,7 +18715,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7178 - uid: 13418 components: - type: Transform @@ -16491,64 +18809,6 @@ entities: - type: DeviceNetwork deviceLists: - 29 - - uid: 13680 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13683 - - uid: 13703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13640 - - uid: 13725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15421 - - uid: 13788 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - uid: 13797 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13796 - - uid: 13803 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13806 - - uid: 13804 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13805 - uid: 13811 components: - type: Transform @@ -16565,30 +18825,6 @@ entities: - type: DeviceNetwork deviceLists: - 13846 - - uid: 13900 - components: - - type: Transform - pos: -33.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 13901 - components: - - type: Transform - pos: -28.5,-64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 13973 - components: - - type: Transform - pos: -27.5,-44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 - uid: 14048 components: - type: Transform @@ -16597,14 +18833,14 @@ entities: - type: DeviceNetwork deviceLists: - 14047 - - uid: 14193 + - uid: 14275 components: - type: Transform - pos: 15.5,0.5 + pos: -38.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 38 + - 14210 - uid: 14381 components: - type: Transform @@ -16613,6 +18849,7 @@ entities: - type: DeviceNetwork deviceLists: - 15331 + - 15937 - uid: 14597 components: - type: Transform @@ -16628,7 +18865,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17658 + - 10102 - uid: 14675 components: - type: Transform @@ -16644,7 +18881,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15673 + - 10102 - uid: 14727 components: - type: Transform @@ -16653,108 +18890,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 - - uid: 14764 - components: - - type: Transform - pos: -33.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14765 - - uid: 14835 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14939 - - uid: 14850 - components: - - type: Transform - pos: -44.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14851 - - uid: 14952 - components: - - type: Transform - pos: -34.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14940 - - uid: 14955 - components: - - type: Transform - pos: -52.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14953 - - uid: 14956 - components: - - type: Transform - pos: -51.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14953 - - uid: 15009 - components: - - type: Transform - pos: -6.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14980 - - uid: 15010 - components: - - type: Transform - pos: 9.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14980 - - uid: 15048 - components: - - type: Transform - pos: 11.5,-68.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - uid: 15049 - components: - - type: Transform - pos: 11.5,-61.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - uid: 15072 - components: - - type: Transform - pos: -8.5,-61.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15074 - - uid: 15073 - components: - - type: Transform - pos: -8.5,-68.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15074 - - uid: 15100 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 + - 15331 + - 15937 - uid: 15137 components: - type: Transform @@ -16768,30 +18905,87 @@ entities: - type: Transform pos: -3.5,-38.5 parent: 2 - - uid: 15142 + - uid: 15867 components: - type: Transform - pos: 13.5,-37.5 + pos: -42.5,-27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3053 - - uid: 15255 + - 15862 + - uid: 15868 components: - type: Transform - pos: 32.5,28.5 + pos: -42.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15260 - - uid: 15256 + - 15862 + - uid: 15870 components: - type: Transform - pos: 32.5,39.5 + pos: -43.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15260 + - 15869 + - uid: 15876 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15894 + - uid: 15911 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15331 + - 15937 + - uid: 16097 + components: + - type: Transform + pos: -43.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16096 + - uid: 16137 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - uid: 16179 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 + - uid: 16180 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 + - uid: 16256 + components: + - type: Transform + pos: -33.5,-62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 - uid: 16262 components: - type: Transform @@ -16799,7 +18993,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 11724 - uid: 16263 components: - type: Transform @@ -16807,7 +19001,23 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 11724 + - uid: 16304 + components: + - type: Transform + pos: -33.5,-71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - uid: 16310 + components: + - type: Transform + pos: -33.5,-78.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 - uid: 16412 components: - type: Transform @@ -16886,29 +19096,203 @@ entities: - type: Transform pos: -11.5,-14.5 parent: 2 + - uid: 21076 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 13798 -- proto: AirTankFilled - entities: - - uid: 5121 + - 3722 + - uid: 21080 components: - type: Transform - pos: -31.51879,-61.20825 + pos: 10.5,-74.5 parent: 2 - - type: GasTank - toggleActionEntity: 5122 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 5122 - - uid: 8097 + - type: DeviceNetwork + deviceLists: + - 9393 + - uid: 21081 components: - type: Transform - pos: -31.429365,-61.55491 + pos: -7.5,-74.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5030 + - uid: 21134 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5030 + - uid: 21135 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 + - uid: 21424 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - uid: 21425 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - uid: 21808 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9147 + - uid: 22070 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22071 + - uid: 22074 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - uid: 22135 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 22251 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - uid: 22252 + components: + - type: Transform + pos: 22.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - uid: 22253 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - uid: 22254 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - uid: 22322 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 + - uid: 22327 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 + - uid: 22381 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14943 + - uid: 22389 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22438 + - uid: 22410 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22438 + - uid: 22437 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22432 + - uid: 22454 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22439 + - uid: 22455 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22439 + - uid: 22598 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 + - uid: 22599 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 - proto: AltarConvertMaint entities: - uid: 9055 @@ -16979,14 +19363,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,14.5 parent: 2 - - uid: 775 - components: - - type: MetaData - name: QM's Office APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 2 - uid: 1283 components: - type: Transform @@ -17016,12 +19392,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,21.5 parent: 2 - - uid: 1629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 - parent: 2 - uid: 1685 components: - type: MetaData @@ -17029,19 +19399,34 @@ entities: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 1752 - components: - - type: MetaData - name: Medical North West Hall APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-25.5 - parent: 2 - uid: 1802 components: - type: Transform pos: 1.5,-35.5 parent: 2 + - uid: 1873 + components: + - type: MetaData + name: Morgue APC + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-46.5 + parent: 2 + - uid: 1875 + components: + - type: MetaData + name: Maints Shop APC + - type: Transform + pos: -50.5,-51.5 + parent: 2 + - uid: 2118 + components: + - type: MetaData + name: Clinic APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 - uid: 2152 components: - type: MetaData @@ -17078,75 +19463,47 @@ entities: - type: Transform pos: -13.5,-22.5 parent: 2 - - uid: 2907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 2 - - uid: 3321 + - uid: 3753 components: - type: MetaData - name: Morgue APC + name: QM's Room APC - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-49.5 + pos: -8.5,20.5 parent: 2 - - uid: 3375 + - uid: 5086 components: - type: MetaData - name: Cameras APC + name: Vault APC - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 2 - - uid: 4639 - components: - - type: Transform - pos: -42.5,-39.5 - parent: 2 - - uid: 5070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,0.5 + rot: -1.5707963267948966 rad + pos: -27.5,-62.5 parent: 2 - uid: 5105 components: + - type: MetaData + name: Atrium APC - type: Transform rot: 3.141592653589793 rad pos: -18.5,28.5 parent: 2 - - uid: 5254 + - uid: 5923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-57.5 - parent: 2 - - uid: 5404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-5.5 + pos: 15.5,-16.5 parent: 2 - uid: 6237 components: + - type: MetaData + name: Hydroponics APC - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-36.5 parent: 2 - - uid: 6449 + - uid: 6405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-37.5 - parent: 2 - - uid: 6559 - components: - - type: MetaData - name: Telecoms APC - - type: Transform - pos: 23.5,2.5 + rot: 3.141592653589793 rad + pos: 17.5,-57.5 parent: 2 - uid: 6589 components: @@ -17155,14 +19512,6 @@ entities: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 6650 - components: - - type: MetaData - name: Gravity Generator APC - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-12.5 - parent: 2 - uid: 6910 components: - type: MetaData @@ -17170,6 +19519,13 @@ entities: - type: Transform pos: -22.5,-2.5 parent: 2 + - uid: 7149 + components: + - type: MetaData + name: Coffee Hall APC + - type: Transform + pos: 17.5,8.5 + parent: 2 - uid: 7213 components: - type: MetaData @@ -17190,25 +19546,13 @@ entities: - type: Transform pos: 44.5,-55.5 parent: 2 - - uid: 7877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,39.5 - parent: 2 - - uid: 7878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,20.5 - parent: 2 - - uid: 8315 + - uid: 7499 components: - type: MetaData - name: AI Chute Station-side APC + name: CMO APC - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 + rot: 1.5707963267948966 rad + pos: -51.5,-21.5 parent: 2 - uid: 8638 components: @@ -17221,19 +19565,23 @@ entities: - uid: 8782 components: - type: MetaData - name: North East Solars APC + name: Solars - North East APC - type: Transform rot: 3.141592653589793 rad pos: 44.5,0.5 parent: 2 - uid: 8965 components: + - type: MetaData + name: Perma APC - type: Transform rot: 1.5707963267948966 rad pos: -34.5,6.5 parent: 2 - uid: 9734 components: + - type: MetaData + name: Bridge West APC - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-54.5 @@ -17268,26 +19616,6 @@ entities: - type: Transform pos: -20.5,-45.5 parent: 2 - - uid: 10088 - components: - - type: MetaData - name: Janitorial APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 2 - - uid: 10089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 2 - - uid: 10102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,6.5 - parent: 2 - uid: 10247 components: - type: MetaData @@ -17301,10 +19629,11 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-19.5 parent: 2 - - uid: 10506 + - uid: 10762 components: - type: Transform - pos: -44.5,-52.5 + rot: 1.5707963267948966 rad + pos: 29.5,-4.5 parent: 2 - uid: 10933 components: @@ -17314,11 +19643,10 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-47.5 parent: 2 - - uid: 11051 + - uid: 11213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-37.5 + pos: -30.5,1.5 parent: 2 - uid: 11350 components: @@ -17344,12 +19672,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-27.5 parent: 2 - - uid: 11579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-38.5 - parent: 2 - uid: 11675 components: - type: MetaData @@ -17378,30 +19700,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-14.5 parent: 2 - - uid: 11892 - components: - - type: Transform - pos: 18.5,-41.5 - parent: 2 - - uid: 11992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 2 - - uid: 12009 - components: - - type: MetaData - name: Outside Vault APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,0.5 - parent: 2 - - uid: 12126 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 2 - uid: 12258 components: - type: Transform @@ -17414,76 +19712,45 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-37.5 parent: 2 + - uid: 12348 + components: + - type: MetaData + name: ' Solars - South West APC' + - type: Transform + pos: -58.5,-57.5 + parent: 2 - uid: 12425 components: - type: Transform pos: 36.5,-39.5 parent: 2 - - uid: 12439 + - uid: 12479 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 13216 components: - type: MetaData - name: Medical Medbay APC + name: Mail APC + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 13248 + components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-25.5 + pos: 28.5,-6.5 parent: 2 - - uid: 12558 + - uid: 13355 components: - type: Transform - pos: -33.5,-42.5 + pos: -31.5,-23.5 parent: 2 - - uid: 12559 + - uid: 13851 components: - - type: MetaData - name: Virology APC - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-44.5 - parent: 2 - - uid: 12675 - components: - - type: MetaData - name: Medical Entrance APC - - type: Transform - pos: -32.5,-28.5 - parent: 2 - - uid: 12723 - components: - - type: MetaData - name: Arrivals West APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-64.5 - parent: 2 - - uid: 12769 - components: - - type: MetaData - name: Arrivals East APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-64.5 - parent: 2 - - uid: 12859 - components: - - type: MetaData - name: Shuttle Building APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-56.5 - parent: 2 - - uid: 12937 - components: - - type: MetaData - name: Hall Outside Bridge APC - - type: Transform - pos: -26.5,-39.5 - parent: 2 - - uid: 13176 - components: - - type: MetaData - name: Vault APC - - type: Transform - pos: 11.5,6.5 + pos: 25.5,-2.5 parent: 2 - uid: 14587 components: @@ -17524,6 +19791,27 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 + - uid: 16324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-42.5 + parent: 2 + - uid: 16346 + components: + - type: MetaData + name: Chemistry West APC + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 16393 + components: + - type: MetaData + name: Psychologist APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-55.5 + parent: 2 - uid: 16488 components: - type: Transform @@ -17541,6 +19829,14 @@ entities: - type: Transform pos: -66.5,-11.5 parent: 2 + - uid: 16624 + components: + - type: MetaData + name: Docking Arm South APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-70.5 + parent: 2 - uid: 17056 components: - type: MetaData @@ -17548,6 +19844,24 @@ entities: - type: Transform pos: 27.5,-32.5 parent: 2 + - uid: 17108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-35.5 + parent: 2 + - uid: 17540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-26.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 2 - uid: 17872 components: - type: Transform @@ -17556,6 +19870,8 @@ entities: parent: 2 - uid: 17971 components: + - type: MetaData + name: Solars North West APC - type: Transform rot: 3.141592653589793 rad pos: -31.5,21.5 @@ -17574,6 +19890,11 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-52.5 parent: 2 + - uid: 18889 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 - uid: 18943 components: - type: Transform @@ -17585,6 +19906,98 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,4.5 parent: 2 + - uid: 19151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-69.5 + parent: 2 + - uid: 19216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-71.5 + parent: 2 + - uid: 20201 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 20406 + components: + - type: MetaData + name: Chemistry East APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-37.5 + parent: 2 + - uid: 20578 + components: + - type: MetaData + name: Medbay APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-29.5 + parent: 2 + - uid: 21006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-58.5 + parent: 2 + - uid: 21007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-49.5 + parent: 2 + - uid: 21911 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 22079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + - uid: 22280 + components: + - type: MetaData + name: Library APC + - type: Transform + pos: 21.5,-42.5 + parent: 2 + - uid: 22290 + components: + - type: MetaData + name: Janitor APC + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 22508 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 22539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-34.5 + parent: 2 + - uid: 22603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-12.5 + parent: 2 - proto: APCElectronics entities: - uid: 2246 @@ -17592,11 +20005,6 @@ entities: - type: Transform pos: -4.6457157,-23.489979 parent: 2 - - uid: 5149 - components: - - type: Transform - pos: 11.251795,-11.754389 - parent: 2 - uid: 16601 components: - type: Transform @@ -17618,41 +20026,41 @@ entities: parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 5659 + - uid: 21887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-57.5 + rot: -1.5707963267948966 rad + pos: 8.5,-61.5 parent: 2 - - uid: 7979 + - uid: 22168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-66.5 + rot: -1.5707963267948966 rad + pos: -5.5,-61.5 parent: 2 - - uid: 8003 + - uid: 22169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-66.5 + rot: -1.5707963267948966 rad + pos: 8.5,-72.5 parent: 2 - - uid: 8004 + - uid: 22171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-59.5 + rot: -1.5707963267948966 rad + pos: -5.5,-72.5 parent: 2 - - uid: 8005 + - uid: 22172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-50.5 + rot: -1.5707963267948966 rad + pos: -5.5,-54.5 parent: 2 - - uid: 8007 + - uid: 22173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-50.5 + rot: -1.5707963267948966 rad + pos: 8.5,-54.5 parent: 2 - proto: ArtistCircuitBoard entities: @@ -17668,6 +20076,11 @@ entities: - type: Transform pos: -14.697546,15.752759 parent: 2 + - uid: 856 + components: + - type: Transform + pos: -27.473076,-46.23464 + parent: 2 - uid: 5611 components: - type: Transform @@ -17700,11 +20113,6 @@ entities: - type: Transform pos: -3.5428128,-42.34056 parent: 2 - - uid: 18984 - components: - - type: Transform - pos: 7.738307,-51.330593 - parent: 2 - uid: 18985 components: - type: Transform @@ -17719,61 +20127,11 @@ entities: parent: 2 - proto: AsteroidRock entities: - - uid: 506 - components: - - type: Transform - pos: 26.5,15.5 - parent: 2 - - uid: 651 - components: - - type: Transform - pos: 10.5,1.5 - parent: 2 - - uid: 701 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 702 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 724 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 773 - components: - - type: Transform - pos: 6.5,7.5 - parent: 2 - uid: 830 components: - type: Transform pos: 5.5,8.5 parent: 2 - - uid: 835 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - uid: 846 - components: - - type: Transform - pos: 6.5,3.5 - parent: 2 - - uid: 866 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 867 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - uid: 877 components: - type: Transform @@ -17804,11 +20162,6 @@ entities: - type: Transform pos: -12.5,4.5 parent: 2 - - uid: 1302 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - uid: 1304 components: - type: Transform @@ -17819,16 +20172,6 @@ entities: - type: Transform pos: 4.5,8.5 parent: 2 - - uid: 1476 - components: - - type: Transform - pos: 4.5,7.5 - parent: 2 - - uid: 1477 - components: - - type: Transform - pos: 5.5,7.5 - parent: 2 - uid: 1478 components: - type: Transform @@ -17839,184 +20182,33 @@ entities: - type: Transform pos: -9.5,3.5 parent: 2 - - uid: 1561 + - uid: 4052 components: - type: Transform - pos: 11.5,0.5 + pos: 12.5,8.5 parent: 2 - - uid: 2273 + - uid: 4065 components: - type: Transform - pos: 18.5,18.5 + pos: 11.5,8.5 parent: 2 - - uid: 2830 + - uid: 9682 components: - type: Transform - pos: 18.5,17.5 + pos: 12.5,7.5 parent: 2 - - uid: 3869 + - uid: 9684 components: - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 4991 - components: - - type: Transform - pos: 28.5,16.5 - parent: 2 - - uid: 5846 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - uid: 5847 - components: - - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 5883 - components: - - type: Transform - pos: 27.5,16.5 - parent: 2 - - uid: 7272 - components: - - type: Transform - pos: 36.5,16.5 - parent: 2 - - uid: 7617 - components: - - type: Transform - pos: 25.5,17.5 - parent: 2 - - uid: 7632 - components: - - type: Transform - pos: 24.5,17.5 - parent: 2 - - uid: 7635 - components: - - type: Transform - pos: 37.5,14.5 - parent: 2 - - uid: 7636 - components: - - type: Transform - pos: 38.5,14.5 - parent: 2 - - uid: 7645 - components: - - type: Transform - pos: 28.5,15.5 - parent: 2 - - uid: 17562 - components: - - type: Transform - pos: 22.5,17.5 - parent: 2 - - uid: 17607 - components: - - type: Transform - pos: 23.5,18.5 - parent: 2 - - uid: 17608 - components: - - type: Transform - pos: 23.5,17.5 - parent: 2 - - uid: 18201 - components: - - type: Transform - pos: 28.5,21.5 - parent: 2 - - uid: 20637 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - uid: 20646 - components: - - type: Transform - pos: 19.5,18.5 - parent: 2 - - uid: 20647 - components: - - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 20649 - components: - - type: Transform - pos: 21.5,18.5 - parent: 2 -- proto: AsteroidRockArtifactFragment - entities: - - uid: 334 - components: - - type: Transform - pos: 23.5,16.5 - parent: 2 - - uid: 371 - components: - - type: Transform - pos: 25.5,16.5 - parent: 2 -- proto: AsteroidRockMining - entities: - - uid: 105 - components: - - type: Transform - pos: 27.5,15.5 - parent: 2 - - uid: 218 - components: - - type: Transform - pos: 21.5,17.5 - parent: 2 - - uid: 406 - components: - - type: Transform - pos: 36.5,15.5 - parent: 2 - - uid: 20639 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 20644 - components: - - type: Transform - pos: 17.5,19.5 - parent: 2 - - uid: 20645 - components: - - type: Transform - pos: 19.5,19.5 - parent: 2 - - uid: 20648 - components: - - type: Transform - pos: 20.5,18.5 + pos: 10.5,8.5 parent: 2 - proto: AtmosDeviceFanDirectional entities: - - uid: 219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-58.5 - parent: 2 - - uid: 783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 2 - - uid: 1033 + - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,29.5 + pos: -3.5,-67.5 parent: 2 - uid: 3002 components: @@ -18030,48 +20222,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-16.5 parent: 2 - - uid: 4185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,29.5 - parent: 2 - - uid: 4208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,45.5 - parent: 2 - - uid: 4259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-61.5 - parent: 2 - - uid: 4627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,35.5 - parent: 2 - - uid: 4754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,37.5 - parent: 2 - - uid: 5486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 2 - - uid: 7028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,29.5 - parent: 2 - uid: 7774 components: - type: Transform @@ -18084,11 +20234,23 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-31.5 parent: 2 - - uid: 9937 + - uid: 13368 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-68.5 + pos: -3.5,-74.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-67.5 + parent: 2 + - uid: 16010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-74.5 parent: 2 - uid: 16101 components: @@ -18096,55 +20258,47 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-18.5 parent: 2 - - uid: 17527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,29.5 - parent: 2 - - uid: 18590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-68.5 - parent: 2 - uid: 18670 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-24.5 parent: 2 - - uid: 20168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-61.5 - parent: 2 - - uid: 20283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,27.5 - parent: 2 - - uid: 20284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,45.5 - parent: 2 - uid: 20391 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-53.5 parent: 2 + - uid: 21943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,12.5 + parent: 2 + - uid: 21945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-51.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: + - uid: 147 + components: + - type: Transform + pos: -56.5,-38.5 + parent: 2 - uid: 149 components: - type: Transform pos: -10.5,3.5 parent: 2 + - uid: 159 + components: + - type: Transform + pos: 0.5,-88.5 + parent: 2 - uid: 192 components: - type: Transform @@ -18155,6 +20309,11 @@ entities: - type: Transform pos: -48.5,-16.5 parent: 2 + - uid: 246 + components: + - type: Transform + pos: -54.5,-38.5 + parent: 2 - uid: 364 components: - type: Transform @@ -18165,11 +20324,6 @@ entities: - type: Transform pos: -46.5,-5.5 parent: 2 - - uid: 550 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 - uid: 586 components: - type: Transform @@ -18225,15 +20379,20 @@ entities: - type: Transform pos: 63.5,7.5 parent: 2 - - uid: 840 + - uid: 867 components: - type: Transform - pos: 12.5,-2.5 + pos: 10.5,4.5 parent: 2 - - uid: 1070 + - uid: 901 components: - type: Transform - pos: 21.5,19.5 + pos: 9.5,3.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 9.5,4.5 parent: 2 - uid: 1171 components: @@ -18255,16 +20414,26 @@ entities: - type: Transform pos: 59.5,-41.5 parent: 2 - - uid: 1520 + - uid: 1583 components: - type: Transform - pos: 9.5,-9.5 + pos: 10.5,2.5 parent: 2 - uid: 1657 components: - type: Transform pos: -44.5,-4.5 parent: 2 + - uid: 1772 + components: + - type: Transform + pos: -55.5,-37.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: -58.5,-38.5 + parent: 2 - uid: 1871 components: - type: Transform @@ -18305,16 +20474,6 @@ entities: - type: Transform pos: -49.5,-16.5 parent: 2 - - uid: 2970 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 2974 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - uid: 2987 components: - type: Transform @@ -18360,11 +20519,6 @@ entities: - type: Transform pos: 57.5,-0.5 parent: 2 - - uid: 3472 - components: - - type: Transform - pos: 22.5,18.5 - parent: 2 - uid: 3537 components: - type: Transform @@ -18405,15 +20559,30 @@ entities: - type: Transform pos: 57.5,-2.5 parent: 2 - - uid: 5219 + - uid: 4054 components: - type: Transform - pos: 10.5,-8.5 + pos: 6.5,7.5 parent: 2 - - uid: 5220 + - uid: 4821 components: - type: Transform - pos: 10.5,-9.5 + pos: 10.5,3.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: -61.5,-39.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -61.5,-36.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: 11.5,-89.5 parent: 2 - uid: 5271 components: @@ -18480,10 +20649,625 @@ entities: - type: Transform pos: 67.5,-43.5 parent: 2 - - uid: 6109 + - uid: 5666 components: - type: Transform - pos: -27.5,-14.5 + pos: 12.5,-87.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: -60.5,-36.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: -62.5,-37.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: -6.5,-92.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: -5.5,-86.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + pos: -5.5,-87.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: -5.5,-88.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: -7.5,-89.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: -4.5,-88.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: -3.5,-88.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: -1.5,-86.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: -0.5,-86.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: 0.5,-86.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: 1.5,-86.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: 2.5,-86.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: 2.5,-87.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: 1.5,-87.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + pos: 0.5,-87.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: -0.5,-87.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: -0.5,-88.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: -0.5,-89.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: 0.5,-89.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 3.5,-89.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + pos: 2.5,-89.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: 1.5,-89.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: 2.5,-90.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: 3.5,-90.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: 4.5,-90.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: -2.5,-89.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: -2.5,-91.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: -4.5,-92.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + pos: -4.5,-93.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + pos: -4.5,-94.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: -4.5,-95.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: -3.5,-92.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: -3.5,-93.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: -3.5,-94.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -3.5,-95.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: -2.5,-92.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: -2.5,-94.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + pos: -2.5,-93.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: -2.5,-95.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: -1.5,-92.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: -1.5,-93.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: -1.5,-94.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: -1.5,-95.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + pos: -0.5,-92.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: -0.5,-93.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: -0.5,-94.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: -0.5,-95.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: 0.5,-92.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: 0.5,-93.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: 0.5,-94.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: 0.5,-95.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: 1.5,-93.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: 1.5,-92.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 2.5,-92.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: 2.5,-93.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: 2.5,-91.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: -4.5,-91.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: -5.5,-93.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: -5.5,-94.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: -6.5,-93.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: -6.5,-94.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: -6.5,-95.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: -7.5,-92.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -7.5,-93.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -7.5,-94.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: -7.5,-95.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: -8.5,-95.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: -8.5,-92.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: -8.5,-91.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: -9.5,-92.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: -9.5,-91.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: -10.5,-92.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: -10.5,-91.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: -11.5,-92.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: -11.5,-91.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: -10.5,-93.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: -9.5,-93.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: -9.5,-96.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: -12.5,-92.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: -10.5,-90.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: -9.5,-90.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: -9.5,-89.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: -9.5,-88.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: -9.5,-87.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: -8.5,-88.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: -0.5,-84.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: 0.5,-84.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: 1.5,-84.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: 2.5,-84.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: 1.5,-83.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: 1.5,-85.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: 6.5,-89.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: 6.5,-90.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: 7.5,-88.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: 7.5,-89.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: 7.5,-90.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + pos: 8.5,-87.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: 8.5,-88.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: 8.5,-89.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: 9.5,-87.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: 9.5,-88.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: 9.5,-89.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + pos: 10.5,-87.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: 10.5,-88.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: 10.5,-89.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: 9.5,-90.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + pos: 10.5,-86.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: 9.5,-86.5 parent: 2 - uid: 7681 components: @@ -18515,75 +21299,10 @@ entities: - type: Transform pos: -3.5,4.5 parent: 2 - - uid: 7693 + - uid: 7705 components: - type: Transform - pos: 7.5,-2.5 - parent: 2 - - uid: 7694 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - uid: 7695 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 2 - - uid: 7696 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 7697 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 2 - - uid: 7698 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - - uid: 7699 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 2 - - uid: 7700 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 2 - - uid: 7702 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 2 - - uid: 7703 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 2 - - uid: 7704 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 7706 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 2 - - uid: 7707 - components: - - type: Transform - pos: 9.5,0.5 - parent: 2 - - uid: 7708 - components: - - type: Transform - pos: 9.5,1.5 + pos: 11.5,-86.5 parent: 2 - uid: 7709 components: @@ -18593,18 +21312,13 @@ entities: - uid: 7710 components: - type: Transform - pos: 8.5,1.5 + pos: 9.5,2.5 parent: 2 - uid: 7711 components: - type: Transform pos: 4.5,4.5 parent: 2 - - uid: 7712 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - uid: 7713 components: - type: Transform @@ -18625,15 +21339,25 @@ entities: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 7718 + - uid: 7722 components: - type: Transform - pos: 6.5,2.5 + pos: 12.5,-88.5 parent: 2 - - uid: 7719 + - uid: 7725 components: - type: Transform - pos: 5.5,2.5 + pos: 12.5,-89.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: 12.5,-90.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: 13.5,-90.5 parent: 2 - uid: 7735 components: @@ -18670,65 +21394,365 @@ entities: - type: Transform pos: 3.5,8.5 parent: 2 - - uid: 7748 + - uid: 7754 components: - type: Transform - pos: 3.5,7.5 + pos: 15.5,-91.5 parent: 2 - - uid: 7750 + - uid: 7755 components: - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 7751 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 2 - - uid: 7752 - components: - - type: Transform - pos: 12.5,-1.5 + pos: 14.5,-91.5 parent: 2 - uid: 7757 components: - type: Transform pos: 6.5,8.5 parent: 2 - - uid: 7780 + - uid: 7765 components: - type: Transform - pos: 24.5,18.5 + pos: 13.5,-91.5 parent: 2 - - uid: 7781 + - uid: 7793 components: - type: Transform - pos: 25.5,18.5 + pos: 12.5,-91.5 parent: 2 - - uid: 7783 + - uid: 7805 components: - type: Transform - pos: 24.5,16.5 + pos: 11.5,-91.5 parent: 2 - - uid: 7789 + - uid: 7806 components: - type: Transform - pos: 29.5,15.5 + pos: 13.5,-92.5 parent: 2 - - uid: 7790 + - uid: 7807 components: - type: Transform - pos: 29.5,16.5 + pos: 12.5,-92.5 parent: 2 - - uid: 7792 + - uid: 7809 components: - type: Transform - pos: 36.5,14.5 + pos: 11.5,-92.5 parent: 2 - - uid: 7803 + - uid: 7810 components: - type: Transform - pos: 37.5,15.5 + pos: 10.5,-92.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: 9.5,-92.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: 9.5,-93.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: 9.5,-94.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + pos: 9.5,-95.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: 10.5,-93.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: 10.5,-94.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: 10.5,-95.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + pos: 11.5,-93.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: 11.5,-94.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: 11.5,-95.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: 12.5,-93.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 12.5,-94.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: 12.5,-95.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: 13.5,-95.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: 14.5,-95.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: 12.5,-96.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: 11.5,-96.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 10.5,-97.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: 11.5,-97.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: 12.5,-97.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: 13.5,-97.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: 7.5,-96.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 6.5,-96.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: 6.5,-93.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: 6.5,-95.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: 6.5,-94.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: 7.5,-93.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: 7.5,-92.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: 5.5,-92.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: 7.5,-91.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 8.5,-93.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 8.5,-94.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: 5.5,-97.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: 6.5,-97.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: 6.5,-98.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: 6.5,-99.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: 6.5,-100.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: 4.5,-98.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: 6.5,-101.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: 7.5,-101.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: 8.5,-101.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: 9.5,-101.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: 10.5,-100.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: 0.5,-97.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: -0.5,-97.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: -1.5,-97.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: -1.5,-98.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: -1.5,-99.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: -3.5,-97.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: -3.5,-96.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + pos: 7.5,-94.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: 7.5,-95.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + pos: -12.5,-94.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: -12.5,-95.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: -12.5,-96.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: -13.5,-94.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + pos: -13.5,-95.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + pos: -13.5,-96.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: -14.5,-94.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: -14.5,-95.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + pos: -14.5,-96.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + pos: -11.5,-94.5 parent: 2 - uid: 9102 components: @@ -18745,6 +21769,16 @@ entities: - type: Transform pos: 50.5,3.5 parent: 2 + - uid: 9423 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 - uid: 9835 components: - type: Transform @@ -18760,16 +21794,41 @@ entities: - type: Transform pos: 61.5,4.5 parent: 2 + - uid: 10016 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: -55.5,-38.5 + parent: 2 - uid: 10441 components: - type: Transform pos: 69.5,4.5 parent: 2 + - uid: 10526 + components: + - type: Transform + pos: -54.5,-37.5 + parent: 2 - uid: 10720 components: - type: Transform pos: 51.5,2.5 parent: 2 + - uid: 10729 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 - uid: 10745 components: - type: Transform @@ -18825,20 +21884,15 @@ entities: - type: Transform pos: 1.5,2.5 parent: 2 - - uid: 12520 + - uid: 13121 components: - type: Transform - pos: 7.5,-4.5 + pos: -47.5,-19.5 parent: 2 - - uid: 12592 + - uid: 13122 components: - type: Transform - pos: -27.5,-13.5 - parent: 2 - - uid: 13169 - components: - - type: Transform - pos: 12.5,-3.5 + pos: -48.5,-19.5 parent: 2 - uid: 13899 components: @@ -18925,21 +21979,11 @@ entities: - type: Transform pos: 88.5,-12.5 parent: 2 - - uid: 14623 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 2 - uid: 14788 components: - type: Transform pos: 87.5,-11.5 parent: 2 - - uid: 14846 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 2 - uid: 15322 components: - type: Transform @@ -18985,11 +22029,6 @@ entities: - type: Transform pos: -12.5,5.5 parent: 2 - - uid: 16047 - components: - - type: Transform - pos: 2.5,7.5 - parent: 2 - uid: 16215 components: - type: Transform @@ -19055,86 +22094,6 @@ entities: - type: Transform pos: -39.5,-12.5 parent: 2 - - uid: 16850 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 2 - - uid: 16851 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 2 - - uid: 16852 - components: - - type: Transform - pos: -38.5,-14.5 - parent: 2 - - uid: 16853 - components: - - type: Transform - pos: -38.5,-15.5 - parent: 2 - - uid: 16854 - components: - - type: Transform - pos: -38.5,-16.5 - parent: 2 - - uid: 16855 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 2 - - uid: 16856 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 2 - - uid: 16857 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 2 - - uid: 16858 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - uid: 16859 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 2 - - uid: 16860 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 2 - - uid: 16861 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 2 - - uid: 16862 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 2 - - uid: 16863 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 2 - - uid: 16864 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 2 - - uid: 16865 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 2 - uid: 16871 components: - type: Transform @@ -19155,365 +22114,15 @@ entities: - type: Transform pos: -47.5,-6.5 parent: 2 - - uid: 16888 - components: - - type: Transform - pos: -68.5,-60.5 - parent: 2 - - uid: 16889 - components: - - type: Transform - pos: -68.5,-48.5 - parent: 2 - - uid: 16890 - components: - - type: Transform - pos: -68.5,-49.5 - parent: 2 - - uid: 16891 - components: - - type: Transform - pos: -68.5,-50.5 - parent: 2 - - uid: 16892 - components: - - type: Transform - pos: -68.5,-51.5 - parent: 2 - - uid: 16893 - components: - - type: Transform - pos: -68.5,-52.5 - parent: 2 - - uid: 16894 - components: - - type: Transform - pos: -66.5,-52.5 - parent: 2 - - uid: 16895 - components: - - type: Transform - pos: -66.5,-51.5 - parent: 2 - - uid: 16896 - components: - - type: Transform - pos: -66.5,-50.5 - parent: 2 - - uid: 16897 - components: - - type: Transform - pos: -66.5,-49.5 - parent: 2 - - uid: 16898 - components: - - type: Transform - pos: -66.5,-48.5 - parent: 2 - - uid: 16899 - components: - - type: Transform - pos: -64.5,-48.5 - parent: 2 - - uid: 16900 - components: - - type: Transform - pos: -64.5,-49.5 - parent: 2 - - uid: 16901 - components: - - type: Transform - pos: -64.5,-50.5 - parent: 2 - - uid: 16902 - components: - - type: Transform - pos: -64.5,-51.5 - parent: 2 - - uid: 16903 - components: - - type: Transform - pos: -64.5,-52.5 - parent: 2 - - uid: 16904 - components: - - type: Transform - pos: -62.5,-52.5 - parent: 2 - - uid: 16905 - components: - - type: Transform - pos: -62.5,-51.5 - parent: 2 - - uid: 16906 - components: - - type: Transform - pos: -62.5,-50.5 - parent: 2 - - uid: 16907 - components: - - type: Transform - pos: -62.5,-49.5 - parent: 2 - - uid: 16908 - components: - - type: Transform - pos: -62.5,-48.5 - parent: 2 - - uid: 16909 - components: - - type: Transform - pos: -60.5,-48.5 - parent: 2 - - uid: 16910 - components: - - type: Transform - pos: -60.5,-49.5 - parent: 2 - - uid: 16911 - components: - - type: Transform - pos: -60.5,-50.5 - parent: 2 - - uid: 16912 - components: - - type: Transform - pos: -60.5,-51.5 - parent: 2 - - uid: 16913 - components: - - type: Transform - pos: -60.5,-52.5 - parent: 2 - - uid: 16914 - components: - - type: Transform - pos: -58.5,-52.5 - parent: 2 - - uid: 16915 - components: - - type: Transform - pos: -58.5,-51.5 - parent: 2 - - uid: 16916 - components: - - type: Transform - pos: -58.5,-50.5 - parent: 2 - - uid: 16917 - components: - - type: Transform - pos: -58.5,-49.5 - parent: 2 - - uid: 16918 - components: - - type: Transform - pos: -58.5,-48.5 - parent: 2 - - uid: 16919 - components: - - type: Transform - pos: -58.5,-56.5 - parent: 2 - - uid: 16920 - components: - - type: Transform - pos: -58.5,-57.5 - parent: 2 - - uid: 16921 - components: - - type: Transform - pos: -58.5,-58.5 - parent: 2 - - uid: 16922 - components: - - type: Transform - pos: -58.5,-59.5 - parent: 2 - - uid: 16923 - components: - - type: Transform - pos: -58.5,-60.5 - parent: 2 - - uid: 16924 - components: - - type: Transform - pos: -60.5,-60.5 - parent: 2 - - uid: 16925 - components: - - type: Transform - pos: -60.5,-59.5 - parent: 2 - - uid: 16926 - components: - - type: Transform - pos: -60.5,-58.5 - parent: 2 - - uid: 16927 - components: - - type: Transform - pos: -60.5,-57.5 - parent: 2 - - uid: 16928 - components: - - type: Transform - pos: -60.5,-56.5 - parent: 2 - - uid: 16929 - components: - - type: Transform - pos: -62.5,-56.5 - parent: 2 - - uid: 16930 - components: - - type: Transform - pos: -62.5,-57.5 - parent: 2 - - uid: 16931 - components: - - type: Transform - pos: -62.5,-58.5 - parent: 2 - - uid: 16932 - components: - - type: Transform - pos: -62.5,-59.5 - parent: 2 - uid: 16933 components: - type: Transform - pos: -62.5,-60.5 - parent: 2 - - uid: 16934 - components: - - type: Transform - pos: -64.5,-60.5 - parent: 2 - - uid: 16935 - components: - - type: Transform - pos: -64.5,-59.5 - parent: 2 - - uid: 16936 - components: - - type: Transform - pos: -64.5,-58.5 - parent: 2 - - uid: 16937 - components: - - type: Transform - pos: -64.5,-57.5 - parent: 2 - - uid: 16938 - components: - - type: Transform - pos: -64.5,-56.5 - parent: 2 - - uid: 16939 - components: - - type: Transform - pos: -66.5,-57.5 - parent: 2 - - uid: 16940 - components: - - type: Transform - pos: -66.5,-58.5 - parent: 2 - - uid: 16941 - components: - - type: Transform - pos: -66.5,-59.5 - parent: 2 - - uid: 16942 - components: - - type: Transform - pos: -66.5,-60.5 - parent: 2 - - uid: 16943 - components: - - type: Transform - pos: -66.5,-56.5 - parent: 2 - - uid: 16944 - components: - - type: Transform - pos: -68.5,-59.5 - parent: 2 - - uid: 16945 - components: - - type: Transform - pos: -68.5,-58.5 - parent: 2 - - uid: 16946 - components: - - type: Transform - pos: -68.5,-57.5 - parent: 2 - - uid: 16947 - components: - - type: Transform - pos: -68.5,-56.5 - parent: 2 - - uid: 16948 - components: - - type: Transform - pos: -67.5,-56.5 - parent: 2 - - uid: 16949 - components: - - type: Transform - pos: -63.5,-56.5 - parent: 2 - - uid: 16950 - components: - - type: Transform - pos: -59.5,-56.5 + pos: -76.5,-58.5 parent: 2 - uid: 16951 components: - type: Transform - pos: -59.5,-52.5 - parent: 2 - - uid: 16952 - components: - - type: Transform - pos: -63.5,-52.5 - parent: 2 - - uid: 16953 - components: - - type: Transform - pos: -67.5,-52.5 - parent: 2 - - uid: 16954 - components: - - type: Transform - pos: -67.5,-54.5 - parent: 2 - - uid: 16955 - components: - - type: Transform - pos: -63.5,-54.5 - parent: 2 - - uid: 16956 - components: - - type: Transform - pos: -59.5,-54.5 - parent: 2 - - uid: 16957 - components: - - type: Transform - pos: -70.5,-54.5 - parent: 2 - - uid: 16958 - components: - - type: Transform - pos: -52.5,-54.5 - parent: 2 - - uid: 16959 - components: - - type: Transform - pos: -51.5,-54.5 + pos: -76.5,-57.5 parent: 2 - uid: 17007 components: @@ -19575,16 +22184,6 @@ entities: - type: Transform pos: -46.5,-18.5 parent: 2 - - uid: 17086 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 2 - - uid: 17087 - components: - - type: Transform - pos: -46.5,-19.5 - parent: 2 - uid: 17093 components: - type: Transform @@ -19620,16 +22219,6 @@ entities: - type: Transform pos: -51.5,-9.5 parent: 2 - - uid: 17103 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 17104 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 2 - uid: 17119 components: - type: Transform @@ -19750,11 +22339,6 @@ entities: - type: Transform pos: 75.5,-44.5 parent: 2 - - uid: 17610 - components: - - type: Transform - pos: 19.5,17.5 - parent: 2 - uid: 17641 components: - type: Transform @@ -19985,91 +22569,11 @@ entities: - type: Transform pos: -48.5,20.5 parent: 2 - - uid: 18342 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - uid: 18348 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 18401 - components: - - type: Transform - pos: 19.5,32.5 - parent: 2 - - uid: 18402 - components: - - type: Transform - pos: 19.5,33.5 - parent: 2 - - uid: 18403 - components: - - type: Transform - pos: 18.5,33.5 - parent: 2 - - uid: 18404 - components: - - type: Transform - pos: 17.5,33.5 - parent: 2 - - uid: 18405 - components: - - type: Transform - pos: 17.5,32.5 - parent: 2 - - uid: 18406 - components: - - type: Transform - pos: 16.5,32.5 - parent: 2 - - uid: 18407 - components: - - type: Transform - pos: 18.5,32.5 - parent: 2 - - uid: 18409 - components: - - type: Transform - pos: 18.5,30.5 - parent: 2 - - uid: 18410 - components: - - type: Transform - pos: 17.5,29.5 - parent: 2 - - uid: 18411 - components: - - type: Transform - pos: 17.5,28.5 - parent: 2 - - uid: 18412 - components: - - type: Transform - pos: 18.5,28.5 - parent: 2 - - uid: 18413 - components: - - type: Transform - pos: 18.5,27.5 - parent: 2 - - uid: 18414 - components: - - type: Transform - pos: 17.5,27.5 - parent: 2 - - uid: 18415 - components: - - type: Transform - pos: 18.5,29.5 - parent: 2 - - uid: 18416 - components: - - type: Transform - pos: 18.5,31.5 - parent: 2 - uid: 18461 components: - type: Transform @@ -23165,26 +25669,6 @@ entities: - type: Transform pos: 89.5,-20.5 parent: 2 - - uid: 20638 - components: - - type: Transform - pos: 17.5,18.5 - parent: 2 - - uid: 20650 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - uid: 20651 - components: - - type: Transform - pos: 29.5,21.5 - parent: 2 - - uid: 20652 - components: - - type: Transform - pos: 27.5,21.5 - parent: 2 - uid: 20686 components: - type: Transform @@ -23210,6 +25694,496 @@ entities: - type: Transform pos: -36.5,16.5 parent: 2 + - uid: 21600 + components: + - type: Transform + pos: -76.5,-59.5 + parent: 2 + - uid: 21632 + components: + - type: Transform + pos: -76.5,-56.5 + parent: 2 + - uid: 21635 + components: + - type: Transform + pos: -76.5,-60.5 + parent: 2 + - uid: 21636 + components: + - type: Transform + pos: -74.5,-60.5 + parent: 2 + - uid: 21637 + components: + - type: Transform + pos: -74.5,-59.5 + parent: 2 + - uid: 21638 + components: + - type: Transform + pos: -74.5,-58.5 + parent: 2 + - uid: 21639 + components: + - type: Transform + pos: -74.5,-57.5 + parent: 2 + - uid: 21640 + components: + - type: Transform + pos: -74.5,-56.5 + parent: 2 + - uid: 21641 + components: + - type: Transform + pos: -75.5,-56.5 + parent: 2 + - uid: 21642 + components: + - type: Transform + pos: -72.5,-56.5 + parent: 2 + - uid: 21643 + components: + - type: Transform + pos: -72.5,-57.5 + parent: 2 + - uid: 21644 + components: + - type: Transform + pos: -72.5,-58.5 + parent: 2 + - uid: 21645 + components: + - type: Transform + pos: -72.5,-59.5 + parent: 2 + - uid: 21646 + components: + - type: Transform + pos: -72.5,-60.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + pos: -71.5,-56.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + pos: -70.5,-56.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + pos: -70.5,-57.5 + parent: 2 + - uid: 21650 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 2 + - uid: 21651 + components: + - type: Transform + pos: -70.5,-59.5 + parent: 2 + - uid: 21652 + components: + - type: Transform + pos: -70.5,-60.5 + parent: 2 + - uid: 21653 + components: + - type: Transform + pos: -68.5,-60.5 + parent: 2 + - uid: 21654 + components: + - type: Transform + pos: -68.5,-59.5 + parent: 2 + - uid: 21655 + components: + - type: Transform + pos: -68.5,-58.5 + parent: 2 + - uid: 21656 + components: + - type: Transform + pos: -68.5,-56.5 + parent: 2 + - uid: 21657 + components: + - type: Transform + pos: -68.5,-57.5 + parent: 2 + - uid: 21658 + components: + - type: Transform + pos: -67.5,-56.5 + parent: 2 + - uid: 21659 + components: + - type: Transform + pos: -66.5,-56.5 + parent: 2 + - uid: 21660 + components: + - type: Transform + pos: -66.5,-57.5 + parent: 2 + - uid: 21661 + components: + - type: Transform + pos: -66.5,-58.5 + parent: 2 + - uid: 21662 + components: + - type: Transform + pos: -66.5,-59.5 + parent: 2 + - uid: 21663 + components: + - type: Transform + pos: -66.5,-60.5 + parent: 2 + - uid: 21664 + components: + - type: Transform + pos: -63.5,-56.5 + parent: 2 + - uid: 21665 + components: + - type: Transform + pos: -63.5,-55.5 + parent: 2 + - uid: 21666 + components: + - type: Transform + pos: -63.5,-54.5 + parent: 2 + - uid: 21667 + components: + - type: Transform + pos: -62.5,-54.5 + parent: 2 + - uid: 21668 + components: + - type: Transform + pos: -64.5,-54.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + pos: -62.5,-48.5 + parent: 2 + - uid: 21682 + components: + - type: Transform + pos: -62.5,-49.5 + parent: 2 + - uid: 21683 + components: + - type: Transform + pos: -62.5,-50.5 + parent: 2 + - uid: 21684 + components: + - type: Transform + pos: -62.5,-51.5 + parent: 2 + - uid: 21685 + components: + - type: Transform + pos: -62.5,-52.5 + parent: 2 + - uid: 21686 + components: + - type: Transform + pos: -63.5,-52.5 + parent: 2 + - uid: 21687 + components: + - type: Transform + pos: -64.5,-52.5 + parent: 2 + - uid: 21688 + components: + - type: Transform + pos: -64.5,-51.5 + parent: 2 + - uid: 21689 + components: + - type: Transform + pos: -64.5,-50.5 + parent: 2 + - uid: 21690 + components: + - type: Transform + pos: -64.5,-48.5 + parent: 2 + - uid: 21691 + components: + - type: Transform + pos: -64.5,-49.5 + parent: 2 + - uid: 21692 + components: + - type: Transform + pos: -66.5,-48.5 + parent: 2 + - uid: 21693 + components: + - type: Transform + pos: -66.5,-49.5 + parent: 2 + - uid: 21694 + components: + - type: Transform + pos: -66.5,-50.5 + parent: 2 + - uid: 21695 + components: + - type: Transform + pos: -66.5,-51.5 + parent: 2 + - uid: 21696 + components: + - type: Transform + pos: -66.5,-52.5 + parent: 2 + - uid: 21697 + components: + - type: Transform + pos: -67.5,-52.5 + parent: 2 + - uid: 21698 + components: + - type: Transform + pos: -68.5,-52.5 + parent: 2 + - uid: 21699 + components: + - type: Transform + pos: -68.5,-51.5 + parent: 2 + - uid: 21700 + components: + - type: Transform + pos: -68.5,-50.5 + parent: 2 + - uid: 21701 + components: + - type: Transform + pos: -68.5,-49.5 + parent: 2 + - uid: 21702 + components: + - type: Transform + pos: -68.5,-48.5 + parent: 2 + - uid: 21703 + components: + - type: Transform + pos: -78.5,-54.5 + parent: 2 + - uid: 21704 + components: + - type: Transform + pos: -70.5,-48.5 + parent: 2 + - uid: 21705 + components: + - type: Transform + pos: -70.5,-49.5 + parent: 2 + - uid: 21706 + components: + - type: Transform + pos: -70.5,-50.5 + parent: 2 + - uid: 21707 + components: + - type: Transform + pos: -70.5,-51.5 + parent: 2 + - uid: 21708 + components: + - type: Transform + pos: -70.5,-52.5 + parent: 2 + - uid: 21709 + components: + - type: Transform + pos: -71.5,-52.5 + parent: 2 + - uid: 21710 + components: + - type: Transform + pos: -72.5,-52.5 + parent: 2 + - uid: 21711 + components: + - type: Transform + pos: -72.5,-51.5 + parent: 2 + - uid: 21712 + components: + - type: Transform + pos: -72.5,-50.5 + parent: 2 + - uid: 21713 + components: + - type: Transform + pos: -72.5,-49.5 + parent: 2 + - uid: 21714 + components: + - type: Transform + pos: -72.5,-48.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + pos: -74.5,-48.5 + parent: 2 + - uid: 21716 + components: + - type: Transform + pos: -74.5,-49.5 + parent: 2 + - uid: 21717 + components: + - type: Transform + pos: -74.5,-50.5 + parent: 2 + - uid: 21718 + components: + - type: Transform + pos: -74.5,-51.5 + parent: 2 + - uid: 21719 + components: + - type: Transform + pos: -74.5,-52.5 + parent: 2 + - uid: 21720 + components: + - type: Transform + pos: -75.5,-52.5 + parent: 2 + - uid: 21721 + components: + - type: Transform + pos: -76.5,-52.5 + parent: 2 + - uid: 21722 + components: + - type: Transform + pos: -76.5,-51.5 + parent: 2 + - uid: 21723 + components: + - type: Transform + pos: -76.5,-50.5 + parent: 2 + - uid: 21724 + components: + - type: Transform + pos: -76.5,-49.5 + parent: 2 + - uid: 21725 + components: + - type: Transform + pos: -76.5,-48.5 + parent: 2 + - uid: 21726 + components: + - type: Transform + pos: -75.5,-54.5 + parent: 2 + - uid: 21727 + components: + - type: Transform + pos: -71.5,-54.5 + parent: 2 + - uid: 21728 + components: + - type: Transform + pos: -67.5,-54.5 + parent: 2 + - uid: 21729 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 2 + - uid: 22014 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 22051 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 22087 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 + - uid: 22170 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 22179 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 22180 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 22181 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 22182 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 22183 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 22184 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 22411 + components: + - type: Transform + pos: -58.5,-48.5 + parent: 2 + - uid: 22412 + components: + - type: Transform + pos: -59.5,-50.5 + parent: 2 + - uid: 22413 + components: + - type: Transform + pos: -59.5,-49.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 7764 @@ -23322,11 +26296,10 @@ entities: parent: 2 - proto: BackgammonBoard entities: - - uid: 7577 + - uid: 10957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.504643,-64.42394 + pos: 9.484991,-71.40378 parent: 2 - proto: BananaPhoneInstrument entities: @@ -23335,12 +26308,12 @@ entities: - type: Transform pos: 13.477564,-30.347912 parent: 2 -- proto: BannerRevolution +- proto: BannerCargo entities: - - uid: 1127 + - uid: 12757 components: - type: Transform - pos: 12.5,-9.5 + pos: -2.5,-95.5 parent: 2 - proto: BannerSyndicate entities: @@ -23351,50 +26324,53 @@ entities: parent: 2 - proto: Barricade entities: - - uid: 3182 + - uid: 6854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-9.5 - parent: 2 - - uid: 4504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-11.5 + pos: 31.5,15.5 parent: 2 - uid: 7236 components: - type: Transform pos: 42.5,-27.5 parent: 2 - - uid: 10056 + - uid: 11293 components: - type: Transform - pos: -34.5,-50.5 + pos: -35.5,-17.5 parent: 2 - uid: 12704 components: - type: Transform pos: 16.5,12.5 parent: 2 - - uid: 13218 + - uid: 14193 components: - type: Transform - pos: 12.5,-14.5 + pos: -39.5,-44.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 17814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 + - uid: 22176 + components: + - type: Transform + pos: 50.5,-33.5 parent: 2 - proto: BarricadeBlock entities: - - uid: 4666 + - uid: 14192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 2 - - uid: 15868 - components: - - type: Transform - pos: 11.5,-14.5 + pos: -39.5,-45.5 parent: 2 - uid: 20702 components: @@ -23403,6 +26379,18 @@ entities: parent: 2 - proto: BarricadeDirectional entities: + - uid: 5352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 2 - uid: 12651 components: - type: Transform @@ -23430,20 +26418,20 @@ entities: - type: Transform pos: 46.5,13.5 parent: 2 -- proto: BaseComputer +- proto: BaseComputerAiAccess entities: - - uid: 3850 + - uid: 10504 components: - type: Transform - pos: 20.5,-35.5 + pos: -40.5,-52.5 parent: 2 - proto: BaseGasCondenser entities: - - uid: 5296 + - uid: 12136 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-37.5 + pos: -39.5,-35.5 parent: 2 - proto: BassGuitarInstrument entities: @@ -23474,11 +26462,6 @@ entities: - type: Transform pos: -25.650852,22.879078 parent: 2 - - uid: 19019 - components: - - type: Transform - pos: -34.68502,-41.23079 - parent: 2 - uid: 20001 components: - type: Transform @@ -23521,21 +26504,11 @@ entities: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 3153 - components: - - type: Transform - pos: -40.5,-38.5 - parent: 2 - uid: 3580 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 3792 - components: - - type: Transform - pos: 7.5,-45.5 - parent: 2 - uid: 3793 components: - type: Transform @@ -23556,26 +26529,36 @@ entities: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 6046 - components: - - type: Transform - pos: 7.5,-41.5 - parent: 2 - uid: 6134 components: - type: Transform pos: 39.5,0.5 parent: 2 - - uid: 8185 - components: - - type: Transform - pos: -52.5,-45.5 - parent: 2 - uid: 9560 components: - type: Transform pos: -7.5,19.5 parent: 2 + - uid: 12870 + components: + - type: Transform + pos: -57.5,-28.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + pos: -52.5,-21.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 - uid: 13814 components: - type: Transform @@ -23596,6 +26579,11 @@ entities: - type: Transform pos: -22.5,12.5 parent: 2 + - uid: 18411 + components: + - type: Transform + pos: 35.5,26.5 + parent: 2 - uid: 18843 components: - type: Transform @@ -23648,11 +26636,11 @@ entities: parent: 2 - proto: BedsheetCMO entities: - - uid: 2526 + - uid: 13081 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-38.5 + pos: -52.5,-21.5 parent: 2 - proto: BedsheetCult entities: @@ -23685,25 +26673,16 @@ entities: parent: 2 - proto: BedsheetMedical entities: - - uid: 471 - components: - - type: Transform - pos: -33.5,-23.5 - parent: 2 - - uid: 13012 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 2 - uid: 14081 components: - type: Transform pos: 21.5,-59.5 parent: 2 - - uid: 20708 + - uid: 21874 components: - type: Transform - pos: -39.5,-24.5 + rot: 1.5707963267948966 rad + pos: 18.5,0.5 parent: 2 - proto: BedsheetMime entities: @@ -23742,16 +26721,16 @@ entities: parent: 2 - proto: BedsheetSpawner entities: + - uid: 474 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 - uid: 822 components: - type: Transform pos: -9.5,25.5 parent: 2 - - uid: 3533 - components: - - type: Transform - pos: 7.5,-45.5 - parent: 2 - uid: 3795 components: - type: Transform @@ -23762,37 +26741,42 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 2 - - uid: 4861 - components: - - type: Transform - pos: 7.5,-41.5 - parent: 2 - uid: 6048 components: - type: Transform pos: 39.5,0.5 parent: 2 - - uid: 8150 + - uid: 11963 components: - type: Transform - pos: -52.5,-45.5 + pos: 26.5,-2.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + pos: 7.5,-41.5 parent: 2 - uid: 17060 components: - type: Transform pos: -42.5,-5.5 parent: 2 -- proto: BikeHorn - entities: - - uid: 3811 + - uid: 17711 components: - type: Transform - pos: 2.7397208,-18.205833 + pos: 35.5,26.5 parent: 2 + - uid: 17794 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 +- proto: BikeHorn + entities: - uid: 6177 components: - type: Transform - pos: 36.32241,-6.4210362 + pos: 35.50801,-6.4720173 parent: 2 - uid: 17565 components: @@ -23828,31 +26812,39 @@ entities: - uid: 306 components: - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,14.5 parent: 2 - uid: 368 components: - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,14.5 parent: 2 - - uid: 1653 + - uid: 1268 components: - type: Transform - pos: 9.5,-3.5 + pos: 7.5,3.5 parent: 2 - - uid: 1663 + - uid: 1324 components: - type: Transform - pos: 9.5,-2.5 + pos: 11.5,3.5 parent: 2 - - uid: 1959 + - uid: 2954 components: - type: Transform - pos: 9.5,-6.5 + pos: 8.5,-8.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: 8.5,-6.5 parent: 2 - uid: 3501 components: - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,14.5 parent: 2 - uid: 3508 @@ -23860,39 +26852,31 @@ entities: - type: Transform pos: 36.5,-34.5 parent: 2 - - uid: 5799 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 2 - uid: 5917 components: - type: Transform pos: 58.5,-45.5 parent: 2 + - uid: 6106 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 - uid: 7261 components: - type: Transform pos: 52.5,-47.5 parent: 2 - - uid: 7967 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 2 - - uid: 7974 - components: - - type: Transform - pos: -31.5,-54.5 - parent: 2 - uid: 8141 components: - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,29.5 parent: 2 - uid: 9057 components: - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,29.5 parent: 2 - uid: 9113 @@ -23900,16 +26884,26 @@ entities: - type: Transform pos: 32.5,-58.5 parent: 2 + - uid: 12822 + components: + - type: Transform + pos: -12.5,-92.5 + parent: 2 + - uid: 15052 + components: + - type: Transform + pos: 12.5,-96.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + pos: 11.5,-96.5 + parent: 2 - uid: 18130 components: - type: Transform pos: 30.5,-58.5 parent: 2 - - uid: 18816 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 2 - proto: BlastDoorWindows entities: - uid: 4531 @@ -23926,10 +26920,10 @@ entities: parent: 2 - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 17647 + - uid: 9422 components: - type: Transform - pos: 13.542375,-19.466818 + pos: 5.550997,-16.40295 parent: 2 - proto: BodyBagFolded entities: @@ -23943,6 +26937,11 @@ entities: - type: Transform pos: 37.41686,-27.151522 parent: 2 + - uid: 16321 + components: + - type: Transform + pos: -48.520058,-50.29567 + parent: 2 - proto: BookAtmosVentsMore entities: - uid: 3061 @@ -23952,10 +26951,10 @@ entities: parent: 2 - proto: BookBartendersManual entities: - - uid: 3722 + - uid: 9269 components: - type: Transform - pos: 0.39677143,-45.382183 + pos: 2.4676845,-45.374935 parent: 2 - proto: BookNarsieLegend entities: @@ -23966,10 +26965,10 @@ entities: parent: 2 - proto: BookRandomStory entities: - - uid: 103 + - uid: 1660 components: - type: Transform - pos: 18.53138,-35.528824 + pos: 14.5179,0.6014401 parent: 2 - uid: 3651 components: @@ -23981,20 +26980,45 @@ entities: - type: Transform pos: 13.654222,-36.337326 parent: 2 - - uid: 8148 + - uid: 7110 components: - type: Transform - pos: -50.48518,-47.42868 + pos: 17.524298,-41.315758 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: 18.36901,-38.345722 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: 19.588366,-38.335297 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: -59.59441,-30.16561 + parent: 2 + - uid: 20839 + components: + - type: Transform + pos: 15.429813,-62.458412 parent: 2 - proto: BooksBag entities: - uid: 6002 components: - type: Transform - pos: 20.434483,-38.20227 + pos: 22.603266,-41.47055 parent: 2 - proto: BookshelfFilled entities: + - uid: 860 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 - uid: 1853 components: - type: Transform @@ -24010,16 +27034,6 @@ entities: - type: Transform pos: 14.5,-35.5 parent: 2 - - uid: 3755 - components: - - type: Transform - pos: 18.5,-40.5 - parent: 2 - - uid: 3758 - components: - - type: Transform - pos: 18.5,-39.5 - parent: 2 - uid: 3776 components: - type: Transform @@ -24060,26 +27074,36 @@ entities: - type: Transform pos: 35.5,-1.5 parent: 2 - - uid: 8064 + - uid: 6904 components: - type: Transform - pos: -50.5,-39.5 + pos: 18.5,-35.5 parent: 2 - - uid: 13174 + - uid: 9520 components: - type: Transform - pos: 9.5,-51.5 + pos: 19.5,-35.5 parent: 2 - - uid: 18853 + - uid: 10920 components: - type: Transform - pos: 18.5,-38.5 + pos: 17.5,-44.5 + parent: 2 + - uid: 10923 + components: + - type: Transform + pos: 18.5,-37.5 parent: 2 - uid: 20225 components: - type: Transform pos: -40.5,-0.5 parent: 2 + - uid: 21491 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 - proto: BookSpaceLaw entities: - uid: 497 @@ -24089,11 +27113,11 @@ entities: parent: 2 - proto: BoozeDispenser entities: - - uid: 3703 + - uid: 16007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-45.5 + rot: -1.5707963267948966 rad + pos: -4.5,-44.5 parent: 2 - proto: BoozeDispenserMachineCircuitboard entities: @@ -24104,21 +27128,19 @@ entities: parent: 2 - proto: BorgCharger entities: + - uid: 3287 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 - uid: 4202 components: - type: Transform pos: 37.5,-24.5 parent: 2 - - uid: 9147 + - uid: 11102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 2 - - uid: 9148 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 - uid: 16585 @@ -24143,12 +27165,12 @@ entities: - type: Transform pos: 36.50517,-24.474092 parent: 2 -- proto: BorgModuleFireExtinguisher +- proto: BorgModuleGardening entities: - - uid: 6603 + - uid: 15620 components: - type: Transform - pos: -20.50441,-13.4179735 + pos: 5.522452,-55.39996 parent: 2 - proto: BoxBeaker entities: @@ -24162,10 +27184,10 @@ entities: - type: Transform pos: -13.518328,-33.4524 parent: 2 - - uid: 4827 + - uid: 12112 components: - type: Transform - pos: -30.431562,-33.632877 + pos: -28.489655,-38.298656 parent: 2 - proto: BoxBodyBag entities: @@ -24174,10 +27196,10 @@ entities: - type: Transform pos: -28.647797,12.72903 parent: 2 - - uid: 8112 + - uid: 14107 components: - type: Transform - pos: -43.7055,-45.38466 + pos: -49.45411,-43.38514 parent: 2 - proto: BoxCandle entities: @@ -24207,10 +27229,10 @@ entities: parent: 2 - proto: BoxFlare entities: - - uid: 6202 + - uid: 21970 components: - type: Transform - pos: -33.211655,-57.315544 + pos: 27.50103,29.672012 parent: 2 - proto: BoxFlashbang entities: @@ -24219,23 +27241,6 @@ entities: - type: Transform pos: -24.289831,13.800506 parent: 2 -- proto: BoxFolderBase - entities: - - uid: 3550 - components: - - type: Transform - pos: -6.4270163,-59.288963 - parent: 2 - - uid: 10154 - components: - - type: Transform - pos: -34.33748,-45.39844 - parent: 2 - - uid: 15840 - components: - - type: Transform - pos: -20.579294,-16.367939 - parent: 2 - proto: BoxFolderBlack entities: - uid: 6937 @@ -24250,6 +27255,11 @@ entities: - type: Transform pos: -0.5900409,16.696323 parent: 2 + - uid: 7225 + components: + - type: Transform + pos: -38.58369,-52.07165 + parent: 2 - uid: 15660 components: - type: Transform @@ -24262,16 +27272,6 @@ entities: - type: Transform pos: -27.573792,6.6655574 parent: 2 - - uid: 3355 - components: - - type: Transform - pos: 6.2848144,-19.181017 - parent: 2 - - uid: 3405 - components: - - type: Transform - pos: -21.12123,-16.367939 - parent: 2 - uid: 4220 components: - type: Transform @@ -24287,55 +27287,25 @@ entities: - type: Transform pos: 35.35821,-41.39188 parent: 2 - - uid: 7004 + - uid: 6124 components: - type: Transform - pos: 23.40841,-9.414159 + pos: 26.412817,-9.459768 parent: 2 - uid: 7434 components: - type: Transform pos: 32.493713,-75.42588 parent: 2 - - uid: 8199 - components: - - type: Transform - pos: -51.344456,-42.40107 - parent: 2 - - uid: 8246 - components: - - type: Transform - pos: -44.50448,-46.445023 - parent: 2 - - uid: 9530 - components: - - type: Transform - pos: 29.347668,4.005797 - parent: 2 - - uid: 10153 - components: - - type: Transform - pos: -34.61887,-45.17954 - parent: 2 - uid: 11326 components: - type: Transform pos: -0.45460415,20.563332 parent: 2 - - uid: 11471 + - uid: 14160 components: - type: Transform - pos: -45.666264,-22.196106 - parent: 2 - - uid: 12351 - components: - - type: Transform - pos: -38.490253,-52.398266 - parent: 2 - - uid: 12705 - components: - - type: Transform - pos: -41.631638,-34.40459 + pos: -50.387123,-43.41601 parent: 2 - proto: BoxFolderRed entities: @@ -24349,6 +27319,23 @@ entities: - type: Transform pos: -11.744785,-48.486874 parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 7125 + components: + - type: Transform + pos: -28.792606,-26.384033 + parent: 2 + - uid: 7209 + components: + - type: Transform + pos: -38.333565,-52.363518 + parent: 2 + - uid: 9392 + components: + - type: Transform + pos: -48.165825,-22.388607 + parent: 2 - proto: BoxHandcuff entities: - uid: 92 @@ -24356,13 +27343,6 @@ entities: - type: Transform pos: -24.623165,13.57118 parent: 2 -- proto: BoxHeadset - entities: - - uid: 6563 - components: - - type: Transform - pos: 25.569305,0.7293166 - parent: 2 - proto: BoxInflatable entities: - uid: 3895 @@ -24370,6 +27350,16 @@ entities: - type: Transform pos: 43.5346,-56.293934 parent: 2 + - uid: 12745 + components: + - type: Transform + pos: 3.5959587,-55.335243 + parent: 2 + - uid: 22457 + components: + - type: Transform + pos: 34.47513,19.678007 + parent: 2 - proto: BoxingBell entities: - uid: 1813 @@ -24380,17 +27370,22 @@ entities: parent: 2 - proto: BoxLatexGloves entities: - - uid: 8261 + - uid: 12948 components: - type: Transform - pos: -52.343967,-43.392303 + pos: -54.49606,-31.291697 parent: 2 - proto: BoxLightbulb entities: - uid: 8656 components: - type: Transform - pos: 46.449215,10.650298 + pos: 46.489723,11.467377 + parent: 2 + - uid: 16919 + components: + - type: Transform + pos: -45.50232,-50.33289 parent: 2 - proto: BoxLightMixed entities: @@ -24414,29 +27409,15 @@ entities: - type: Transform pos: 28.525217,-53.325924 parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 6.464714,-58.303185 + parent: 2 - uid: 9405 components: - type: Transform - pos: 29.384245,-0.22353017 - parent: 2 -- proto: BoxLighttube - entities: - - uid: 18477 - components: - - type: Transform - pos: -28.617266,-22.280603 - parent: 2 -- proto: BoxLighttubeHoliday - entities: - - uid: 9938 - components: - - type: Transform - pos: 29.49191,-0.29796058 - parent: 2 - - uid: 17182 - components: - - type: Transform - pos: -42.507454,-51.406326 + pos: 25.001753,-0.25277233 parent: 2 - proto: BoxMouthSwab entities: @@ -24445,98 +27426,53 @@ entities: - type: Transform pos: -15.52203,-39.383137 parent: 2 - - uid: 8202 + - uid: 12944 components: - type: Transform - pos: -52.57325,-40.37556 + pos: -55.506977,-31.364613 parent: 2 - proto: BoxMRE entities: - uid: 711 components: - type: Transform - pos: -38.60202,-2.1711364 + pos: -36.213997,-2.385151 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: -33.63912,-3.2371044 parent: 2 - proto: BoxPerformer entities: - - uid: 16061 + - uid: 1914 components: - type: Transform - pos: 8.491663,4.564948 - parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: This decreases your running speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: BoxPillCanister - entities: - - uid: 4881 - components: - - type: Transform - pos: -30.64672,-36.300823 - parent: 2 - - uid: 14355 - components: - - type: Transform - pos: -28.371738,-22.4565 + pos: -28.44429,-60.246056 parent: 2 - proto: BoxSterileMask entities: - - uid: 7813 + - uid: 12978 components: - type: Transform - pos: -52.51393,-43.28739 + pos: -53.360077,-28.385447 parent: 2 - - uid: 16072 + - uid: 14857 components: - type: Transform - pos: -52.66481,-27.294983 - parent: 2 -- proto: BoxSyringe - entities: - - uid: 5004 - components: - - type: Transform - pos: -37.390774,-24.717043 - parent: 2 - - uid: 8196 - components: - - type: Transform - pos: -52.667046,-43.20467 - parent: 2 - - uid: 14713 - components: - - type: Transform - pos: -28.517572,-22.383532 + pos: -45.426624,-23.863966 parent: 2 - proto: BoxTrashbag entities: + - uid: 7699 + components: + - type: Transform + pos: -33.368153,-3.3621044 + parent: 2 - uid: 9426 components: - type: Transform - pos: 29.613523,-0.37988842 - parent: 2 -- proto: BoxVial - entities: - - uid: 836 - components: - - type: Transform - pos: -34.3832,-34.664165 + pos: 26.481653,-0.31531549 parent: 2 - proto: BrbSign entities: @@ -24550,6 +27486,13 @@ entities: - type: Transform pos: 18.417604,-25.98257 parent: 2 +- proto: BriefcaseBrown + entities: + - uid: 22490 + components: + - type: Transform + pos: 22.319017,-4.6095977 + parent: 2 - proto: BriefcaseBrownFilled entities: - uid: 6138 @@ -24557,11 +27500,6 @@ entities: - type: Transform pos: 45.45511,-32.147636 parent: 2 - - uid: 10150 - components: - - type: Transform - pos: -34.26079,-45.966408 - parent: 2 - uid: 13857 components: - type: Transform @@ -24594,6 +27532,13 @@ entities: - type: Transform pos: 48.008686,10.467797 parent: 2 +- proto: Brutepack + entities: + - uid: 21313 + components: + - type: Transform + pos: -44.51362,-29.417643 + parent: 2 - proto: Brutepack1 entities: - uid: 2253 @@ -24621,20 +27566,20 @@ entities: pos: -13.459316,-32.28296 parent: 2 - type: Conveyed - - uid: 3726 + - uid: 5753 components: - type: Transform - pos: -1.6873779,-45.24459 + pos: 44.459606,17.581608 parent: 2 - - uid: 9552 + - uid: 12191 components: - type: Transform - pos: 23.514273,5.680741 + pos: 6.654245,-55.511364 parent: 2 - - uid: 9553 + - uid: 15039 components: - type: Transform - pos: 27.547523,0.6876904 + pos: -0.3603983,-45.15794 parent: 2 - uid: 17548 components: @@ -24646,18 +27591,23 @@ entities: - type: Transform pos: -8.508354,12.687243 parent: 2 - - uid: 18981 + - uid: 21372 components: - type: Transform - pos: 35.743057,18.362583 + pos: 26.700512,-0.24234867 + parent: 2 + - uid: 21373 + components: + - type: Transform + pos: 26.335749,-0.1798048 parent: 2 - proto: ButtonFrameCaution entities: - - uid: 22 + - uid: 284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-35.5 + rot: 3.141592653589793 rad + pos: -28.5,-49.5 parent: 2 - uid: 495 components: @@ -24677,6 +27627,24 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-35.5 parent: 2 + - uid: 1696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 - uid: 3694 components: - type: Transform @@ -24695,6 +27663,11 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-52.5 parent: 2 + - uid: 9596 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 - uid: 11422 components: - type: Transform @@ -24707,24 +27680,18 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-48.5 parent: 2 + - uid: 12483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 - uid: 15432 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-43.5 parent: 2 - - uid: 16044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-35.5 - parent: 2 - - uid: 16053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-27.5 - parent: 2 - uid: 17054 components: - type: Transform @@ -24748,31 +27715,61 @@ entities: - type: Transform pos: -1.5,-42.5 parent: 2 -- proto: ButtonFrameExit - entities: - - uid: 15652 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 2 - - uid: 16114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-27.5 - parent: 2 -- proto: ButtonFrameGrey - entities: - - uid: 2042 + - uid: 21222 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-8.5 + pos: -46.5,-38.5 parent: 2 - - uid: 3829 + - uid: 21232 components: - type: Transform - pos: 5.5,-5.5 + rot: -1.5707963267948966 rad + pos: -46.5,-23.5 + parent: 2 + - uid: 21241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-25.5 + parent: 2 + - uid: 21249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 2 +- proto: ButtonFrameExit + entities: + - uid: 1561 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-26.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-33.5 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.31269,-26.495672 parent: 2 - uid: 4283 components: @@ -24790,29 +27787,11 @@ entities: - type: Transform pos: 35.5,-23.5 parent: 2 - - uid: 9539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 2 - - uid: 10659 + - uid: 8592 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-56.5 - parent: 2 - - uid: 15409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 2 - - uid: 15412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 + pos: -30.7203,-26.495672 parent: 2 - uid: 17446 components: @@ -24838,12 +27817,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-2.5 parent: 2 - - uid: 1330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.498238,-27.753994 - parent: 2 - uid: 16116 components: - type: Transform @@ -24862,6 +27835,18 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 + - uid: 21750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-25.5 + parent: 2 + - uid: 21753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-38.5 + parent: 2 - proto: CableApcExtension entities: - uid: 3 @@ -24889,6 +27874,11 @@ entities: - type: Transform pos: -16.5,29.5 parent: 2 + - uid: 118 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 - uid: 119 components: - type: Transform @@ -24899,21 +27889,26 @@ entities: - type: Transform pos: -14.5,-49.5 parent: 2 - - uid: 181 + - uid: 139 components: - type: Transform - pos: -51.5,-43.5 + pos: -33.5,9.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -30.5,-45.5 parent: 2 - uid: 182 components: - type: Transform pos: -0.5,27.5 parent: 2 - - uid: 186 - components: - - type: Transform - pos: -43.5,-40.5 - parent: 2 - uid: 188 components: - type: Transform @@ -24929,31 +27924,36 @@ entities: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 244 + - uid: 198 components: - type: Transform - pos: 15.5,-5.5 + pos: -4.5,-9.5 parent: 2 - - uid: 262 + - uid: 202 components: - type: Transform - pos: 14.5,-5.5 + pos: 2.5,-11.5 parent: 2 - - uid: 295 + - uid: 219 components: - type: Transform - pos: -4.5,-51.5 + pos: -63.5,-60.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -4.5,-7.5 parent: 2 - uid: 304 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 310 - components: - - type: Transform - pos: -40.5,-37.5 - parent: 2 - uid: 329 components: - type: Transform @@ -24999,6 +27999,11 @@ entities: - type: Transform pos: -23.5,-3.5 parent: 2 + - uid: 445 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 - uid: 451 components: - type: Transform @@ -25054,16 +28059,6 @@ entities: - type: Transform pos: -25.5,-7.5 parent: 2 - - uid: 507 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 2 - - uid: 510 - components: - - type: Transform - pos: 35.5,14.5 - parent: 2 - uid: 540 components: - type: Transform @@ -25124,11 +28119,6 @@ entities: - type: Transform pos: 9.5,17.5 parent: 2 - - uid: 573 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 2 - uid: 575 components: - type: Transform @@ -25149,51 +28139,21 @@ entities: - type: Transform pos: -19.5,26.5 parent: 2 - - uid: 612 + - uid: 598 components: - type: Transform - pos: -29.5,-10.5 + pos: 21.5,24.5 parent: 2 - uid: 615 components: - type: Transform pos: -15.5,0.5 parent: 2 - - uid: 621 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 2 - - uid: 633 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 2 - - uid: 634 - components: - - type: Transform - pos: -9.5,-4.5 - parent: 2 - - uid: 635 - components: - - type: Transform - pos: -8.5,-4.5 - parent: 2 - uid: 636 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 645 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 2 - - uid: 650 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 2 - uid: 653 components: - type: Transform @@ -25229,6 +28189,16 @@ entities: - type: Transform pos: -28.5,-10.5 parent: 2 + - uid: 681 + components: + - type: Transform + pos: 20.5,22.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 - uid: 695 components: - type: Transform @@ -25247,17 +28217,12 @@ entities: - uid: 744 components: - type: Transform - pos: 18.5,21.5 + pos: -55.5,-51.5 parent: 2 - uid: 746 components: - type: Transform - pos: 18.5,22.5 - parent: 2 - - uid: 757 - components: - - type: Transform - pos: 14.5,23.5 + pos: -56.5,-51.5 parent: 2 - uid: 759 components: @@ -25274,25 +28239,15 @@ entities: - type: Transform pos: 12.5,24.5 parent: 2 - - uid: 772 - components: - - type: Transform - pos: 14.5,20.5 - parent: 2 - uid: 774 components: - type: Transform pos: 15.5,22.5 parent: 2 - - uid: 776 + - uid: 794 components: - type: Transform - pos: 14.5,19.5 - parent: 2 - - uid: 777 - components: - - type: Transform - pos: 14.5,18.5 + pos: 11.5,-17.5 parent: 2 - uid: 796 components: @@ -25309,15 +28264,15 @@ entities: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 848 + - uid: 844 components: - type: Transform - pos: 35.5,15.5 + pos: 16.5,-17.5 parent: 2 - - uid: 865 + - uid: 854 components: - type: Transform - pos: -30.5,-61.5 + pos: 47.5,20.5 parent: 2 - uid: 876 components: @@ -25334,11 +28289,6 @@ entities: - type: Transform pos: -21.5,-41.5 parent: 2 - - uid: 886 - components: - - type: Transform - pos: -35.5,12.5 - parent: 2 - uid: 909 components: - type: Transform @@ -25399,36 +28349,6 @@ entities: - type: Transform pos: 16.5,24.5 parent: 2 - - uid: 935 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 - - uid: 936 - components: - - type: Transform - pos: 17.5,24.5 - parent: 2 - - uid: 937 - components: - - type: Transform - pos: 18.5,24.5 - parent: 2 - - uid: 938 - components: - - type: Transform - pos: 16.5,22.5 - parent: 2 - - uid: 941 - components: - - type: Transform - pos: 17.5,28.5 - parent: 2 - - uid: 942 - components: - - type: Transform - pos: 13.5,28.5 - parent: 2 - uid: 943 components: - type: Transform @@ -25439,41 +28359,6 @@ entities: - type: Transform pos: 9.5,28.5 parent: 2 - - uid: 945 - components: - - type: Transform - pos: 14.5,28.5 - parent: 2 - - uid: 947 - components: - - type: Transform - pos: 18.5,28.5 - parent: 2 - - uid: 948 - components: - - type: Transform - pos: 18.5,29.5 - parent: 2 - - uid: 949 - components: - - type: Transform - pos: 18.5,30.5 - parent: 2 - - uid: 950 - components: - - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 951 - components: - - type: Transform - pos: 16.5,28.5 - parent: 2 - - uid: 952 - components: - - type: Transform - pos: -9.5,19.5 - parent: 2 - uid: 953 components: - type: Transform @@ -25519,26 +28404,36 @@ entities: - type: Transform pos: -4.5,18.5 parent: 2 - - uid: 967 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - uid: 968 components: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 970 - components: - - type: Transform - pos: 8.5,-52.5 - parent: 2 - uid: 974 components: - type: Transform pos: -33.5,15.5 parent: 2 + - uid: 980 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 - uid: 1052 components: - type: Transform @@ -25547,7 +28442,7 @@ entities: - uid: 1061 components: - type: Transform - pos: -27.5,-19.5 + pos: -10.5,-2.5 parent: 2 - uid: 1069 components: @@ -25559,11 +28454,21 @@ entities: - type: Transform pos: 37.5,-14.5 parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 2 - uid: 1172 components: - type: Transform pos: -36.5,23.5 parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 - uid: 1182 components: - type: Transform @@ -25574,16 +28479,6 @@ entities: - type: Transform pos: -25.5,3.5 parent: 2 - - uid: 1250 - components: - - type: Transform - pos: -11.5,-54.5 - parent: 2 - - uid: 1251 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 2 - uid: 1262 components: - type: Transform @@ -25599,71 +28494,56 @@ entities: - type: Transform pos: 41.5,2.5 parent: 2 - - uid: 1280 + - uid: 1276 components: - type: Transform - pos: 41.5,3.5 - parent: 2 - - uid: 1282 - components: - - type: Transform - pos: 3.5,-42.5 - parent: 2 - - uid: 1285 - components: - - type: Transform - pos: -10.5,-55.5 + pos: -4.5,-0.5 parent: 2 - uid: 1292 components: - type: Transform pos: 42.5,2.5 parent: 2 + - uid: 1295 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 - uid: 1299 components: - type: Transform pos: -18.5,14.5 parent: 2 + - uid: 1306 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 - uid: 1307 components: - type: Transform pos: -22.5,-41.5 parent: 2 - - uid: 1308 + - uid: 1312 components: - type: Transform - pos: -9.5,-55.5 - parent: 2 - - uid: 1324 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 2 - - uid: 1325 - components: - - type: Transform - pos: 16.5,-16.5 + pos: -17.5,-62.5 parent: 2 - uid: 1326 components: - type: Transform - pos: 16.5,-17.5 + pos: 7.5,-0.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: -20.5,-62.5 parent: 2 - uid: 1332 components: - type: Transform pos: -19.5,25.5 parent: 2 - - uid: 1336 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 2 - - uid: 1337 - components: - - type: Transform - pos: -41.5,-35.5 - parent: 2 - uid: 1350 components: - type: Transform @@ -25709,6 +28589,16 @@ entities: - type: Transform pos: 8.5,25.5 parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 - uid: 1486 components: - type: Transform @@ -25729,16 +28619,31 @@ entities: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 1509 + - uid: 1497 components: - type: Transform - pos: -37.5,-35.5 + pos: -29.5,-46.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -25.5,-62.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 15.5,23.5 parent: 2 - uid: 1517 components: - type: Transform pos: -20.5,16.5 parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 - uid: 1523 components: - type: Transform @@ -25764,10 +28669,10 @@ entities: - type: Transform pos: 57.5,-52.5 parent: 2 - - uid: 1537 + - uid: 1538 components: - type: Transform - pos: 3.5,-43.5 + pos: 19.5,22.5 parent: 2 - uid: 1539 components: @@ -25789,10 +28694,15 @@ entities: - type: Transform pos: -16.5,20.5 parent: 2 + - uid: 1554 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 - uid: 1555 components: - type: Transform - pos: -44.5,-25.5 + pos: -27.5,-46.5 parent: 2 - uid: 1581 components: @@ -25819,191 +28729,206 @@ entities: - type: Transform pos: -9.5,-44.5 parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 - uid: 1678 components: - type: Transform - pos: 3.5,-5.5 + pos: 15.5,27.5 parent: 2 - - uid: 1681 + - uid: 1688 components: - type: Transform - pos: 3.5,-10.5 + pos: 33.5,22.5 parent: 2 - - uid: 1682 + - uid: 1693 components: - type: Transform - pos: 4.5,-10.5 + pos: -18.5,-62.5 parent: 2 - - uid: 1700 + - uid: 1699 components: - type: Transform - pos: 4.5,-10.5 + pos: -16.5,-62.5 parent: 2 - - uid: 1707 + - uid: 1701 components: - type: Transform - pos: -52.5,-33.5 + pos: 31.5,-2.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: -15.5,-62.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: -14.5,-62.5 parent: 2 - uid: 1719 components: - type: Transform pos: 20.5,-24.5 parent: 2 - - uid: 1728 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 - uid: 1729 components: - type: Transform - pos: -51.5,-26.5 + pos: -21.5,-62.5 parent: 2 - - uid: 1738 + - uid: 1730 components: - type: Transform - pos: -52.5,-27.5 - parent: 2 - - uid: 1739 - components: - - type: Transform - pos: -49.5,-27.5 - parent: 2 - - uid: 1761 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 2 - - uid: 1762 - components: - - type: Transform - pos: -49.5,-30.5 - parent: 2 - - uid: 1769 - components: - - type: Transform - pos: 23.5,13.5 + pos: -19.5,-62.5 parent: 2 - uid: 1770 components: - type: Transform - pos: 22.5,13.5 + pos: -2.5,-11.5 parent: 2 - uid: 1777 components: - type: Transform - pos: 24.5,13.5 + pos: -2.5,-7.5 parent: 2 - - uid: 1782 + - uid: 1807 components: - type: Transform - pos: 6.5,-10.5 - parent: 2 - - uid: 1797 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 2 - - uid: 1805 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 2 - - uid: 1808 - components: - - type: Transform - pos: 24.5,12.5 - parent: 2 - - uid: 1809 - components: - - type: Transform - pos: 3.5,-41.5 - parent: 2 - - uid: 1810 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 2 - - uid: 1811 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 2 - - uid: 1812 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 2 - - uid: 1814 - components: - - type: Transform - pos: 1.5,-10.5 + pos: 16.5,32.5 parent: 2 - uid: 1815 components: - type: Transform - pos: 0.5,-10.5 + pos: -29.5,-4.5 parent: 2 - uid: 1816 components: - type: Transform - pos: -0.5,-10.5 + pos: 4.5,7.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: 2.5,7.5 parent: 2 - uid: 1818 components: - type: Transform - pos: -1.5,-10.5 + pos: 3.5,7.5 parent: 2 - uid: 1820 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 1822 + - uid: 1827 components: - type: Transform - pos: 17.5,3.5 + pos: -35.5,-58.5 parent: 2 - uid: 1835 components: - type: Transform pos: -22.5,22.5 parent: 2 - - uid: 1841 + - uid: 1847 components: - type: Transform - pos: 2.5,-10.5 + pos: 31.5,-1.5 parent: 2 - uid: 1848 components: - type: Transform pos: 3.5,-40.5 parent: 2 + - uid: 1859 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: -38.5,-54.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: -36.5,-58.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: -36.5,-52.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 2 - uid: 1884 components: - type: Transform pos: 62.5,-52.5 parent: 2 - - uid: 1888 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 2 - - uid: 1891 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 2 - uid: 1896 components: - type: Transform - pos: -0.5,-6.5 + pos: -43.5,-3.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: -35.5,-52.5 parent: 2 - uid: 1955 components: - type: Transform pos: -37.5,2.5 parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 - uid: 2048 components: - type: Transform @@ -26014,46 +28939,71 @@ entities: - type: Transform pos: -23.5,-47.5 parent: 2 - - uid: 2062 + - uid: 2053 components: - type: Transform - pos: 9.5,-55.5 + pos: 5.5,-0.5 parent: 2 - - uid: 2063 + - uid: 2054 components: - type: Transform - pos: 11.5,-57.5 + pos: -8.5,-0.5 parent: 2 - - uid: 2064 + - uid: 2056 components: - type: Transform - pos: 11.5,-56.5 + pos: -5.5,-0.5 parent: 2 - - uid: 2065 + - uid: 2058 components: - type: Transform - pos: 11.5,-52.5 + pos: -0.5,-44.5 parent: 2 - - uid: 2071 + - uid: 2059 components: - type: Transform - pos: 11.5,-51.5 + pos: -6.5,-0.5 parent: 2 - - uid: 2078 + - uid: 2061 components: - type: Transform - pos: -4.5,-54.5 + pos: 34.5,20.5 parent: 2 - - uid: 2079 + - uid: 2067 components: - type: Transform - pos: -5.5,-50.5 + pos: 0.5,-0.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 2.5,-0.5 parent: 2 - uid: 2091 components: - type: Transform pos: -33.5,-4.5 parent: 2 + - uid: 2102 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 - uid: 2105 components: - type: Transform @@ -26064,11 +29014,31 @@ entities: - type: Transform pos: -30.5,19.5 parent: 2 + - uid: 2109 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 - uid: 2110 components: - type: Transform pos: -0.5,-5.5 parent: 2 + - uid: 2111 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 - uid: 2120 components: - type: Transform @@ -26094,6 +29064,16 @@ entities: - type: Transform pos: 43.5,9.5 parent: 2 + - uid: 2167 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 - uid: 2192 components: - type: Transform @@ -26104,6 +29084,11 @@ entities: - type: Transform pos: 1.5,9.5 parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -38.5,-57.5 + parent: 2 - uid: 2208 components: - type: Transform @@ -26134,6 +29119,11 @@ entities: - type: Transform pos: 57.5,-49.5 parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 - uid: 2254 components: - type: Transform @@ -26144,11 +29134,6 @@ entities: - type: Transform pos: 51.5,-50.5 parent: 2 - - uid: 2276 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 2 - uid: 2279 components: - type: Transform @@ -26162,32 +29147,7 @@ entities: - uid: 2320 components: - type: Transform - pos: 31.5,36.5 - parent: 2 - - uid: 2322 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 2323 - components: - - type: Transform - pos: 30.5,36.5 - parent: 2 - - uid: 2326 - components: - - type: Transform - pos: 30.5,33.5 - parent: 2 - - uid: 2329 - components: - - type: Transform - pos: 30.5,38.5 - parent: 2 - - uid: 2332 - components: - - type: Transform - pos: 30.5,31.5 + pos: -0.5,-7.5 parent: 2 - uid: 2334 components: @@ -26209,15 +29169,10 @@ entities: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 2345 + - uid: 2354 components: - type: Transform - pos: 31.5,32.5 - parent: 2 - - uid: 2346 - components: - - type: Transform - pos: 30.5,32.5 + pos: -37.5,-57.5 parent: 2 - uid: 2360 components: @@ -26239,11 +29194,6 @@ entities: - type: Transform pos: -22.5,4.5 parent: 2 - - uid: 2389 - components: - - type: Transform - pos: -34.5,12.5 - parent: 2 - uid: 2423 components: - type: Transform @@ -26264,16 +29214,6 @@ entities: - type: Transform pos: -19.5,33.5 parent: 2 - - uid: 2441 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 2 - - uid: 2442 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 - uid: 2443 components: - type: Transform @@ -26284,11 +29224,6 @@ entities: - type: Transform pos: -11.5,0.5 parent: 2 - - uid: 2446 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 2 - uid: 2447 components: - type: Transform @@ -26299,11 +29234,6 @@ entities: - type: Transform pos: -19.5,14.5 parent: 2 - - uid: 2456 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - uid: 2460 components: - type: Transform @@ -26314,11 +29244,6 @@ entities: - type: Transform pos: -9.5,0.5 parent: 2 - - uid: 2464 - components: - - type: Transform - pos: -9.5,-2.5 - parent: 2 - uid: 2468 components: - type: Transform @@ -26389,21 +29314,6 @@ entities: - type: Transform pos: 4.5,1.5 parent: 2 - - uid: 2482 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 - - uid: 2483 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 2 - - uid: 2484 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - uid: 2487 components: - type: Transform @@ -26414,11 +29324,6 @@ entities: - type: Transform pos: -18.5,28.5 parent: 2 - - uid: 2500 - components: - - type: Transform - pos: 10.5,-55.5 - parent: 2 - uid: 2502 components: - type: Transform @@ -26429,30 +29334,35 @@ entities: - type: Transform pos: -9.5,-16.5 parent: 2 + - uid: 2512 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 2 - uid: 2513 components: - type: Transform pos: -17.5,31.5 parent: 2 - - uid: 2543 + - uid: 2514 components: - type: Transform - pos: -42.5,-25.5 + pos: -22.5,-62.5 parent: 2 - - uid: 2548 + - uid: 2522 components: - type: Transform - pos: -43.5,-25.5 + pos: -29.5,-62.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: -28.5,-62.5 parent: 2 - uid: 2568 components: - type: Transform - pos: -42.5,-39.5 - parent: 2 - - uid: 2582 - components: - - type: Transform - pos: -33.5,12.5 + pos: -12.5,-62.5 parent: 2 - uid: 2612 components: @@ -26464,6 +29374,21 @@ entities: - type: Transform pos: -32.5,11.5 parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -13.5,-62.5 + parent: 2 - uid: 2705 components: - type: Transform @@ -26494,11 +29419,6 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 2758 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 2 - uid: 2774 components: - type: Transform @@ -26629,10 +29549,10 @@ entities: - type: Transform pos: 53.5,-50.5 parent: 2 - - uid: 2826 + - uid: 2827 components: - type: Transform - pos: -44.5,-38.5 + pos: -11.5,-62.5 parent: 2 - uid: 2831 components: @@ -26694,11 +29614,6 @@ entities: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 2855 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 2 - uid: 2857 components: - type: Transform @@ -26707,7 +29622,7 @@ entities: - uid: 2861 components: - type: Transform - pos: 14.5,11.5 + pos: 17.5,-7.5 parent: 2 - uid: 2864 components: @@ -26734,6 +29649,11 @@ entities: - type: Transform pos: -27.5,-3.5 parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 - uid: 2889 components: - type: Transform @@ -26742,23 +29662,33 @@ entities: - uid: 2892 components: - type: Transform - pos: -44.5,-40.5 + pos: -29.5,-60.5 parent: 2 - - uid: 2894 + - uid: 2904 components: - type: Transform - pos: -9.5,-51.5 + pos: 19.5,-7.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 20.5,-9.5 parent: 2 - uid: 2947 components: - type: Transform pos: -8.5,9.5 parent: 2 - - uid: 2978 - components: - - type: Transform - pos: 22.5,-42.5 - parent: 2 - uid: 2988 components: - type: Transform @@ -26774,6 +29704,11 @@ entities: - type: Transform pos: 58.5,-49.5 parent: 2 + - uid: 2999 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 - uid: 3003 components: - type: Transform @@ -26784,11 +29719,6 @@ entities: - type: Transform pos: -20.5,22.5 parent: 2 - - uid: 3025 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 - uid: 3036 components: - type: Transform @@ -26819,10 +29749,10 @@ entities: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 3083 + - uid: 3099 components: - type: Transform - pos: 28.5,-10.5 + pos: -30.5,-10.5 parent: 2 - uid: 3104 components: @@ -26834,21 +29764,41 @@ entities: - type: Transform pos: 31.5,-62.5 parent: 2 - - uid: 3166 + - uid: 3119 components: - type: Transform - pos: 16.5,-0.5 + pos: -20.5,-11.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: -30.5,-12.5 parent: 2 - uid: 3198 components: - type: Transform - pos: 8.5,-18.5 + pos: -30.5,-11.5 parent: 2 - uid: 3200 components: - type: Transform pos: 31.5,-57.5 parent: 2 + - uid: 3204 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 - uid: 3278 components: - type: Transform @@ -26864,25 +29814,35 @@ entities: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 3373 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 2 - uid: 3390 components: - type: Transform pos: -21.5,16.5 parent: 2 + - uid: 3400 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 - uid: 3463 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 3542 + - uid: 3498 components: - type: Transform - pos: -37.5,-58.5 + pos: -31.5,-44.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: 15.5,-52.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: 14.5,-55.5 parent: 2 - uid: 3551 components: @@ -26934,15 +29894,85 @@ entities: - type: Transform pos: 1.5,-24.5 parent: 2 + - uid: 3678 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 15.5,-54.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: 21.5,-56.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: 20.5,-56.5 + parent: 2 - uid: 3707 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 4068 + - uid: 3815 components: - type: Transform - pos: 4.5,-6.5 + pos: 39.5,24.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: -29.5,-59.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: 24.5,-51.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: 24.5,-53.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: 24.5,-54.5 parent: 2 - uid: 4117 components: @@ -26959,41 +29989,11 @@ entities: - type: Transform pos: 3.5,-37.5 parent: 2 - - uid: 4216 - components: - - type: Transform - pos: -26.5,-22.5 - parent: 2 - - uid: 4234 - components: - - type: Transform - pos: -28.5,-34.5 - parent: 2 - - uid: 4260 - components: - - type: Transform - pos: -33.5,-38.5 - parent: 2 - - uid: 4261 - components: - - type: Transform - pos: -33.5,-37.5 - parent: 2 - uid: 4421 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 4463 - components: - - type: Transform - pos: -39.5,-35.5 - parent: 2 - - uid: 4477 - components: - - type: Transform - pos: -40.5,-33.5 - parent: 2 - uid: 4509 components: - type: Transform @@ -27009,61 +30009,6 @@ entities: - type: Transform pos: 10.5,11.5 parent: 2 - - uid: 4599 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 2 - - uid: 4600 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 2 - - uid: 4601 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 2 - - uid: 4602 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 2 - - uid: 4603 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 4604 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 4606 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 2 - - uid: 4607 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - - uid: 4609 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 2 - - uid: 4610 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 4611 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - uid: 4628 components: - type: Transform @@ -27074,121 +30019,156 @@ entities: - type: Transform pos: 6.5,11.5 parent: 2 - - uid: 4652 + - uid: 4650 components: - type: Transform - pos: -30.5,-63.5 + pos: -22.5,-12.5 parent: 2 - uid: 4659 components: - type: Transform pos: 31.5,-65.5 parent: 2 - - uid: 4674 + - uid: 4675 components: - type: Transform - pos: -30.5,-22.5 + pos: 10.5,-17.5 parent: 2 - - uid: 4676 + - uid: 4727 components: - type: Transform - pos: -27.5,-21.5 + pos: -29.5,-61.5 parent: 2 - - uid: 4710 + - uid: 4790 components: - type: Transform - pos: 7.5,-55.5 + pos: 5.5,-17.5 parent: 2 - - uid: 4743 + - uid: 4803 components: - type: Transform - pos: 8.5,-50.5 + pos: -26.5,-46.5 parent: 2 - - uid: 4752 + - uid: 4804 components: - type: Transform - pos: 7.5,-50.5 + pos: -28.5,-44.5 parent: 2 - - uid: 4766 + - uid: 4805 components: - type: Transform - pos: 6.5,-50.5 + pos: -28.5,-45.5 parent: 2 - - uid: 4834 + - uid: 4824 components: - type: Transform - pos: 5.5,-18.5 + pos: -26.5,-62.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: -23.5,-62.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: -27.5,-62.5 parent: 2 - uid: 4877 components: - type: Transform pos: -32.5,3.5 parent: 2 - - uid: 4887 + - uid: 4968 components: - type: Transform - pos: -5.5,-13.5 + pos: -31.5,-48.5 parent: 2 - - uid: 4924 + - uid: 4989 components: - type: Transform - pos: -40.5,-34.5 + pos: -36.5,3.5 parent: 2 - - uid: 5020 + - uid: 4999 components: - type: Transform - pos: -27.5,-20.5 + pos: -30.5,-46.5 parent: 2 - - uid: 5028 + - uid: 5017 components: - type: Transform - pos: -30.5,-21.5 + pos: -31.5,-45.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: -25.5,-46.5 parent: 2 - uid: 5041 components: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 5044 + - uid: 5138 components: - type: Transform - pos: -29.5,-21.5 + pos: -35.5,3.5 parent: 2 - - uid: 5045 + - uid: 5173 components: - type: Transform - pos: -28.5,-21.5 + pos: -35.5,4.5 parent: 2 - - uid: 5202 + - uid: 5205 components: - type: Transform - pos: 8.5,-51.5 + pos: 2.5,-48.5 parent: 2 - uid: 5223 components: - type: Transform pos: 57.5,-60.5 parent: 2 + - uid: 5245 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 - uid: 5253 components: - type: Transform - pos: 8.5,-57.5 + pos: 1.5,-48.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: 0.5,-48.5 parent: 2 - uid: 5255 components: - type: Transform - pos: 8.5,-55.5 + pos: -0.5,-48.5 parent: 2 - uid: 5256 components: - type: Transform - pos: 8.5,-56.5 + pos: -1.5,-48.5 parent: 2 - uid: 5278 components: - type: Transform pos: -9.5,14.5 parent: 2 + - uid: 5291 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 - uid: 5320 components: - type: Transform @@ -27254,11 +30234,6 @@ entities: - type: Transform pos: 45.5,-4.5 parent: 2 - - uid: 5403 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - uid: 5410 components: - type: Transform @@ -27324,46 +30299,96 @@ entities: - type: Transform pos: -29.5,5.5 parent: 2 - - uid: 5489 - components: - - type: Transform - pos: 18.5,31.5 - parent: 2 - - uid: 5490 - components: - - type: Transform - pos: 18.5,32.5 - parent: 2 - uid: 5496 components: - type: Transform pos: 57.5,-53.5 parent: 2 + - uid: 5503 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 - uid: 5526 components: - type: Transform pos: 57.5,-55.5 parent: 2 + - uid: 5535 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 - uid: 5567 components: - type: Transform pos: 57.5,-51.5 parent: 2 - - uid: 5586 + - uid: 5578 components: - type: Transform - pos: 4.5,-18.5 + pos: -2.5,-48.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: -37.5,-52.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: -28.5,-43.5 parent: 2 - uid: 5628 components: - type: Transform pos: 31.5,-59.5 parent: 2 + - uid: 5635 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 - uid: 5645 components: - type: Transform pos: 57.5,-50.5 parent: 2 + - uid: 5648 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 2 - uid: 5720 components: - type: Transform @@ -27379,20 +30404,85 @@ entities: - type: Transform pos: 48.5,-49.5 parent: 2 + - uid: 5729 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 - uid: 5768 components: - type: Transform pos: -31.5,7.5 parent: 2 + - uid: 5802 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 - uid: 5810 components: - type: Transform pos: -31.5,8.5 parent: 2 - - uid: 5872 + - uid: 5824 components: - type: Transform - pos: 34.5,13.5 + pos: 10.5,-52.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: 27.5,3.5 parent: 2 - uid: 6073 components: @@ -27414,40 +30504,70 @@ entities: - type: Transform pos: -6.5,22.5 parent: 2 - - uid: 6165 + - uid: 6144 components: - type: Transform - pos: -50.5,-30.5 + pos: 27.5,25.5 parent: 2 - - uid: 6172 + - uid: 6154 components: - type: Transform - pos: -51.5,-30.5 - parent: 2 - - uid: 6270 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 6275 - components: - - type: Transform - pos: 24.5,7.5 + pos: 22.5,12.5 parent: 2 - uid: 6287 components: - type: Transform pos: 31.5,-67.5 parent: 2 + - uid: 6316 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: 24.5,-49.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: 14.5,-51.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: 17.5,-57.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 - uid: 6410 components: - type: Transform - pos: 14.5,-53.5 + pos: 15.5,-51.5 parent: 2 - - uid: 6481 + - uid: 6440 components: - type: Transform - pos: -34.5,9.5 + pos: 11.5,-32.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: 15.5,-32.5 parent: 2 - uid: 6501 components: @@ -27464,35 +30584,15 @@ entities: - type: Transform pos: 44.5,-1.5 parent: 2 - - uid: 6565 + - uid: 6516 components: - type: Transform - pos: 21.5,1.5 + pos: -53.5,-22.5 parent: 2 - - uid: 6573 + - uid: 6570 components: - type: Transform - pos: 20.5,1.5 - parent: 2 - - uid: 6574 - components: - - type: Transform - pos: 22.5,1.5 - parent: 2 - - uid: 6575 - components: - - type: Transform - pos: 23.5,1.5 - parent: 2 - - uid: 6576 - components: - - type: Transform - pos: 23.5,2.5 - parent: 2 - - uid: 6577 - components: - - type: Transform - pos: 24.5,1.5 + pos: 0.5,-44.5 parent: 2 - uid: 6579 components: @@ -27504,91 +30604,41 @@ entities: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 6636 + - uid: 6619 components: - type: Transform - pos: -51.5,-33.5 - parent: 2 - - uid: 6637 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 2 - - uid: 6638 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 2 - - uid: 6639 - components: - - type: Transform - pos: -35.5,9.5 + pos: 13.5,7.5 parent: 2 - uid: 6642 components: - type: Transform pos: 31.5,-63.5 parent: 2 - - uid: 6657 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 2 - - uid: 6662 - components: - - type: Transform - pos: 25.5,-11.5 - parent: 2 - uid: 6664 components: - type: Transform - pos: 24.5,-11.5 - parent: 2 - - uid: 6667 - components: - - type: Transform - pos: 23.5,-11.5 + pos: 15.5,20.5 parent: 2 - uid: 6668 components: - type: Transform pos: 40.5,-9.5 parent: 2 - - uid: 6672 + - uid: 6671 components: - type: Transform - pos: 23.5,-10.5 - parent: 2 - - uid: 6673 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 2 - - uid: 6674 - components: - - type: Transform - pos: 23.5,-8.5 - parent: 2 - - uid: 6675 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 2 - - uid: 6677 - components: - - type: Transform - pos: 23.5,-6.5 - parent: 2 - - uid: 6683 - components: - - type: Transform - pos: -51.5,-29.5 + pos: 3.5,-44.5 parent: 2 - uid: 6723 components: - type: Transform pos: 35.5,-44.5 parent: 2 + - uid: 6737 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 - uid: 6786 components: - type: Transform @@ -27604,11 +30654,31 @@ entities: - type: Transform pos: -6.5,23.5 parent: 2 + - uid: 6836 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 - uid: 6889 components: - type: Transform pos: 35.5,6.5 parent: 2 + - uid: 6890 + components: + - type: Transform + pos: 15.5,-53.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 - uid: 6914 components: - type: Transform @@ -27624,6 +30694,31 @@ entities: - type: Transform pos: -30.5,24.5 parent: 2 + - uid: 6986 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + pos: 15.5,-58.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 - uid: 7029 components: - type: Transform @@ -27679,11 +30774,26 @@ entities: - type: Transform pos: -9.5,-17.5 parent: 2 + - uid: 7138 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 - uid: 7160 components: - type: Transform pos: 1.5,28.5 parent: 2 + - uid: 7161 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -57.5,-55.5 + parent: 2 - uid: 7183 components: - type: Transform @@ -27699,10 +30809,15 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 7237 + - uid: 7221 components: - type: Transform - pos: -22.5,-15.5 + pos: 14.5,-13.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: -56.5,-55.5 parent: 2 - uid: 7249 components: @@ -27784,16 +30899,56 @@ entities: - type: Transform pos: -30.5,17.5 parent: 2 + - uid: 7328 + components: + - type: Transform + pos: -55.5,-55.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: -59.5,-53.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + pos: -59.5,-52.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: -58.5,-53.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: -57.5,-53.5 + parent: 2 - uid: 7408 components: - type: Transform pos: 16.5,-56.5 parent: 2 + - uid: 7413 + components: + - type: Transform + pos: -57.5,-54.5 + parent: 2 - uid: 7468 components: - type: Transform pos: 5.5,26.5 parent: 2 + - uid: 7511 + components: + - type: Transform + pos: -56.5,-53.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: -55.5,-53.5 + parent: 2 - uid: 7553 components: - type: Transform @@ -27804,20 +30959,25 @@ entities: - type: Transform pos: 15.5,-56.5 parent: 2 - - uid: 7584 + - uid: 7579 components: - type: Transform - pos: 14.5,-56.5 + pos: 17.5,8.5 parent: 2 - uid: 7625 components: - type: Transform pos: -31.5,20.5 parent: 2 - - uid: 7628 + - uid: 7636 components: - type: Transform - pos: 29.5,-9.5 + pos: 27.5,22.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: 25.5,-3.5 parent: 2 - uid: 7674 components: @@ -27829,6 +30989,21 @@ entities: - type: Transform pos: 48.5,-51.5 parent: 2 + - uid: 7696 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 - uid: 7743 components: - type: Transform @@ -27854,280 +31029,55 @@ entities: - type: Transform pos: -21.5,5.5 parent: 2 - - uid: 7881 + - uid: 7840 components: - type: Transform - pos: 34.5,39.5 + pos: -50.5,-51.5 parent: 2 - - uid: 7882 + - uid: 7857 components: - type: Transform - pos: 33.5,39.5 + pos: 0.5,-11.5 parent: 2 - - uid: 7883 + - uid: 7861 components: - type: Transform - pos: 32.5,39.5 + pos: 25.5,13.5 parent: 2 - - uid: 7884 + - uid: 7874 components: - type: Transform - pos: 32.5,40.5 - parent: 2 - - uid: 7885 - components: - - type: Transform - pos: 32.5,41.5 - parent: 2 - - uid: 7886 - components: - - type: Transform - pos: 32.5,42.5 - parent: 2 - - uid: 7887 - components: - - type: Transform - pos: 32.5,43.5 - parent: 2 - - uid: 7888 - components: - - type: Transform - pos: 32.5,44.5 + pos: 25.5,14.5 parent: 2 - uid: 7889 components: - type: Transform - pos: 32.5,45.5 - parent: 2 - - uid: 7890 - components: - - type: Transform - pos: 33.5,44.5 - parent: 2 - - uid: 7891 - components: - - type: Transform - pos: 34.5,44.5 - parent: 2 - - uid: 7892 - components: - - type: Transform - pos: 31.5,44.5 - parent: 2 - - uid: 7893 - components: - - type: Transform - pos: 30.5,44.5 - parent: 2 - - uid: 7894 - components: - - type: Transform - pos: 31.5,41.5 + pos: -4.5,-11.5 parent: 2 - uid: 7895 components: - type: Transform - pos: 30.5,41.5 + pos: 14.5,7.5 parent: 2 - uid: 7896 components: - type: Transform - pos: 29.5,41.5 - parent: 2 - - uid: 7897 - components: - - type: Transform - pos: 29.5,42.5 - parent: 2 - - uid: 7898 - components: - - type: Transform - pos: 33.5,41.5 - parent: 2 - - uid: 7899 - components: - - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 7900 - components: - - type: Transform - pos: 35.5,41.5 - parent: 2 - - uid: 7901 - components: - - type: Transform - pos: 35.5,42.5 - parent: 2 - - uid: 7902 - components: - - type: Transform - pos: 32.5,38.5 - parent: 2 - - uid: 7903 - components: - - type: Transform - pos: 32.5,37.5 - parent: 2 - - uid: 7904 - components: - - type: Transform - pos: 32.5,36.5 - parent: 2 - - uid: 7905 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - - uid: 7906 - components: - - type: Transform - pos: 34.5,36.5 + pos: 25.5,-2.5 parent: 2 - uid: 7907 components: - type: Transform - pos: 35.5,36.5 - parent: 2 - - uid: 7908 - components: - - type: Transform - pos: 36.5,36.5 - parent: 2 - - uid: 7909 - components: - - type: Transform - pos: 35.5,37.5 - parent: 2 - - uid: 7910 - components: - - type: Transform - pos: 35.5,38.5 - parent: 2 - - uid: 7911 - components: - - type: Transform - pos: 32.5,35.5 - parent: 2 - - uid: 7912 - components: - - type: Transform - pos: 32.5,34.5 + pos: 20.5,-11.5 parent: 2 - uid: 7913 components: - type: Transform - pos: 32.5,33.5 - parent: 2 - - uid: 7914 - components: - - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 7915 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - uid: 7916 - components: - - type: Transform - pos: 32.5,25.5 - parent: 2 - - uid: 7917 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - - uid: 7918 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - - uid: 7919 - components: - - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 7920 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 7921 - components: - - type: Transform - pos: 35.5,28.5 - parent: 2 - - uid: 7922 - components: - - type: Transform - pos: 36.5,28.5 - parent: 2 - - uid: 7923 - components: - - type: Transform - pos: 32.5,24.5 - parent: 2 - - uid: 7924 - components: - - type: Transform - pos: 32.5,23.5 - parent: 2 - - uid: 7925 - components: - - type: Transform - pos: 32.5,22.5 - parent: 2 - - uid: 7926 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 7927 - components: - - type: Transform - pos: 32.5,20.5 + pos: 20.5,-10.5 parent: 2 - uid: 7928 components: - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 7929 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 7930 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 7931 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 7932 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 7933 - components: - - type: Transform - pos: 29.5,24.5 - parent: 2 - - uid: 7934 - components: - - type: Transform - pos: 30.5,24.5 - parent: 2 - - uid: 7935 - components: - - type: Transform - pos: 31.5,24.5 + pos: 15.5,18.5 parent: 2 - uid: 7980 components: @@ -28139,56 +31089,21 @@ entities: - type: Transform pos: 40.5,-6.5 parent: 2 - - uid: 7989 + - uid: 8030 components: - type: Transform - pos: -51.5,-31.5 - parent: 2 - - uid: 8029 - components: - - type: Transform - pos: -51.5,-28.5 - parent: 2 - - uid: 8035 - components: - - type: Transform - pos: -51.5,-32.5 - parent: 2 - - uid: 8082 - components: - - type: Transform - pos: -51.5,-34.5 - parent: 2 - - uid: 8084 - components: - - type: Transform - pos: -39.5,-34.5 + pos: -45.5,-53.5 parent: 2 - uid: 8086 components: - type: Transform pos: 8.5,11.5 parent: 2 - - uid: 8087 - components: - - type: Transform - pos: 13.5,11.5 - parent: 2 - - uid: 8100 - components: - - type: Transform - pos: -40.5,-32.5 - parent: 2 - uid: 8102 components: - type: Transform pos: 11.5,11.5 parent: 2 - - uid: 8108 - components: - - type: Transform - pos: 12.5,11.5 - parent: 2 - uid: 8113 components: - type: Transform @@ -28199,35 +31114,20 @@ entities: - type: Transform pos: 0.5,11.5 parent: 2 - - uid: 8115 - components: - - type: Transform - pos: -51.5,-27.5 - parent: 2 - uid: 8163 components: - type: Transform pos: 7.5,11.5 parent: 2 - - uid: 8191 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 2 - uid: 8207 components: - type: Transform pos: 6.5,28.5 parent: 2 - - uid: 8220 + - uid: 8234 components: - type: Transform - pos: -3.5,-50.5 - parent: 2 - - uid: 8225 - components: - - type: Transform - pos: -30.5,-23.5 + pos: -51.5,-52.5 parent: 2 - uid: 8236 components: @@ -28259,16 +31159,41 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 + - uid: 8284 + components: + - type: Transform + pos: -51.5,-57.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + pos: -51.5,-51.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 - uid: 8312 components: - type: Transform pos: -1.5,24.5 parent: 2 + - uid: 8332 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 - uid: 8335 components: - type: Transform pos: 14.5,21.5 parent: 2 + - uid: 8348 + components: + - type: Transform + pos: -48.5,-53.5 + parent: 2 - uid: 8359 components: - type: Transform @@ -28289,31 +31214,21 @@ entities: - type: Transform pos: 5.5,28.5 parent: 2 - - uid: 8410 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - uid: 8411 components: - type: Transform pos: -51.5,-12.5 parent: 2 - - uid: 8436 - components: - - type: Transform - pos: -36.5,2.5 - parent: 2 - - uid: 8469 - components: - - type: Transform - pos: 8.5,-54.5 - parent: 2 - uid: 8480 components: - type: Transform pos: -48.5,-12.5 parent: 2 + - uid: 8495 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 - uid: 8499 components: - type: Transform @@ -28322,132 +31237,27 @@ entities: - uid: 8540 components: - type: Transform - pos: -21.5,-15.5 - parent: 2 - - uid: 8548 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 2 - - uid: 8568 - components: - - type: Transform - pos: 31.5,28.5 - parent: 2 - - uid: 8569 - components: - - type: Transform - pos: 30.5,28.5 - parent: 2 - - uid: 8570 - components: - - type: Transform - pos: 29.5,28.5 - parent: 2 - - uid: 8571 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 8572 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 8573 - components: - - type: Transform - pos: 33.5,24.5 - parent: 2 - - uid: 8574 - components: - - type: Transform - pos: 34.5,24.5 - parent: 2 - - uid: 8575 - components: - - type: Transform - pos: 35.5,24.5 + pos: 9.5,-17.5 parent: 2 - uid: 8576 components: - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8577 - components: - - type: Transform - pos: 35.5,23.5 + pos: 27.5,11.5 parent: 2 - uid: 8578 components: - type: Transform - pos: 32.5,19.5 - parent: 2 - - uid: 8579 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 8580 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 8581 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 8582 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 8583 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - - uid: 8584 - components: - - type: Transform - pos: 32.5,16.5 + pos: 27.5,10.5 parent: 2 - uid: 8585 components: - type: Transform - pos: 32.5,15.5 + pos: 21.5,10.5 parent: 2 - - uid: 8590 + - uid: 8600 components: - type: Transform - pos: 30.5,15.5 - parent: 2 - - uid: 8592 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - - uid: 8593 - components: - - type: Transform - pos: 31.5,15.5 - parent: 2 - - uid: 8595 - components: - - type: Transform - pos: 28.5,13.5 - parent: 2 - - uid: 8603 - components: - - type: Transform - pos: 33.5,12.5 - parent: 2 - - uid: 8604 - components: - - type: Transform - pos: 34.5,12.5 + pos: 15.5,17.5 parent: 2 - uid: 8607 components: @@ -28509,11 +31319,6 @@ entities: - type: Transform pos: 44.5,8.5 parent: 2 - - uid: 8641 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 2 - uid: 8646 components: - type: Transform @@ -28524,46 +31329,26 @@ entities: - type: Transform pos: 36.5,6.5 parent: 2 - - uid: 8686 + - uid: 8659 components: - type: Transform - pos: 33.5,32.5 + pos: -30.5,-52.5 parent: 2 - - uid: 8687 + - uid: 8673 components: - type: Transform - pos: 34.5,32.5 + pos: -50.5,-33.5 parent: 2 - - uid: 8688 + - uid: 8674 components: - type: Transform - pos: 35.5,32.5 - parent: 2 - - uid: 8689 - components: - - type: Transform - pos: 35.5,33.5 - parent: 2 - - uid: 8690 - components: - - type: Transform - pos: 35.5,31.5 + pos: -35.5,5.5 parent: 2 - uid: 8715 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 8765 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 2 - - uid: 8827 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 2 - uid: 8855 components: - type: Transform @@ -28599,11 +31384,6 @@ entities: - type: Transform pos: -23.5,-49.5 parent: 2 - - uid: 8966 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - uid: 8982 components: - type: Transform @@ -28642,7 +31422,7 @@ entities: - uid: 9008 components: - type: Transform - pos: 14.5,22.5 + pos: 27.5,24.5 parent: 2 - uid: 9010 components: @@ -28759,11 +31539,6 @@ entities: - type: Transform pos: 48.5,2.5 parent: 2 - - uid: 9118 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 2 - uid: 9122 components: - type: Transform @@ -28774,81 +31549,71 @@ entities: - type: Transform pos: 44.5,-3.5 parent: 2 - - uid: 9127 - components: - - type: Transform - pos: 28.5,14.5 - parent: 2 - - uid: 9129 - components: - - type: Transform - pos: 29.5,14.5 - parent: 2 - - uid: 9188 - components: - - type: Transform - pos: 12.5,-53.5 - parent: 2 - uid: 9208 components: - type: Transform pos: 36.5,-40.5 parent: 2 - - uid: 9209 + - uid: 9233 components: - type: Transform - pos: -28.5,-35.5 + pos: 0.5,-7.5 parent: 2 - - uid: 9250 + - uid: 9251 components: - type: Transform - pos: 13.5,-53.5 + pos: 2.5,-44.5 parent: 2 - - uid: 9264 + - uid: 9261 components: - type: Transform - pos: -35.5,-38.5 + pos: 2.5,-7.5 parent: 2 - - uid: 9308 + - uid: 9294 components: - type: Transform - pos: -20.5,-15.5 + pos: 1.5,-7.5 parent: 2 - - uid: 9346 + - uid: 9388 components: - type: Transform - pos: -4.5,-53.5 + pos: -47.5,-48.5 parent: 2 - - uid: 9350 + - uid: 9394 components: - type: Transform - pos: -23.5,-15.5 + pos: 24.5,-55.5 parent: 2 - - uid: 9526 + - uid: 9396 components: - type: Transform - pos: -34.5,6.5 + pos: 24.5,-56.5 parent: 2 - - uid: 9546 + - uid: 9398 components: - type: Transform - pos: -20.5,-13.5 + pos: -48.5,-48.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: -49.5,-33.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 9415 + components: + - type: Transform + pos: 15.5,-17.5 parent: 2 - uid: 9574 components: - type: Transform pos: -50.5,-12.5 parent: 2 - - uid: 9601 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 - - uid: 9602 - components: - - type: Transform - pos: 28.5,10.5 - parent: 2 - uid: 9637 components: - type: Transform @@ -28857,7 +31622,12 @@ entities: - uid: 9653 components: - type: Transform - pos: -33.5,9.5 + pos: 35.5,25.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: 26.5,-3.5 parent: 2 - uid: 9671 components: @@ -28874,6 +31644,11 @@ entities: - type: Transform pos: -69.5,-15.5 parent: 2 + - uid: 9724 + components: + - type: Transform + pos: -46.5,-53.5 + parent: 2 - uid: 9745 components: - type: Transform @@ -29004,6 +31779,11 @@ entities: - type: Transform pos: 27.5,-59.5 parent: 2 + - uid: 9798 + components: + - type: Transform + pos: -49.5,-48.5 + parent: 2 - uid: 9805 components: - type: Transform @@ -29184,15 +31964,20 @@ entities: - type: Transform pos: -24.5,-47.5 parent: 2 - - uid: 9924 + - uid: 9948 components: - type: Transform - pos: -24.5,-46.5 + pos: -46.5,-48.5 parent: 2 - - uid: 9925 + - uid: 9949 components: - type: Transform - pos: -24.5,-45.5 + pos: 35.5,26.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + pos: 27.5,-6.5 parent: 2 - uid: 9952 components: @@ -29214,6 +31999,11 @@ entities: - type: Transform pos: -8.5,12.5 parent: 2 + - uid: 9987 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 - uid: 10001 components: - type: Transform @@ -29244,56 +32034,6 @@ entities: - type: Transform pos: 47.5,-52.5 parent: 2 - - uid: 10090 - components: - - type: Transform - pos: -35.5,3.5 - parent: 2 - - uid: 10099 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 2 - - uid: 10105 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 10106 - components: - - type: Transform - pos: 29.5,0.5 - parent: 2 - - uid: 10107 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - - uid: 10108 - components: - - type: Transform - pos: 28.5,1.5 - parent: 2 - - uid: 10109 - components: - - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 10121 - components: - - type: Transform - pos: 28.5,3.5 - parent: 2 - - uid: 10122 - components: - - type: Transform - pos: 30.5,6.5 - parent: 2 - - uid: 10123 - components: - - type: Transform - pos: 31.5,6.5 - parent: 2 - uid: 10124 components: - type: Transform @@ -29319,26 +32059,6 @@ entities: - type: Transform pos: 32.5,2.5 parent: 2 - - uid: 10133 - components: - - type: Transform - pos: 32.5,1.5 - parent: 2 - - uid: 10134 - components: - - type: Transform - pos: 32.5,0.5 - parent: 2 - - uid: 10135 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 2 - - uid: 10137 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - uid: 10138 components: - type: Transform @@ -29364,6 +32084,11 @@ entities: - type: Transform pos: 32.5,11.5 parent: 2 + - uid: 10155 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 - uid: 10157 components: - type: Transform @@ -29394,6 +32119,11 @@ entities: - type: Transform pos: 44.5,-4.5 parent: 2 + - uid: 10192 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 - uid: 10206 components: - type: Transform @@ -29414,60 +32144,25 @@ entities: - type: Transform pos: 29.5,11.5 parent: 2 - - uid: 10210 - components: - - type: Transform - pos: 23.5,-5.5 - parent: 2 - - uid: 10211 - components: - - type: Transform - pos: 23.5,-4.5 - parent: 2 - - uid: 10212 - components: - - type: Transform - pos: 22.5,-4.5 - parent: 2 - - uid: 10213 - components: - - type: Transform - pos: 21.5,-4.5 - parent: 2 - - uid: 10214 - components: - - type: Transform - pos: 21.5,-5.5 - parent: 2 - uid: 10215 components: - type: Transform - pos: 20.5,-5.5 + pos: 10.5,-1.5 parent: 2 - uid: 10216 components: - type: Transform - pos: 24.5,-4.5 + pos: 9.5,-5.5 parent: 2 - - uid: 10217 + - uid: 10233 components: - type: Transform - pos: 25.5,-4.5 + pos: 0.5,-3.5 parent: 2 - - uid: 10218 + - uid: 10240 components: - type: Transform - pos: 25.5,-5.5 - parent: 2 - - uid: 10219 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 2 - - uid: 10220 - components: - - type: Transform - pos: 27.5,-5.5 + pos: 3.5,-12.5 parent: 2 - uid: 10248 components: @@ -29484,6 +32179,16 @@ entities: - type: Transform pos: 4.5,-22.5 parent: 2 + - uid: 10315 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 - uid: 10325 components: - type: Transform @@ -29764,6 +32469,41 @@ entities: - type: Transform pos: 44.5,-21.5 parent: 2 + - uid: 10385 + components: + - type: Transform + pos: -52.5,-49.5 + parent: 2 + - uid: 10386 + components: + - type: Transform + pos: -49.5,-52.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + pos: -51.5,-53.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: -51.5,-55.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: -51.5,-56.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + pos: -51.5,-54.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + pos: -49.5,-50.5 + parent: 2 - uid: 10443 components: - type: Transform @@ -29779,325 +32519,125 @@ entities: - type: Transform pos: -70.5,-9.5 parent: 2 - - uid: 10453 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 2 - - uid: 10454 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 2 - - uid: 10455 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - - uid: 10457 - components: - - type: Transform - pos: 34.5,14.5 - parent: 2 - uid: 10473 components: - type: Transform pos: 53.5,-52.5 parent: 2 - - uid: 10500 + - uid: 10476 components: - type: Transform - pos: 23.5,-15.5 + pos: -39.5,-54.5 + parent: 2 + - uid: 10509 + components: + - type: Transform + pos: -40.5,-54.5 + parent: 2 + - uid: 10523 + components: + - type: Transform + pos: -3.5,-14.5 parent: 2 - uid: 10530 components: - type: Transform pos: 23.5,-16.5 parent: 2 - - uid: 10537 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 10539 - components: - - type: Transform - pos: -32.5,-54.5 - parent: 2 - - uid: 10540 - components: - - type: Transform - pos: -33.5,-54.5 - parent: 2 - - uid: 10541 - components: - - type: Transform - pos: -34.5,-54.5 - parent: 2 - - uid: 10542 - components: - - type: Transform - pos: -31.5,-54.5 - parent: 2 - - uid: 10543 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - - uid: 10544 - components: - - type: Transform - pos: -29.5,-54.5 - parent: 2 - - uid: 10545 - components: - - type: Transform - pos: -29.5,-55.5 - parent: 2 - - uid: 10546 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 2 - - uid: 10547 - components: - - type: Transform - pos: -29.5,-57.5 - parent: 2 - - uid: 10548 - components: - - type: Transform - pos: -29.5,-58.5 - parent: 2 - - uid: 10549 - components: - - type: Transform - pos: -29.5,-59.5 - parent: 2 - - uid: 10550 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 2 - - uid: 10551 - components: - - type: Transform - pos: -29.5,-61.5 - parent: 2 - - uid: 10552 - components: - - type: Transform - pos: -29.5,-62.5 - parent: 2 - - uid: 10553 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 2 - - uid: 10554 - components: - - type: Transform - pos: -29.5,-64.5 - parent: 2 - - uid: 10555 - components: - - type: Transform - pos: -29.5,-65.5 - parent: 2 - - uid: 10556 - components: - - type: Transform - pos: -29.5,-66.5 - parent: 2 - - uid: 10557 - components: - - type: Transform - pos: -29.5,-67.5 - parent: 2 - - uid: 10558 - components: - - type: Transform - pos: -29.5,-68.5 - parent: 2 - uid: 10566 components: - type: Transform pos: -31.5,22.5 parent: 2 + - uid: 10570 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 - uid: 10605 components: - type: Transform - pos: -30.5,-68.5 - parent: 2 - - uid: 10610 - components: - - type: Transform - pos: -31.5,-68.5 - parent: 2 - - uid: 10611 - components: - - type: Transform - pos: -32.5,-63.5 - parent: 2 - - uid: 10612 - components: - - type: Transform - pos: -32.5,-64.5 - parent: 2 - - uid: 10618 - components: - - type: Transform - pos: -27.5,-63.5 + pos: -4.5,-10.5 parent: 2 - uid: 10619 components: - type: Transform - pos: -27.5,-64.5 - parent: 2 - - uid: 10620 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 2 - - uid: 10621 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 2 - - uid: 10622 - components: - - type: Transform - pos: -32.5,-60.5 - parent: 2 - - uid: 10623 - components: - - type: Transform - pos: -32.5,-61.5 + pos: -4.5,-8.5 parent: 2 - uid: 10624 components: - type: Transform - pos: -31.5,-63.5 + pos: -1.5,-7.5 parent: 2 - - uid: 10625 + - uid: 10674 components: - type: Transform - pos: -31.5,-61.5 + pos: 1.5,-11.5 parent: 2 - - uid: 10626 + - uid: 10675 components: - type: Transform - pos: -28.5,-63.5 + pos: 2.5,-3.5 parent: 2 - - uid: 10629 + - uid: 10676 components: - type: Transform - pos: -28.5,-61.5 + pos: 5.5,-14.5 parent: 2 - - uid: 10630 + - uid: 10677 components: - type: Transform - pos: -30.5,-58.5 - parent: 2 - - uid: 10631 - components: - - type: Transform - pos: -31.5,-58.5 - parent: 2 - - uid: 10632 - components: - - type: Transform - pos: -29.5,-53.5 - parent: 2 - - uid: 10633 - components: - - type: Transform - pos: -29.5,-52.5 - parent: 2 - - uid: 10634 - components: - - type: Transform - pos: -29.5,-51.5 - parent: 2 - - uid: 10635 - components: - - type: Transform - pos: -29.5,-50.5 - parent: 2 - - uid: 10636 - components: - - type: Transform - pos: -44.5,-52.5 - parent: 2 - - uid: 10637 - components: - - type: Transform - pos: -44.5,-53.5 - parent: 2 - - uid: 10638 - components: - - type: Transform - pos: -44.5,-54.5 - parent: 2 - - uid: 10639 - components: - - type: Transform - pos: -45.5,-54.5 - parent: 2 - - uid: 10640 - components: - - type: Transform - pos: -46.5,-54.5 - parent: 2 - - uid: 10641 - components: - - type: Transform - pos: -47.5,-54.5 - parent: 2 - - uid: 10642 - components: - - type: Transform - pos: -48.5,-54.5 - parent: 2 - - uid: 10643 - components: - - type: Transform - pos: -49.5,-54.5 - parent: 2 - - uid: 10644 - components: - - type: Transform - pos: -43.5,-54.5 - parent: 2 - - uid: 10645 - components: - - type: Transform - pos: -42.5,-54.5 - parent: 2 - - uid: 10646 - components: - - type: Transform - pos: -41.5,-54.5 - parent: 2 - - uid: 10647 - components: - - type: Transform - pos: -40.5,-54.5 - parent: 2 - - uid: 10648 - components: - - type: Transform - pos: -39.5,-54.5 + pos: 9.5,-14.5 parent: 2 - uid: 10712 components: - type: Transform pos: 59.5,-52.5 parent: 2 + - uid: 10728 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 10734 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: -39.5,-57.5 + parent: 2 - uid: 10746 components: - type: Transform - pos: -48.5,-31.5 + pos: 9.5,-0.5 parent: 2 - uid: 10813 components: @@ -30169,30 +32709,30 @@ entities: - type: Transform pos: 19.5,-49.5 parent: 2 - - uid: 10944 + - uid: 10948 components: - type: Transform - pos: 14.5,-55.5 + pos: 24.5,-52.5 parent: 2 - - uid: 10945 + - uid: 10950 components: - type: Transform - pos: 14.5,-54.5 + pos: 6.5,1.5 parent: 2 - - uid: 10974 + - uid: 11083 components: - type: Transform - pos: -44.5,-34.5 + pos: 17.5,14.5 parent: 2 - uid: 11108 components: - type: Transform pos: 30.5,-65.5 parent: 2 - - uid: 11147 + - uid: 11163 components: - type: Transform - pos: -35.5,2.5 + pos: 24.5,11.5 parent: 2 - uid: 11164 components: @@ -30204,35 +32744,60 @@ entities: - type: Transform pos: -21.5,11.5 parent: 2 - - uid: 11208 + - uid: 11172 components: - type: Transform - pos: 20.5,2.5 + pos: 16.5,29.5 parent: 2 - - uid: 11210 + - uid: 11184 components: - type: Transform - pos: 19.5,2.5 + pos: 13.5,-1.5 parent: 2 - - uid: 11211 + - uid: 11186 components: - type: Transform - pos: 19.5,3.5 + pos: 6.5,0.5 parent: 2 - - uid: 11212 + - uid: 11190 components: - type: Transform - pos: 20.5,0.5 + pos: 11.5,-1.5 parent: 2 - - uid: 11213 + - uid: 11192 components: - type: Transform - pos: 19.5,0.5 + pos: 10.5,-0.5 parent: 2 - - uid: 11214 + - uid: 11202 components: - type: Transform - pos: 19.5,-0.5 + pos: 10.5,-5.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 11223 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 11231 + components: + - type: Transform + pos: 16.5,-5.5 parent: 2 - uid: 11242 components: @@ -30244,6 +32809,11 @@ entities: - type: Transform pos: 57.5,-56.5 parent: 2 + - uid: 11268 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 - uid: 11289 components: - type: Transform @@ -30254,20 +32824,10 @@ entities: - type: Transform pos: 52.5,-52.5 parent: 2 - - uid: 11338 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 2 - uid: 11340 components: - type: Transform - pos: -44.5,-35.5 - parent: 2 - - uid: 11341 - components: - - type: Transform - pos: -44.5,-36.5 + pos: -28.5,-11.5 parent: 2 - uid: 11432 components: @@ -30319,11 +32879,6 @@ entities: - type: Transform pos: 27.5,-44.5 parent: 2 - - uid: 11483 - components: - - type: Transform - pos: -28.5,-36.5 - parent: 2 - uid: 11484 components: - type: Transform @@ -30354,11 +32909,6 @@ entities: - type: Transform pos: 36.5,-41.5 parent: 2 - - uid: 11490 - components: - - type: Transform - pos: -29.5,-32.5 - parent: 2 - uid: 11494 components: - type: Transform @@ -30374,11 +32924,6 @@ entities: - type: Transform pos: 32.5,-44.5 parent: 2 - - uid: 11497 - components: - - type: Transform - pos: -34.5,-32.5 - parent: 2 - uid: 11508 components: - type: Transform @@ -30514,11 +33059,6 @@ entities: - type: Transform pos: 39.5,-31.5 parent: 2 - - uid: 11576 - components: - - type: Transform - pos: -26.5,-37.5 - parent: 2 - uid: 11593 components: - type: Transform @@ -30594,11 +33134,6 @@ entities: - type: Transform pos: -1.5,-44.5 parent: 2 - - uid: 11710 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 2 - uid: 11711 components: - type: Transform @@ -30849,6 +33384,11 @@ entities: - type: Transform pos: -6.5,-34.5 parent: 2 + - uid: 11768 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 - uid: 11769 components: - type: Transform @@ -30924,6 +33464,11 @@ entities: - type: Transform pos: -10.5,-12.5 parent: 2 + - uid: 11815 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 - uid: 11816 components: - type: Transform @@ -30959,16 +33504,16 @@ entities: - type: Transform pos: -21.5,10.5 parent: 2 + - uid: 11829 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 - uid: 11831 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 11832 - components: - - type: Transform - pos: -8.5,-51.5 - parent: 2 - uid: 11834 components: - type: Transform @@ -31034,6 +33579,16 @@ entities: - type: Transform pos: 57.5,-59.5 parent: 2 + - uid: 11871 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 - uid: 11909 components: - type: Transform @@ -31129,115 +33684,35 @@ entities: - type: Transform pos: -11.5,-11.5 parent: 2 - - uid: 11994 + - uid: 11970 components: - type: Transform - pos: 24.5,11.5 + pos: 12.5,-17.5 parent: 2 - - uid: 11995 + - uid: 11977 components: - type: Transform - pos: 24.5,10.5 + pos: 15.5,-6.5 parent: 2 - - uid: 11996 + - uid: 11999 components: - type: Transform - pos: 24.5,9.5 + pos: -0.5,-3.5 parent: 2 - - uid: 11997 + - uid: 12017 components: - type: Transform - pos: 24.5,8.5 + pos: -2.5,-3.5 parent: 2 - - uid: 12003 + - uid: 12020 components: - type: Transform - pos: 27.5,4.5 + pos: -1.5,-3.5 parent: 2 - - uid: 12004 + - uid: 12021 components: - type: Transform - pos: 28.5,4.5 - parent: 2 - - uid: 12005 - components: - - type: Transform - pos: 27.5,5.5 - parent: 2 - - uid: 12006 - components: - - type: Transform - pos: 27.5,6.5 - parent: 2 - - uid: 12007 - components: - - type: Transform - pos: 24.5,0.5 - parent: 2 - - uid: 12033 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 12034 - components: - - type: Transform - pos: 14.5,0.5 - parent: 2 - - uid: 12035 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 - - uid: 12036 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 2 - - uid: 12037 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 2 - - uid: 12038 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 2 - - uid: 12039 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 2 - - uid: 12041 - components: - - type: Transform - pos: 15.5,1.5 - parent: 2 - - uid: 12042 - components: - - type: Transform - pos: 15.5,2.5 - parent: 2 - - uid: 12043 - components: - - type: Transform - pos: 15.5,3.5 - parent: 2 - - uid: 12044 - components: - - type: Transform - pos: 15.5,4.5 - parent: 2 - - uid: 12045 - components: - - type: Transform - pos: 15.5,6.5 - parent: 2 - - uid: 12050 - components: - - type: Transform - pos: 15.5,5.5 + pos: -4.5,-13.5 parent: 2 - uid: 12077 components: @@ -31369,25 +33844,15 @@ entities: - type: Transform pos: -11.5,24.5 parent: 2 - - uid: 12136 + - uid: 12256 components: - type: Transform - pos: 16.5,3.5 + pos: 4.5,-14.5 parent: 2 - - uid: 12289 + - uid: 12257 components: - type: Transform - pos: 17.5,2.5 - parent: 2 - - uid: 12291 - components: - - type: Transform - pos: 17.5,0.5 - parent: 2 - - uid: 12292 - components: - - type: Transform - pos: 17.5,-0.5 + pos: -0.5,-14.5 parent: 2 - uid: 12297 components: @@ -31404,1020 +33869,115 @@ entities: - type: Transform pos: 6.5,9.5 parent: 2 - - uid: 12305 - components: - - type: Transform - pos: 13.5,3.5 - parent: 2 - - uid: 12306 - components: - - type: Transform - pos: 13.5,2.5 - parent: 2 - uid: 12308 components: - type: Transform - pos: 13.5,1.5 - parent: 2 - - uid: 12309 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 2 - - uid: 12310 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - - uid: 12311 - components: - - type: Transform - pos: 13.5,-2.5 - parent: 2 - - uid: 12343 - components: - - type: Transform - pos: -41.5,-34.5 + pos: 2.5,-14.5 parent: 2 - uid: 12370 components: - type: Transform pos: -25.5,4.5 parent: 2 - - uid: 12402 + - uid: 12389 components: - type: Transform - pos: -26.5,-26.5 - parent: 2 - - uid: 12403 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 2 - - uid: 12404 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 2 - - uid: 12405 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 2 - - uid: 12406 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 2 - - uid: 12408 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 2 - - uid: 12409 - components: - - type: Transform - pos: -27.5,-28.5 - parent: 2 - - uid: 12410 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 2 - - uid: 12411 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 2 - - uid: 12428 - components: - - type: Transform - pos: -33.5,-34.5 - parent: 2 - - uid: 12429 - components: - - type: Transform - pos: -32.5,-34.5 - parent: 2 - - uid: 12430 - components: - - type: Transform - pos: -31.5,-34.5 - parent: 2 - - uid: 12435 - components: - - type: Transform - pos: -27.5,-37.5 - parent: 2 - - uid: 12437 - components: - - type: Transform - pos: -33.5,-35.5 - parent: 2 - - uid: 12438 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 2 - - uid: 12443 - components: - - type: Transform - pos: -30.5,-32.5 - parent: 2 - - uid: 12444 - components: - - type: Transform - pos: -28.5,-33.5 - parent: 2 - - uid: 12445 - components: - - type: Transform - pos: -28.5,-32.5 - parent: 2 - - uid: 12463 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 2 - - uid: 12464 - components: - - type: Transform - pos: -34.5,-25.5 - parent: 2 - - uid: 12465 - components: - - type: Transform - pos: -35.5,-25.5 - parent: 2 - - uid: 12466 - components: - - type: Transform - pos: -36.5,-25.5 - parent: 2 - - uid: 12467 - components: - - type: Transform - pos: -38.5,-25.5 - parent: 2 - - uid: 12468 - components: - - type: Transform - pos: -37.5,-25.5 - parent: 2 - - uid: 12469 - components: - - type: Transform - pos: -38.5,-24.5 - parent: 2 - - uid: 12470 - components: - - type: Transform - pos: -38.5,-23.5 - parent: 2 - - uid: 12471 - components: - - type: Transform - pos: -38.5,-22.5 - parent: 2 - - uid: 12472 - components: - - type: Transform - pos: -38.5,-21.5 - parent: 2 - - uid: 12473 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 2 - - uid: 12474 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 2 - - uid: 12475 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 2 - - uid: 12476 - components: - - type: Transform - pos: -34.5,-21.5 + pos: -7.5,-3.5 parent: 2 - uid: 12477 components: - type: Transform - pos: -33.5,-21.5 - parent: 2 - - uid: 12478 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 2 - - uid: 12479 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 - - uid: 12480 - components: - - type: Transform - pos: -39.5,-19.5 - parent: 2 - - uid: 12481 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 2 - - uid: 12482 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 2 - - uid: 12483 - components: - - type: Transform - pos: -34.5,-19.5 + pos: 3.5,-13.5 parent: 2 - uid: 12484 components: - type: Transform - pos: -35.5,-19.5 + pos: -6.5,-3.5 parent: 2 - - uid: 12485 + - uid: 12489 components: - type: Transform - pos: -33.5,-19.5 + pos: 4.5,-3.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: 6.5,-14.5 parent: 2 - uid: 12509 components: - type: Transform - pos: -44.5,-23.5 + pos: 9.5,-15.5 parent: 2 - - uid: 12510 + - uid: 12543 components: - type: Transform - pos: -44.5,-22.5 + pos: -4.5,-12.5 parent: 2 - - uid: 12511 + - uid: 12546 components: - type: Transform - pos: -44.5,-24.5 - parent: 2 - - uid: 12512 - components: - - type: Transform - pos: -44.5,-21.5 - parent: 2 - - uid: 12513 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 2 - - uid: 12514 - components: - - type: Transform - pos: -44.5,-19.5 - parent: 2 - - uid: 12515 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 12516 - components: - - type: Transform - pos: -45.5,-22.5 - parent: 2 - - uid: 12517 - components: - - type: Transform - pos: -46.5,-22.5 - parent: 2 - - uid: 12518 - components: - - type: Transform - pos: -46.5,-21.5 - parent: 2 - - uid: 12519 - components: - - type: Transform - pos: -46.5,-23.5 - parent: 2 - - uid: 12594 - components: - - type: Transform - pos: -41.5,-40.5 - parent: 2 - - uid: 12595 - components: - - type: Transform - pos: -42.5,-40.5 - parent: 2 - - uid: 12611 - components: - - type: Transform - pos: -37.5,-34.5 + pos: -7.5,-0.5 parent: 2 - uid: 12614 components: - type: Transform pos: -22.5,16.5 parent: 2 - - uid: 12616 - components: - - type: Transform - pos: -47.5,-44.5 - parent: 2 - - uid: 12617 - components: - - type: Transform - pos: -47.5,-43.5 - parent: 2 - - uid: 12618 - components: - - type: Transform - pos: -48.5,-43.5 - parent: 2 - - uid: 12619 - components: - - type: Transform - pos: -49.5,-43.5 - parent: 2 - - uid: 12620 - components: - - type: Transform - pos: -51.5,-45.5 - parent: 2 - - uid: 12621 - components: - - type: Transform - pos: -50.5,-43.5 - parent: 2 - - uid: 12623 - components: - - type: Transform - pos: -50.5,-40.5 - parent: 2 - - uid: 12624 - components: - - type: Transform - pos: -51.5,-44.5 - parent: 2 - - uid: 12625 - components: - - type: Transform - pos: -51.5,-42.5 - parent: 2 - - uid: 12626 - components: - - type: Transform - pos: -50.5,-46.5 - parent: 2 - - uid: 12627 - components: - - type: Transform - pos: -50.5,-47.5 - parent: 2 - - uid: 12628 - components: - - type: Transform - pos: -50.5,-48.5 - parent: 2 - - uid: 12629 - components: - - type: Transform - pos: -51.5,-48.5 - parent: 2 - - uid: 12630 - components: - - type: Transform - pos: -49.5,-46.5 - parent: 2 - - uid: 12631 - components: - - type: Transform - pos: -48.5,-46.5 - parent: 2 - uid: 12632 components: - type: Transform - pos: -48.5,-45.5 - parent: 2 - - uid: 12633 - components: - - type: Transform - pos: -51.5,-46.5 - parent: 2 - - uid: 12634 - components: - - type: Transform - pos: -52.5,-46.5 - parent: 2 - - uid: 12635 - components: - - type: Transform - pos: -53.5,-46.5 - parent: 2 - - uid: 12636 - components: - - type: Transform - pos: -53.5,-45.5 - parent: 2 - - uid: 12637 - components: - - type: Transform - pos: -50.5,-39.5 - parent: 2 - - uid: 12638 - components: - - type: Transform - pos: -50.5,-38.5 - parent: 2 - - uid: 12639 - components: - - type: Transform - pos: -51.5,-38.5 - parent: 2 - - uid: 12640 - components: - - type: Transform - pos: -51.5,-40.5 - parent: 2 - - uid: 12641 - components: - - type: Transform - pos: -52.5,-40.5 - parent: 2 - - uid: 12642 - components: - - type: Transform - pos: -53.5,-40.5 - parent: 2 - - uid: 12643 - components: - - type: Transform - pos: -53.5,-41.5 - parent: 2 - - uid: 12644 - components: - - type: Transform - pos: -51.5,-41.5 - parent: 2 - - uid: 12645 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 2 - - uid: 12646 - components: - - type: Transform - pos: -47.5,-30.5 - parent: 2 - - uid: 12647 - components: - - type: Transform - pos: -48.5,-30.5 - parent: 2 - - uid: 12658 - components: - - type: Transform - pos: -51.5,-35.5 - parent: 2 - - uid: 12659 - components: - - type: Transform - pos: -50.5,-35.5 - parent: 2 - - uid: 12661 - components: - - type: Transform - pos: -53.5,-33.5 - parent: 2 - - uid: 12662 - components: - - type: Transform - pos: -53.5,-32.5 - parent: 2 - - uid: 12664 - components: - - type: Transform - pos: -53.5,-28.5 - parent: 2 - - uid: 12665 - components: - - type: Transform - pos: -53.5,-27.5 - parent: 2 - - uid: 12667 - components: - - type: Transform - pos: -51.5,-25.5 - parent: 2 - - uid: 12668 - components: - - type: Transform - pos: -50.5,-25.5 - parent: 2 - - uid: 12671 - components: - - type: Transform - pos: -48.5,-27.5 - parent: 2 - - uid: 12672 - components: - - type: Transform - pos: -48.5,-28.5 - parent: 2 - - uid: 12678 - components: - - type: Transform - pos: -32.5,-28.5 - parent: 2 - - uid: 12679 - components: - - type: Transform - pos: -32.5,-29.5 - parent: 2 - - uid: 12680 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 - - uid: 12681 - components: - - type: Transform - pos: -33.5,-30.5 - parent: 2 - - uid: 12682 - components: - - type: Transform - pos: -34.5,-30.5 - parent: 2 - - uid: 12683 - components: - - type: Transform - pos: -35.5,-30.5 - parent: 2 - - uid: 12684 - components: - - type: Transform - pos: -36.5,-30.5 - parent: 2 - - uid: 12685 - components: - - type: Transform - pos: -37.5,-30.5 - parent: 2 - - uid: 12686 - components: - - type: Transform - pos: -38.5,-30.5 - parent: 2 - - uid: 12687 - components: - - type: Transform - pos: -37.5,-29.5 - parent: 2 - - uid: 12688 - components: - - type: Transform - pos: -37.5,-28.5 - parent: 2 - - uid: 12689 - components: - - type: Transform - pos: -34.5,-29.5 - parent: 2 - - uid: 12690 - components: - - type: Transform - pos: -34.5,-28.5 - parent: 2 - - uid: 12691 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 2 - - uid: 12692 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 2 - - uid: 12698 - components: - - type: Transform - pos: -50.5,-27.5 - parent: 2 - - uid: 12711 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 2 - - uid: 12712 - components: - - type: Transform - pos: 6.5,-56.5 - parent: 2 - - uid: 12713 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 2 - - uid: 12718 - components: - - type: Transform - pos: 11.5,-53.5 - parent: 2 - - uid: 12726 - components: - - type: Transform - pos: -8.5,-65.5 - parent: 2 - - uid: 12729 - components: - - type: Transform - pos: 11.5,-55.5 - parent: 2 - - uid: 12730 - components: - - type: Transform - pos: 11.5,-54.5 - parent: 2 - - uid: 12731 - components: - - type: Transform - pos: 11.5,-61.5 - parent: 2 - - uid: 12732 - components: - - type: Transform - pos: 11.5,-62.5 - parent: 2 - - uid: 12733 - components: - - type: Transform - pos: 11.5,-63.5 - parent: 2 - - uid: 12734 - components: - - type: Transform - pos: 11.5,-64.5 - parent: 2 - - uid: 12735 - components: - - type: Transform - pos: 11.5,-65.5 - parent: 2 - - uid: 12736 - components: - - type: Transform - pos: 11.5,-66.5 - parent: 2 - - uid: 12737 - components: - - type: Transform - pos: 11.5,-67.5 - parent: 2 - - uid: 12738 - components: - - type: Transform - pos: 11.5,-68.5 - parent: 2 - - uid: 12739 - components: - - type: Transform - pos: 11.5,-69.5 - parent: 2 - - uid: 12740 - components: - - type: Transform - pos: 11.5,-70.5 - parent: 2 - - uid: 12741 - components: - - type: Transform - pos: 11.5,-71.5 - parent: 2 - - uid: 12742 - components: - - type: Transform - pos: 10.5,-68.5 - parent: 2 - - uid: 12743 - components: - - type: Transform - pos: 9.5,-68.5 - parent: 2 - - uid: 12744 - components: - - type: Transform - pos: 8.5,-68.5 - parent: 2 - - uid: 12745 - components: - - type: Transform - pos: 10.5,-61.5 - parent: 2 - - uid: 12746 - components: - - type: Transform - pos: 9.5,-61.5 - parent: 2 - - uid: 12747 - components: - - type: Transform - pos: 8.5,-61.5 - parent: 2 - - uid: 12748 - components: - - type: Transform - pos: 8.5,-62.5 - parent: 2 - - uid: 12749 - components: - - type: Transform - pos: 8.5,-67.5 - parent: 2 - - uid: 12750 - components: - - type: Transform - pos: 10.5,-64.5 - parent: 2 - - uid: 12751 - components: - - type: Transform - pos: 9.5,-64.5 - parent: 2 - - uid: 12752 - components: - - type: Transform - pos: 9.5,-65.5 - parent: 2 - - uid: 12753 - components: - - type: Transform - pos: 12.5,-61.5 - parent: 2 - - uid: 12754 - components: - - type: Transform - pos: 13.5,-61.5 - parent: 2 - - uid: 12755 - components: - - type: Transform - pos: 13.5,-60.5 - parent: 2 - - uid: 12756 - components: - - type: Transform - pos: 13.5,-62.5 - parent: 2 - - uid: 12757 - components: - - type: Transform - pos: 13.5,-63.5 - parent: 2 - - uid: 12758 - components: - - type: Transform - pos: 12.5,-68.5 + pos: -10.5,-54.5 parent: 2 - uid: 12759 components: - type: Transform - pos: 13.5,-68.5 + pos: 3.5,-94.5 parent: 2 - uid: 12760 components: - type: Transform - pos: 13.5,-67.5 + pos: 3.5,-99.5 parent: 2 - uid: 12761 components: - type: Transform - pos: 13.5,-66.5 + pos: -2.5,-95.5 parent: 2 - uid: 12762 components: - type: Transform - pos: 13.5,-69.5 + pos: 5.5,-95.5 parent: 2 - uid: 12763 components: - type: Transform - pos: 12.5,-71.5 + pos: -1.5,-95.5 parent: 2 - uid: 12764 components: - type: Transform - pos: 13.5,-71.5 + pos: 2.5,-89.5 parent: 2 - uid: 12765 components: - type: Transform - pos: 10.5,-71.5 + pos: 3.5,-96.5 parent: 2 - uid: 12766 components: - type: Transform - pos: 9.5,-71.5 + pos: 4.5,-95.5 parent: 2 - - uid: 12770 + - uid: 12768 components: - type: Transform - pos: 12.5,-64.5 + pos: 3.5,-90.5 parent: 2 - - uid: 12771 + - uid: 12769 components: - type: Transform - pos: 13.5,-64.5 - parent: 2 - - uid: 12780 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 2 - - uid: 12803 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 2 - - uid: 12804 - components: - - type: Transform - pos: -9.5,-64.5 - parent: 2 - - uid: 12805 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 2 - - uid: 12806 - components: - - type: Transform - pos: -7.5,-64.5 - parent: 2 - - uid: 12807 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 2 - - uid: 12808 - components: - - type: Transform - pos: -6.5,-65.5 - parent: 2 - - uid: 12809 - components: - - type: Transform - pos: -8.5,-59.5 - parent: 2 - - uid: 12810 - components: - - type: Transform - pos: -8.5,-60.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - pos: -8.5,-61.5 - parent: 2 - - uid: 12812 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 2 - - uid: 12813 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 2 - - uid: 12814 - components: - - type: Transform - pos: -8.5,-66.5 - parent: 2 - - uid: 12815 - components: - - type: Transform - pos: -8.5,-67.5 - parent: 2 - - uid: 12816 - components: - - type: Transform - pos: -8.5,-68.5 - parent: 2 - - uid: 12817 - components: - - type: Transform - pos: -8.5,-69.5 - parent: 2 - - uid: 12818 - components: - - type: Transform - pos: -8.5,-70.5 - parent: 2 - - uid: 12819 - components: - - type: Transform - pos: -8.5,-71.5 - parent: 2 - - uid: 12820 - components: - - type: Transform - pos: -7.5,-71.5 - parent: 2 - - uid: 12821 - components: - - type: Transform - pos: -6.5,-71.5 - parent: 2 - - uid: 12822 - components: - - type: Transform - pos: -9.5,-71.5 - parent: 2 - - uid: 12823 - components: - - type: Transform - pos: -10.5,-71.5 - parent: 2 - - uid: 12824 - components: - - type: Transform - pos: -9.5,-68.5 - parent: 2 - - uid: 12825 - components: - - type: Transform - pos: -10.5,-68.5 - parent: 2 - - uid: 12826 - components: - - type: Transform - pos: -10.5,-69.5 - parent: 2 - - uid: 12827 - components: - - type: Transform - pos: -10.5,-67.5 - parent: 2 - - uid: 12828 - components: - - type: Transform - pos: -10.5,-66.5 - parent: 2 - - uid: 12829 - components: - - type: Transform - pos: -8.5,-68.5 - parent: 2 - - uid: 12830 - components: - - type: Transform - pos: -7.5,-68.5 - parent: 2 - - uid: 12831 - components: - - type: Transform - pos: -6.5,-68.5 - parent: 2 - - uid: 12832 - components: - - type: Transform - pos: -5.5,-68.5 - parent: 2 - - uid: 12833 - components: - - type: Transform - pos: -5.5,-67.5 - parent: 2 - - uid: 12835 - components: - - type: Transform - pos: -7.5,-61.5 - parent: 2 - - uid: 12836 - components: - - type: Transform - pos: -6.5,-61.5 - parent: 2 - - uid: 12837 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 2 - - uid: 12838 - components: - - type: Transform - pos: -5.5,-62.5 - parent: 2 - - uid: 12839 - components: - - type: Transform - pos: -9.5,-61.5 + pos: 3.5,-95.5 parent: 2 - uid: 12840 components: @@ -32439,31 +33999,6 @@ entities: - type: Transform pos: -10.5,-63.5 parent: 2 - - uid: 12848 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 2 - - uid: 12849 - components: - - type: Transform - pos: -3.5,-55.5 - parent: 2 - - uid: 12850 - components: - - type: Transform - pos: -3.5,-56.5 - parent: 2 - - uid: 12852 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 2 - - uid: 12853 - components: - - type: Transform - pos: -7.5,-51.5 - parent: 2 - uid: 12854 components: - type: Transform @@ -32474,181 +34009,6 @@ entities: - type: Transform pos: -34.5,-4.5 parent: 2 - - uid: 12888 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 2 - - uid: 12890 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 2 - - uid: 12902 - components: - - type: Transform - pos: -41.5,-49.5 - parent: 2 - - uid: 12903 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 12904 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - - uid: 12905 - components: - - type: Transform - pos: -41.5,-45.5 - parent: 2 - - uid: 12906 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - - uid: 12907 - components: - - type: Transform - pos: -41.5,-48.5 - parent: 2 - - uid: 12908 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 12909 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - - uid: 12910 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 12911 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 12912 - components: - - type: Transform - pos: -40.5,-40.5 - parent: 2 - - uid: 12913 - components: - - type: Transform - pos: -39.5,-40.5 - parent: 2 - - uid: 12914 - components: - - type: Transform - pos: -38.5,-40.5 - parent: 2 - - uid: 12915 - components: - - type: Transform - pos: -37.5,-40.5 - parent: 2 - - uid: 12916 - components: - - type: Transform - pos: -37.5,-39.5 - parent: 2 - - uid: 12917 - components: - - type: Transform - pos: -37.5,-38.5 - parent: 2 - - uid: 12918 - components: - - type: Transform - pos: -37.5,-37.5 - parent: 2 - - uid: 12924 - components: - - type: Transform - pos: -33.5,-42.5 - parent: 2 - - uid: 12925 - components: - - type: Transform - pos: -33.5,-43.5 - parent: 2 - - uid: 12926 - components: - - type: Transform - pos: -33.5,-44.5 - parent: 2 - - uid: 12927 - components: - - type: Transform - pos: -33.5,-45.5 - parent: 2 - - uid: 12928 - components: - - type: Transform - pos: -32.5,-44.5 - parent: 2 - - uid: 12929 - components: - - type: Transform - pos: -31.5,-44.5 - parent: 2 - - uid: 12945 - components: - - type: Transform - pos: -26.5,-39.5 - parent: 2 - - uid: 12946 - components: - - type: Transform - pos: -26.5,-40.5 - parent: 2 - - uid: 12947 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 2 - - uid: 12948 - components: - - type: Transform - pos: -27.5,-41.5 - parent: 2 - - uid: 12949 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 2 - - uid: 12950 - components: - - type: Transform - pos: -27.5,-43.5 - parent: 2 - - uid: 12951 - components: - - type: Transform - pos: -27.5,-44.5 - parent: 2 - - uid: 12952 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - - uid: 12953 - components: - - type: Transform - pos: -27.5,-46.5 - parent: 2 - - uid: 12954 - components: - - type: Transform - pos: -27.5,-47.5 - parent: 2 - uid: 12955 components: - type: Transform @@ -32719,206 +34079,121 @@ entities: - type: Transform pos: -33.5,14.5 parent: 2 - - uid: 12998 + - uid: 12979 components: - type: Transform - pos: -30.5,-24.5 + pos: 16.5,-4.5 parent: 2 - - uid: 12999 + - uid: 12992 components: - type: Transform - pos: -30.5,-25.5 + pos: 3.5,-10.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: 3.5,-8.5 parent: 2 - uid: 13028 components: - type: Transform pos: -20.5,-5.5 parent: 2 + - uid: 13034 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 - uid: 13154 components: - type: Transform pos: -7.5,9.5 parent: 2 - - uid: 13183 + - uid: 13155 components: - type: Transform - pos: 11.5,6.5 - parent: 2 - - uid: 13184 - components: - - type: Transform - pos: 11.5,5.5 + pos: 8.5,-3.5 parent: 2 - uid: 13185 components: - type: Transform - pos: 10.5,5.5 + pos: -52.5,-22.5 parent: 2 - - uid: 13186 + - uid: 13198 components: - type: Transform - pos: 9.5,5.5 - parent: 2 - - uid: 13204 - components: - - type: Transform - pos: -27.5,-22.5 + pos: 27.5,28.5 parent: 2 - uid: 13230 components: - type: Transform pos: 9.5,9.5 parent: 2 - - uid: 13231 + - uid: 13235 components: - type: Transform - pos: 10.5,9.5 + pos: -4.5,-14.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 13263 + components: + - type: Transform + pos: 3.5,-3.5 parent: 2 - uid: 13275 components: - type: Transform pos: 48.5,-47.5 parent: 2 - - uid: 13277 - components: - - type: Transform - pos: -7.5,-50.5 - parent: 2 - - uid: 13278 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 2 - - uid: 13279 - components: - - type: Transform - pos: -7.5,-48.5 - parent: 2 - - uid: 13280 - components: - - type: Transform - pos: -6.5,-48.5 - parent: 2 - - uid: 13281 - components: - - type: Transform - pos: -5.5,-48.5 - parent: 2 - - uid: 13282 - components: - - type: Transform - pos: -4.5,-48.5 - parent: 2 - - uid: 13283 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 2 - - uid: 13284 - components: - - type: Transform - pos: -2.5,-48.5 - parent: 2 - - uid: 13285 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 2 - - uid: 13286 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 2 - - uid: 13287 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 2 - - uid: 13288 - components: - - type: Transform - pos: 1.5,-48.5 - parent: 2 - - uid: 13289 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 2 - - uid: 13290 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 2 - - uid: 13291 - components: - - type: Transform - pos: 4.5,-48.5 - parent: 2 - - uid: 13292 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 2 - - uid: 13293 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 2 - - uid: 13295 - components: - - type: Transform - pos: 1.5,-49.5 - parent: 2 - uid: 13296 components: - type: Transform - pos: 1.5,-50.5 - parent: 2 - - uid: 13297 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 2 - - uid: 13298 - components: - - type: Transform - pos: 2.5,-51.5 - parent: 2 - - uid: 13299 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 2 - - uid: 13300 - components: - - type: Transform - pos: 4.5,-51.5 - parent: 2 - - uid: 13301 - components: - - type: Transform - pos: 0.5,-51.5 - parent: 2 - - uid: 13302 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 2 - - uid: 13303 - components: - - type: Transform - pos: -1.5,-51.5 + pos: -3.5,-7.5 parent: 2 - uid: 13307 components: - type: Transform pos: 51.5,-52.5 parent: 2 - - uid: 13313 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 2 - uid: 13314 components: - type: Transform @@ -33024,25 +34299,15 @@ entities: - type: Transform pos: 31.5,-3.5 parent: 2 - - uid: 13335 + - uid: 13352 components: - type: Transform - pos: 30.5,-3.5 + pos: 30.5,-14.5 parent: 2 - - uid: 13336 + - uid: 13405 components: - type: Transform - pos: 29.5,-3.5 - parent: 2 - - uid: 13337 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 2 - - uid: 13338 - components: - - type: Transform - pos: 27.5,-3.5 + pos: 1.5,-44.5 parent: 2 - uid: 13524 components: @@ -33054,6 +34319,36 @@ entities: - type: Transform pos: -18.5,16.5 parent: 2 + - uid: 13647 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 - uid: 13700 components: - type: Transform @@ -33099,56 +34394,56 @@ entities: - type: Transform pos: 49.5,-4.5 parent: 2 + - uid: 13751 + components: + - type: Transform + pos: -51.5,-50.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 13784 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 - uid: 13785 components: - type: Transform pos: -65.5,-7.5 parent: 2 - - uid: 13914 + - uid: 14145 components: - type: Transform - pos: 15.5,7.5 + pos: 37.5,26.5 parent: 2 - uid: 14161 components: - type: Transform pos: 45.5,-6.5 parent: 2 - - uid: 14210 - components: - - type: Transform - pos: 15.5,11.5 - parent: 2 - uid: 14248 components: - type: Transform pos: -21.5,22.5 parent: 2 - - uid: 14258 + - uid: 14277 components: - type: Transform - pos: 15.5,8.5 + pos: -41.5,-54.5 parent: 2 - - uid: 14419 + - uid: 14338 components: - type: Transform - pos: -3.5,-13.5 + pos: 45.5,20.5 parent: 2 - uid: 14420 components: - type: Transform pos: -8.5,-20.5 parent: 2 - - uid: 14421 - components: - - type: Transform - pos: -7.5,-55.5 - parent: 2 - - uid: 14424 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 2 - uid: 14431 components: - type: Transform @@ -33169,11 +34464,6 @@ entities: - type: Transform pos: -21.5,-0.5 parent: 2 - - uid: 14440 - components: - - type: Transform - pos: -44.5,-37.5 - parent: 2 - uid: 14442 components: - type: Transform @@ -33184,51 +34474,16 @@ entities: - type: Transform pos: -29.5,4.5 parent: 2 - - uid: 14472 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 2 - - uid: 14497 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 2 - uid: 14508 components: - type: Transform pos: -18.5,15.5 parent: 2 - - uid: 14519 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 2 - - uid: 14520 - components: - - type: Transform - pos: 11.5,-18.5 - parent: 2 - - uid: 14521 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 2 - - uid: 14522 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 2 - uid: 14529 components: - type: Transform pos: -3.5,11.5 parent: 2 - - uid: 14533 - components: - - type: Transform - pos: -44.5,-39.5 - parent: 2 - uid: 14537 components: - type: Transform @@ -33239,11 +34494,6 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 2 - - uid: 14569 - components: - - type: Transform - pos: -7.5,-53.5 - parent: 2 - uid: 14614 components: - type: Transform @@ -33254,31 +34504,21 @@ entities: - type: Transform pos: -28.5,2.5 parent: 2 - - uid: 14784 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 - uid: 14786 components: - type: Transform pos: -20.5,-9.5 parent: 2 - - uid: 14795 - components: - - type: Transform - pos: -7.5,-54.5 - parent: 2 - - uid: 14799 - components: - - type: Transform - pos: -4.5,-13.5 - parent: 2 - uid: 14804 components: - type: Transform pos: -25.5,15.5 parent: 2 + - uid: 14824 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 - uid: 14831 components: - type: Transform @@ -33294,6 +34534,11 @@ entities: - type: Transform pos: -24.5,16.5 parent: 2 + - uid: 14842 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 2 - uid: 14848 components: - type: Transform @@ -33319,11 +34564,86 @@ entities: - type: Transform pos: -21.5,9.5 parent: 2 + - uid: 15036 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + pos: 0.5,-95.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + pos: 1.5,-95.5 + parent: 2 + - uid: 15062 + components: + - type: Transform + pos: -3.5,-95.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + pos: 3.5,-92.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + pos: 3.5,-93.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + pos: 2.5,-95.5 + parent: 2 + - uid: 15072 + components: + - type: Transform + pos: 3.5,-89.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + pos: 3.5,-91.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: 1.5,-89.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: -0.5,-95.5 + parent: 2 + - uid: 15158 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 - uid: 15178 components: - type: Transform pos: 44.5,-39.5 parent: 2 + - uid: 15203 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 - uid: 15266 components: - type: Transform @@ -33339,10 +34659,35 @@ entities: - type: Transform pos: 48.5,-31.5 parent: 2 - - uid: 15303 + - uid: 15318 components: - type: Transform - pos: -41.5,-37.5 + pos: 38.5,24.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 15339 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 15343 + components: + - type: Transform + pos: 42.5,20.5 parent: 2 - uid: 15350 components: @@ -33604,11 +34949,6 @@ entities: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 15538 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 2 - uid: 15539 components: - type: Transform @@ -33634,11 +34974,6 @@ entities: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 15544 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - uid: 15545 components: - type: Transform @@ -33744,11 +35079,6 @@ entities: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 15569 - components: - - type: Transform - pos: 14.5,-47.5 - parent: 2 - uid: 15573 components: - type: Transform @@ -33904,36 +35234,6 @@ entities: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 15605 - components: - - type: Transform - pos: 9.5,-42.5 - parent: 2 - - uid: 15606 - components: - - type: Transform - pos: 8.5,-42.5 - parent: 2 - - uid: 15607 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 2 - - uid: 15608 - components: - - type: Transform - pos: 9.5,-44.5 - parent: 2 - - uid: 15609 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 2 - - uid: 15610 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 2 - uid: 15611 components: - type: Transform @@ -33944,21 +35244,6 @@ entities: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 15613 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 2 - - uid: 15614 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 2 - - uid: 15615 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 2 - uid: 15623 components: - type: Transform @@ -34039,11 +35324,51 @@ entities: - type: Transform pos: 39.5,-37.5 parent: 2 + - uid: 15789 + components: + - type: Transform + pos: -55.5,-59.5 + parent: 2 - uid: 15790 components: - type: Transform pos: 38.5,-35.5 parent: 2 + - uid: 15793 + components: + - type: Transform + pos: -61.5,-60.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + pos: -57.5,-57.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + pos: -57.5,-59.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + pos: -61.5,-59.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + pos: -56.5,-57.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + pos: -60.5,-58.5 + parent: 2 + - uid: 15806 + components: + - type: Transform + pos: -57.5,-61.5 + parent: 2 - uid: 15825 components: - type: Transform @@ -34054,6 +35379,11 @@ entities: - type: Transform pos: 40.5,-37.5 parent: 2 + - uid: 15834 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 - uid: 15853 components: - type: Transform @@ -34064,11 +35394,26 @@ entities: - type: Transform pos: -14.5,-48.5 parent: 2 + - uid: 16022 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 - uid: 16031 components: - type: Transform pos: -15.5,11.5 parent: 2 + - uid: 16044 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 16046 + components: + - type: Transform + pos: -54.5,-22.5 + parent: 2 - uid: 16064 components: - type: Transform @@ -34104,6 +35449,11 @@ entities: - type: Transform pos: -13.5,13.5 parent: 2 + - uid: 16076 + components: + - type: Transform + pos: -56.5,-59.5 + parent: 2 - uid: 16084 components: - type: Transform @@ -34129,36 +35479,6 @@ entities: - type: Transform pos: 27.5,-55.5 parent: 2 - - uid: 16089 - components: - - type: Transform - pos: 26.5,-55.5 - parent: 2 - - uid: 16090 - components: - - type: Transform - pos: 25.5,-55.5 - parent: 2 - - uid: 16091 - components: - - type: Transform - pos: 24.5,-55.5 - parent: 2 - - uid: 16092 - components: - - type: Transform - pos: 24.5,-56.5 - parent: 2 - - uid: 16093 - components: - - type: Transform - pos: 23.5,-56.5 - parent: 2 - - uid: 16094 - components: - - type: Transform - pos: 22.5,-56.5 - parent: 2 - uid: 16104 components: - type: Transform @@ -34184,6 +35504,11 @@ entities: - type: Transform pos: -32.5,12.5 parent: 2 + - uid: 16114 + components: + - type: Transform + pos: -57.5,-60.5 + parent: 2 - uid: 16193 components: - type: Transform @@ -34204,10 +35529,180 @@ entities: - type: Transform pos: -27.5,-4.5 parent: 2 - - uid: 16320 + - uid: 16325 components: - type: Transform - pos: -25.5,-15.5 + pos: -56.5,-61.5 + parent: 2 + - uid: 16326 + components: + - type: Transform + pos: -63.5,-59.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 16350 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 16370 + components: + - type: Transform + pos: -36.5,-36.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + pos: -35.5,-36.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + pos: -34.5,-36.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 16378 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 2 + - uid: 16381 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 16384 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 16385 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 16386 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 16420 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 16475 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 16486 + components: + - type: Transform + pos: -33.5,-48.5 parent: 2 - uid: 16539 components: @@ -34404,6 +35899,101 @@ entities: - type: Transform pos: -55.5,-11.5 parent: 2 + - uid: 16579 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 16580 + components: + - type: Transform + pos: -49.5,-46.5 + parent: 2 + - uid: 16617 + components: + - type: Transform + pos: -49.5,-45.5 + parent: 2 + - uid: 16621 + components: + - type: Transform + pos: -58.5,-57.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + pos: -58.5,-59.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + pos: -62.5,-59.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 16626 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - uid: 16627 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 16628 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + pos: -33.5,-53.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 16631 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 16632 + components: + - type: Transform + pos: -30.5,-55.5 + parent: 2 + - uid: 16633 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 + - uid: 16634 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - uid: 16635 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + pos: -33.5,-57.5 + parent: 2 + - uid: 16638 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 - uid: 16644 components: - type: Transform @@ -34429,11 +36019,6 @@ entities: - type: Transform pos: 22.5,-43.5 parent: 2 - - uid: 16655 - components: - - type: Transform - pos: 22.5,-41.5 - parent: 2 - uid: 16656 components: - type: Transform @@ -34442,22 +36027,97 @@ entities: - uid: 16657 components: - type: Transform - pos: -19.5,-57.5 + pos: -33.5,-59.5 + parent: 2 + - uid: 16666 + components: + - type: Transform + pos: -33.5,-60.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: -33.5,-61.5 parent: 2 - uid: 16671 components: - type: Transform pos: 33.5,-31.5 parent: 2 + - uid: 16675 + components: + - type: Transform + pos: -33.5,-62.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + pos: -33.5,-64.5 + parent: 2 + - uid: 16683 + components: + - type: Transform + pos: -33.5,-65.5 + parent: 2 + - uid: 16688 + components: + - type: Transform + pos: -36.5,-64.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + pos: -59.5,-59.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + pos: 3.5,-97.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: 3.5,-100.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + pos: 3.5,-101.5 + parent: 2 + - uid: 16712 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 2 + - uid: 16713 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 - uid: 16716 components: - type: Transform pos: 34.5,-31.5 parent: 2 + - uid: 16717 + components: + - type: Transform + pos: -35.5,-62.5 + parent: 2 + - uid: 16718 + components: + - type: Transform + pos: -34.5,-62.5 + parent: 2 - uid: 16728 components: - type: Transform - pos: -27.5,-3.5 + pos: -58.5,-58.5 parent: 2 - uid: 16765 components: @@ -34474,15 +36134,15 @@ entities: - type: Transform pos: 37.5,-31.5 parent: 2 - - uid: 16781 + - uid: 16785 components: - type: Transform - pos: -12.5,-63.5 + pos: -35.5,-70.5 parent: 2 - - uid: 16782 + - uid: 16787 components: - type: Transform - pos: -12.5,-64.5 + pos: -34.5,-70.5 parent: 2 - uid: 16791 components: @@ -34499,131 +36159,246 @@ entities: - type: Transform pos: 29.5,-25.5 parent: 2 + - uid: 16795 + components: + - type: Transform + pos: -33.5,-71.5 + parent: 2 + - uid: 16796 + components: + - type: Transform + pos: -33.5,-70.5 + parent: 2 + - uid: 16797 + components: + - type: Transform + pos: -33.5,-72.5 + parent: 2 - uid: 16800 components: - type: Transform - pos: -12.5,-65.5 + pos: -33.5,-73.5 + parent: 2 + - uid: 16801 + components: + - type: Transform + pos: -33.5,-74.5 parent: 2 - uid: 16802 components: - type: Transform - pos: -19.5,-58.5 + pos: -33.5,-75.5 parent: 2 - uid: 16803 components: - type: Transform - pos: -20.5,-58.5 + pos: -33.5,-76.5 parent: 2 - uid: 16804 components: - type: Transform - pos: -21.5,-58.5 + pos: -33.5,-77.5 parent: 2 - uid: 16805 components: - type: Transform - pos: -21.5,-59.5 + pos: -33.5,-78.5 parent: 2 - uid: 16806 components: - type: Transform - pos: -21.5,-60.5 + pos: -33.5,-79.5 parent: 2 - uid: 16807 components: - type: Transform - pos: -21.5,-61.5 + pos: -33.5,-80.5 parent: 2 - uid: 16808 components: - type: Transform - pos: -21.5,-62.5 + pos: -33.5,-81.5 parent: 2 - uid: 16809 components: - type: Transform - pos: -22.5,-63.5 + pos: -33.5,-82.5 parent: 2 - uid: 16810 components: - type: Transform - pos: -21.5,-63.5 + pos: -33.5,-83.5 parent: 2 - uid: 16811 components: - type: Transform - pos: -20.5,-63.5 + pos: -36.5,-80.5 parent: 2 - uid: 16812 components: - type: Transform - pos: -19.5,-63.5 + pos: -36.5,-79.5 parent: 2 - uid: 16813 components: - type: Transform - pos: -18.5,-63.5 + pos: -30.5,-80.5 parent: 2 - uid: 16814 components: - type: Transform - pos: -17.5,-63.5 + pos: -30.5,-79.5 parent: 2 - uid: 16815 components: - type: Transform - pos: -16.5,-63.5 + pos: -31.5,-79.5 parent: 2 - uid: 16816 components: - type: Transform - pos: -14.5,-63.5 + pos: -32.5,-79.5 parent: 2 - uid: 16817 components: - type: Transform - pos: -13.5,-63.5 + pos: -35.5,-79.5 parent: 2 - uid: 16819 components: - type: Transform - pos: -15.5,-63.5 + pos: -34.5,-79.5 + parent: 2 + - uid: 16820 + components: + - type: Transform + pos: -37.5,-76.5 parent: 2 - uid: 16821 components: - type: Transform - pos: -11.5,-65.5 + pos: -36.5,-76.5 parent: 2 - uid: 16822 components: - type: Transform - pos: -22.5,-62.5 + pos: -35.5,-76.5 parent: 2 - uid: 16823 components: - type: Transform - pos: -23.5,-62.5 + pos: -34.5,-76.5 parent: 2 - uid: 16824 components: - type: Transform - pos: -24.5,-62.5 + pos: -32.5,-76.5 parent: 2 - uid: 16825 components: - type: Transform - pos: -25.5,-62.5 + pos: -31.5,-75.5 parent: 2 - uid: 16826 components: - type: Transform - pos: -26.5,-62.5 + pos: -31.5,-76.5 + parent: 2 + - uid: 16828 + components: + - type: Transform + pos: -31.5,-77.5 + parent: 2 + - uid: 16829 + components: + - type: Transform + pos: -31.5,-73.5 + parent: 2 + - uid: 16830 + components: + - type: Transform + pos: -31.5,-71.5 parent: 2 - uid: 16831 components: - type: Transform pos: 28.5,-25.5 parent: 2 + - uid: 16832 + components: + - type: Transform + pos: -31.5,-72.5 + parent: 2 + - uid: 16833 + components: + - type: Transform + pos: -36.5,-73.5 + parent: 2 + - uid: 16836 + components: + - type: Transform + pos: -36.5,-72.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + pos: -36.5,-71.5 + parent: 2 + - uid: 16838 + components: + - type: Transform + pos: -35.5,-72.5 + parent: 2 + - uid: 16850 + components: + - type: Transform + pos: -34.5,-72.5 + parent: 2 + - uid: 16851 + components: + - type: Transform + pos: -32.5,-72.5 + parent: 2 + - uid: 16852 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 16853 + components: + - type: Transform + pos: -36.5,-68.5 + parent: 2 + - uid: 16854 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 + - uid: 16855 + components: + - type: Transform + pos: -34.5,-68.5 + parent: 2 + - uid: 16856 + components: + - type: Transform + pos: -33.5,-68.5 + parent: 2 + - uid: 16857 + components: + - type: Transform + pos: -33.5,-69.5 + parent: 2 + - uid: 16867 + components: + - type: Transform + pos: -60.5,-60.5 + parent: 2 + - uid: 16880 + components: + - type: Transform + pos: 3.5,-98.5 + parent: 2 - uid: 16881 components: - type: Transform @@ -34634,6 +36409,21 @@ entities: - type: Transform pos: -35.5,-4.5 parent: 2 + - uid: 16889 + components: + - type: Transform + pos: -60.5,-59.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + pos: -61.5,-58.5 + parent: 2 + - uid: 16943 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 - uid: 16985 components: - type: Transform @@ -34649,40 +36439,140 @@ entities: - type: Transform pos: 25.5,-25.5 parent: 2 + - uid: 17058 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 - uid: 17061 components: - type: Transform pos: -38.5,-4.5 parent: 2 + - uid: 17064 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - uid: 17072 + components: + - type: Transform + pos: -47.5,-45.5 + parent: 2 + - uid: 17074 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 - uid: 17091 components: - type: Transform pos: -39.5,-4.5 parent: 2 - - uid: 17149 + - uid: 17092 components: - type: Transform - pos: -38.5,-54.5 + pos: 35.5,27.5 parent: 2 - - uid: 17151 + - uid: 17103 components: - type: Transform - pos: -37.5,-54.5 + pos: -48.5,-43.5 parent: 2 - - uid: 17152 + - uid: 17104 components: - type: Transform - pos: -37.5,-55.5 + pos: -48.5,-41.5 parent: 2 - - uid: 17153 + - uid: 17105 components: - type: Transform - pos: -37.5,-56.5 + pos: -48.5,-42.5 parent: 2 - - uid: 17154 + - uid: 17106 components: - type: Transform - pos: -37.5,-57.5 + pos: -49.5,-41.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + pos: -49.5,-40.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + pos: -49.5,-35.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + pos: -48.5,-35.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + pos: -48.5,-36.5 + parent: 2 + - uid: 17155 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - uid: 17156 + components: + - type: Transform + pos: -49.5,-37.5 + parent: 2 + - uid: 17176 + components: + - type: Transform + pos: -50.5,-37.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + pos: 9.5,-88.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -51.5,-37.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + pos: -47.5,-37.5 + parent: 2 + - uid: 17185 + components: + - type: Transform + pos: -46.5,-37.5 parent: 2 - uid: 17206 components: @@ -34792,17 +36682,17 @@ entities: - uid: 17228 components: - type: Transform - pos: 4.5,6.5 + pos: -45.5,-37.5 parent: 2 - uid: 17229 components: - type: Transform - pos: 3.5,6.5 + pos: -44.5,-37.5 parent: 2 - uid: 17230 components: - type: Transform - pos: 2.5,6.5 + pos: -43.5,-37.5 parent: 2 - uid: 17231 components: @@ -34869,11 +36759,86 @@ entities: - type: Transform pos: -6.5,6.5 parent: 2 + - uid: 17249 + components: + - type: Transform + pos: -42.5,-37.5 + parent: 2 + - uid: 17250 + components: + - type: Transform + pos: -43.5,-38.5 + parent: 2 + - uid: 17252 + components: + - type: Transform + pos: -43.5,-39.5 + parent: 2 + - uid: 17260 + components: + - type: Transform + pos: 7.5,-94.5 + parent: 2 + - uid: 17262 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 17263 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + pos: 7.5,-91.5 + parent: 2 + - uid: 17287 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 - uid: 17320 components: - type: Transform pos: -5.5,24.5 parent: 2 + - uid: 17353 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 17419 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 17488 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 17493 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 - uid: 17497 components: - type: Transform @@ -34959,11 +36924,41 @@ entities: - type: Transform pos: 40.5,-31.5 parent: 2 + - uid: 17536 + components: + - type: Transform + pos: -43.5,-36.5 + parent: 2 + - uid: 17537 + components: + - type: Transform + pos: -43.5,-35.5 + parent: 2 + - uid: 17538 + components: + - type: Transform + pos: -43.5,-34.5 + parent: 2 + - uid: 17539 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 - uid: 17567 components: - type: Transform pos: 30.5,-77.5 parent: 2 + - uid: 17590 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 17591 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 - uid: 17599 components: - type: Transform @@ -35004,6 +36999,11 @@ entities: - type: Transform pos: -8.5,-41.5 parent: 2 + - uid: 17611 + components: + - type: Transform + pos: -48.5,-34.5 + parent: 2 - uid: 17613 components: - type: Transform @@ -35014,16 +37014,51 @@ entities: - type: Transform pos: 29.5,-78.5 parent: 2 + - uid: 17622 + components: + - type: Transform + pos: -48.5,-33.5 + parent: 2 + - uid: 17623 + components: + - type: Transform + pos: -46.5,-26.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 2 - uid: 17634 components: - type: Transform pos: 29.5,-79.5 parent: 2 + - uid: 17635 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 2 - uid: 17637 components: - type: Transform pos: 29.5,-80.5 parent: 2 + - uid: 17638 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 - uid: 17639 components: - type: Transform @@ -35039,16 +37074,46 @@ entities: - type: Transform pos: 31.5,-79.5 parent: 2 + - uid: 17647 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + pos: -49.5,-22.5 + parent: 2 + - uid: 17652 + components: + - type: Transform + pos: -50.5,-22.5 + parent: 2 - uid: 17654 components: - type: Transform pos: 31.5,-78.5 parent: 2 + - uid: 17658 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 - uid: 17660 components: - type: Transform pos: 30.5,-76.5 parent: 2 + - uid: 17661 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 - uid: 17662 components: - type: Transform @@ -35102,57 +37167,12 @@ entities: - uid: 17672 components: - type: Transform - pos: 1.5,-21.5 + pos: -49.5,-20.5 parent: 2 - uid: 17673 components: - type: Transform - pos: 1.5,-20.5 - parent: 2 - - uid: 17674 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 2 - - uid: 17675 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 - - uid: 17676 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 2 - - uid: 17677 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - - uid: 17678 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 2 - - uid: 17679 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 - - uid: 17680 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 2 - - uid: 17681 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 2 - - uid: 17682 - components: - - type: Transform - pos: 8.5,-15.5 + pos: -48.5,-21.5 parent: 2 - uid: 17687 components: @@ -35199,16 +37219,121 @@ entities: - type: Transform pos: 30.5,-67.5 parent: 2 + - uid: 17704 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 17812 + components: + - type: Transform + pos: -63.5,-58.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 - uid: 17835 components: - type: Transform pos: 52.5,-51.5 parent: 2 + - uid: 17856 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 - uid: 17873 components: - type: Transform pos: 39.5,-14.5 parent: 2 + - uid: 17876 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 2 + - uid: 17885 + components: + - type: Transform + pos: -54.5,-29.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + pos: -54.5,-30.5 + parent: 2 + - uid: 17948 + components: + - type: Transform + pos: -53.5,-30.5 + parent: 2 + - uid: 17953 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 2 + - uid: 17955 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 2 + - uid: 17957 + components: + - type: Transform + pos: -57.5,-28.5 + parent: 2 + - uid: 17967 + components: + - type: Transform + pos: -58.5,-28.5 + parent: 2 - uid: 17974 components: - type: Transform @@ -35219,10 +37344,85 @@ entities: - type: Transform pos: -32.5,23.5 parent: 2 + - uid: 17986 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 2 + - uid: 17988 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 17990 + components: + - type: Transform + pos: -60.5,-32.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + pos: -60.5,-31.5 + parent: 2 + - uid: 17992 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 2 + - uid: 17993 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 2 + - uid: 17994 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 2 - uid: 17995 components: - type: Transform - pos: 13.5,-18.5 + pos: -60.5,-27.5 + parent: 2 + - uid: 17996 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 + - uid: 17997 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 18000 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 2 + - uid: 18001 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 18002 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 + - uid: 18003 + components: + - type: Transform + pos: -54.5,-32.5 parent: 2 - uid: 18029 components: @@ -35314,6 +37514,26 @@ entities: - type: Transform pos: -16.5,-14.5 parent: 2 + - uid: 18047 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 2 + - uid: 18048 + components: + - type: Transform + pos: -54.5,-27.5 + parent: 2 + - uid: 18050 + components: + - type: Transform + pos: -58.5,-31.5 + parent: 2 + - uid: 18051 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 - uid: 18064 components: - type: Transform @@ -35327,7 +37547,7 @@ entities: - uid: 18068 components: - type: Transform - pos: 21.5,11.5 + pos: 39.5,18.5 parent: 2 - uid: 18069 components: @@ -35399,16 +37619,51 @@ entities: - type: Transform pos: -34.5,17.5 parent: 2 - - uid: 18193 + - uid: 18342 components: - type: Transform - pos: 15.5,-18.5 + pos: 38.5,18.5 + parent: 2 + - uid: 18401 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 + - uid: 18402 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 18404 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 18405 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 18406 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 18413 + components: + - type: Transform + pos: 27.5,23.5 parent: 2 - uid: 18454 components: - type: Transform pos: 58.5,-52.5 parent: 2 + - uid: 18553 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 - uid: 18554 components: - type: Transform @@ -35429,6 +37684,16 @@ entities: - type: Transform pos: -3.5,9.5 parent: 2 + - uid: 18558 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 18559 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 - uid: 18562 components: - type: Transform @@ -35439,15 +37704,80 @@ entities: - type: Transform pos: -5.5,9.5 parent: 2 + - uid: 18568 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 18569 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 - uid: 18570 components: - type: Transform pos: 41.5,-31.5 parent: 2 - - uid: 18614 + - uid: 18573 components: - type: Transform - pos: 33.5,-5.5 + pos: -29.5,-22.5 + parent: 2 + - uid: 18574 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 18575 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 18576 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 18578 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 18582 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 18583 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - uid: 18586 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 18612 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 18633 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - uid: 18637 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 18638 + components: + - type: Transform + pos: -28.5,-31.5 parent: 2 - uid: 18646 components: @@ -35744,6 +38074,11 @@ entities: - type: Transform pos: 57.5,-39.5 parent: 2 + - uid: 18754 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 - uid: 18758 components: - type: Transform @@ -35752,42 +38087,102 @@ entities: - uid: 18799 components: - type: Transform - pos: -28.5,-37.5 + pos: -27.5,-31.5 + parent: 2 + - uid: 18816 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 18862 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 18870 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + pos: -25.5,-28.5 parent: 2 - uid: 18872 components: - type: Transform - pos: -43.5,-26.5 + pos: -26.5,-28.5 parent: 2 - uid: 18873 components: - type: Transform - pos: -43.5,-27.5 + pos: -27.5,-28.5 parent: 2 - uid: 18874 components: - type: Transform - pos: -42.5,-27.5 + pos: -28.5,-28.5 parent: 2 - uid: 18875 components: - type: Transform - pos: -39.5,-25.5 + pos: -28.5,-27.5 parent: 2 - uid: 18876 components: - type: Transform - pos: -40.5,-25.5 + pos: -28.5,-26.5 + parent: 2 + - uid: 18885 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 18887 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 18890 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 18893 + components: + - type: Transform + pos: -25.5,-18.5 parent: 2 - uid: 18895 components: - type: Transform - pos: 28.5,-9.5 + pos: -24.5,-19.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: -26.5,-20.5 parent: 2 - uid: 18898 components: - type: Transform - pos: 30.5,-9.5 + pos: -27.5,-20.5 + parent: 2 + - uid: 18907 + components: + - type: Transform + pos: -27.5,-21.5 parent: 2 - uid: 18924 components: @@ -35829,6 +38224,16 @@ entities: - type: Transform pos: 3.5,-30.5 parent: 2 + - uid: 18940 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 - uid: 18956 components: - type: Transform @@ -35844,35 +38249,75 @@ entities: - type: Transform pos: 48.5,-36.5 parent: 2 + - uid: 18965 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 18978 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 - uid: 18990 components: - type: Transform - pos: 13.5,-11.5 + pos: -35.5,-15.5 parent: 2 - uid: 18991 components: - type: Transform - pos: 12.5,-11.5 + pos: -36.5,-15.5 parent: 2 - uid: 18992 components: - type: Transform - pos: 14.5,-12.5 + pos: -37.5,-15.5 parent: 2 - uid: 18993 components: - type: Transform - pos: 15.5,-11.5 + pos: -38.5,-15.5 parent: 2 - uid: 18994 components: - type: Transform - pos: 16.5,-11.5 + pos: -36.5,-14.5 parent: 2 - uid: 18995 components: - type: Transform - pos: 14.5,-13.5 + pos: -36.5,-13.5 + parent: 2 + - uid: 18997 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 19002 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 19003 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: -40.5,-14.5 parent: 2 - uid: 19012 components: @@ -35894,15 +38339,60 @@ entities: - type: Transform pos: 36.5,-39.5 parent: 2 + - uid: 19016 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 - uid: 19017 components: - type: Transform - pos: -33.5,-32.5 + pos: -39.5,-14.5 parent: 2 - uid: 19018 components: - type: Transform - pos: -33.5,-33.5 + pos: -30.5,-15.5 + parent: 2 + - uid: 19019 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 19020 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 19022 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 19024 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 19045 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 19046 + components: + - type: Transform + pos: -21.5,-15.5 parent: 2 - uid: 19090 components: @@ -35914,21 +38404,171 @@ entities: - type: Transform pos: 49.5,2.5 parent: 2 + - uid: 19153 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 19162 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 19163 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 19189 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 19192 + components: + - type: Transform + pos: 9.5,-90.5 + parent: 2 + - uid: 19196 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 19198 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 19200 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 19208 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 19221 + components: + - type: Transform + pos: 8.5,-88.5 + parent: 2 + - uid: 19225 + components: + - type: Transform + pos: 9.5,-89.5 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 19251 + components: + - type: Transform + pos: 7.5,-88.5 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: 7.5,-92.5 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 2 + - uid: 19268 + components: + - type: Transform + pos: 7.5,-89.5 + parent: 2 - uid: 19287 components: - type: Transform pos: 45.5,-52.5 parent: 2 + - uid: 19549 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 19553 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 19555 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 19556 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 19558 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 - uid: 19605 components: - type: Transform pos: 42.5,9.5 parent: 2 + - uid: 19627 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 19759 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 - uid: 19880 components: - type: Transform pos: 48.5,-52.5 parent: 2 + - uid: 19884 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 19972 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 19990 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 20004 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 - uid: 20104 components: - type: Transform @@ -35984,10 +38624,175 @@ entities: - type: Transform pos: -71.5,-15.5 parent: 2 + - uid: 20121 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 20134 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 20135 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 20139 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 20140 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 20141 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 20155 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 20183 + components: + - type: Transform + pos: 7.5,-93.5 + parent: 2 + - uid: 20184 + components: + - type: Transform + pos: 6.5,-95.5 + parent: 2 + - uid: 20186 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 20191 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 20200 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 20212 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 20213 + components: + - type: Transform + pos: 7.5,-95.5 + parent: 2 + - uid: 20216 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 20218 + components: + - type: Transform + pos: 7.5,-90.5 + parent: 2 + - uid: 20226 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 20233 + components: + - type: Transform + pos: -43.5,-23.5 + parent: 2 - uid: 20238 components: - type: Transform - pos: -25.5,-22.5 + pos: -42.5,-23.5 + parent: 2 + - uid: 20259 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 20260 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - uid: 20261 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + pos: -43.5,-21.5 parent: 2 - uid: 20280 components: @@ -36004,20 +38809,35 @@ entities: - type: Transform pos: 36.5,3.5 parent: 2 + - uid: 20283 + components: + - type: Transform + pos: -43.5,-22.5 + parent: 2 + - uid: 20286 + components: + - type: Transform + pos: -43.5,-24.5 + parent: 2 + - uid: 20287 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 - uid: 20387 components: - type: Transform pos: -7.5,13.5 parent: 2 - - uid: 20388 - components: - - type: Transform - pos: -6.5,-53.5 - parent: 2 - uid: 20389 components: - type: Transform - pos: -6.5,-54.5 + pos: 14.5,-56.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + pos: 33.5,25.5 parent: 2 - uid: 20426 components: @@ -36084,11 +38904,6 @@ entities: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 20496 - components: - - type: Transform - pos: -34.5,3.5 - parent: 2 - uid: 20497 components: - type: Transform @@ -36099,65 +38914,85 @@ entities: - type: Transform pos: -33.5,1.5 parent: 2 - - uid: 20499 + - uid: 20502 components: - type: Transform - pos: -34.5,4.5 + pos: 16.5,25.5 parent: 2 - - uid: 20500 + - uid: 20513 components: - type: Transform - pos: -34.5,5.5 + pos: 16.5,30.5 parent: 2 - - uid: 20501 + - uid: 20524 components: - type: Transform - pos: -33.5,5.5 + pos: -26.5,-37.5 parent: 2 - uid: 20525 components: - type: Transform pos: -44.5,-7.5 parent: 2 + - uid: 20531 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 20532 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 20533 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 20535 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 20536 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 - uid: 20537 components: - type: Transform - pos: -34.5,-5.5 + pos: -28.5,-35.5 parent: 2 - uid: 20538 components: - type: Transform - pos: -34.5,-6.5 + pos: -28.5,-34.5 parent: 2 - uid: 20539 components: - type: Transform - pos: -34.5,-7.5 + pos: -29.5,-34.5 parent: 2 - uid: 20540 components: - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 20541 - components: - - type: Transform - pos: -33.5,-8.5 + pos: -30.5,-34.5 parent: 2 - uid: 20542 components: - type: Transform - pos: -32.5,-8.5 + pos: -29.5,-37.5 parent: 2 - uid: 20543 components: - type: Transform - pos: -31.5,-8.5 + pos: -28.5,-39.5 parent: 2 - uid: 20544 components: - type: Transform - pos: -35.5,-8.5 + pos: -29.5,-39.5 parent: 2 - uid: 20545 components: @@ -36204,6 +39039,11 @@ entities: - type: Transform pos: -36.5,-8.5 parent: 2 + - uid: 20555 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 - uid: 20558 components: - type: Transform @@ -36314,11 +39154,6 @@ entities: - type: Transform pos: -39.5,5.5 parent: 2 - - uid: 20619 - components: - - type: Transform - pos: -5.5,-53.5 - parent: 2 - uid: 20621 components: - type: Transform @@ -36334,11 +39169,6 @@ entities: - type: Transform pos: 48.5,-44.5 parent: 2 - - uid: 20630 - components: - - type: Transform - pos: -36.5,9.5 - parent: 2 - uid: 20631 components: - type: Transform @@ -36354,6 +39184,11 @@ entities: - type: Transform pos: -10.5,14.5 parent: 2 + - uid: 20639 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 - uid: 20640 components: - type: Transform @@ -36374,85 +39209,195 @@ entities: - type: Transform pos: 43.5,11.5 parent: 2 + - uid: 20644 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 20645 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 20646 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 2 + - uid: 20647 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 20648 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 20649 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 20650 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 20651 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 2 + - uid: 20652 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 20653 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - uid: 20654 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 + - uid: 20655 + components: + - type: Transform + pos: -43.5,-31.5 + parent: 2 + - uid: 20659 + components: + - type: Transform + pos: -42.5,-31.5 + parent: 2 - uid: 20668 components: - type: Transform - pos: -30.5,-0.5 + pos: -41.5,-31.5 parent: 2 - - uid: 20693 + - uid: 20669 components: - type: Transform - pos: -27.5,-57.5 + pos: -44.5,-30.5 + parent: 2 + - uid: 20673 + components: + - type: Transform + pos: 27.5,27.5 + parent: 2 + - uid: 20674 + components: + - type: Transform + pos: 27.5,30.5 parent: 2 - uid: 20694 components: - type: Transform - pos: -27.5,-58.5 + pos: -34.5,-31.5 parent: 2 - uid: 20695 components: - type: Transform - pos: -28.5,-58.5 + pos: -38.5,-32.5 parent: 2 - - uid: 20696 + - uid: 20704 components: - type: Transform - pos: -49.5,-55.5 + pos: -37.5,-32.5 parent: 2 - - uid: 20697 + - uid: 20705 components: - type: Transform - pos: -49.5,-53.5 + pos: -36.5,-32.5 parent: 2 - - uid: 20698 + - uid: 20707 components: - type: Transform - pos: -46.5,-56.5 + pos: -35.5,-32.5 parent: 2 - - uid: 20699 + - uid: 20708 components: - type: Transform - pos: -45.5,-56.5 + pos: -34.5,-32.5 parent: 2 - - uid: 20700 + - uid: 20710 components: - type: Transform - pos: -44.5,-56.5 + pos: -34.5,-30.5 parent: 2 - - uid: 20701 + - uid: 20711 components: - type: Transform - pos: -45.5,-55.5 + pos: -34.5,-29.5 + parent: 2 + - uid: 20717 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 20720 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 20721 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 20723 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 20725 + components: + - type: Transform + pos: -37.5,-27.5 parent: 2 - uid: 20728 components: - type: Transform - pos: -4.5,-1.5 + pos: -38.5,-27.5 + parent: 2 + - uid: 20730 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 20731 + components: + - type: Transform + pos: -38.5,-30.5 parent: 2 - uid: 20733 components: - type: Transform - pos: -6.5,-4.5 + pos: -38.5,-29.5 parent: 2 - - uid: 20750 + - uid: 20735 components: - type: Transform - pos: -38.5,-58.5 + pos: -36.5,-29.5 parent: 2 - - uid: 20751 + - uid: 20736 components: - type: Transform - pos: -39.5,-58.5 + pos: -36.5,-30.5 parent: 2 - - uid: 20752 + - uid: 20739 components: - type: Transform - pos: -40.5,-58.5 + pos: -35.5,-29.5 parent: 2 - - uid: 20757 + - uid: 20740 components: - type: Transform - pos: -5.5,-4.5 + pos: -39.5,-29.5 parent: 2 - uid: 20771 components: @@ -36464,90 +39409,85 @@ entities: - type: Transform pos: -32.5,1.5 parent: 2 + - uid: 20785 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 20786 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 20788 + components: + - type: Transform + pos: -56.5,-52.5 + parent: 2 + - uid: 20789 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 - uid: 20793 components: - type: Transform pos: -32.5,4.5 parent: 2 - - uid: 20794 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 2 - uid: 20795 components: - type: Transform - pos: -3.5,-4.5 + pos: -37.5,-42.5 parent: 2 - uid: 20796 components: - type: Transform - pos: -2.5,-4.5 + pos: -38.5,-42.5 parent: 2 - uid: 20797 components: - type: Transform - pos: -1.5,-4.5 + pos: -38.5,-43.5 parent: 2 - uid: 20798 components: - type: Transform - pos: -7.5,-1.5 + pos: -38.5,-44.5 parent: 2 - uid: 20800 components: - type: Transform - pos: -6.5,-1.5 + pos: -38.5,-45.5 parent: 2 - uid: 20802 components: - type: Transform - pos: -8.5,-1.5 + pos: -38.5,-46.5 parent: 2 - uid: 20805 components: - type: Transform - pos: 1.5,-1.5 + pos: -38.5,-47.5 parent: 2 - uid: 20806 components: - type: Transform - pos: -3.5,-1.5 - parent: 2 - - uid: 20807 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 2 - - uid: 20808 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 2 - - uid: 20809 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 20810 - components: - - type: Transform - pos: 0.5,-1.5 + pos: -38.5,-41.5 parent: 2 - uid: 20811 components: - type: Transform - pos: 2.5,-1.5 + pos: -45.5,-46.5 parent: 2 - uid: 20812 components: - type: Transform - pos: 3.5,-1.5 + pos: -45.5,-47.5 parent: 2 - uid: 20813 components: - type: Transform - pos: 4.5,-1.5 + pos: -45.5,-48.5 parent: 2 - uid: 20825 components: @@ -36569,6 +39509,1641 @@ entities: - type: Transform pos: -26.5,-56.5 parent: 2 + - uid: 20840 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 2 + - uid: 20898 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 + - uid: 20899 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 2 + - uid: 20900 + components: + - type: Transform + pos: 12.5,-69.5 + parent: 2 + - uid: 20901 + components: + - type: Transform + pos: 11.5,-69.5 + parent: 2 + - uid: 20902 + components: + - type: Transform + pos: 10.5,-69.5 + parent: 2 + - uid: 20903 + components: + - type: Transform + pos: 10.5,-70.5 + parent: 2 + - uid: 20904 + components: + - type: Transform + pos: 10.5,-71.5 + parent: 2 + - uid: 20905 + components: + - type: Transform + pos: 10.5,-72.5 + parent: 2 + - uid: 20906 + components: + - type: Transform + pos: 10.5,-73.5 + parent: 2 + - uid: 20907 + components: + - type: Transform + pos: 10.5,-74.5 + parent: 2 + - uid: 20908 + components: + - type: Transform + pos: 10.5,-75.5 + parent: 2 + - uid: 20909 + components: + - type: Transform + pos: 10.5,-76.5 + parent: 2 + - uid: 20910 + components: + - type: Transform + pos: 10.5,-77.5 + parent: 2 + - uid: 20911 + components: + - type: Transform + pos: 10.5,-78.5 + parent: 2 + - uid: 20912 + components: + - type: Transform + pos: 10.5,-68.5 + parent: 2 + - uid: 20913 + components: + - type: Transform + pos: 10.5,-67.5 + parent: 2 + - uid: 20914 + components: + - type: Transform + pos: 10.5,-66.5 + parent: 2 + - uid: 20915 + components: + - type: Transform + pos: 10.5,-65.5 + parent: 2 + - uid: 20916 + components: + - type: Transform + pos: 10.5,-64.5 + parent: 2 + - uid: 20917 + components: + - type: Transform + pos: 10.5,-63.5 + parent: 2 + - uid: 20918 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - uid: 20919 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - uid: 20920 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - uid: 20921 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 20922 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - uid: 20923 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 20924 + components: + - type: Transform + pos: 9.5,-67.5 + parent: 2 + - uid: 20925 + components: + - type: Transform + pos: 9.5,-74.5 + parent: 2 + - uid: 20926 + components: + - type: Transform + pos: 8.5,-71.5 + parent: 2 + - uid: 20927 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 20928 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 20929 + components: + - type: Transform + pos: 8.5,-74.5 + parent: 2 + - uid: 20930 + components: + - type: Transform + pos: 7.5,-74.5 + parent: 2 + - uid: 20931 + components: + - type: Transform + pos: 7.5,-75.5 + parent: 2 + - uid: 20932 + components: + - type: Transform + pos: 8.5,-73.5 + parent: 2 + - uid: 20933 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 + - uid: 20934 + components: + - type: Transform + pos: 8.5,-78.5 + parent: 2 + - uid: 20935 + components: + - type: Transform + pos: 12.5,-78.5 + parent: 2 + - uid: 20936 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 2 + - uid: 20937 + components: + - type: Transform + pos: 11.5,-78.5 + parent: 2 + - uid: 20938 + components: + - type: Transform + pos: 9.5,-78.5 + parent: 2 + - uid: 20939 + components: + - type: Transform + pos: 12.5,-73.5 + parent: 2 + - uid: 20940 + components: + - type: Transform + pos: 12.5,-74.5 + parent: 2 + - uid: 20941 + components: + - type: Transform + pos: 12.5,-75.5 + parent: 2 + - uid: 20942 + components: + - type: Transform + pos: 11.5,-74.5 + parent: 2 + - uid: 20943 + components: + - type: Transform + pos: 12.5,-71.5 + parent: 2 + - uid: 20944 + components: + - type: Transform + pos: 11.5,-71.5 + parent: 2 + - uid: 20945 + components: + - type: Transform + pos: 12.5,-67.5 + parent: 2 + - uid: 20946 + components: + - type: Transform + pos: 11.5,-67.5 + parent: 2 + - uid: 20947 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 20948 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 2 + - uid: 20949 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 20950 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 2 + - uid: 20951 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - uid: 20952 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 20953 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 2 + - uid: 20954 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 20955 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 20956 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 20957 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - uid: 20958 + components: + - type: Transform + pos: -7.5,-69.5 + parent: 2 + - uid: 20959 + components: + - type: Transform + pos: -7.5,-70.5 + parent: 2 + - uid: 20960 + components: + - type: Transform + pos: -7.5,-71.5 + parent: 2 + - uid: 20961 + components: + - type: Transform + pos: -7.5,-72.5 + parent: 2 + - uid: 20962 + components: + - type: Transform + pos: -7.5,-73.5 + parent: 2 + - uid: 20963 + components: + - type: Transform + pos: -7.5,-74.5 + parent: 2 + - uid: 20964 + components: + - type: Transform + pos: -7.5,-75.5 + parent: 2 + - uid: 20965 + components: + - type: Transform + pos: -7.5,-76.5 + parent: 2 + - uid: 20966 + components: + - type: Transform + pos: -7.5,-77.5 + parent: 2 + - uid: 20967 + components: + - type: Transform + pos: -7.5,-78.5 + parent: 2 + - uid: 20968 + components: + - type: Transform + pos: -8.5,-78.5 + parent: 2 + - uid: 20969 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 20970 + components: + - type: Transform + pos: -5.5,-78.5 + parent: 2 + - uid: 20971 + components: + - type: Transform + pos: -5.5,-77.5 + parent: 2 + - uid: 20972 + components: + - type: Transform + pos: -9.5,-78.5 + parent: 2 + - uid: 20973 + components: + - type: Transform + pos: -9.5,-77.5 + parent: 2 + - uid: 20974 + components: + - type: Transform + pos: -9.5,-73.5 + parent: 2 + - uid: 20975 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 + - uid: 20976 + components: + - type: Transform + pos: -9.5,-75.5 + parent: 2 + - uid: 20977 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 2 + - uid: 20978 + components: + - type: Transform + pos: -6.5,-74.5 + parent: 2 + - uid: 20979 + components: + - type: Transform + pos: -5.5,-74.5 + parent: 2 + - uid: 20980 + components: + - type: Transform + pos: -4.5,-74.5 + parent: 2 + - uid: 20981 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 20982 + components: + - type: Transform + pos: -5.5,-73.5 + parent: 2 + - uid: 20983 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 20984 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 20985 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 + - uid: 20986 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 20987 + components: + - type: Transform + pos: -9.5,-69.5 + parent: 2 + - uid: 20988 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 20989 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 + - uid: 20990 + components: + - type: Transform + pos: -5.5,-71.5 + parent: 2 + - uid: 20991 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 2 + - uid: 20992 + components: + - type: Transform + pos: -7.5,-66.5 + parent: 2 + - uid: 20993 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 2 + - uid: 20994 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - uid: 20995 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 20996 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - uid: 20997 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 20998 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 20999 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 21002 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 21003 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - uid: 21004 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - uid: 21005 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 21008 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 21009 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - uid: 21010 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 21011 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - uid: 21012 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - uid: 21013 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 21014 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 21015 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 21016 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 21017 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 21018 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 21019 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 21020 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 21021 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 21022 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 21023 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 21024 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 21025 + components: + - type: Transform + pos: 9.5,-56.5 + parent: 2 + - uid: 21026 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 2 + - uid: 21027 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 21028 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 21029 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 21030 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 21031 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 21032 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 21033 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 21034 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 + - uid: 21035 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 21036 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 21037 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 2 + - uid: 21038 + components: + - type: Transform + pos: 7.5,-59.5 + parent: 2 + - uid: 21039 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 2 + - uid: 21040 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 2 + - uid: 21041 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 2 + - uid: 21042 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 2 + - uid: 21043 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - uid: 21044 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 2 + - uid: 21045 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 2 + - uid: 21046 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 + - uid: 21047 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 21048 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - uid: 21049 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 21050 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 21051 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 + - uid: 21052 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 2 + - uid: 21053 + components: + - type: Transform + pos: -3.5,-55.5 + parent: 2 + - uid: 21123 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 21124 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 21125 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 21126 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 2 + - uid: 21127 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 2 + - uid: 21128 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - uid: 21129 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 21130 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 21131 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - uid: 21132 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 21136 + components: + - type: Transform + pos: 1.5,-52.5 + parent: 2 + - uid: 21144 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 2 + - uid: 21145 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 21146 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - uid: 21147 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 + - uid: 21148 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 21149 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 2 + - uid: 21150 + components: + - type: Transform + pos: 9.5,-48.5 + parent: 2 + - uid: 21151 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 2 + - uid: 21152 + components: + - type: Transform + pos: -7.5,-79.5 + parent: 2 + - uid: 21153 + components: + - type: Transform + pos: 10.5,-79.5 + parent: 2 + - uid: 21210 + components: + - type: Transform + pos: -44.5,-48.5 + parent: 2 + - uid: 21211 + components: + - type: Transform + pos: -43.5,-48.5 + parent: 2 + - uid: 21212 + components: + - type: Transform + pos: -42.5,-48.5 + parent: 2 + - uid: 21287 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 21296 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 21326 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 21327 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 21328 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 21329 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 21330 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 21331 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 21332 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 21333 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 21334 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 21335 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 21336 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 21337 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 21338 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 21339 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 21340 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 21341 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 21342 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 21343 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 21344 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 21345 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 21346 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 21358 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 21366 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 21374 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 + - uid: 21382 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 21383 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 21384 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 21385 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 21386 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 2 + - uid: 21428 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 2 + - uid: 21429 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 2 + - uid: 21430 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 2 + - uid: 21432 + components: + - type: Transform + pos: 9.5,-44.5 + parent: 2 + - uid: 21457 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 21486 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: -36.5,12.5 + parent: 2 + - uid: 21490 + components: + - type: Transform + pos: -64.5,-58.5 + parent: 2 + - uid: 21492 + components: + - type: Transform + pos: -63.5,-57.5 + parent: 2 + - uid: 21493 + components: + - type: Transform + pos: -63.5,-56.5 + parent: 2 + - uid: 21598 + components: + - type: Transform + pos: -42.5,-57.5 + parent: 2 + - uid: 21599 + components: + - type: Transform + pos: -43.5,-57.5 + parent: 2 + - uid: 21601 + components: + - type: Transform + pos: -40.5,-57.5 + parent: 2 + - uid: 21602 + components: + - type: Transform + pos: -41.5,-57.5 + parent: 2 + - uid: 21613 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 21628 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 21629 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 21630 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 + - uid: 21631 + components: + - type: Transform + pos: -42.5,-58.5 + parent: 2 + - uid: 21634 + components: + - type: Transform + pos: -51.5,-58.5 + parent: 2 + - uid: 21669 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 21670 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 21671 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 21776 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 21777 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 21778 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 21779 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 21780 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 21781 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 21782 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 21783 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 21789 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 21790 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 21791 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 21792 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 21802 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 21806 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 21819 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 21825 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 21826 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 21827 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 21828 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 21829 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 21830 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 21831 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 21832 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 21833 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 21834 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 21835 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 21839 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 21840 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 21846 + components: + - type: Transform + pos: -33.5,12.5 + parent: 2 + - uid: 21864 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 21866 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 21875 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 21889 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 21898 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 21916 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 21917 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 21935 + components: + - type: Transform + pos: -53.5,-53.5 + parent: 2 + - uid: 21936 + components: + - type: Transform + pos: -52.5,-53.5 + parent: 2 + - uid: 21939 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 21940 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 21956 + components: + - type: Transform + pos: -54.5,-53.5 + parent: 2 + - uid: 21957 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 21959 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 21972 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 21975 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 21978 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 21981 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 21985 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 21986 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 21987 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 21988 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 21992 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 21993 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 22000 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 22023 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 22033 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 22044 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 22061 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 22062 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 22084 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 22129 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 22174 + components: + - type: Transform + pos: 51.5,-31.5 + parent: 2 + - uid: 22175 + components: + - type: Transform + pos: 52.5,-31.5 + parent: 2 + - uid: 22277 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 22278 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 + - uid: 22279 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - uid: 22289 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 22335 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 22336 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 22337 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 22338 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 22339 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 22340 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 22341 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 22461 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - uid: 22463 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 22464 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 22465 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 22498 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 22500 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 22541 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 22542 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 22543 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 22544 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 2 + - uid: 22604 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 22605 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 22631 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 22632 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 22633 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 22634 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 22700 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 22701 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 - proto: CableApcStack entities: - uid: 1898 @@ -36591,30 +41166,15 @@ entities: - type: Transform pos: -55.347515,-13.502788 parent: 2 - - uid: 10655 - components: - - type: Transform - pos: -31.298944,-59.721985 - parent: 2 - - uid: 12674 - components: - - type: Transform - pos: -6.4329424,-15.015114 - parent: 2 - uid: 13026 components: - type: Transform pos: -4.0583553,-23.375748 parent: 2 - - uid: 14674 - components: - - type: Transform - pos: 11.527697,-19.487476 - parent: 2 - uid: 18969 components: - type: Transform - pos: -33.466095,4.7338076 + pos: -34.510525,5.670819 parent: 2 - proto: CableApcStack10 entities: @@ -36652,40 +41212,25 @@ entities: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 43 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 2 - uid: 82 components: - type: Transform pos: -13.5,22.5 parent: 2 - - uid: 88 - components: - - type: Transform - pos: -32.5,-49.5 - parent: 2 - uid: 108 components: - type: Transform pos: -21.5,-27.5 parent: 2 - - uid: 255 + - uid: 136 components: - type: Transform - pos: 7.5,-15.5 + pos: 4.5,-45.5 parent: 2 - - uid: 257 + - uid: 218 components: - type: Transform - pos: 8.5,-15.5 - parent: 2 - - uid: 276 - components: - - type: Transform - pos: -11.5,-53.5 + pos: 25.5,15.5 parent: 2 - uid: 277 components: @@ -36697,10 +41242,10 @@ entities: - type: Transform pos: -10.5,-55.5 parent: 2 - - uid: 292 + - uid: 299 components: - type: Transform - pos: -32.5,-51.5 + pos: -8.5,-24.5 parent: 2 - uid: 300 components: @@ -36717,21 +41262,21 @@ entities: - type: Transform pos: 36.5,10.5 parent: 2 - - uid: 347 + - uid: 326 components: - type: Transform - pos: -10.5,-53.5 + pos: 17.5,-33.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: -26.5,-41.5 parent: 2 - uid: 455 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 481 - components: - - type: Transform - pos: -51.5,-54.5 - parent: 2 - uid: 485 components: - type: Transform @@ -36742,16 +41287,16 @@ entities: - type: Transform pos: -14.5,-20.5 parent: 2 + - uid: 504 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 - uid: 525 components: - type: Transform pos: -9.5,-55.5 parent: 2 - - uid: 527 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 2 - uid: 591 components: - type: Transform @@ -36767,6 +41312,11 @@ entities: - type: Transform pos: 3.5,-26.5 parent: 2 + - uid: 775 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 - uid: 800 components: - type: Transform @@ -36817,16 +41367,6 @@ entities: - type: Transform pos: -45.5,28.5 parent: 2 - - uid: 844 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 2 - - uid: 901 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 - uid: 904 components: - type: Transform @@ -36862,10 +41402,10 @@ entities: - type: Transform pos: -52.5,14.5 parent: 2 - - uid: 1031 + - uid: 949 components: - type: Transform - pos: 18.5,-9.5 + pos: 26.5,16.5 parent: 2 - uid: 1071 components: @@ -36907,11 +41447,6 @@ entities: - type: Transform pos: -55.5,28.5 parent: 2 - - uid: 1180 - components: - - type: Transform - pos: -25.5,-19.5 - parent: 2 - uid: 1193 components: - type: Transform @@ -37012,11 +41547,6 @@ entities: - type: Transform pos: -13.5,11.5 parent: 2 - - uid: 1241 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 2 - uid: 1243 components: - type: Transform @@ -37027,11 +41557,6 @@ entities: - type: Transform pos: -20.5,20.5 parent: 2 - - uid: 1268 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 - uid: 1270 components: - type: Transform @@ -37095,7 +41620,7 @@ entities: - uid: 1511 components: - type: Transform - pos: 6.5,-15.5 + pos: 31.5,-10.5 parent: 2 - uid: 1531 components: @@ -37107,26 +41632,46 @@ entities: - type: Transform pos: 25.5,-39.5 parent: 2 - - uid: 1677 + - uid: 1652 components: - type: Transform - pos: -58.5,-50.5 + pos: -33.5,-15.5 parent: 2 - - uid: 1680 + - uid: 1655 components: - type: Transform - pos: -58.5,-52.5 + pos: -35.5,-15.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: -0.5,-9.5 parent: 2 - uid: 1686 components: - type: Transform pos: 2.5,-27.5 parent: 2 - - uid: 1688 - components: - - type: Transform - pos: -68.5,-48.5 - parent: 2 - uid: 1689 components: - type: Transform @@ -37137,140 +41682,50 @@ entities: - type: Transform pos: -47.5,12.5 parent: 2 - - uid: 1704 + - uid: 1700 components: - type: Transform - pos: -60.5,-51.5 + pos: -37.5,-12.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: -36.5,-15.5 parent: 2 - uid: 1721 components: - type: Transform pos: -48.5,12.5 parent: 2 - - uid: 1748 - components: - - type: Transform - pos: -60.5,-52.5 - parent: 2 - - uid: 1750 - components: - - type: Transform - pos: -62.5,-48.5 - parent: 2 - - uid: 1756 - components: - - type: Transform - pos: -64.5,-51.5 - parent: 2 - - uid: 1783 - components: - - type: Transform - pos: -60.5,-50.5 - parent: 2 - uid: 1785 components: - type: Transform pos: -45.5,12.5 parent: 2 - - uid: 1796 + - uid: 1814 components: - type: Transform - pos: -60.5,-49.5 - parent: 2 - - uid: 1821 - components: - - type: Transform - pos: -60.5,-48.5 - parent: 2 - - uid: 1823 - components: - - type: Transform - pos: -58.5,-51.5 - parent: 2 - - uid: 1824 - components: - - type: Transform - pos: -58.5,-48.5 + pos: -30.5,-15.5 parent: 2 - uid: 1825 components: - type: Transform - pos: -58.5,-49.5 + pos: -39.5,-48.5 parent: 2 - uid: 1826 components: - type: Transform - pos: -64.5,-52.5 + pos: -40.5,-48.5 parent: 2 - - uid: 1827 + - uid: 1833 components: - type: Transform - pos: -66.5,-49.5 + pos: 0.5,-18.5 parent: 2 - uid: 1845 components: - type: Transform - pos: -66.5,-58.5 - parent: 2 - - uid: 1847 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 2 - - uid: 1858 - components: - - type: Transform - pos: -66.5,-50.5 - parent: 2 - - uid: 1859 - components: - - type: Transform - pos: -66.5,-51.5 - parent: 2 - - uid: 1860 - components: - - type: Transform - pos: -10.5,-54.5 - parent: 2 - - uid: 1861 - components: - - type: Transform - pos: -66.5,-52.5 - parent: 2 - - uid: 1862 - components: - - type: Transform - pos: -68.5,-57.5 - parent: 2 - - uid: 1865 - components: - - type: Transform - pos: -68.5,-56.5 - parent: 2 - - uid: 1867 - components: - - type: Transform - pos: -68.5,-58.5 - parent: 2 - - uid: 1868 - components: - - type: Transform - pos: -66.5,-48.5 - parent: 2 - - uid: 1873 - components: - - type: Transform - pos: -68.5,-49.5 - parent: 2 - - uid: 1875 - components: - - type: Transform - pos: -68.5,-50.5 - parent: 2 - - uid: 1877 - components: - - type: Transform - pos: -68.5,-51.5 + pos: -43.5,-48.5 parent: 2 - uid: 1881 components: @@ -37282,91 +41737,31 @@ entities: - type: Transform pos: -45.5,27.5 parent: 2 - - uid: 1907 - components: - - type: Transform - pos: -62.5,-56.5 - parent: 2 - - uid: 1925 - components: - - type: Transform - pos: -62.5,-57.5 - parent: 2 - - uid: 2033 - components: - - type: Transform - pos: -62.5,-58.5 - parent: 2 - - uid: 2046 - components: - - type: Transform - pos: -64.5,-56.5 - parent: 2 - uid: 2093 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 2102 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 2 - uid: 2107 components: - type: Transform pos: -1.5,-22.5 parent: 2 - - uid: 2111 + - uid: 2114 components: - type: Transform - pos: 1.5,-15.5 + pos: -4.5,-13.5 parent: 2 - uid: 2122 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 2123 - components: - - type: Transform - pos: -64.5,-57.5 - parent: 2 - - uid: 2125 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 2 - - uid: 2127 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 2 - - uid: 2128 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 2 - uid: 2133 components: - type: Transform pos: 1.5,-17.5 parent: 2 - - uid: 2142 - components: - - type: Transform - pos: -64.5,-58.5 - parent: 2 - - uid: 2149 - components: - - type: Transform - pos: -60.5,-56.5 - parent: 2 - - uid: 2164 - components: - - type: Transform - pos: -68.5,-52.5 - parent: 2 - uid: 2165 components: - type: Transform @@ -37377,30 +41772,10 @@ entities: - type: Transform pos: -4.5,-16.5 parent: 2 - - uid: 2167 + - uid: 2168 components: - type: Transform - pos: -66.5,-56.5 - parent: 2 - - uid: 2173 - components: - - type: Transform - pos: -4.5,-13.5 - parent: 2 - - uid: 2174 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 2 - - uid: 2175 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 2 - - uid: 2176 - components: - - type: Transform - pos: -4.5,-12.5 + pos: 0.5,-19.5 parent: 2 - uid: 2177 components: @@ -37417,11 +41792,6 @@ entities: - type: Transform pos: 7.5,-22.5 parent: 2 - - uid: 2199 - components: - - type: Transform - pos: -66.5,-57.5 - parent: 2 - uid: 2215 components: - type: Transform @@ -37462,11 +41832,6 @@ entities: - type: Transform pos: -13.5,-20.5 parent: 2 - - uid: 2244 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 2 - uid: 2245 components: - type: Transform @@ -37487,10 +41852,10 @@ entities: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 2343 + - uid: 2337 components: - type: Transform - pos: 5.5,-15.5 + pos: -8.5,-25.5 parent: 2 - uid: 2380 components: @@ -37512,11 +41877,6 @@ entities: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 2498 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - uid: 2508 components: - type: Transform @@ -37662,6 +42022,26 @@ entities: - type: Transform pos: 37.5,-31.5 parent: 2 + - uid: 2680 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 - uid: 2731 components: - type: Transform @@ -37687,6 +42067,11 @@ entities: - type: Transform pos: -55.5,16.5 parent: 2 + - uid: 2738 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 2 - uid: 2749 components: - type: Transform @@ -37697,6 +42082,31 @@ entities: - type: Transform pos: -0.5,-22.5 parent: 2 + - uid: 2753 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 - uid: 2769 components: - type: Transform @@ -37752,6 +42162,11 @@ entities: - type: Transform pos: -54.5,25.5 parent: 2 + - uid: 2918 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 - uid: 2964 components: - type: Transform @@ -37822,6 +42237,21 @@ entities: - type: Transform pos: 34.5,-37.5 parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 - uid: 3174 components: - type: Transform @@ -37837,41 +42267,21 @@ entities: - type: Transform pos: -8.5,-42.5 parent: 2 - - uid: 3326 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 2 - uid: 3407 components: - type: Transform pos: -13.5,15.5 parent: 2 - - uid: 3462 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 2 - uid: 3476 components: - type: Transform pos: 28.5,-37.5 parent: 2 - - uid: 3477 - components: - - type: Transform - pos: 16.5,-15.5 - parent: 2 - uid: 3514 components: - type: Transform pos: 32.5,-37.5 parent: 2 - - uid: 3528 - components: - - type: Transform - pos: 18.5,-7.5 - parent: 2 - uid: 3560 components: - type: Transform @@ -37890,12 +42300,7 @@ entities: - uid: 3572 components: - type: Transform - pos: 21.5,7.5 - parent: 2 - - uid: 3590 - components: - - type: Transform - pos: 13.5,-15.5 + pos: -4.5,-11.5 parent: 2 - uid: 3622 components: @@ -37917,16 +42322,6 @@ entities: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 3893 - components: - - type: Transform - pos: 21.5,6.5 - parent: 2 - - uid: 3894 - components: - - type: Transform - pos: 21.5,8.5 - parent: 2 - uid: 3907 components: - type: Transform @@ -37937,11 +42332,6 @@ entities: - type: Transform pos: -16.5,-27.5 parent: 2 - - uid: 3933 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 2 - uid: 3966 components: - type: Transform @@ -38057,16 +42447,6 @@ entities: - type: Transform pos: 3.5,-28.5 parent: 2 - - uid: 4009 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 2 - - uid: 4010 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 2 - uid: 4011 components: - type: Transform @@ -38122,36 +42502,21 @@ entities: - type: Transform pos: 3.5,-40.5 parent: 2 - - uid: 4034 - components: - - type: Transform - pos: 3.5,-41.5 - parent: 2 - - uid: 4035 - components: - - type: Transform - pos: 3.5,-42.5 - parent: 2 - - uid: 4036 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 2 - - uid: 4037 - components: - - type: Transform - pos: 3.5,-44.5 - parent: 2 - - uid: 4038 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 2 - uid: 4042 components: - type: Transform pos: 2.5,-48.5 parent: 2 + - uid: 4236 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 - uid: 4305 components: - type: Transform @@ -38172,6 +42537,11 @@ entities: - type: Transform pos: 33.5,-37.5 parent: 2 + - uid: 4322 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 - uid: 4394 components: - type: Transform @@ -38207,10 +42577,10 @@ entities: - type: Transform pos: 4.5,-25.5 parent: 2 - - uid: 4755 + - uid: 4765 components: - type: Transform - pos: -8.5,-54.5 + pos: -4.5,-9.5 parent: 2 - uid: 4792 components: @@ -38222,30 +42592,35 @@ entities: - type: Transform pos: 6.5,-25.5 parent: 2 + - uid: 4991 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 - uid: 5019 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 5039 + - uid: 5068 components: - type: Transform - pos: -8.5,-52.5 + pos: -23.5,-15.5 parent: 2 - - uid: 5040 + - uid: 5070 components: - type: Transform - pos: -8.5,-51.5 + pos: -24.5,-15.5 parent: 2 - - uid: 5086 + - uid: 5081 components: - type: Transform - pos: -8.5,-49.5 - parent: 2 - - uid: 5120 - components: - - type: Transform - pos: -8.5,-50.5 + pos: -21.5,-15.5 parent: 2 - uid: 5200 components: @@ -38257,11 +42632,31 @@ entities: - type: Transform pos: 38.5,6.5 parent: 2 + - uid: 5275 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 - uid: 5358 components: - type: Transform pos: 65.5,7.5 parent: 2 + - uid: 5433 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 2 - uid: 5450 components: - type: Transform @@ -38292,41 +42687,6 @@ entities: - type: Transform pos: -3.5,-18.5 parent: 2 - - uid: 5575 - components: - - type: Transform - pos: -58.5,-59.5 - parent: 2 - - uid: 5576 - components: - - type: Transform - pos: -64.5,-60.5 - parent: 2 - - uid: 5577 - components: - - type: Transform - pos: -64.5,-59.5 - parent: 2 - - uid: 5580 - components: - - type: Transform - pos: -66.5,-60.5 - parent: 2 - - uid: 5581 - components: - - type: Transform - pos: -66.5,-59.5 - parent: 2 - - uid: 5582 - components: - - type: Transform - pos: -68.5,-59.5 - parent: 2 - - uid: 5583 - components: - - type: Transform - pos: -68.5,-60.5 - parent: 2 - uid: 5598 components: - type: Transform @@ -38337,30 +42697,115 @@ entities: - type: Transform pos: -47.5,26.5 parent: 2 + - uid: 5617 + components: + - type: Transform + pos: -44.5,-48.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: -41.5,-48.5 + parent: 2 - uid: 5654 components: - type: Transform pos: -35.5,23.5 parent: 2 - - uid: 5725 + - uid: 5757 components: - type: Transform - pos: -58.5,-60.5 + pos: -29.5,-19.5 parent: 2 - - uid: 5921 + - uid: 5850 components: - type: Transform - pos: -2.5,-8.5 + pos: 16.5,-17.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: 24.5,-36.5 parent: 2 - uid: 6026 components: - type: Transform - pos: -62.5,-60.5 + pos: 31.5,-1.5 parent: 2 - - uid: 6032 + - uid: 6038 components: - type: Transform - pos: -62.5,-59.5 + pos: 22.5,-13.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: -4.5,-10.5 parent: 2 - uid: 6052 components: @@ -38382,195 +42827,190 @@ entities: - type: Transform pos: 21.5,10.5 parent: 2 - - uid: 6098 + - uid: 6104 components: - type: Transform - pos: -60.5,-60.5 - parent: 2 - - uid: 6101 - components: - - type: Transform - pos: -3.5,-8.5 + pos: 5.5,-17.5 parent: 2 - uid: 6107 components: - type: Transform pos: 33.5,6.5 parent: 2 - - uid: 6113 + - uid: 6151 components: - type: Transform - pos: -60.5,-59.5 - parent: 2 - - uid: 6123 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 6124 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 2 - - uid: 6137 - components: - - type: Transform - pos: -4.5,-10.5 + pos: -31.5,-15.5 parent: 2 - uid: 6164 components: - type: Transform pos: 25.5,-18.5 parent: 2 - - uid: 6229 + - uid: 6208 components: - type: Transform - pos: -8.5,-53.5 + pos: -32.5,-15.5 parent: 2 - - uid: 6303 + - uid: 6228 components: - type: Transform - pos: 23.5,-15.5 + pos: -27.5,-15.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 10.5,-17.5 parent: 2 - uid: 6304 components: - type: Transform - pos: 21.5,-15.5 + pos: 14.5,-17.5 parent: 2 - uid: 6309 components: - type: Transform pos: 23.5,-16.5 parent: 2 + - uid: 6312 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 - uid: 6343 components: - type: Transform pos: 23.5,-19.5 parent: 2 + - uid: 6372 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 - uid: 6398 components: - type: Transform pos: 23.5,-18.5 parent: 2 + - uid: 6403 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 - uid: 6414 components: - type: Transform pos: 23.5,-17.5 parent: 2 + - uid: 6447 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: -8.5,-55.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 - uid: 6504 components: - type: Transform pos: 40.5,6.5 parent: 2 - - uid: 6548 + - uid: 6549 components: - type: Transform - pos: 25.5,2.5 - parent: 2 - - uid: 6551 - components: - - type: Transform - pos: 25.5,1.5 - parent: 2 - - uid: 6552 - components: - - type: Transform - pos: 25.5,0.5 - parent: 2 - - uid: 6553 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 2 - - uid: 6557 - components: - - type: Transform - pos: 25.5,3.5 - parent: 2 - - uid: 6558 - components: - - type: Transform - pos: 24.5,3.5 - parent: 2 - - uid: 6584 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 2 - - uid: 6585 - components: - - type: Transform - pos: 23.5,-3.5 + pos: 13.5,-13.5 parent: 2 - uid: 6586 components: - type: Transform - pos: 23.5,-4.5 + pos: 11.5,-17.5 parent: 2 - uid: 6587 components: - type: Transform - pos: 23.5,-5.5 + pos: 9.5,-17.5 parent: 2 - - uid: 6596 + - uid: 6659 components: - type: Transform - pos: 17.5,-14.5 + pos: 31.5,-2.5 parent: 2 - - uid: 6601 + - uid: 6703 components: - type: Transform - pos: 18.5,-11.5 - parent: 2 - - uid: 6602 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 2 - - uid: 6628 - components: - - type: Transform - pos: 23.5,-6.5 - parent: 2 - - uid: 6629 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 2 - - uid: 6630 - components: - - type: Transform - pos: 23.5,-8.5 - parent: 2 - - uid: 6643 - components: - - type: Transform - pos: 22.5,-8.5 - parent: 2 - - uid: 6646 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 2 - - uid: 6647 - components: - - type: Transform - pos: 21.5,-8.5 - parent: 2 - - uid: 6648 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 2 - - uid: 6649 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 2 - - uid: 6666 - components: - - type: Transform - pos: -4.5,-9.5 + pos: -7.5,-52.5 parent: 2 - uid: 6707 components: @@ -38587,81 +43027,41 @@ entities: - type: Transform pos: 24.5,-39.5 parent: 2 - - uid: 6836 + - uid: 6879 components: - type: Transform - pos: 22.5,-15.5 + pos: -4.5,-15.5 parent: 2 - uid: 6886 components: - type: Transform pos: -21.5,14.5 parent: 2 - - uid: 6893 - components: - - type: Transform - pos: 22.5,-43.5 - parent: 2 - - uid: 6894 - components: - - type: Transform - pos: 21.5,-43.5 - parent: 2 - - uid: 6895 - components: - - type: Transform - pos: 20.5,-43.5 - parent: 2 - - uid: 6896 - components: - - type: Transform - pos: 19.5,-43.5 - parent: 2 - - uid: 6897 - components: - - type: Transform - pos: 18.5,-43.5 - parent: 2 - - uid: 6898 - components: - - type: Transform - pos: 17.5,-43.5 - parent: 2 - - uid: 6899 - components: - - type: Transform - pos: 16.5,-43.5 - parent: 2 - - uid: 6900 - components: - - type: Transform - pos: 15.5,-43.5 - parent: 2 - - uid: 6901 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 2 - - uid: 6902 - components: - - type: Transform - pos: 12.5,-43.5 - parent: 2 - - uid: 6903 - components: - - type: Transform - pos: 11.5,-43.5 - parent: 2 - - uid: 6904 - components: - - type: Transform - pos: 13.5,-43.5 - parent: 2 - uid: 6959 components: - type: Transform pos: -15.5,1.5 parent: 2 + - uid: 6973 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 - uid: 7013 components: - type: Transform @@ -38707,26 +43107,101 @@ entities: - type: Transform pos: -44.5,16.5 parent: 2 + - uid: 7133 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 - uid: 7206 components: - type: Transform pos: -24.5,20.5 parent: 2 + - uid: 7223 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 - uid: 7530 components: - type: Transform pos: -23.5,20.5 parent: 2 + - uid: 7562 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 2 - uid: 7595 components: - type: Transform pos: -15.5,0.5 parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 - uid: 7732 components: - type: Transform pos: -47.5,16.5 parent: 2 + - uid: 7734 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 - uid: 7745 components: - type: Transform @@ -38747,6 +43222,11 @@ entities: - type: Transform pos: -8.5,11.5 parent: 2 + - uid: 7789 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 - uid: 7804 components: - type: Transform @@ -38862,6 +43342,11 @@ entities: - type: Transform pos: -19.5,14.5 parent: 2 + - uid: 8475 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 - uid: 8504 components: - type: Transform @@ -38872,6 +43357,16 @@ entities: - type: Transform pos: 63.5,4.5 parent: 2 + - uid: 8523 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 - uid: 8632 components: - type: Transform @@ -38887,6 +43382,21 @@ entities: - type: Transform pos: 36.5,11.5 parent: 2 + - uid: 8686 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 - uid: 8709 components: - type: Transform @@ -39087,26 +43597,11 @@ entities: - type: Transform pos: 36.5,9.5 parent: 2 - - uid: 8875 - components: - - type: Transform - pos: -26.5,-19.5 - parent: 2 - uid: 8883 components: - type: Transform pos: -15.5,3.5 parent: 2 - - uid: 8892 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 2 - - uid: 8893 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 2 - uid: 8914 components: - type: Transform @@ -39182,6 +43677,11 @@ entities: - type: Transform pos: -32.5,23.5 parent: 2 + - uid: 8964 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 - uid: 8967 components: - type: Transform @@ -39347,11 +43847,6 @@ entities: - type: Transform pos: 36.5,8.5 parent: 2 - - uid: 9161 - components: - - type: Transform - pos: 23.5,-43.5 - parent: 2 - uid: 9162 components: - type: Transform @@ -39647,21 +44142,66 @@ entities: - type: Transform pos: -8.5,-48.5 parent: 2 + - uid: 9351 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 - uid: 9354 components: - type: Transform pos: -50.5,-11.5 parent: 2 - - uid: 9577 + - uid: 9496 components: - type: Transform - pos: -27.5,-19.5 + pos: 12.5,-33.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 9516 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + pos: 24.5,-37.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: 31.5,-11.5 parent: 2 - uid: 9622 components: - type: Transform pos: 7.5,-25.5 parent: 2 + - uid: 9644 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 9665 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 - uid: 9736 components: - type: Transform @@ -39727,126 +44267,41 @@ entities: - type: Transform pos: -19.5,-57.5 parent: 2 + - uid: 9939 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 - uid: 10093 components: - type: Transform pos: 32.5,6.5 parent: 2 - - uid: 10094 - components: - - type: Transform - pos: 32.5,5.5 - parent: 2 - - uid: 10095 - components: - - type: Transform - pos: 32.5,4.5 - parent: 2 - - uid: 10096 - components: - - type: Transform - pos: 32.5,3.5 - parent: 2 - - uid: 10097 - components: - - type: Transform - pos: 32.5,2.5 - parent: 2 - - uid: 10098 - components: - - type: Transform - pos: 32.5,1.5 - parent: 2 - - uid: 10100 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 2 - - uid: 10101 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - uid: 10110 components: - type: Transform pos: -25.5,-41.5 parent: 2 - - uid: 10112 - components: - - type: Transform - pos: -27.5,-41.5 - parent: 2 - - uid: 10113 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 2 - - uid: 10114 - components: - - type: Transform - pos: -27.5,-43.5 - parent: 2 - - uid: 10115 - components: - - type: Transform - pos: -27.5,-44.5 - parent: 2 - - uid: 10116 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - - uid: 10117 - components: - - type: Transform - pos: -27.5,-46.5 - parent: 2 - - uid: 10118 - components: - - type: Transform - pos: -27.5,-47.5 - parent: 2 - - uid: 10136 - components: - - type: Transform - pos: -28.5,-48.5 - parent: 2 - - uid: 10163 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 2 - - uid: 10164 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 2 - - uid: 10165 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 2 - - uid: 10166 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - - uid: 10167 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - uid: 10168 components: - type: Transform pos: 31.5,-3.5 parent: 2 - - uid: 10169 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 2 - uid: 10176 components: - type: Transform @@ -39862,51 +44317,16 @@ entities: - type: Transform pos: 20.5,10.5 parent: 2 + - uid: 10185 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 - uid: 10186 components: - type: Transform pos: 27.5,-18.5 parent: 2 - - uid: 10187 - components: - - type: Transform - pos: 21.5,5.5 - parent: 2 - - uid: 10188 - components: - - type: Transform - pos: 21.5,4.5 - parent: 2 - - uid: 10189 - components: - - type: Transform - pos: 21.5,3.5 - parent: 2 - - uid: 10190 - components: - - type: Transform - pos: 21.5,2.5 - parent: 2 - - uid: 10192 - components: - - type: Transform - pos: 21.5,1.5 - parent: 2 - - uid: 10194 - components: - - type: Transform - pos: 22.5,1.5 - parent: 2 - - uid: 10195 - components: - - type: Transform - pos: 24.5,1.5 - parent: 2 - - uid: 10196 - components: - - type: Transform - pos: 23.5,1.5 - parent: 2 - uid: 10204 components: - type: Transform @@ -39917,6 +44337,21 @@ entities: - type: Transform pos: 29.5,-18.5 parent: 2 + - uid: 10213 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 - uid: 10222 components: - type: Transform @@ -39927,51 +44362,11 @@ entities: - type: Transform pos: 26.5,-18.5 parent: 2 - - uid: 10224 - components: - - type: Transform - pos: 18.5,-5.5 - parent: 2 - - uid: 10225 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 2 - - uid: 10226 - components: - - type: Transform - pos: 18.5,-3.5 - parent: 2 - - uid: 10227 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 2 - - uid: 10228 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 2 - uid: 10253 components: - type: Transform pos: -23.5,-22.5 parent: 2 - - uid: 10256 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 2 - - uid: 10258 - components: - - type: Transform - pos: 3.5,-46.5 - parent: 2 - - uid: 10259 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 2 - uid: 10260 components: - type: Transform @@ -40112,11 +44507,6 @@ entities: - type: Transform pos: 10.5,-21.5 parent: 2 - - uid: 10291 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 2 - uid: 10308 components: - type: Transform @@ -40137,180 +44527,80 @@ entities: - type: Transform pos: 31.5,-18.5 parent: 2 - - uid: 10386 - components: - - type: Transform - pos: -45.5,-55.5 - parent: 2 - - uid: 10392 - components: - - type: Transform - pos: -44.5,-55.5 - parent: 2 - - uid: 10401 - components: - - type: Transform - pos: -46.5,-55.5 - parent: 2 - - uid: 10402 - components: - - type: Transform - pos: -46.5,-54.5 - parent: 2 - - uid: 10403 - components: - - type: Transform - pos: -47.5,-54.5 - parent: 2 - - uid: 10404 - components: - - type: Transform - pos: -48.5,-54.5 - parent: 2 - - uid: 10405 - components: - - type: Transform - pos: -49.5,-54.5 - parent: 2 - - uid: 10406 - components: - - type: Transform - pos: -50.5,-54.5 - parent: 2 - - uid: 10407 - components: - - type: Transform - pos: -43.5,-54.5 - parent: 2 - - uid: 10408 - components: - - type: Transform - pos: -43.5,-55.5 - parent: 2 - - uid: 10409 - components: - - type: Transform - pos: -43.5,-53.5 - parent: 2 - - uid: 10410 - components: - - type: Transform - pos: -42.5,-54.5 - parent: 2 - - uid: 10411 - components: - - type: Transform - pos: -41.5,-54.5 - parent: 2 - - uid: 10417 - components: - - type: Transform - pos: -33.5,-51.5 - parent: 2 - - uid: 10418 - components: - - type: Transform - pos: -34.5,-51.5 - parent: 2 - - uid: 10419 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - - uid: 10420 - components: - - type: Transform - pos: -36.5,-51.5 - parent: 2 - - uid: 10421 - components: - - type: Transform - pos: -37.5,-51.5 - parent: 2 - - uid: 10422 - components: - - type: Transform - pos: -37.5,-52.5 - parent: 2 - - uid: 10423 - components: - - type: Transform - pos: -37.5,-53.5 - parent: 2 - - uid: 10424 - components: - - type: Transform - pos: -37.5,-54.5 - parent: 2 - - uid: 10425 - components: - - type: Transform - pos: -38.5,-54.5 - parent: 2 - - uid: 10426 - components: - - type: Transform - pos: -39.5,-54.5 - parent: 2 - - uid: 10427 - components: - - type: Transform - pos: -40.5,-54.5 - parent: 2 - - uid: 10428 - components: - - type: Transform - pos: -30.5,-48.5 - parent: 2 - - uid: 10429 - components: - - type: Transform - pos: -29.5,-48.5 - parent: 2 - - uid: 10431 - components: - - type: Transform - pos: -27.5,-48.5 - parent: 2 - - uid: 10434 - components: - - type: Transform - pos: -52.5,-54.5 - parent: 2 - uid: 10437 components: - type: Transform pos: -23.5,-27.5 parent: 2 - - uid: 10472 + - uid: 10462 components: - type: Transform - pos: -64.5,-50.5 + pos: -4.5,-14.5 parent: 2 - - uid: 10502 + - uid: 10480 components: - type: Transform - pos: -70.5,-54.5 + pos: -42.5,-48.5 parent: 2 - - uid: 10503 + - uid: 10644 components: - type: Transform - pos: -69.5,-54.5 + pos: -47.5,-48.5 parent: 2 - - uid: 10504 + - uid: 10683 components: - type: Transform - pos: -68.5,-54.5 + pos: 28.5,7.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + pos: -76.5,-56.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + pos: -76.5,-57.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 10773 + components: + - type: Transform + pos: -76.5,-60.5 parent: 2 - uid: 11107 components: - type: Transform pos: 10.5,-43.5 parent: 2 - - uid: 11216 + - uid: 11177 components: - type: Transform - pos: 21.5,11.5 + pos: 31.5,-9.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + pos: -49.5,-49.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: -49.5,-50.5 parent: 2 - uid: 11217 components: @@ -40325,33 +44615,53 @@ entities: - uid: 11219 components: - type: Transform - pos: 24.5,11.5 + pos: -61.5,-59.5 parent: 2 - uid: 11220 components: - type: Transform - pos: 24.5,12.5 + pos: -49.5,-52.5 parent: 2 - - uid: 11221 + - uid: 11240 components: - type: Transform - pos: 24.5,13.5 + pos: -49.5,-53.5 parent: 2 - - uid: 11222 + - uid: 11245 components: - type: Transform - pos: 23.5,13.5 + pos: -49.5,-54.5 parent: 2 - - uid: 11223 + - uid: 11260 components: - type: Transform - pos: 23.5,14.5 + pos: -49.5,-51.5 + parent: 2 + - uid: 11270 + components: + - type: Transform + pos: -49.5,-58.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + pos: -49.5,-57.5 parent: 2 - uid: 11325 components: - type: Transform pos: -11.5,24.5 parent: 2 + - uid: 11384 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 - uid: 11415 components: - type: Transform @@ -40367,10 +44677,35 @@ entities: - type: Transform pos: 41.5,-31.5 parent: 2 - - uid: 11833 + - uid: 11507 components: - type: Transform - pos: 1.5,-20.5 + pos: -49.5,-48.5 + parent: 2 + - uid: 11788 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + pos: -29.5,-18.5 parent: 2 - uid: 12064 components: @@ -40392,6 +44727,46 @@ entities: - type: Transform pos: -9.5,-22.5 parent: 2 + - uid: 12229 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: -49.5,-56.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 12288 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 - uid: 12313 components: - type: Transform @@ -40422,15 +44797,40 @@ entities: - type: Transform pos: 4.5,11.5 parent: 2 + - uid: 12352 + components: + - type: Transform + pos: -51.5,-59.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + pos: -51.5,-58.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + pos: -55.5,-59.5 + parent: 2 + - uid: 12376 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 - uid: 12440 components: - type: Transform pos: -8.5,-19.5 parent: 2 - - uid: 12448 + - uid: 12510 components: - type: Transform - pos: 32.5,0.5 + pos: 44.5,14.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + pos: 27.5,7.5 parent: 2 - uid: 12669 components: @@ -40482,26 +44882,41 @@ entities: - type: Transform pos: 10.5,11.5 parent: 2 + - uid: 13035 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 - uid: 13092 components: - type: Transform pos: -18.5,15.5 parent: 2 + - uid: 13118 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 - uid: 13160 components: - type: Transform pos: 17.5,10.5 parent: 2 - - uid: 13170 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 2 - uid: 13173 components: - type: Transform pos: -3.5,11.5 parent: 2 + - uid: 13313 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 2 - uid: 13345 components: - type: Transform @@ -40517,6 +44932,36 @@ entities: - type: Transform pos: 19.5,10.5 parent: 2 + - uid: 13729 + components: + - type: Transform + pos: -46.5,-48.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 - uid: 14249 components: - type: Transform @@ -40552,11 +44997,6 @@ entities: - type: Transform pos: -11.5,22.5 parent: 2 - - uid: 14398 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 2 - uid: 14435 components: - type: Transform @@ -40567,6 +45007,136 @@ entities: - type: Transform pos: -23.5,-25.5 parent: 2 + - uid: 14784 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 14789 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 14790 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 14793 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 14796 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 15145 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - uid: 15147 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: -34.5,-41.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + pos: -35.5,-41.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 15174 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 + - uid: 15189 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 15190 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 15195 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 15196 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + pos: -76.5,-59.5 + parent: 2 + - uid: 15232 + components: + - type: Transform + pos: -76.5,-58.5 + parent: 2 + - uid: 15233 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 15234 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + pos: -78.5,-54.5 + parent: 2 - uid: 15379 components: - type: Transform @@ -40577,100 +45147,30 @@ entities: - type: Transform pos: -23.5,-21.5 parent: 2 - - uid: 15477 + - uid: 15799 components: - type: Transform - pos: 9.5,-15.5 - parent: 2 - - uid: 15659 - components: - - type: Transform - pos: -32.5,-48.5 - parent: 2 - - uid: 15705 - components: - - type: Transform - pos: -62.5,-49.5 - parent: 2 - - uid: 15713 - components: - - type: Transform - pos: -64.5,-48.5 - parent: 2 - - uid: 15714 - components: - - type: Transform - pos: -62.5,-51.5 - parent: 2 - - uid: 15767 - components: - - type: Transform - pos: -62.5,-52.5 - parent: 2 - - uid: 15785 - components: - - type: Transform - pos: -64.5,-49.5 - parent: 2 - - uid: 15786 - components: - - type: Transform - pos: -62.5,-50.5 - parent: 2 - - uid: 15789 - components: - - type: Transform - pos: -58.5,-56.5 - parent: 2 - - uid: 15795 - components: - - type: Transform - pos: -67.5,-52.5 - parent: 2 - - uid: 15796 - components: - - type: Transform - pos: -63.5,-56.5 - parent: 2 - - uid: 15797 - components: - - type: Transform - pos: -67.5,-56.5 - parent: 2 - - uid: 15798 - components: - - type: Transform - pos: -59.5,-52.5 - parent: 2 - - uid: 15801 - components: - - type: Transform - pos: -58.5,-58.5 + pos: -59.5,-59.5 parent: 2 - uid: 15802 components: - type: Transform - pos: -63.5,-52.5 - parent: 2 - - uid: 15806 - components: - - type: Transform - pos: -60.5,-57.5 - parent: 2 - - uid: 15807 - components: - - type: Transform - pos: -60.5,-58.5 + pos: -58.5,-58.5 parent: 2 - uid: 15808 components: - type: Transform - pos: -58.5,-57.5 + pos: -56.5,-58.5 parent: 2 - uid: 15809 components: - type: Transform - pos: -59.5,-56.5 + pos: -55.5,-60.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + pos: -62.5,-59.5 parent: 2 - uid: 15813 components: @@ -40712,65 +45212,30 @@ entities: - type: Transform pos: -16.5,-16.5 parent: 2 - - uid: 15826 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - - uid: 15827 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 2 - - uid: 15831 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 15833 - components: - - type: Transform - pos: 18.5,-10.5 - parent: 2 - - uid: 15850 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 15862 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 2 - - uid: 15869 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 2 - - uid: 15876 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 - uid: 15943 components: - type: Transform pos: -63.5,-8.5 parent: 2 - - uid: 16011 + - uid: 16063 components: - type: Transform - pos: 17.5,-15.5 + pos: -57.5,-58.5 parent: 2 - - uid: 16137 + - uid: 16070 components: - type: Transform - pos: 15.5,-15.5 + pos: -55.5,-58.5 parent: 2 - - uid: 16233 + - uid: 16115 components: - type: Transform - pos: 11.5,-15.5 + pos: -60.5,-59.5 + parent: 2 + - uid: 16195 + components: + - type: Transform + pos: -58.5,-59.5 parent: 2 - uid: 16269 components: @@ -40917,160 +45382,35 @@ entities: - type: Transform pos: -39.5,-12.5 parent: 2 - - uid: 16302 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 2 - uid: 16303 components: - type: Transform pos: -41.5,-12.5 parent: 2 - - uid: 16304 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 2 - - uid: 16305 - components: - - type: Transform - pos: -38.5,-14.5 - parent: 2 - - uid: 16306 - components: - - type: Transform - pos: -38.5,-15.5 - parent: 2 - - uid: 16307 - components: - - type: Transform - pos: -38.5,-16.5 - parent: 2 - - uid: 16308 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 2 - - uid: 16309 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 2 - - uid: 16310 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 2 - - uid: 16311 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - uid: 16312 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 2 - - uid: 16313 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 2 - - uid: 16314 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 2 - - uid: 16315 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 2 - - uid: 16316 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 2 - - uid: 16317 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 2 - - uid: 16318 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 2 - - uid: 16319 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 2 - - uid: 16322 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 2 - - uid: 16323 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 2 - - uid: 16324 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 2 - - uid: 16325 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 2 - - uid: 16326 - components: - - type: Transform - pos: -20.5,-15.5 - parent: 2 - - uid: 16327 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 2 - - uid: 16328 - components: - - type: Transform - pos: -19.5,-14.5 - parent: 2 - uid: 16329 components: - type: Transform - pos: -25.5,-15.5 - parent: 2 - - uid: 16330 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - - uid: 16637 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 2 - - uid: 16638 - components: - - type: Transform - pos: -17.5,-14.5 + pos: -58.5,-60.5 parent: 2 - uid: 16639 components: - type: Transform pos: -16.5,-14.5 parent: 2 - - uid: 17287 + - uid: 16687 components: - type: Transform - pos: 25.5,-2.5 + pos: 36.5,13.5 + parent: 2 + - uid: 16922 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 17174 + components: + - type: Transform + pos: 22.5,-33.5 parent: 2 - uid: 17297 components: @@ -41132,6 +45472,41 @@ entities: - type: Transform pos: 65.5,0.5 parent: 2 + - uid: 17813 + components: + - type: Transform + pos: -75.5,-56.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + pos: -74.5,-56.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: -74.5,-57.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + pos: -74.5,-58.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: -74.5,-59.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + pos: -74.5,-60.5 + parent: 2 + - uid: 17827 + components: + - type: Transform + pos: -72.5,-60.5 + parent: 2 - uid: 17830 components: - type: Transform @@ -41162,6 +45537,16 @@ entities: - type: Transform pos: 69.5,7.5 parent: 2 + - uid: 17843 + components: + - type: Transform + pos: -72.5,-59.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: -72.5,-58.5 + parent: 2 - uid: 17871 components: - type: Transform @@ -41172,6 +45557,16 @@ entities: - type: Transform pos: 35.5,-31.5 parent: 2 + - uid: 17887 + components: + - type: Transform + pos: -72.5,-57.5 + parent: 2 + - uid: 17899 + components: + - type: Transform + pos: -72.5,-56.5 + parent: 2 - uid: 17902 components: - type: Transform @@ -41242,6 +45637,11 @@ entities: - type: Transform pos: 69.5,5.5 parent: 2 + - uid: 18150 + components: + - type: Transform + pos: -71.5,-56.5 + parent: 2 - uid: 18154 components: - type: Transform @@ -41257,6 +45657,11 @@ entities: - type: Transform pos: -33.5,23.5 parent: 2 + - uid: 18188 + components: + - type: Transform + pos: -70.5,-56.5 + parent: 2 - uid: 18213 components: - type: Transform @@ -41317,6 +45722,21 @@ entities: - type: Transform pos: -53.5,26.5 parent: 2 + - uid: 18266 + components: + - type: Transform + pos: -70.5,-57.5 + parent: 2 + - uid: 18275 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 2 + - uid: 18311 + components: + - type: Transform + pos: -70.5,-59.5 + parent: 2 - uid: 18350 components: - type: Transform @@ -41362,6 +45782,11 @@ entities: - type: Transform pos: 57.5,-3.5 parent: 2 + - uid: 18600 + components: + - type: Transform + pos: -70.5,-60.5 + parent: 2 - uid: 18602 components: - type: Transform @@ -41377,6 +45802,31 @@ entities: - type: Transform pos: 57.5,-2.5 parent: 2 + - uid: 18609 + components: + - type: Transform + pos: -68.5,-60.5 + parent: 2 + - uid: 18614 + components: + - type: Transform + pos: -68.5,-59.5 + parent: 2 + - uid: 18726 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - uid: 18853 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - uid: 18891 + components: + - type: Transform + pos: -68.5,-58.5 + parent: 2 - uid: 18904 components: - type: Transform @@ -41387,87 +45837,577 @@ entities: - type: Transform pos: -15.5,-1.5 parent: 2 - - uid: 18935 + - uid: 18918 components: - type: Transform - pos: -1.5,-8.5 + pos: -7.5,-49.5 parent: 2 - - uid: 18936 + - uid: 18980 components: - type: Transform - pos: -0.5,-8.5 + pos: -68.5,-57.5 parent: 2 - - uid: 18937 + - uid: 18981 components: - type: Transform - pos: 0.5,-8.5 + pos: -68.5,-56.5 parent: 2 - - uid: 18938 + - uid: 18982 components: - type: Transform - pos: -3.5,-11.5 + pos: -67.5,-56.5 parent: 2 - - uid: 18939 + - uid: 19025 components: - type: Transform - pos: -1.5,-11.5 + pos: -66.5,-56.5 parent: 2 - - uid: 18940 + - uid: 19026 components: - type: Transform - pos: -0.5,-11.5 + pos: -66.5,-57.5 parent: 2 - - uid: 18941 + - uid: 19027 components: - type: Transform - pos: -2.5,-11.5 + pos: -66.5,-58.5 parent: 2 - - uid: 19162 + - uid: 19164 components: - type: Transform - pos: -31.5,-48.5 + pos: -66.5,-59.5 parent: 2 - - uid: 19884 + - uid: 20154 components: - type: Transform - pos: -32.5,-50.5 + pos: -66.5,-60.5 parent: 2 - - uid: 20004 + - uid: 20156 components: - type: Transform - pos: 25.5,-1.5 + pos: -77.5,-54.5 + parent: 2 + - uid: 20157 + components: + - type: Transform + pos: -76.5,-54.5 + parent: 2 + - uid: 20158 + components: + - type: Transform + pos: -76.5,-48.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + pos: -76.5,-49.5 + parent: 2 + - uid: 20264 + components: + - type: Transform + pos: -76.5,-50.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + pos: -76.5,-51.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + pos: -76.5,-52.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + pos: -75.5,-52.5 + parent: 2 + - uid: 20699 + components: + - type: Transform + pos: -74.5,-52.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + pos: -74.5,-51.5 + parent: 2 + - uid: 20701 + components: + - type: Transform + pos: -74.5,-50.5 + parent: 2 + - uid: 20732 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 20741 + components: + - type: Transform + pos: -74.5,-49.5 + parent: 2 + - uid: 20742 + components: + - type: Transform + pos: -74.5,-48.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + pos: -63.5,-58.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + pos: -72.5,-48.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + pos: -72.5,-49.5 + parent: 2 + - uid: 20746 + components: + - type: Transform + pos: -72.5,-50.5 + parent: 2 + - uid: 20747 + components: + - type: Transform + pos: -72.5,-51.5 + parent: 2 + - uid: 20748 + components: + - type: Transform + pos: -72.5,-52.5 + parent: 2 + - uid: 20749 + components: + - type: Transform + pos: -71.5,-52.5 + parent: 2 + - uid: 20750 + components: + - type: Transform + pos: -70.5,-52.5 + parent: 2 + - uid: 20751 + components: + - type: Transform + pos: -70.5,-51.5 + parent: 2 + - uid: 20752 + components: + - type: Transform + pos: -70.5,-50.5 + parent: 2 + - uid: 20754 + components: + - type: Transform + pos: -70.5,-49.5 parent: 2 - uid: 20765 components: - type: Transform pos: -16.5,-55.5 parent: 2 -- proto: CableHVStack - entities: - - uid: 3012 + - uid: 20807 components: - type: Transform - pos: -6.6450443,-14.737694 + pos: -70.5,-48.5 parent: 2 + - uid: 20808 + components: + - type: Transform + pos: -68.5,-48.5 + parent: 2 + - uid: 20809 + components: + - type: Transform + pos: -68.5,-49.5 + parent: 2 + - uid: 20810 + components: + - type: Transform + pos: -68.5,-50.5 + parent: 2 + - uid: 20824 + components: + - type: Transform + pos: -68.5,-51.5 + parent: 2 + - uid: 21092 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 21093 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 21094 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 21095 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 21096 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 21097 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - uid: 21098 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 21099 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 2 + - uid: 21100 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 21101 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - uid: 21102 + components: + - type: Transform + pos: 12.5,-57.5 + parent: 2 + - uid: 21103 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 2 + - uid: 21104 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 21105 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 + - uid: 21106 + components: + - type: Transform + pos: 15.5,-58.5 + parent: 2 + - uid: 21107 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - uid: 21108 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 2 + - uid: 21109 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 2 + - uid: 21110 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 + - uid: 21111 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 2 + - uid: 21112 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 2 + - uid: 21113 + components: + - type: Transform + pos: 14.5,-64.5 + parent: 2 + - uid: 21171 + components: + - type: Transform + pos: -68.5,-52.5 + parent: 2 + - uid: 21176 + components: + - type: Transform + pos: -66.5,-52.5 + parent: 2 + - uid: 21182 + components: + - type: Transform + pos: -67.5,-52.5 + parent: 2 + - uid: 21183 + components: + - type: Transform + pos: -66.5,-51.5 + parent: 2 + - uid: 21195 + components: + - type: Transform + pos: -66.5,-50.5 + parent: 2 + - uid: 21196 + components: + - type: Transform + pos: -66.5,-49.5 + parent: 2 + - uid: 21199 + components: + - type: Transform + pos: -66.5,-48.5 + parent: 2 + - uid: 21215 + components: + - type: Transform + pos: -64.5,-48.5 + parent: 2 + - uid: 21218 + components: + - type: Transform + pos: -64.5,-49.5 + parent: 2 + - uid: 21226 + components: + - type: Transform + pos: -64.5,-50.5 + parent: 2 + - uid: 21227 + components: + - type: Transform + pos: -64.5,-51.5 + parent: 2 + - uid: 21228 + components: + - type: Transform + pos: -64.5,-52.5 + parent: 2 + - uid: 21320 + components: + - type: Transform + pos: -63.5,-52.5 + parent: 2 + - uid: 21321 + components: + - type: Transform + pos: -62.5,-52.5 + parent: 2 + - uid: 21322 + components: + - type: Transform + pos: -62.5,-51.5 + parent: 2 + - uid: 21323 + components: + - type: Transform + pos: -62.5,-50.5 + parent: 2 + - uid: 21347 + components: + - type: Transform + pos: -62.5,-49.5 + parent: 2 + - uid: 21352 + components: + - type: Transform + pos: -62.5,-48.5 + parent: 2 + - uid: 21375 + components: + - type: Transform + pos: -63.5,-59.5 + parent: 2 + - uid: 21376 + components: + - type: Transform + pos: -63.5,-57.5 + parent: 2 + - uid: 21377 + components: + - type: Transform + pos: -63.5,-56.5 + parent: 2 + - uid: 21378 + components: + - type: Transform + pos: -63.5,-54.5 + parent: 2 + - uid: 21390 + components: + - type: Transform + pos: -64.5,-54.5 + parent: 2 + - uid: 21399 + components: + - type: Transform + pos: -63.5,-55.5 + parent: 2 + - uid: 21401 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 21793 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 21794 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 21795 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 21796 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 21797 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 21798 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 21799 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 21933 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 21990 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 22034 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 22040 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 22053 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 22114 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 22143 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 22215 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 22217 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 22218 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 22219 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 22220 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 22221 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 22222 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - uid: 22223 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 2 + - uid: 22224 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 +- proto: CableHVStack + entities: - uid: 3391 components: - type: Transform pos: -16.573278,-25.136585 parent: 2 - - uid: 10653 + - uid: 10203 components: - type: Transform - pos: -31.632442,-59.28418 + pos: -13.366984,-10.436457 parent: 2 - uid: 10756 components: - type: Transform pos: -55.592247,-13.290644 parent: 2 - - uid: 17986 + - uid: 16893 components: - type: Transform - pos: 12.482157,-19.503796 + pos: -58.51258,-58.38839 parent: 2 - uid: 18184 components: @@ -41501,6 +46441,11 @@ entities: - type: Transform pos: -28.5,6.5 parent: 2 + - uid: 68 + components: + - type: Transform + pos: -30.5,-61.5 + parent: 2 - uid: 77 components: - type: Transform @@ -41536,21 +46481,11 @@ entities: - type: Transform pos: -1.5,25.5 parent: 2 - - uid: 198 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 2 - uid: 204 components: - type: Transform pos: -0.5,25.5 parent: 2 - - uid: 217 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - uid: 239 components: - type: Transform @@ -41566,11 +46501,6 @@ entities: - type: Transform pos: 4.5,20.5 parent: 2 - - uid: 264 - components: - - type: Transform - pos: 5.5,25.5 - parent: 2 - uid: 269 components: - type: Transform @@ -41591,11 +46521,6 @@ entities: - type: Transform pos: -4.5,24.5 parent: 2 - - uid: 289 - components: - - type: Transform - pos: -44.5,-38.5 - parent: 2 - uid: 316 components: - type: Transform @@ -41621,31 +46546,21 @@ entities: - type: Transform pos: -12.5,-53.5 parent: 2 - - uid: 355 - components: - - type: Transform - pos: 6.5,25.5 - parent: 2 - - uid: 359 - components: - - type: Transform - pos: 7.5,25.5 - parent: 2 - uid: 363 components: - type: Transform pos: 31.5,-11.5 parent: 2 + - uid: 395 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 - uid: 403 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 419 - components: - - type: Transform - pos: -44.5,-36.5 - parent: 2 - uid: 426 components: - type: Transform @@ -41666,6 +46581,11 @@ entities: - type: Transform pos: -7.5,-17.5 parent: 2 + - uid: 507 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 - uid: 508 components: - type: Transform @@ -41746,11 +46666,6 @@ entities: - type: Transform pos: 31.5,-8.5 parent: 2 - - uid: 584 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - uid: 599 components: - type: Transform @@ -41766,16 +46681,6 @@ entities: - type: Transform pos: -25.5,14.5 parent: 2 - - uid: 681 - components: - - type: Transform - pos: 36.5,11.5 - parent: 2 - - uid: 687 - components: - - type: Transform - pos: 36.5,12.5 - parent: 2 - uid: 723 components: - type: Transform @@ -41786,36 +46691,36 @@ entities: - type: Transform pos: -8.5,21.5 parent: 2 - - uid: 770 - components: - - type: Transform - pos: -8.5,19.5 - parent: 2 - - uid: 771 - components: - - type: Transform - pos: -9.5,19.5 - parent: 2 - uid: 778 components: - type: Transform pos: -8.5,20.5 parent: 2 - - uid: 860 + - uid: 841 components: - type: Transform - pos: -29.5,-55.5 - parent: 2 - - uid: 890 - components: - - type: Transform - pos: 13.5,-53.5 + pos: 22.5,-21.5 parent: 2 - uid: 911 components: - type: Transform pos: -31.5,21.5 parent: 2 + - uid: 937 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 - uid: 1078 components: - type: Transform @@ -41826,6 +46731,11 @@ entities: - type: Transform pos: 39.5,-14.5 parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 - uid: 1215 components: - type: Transform @@ -41861,11 +46771,6 @@ entities: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 1289 - components: - - type: Transform - pos: -36.5,-41.5 - parent: 2 - uid: 1291 components: - type: Transform @@ -41891,25 +46796,15 @@ entities: - type: Transform pos: 4.5,12.5 parent: 2 - - uid: 1334 + - uid: 1321 components: - type: Transform - pos: -41.5,-37.5 - parent: 2 - - uid: 1335 - components: - - type: Transform - pos: -41.5,-35.5 + pos: 26.5,22.5 parent: 2 - uid: 1338 components: - type: Transform - pos: 8.5,25.5 - parent: 2 - - uid: 1339 - components: - - type: Transform - pos: 9.5,25.5 + pos: 27.5,22.5 parent: 2 - uid: 1340 components: @@ -41924,7 +46819,7 @@ entities: - uid: 1344 components: - type: Transform - pos: 13.5,22.5 + pos: 28.5,22.5 parent: 2 - uid: 1345 components: @@ -41936,16 +46831,6 @@ entities: - type: Transform pos: 5.5,17.5 parent: 2 - - uid: 1347 - components: - - type: Transform - pos: 11.5,25.5 - parent: 2 - - uid: 1348 - components: - - type: Transform - pos: -41.5,-34.5 - parent: 2 - uid: 1351 components: - type: Transform @@ -41959,27 +46844,7 @@ entities: - uid: 1379 components: - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 1380 - components: - - type: Transform - pos: 13.5,23.5 - parent: 2 - - uid: 1382 - components: - - type: Transform - pos: -42.5,-39.5 - parent: 2 - - uid: 1391 - components: - - type: Transform - pos: 12.5,25.5 - parent: 2 - - uid: 1399 - components: - - type: Transform - pos: 13.5,25.5 + pos: 31.5,22.5 parent: 2 - uid: 1400 components: @@ -41991,16 +46856,6 @@ entities: - type: Transform pos: 0.5,25.5 parent: 2 - - uid: 1450 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 2 - - uid: 1483 - components: - - type: Transform - pos: -31.5,-54.5 - parent: 2 - uid: 1490 components: - type: Transform @@ -42026,40 +46881,10 @@ entities: - type: Transform pos: 4.5,24.5 parent: 2 - - uid: 1549 + - uid: 1653 components: - type: Transform - pos: -43.5,-25.5 - parent: 2 - - uid: 1554 - components: - - type: Transform - pos: -42.5,-25.5 - parent: 2 - - uid: 1690 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - - uid: 1693 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - - uid: 1703 - components: - - type: Transform - pos: -32.5,-51.5 - parent: 2 - - uid: 1720 - components: - - type: Transform - pos: -31.5,-48.5 - parent: 2 - - uid: 1734 - components: - - type: Transform - pos: -32.5,-48.5 + pos: 25.5,14.5 parent: 2 - uid: 1774 components: @@ -42086,6 +46911,11 @@ entities: - type: Transform pos: -2.5,-5.5 parent: 2 + - uid: 1860 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 - uid: 2017 components: - type: Transform @@ -42106,11 +46936,6 @@ entities: - type: Transform pos: 41.5,2.5 parent: 2 - - uid: 2068 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 2 - uid: 2116 components: - type: Transform @@ -42161,6 +46986,31 @@ entities: - type: Transform pos: -7.5,-20.5 parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 - uid: 2330 components: - type: Transform @@ -42171,6 +47021,16 @@ entities: - type: Transform pos: -6.5,-19.5 parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 - uid: 2361 components: - type: Transform @@ -42206,15 +47066,10 @@ entities: - type: Transform pos: -8.5,-11.5 parent: 2 - - uid: 2399 + - uid: 2396 components: - type: Transform - pos: 5.5,-15.5 - parent: 2 - - uid: 2401 - components: - - type: Transform - pos: 3.5,-15.5 + pos: 45.5,-9.5 parent: 2 - uid: 2416 components: @@ -42256,6 +47111,11 @@ entities: - type: Transform pos: -23.5,20.5 parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 - uid: 2458 components: - type: Transform @@ -42271,6 +47131,11 @@ entities: - type: Transform pos: -19.5,25.5 parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 - uid: 2465 components: - type: Transform @@ -42281,6 +47146,11 @@ entities: - type: Transform pos: -18.5,28.5 parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 - uid: 2486 components: - type: Transform @@ -42289,43 +47159,23 @@ entities: - uid: 2496 components: - type: Transform - pos: 15.5,-18.5 - parent: 2 - - uid: 2501 - components: - - type: Transform - pos: 8.5,-57.5 - parent: 2 - - uid: 2503 - components: - - type: Transform - pos: 10.5,-57.5 - parent: 2 - - uid: 2504 - components: - - type: Transform - pos: 9.5,-57.5 - parent: 2 - - uid: 2512 - components: - - type: Transform - pos: -41.5,-33.5 - parent: 2 - - uid: 2514 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 2 - - uid: 2516 - components: - - type: Transform - pos: -40.5,-37.5 + pos: 24.5,-3.5 parent: 2 - uid: 2549 components: - type: Transform pos: -2.5,-4.5 parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 - uid: 2625 components: - type: Transform @@ -42341,25 +47191,15 @@ entities: - type: Transform pos: -24.5,14.5 parent: 2 - - uid: 2673 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - uid: 2683 components: - type: Transform pos: -8.5,-36.5 parent: 2 - - uid: 2689 + - uid: 2702 components: - type: Transform - pos: -32.5,-49.5 - parent: 2 - - uid: 2690 - components: - - type: Transform - pos: -32.5,-50.5 + pos: 45.5,-19.5 parent: 2 - uid: 2711 components: @@ -42446,26 +47286,31 @@ entities: - type: Transform pos: -25.5,13.5 parent: 2 - - uid: 2760 + - uid: 2765 components: - type: Transform - pos: 4.5,-15.5 - parent: 2 - - uid: 2761 - components: - - type: Transform - pos: 2.5,-15.5 + pos: 45.5,-17.5 parent: 2 - uid: 2767 components: - type: Transform pos: -24.5,-4.5 parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 - uid: 2828 components: - type: Transform pos: -11.5,11.5 parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 - uid: 2837 components: - type: Transform @@ -42476,6 +47321,11 @@ entities: - type: Transform pos: -27.5,0.5 parent: 2 + - uid: 2855 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 - uid: 2865 components: - type: Transform @@ -42496,16 +47346,6 @@ entities: - type: Transform pos: -19.5,23.5 parent: 2 - - uid: 2910 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 2 - - uid: 2917 - components: - - type: Transform - pos: 11.5,-53.5 - parent: 2 - uid: 2948 components: - type: Transform @@ -42521,6 +47361,11 @@ entities: - type: Transform pos: -24.5,20.5 parent: 2 + - uid: 2991 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 - uid: 3028 components: - type: Transform @@ -42531,31 +47376,131 @@ entities: - type: Transform pos: -22.5,21.5 parent: 2 + - uid: 3053 + components: + - type: Transform + pos: 24.5,-41.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 - uid: 3129 components: - type: Transform pos: -20.5,20.5 parent: 2 + - uid: 3133 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 - uid: 3340 components: - type: Transform - pos: 35.5,6.5 + pos: 21.5,-40.5 parent: 2 - uid: 3357 components: - type: Transform pos: -22.5,4.5 parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 - uid: 3402 components: - type: Transform pos: -32.5,13.5 parent: 2 + - uid: 3403 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 - uid: 3571 components: - type: Transform pos: -13.5,18.5 parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 - uid: 3588 components: - type: Transform @@ -42564,48 +47509,103 @@ entities: - uid: 3598 components: - type: Transform - pos: 27.5,6.5 + pos: 1.5,-17.5 parent: 2 - uid: 3607 components: - type: Transform - pos: 27.5,4.5 + pos: 16.5,-20.5 parent: 2 - - uid: 3643 + - uid: 3667 components: - type: Transform - pos: 27.5,5.5 - parent: 2 - - uid: 3656 - components: - - type: Transform - pos: 26.5,6.5 + pos: 21.5,-3.5 parent: 2 - uid: 3670 components: - type: Transform - pos: 28.5,3.5 + pos: 20.5,-3.5 parent: 2 - uid: 3671 components: - type: Transform - pos: 28.5,4.5 + pos: 16.5,-3.5 parent: 2 - uid: 3674 components: - type: Transform pos: 1.5,-35.5 parent: 2 + - uid: 3702 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 - uid: 3960 components: - type: Transform pos: -13.5,20.5 parent: 2 + - uid: 3995 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 - uid: 4016 components: - type: Transform pos: -14.5,-48.5 parent: 2 + - uid: 4060 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 - uid: 4062 components: - type: Transform @@ -42616,6 +47616,21 @@ entities: - type: Transform pos: -16.5,20.5 parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 15.5,-56.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: 17.5,-56.5 + parent: 2 - uid: 4168 components: - type: Transform @@ -42631,26 +47646,56 @@ entities: - type: Transform pos: 31.5,-16.5 parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 - uid: 4296 components: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 4311 + - uid: 4324 components: - type: Transform - pos: 14.5,-54.5 + pos: 0.5,-22.5 parent: 2 - uid: 4339 components: - type: Transform pos: 31.5,-17.5 parent: 2 + - uid: 4344 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 - uid: 4398 components: - type: Transform pos: 38.5,-31.5 parent: 2 + - uid: 4539 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 - uid: 4584 components: - type: Transform @@ -42664,12 +47709,12 @@ entities: - uid: 4595 components: - type: Transform - pos: -1.5,-6.5 + pos: 24.5,-33.5 parent: 2 - - uid: 4596 + - uid: 4606 components: - type: Transform - pos: -0.5,-6.5 + pos: 23.5,-33.5 parent: 2 - uid: 4612 components: @@ -42721,40 +47766,65 @@ entities: - type: Transform pos: 31.5,-12.5 parent: 2 - - uid: 4806 + - uid: 4769 components: - type: Transform - pos: -26.5,-22.5 + pos: 14.5,-33.5 parent: 2 - - uid: 4823 + - uid: 4791 components: - type: Transform - pos: -29.5,-21.5 + pos: 15.5,-33.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: 17.5,-33.5 parent: 2 - uid: 4840 components: - type: Transform pos: 34.5,-40.5 parent: 2 - - uid: 4900 + - uid: 4913 components: - type: Transform - pos: -44.5,-31.5 + pos: 18.5,-33.5 parent: 2 - - uid: 4966 + - uid: 4947 components: - type: Transform - pos: -28.5,-21.5 + pos: 19.5,-33.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: 20.5,-33.5 parent: 2 - uid: 5005 components: - type: Transform pos: -2.5,-23.5 parent: 2 - - uid: 5016 + - uid: 5080 components: - type: Transform - pos: -27.5,-22.5 + pos: 21.5,-33.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: 26.5,4.5 parent: 2 - uid: 5400 components: @@ -42776,16 +47846,26 @@ entities: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 5555 + - uid: 5543 components: - type: Transform - pos: -29.5,-36.5 + pos: 0.5,-19.5 parent: 2 - uid: 5840 components: - type: Transform pos: -6.5,23.5 parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 - uid: 5873 components: - type: Transform @@ -42796,16 +47876,21 @@ entities: - type: Transform pos: -2.5,24.5 parent: 2 - - uid: 5886 + - uid: 5896 components: - type: Transform - pos: 36.5,8.5 + pos: 14.5,-17.5 parent: 2 - uid: 5914 components: - type: Transform pos: -2.5,25.5 parent: 2 + - uid: 5921 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 - uid: 6072 components: - type: Transform @@ -42821,11 +47906,6 @@ entities: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 6201 - components: - - type: Transform - pos: 16.5,-56.5 - parent: 2 - uid: 6235 components: - type: Transform @@ -42851,75 +47931,50 @@ entities: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 6289 + - uid: 6320 components: - type: Transform - pos: 4.5,-18.5 + pos: 23.5,-6.5 parent: 2 - - uid: 6290 + - uid: 6333 components: - type: Transform - pos: 5.5,-18.5 + pos: 14.5,-64.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: 14.5,-60.5 parent: 2 - uid: 6480 components: - type: Transform pos: -18.5,16.5 parent: 2 - - uid: 6560 + - uid: 6511 components: - type: Transform - pos: 24.5,3.5 + pos: 15.5,-58.5 parent: 2 - - uid: 6561 + - uid: 6513 components: - type: Transform - pos: 24.5,2.5 + pos: -1.5,-57.5 parent: 2 - - uid: 6562 + - uid: 6676 components: - type: Transform - pos: 23.5,2.5 + pos: 45.5,-8.5 parent: 2 - - uid: 6588 + - uid: 6678 components: - type: Transform - pos: 16.5,-20.5 - parent: 2 - - uid: 6634 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 2 - - uid: 6651 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 2 - - uid: 6652 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 2 - - uid: 6653 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 2 - - uid: 6654 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 2 - - uid: 6655 - components: - - type: Transform - pos: 25.5,-11.5 - parent: 2 - - uid: 6656 - components: - - type: Transform - pos: 25.5,-12.5 + pos: 45.5,-12.5 parent: 2 - uid: 6688 components: @@ -42941,15 +47996,55 @@ entities: - type: Transform pos: 35.5,-40.5 parent: 2 - - uid: 6990 + - uid: 6872 components: - type: Transform - pos: 33.5,6.5 + pos: 26.5,-6.5 parent: 2 - - uid: 6991 + - uid: 6915 components: - type: Transform - pos: 34.5,6.5 + pos: 39.5,14.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: 14.5,-63.5 parent: 2 - uid: 7031 components: @@ -42966,31 +48061,56 @@ entities: - type: Transform pos: -14.5,-49.5 parent: 2 - - uid: 7091 + - uid: 7093 components: - type: Transform - pos: 1.5,-16.5 + pos: 40.5,14.5 parent: 2 - uid: 7095 components: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 7105 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 7110 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 2 - uid: 7122 components: - type: Transform pos: -9.5,-16.5 parent: 2 + - uid: 7139 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 - uid: 7194 components: - type: Transform @@ -43001,11 +48121,6 @@ entities: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 7240 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 2 - uid: 7259 components: - type: Transform @@ -43016,25 +48131,10 @@ entities: - type: Transform pos: 27.5,-50.5 parent: 2 - - uid: 7321 - components: - - type: Transform - pos: -35.5,-54.5 - parent: 2 - - uid: 7355 - components: - - type: Transform - pos: 33.5,2.5 - parent: 2 - uid: 7356 components: - type: Transform - pos: 34.5,2.5 - parent: 2 - - uid: 7357 - components: - - type: Transform - pos: 35.5,2.5 + pos: 22.5,-33.5 parent: 2 - uid: 7391 components: @@ -43066,166 +48166,161 @@ entities: - type: Transform pos: 41.5,8.5 parent: 2 - - uid: 7826 + - uid: 7581 components: - type: Transform - pos: 36.5,9.5 + pos: 21.5,9.5 parent: 2 - - uid: 7849 + - uid: 7603 components: - type: Transform - pos: 32.5,15.5 + pos: 15.5,-16.5 parent: 2 - - uid: 7850 + - uid: 7647 components: - type: Transform - pos: 32.5,17.5 + pos: 24.5,22.5 parent: 2 - - uid: 7851 + - uid: 7663 components: - type: Transform - pos: 32.5,18.5 + pos: -51.5,-59.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -51.5,-58.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: -24.5,-9.5 parent: 2 - uid: 7852 components: - type: Transform - pos: 32.5,19.5 + pos: 21.5,22.5 parent: 2 - uid: 7853 components: - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 7854 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 7855 - components: - - type: Transform - pos: 32.5,16.5 - parent: 2 - - uid: 7857 - components: - - type: Transform - pos: 32.5,22.5 - parent: 2 - - uid: 7858 - components: - - type: Transform - pos: 32.5,23.5 + pos: 20.5,22.5 parent: 2 - uid: 7859 components: - type: Transform - pos: 32.5,24.5 - parent: 2 - - uid: 7860 - components: - - type: Transform - pos: 32.5,25.5 - parent: 2 - - uid: 7861 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - - uid: 7862 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - uid: 7863 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - - uid: 7864 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 7865 - components: - - type: Transform - pos: 32.5,30.5 - parent: 2 - - uid: 7866 - components: - - type: Transform - pos: 32.5,31.5 + pos: 14.5,21.5 parent: 2 - uid: 7867 components: - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 7868 - components: - - type: Transform - pos: 32.5,33.5 - parent: 2 - - uid: 7869 - components: - - type: Transform - pos: 32.5,34.5 + pos: 16.5,22.5 parent: 2 - uid: 7870 components: - type: Transform - pos: 32.5,35.5 + pos: 18.5,22.5 parent: 2 - uid: 7871 components: - type: Transform - pos: 32.5,36.5 - parent: 2 - - uid: 7872 - components: - - type: Transform - pos: 32.5,37.5 + pos: 15.5,21.5 parent: 2 - uid: 7873 components: - type: Transform - pos: 32.5,38.5 - parent: 2 - - uid: 7874 - components: - - type: Transform - pos: 32.5,39.5 + pos: 16.5,-4.5 parent: 2 - uid: 7875 components: - type: Transform - pos: 33.5,39.5 + pos: 17.5,22.5 parent: 2 - - uid: 7876 + - uid: 7878 components: - type: Transform - pos: 34.5,39.5 + pos: 15.5,22.5 parent: 2 - - uid: 7879 + - uid: 7883 components: - type: Transform - pos: 31.5,20.5 + pos: 16.5,-11.5 parent: 2 - - uid: 7880 + - uid: 7884 components: - type: Transform - pos: 30.5,20.5 + pos: 16.5,-9.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: 40.5,18.5 parent: 2 - uid: 7949 components: - type: Transform pos: -21.5,4.5 parent: 2 + - uid: 7956 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 - uid: 8066 components: - type: Transform pos: -17.5,20.5 parent: 2 + - uid: 8090 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 - uid: 8098 components: - type: Transform @@ -43236,50 +48331,105 @@ entities: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 8219 + - uid: 8108 components: - type: Transform - pos: -8.5,-51.5 - parent: 2 - - uid: 8252 - components: - - type: Transform - pos: -30.5,-21.5 + pos: 45.5,-10.5 parent: 2 - uid: 8274 components: - type: Transform pos: 40.5,-6.5 parent: 2 - - uid: 8316 + - uid: 8295 components: - type: Transform - pos: -12.5,-12.5 + pos: -50.5,-51.5 parent: 2 - - uid: 8340 + - uid: 8368 components: - type: Transform - pos: 8.5,-15.5 + pos: -46.5,-48.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: -48.5,-48.5 parent: 2 - uid: 8457 components: - type: Transform pos: -11.5,25.5 parent: 2 - - uid: 8512 + - uid: 8472 components: - type: Transform - pos: 11.5,-15.5 + pos: -49.5,-48.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: -49.5,-50.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: -27.5,-62.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: -49.5,-56.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: -47.5,-48.5 + parent: 2 + - uid: 8525 + components: + - type: Transform + pos: 7.5,-17.5 parent: 2 - uid: 8547 components: - type: Transform pos: 3.5,11.5 parent: 2 - - uid: 8642 + - uid: 8552 components: - type: Transform - pos: 16.5,-17.5 + pos: -49.5,-52.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + pos: -49.5,-57.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: -49.5,-54.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 5.5,-17.5 parent: 2 - uid: 8643 components: @@ -43296,30 +48446,30 @@ entities: - type: Transform pos: 41.5,7.5 parent: 2 - - uid: 8655 - components: - - type: Transform - pos: 36.5,7.5 - parent: 2 - uid: 8661 components: - type: Transform pos: 43.5,8.5 parent: 2 - - uid: 8674 + - uid: 8670 components: - type: Transform - pos: 36.5,10.5 + pos: -35.5,3.5 parent: 2 - uid: 8683 components: - type: Transform pos: -20.5,14.5 parent: 2 - - uid: 8761 + - uid: 8706 components: - type: Transform - pos: 16.5,-18.5 + pos: 42.5,14.5 + parent: 2 + - uid: 8707 + components: + - type: Transform + pos: 41.5,14.5 parent: 2 - uid: 8764 components: @@ -43411,60 +48561,95 @@ entities: - type: Transform pos: 36.5,-6.5 parent: 2 + - uid: 9129 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 - uid: 9194 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 9269 + - uid: 9207 components: - type: Transform - pos: 15.5,-56.5 + pos: 45.5,-14.5 parent: 2 - - uid: 9294 + - uid: 9312 components: - type: Transform - pos: -18.5,-14.5 + pos: 17.5,-21.5 parent: 2 - - uid: 9297 + - uid: 9317 components: - type: Transform - pos: -16.5,-13.5 + pos: 12.5,-49.5 parent: 2 - - uid: 9300 + - uid: 9370 components: - type: Transform - pos: 14.5,-56.5 + pos: 11.5,-17.5 parent: 2 - - uid: 9316 + - uid: 9403 components: - type: Transform - pos: 14.5,-55.5 + pos: 32.5,19.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: 9.5,-17.5 parent: 2 - uid: 9535 components: - type: Transform pos: -29.5,22.5 parent: 2 - - uid: 9558 + - uid: 9544 components: - type: Transform - pos: 33.5,-5.5 + pos: 13.5,-17.5 parent: 2 - uid: 9559 components: - type: Transform pos: -28.5,22.5 parent: 2 + - uid: 9568 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 - uid: 9576 components: - type: Transform pos: 28.5,-50.5 parent: 2 - - uid: 9621 + - uid: 9577 components: - type: Transform - pos: 12.5,-13.5 + pos: 4.5,-17.5 parent: 2 - uid: 9658 components: @@ -43526,6 +48711,11 @@ entities: - type: Transform pos: 28.5,-54.5 parent: 2 + - uid: 9735 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 - uid: 9739 components: - type: Transform @@ -43726,126 +48916,51 @@ entities: - type: Transform pos: 43.5,-53.5 parent: 2 - - uid: 10062 + - uid: 10012 components: - type: Transform - pos: 32.5,14.5 + pos: 10.5,-17.5 parent: 2 - - uid: 10063 + - uid: 10057 components: - type: Transform - pos: 32.5,13.5 - parent: 2 - - uid: 10064 - components: - - type: Transform - pos: 32.5,12.5 - parent: 2 - - uid: 10065 - components: - - type: Transform - pos: 32.5,11.5 + pos: 15.5,-59.5 parent: 2 - uid: 10066 components: - type: Transform - pos: 32.5,10.5 - parent: 2 - - uid: 10067 - components: - - type: Transform - pos: 32.5,9.5 - parent: 2 - - uid: 10068 - components: - - type: Transform - pos: 32.5,8.5 + pos: 36.5,12.5 parent: 2 - uid: 10069 components: - type: Transform - pos: 32.5,7.5 - parent: 2 - - uid: 10070 - components: - - type: Transform - pos: 32.5,6.5 + pos: 36.5,8.5 parent: 2 - uid: 10071 components: - type: Transform - pos: 32.5,5.5 + pos: 24.5,-38.5 parent: 2 - uid: 10072 components: - type: Transform - pos: 32.5,4.5 - parent: 2 - - uid: 10073 - components: - - type: Transform - pos: 32.5,3.5 - parent: 2 - - uid: 10074 - components: - - type: Transform - pos: 32.5,2.5 + pos: 24.5,-37.5 parent: 2 - uid: 10078 components: - type: Transform - pos: 28.5,10.5 + pos: 36.5,7.5 parent: 2 - - uid: 10079 + - uid: 10090 components: - type: Transform - pos: 28.5,9.5 - parent: 2 - - uid: 10083 - components: - - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 10084 - components: - - type: Transform - pos: 28.5,1.5 - parent: 2 - - uid: 10085 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - - uid: 10086 - components: - - type: Transform - pos: 29.5,0.5 - parent: 2 - - uid: 10087 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 10103 - components: - - type: Transform - pos: 31.5,6.5 - parent: 2 - - uid: 10104 - components: - - type: Transform - pos: 30.5,6.5 + pos: 36.5,10.5 parent: 2 - uid: 10142 components: - type: Transform pos: 37.5,6.5 parent: 2 - - uid: 10183 - components: - - type: Transform - pos: 11.5,-54.5 - parent: 2 - uid: 10242 components: - type: Transform @@ -43871,6 +48986,11 @@ entities: - type: Transform pos: 4.5,-20.5 parent: 2 + - uid: 10259 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 - uid: 10293 components: - type: Transform @@ -43946,36 +49066,6 @@ entities: - type: Transform pos: 38.5,-21.5 parent: 2 - - uid: 10313 - components: - - type: Transform - pos: 39.5,-21.5 - parent: 2 - - uid: 10314 - components: - - type: Transform - pos: 40.5,-21.5 - parent: 2 - - uid: 10315 - components: - - type: Transform - pos: 41.5,-21.5 - parent: 2 - - uid: 10316 - components: - - type: Transform - pos: 42.5,-21.5 - parent: 2 - - uid: 10317 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 2 - - uid: 10318 - components: - - type: Transform - pos: 44.5,-21.5 - parent: 2 - uid: 10319 components: - type: Transform @@ -44001,206 +49091,56 @@ entities: - type: Transform pos: 47.5,-19.5 parent: 2 - - uid: 10466 + - uid: 10348 components: - type: Transform - pos: 12.5,-12.5 + pos: 15.5,-60.5 parent: 2 - - uid: 10477 + - uid: 10387 components: - type: Transform - pos: 12.5,-53.5 + pos: -49.5,-58.5 parent: 2 - - uid: 10497 + - uid: 10390 components: - type: Transform - pos: 12.5,-15.5 + pos: -55.5,-59.5 parent: 2 - - uid: 10507 + - uid: 10424 components: - type: Transform - pos: -43.5,-53.5 + pos: -49.5,-22.5 parent: 2 - - uid: 10508 + - uid: 10431 components: - type: Transform - pos: -44.5,-53.5 + pos: 42.5,-4.5 parent: 2 - - uid: 10509 + - uid: 10440 components: - type: Transform - pos: -44.5,-52.5 + pos: 6.5,-17.5 parent: 2 - - uid: 10510 + - uid: 10500 components: - type: Transform - pos: -43.5,-54.5 - parent: 2 - - uid: 10511 - components: - - type: Transform - pos: -42.5,-54.5 - parent: 2 - - uid: 10512 - components: - - type: Transform - pos: -41.5,-54.5 - parent: 2 - - uid: 10513 - components: - - type: Transform - pos: -40.5,-54.5 - parent: 2 - - uid: 10514 - components: - - type: Transform - pos: -38.5,-54.5 - parent: 2 - - uid: 10515 - components: - - type: Transform - pos: -39.5,-54.5 - parent: 2 - - uid: 10516 - components: - - type: Transform - pos: -37.5,-54.5 - parent: 2 - - uid: 10517 - components: - - type: Transform - pos: -37.5,-53.5 + pos: 16.5,-6.5 parent: 2 - uid: 10518 components: - type: Transform - pos: -37.5,-52.5 - parent: 2 - - uid: 10519 - components: - - type: Transform - pos: -37.5,-51.5 - parent: 2 - - uid: 10520 - components: - - type: Transform - pos: -36.5,-51.5 - parent: 2 - - uid: 10521 - components: - - type: Transform - pos: -36.5,-50.5 - parent: 2 - - uid: 10522 - components: - - type: Transform - pos: -36.5,-49.5 - parent: 2 - - uid: 10523 - components: - - type: Transform - pos: -36.5,-48.5 - parent: 2 - - uid: 10524 - components: - - type: Transform - pos: -36.5,-47.5 - parent: 2 - - uid: 10525 - components: - - type: Transform - pos: -36.5,-46.5 - parent: 2 - - uid: 10526 - components: - - type: Transform - pos: -36.5,-45.5 - parent: 2 - - uid: 10527 - components: - - type: Transform - pos: -36.5,-44.5 - parent: 2 - - uid: 10528 - components: - - type: Transform - pos: -36.5,-43.5 - parent: 2 - - uid: 10529 - components: - - type: Transform - pos: -36.5,-54.5 - parent: 2 - - uid: 10531 - components: - - type: Transform - pos: -34.5,-54.5 - parent: 2 - - uid: 10532 - components: - - type: Transform - pos: -33.5,-54.5 - parent: 2 - - uid: 10533 - components: - - type: Transform - pos: -32.5,-54.5 + pos: 16.5,-13.5 parent: 2 - uid: 10615 components: - type: Transform pos: -32.5,14.5 parent: 2 - - uid: 10736 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 2 - uid: 10738 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 10739 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 2 - - uid: 10740 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 2 - - uid: 10741 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 2 - - uid: 10742 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 - - uid: 10747 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 2 - - uid: 10803 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 2 - - uid: 10807 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 2 - - uid: 10809 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 2 - uid: 10907 components: - type: Transform @@ -44236,66 +49176,11 @@ entities: - type: Transform pos: 24.5,-43.5 parent: 2 - - uid: 10914 - components: - - type: Transform - pos: 23.5,-43.5 - parent: 2 - - uid: 10915 - components: - - type: Transform - pos: 22.5,-43.5 - parent: 2 - - uid: 10916 - components: - - type: Transform - pos: 21.5,-43.5 - parent: 2 - - uid: 10917 - components: - - type: Transform - pos: 20.5,-43.5 - parent: 2 - - uid: 10918 - components: - - type: Transform - pos: 19.5,-43.5 - parent: 2 - uid: 10919 components: - type: Transform pos: 18.5,-43.5 parent: 2 - - uid: 10920 - components: - - type: Transform - pos: 17.5,-43.5 - parent: 2 - - uid: 10921 - components: - - type: Transform - pos: 16.5,-43.5 - parent: 2 - - uid: 10922 - components: - - type: Transform - pos: 15.5,-43.5 - parent: 2 - - uid: 10923 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 2 - - uid: 10924 - components: - - type: Transform - pos: 13.5,-43.5 - parent: 2 - - uid: 10925 - components: - - type: Transform - pos: 12.5,-43.5 - parent: 2 - uid: 10927 components: - type: Transform @@ -44326,160 +49211,30 @@ entities: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 10942 + - uid: 11016 components: - type: Transform - pos: 16.5,-15.5 + pos: -30.5,1.5 parent: 2 - - uid: 10943 + - uid: 11064 components: - type: Transform - pos: 14.5,-53.5 + pos: 45.5,-18.5 parent: 2 - - uid: 10955 + - uid: 11081 components: - type: Transform - pos: 16.5,-16.5 + pos: 36.5,13.5 parent: 2 - - uid: 10957 + - uid: 11103 components: - type: Transform - pos: 24.5,-56.5 - parent: 2 - - uid: 10958 - components: - - type: Transform - pos: 23.5,-56.5 - parent: 2 - - uid: 10959 - components: - - type: Transform - pos: 21.5,-56.5 - parent: 2 - - uid: 10960 - components: - - type: Transform - pos: 20.5,-56.5 - parent: 2 - - uid: 10961 - components: - - type: Transform - pos: 19.5,-56.5 - parent: 2 - - uid: 10962 - components: - - type: Transform - pos: 18.5,-56.5 - parent: 2 - - uid: 10963 - components: - - type: Transform - pos: 17.5,-56.5 - parent: 2 - - uid: 10964 - components: - - type: Transform - pos: 22.5,-56.5 - parent: 2 - - uid: 10969 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 2 - - uid: 10992 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 2 - - uid: 10994 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 2 - - uid: 10998 - components: - - type: Transform - pos: -15.5,-12.5 - parent: 2 - - uid: 10999 - components: - - type: Transform - pos: -14.5,-12.5 - parent: 2 - - uid: 11015 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 2 - - uid: 11019 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 2 - - uid: 11020 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 2 - - uid: 11024 - components: - - type: Transform - pos: -17.5,-14.5 - parent: 2 - - uid: 11224 - components: - - type: Transform - pos: 25.5,6.5 - parent: 2 - - uid: 11225 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 11226 - components: - - type: Transform - pos: 24.5,7.5 - parent: 2 - - uid: 11227 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - - uid: 11228 - components: - - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 11229 - components: - - type: Transform - pos: 24.5,10.5 - parent: 2 - - uid: 11230 - components: - - type: Transform - pos: 24.5,11.5 - parent: 2 - - uid: 11231 - components: - - type: Transform - pos: 24.5,12.5 + pos: 45.5,-7.5 parent: 2 - uid: 11232 components: - type: Transform - pos: 24.5,13.5 - parent: 2 - - uid: 11233 - components: - - type: Transform - pos: 23.5,13.5 - parent: 2 - - uid: 11234 - components: - - type: Transform - pos: 23.5,14.5 + pos: 19.5,-13.5 parent: 2 - uid: 11235 components: @@ -44501,16 +49256,16 @@ entities: - type: Transform pos: 28.5,11.5 parent: 2 + - uid: 11249 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 - uid: 11301 components: - type: Transform pos: -26.5,6.5 parent: 2 - - uid: 11332 - components: - - type: Transform - pos: -44.5,-35.5 - parent: 2 - uid: 11357 components: - type: Transform @@ -44694,17 +49449,7 @@ entities: - uid: 11491 components: - type: Transform - pos: -28.5,-37.5 - parent: 2 - - uid: 11492 - components: - - type: Transform - pos: -26.5,-37.5 - parent: 2 - - uid: 11493 - components: - - type: Transform - pos: -35.5,-38.5 + pos: 15.5,-17.5 parent: 2 - uid: 11659 components: @@ -44941,40 +49686,25 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 2 - - uid: 11896 - components: - - type: Transform - pos: 11.5,-55.5 - parent: 2 - uid: 11928 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 11993 + - uid: 11972 components: - type: Transform - pos: 22.5,13.5 + pos: 25.5,15.5 parent: 2 - - uid: 11998 + - uid: 11975 components: - type: Transform - pos: 28.5,4.5 + pos: -58.5,-59.5 parent: 2 - - uid: 11999 + - uid: 11978 components: - type: Transform - pos: 27.5,4.5 - parent: 2 - - uid: 12000 - components: - - type: Transform - pos: 27.5,5.5 - parent: 2 - - uid: 12001 - components: - - type: Transform - pos: 27.5,6.5 + pos: 24.5,11.5 parent: 2 - uid: 12002 components: @@ -44986,111 +49716,16 @@ entities: - type: Transform pos: 22.5,11.5 parent: 2 - - uid: 12012 - components: - - type: Transform - pos: 21.5,11.5 - parent: 2 - uid: 12013 components: - type: Transform pos: 21.5,10.5 parent: 2 - - uid: 12014 - components: - - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 12015 - components: - - type: Transform - pos: 19.5,10.5 - parent: 2 - - uid: 12017 - components: - - type: Transform - pos: 16.5,10.5 - parent: 2 - - uid: 12018 - components: - - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 12019 - components: - - type: Transform - pos: 18.5,10.5 - parent: 2 - - uid: 12020 - components: - - type: Transform - pos: 15.5,9.5 - parent: 2 - - uid: 12021 - components: - - type: Transform - pos: 15.5,8.5 - parent: 2 - - uid: 12022 - components: - - type: Transform - pos: 15.5,7.5 - parent: 2 - - uid: 12023 - components: - - type: Transform - pos: 15.5,6.5 - parent: 2 - - uid: 12024 - components: - - type: Transform - pos: 15.5,5.5 - parent: 2 - - uid: 12025 - components: - - type: Transform - pos: 15.5,4.5 - parent: 2 - - uid: 12026 - components: - - type: Transform - pos: 15.5,3.5 - parent: 2 - - uid: 12027 - components: - - type: Transform - pos: 15.5,2.5 - parent: 2 - - uid: 12028 - components: - - type: Transform - pos: 15.5,1.5 - parent: 2 - - uid: 12029 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 - - uid: 12030 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 12031 - components: - - type: Transform - pos: 14.5,0.5 - parent: 2 - uid: 12081 components: - type: Transform pos: -6.5,-22.5 parent: 2 - - uid: 12130 - components: - - type: Transform - pos: -29.5,-54.5 - parent: 2 - uid: 12244 components: - type: Transform @@ -45101,390 +49736,60 @@ entities: - type: Transform pos: 36.5,-40.5 parent: 2 + - uid: 12306 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + pos: -58.5,-57.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + pos: -58.5,-58.5 + parent: 2 - uid: 12355 components: - type: Transform pos: -18.5,20.5 parent: 2 - - uid: 12381 + - uid: 12366 components: - type: Transform - pos: -30.5,-22.5 - parent: 2 - - uid: 12382 - components: - - type: Transform - pos: -30.5,-23.5 - parent: 2 - - uid: 12383 - components: - - type: Transform - pos: -30.5,-24.5 - parent: 2 - - uid: 12384 - components: - - type: Transform - pos: -30.5,-25.5 - parent: 2 - - uid: 12392 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 2 - - uid: 12393 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 2 - - uid: 12394 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 2 - - uid: 12395 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 2 - - uid: 12396 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 2 - - uid: 12398 - components: - - type: Transform - pos: -25.5,-26.5 - parent: 2 - - uid: 12399 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 2 - - uid: 12412 - components: - - type: Transform - pos: -30.5,-27.5 - parent: 2 - - uid: 12413 - components: - - type: Transform - pos: -30.5,-28.5 - parent: 2 - - uid: 12414 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 2 - - uid: 12415 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 2 - - uid: 12416 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 2 - - uid: 12417 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 - - uid: 12418 - components: - - type: Transform - pos: -29.5,-31.5 - parent: 2 - - uid: 12419 - components: - - type: Transform - pos: -29.5,-30.5 - parent: 2 - - uid: 12420 - components: - - type: Transform - pos: -29.5,-32.5 - parent: 2 - - uid: 12421 - components: - - type: Transform - pos: -29.5,-33.5 - parent: 2 - - uid: 12422 - components: - - type: Transform - pos: -29.5,-34.5 - parent: 2 - - uid: 12423 - components: - - type: Transform - pos: -29.5,-35.5 - parent: 2 - - uid: 12426 - components: - - type: Transform - pos: -29.5,-37.5 + pos: -57.5,-59.5 parent: 2 - uid: 12432 components: - type: Transform pos: 36.5,-39.5 parent: 2 - - uid: 12452 + - uid: 12445 components: - type: Transform - pos: -31.5,-21.5 + pos: 18.5,-13.5 parent: 2 - - uid: 12453 + - uid: 12451 components: - type: Transform - pos: -32.5,-21.5 - parent: 2 - - uid: 12454 - components: - - type: Transform - pos: -33.5,-21.5 - parent: 2 - - uid: 12455 - components: - - type: Transform - pos: -34.5,-21.5 - parent: 2 - - uid: 12456 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 2 - - uid: 12457 - components: - - type: Transform - pos: -35.5,-22.5 - parent: 2 - - uid: 12458 - components: - - type: Transform - pos: -35.5,-23.5 - parent: 2 - - uid: 12459 - components: - - type: Transform - pos: -35.5,-24.5 - parent: 2 - - uid: 12460 - components: - - type: Transform - pos: -35.5,-25.5 - parent: 2 - - uid: 12461 - components: - - type: Transform - pos: -34.5,-25.5 - parent: 2 - - uid: 12462 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 2 - - uid: 12487 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 2 - - uid: 12488 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 2 - - uid: 12489 - components: - - type: Transform - pos: -38.5,-21.5 - parent: 2 - - uid: 12490 - components: - - type: Transform - pos: -39.5,-21.5 - parent: 2 - - uid: 12491 - components: - - type: Transform - pos: -40.5,-21.5 - parent: 2 - - uid: 12492 - components: - - type: Transform - pos: -41.5,-21.5 - parent: 2 - - uid: 12493 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 2 - - uid: 12494 - components: - - type: Transform - pos: -43.5,-21.5 - parent: 2 - - uid: 12495 - components: - - type: Transform - pos: -44.5,-21.5 + pos: 16.5,-12.5 parent: 2 - uid: 12496 components: - type: Transform - pos: -41.5,-22.5 - parent: 2 - - uid: 12497 - components: - - type: Transform - pos: -41.5,-23.5 - parent: 2 - - uid: 12498 - components: - - type: Transform - pos: -44.5,-22.5 - parent: 2 - - uid: 12499 - components: - - type: Transform - pos: -44.5,-23.5 + pos: 35.5,6.5 parent: 2 - uid: 12522 components: - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 12523 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 12524 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 12525 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - - uid: 12526 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 12527 - components: - - type: Transform - pos: -42.5,-43.5 - parent: 2 - - uid: 12528 - components: - - type: Transform - pos: -43.5,-43.5 - parent: 2 - - uid: 12529 - components: - - type: Transform - pos: -44.5,-43.5 - parent: 2 - - uid: 12530 - components: - - type: Transform - pos: -36.5,-42.5 - parent: 2 - - uid: 12532 - components: - - type: Transform - pos: -36.5,-40.5 - parent: 2 - - uid: 12533 - components: - - type: Transform - pos: -35.5,-40.5 - parent: 2 - - uid: 12534 - components: - - type: Transform - pos: -34.5,-40.5 - parent: 2 - - uid: 12535 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 2 - - uid: 12536 - components: - - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 12537 - components: - - type: Transform - pos: -31.5,-40.5 - parent: 2 - - uid: 12538 - components: - - type: Transform - pos: -31.5,-41.5 - parent: 2 - - uid: 12539 - components: - - type: Transform - pos: -31.5,-42.5 - parent: 2 - - uid: 12540 - components: - - type: Transform - pos: -31.5,-43.5 - parent: 2 - - uid: 12542 - components: - - type: Transform - pos: -36.5,-39.5 - parent: 2 - - uid: 12543 - components: - - type: Transform - pos: -36.5,-38.5 - parent: 2 - - uid: 12544 - components: - - type: Transform - pos: -36.5,-37.5 - parent: 2 - - uid: 12545 - components: - - type: Transform - pos: -36.5,-36.5 - parent: 2 - - uid: 12546 - components: - - type: Transform - pos: -36.5,-35.5 - parent: 2 - - uid: 12547 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 2 - - uid: 12548 - components: - - type: Transform - pos: -36.5,-33.5 - parent: 2 - - uid: 12549 - components: - - type: Transform - pos: -37.5,-33.5 - parent: 2 - - uid: 12550 - components: - - type: Transform - pos: -38.5,-33.5 + pos: -24.5,-8.5 parent: 2 - uid: 12552 components: @@ -45496,56 +49801,6 @@ entities: - type: Transform pos: -22.5,11.5 parent: 2 - - uid: 12562 - components: - - type: Transform - pos: -41.5,-45.5 - parent: 2 - - uid: 12563 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 12565 - components: - - type: Transform - pos: -41.5,-48.5 - parent: 2 - - uid: 12566 - components: - - type: Transform - pos: -41.5,-49.5 - parent: 2 - - uid: 12567 - components: - - type: Transform - pos: -45.5,-43.5 - parent: 2 - - uid: 12568 - components: - - type: Transform - pos: -46.5,-43.5 - parent: 2 - - uid: 12569 - components: - - type: Transform - pos: -47.5,-43.5 - parent: 2 - - uid: 12570 - components: - - type: Transform - pos: -47.5,-44.5 - parent: 2 - - uid: 12571 - components: - - type: Transform - pos: -44.5,-42.5 - parent: 2 - - uid: 12572 - components: - - type: Transform - pos: -44.5,-41.5 - parent: 2 - uid: 12575 components: - type: Transform @@ -45561,320 +49816,30 @@ entities: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 12583 + - uid: 12595 components: - type: Transform - pos: -44.5,-30.5 - parent: 2 - - uid: 12584 - components: - - type: Transform - pos: -45.5,-30.5 - parent: 2 - - uid: 12585 - components: - - type: Transform - pos: -46.5,-30.5 - parent: 2 - - uid: 12586 - components: - - type: Transform - pos: -47.5,-30.5 - parent: 2 - - uid: 12587 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 2 - - uid: 12589 - components: - - type: Transform - pos: -43.5,-40.5 - parent: 2 - - uid: 12590 - components: - - type: Transform - pos: -42.5,-40.5 - parent: 2 - - uid: 12606 - components: - - type: Transform - pos: -39.5,-33.5 + pos: -33.5,-51.5 parent: 2 - uid: 12649 components: - type: Transform pos: -30.5,18.5 parent: 2 - - uid: 12676 + - uid: 12749 components: - type: Transform - pos: -32.5,-29.5 - parent: 2 - - uid: 12677 - components: - - type: Transform - pos: -32.5,-28.5 - parent: 2 - - uid: 12725 - components: - - type: Transform - pos: 11.5,-56.5 - parent: 2 - - uid: 12727 - components: - - type: Transform - pos: 11.5,-58.5 - parent: 2 - - uid: 12768 - components: - - type: Transform - pos: 11.5,-59.5 - parent: 2 - - uid: 12772 - components: - - type: Transform - pos: 11.5,-60.5 - parent: 2 - - uid: 12773 - components: - - type: Transform - pos: 11.5,-61.5 - parent: 2 - - uid: 12774 - components: - - type: Transform - pos: 11.5,-62.5 - parent: 2 - - uid: 12775 - components: - - type: Transform - pos: 11.5,-63.5 - parent: 2 - - uid: 12776 - components: - - type: Transform - pos: 11.5,-64.5 - parent: 2 - - uid: 12777 - components: - - type: Transform - pos: 11.5,-57.5 - parent: 2 - - uid: 12778 - components: - - type: Transform - pos: 12.5,-64.5 - parent: 2 - - uid: 12779 - components: - - type: Transform - pos: 13.5,-64.5 - parent: 2 - - uid: 12782 - components: - - type: Transform - pos: -11.5,-54.5 + pos: 17.5,-57.5 parent: 2 - uid: 12783 components: - type: Transform pos: -12.5,-54.5 parent: 2 - - uid: 12784 + - uid: 12860 components: - type: Transform - pos: -11.5,-55.5 - parent: 2 - - uid: 12785 - components: - - type: Transform - pos: -10.5,-55.5 - parent: 2 - - uid: 12786 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 2 - - uid: 12787 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 2 - - uid: 12792 - components: - - type: Transform - pos: -8.5,-56.5 - parent: 2 - - uid: 12793 - components: - - type: Transform - pos: -8.5,-57.5 - parent: 2 - - uid: 12794 - components: - - type: Transform - pos: -8.5,-58.5 - parent: 2 - - uid: 12795 - components: - - type: Transform - pos: -8.5,-59.5 - parent: 2 - - uid: 12796 - components: - - type: Transform - pos: -8.5,-60.5 - parent: 2 - - uid: 12797 - components: - - type: Transform - pos: -8.5,-61.5 - parent: 2 - - uid: 12798 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 2 - - uid: 12799 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 2 - - uid: 12800 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 2 - - uid: 12801 - components: - - type: Transform - pos: -9.5,-64.5 - parent: 2 - - uid: 12802 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 2 - - uid: 12877 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - - uid: 12878 - components: - - type: Transform - pos: -34.5,-51.5 - parent: 2 - - uid: 12879 - components: - - type: Transform - pos: -33.5,-51.5 - parent: 2 - - uid: 12886 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 2 - - uid: 12887 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 2 - - uid: 12919 - components: - - type: Transform - pos: -31.5,-44.5 - parent: 2 - - uid: 12920 - components: - - type: Transform - pos: -32.5,-44.5 - parent: 2 - - uid: 12921 - components: - - type: Transform - pos: -33.5,-44.5 - parent: 2 - - uid: 12922 - components: - - type: Transform - pos: -33.5,-43.5 - parent: 2 - - uid: 12923 - components: - - type: Transform - pos: -33.5,-42.5 - parent: 2 - - uid: 12930 - components: - - type: Transform - pos: -30.5,-48.5 - parent: 2 - - uid: 12931 - components: - - type: Transform - pos: -29.5,-48.5 - parent: 2 - - uid: 12932 - components: - - type: Transform - pos: -28.5,-48.5 - parent: 2 - - uid: 12933 - components: - - type: Transform - pos: -27.5,-48.5 - parent: 2 - - uid: 12934 - components: - - type: Transform - pos: -27.5,-47.5 - parent: 2 - - uid: 12935 - components: - - type: Transform - pos: -27.5,-46.5 - parent: 2 - - uid: 12936 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - - uid: 12938 - components: - - type: Transform - pos: -27.5,-44.5 - parent: 2 - - uid: 12939 - components: - - type: Transform - pos: -27.5,-43.5 - parent: 2 - - uid: 12940 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 2 - - uid: 12941 - components: - - type: Transform - pos: -27.5,-41.5 - parent: 2 - - uid: 12942 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 2 - - uid: 12943 - components: - - type: Transform - pos: -26.5,-40.5 - parent: 2 - - uid: 12944 - components: - - type: Transform - pos: -26.5,-39.5 + pos: 28.5,-6.5 parent: 2 - uid: 12976 components: @@ -45886,6 +49851,11 @@ entities: - type: Transform pos: -19.5,8.5 parent: 2 + - uid: 13033 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 2 - uid: 13048 components: - type: Transform @@ -45896,40 +49866,25 @@ entities: - type: Transform pos: -30.5,0.5 parent: 2 - - uid: 13159 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 - - uid: 13177 - components: - - type: Transform - pos: 14.5,5.5 - parent: 2 - uid: 13178 components: - type: Transform - pos: 13.5,5.5 + pos: 16.5,-17.5 parent: 2 - - uid: 13179 + - uid: 13190 components: - type: Transform - pos: 12.5,5.5 + pos: -36.5,-48.5 parent: 2 - - uid: 13180 + - uid: 13228 components: - type: Transform - pos: 11.5,5.5 + pos: -50.5,-22.5 parent: 2 - - uid: 13181 + - uid: 13363 components: - type: Transform - pos: 11.5,6.5 - parent: 2 - - uid: 13198 - components: - - type: Transform - pos: -27.5,-18.5 + pos: 17.5,-13.5 parent: 2 - uid: 13594 components: @@ -45941,20 +49896,60 @@ entities: - type: Transform pos: 41.5,-2.5 parent: 2 + - uid: 13675 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 - uid: 13705 components: - type: Transform pos: 41.5,-4.5 parent: 2 + - uid: 13713 + components: + - type: Transform + pos: -49.5,-49.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 - uid: 13964 components: - type: Transform pos: 41.5,-5.5 parent: 2 - - uid: 14069 + - uid: 14278 components: - type: Transform - pos: -27.5,-37.5 + pos: 39.5,18.5 + parent: 2 + - uid: 14336 + components: + - type: Transform + pos: 39.5,16.5 parent: 2 - uid: 14452 components: @@ -45971,16 +49966,6 @@ entities: - type: Transform pos: -25.5,15.5 parent: 2 - - uid: 14575 - components: - - type: Transform - pos: -8.5,-52.5 - parent: 2 - - uid: 14580 - components: - - type: Transform - pos: -9.5,-51.5 - parent: 2 - uid: 14584 components: - type: Transform @@ -45991,11 +49976,6 @@ entities: - type: Transform pos: -12.5,11.5 parent: 2 - - uid: 14611 - components: - - type: Transform - pos: -8.5,-54.5 - parent: 2 - uid: 14797 components: - type: Transform @@ -46016,11 +49996,6 @@ entities: - type: Transform pos: -20.5,8.5 parent: 2 - - uid: 14885 - components: - - type: Transform - pos: -44.5,-40.5 - parent: 2 - uid: 15030 components: - type: Transform @@ -46031,21 +50006,21 @@ entities: - type: Transform pos: -21.5,9.5 parent: 2 - - uid: 15196 + - uid: 15264 components: - type: Transform - pos: -44.5,-39.5 + pos: 41.5,22.5 + parent: 2 + - uid: 15271 + components: + - type: Transform + pos: 41.5,21.5 parent: 2 - uid: 15285 components: - type: Transform pos: 32.5,-37.5 parent: 2 - - uid: 15287 - components: - - type: Transform - pos: -44.5,-33.5 - parent: 2 - uid: 15290 components: - type: Transform @@ -46056,20 +50031,10 @@ entities: - type: Transform pos: 30.5,-37.5 parent: 2 - - uid: 15293 + - uid: 15300 components: - type: Transform - pos: -44.5,-24.5 - parent: 2 - - uid: 15295 - components: - - type: Transform - pos: -44.5,-25.5 - parent: 2 - - uid: 15306 - components: - - type: Transform - pos: -44.5,-32.5 + pos: 41.5,20.5 parent: 2 - uid: 15319 components: @@ -46081,26 +50046,11 @@ entities: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 15362 - components: - - type: Transform - pos: -40.5,-33.5 - parent: 2 - uid: 15363 components: - type: Transform pos: -19.5,20.5 parent: 2 - - uid: 15364 - components: - - type: Transform - pos: -44.5,-34.5 - parent: 2 - - uid: 15365 - components: - - type: Transform - pos: -44.5,-37.5 - parent: 2 - uid: 15368 components: - type: Transform @@ -46186,76 +50136,6 @@ entities: - type: Transform pos: 18.5,-41.5 parent: 2 - - uid: 15444 - components: - - type: Transform - pos: 11.5,-43.5 - parent: 2 - - uid: 15445 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 2 - - uid: 15446 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 2 - - uid: 15447 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 2 - - uid: 15448 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 2 - - uid: 15449 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - uid: 15450 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 2 - - uid: 15451 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - - uid: 15452 - components: - - type: Transform - pos: 10.5,-36.5 - parent: 2 - - uid: 15453 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 - - uid: 15454 - components: - - type: Transform - pos: 10.5,-34.5 - parent: 2 - - uid: 15455 - components: - - type: Transform - pos: 10.5,-33.5 - parent: 2 - - uid: 15456 - components: - - type: Transform - pos: 11.5,-33.5 - parent: 2 - - uid: 15457 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 2 - uid: 15458 components: - type: Transform @@ -46281,10 +50161,20 @@ entities: - type: Transform pos: 39.5,6.5 parent: 2 - - uid: 15880 + - uid: 15761 components: - type: Transform - pos: -8.5,-53.5 + pos: 39.5,17.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + pos: -56.5,-59.5 parent: 2 - uid: 15887 components: @@ -46336,6 +50226,26 @@ entities: - type: Transform pos: 31.5,-28.5 parent: 2 + - uid: 16047 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 2 - uid: 16068 components: - type: Transform @@ -46356,10 +50266,90 @@ entities: - type: Transform pos: -21.5,10.5 parent: 2 - - uid: 16271 + - uid: 16330 components: - type: Transform - pos: -27.5,-20.5 + pos: -38.5,-48.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 16332 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 16336 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 16338 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 16339 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 16340 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 16341 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 16342 + components: + - type: Transform + pos: -38.5,-40.5 + parent: 2 + - uid: 16343 + components: + - type: Transform + pos: -38.5,-39.5 + parent: 2 + - uid: 16344 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 16345 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 16347 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 16348 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 16349 + components: + - type: Transform + pos: -38.5,-36.5 parent: 2 - uid: 16491 components: @@ -46591,25 +50581,285 @@ entities: - type: Transform pos: -56.5,-11.5 parent: 2 - - uid: 16763 + - uid: 16741 components: - type: Transform - pos: 34.5,-5.5 + pos: -33.5,-52.5 parent: 2 - - uid: 16828 + - uid: 16742 components: - type: Transform - pos: -27.5,-21.5 + pos: -33.5,-53.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 16746 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 16747 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + pos: -33.5,-57.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 + - uid: 16756 + components: + - type: Transform + pos: -33.5,-59.5 + parent: 2 + - uid: 16764 + components: + - type: Transform + pos: -33.5,-60.5 + parent: 2 + - uid: 16766 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + pos: -33.5,-62.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + pos: -33.5,-64.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + pos: -33.5,-65.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + pos: -33.5,-66.5 + parent: 2 + - uid: 16780 + components: + - type: Transform + pos: -33.5,-68.5 + parent: 2 + - uid: 16781 + components: + - type: Transform + pos: -33.5,-67.5 + parent: 2 + - uid: 16782 + components: + - type: Transform + pos: -33.5,-69.5 + parent: 2 + - uid: 16784 + components: + - type: Transform + pos: -33.5,-70.5 + parent: 2 + - uid: 16788 + components: + - type: Transform + pos: -35.5,-70.5 + parent: 2 + - uid: 16789 + components: + - type: Transform + pos: -34.5,-70.5 + parent: 2 + - uid: 16798 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 16799 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - uid: 16858 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 16859 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 16860 + components: + - type: Transform + pos: -41.5,-48.5 + parent: 2 + - uid: 16861 + components: + - type: Transform + pos: -42.5,-48.5 + parent: 2 + - uid: 16862 + components: + - type: Transform + pos: -43.5,-48.5 + parent: 2 + - uid: 16863 + components: + - type: Transform + pos: -44.5,-48.5 + parent: 2 + - uid: 16864 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 16865 + components: + - type: Transform + pos: -45.5,-47.5 + parent: 2 + - uid: 16875 + components: + - type: Transform + pos: -45.5,-46.5 + parent: 2 + - uid: 16876 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - uid: 16884 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 16906 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 16915 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 16925 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 16930 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 16932 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 16952 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - uid: 16960 + components: + - type: Transform + pos: -47.5,-45.5 + parent: 2 + - uid: 16966 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 16967 + components: + - type: Transform + pos: -49.5,-45.5 + parent: 2 + - uid: 16968 + components: + - type: Transform + pos: -49.5,-46.5 + parent: 2 + - uid: 16969 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + pos: -48.5,-43.5 + parent: 2 + - uid: 16971 + components: + - type: Transform + pos: -48.5,-42.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + pos: -48.5,-41.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + pos: -48.5,-40.5 parent: 2 - uid: 17026 components: - type: Transform pos: 28.5,-30.5 parent: 2 - - uid: 17058 + - uid: 17049 components: - type: Transform - pos: -27.5,-19.5 + pos: -48.5,-39.5 + parent: 2 + - uid: 17050 + components: + - type: Transform + pos: -48.5,-38.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + pos: -48.5,-35.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + pos: -49.5,-35.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + pos: -48.5,-36.5 parent: 2 - uid: 17145 components: @@ -46621,55 +50871,130 @@ entities: - type: Transform pos: -22.5,16.5 parent: 2 + - uid: 17328 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 - uid: 17350 components: - type: Transform pos: 27.5,-32.5 parent: 2 + - uid: 17541 + components: + - type: Transform + pos: -48.5,-34.5 + parent: 2 + - uid: 17542 + components: + - type: Transform + pos: -48.5,-33.5 + parent: 2 + - uid: 17543 + components: + - type: Transform + pos: -48.5,-32.5 + parent: 2 + - uid: 17545 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 17562 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 17563 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 2 + - uid: 17572 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 2 - uid: 17598 components: - type: Transform pos: -13.5,-37.5 parent: 2 - - uid: 17987 + - uid: 17607 components: - type: Transform - pos: 14.5,-18.5 + pos: -48.5,-26.5 parent: 2 - - uid: 17988 + - uid: 17608 components: - type: Transform - pos: 13.5,-18.5 + pos: -47.5,-26.5 parent: 2 - - uid: 17989 + - uid: 17610 components: - type: Transform - pos: 12.5,-18.5 + pos: -46.5,-26.5 parent: 2 - - uid: 17990 + - uid: 17675 components: - type: Transform - pos: 11.5,-18.5 + pos: -49.5,-30.5 parent: 2 - - uid: 17991 + - uid: 17676 components: - type: Transform - pos: 10.5,-18.5 + pos: -50.5,-30.5 parent: 2 - - uid: 17992 + - uid: 17677 components: - type: Transform - pos: 9.5,-18.5 + pos: -52.5,-30.5 parent: 2 - - uid: 17993 + - uid: 17678 components: - type: Transform - pos: 8.5,-18.5 + pos: -53.5,-30.5 parent: 2 - - uid: 17994 + - uid: 17679 components: - type: Transform - pos: 7.5,-18.5 + pos: -54.5,-30.5 + parent: 2 + - uid: 17680 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + pos: -54.5,-29.5 + parent: 2 + - uid: 17682 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 2 + - uid: 17725 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + pos: 25.5,22.5 parent: 2 - uid: 18012 components: @@ -46751,11 +51076,91 @@ entities: - type: Transform pos: -13.5,-0.5 parent: 2 + - uid: 18052 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 18053 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 18055 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 18077 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 18078 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 18093 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 18095 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 18115 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - uid: 18148 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 2 + - uid: 18166 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 18193 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 18201 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 18236 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 18269 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 18303 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 - uid: 18372 components: - type: Transform pos: -30.5,21.5 parent: 2 + - uid: 18373 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 - uid: 18374 components: - type: Transform @@ -46776,6 +51181,11 @@ entities: - type: Transform pos: -29.5,20.5 parent: 2 + - uid: 18386 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 - uid: 18420 components: - type: Transform @@ -46796,6 +51206,11 @@ entities: - type: Transform pos: 45.5,-52.5 parent: 2 + - uid: 18476 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 - uid: 18510 components: - type: Transform @@ -46846,6 +51261,11 @@ entities: - type: Transform pos: 44.5,-54.5 parent: 2 + - uid: 18545 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 - uid: 18630 components: - type: Transform @@ -46891,11 +51311,6 @@ entities: - type: Transform pos: 42.5,-53.5 parent: 2 - - uid: 18893 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 2 - uid: 18894 components: - type: Transform @@ -46906,6 +51321,41 @@ entities: - type: Transform pos: -27.5,6.5 parent: 2 + - uid: 18916 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 18923 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 18935 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 18936 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 18937 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 18938 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 18939 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 - uid: 18944 components: - type: Transform @@ -46976,6 +51426,11 @@ entities: - type: Transform pos: -18.5,7.5 parent: 2 + - uid: 19220 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 2 - uid: 19582 components: - type: Transform @@ -47011,20 +51466,110 @@ entities: - type: Transform pos: -18.5,1.5 parent: 2 + - uid: 20202 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 20204 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 20205 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 20206 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 20373 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 20388 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 20399 + components: + - type: Transform + pos: -35.5,-32.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 20409 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - uid: 20410 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 - uid: 20439 components: - type: Transform - pos: -33.5,-3.5 + pos: -29.5,-32.5 parent: 2 - uid: 20440 components: - type: Transform - pos: -33.5,-4.5 + pos: -28.5,-33.5 + parent: 2 + - uid: 20441 + components: + - type: Transform + pos: -28.5,-34.5 parent: 2 - uid: 20442 components: - type: Transform - pos: -34.5,-4.5 + pos: -28.5,-35.5 parent: 2 - uid: 20443 components: @@ -47224,12 +51769,12 @@ entities: - uid: 20482 components: - type: Transform - pos: -34.5,-6.5 + pos: -28.5,-36.5 parent: 2 - uid: 20483 components: - type: Transform - pos: -34.5,-1.5 + pos: -28.5,-37.5 parent: 2 - uid: 20484 components: @@ -47271,16 +51816,101 @@ entities: - type: Transform pos: -40.5,2.5 parent: 2 + - uid: 20503 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 20523 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - uid: 20582 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 20584 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 20588 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 20590 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 20599 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - uid: 20600 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - uid: 20603 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 20604 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 2 + - uid: 20613 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 20616 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - uid: 20625 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 20626 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 20637 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 20638 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 20671 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 20672 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 - uid: 20722 components: - type: Transform pos: -30.5,14.5 parent: 2 - - uid: 20732 - components: - - type: Transform - pos: -36.5,2.5 - parent: 2 - uid: 20758 components: - type: Transform @@ -47341,36 +51971,6 @@ entities: - type: Transform pos: -32.5,8.5 parent: 2 - - uid: 20784 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - - uid: 20785 - components: - - type: Transform - pos: -34.5,6.5 - parent: 2 - - uid: 20786 - components: - - type: Transform - pos: -35.5,2.5 - parent: 2 - - uid: 20787 - components: - - type: Transform - pos: -35.5,3.5 - parent: 2 - - uid: 20788 - components: - - type: Transform - pos: -34.5,3.5 - parent: 2 - - uid: 20789 - components: - - type: Transform - pos: -33.5,3.5 - parent: 2 - uid: 20790 components: - type: Transform @@ -47386,6 +51986,711 @@ entities: - type: Transform pos: -32.5,5.5 parent: 2 + - uid: 20837 + components: + - type: Transform + pos: 12.5,-69.5 + parent: 2 + - uid: 20838 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 2 + - uid: 20841 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - uid: 20843 + components: + - type: Transform + pos: 11.5,-69.5 + parent: 2 + - uid: 20844 + components: + - type: Transform + pos: 10.5,-69.5 + parent: 2 + - uid: 20845 + components: + - type: Transform + pos: 10.5,-68.5 + parent: 2 + - uid: 20846 + components: + - type: Transform + pos: 10.5,-67.5 + parent: 2 + - uid: 20847 + components: + - type: Transform + pos: 10.5,-66.5 + parent: 2 + - uid: 20848 + components: + - type: Transform + pos: 10.5,-65.5 + parent: 2 + - uid: 20849 + components: + - type: Transform + pos: 10.5,-64.5 + parent: 2 + - uid: 20850 + components: + - type: Transform + pos: 10.5,-63.5 + parent: 2 + - uid: 20851 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 20852 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 20853 + components: + - type: Transform + pos: -7.5,-71.5 + parent: 2 + - uid: 20854 + components: + - type: Transform + pos: -7.5,-70.5 + parent: 2 + - uid: 20855 + components: + - type: Transform + pos: -7.5,-69.5 + parent: 2 + - uid: 20856 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - uid: 20857 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 20858 + components: + - type: Transform + pos: -7.5,-66.5 + parent: 2 + - uid: 20859 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 20860 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 2 + - uid: 20861 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - uid: 20862 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 20863 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - uid: 20864 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 20865 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 20866 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 20867 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 20868 + components: + - type: Transform + pos: -7.5,-57.5 + parent: 2 + - uid: 20869 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 20870 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 20871 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - uid: 20872 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 20873 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - uid: 20874 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 20875 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 20876 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 20877 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - uid: 20878 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 20879 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 20880 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 20881 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 20882 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 20883 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 20884 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 20885 + components: + - type: Transform + pos: 9.5,-56.5 + parent: 2 + - uid: 20886 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 2 + - uid: 20887 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 20888 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 2 + - uid: 20889 + components: + - type: Transform + pos: 12.5,-57.5 + parent: 2 + - uid: 20890 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - uid: 20891 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 20892 + components: + - type: Transform + pos: 10.5,-58.5 + parent: 2 + - uid: 20893 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 20894 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - uid: 20895 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - uid: 21084 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 21085 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 21086 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 21087 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 21088 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 21089 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 21090 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - uid: 21091 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 21225 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 21303 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 21304 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 21368 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 21394 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 21764 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 21765 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 21766 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 21767 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 21768 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 21769 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 21770 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 21771 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 21772 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 21773 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 21774 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 21775 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 21812 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 21857 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 21858 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 21862 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 21908 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 21955 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 21983 + components: + - type: Transform + pos: 32.5,22.5 + parent: 2 + - uid: 21984 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 21991 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 22024 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 22058 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 22059 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 22060 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 22083 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 22121 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 22122 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 22281 + components: + - type: Transform + pos: 19.5,-43.5 + parent: 2 + - uid: 22282 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - uid: 22283 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 2 + - uid: 22284 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 2 + - uid: 22291 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 22292 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 22293 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 22294 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 22295 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 22296 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 22297 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 22298 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 22319 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 22492 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 22493 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 22494 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 22495 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 22496 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 22497 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 22499 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 22502 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 22532 + components: + - type: Transform + pos: -28.5,-62.5 + parent: 2 + - uid: 22533 + components: + - type: Transform + pos: -29.5,-62.5 + parent: 2 + - uid: 22534 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 + - uid: 22566 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 22567 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 22568 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 22569 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 22570 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 22606 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 22607 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 22608 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - uid: 22609 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 22610 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 22622 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 22624 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 22625 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 22626 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 22627 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 22628 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 22629 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 22630 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 22640 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 - proto: CableMVStack entities: - uid: 3393 @@ -47393,34 +52698,18 @@ entities: - type: Transform pos: -16.489902,-25.261671 parent: 2 - - uid: 10456 + - uid: 9856 components: - type: Transform - pos: -6.538993,-14.892722 + pos: -13.565001,-10.30104 parent: 2 - uid: 10791 components: - type: Transform pos: -55.47804,-13.404876 parent: 2 - - uid: 14657 - components: - - type: Transform - pos: 12.50663,-17.374193 - parent: 2 - - uid: 16740 - components: - - type: Transform - pos: -31.508106,-59.50669 - parent: 2 - proto: CableTerminal entities: - - uid: 346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-54.5 - parent: 2 - uid: 2770 components: - type: Transform @@ -47442,17 +52731,11 @@ entities: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 6550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,2.5 - parent: 2 - - uid: 6644 + - uid: 6275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-8.5 + pos: 24.5,-10.5 parent: 2 - uid: 8954 components: @@ -47460,18 +52743,23 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,24.5 parent: 2 - - uid: 10391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-55.5 - parent: 2 - uid: 15475 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-9.5 parent: 2 + - uid: 15795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-58.5 + parent: 2 + - uid: 21261 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 2 - proto: Candle entities: - uid: 3662 @@ -47500,6 +52788,18 @@ entities: rot: 3.141592653589793 rad pos: 35.383995,-11.297027 parent: 2 + - uid: 7708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.975016,-38.280716 + parent: 2 + - uid: 7932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.253723,-41.283375 + parent: 2 - uid: 9058 components: - type: Transform @@ -47515,13 +52815,6 @@ entities: - type: Transform pos: 46.52114,-27.47892 parent: 2 -- proto: CandyBowl - entities: - - uid: 20418 - components: - - type: Transform - pos: -25.494333,-33.461594 - parent: 2 - proto: CannabisSeeds entities: - uid: 226 @@ -47536,15 +52829,15 @@ entities: parent: 2 - proto: CapacitorStockPart entities: - - uid: 4762 + - uid: 3183 components: - type: Transform - pos: -31.503222,-60.171318 + pos: 10.429108,-19.010042 parent: 2 - - uid: 4772 + - uid: 3237 components: - type: Transform - pos: -31.628284,-60.004536 + pos: 10.481217,-19.291487 parent: 2 - uid: 9603 components: @@ -47575,6 +52868,11 @@ entities: parent: 2 - proto: Carpet entities: + - uid: 752 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 - uid: 7109 components: - type: Transform @@ -47720,6 +53018,12 @@ entities: parent: 2 - proto: CarpetBlue entities: + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-46.5 + parent: 2 - uid: 157 components: - type: Transform @@ -47732,21 +53036,135 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 2 + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-47.5 + parent: 2 - uid: 1286 components: - type: Transform pos: -26.5,-55.5 parent: 2 + - uid: 1690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-45.5 + parent: 2 - uid: 1742 components: - type: Transform pos: -25.5,-55.5 parent: 2 + - uid: 2525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-45.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-47.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-46.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-46.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-44.5 + parent: 2 - uid: 3171 components: - type: Transform pos: -25.5,-50.5 parent: 2 + - uid: 4783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-47.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-44.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-45.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-44.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-44.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-44.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-45.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-46.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-47.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-47.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-45.5 + parent: 2 - uid: 6182 components: - type: Transform @@ -47970,6 +53388,54 @@ entities: - type: Transform pos: 46.5,-34.5 parent: 2 + - uid: 419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-53.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-51.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-56.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-54.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-51.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-53.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-54.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-56.5 + parent: 2 - uid: 5042 components: - type: Transform @@ -48005,6 +53471,16 @@ entities: - type: Transform pos: 37.5,-2.5 parent: 2 + - uid: 7899 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 - uid: 8339 components: - type: Transform @@ -48015,48 +53491,48 @@ entities: - type: Transform pos: 35.5,-2.5 parent: 2 - - uid: 12451 + - uid: 8741 components: - type: Transform - pos: 29.5,28.5 + pos: 20.5,-10.5 parent: 2 - - uid: 14063 + - uid: 12550 components: - type: Transform - pos: 30.5,28.5 + pos: 18.5,-9.5 parent: 2 - - uid: 14148 + - uid: 21387 components: - type: Transform - pos: 29.5,27.5 + pos: 20.5,-9.5 parent: 2 - - uid: 19020 + - uid: 21388 components: - type: Transform - pos: 30.5,27.5 + pos: 20.5,-8.5 parent: 2 - - uid: 19021 + - uid: 21391 components: - type: Transform - pos: 29.5,24.5 + pos: 19.5,-8.5 parent: 2 - - uid: 19022 + - uid: 21392 components: - type: Transform - pos: 29.5,23.5 + pos: 19.5,-9.5 parent: 2 - - uid: 19023 + - uid: 21393 components: - type: Transform - pos: 30.5,24.5 - parent: 2 - - uid: 19024 - components: - - type: Transform - pos: 30.5,23.5 + pos: 19.5,-10.5 parent: 2 - proto: CarpetGreen entities: + - uid: 2501 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 - uid: 3509 components: - type: Transform @@ -48087,26 +53563,6 @@ entities: - type: Transform pos: 22.5,-36.5 parent: 2 - - uid: 4751 - components: - - type: Transform - pos: -33.5,-46.5 - parent: 2 - - uid: 4782 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 2 - - uid: 4958 - components: - - type: Transform - pos: -32.5,-45.5 - parent: 2 - - uid: 4984 - components: - - type: Transform - pos: -33.5,-45.5 - parent: 2 - uid: 7504 components: - type: Transform @@ -48225,49 +53681,21 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-29.5 parent: 2 - - uid: 10057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-43.5 - parent: 2 - uid: 10442 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-30.5 parent: 2 - - uid: 12119 + - uid: 11973 components: - type: Transform - pos: -33.5,-43.5 - parent: 2 - - uid: 12707 - components: - - type: Transform - pos: -32.5,-44.5 - parent: 2 - - uid: 12708 - components: - - type: Transform - pos: -32.5,-43.5 - parent: 2 - - uid: 12709 - components: - - type: Transform - pos: -33.5,-44.5 - parent: 2 - - uid: 13116 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 - - uid: 13691 + - uid: 13140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-45.5 + pos: 1.5,-44.5 parent: 2 - uid: 13698 components: @@ -48281,11 +53709,10 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-30.5 parent: 2 - - uid: 14503 + - uid: 14847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-43.5 + pos: 2.5,-44.5 parent: 2 - proto: CarpetOrange entities: @@ -48299,6 +53726,12 @@ entities: - type: Transform pos: -9.5,25.5 parent: 2 + - uid: 3197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-53.5 + parent: 2 - uid: 3334 components: - type: Transform @@ -48311,6 +53744,12 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,12.5 parent: 2 + - uid: 3563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-51.5 + parent: 2 - uid: 3901 components: - type: Transform @@ -48321,6 +53760,12 @@ entities: - type: Transform pos: 28.5,12.5 parent: 2 + - uid: 6530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-51.5 + parent: 2 - uid: 7304 components: - type: Transform @@ -48343,6 +53788,60 @@ entities: - type: Transform pos: 29.5,13.5 parent: 2 + - uid: 10590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-52.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-53.5 + parent: 2 + - uid: 10959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-52.5 + parent: 2 + - uid: 10961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-53.5 + parent: 2 + - uid: 10962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-51.5 + parent: 2 + - uid: 10967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-52.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-53.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-51.5 + parent: 2 - uid: 15859 components: - type: Transform @@ -48390,6 +53889,11 @@ entities: parent: 2 - proto: CarpetPurple entities: + - uid: 747 + components: + - type: Transform + pos: -36.5,-55.5 + parent: 2 - uid: 1048 components: - type: Transform @@ -48419,41 +53923,50 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-33.5 parent: 2 - - uid: 4736 + - uid: 10403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-56.5 + pos: -40.5,-52.5 parent: 2 - - uid: 11119 + - uid: 10404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-54.5 + pos: -40.5,-53.5 parent: 2 - - uid: 11120 + - uid: 10464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-54.5 + pos: -37.5,-54.5 parent: 2 - - uid: 12790 + - uid: 10636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-55.5 + pos: -38.5,-55.5 parent: 2 - - uid: 15701 + - uid: 10637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-55.5 + pos: -38.5,-54.5 parent: 2 - - uid: 15855 + - uid: 10755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-56.5 + pos: -41.5,-52.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 14274 + components: + - type: Transform + pos: -37.5,-55.5 parent: 2 - uid: 18852 components: @@ -48461,6 +53974,16 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-35.5 parent: 2 + - uid: 22523 + components: + - type: Transform + pos: -41.5,-54.5 + parent: 2 + - uid: 22524 + components: + - type: Transform + pos: -40.5,-54.5 + parent: 2 - proto: CarpetSBlue entities: - uid: 3661 @@ -48547,6 +54070,11 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-47.5 parent: 2 + - uid: 9332 + components: + - type: Transform + pos: -53.5,-21.5 + parent: 2 - uid: 9988 components: - type: Transform @@ -48595,6 +54123,11 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-35.5 parent: 2 + - uid: 14940 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 - uid: 17581 components: - type: Transform @@ -48611,6 +54144,36 @@ entities: - type: Transform pos: 71.5,-79.5 parent: 2 + - uid: 21186 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 2 + - uid: 21187 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 2 + - uid: 21188 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 + - uid: 21189 + components: + - type: Transform + pos: -48.5,-21.5 + parent: 2 + - uid: 21190 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 21193 + components: + - type: Transform + pos: -52.5,-21.5 + parent: 2 - proto: Catwalk entities: - uid: 53 @@ -48635,26 +54198,36 @@ entities: - type: Transform pos: 51.5,-31.5 parent: 2 + - uid: 133 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 - uid: 148 components: - type: Transform pos: -32.5,3.5 parent: 2 - - uid: 167 + - uid: 206 components: - type: Transform - pos: -32.5,4.5 - parent: 2 - - uid: 180 - components: - - type: Transform - pos: -32.5,-40.5 + pos: 3.5,-17.5 parent: 2 - uid: 234 components: - type: Transform pos: 44.5,-30.5 parent: 2 + - uid: 315 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 59.5,-53.5 + parent: 2 - uid: 400 components: - type: Transform @@ -48679,30 +54252,18 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-22.5 parent: 2 + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-50.5 + parent: 2 - uid: 582 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-43.5 parent: 2 - - uid: 613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 2 - - uid: 614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-42.5 - parent: 2 - - uid: 619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 2 - uid: 638 components: - type: Transform @@ -48727,6 +54288,12 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,22.5 parent: 2 + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,16.5 + parent: 2 - uid: 721 components: - type: Transform @@ -48920,17 +54487,11 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,22.5 parent: 2 - - uid: 1118 + - uid: 1094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-15.5 - parent: 2 - - uid: 1123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-15.5 + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 parent: 2 - uid: 1167 components: @@ -49057,6 +54618,17 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,19.5 parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 2 - uid: 1269 components: - type: Transform @@ -49146,11 +54718,11 @@ entities: - type: Transform pos: 2.5,-27.5 parent: 2 - - uid: 1527 + - uid: 1516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-15.5 + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 parent: 2 - uid: 1553 components: @@ -49174,17 +54746,17 @@ entities: rot: 3.141592653589793 rad pos: -22.5,21.5 parent: 2 - - uid: 1691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-50.5 - parent: 2 - uid: 1698 components: - type: Transform pos: 0.5,-27.5 parent: 2 + - uid: 1704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 2 - uid: 1732 components: - type: Transform @@ -49208,18 +54780,53 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-43.5 parent: 2 + - uid: 1819 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: -47.5,-48.5 + parent: 2 - uid: 1828 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 + - uid: 1841 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 - uid: 1878 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-42.5 parent: 2 + - uid: 1879 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 - uid: 1939 components: - type: Transform @@ -49255,17 +54862,37 @@ entities: - type: Transform pos: -12.5,-1.5 parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -51.5,-54.5 + parent: 2 - uid: 2060 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-43.5 parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -6.5,-87.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -6.5,-84.5 + parent: 2 - uid: 2087 components: - type: Transform pos: 37.5,-36.5 parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 - uid: 2141 components: - type: Transform @@ -49295,6 +54922,11 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-42.5 parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 - uid: 2269 components: - type: Transform @@ -49317,6 +54949,12 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 2 + - uid: 2323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,12.5 + parent: 2 - uid: 2376 components: - type: Transform @@ -49337,10 +54975,10 @@ entities: - type: Transform pos: 5.5,-22.5 parent: 2 - - uid: 2495 + - uid: 2498 components: - type: Transform - pos: 6.5,-17.5 + pos: 0.5,-18.5 parent: 2 - uid: 2506 components: @@ -49353,16 +54991,6 @@ entities: - type: Transform pos: 26.5,-44.5 parent: 2 - - uid: 2540 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 2 - - uid: 2589 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 2 - uid: 2655 components: - type: Transform @@ -49405,33 +55033,16 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,23.5 parent: 2 - - uid: 2738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-43.5 - parent: 2 - uid: 2740 components: - type: Transform pos: -32.5,11.5 parent: 2 - - uid: 2759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-44.5 - parent: 2 - uid: 2768 components: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 2789 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 2 - uid: 2829 components: - type: Transform @@ -49470,76 +55081,15 @@ entities: - type: Transform pos: 5.5,-21.5 parent: 2 - - uid: 2913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 2 - uid: 2914 components: - type: Transform pos: 3.5,-21.5 parent: 2 - - uid: 2916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-12.5 - parent: 2 - - uid: 2918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-14.5 - parent: 2 - uid: 2921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-16.5 - parent: 2 - - uid: 2922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-15.5 - parent: 2 - - uid: 2927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 2 - - uid: 2928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-15.5 - parent: 2 - - uid: 2929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-15.5 - parent: 2 - - uid: 2931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 2 - - uid: 2932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 2 - - uid: 2933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-15.5 + pos: 27.5,-7.5 parent: 2 - uid: 2934 components: @@ -49603,18 +55153,17 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,23.5 parent: 2 - - uid: 2999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-53.5 - parent: 2 - uid: 3001 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,22.5 parent: 2 + - uid: 3012 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 - uid: 3020 components: - type: Transform @@ -49646,17 +55195,22 @@ entities: - type: Transform pos: 3.5,-23.5 parent: 2 + - uid: 3152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 - uid: 3169 components: - type: Transform pos: 44.5,-4.5 parent: 2 - - uid: 3194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 2 - uid: 3254 components: - type: Transform @@ -49674,48 +55228,30 @@ entities: - type: Transform pos: -18.5,13.5 parent: 2 - - uid: 3313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 2 - - uid: 3317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-15.5 - parent: 2 - uid: 3337 components: - type: Transform pos: 24.5,-14.5 parent: 2 - - uid: 3359 + - uid: 3477 components: - type: Transform - pos: 23.5,-14.5 + pos: 23.5,-8.5 parent: 2 - - uid: 3386 + - uid: 3491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-18.5 - parent: 2 - - uid: 3540 - components: - - type: Transform - pos: -40.5,-58.5 + pos: 23.5,-9.5 parent: 2 - uid: 3554 components: - type: Transform pos: 42.5,-4.5 parent: 2 - - uid: 3558 + - uid: 3643 components: - type: Transform - pos: 21.5,7.5 + pos: 19.5,-13.5 parent: 2 - uid: 3668 components: @@ -49728,11 +55264,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-52.5 parent: 2 - - uid: 3678 - components: - - type: Transform - pos: 21.5,6.5 - parent: 2 - uid: 3680 components: - type: Transform @@ -49744,11 +55275,15 @@ entities: - type: Transform pos: 24.5,-41.5 parent: 2 - - uid: 3849 + - uid: 3827 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-10.5 + pos: 40.5,14.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 42.5,15.5 parent: 2 - uid: 3904 components: @@ -49825,15 +55360,11 @@ entities: - type: Transform pos: 24.5,-42.5 parent: 2 - - uid: 3945 + - uid: 4020 components: - type: Transform - pos: -31.5,-40.5 - parent: 2 - - uid: 3983 - components: - - type: Transform - pos: -37.5,-55.5 + rot: 1.5707963267948966 rad + pos: 27.5,16.5 parent: 2 - uid: 4050 components: @@ -49841,11 +55372,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-54.5 parent: 2 - - uid: 4073 - components: - - type: Transform - pos: -34.5,-40.5 - parent: 2 - uid: 4138 components: - type: Transform @@ -49861,22 +55387,12 @@ entities: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 4164 - components: - - type: Transform - pos: 23.5,-43.5 - parent: 2 - uid: 4189 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,6.5 parent: 2 - - uid: 4215 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 2 - uid: 4218 components: - type: Transform @@ -49895,11 +55411,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-36.5 parent: 2 - - uid: 4275 - components: - - type: Transform - pos: 21.5,-43.5 - parent: 2 - uid: 4395 components: - type: Transform @@ -49966,12 +55477,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-33.5 parent: 2 - - uid: 4451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,7.5 - parent: 2 - uid: 4483 components: - type: Transform @@ -50032,23 +55537,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-36.5 parent: 2 - - uid: 4539 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,11.5 - parent: 2 - uid: 4540 components: - type: Transform pos: 26.5,-14.5 parent: 2 - - uid: 4557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,9.5 - parent: 2 - uid: 4578 components: - type: Transform @@ -50067,15 +55560,15 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,19.5 parent: 2 - - uid: 4714 + - uid: 4775 components: - type: Transform - pos: -33.5,-40.5 + pos: 43.5,15.5 parent: 2 - - uid: 4745 + - uid: 4831 components: - type: Transform - pos: -32.5,5.5 + pos: -52.5,-54.5 parent: 2 - uid: 4851 components: @@ -50087,12 +55580,6 @@ entities: - type: Transform pos: 31.5,-55.5 parent: 2 - - uid: 4918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,11.5 - parent: 2 - uid: 4950 components: - type: Transform @@ -50111,22 +55598,17 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-41.5 parent: 2 - - uid: 5043 - components: - - type: Transform - pos: -26.5,-19.5 - parent: 2 - uid: 5094 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,18.5 parent: 2 - - uid: 5134 + - uid: 5113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-56.5 + rot: 3.141592653589793 rad + pos: 25.5,13.5 parent: 2 - uid: 5156 components: @@ -50153,10 +55635,11 @@ entities: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 5224 + - uid: 5244 components: - type: Transform - pos: 6.5,-18.5 + rot: 3.141592653589793 rad + pos: 24.5,11.5 parent: 2 - uid: 5303 components: @@ -50174,6 +55657,11 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 + - uid: 5404 + components: + - type: Transform + pos: -51.5,-55.5 + parent: 2 - uid: 5452 components: - type: Transform @@ -50186,21 +55674,20 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,15.5 parent: 2 - - uid: 5502 + - uid: 5489 components: - type: Transform - pos: -30.5,-40.5 + pos: 39.5,14.5 parent: 2 - - uid: 5503 + - uid: 5577 components: - type: Transform - pos: -31.5,-41.5 + pos: -49.5,-51.5 parent: 2 - - uid: 5533 + - uid: 5582 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-55.5 + pos: -46.5,-48.5 parent: 2 - uid: 5584 components: @@ -50225,6 +55712,21 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,11.5 parent: 2 + - uid: 5640 + components: + - type: Transform + pos: -49.5,-50.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 - uid: 5678 components: - type: Transform @@ -50255,6 +55757,17 @@ entities: - type: Transform pos: 28.5,-55.5 parent: 2 + - uid: 5756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 - uid: 5878 components: - type: Transform @@ -50271,31 +55784,16 @@ entities: - type: Transform pos: 29.5,-55.5 parent: 2 - - uid: 6062 - components: - - type: Transform - pos: 25.5,11.5 - parent: 2 - - uid: 6085 - components: - - type: Transform - pos: 21.5,11.5 - parent: 2 - uid: 6105 components: - type: Transform pos: 22.5,11.5 parent: 2 - - uid: 6133 + - uid: 6137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,3.5 - parent: 2 - - uid: 6151 - components: - - type: Transform - pos: 24.5,7.5 + rot: -1.5707963267948966 rad + pos: 16.5,2.5 parent: 2 - uid: 6205 components: @@ -50303,45 +55801,56 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,15.5 parent: 2 - - uid: 6395 + - uid: 6331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,1.5 + pos: 25.5,-55.5 parent: 2 - - uid: 6403 + - uid: 6334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,1.5 + pos: 21.5,-56.5 parent: 2 - - uid: 6419 + - uid: 6335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,1.5 + pos: 19.5,-56.5 parent: 2 - - uid: 6425 + - uid: 6368 components: - type: Transform - pos: 21.5,3.5 + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: 18.5,-56.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: 17.5,-56.5 parent: 2 - uid: 6434 components: - type: Transform - pos: 21.5,0.5 - parent: 2 - - uid: 6436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 2 - - uid: 6440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 + pos: 17.5,-13.5 parent: 2 - uid: 6499 components: @@ -50349,15 +55858,25 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,20.5 parent: 2 - - uid: 6566 + - uid: 6541 components: - type: Transform - pos: 21.5,2.5 + pos: 6.5,-17.5 parent: 2 - - uid: 6572 + - uid: 6542 components: - type: Transform - pos: 21.5,-0.5 + pos: 7.5,-17.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: 18.5,-13.5 parent: 2 - uid: 6742 components: @@ -50401,11 +55920,11 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,19.5 parent: 2 - - uid: 6948 + - uid: 6940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,8.5 + rot: -1.5707963267948966 rad + pos: 16.5,3.5 parent: 2 - uid: 6956 components: @@ -50413,35 +55932,15 @@ entities: rot: 3.141592653589793 rad pos: 37.5,6.5 parent: 2 - - uid: 7006 + - uid: 6979 components: - type: Transform - pos: 21.5,-10.5 + pos: 14.5,-63.5 parent: 2 - - uid: 7007 + - uid: 7030 components: - type: Transform - pos: 21.5,-9.5 - parent: 2 - - uid: 7008 - components: - - type: Transform - pos: 25.5,-8.5 - parent: 2 - - uid: 7009 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - - uid: 7010 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 2 - - uid: 7011 - components: - - type: Transform - pos: 25.5,-11.5 + pos: 15.5,-63.5 parent: 2 - uid: 7127 components: @@ -50449,6 +55948,23 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,19.5 parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,10.5 + parent: 2 - uid: 7150 components: - type: Transform @@ -50483,60 +55999,58 @@ entities: rot: 3.141592653589793 rad pos: 35.5,6.5 parent: 2 - - uid: 7409 - components: - - type: Transform - pos: 12.5,-71.5 - parent: 2 - - uid: 7413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,5.5 - parent: 2 - uid: 7445 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-42.5 parent: 2 + - uid: 7447 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 - uid: 7466 components: - type: Transform pos: -18.5,19.5 parent: 2 + - uid: 7467 + components: + - type: Transform + pos: 16.5,-92.5 + parent: 2 - uid: 7475 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-40.5 parent: 2 + - uid: 7527 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 - uid: 7573 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 - - uid: 7581 + - uid: 7592 components: - type: Transform - pos: -9.5,-71.5 + pos: 4.5,-95.5 parent: 2 - - uid: 7586 + - uid: 7654 components: - type: Transform - pos: 10.5,-71.5 - parent: 2 - - uid: 7588 - components: - - type: Transform - pos: -7.5,-71.5 - parent: 2 - - uid: 7648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-54.5 + pos: 36.5,13.5 parent: 2 - uid: 7656 components: @@ -50544,12 +56058,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,24.5 parent: 2 - - uid: 7721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-55.5 - parent: 2 - uid: 7776 components: - type: Transform @@ -50568,82 +56076,281 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-33.5 parent: 2 - - uid: 7779 + - uid: 7803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-52.5 + pos: -46.5,-53.5 parent: 2 - - uid: 7956 + - uid: 7826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-54.5 + pos: 36.5,11.5 parent: 2 - - uid: 8030 + - uid: 7851 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-54.5 + pos: 36.5,12.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: 15.5,-94.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: 14.5,-94.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: 13.5,-94.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: 16.5,-93.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: 16.5,-94.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: 15.5,-84.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + pos: 15.5,-86.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: 15.5,-87.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + pos: 15.5,-89.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: 15.5,-85.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: 16.5,-89.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: 16.5,-90.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: 16.5,-91.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + pos: 15.5,-88.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + pos: -46.5,-52.5 parent: 2 - uid: 8053 components: - type: Transform pos: -29.5,23.5 parent: 2 - - uid: 8284 + - uid: 8116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-54.5 + pos: 15.5,-73.5 parent: 2 - - uid: 8286 + - uid: 8125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-56.5 + pos: 15.5,-74.5 parent: 2 - - uid: 8287 + - uid: 8126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-54.5 + pos: 15.5,-75.5 parent: 2 - - uid: 8289 + - uid: 8127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-54.5 + pos: 15.5,-76.5 parent: 2 - - uid: 8294 + - uid: 8129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-56.5 + pos: 15.5,-77.5 parent: 2 - - uid: 8295 + - uid: 8132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-54.5 + pos: -13.5,-94.5 parent: 2 - - uid: 8296 + - uid: 8142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-53.5 + pos: -13.5,-93.5 parent: 2 - - uid: 8297 + - uid: 8143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-54.5 + pos: -13.5,-92.5 parent: 2 - - uid: 8298 + - uid: 8145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-54.5 + pos: -13.5,-91.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: -13.5,-90.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + pos: -13.5,-89.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + pos: -13.5,-88.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + pos: -12.5,-94.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + pos: -12.5,-95.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + pos: -12.5,-96.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + pos: -13.5,-96.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + pos: -14.5,-96.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + pos: -14.5,-95.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + pos: -14.5,-94.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + pos: -13.5,-95.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + pos: -8.5,-83.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + pos: -10.5,-83.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: -9.5,-83.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + pos: -12.5,-83.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + pos: -11.5,-83.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: -13.5,-84.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: -13.5,-85.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: -13.5,-86.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + pos: -13.5,-87.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + pos: -13.5,-83.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: -10.5,-94.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + pos: -8.5,-94.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + pos: -7.5,-94.5 parent: 2 - uid: 8304 components: @@ -50667,12 +56374,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,11.5 parent: 2 - - uid: 8314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-54.5 - parent: 2 - uid: 8322 components: - type: Transform @@ -50691,18 +56392,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,15.5 parent: 2 - - uid: 8362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-54.5 - parent: 2 - - uid: 8364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-54.5 - parent: 2 - uid: 8367 components: - type: Transform @@ -50715,6 +56404,16 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,19.5 parent: 2 + - uid: 8394 + components: + - type: Transform + pos: 1.5,-90.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 - uid: 8425 components: - type: Transform @@ -50727,12 +56426,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,2.5 parent: 2 - - uid: 8428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-54.5 - parent: 2 - uid: 8429 components: - type: Transform @@ -50787,17 +56480,15 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,2.5 parent: 2 - - uid: 8493 + - uid: 8482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-53.5 + pos: -53.5,-54.5 parent: 2 - - uid: 8553 + - uid: 8511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-56.5 + pos: -33.5,-13.5 parent: 2 - uid: 8560 components: @@ -50839,29 +56530,21 @@ entities: - type: Transform pos: 45.5,-13.5 parent: 2 + - uid: 8569 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 - uid: 8587 components: - type: Transform pos: 45.5,-8.5 parent: 2 - - uid: 8637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-52.5 - parent: 2 - - uid: 8680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 2 - - uid: 8681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 - parent: 2 - uid: 8766 components: - type: Transform @@ -50907,6 +56590,11 @@ entities: - type: Transform pos: 41.5,-2.5 parent: 2 + - uid: 8827 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 - uid: 8831 components: - type: Transform @@ -50937,6 +56625,18 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,2.5 parent: 2 + - uid: 8854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 - uid: 8919 components: - type: Transform @@ -51082,26 +56782,6 @@ entities: - type: Transform pos: 48.5,-34.5 parent: 2 - - uid: 9077 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 2 - - uid: 9078 - components: - - type: Transform - pos: -11.5,-54.5 - parent: 2 - - uid: 9080 - components: - - type: Transform - pos: -12.5,-55.5 - parent: 2 - - uid: 9082 - components: - - type: Transform - pos: -11.5,-53.5 - parent: 2 - uid: 9083 components: - type: Transform @@ -51166,11 +56846,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-26.5 parent: 2 - - uid: 9176 - components: - - type: Transform - pos: 22.5,-43.5 - parent: 2 - uid: 9177 components: - type: Transform @@ -51216,21 +56891,9 @@ entities: - type: Transform pos: 28.5,-51.5 parent: 2 - - uid: 9207 + - uid: 9187 components: - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 9260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-55.5 - parent: 2 - - uid: 9261 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: 14.5,-54.5 parent: 2 - uid: 9292 @@ -51244,65 +56907,33 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-53.5 parent: 2 - - uid: 9317 + - uid: 9523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 2 + - uid: 9526 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-56.5 + pos: -56.5,-52.5 parent: 2 - - uid: 9320 + - uid: 9533 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 9631 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-56.5 - parent: 2 - - uid: 9599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,6.5 - parent: 2 - - uid: 9609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,8.5 - parent: 2 - - uid: 9610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,8.5 - parent: 2 - - uid: 9612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 2 - - uid: 9613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,8.5 - parent: 2 - - uid: 9614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,8.5 - parent: 2 - - uid: 9615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,8.5 - parent: 2 - - uid: 9616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,10.5 + pos: 1.5,-17.5 parent: 2 - uid: 9646 components: @@ -51314,6 +56945,17 @@ entities: - type: Transform pos: 48.5,-32.5 parent: 2 + - uid: 9707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-53.5 + parent: 2 + - uid: 9945 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 - uid: 9976 components: - type: Transform @@ -51353,6 +56995,11 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-51.5 parent: 2 + - uid: 10100 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 - uid: 10111 components: - type: Transform @@ -51368,224 +57015,53 @@ entities: - type: Transform pos: 48.5,-29.5 parent: 2 - - uid: 10203 + - uid: 10418 components: - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 10229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 2 - - uid: 10230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 2 - - uid: 10231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 2 - - uid: 10232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 2 - - uid: 10233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 2 - - uid: 10234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 - parent: 2 - - uid: 10236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 2 - - uid: 10237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 2 - - uid: 10238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 2 - - uid: 10239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 - parent: 2 - - uid: 10435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-54.5 + pos: 9.5,-17.5 parent: 2 - uid: 10436 components: - type: Transform pos: -31.5,22.5 parent: 2 - - uid: 10458 + - uid: 10450 components: - type: Transform - pos: -44.5,-54.5 + pos: 16.5,0.5 parent: 2 - - uid: 10490 + - uid: 10475 + components: + - type: Transform + pos: -49.5,-52.5 + parent: 2 + - uid: 10519 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 10631 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-52.5 + pos: 11.5,-17.5 parent: 2 - - uid: 10491 + - uid: 10697 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-54.5 - parent: 2 - - uid: 10492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-54.5 - parent: 2 - - uid: 10665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-54.5 - parent: 2 - - uid: 10667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-53.5 - parent: 2 - - uid: 10668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-53.5 - parent: 2 - - uid: 10669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-53.5 - parent: 2 - - uid: 10670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-54.5 - parent: 2 - - uid: 10671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-54.5 - parent: 2 - - uid: 10672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-54.5 - parent: 2 - - uid: 10673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-54.5 - parent: 2 - - uid: 10674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-53.5 - parent: 2 - - uid: 10675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-52.5 - parent: 2 - - uid: 10676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-51.5 - parent: 2 - - uid: 10677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-50.5 - parent: 2 - - uid: 10678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-49.5 - parent: 2 - - uid: 10679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-51.5 - parent: 2 - - uid: 10680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-51.5 - parent: 2 - - uid: 10681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-51.5 - parent: 2 - - uid: 10683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-48.5 - parent: 2 - - uid: 10684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-47.5 - parent: 2 - - uid: 10685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-46.5 + pos: 13.5,-17.5 parent: 2 - uid: 10714 components: - type: Transform pos: -30.5,22.5 parent: 2 + - uid: 10768 + components: + - type: Transform + pos: -43.5,-48.5 + parent: 2 - uid: 10783 components: - type: Transform @@ -51596,83 +57072,70 @@ entities: - type: Transform pos: -34.5,23.5 parent: 2 - - uid: 10800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-15.5 - parent: 2 - uid: 10884 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-50.5 parent: 2 - - uid: 10948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-56.5 - parent: 2 - - uid: 10949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-56.5 - parent: 2 - - uid: 10951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-56.5 - parent: 2 - - uid: 10952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-56.5 - parent: 2 - - uid: 10953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-56.5 - parent: 2 - - uid: 10954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-56.5 - parent: 2 - uid: 10965 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-54.5 parent: 2 - - uid: 11159 + - uid: 11048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-55.5 + pos: 4.5,-42.5 parent: 2 - - uid: 11160 + - uid: 11051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-55.5 + rot: -1.5707963267948966 rad + pos: -35.5,9.5 parent: 2 - - uid: 11239 + - uid: 11060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,9.5 + pos: 21.5,-13.5 parent: 2 - - uid: 11240 + - uid: 11130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 + rot: -1.5707963267948966 rad + pos: -33.5,12.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + pos: -39.5,-57.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-53.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: -38.5,-57.5 parent: 2 - uid: 11280 components: @@ -51685,21 +57148,6 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 2 - - uid: 11304 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 2 - - uid: 11305 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 11311 - components: - - type: Transform - pos: 18.5,-7.5 - parent: 2 - uid: 11313 components: - type: Transform @@ -51712,6 +57160,11 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-11.5 parent: 2 + - uid: 11317 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 - uid: 11318 components: - type: Transform @@ -51723,38 +57176,62 @@ entities: - type: Transform pos: 52.5,-31.5 parent: 2 + - uid: 11633 + components: + - type: Transform + pos: -41.5,-57.5 + parent: 2 - uid: 11635 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-13.5 parent: 2 - - uid: 11970 + - uid: 11772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,8.5 + rot: 3.141592653589793 rad + pos: 4.5,-17.5 parent: 2 - - uid: 11972 + - uid: 11952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,8.5 + pos: -40.5,-57.5 parent: 2 - - uid: 11977 + - uid: 11994 components: - type: Transform - pos: 23.5,13.5 + pos: 14.5,-17.5 parent: 2 - - uid: 11978 + - uid: 11995 components: - type: Transform - pos: 24.5,13.5 + pos: -51.5,-59.5 parent: 2 - - uid: 11980 + - uid: 11998 components: - type: Transform - pos: 25.5,13.5 + pos: -52.5,-59.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + pos: 10.5,-78.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + pos: -51.5,-58.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + pos: -11.5,-56.5 parent: 2 - uid: 12302 components: @@ -51762,6 +57239,11 @@ entities: rot: 3.141592653589793 rad pos: -22.5,22.5 parent: 2 + - uid: 12309 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 2 - uid: 12328 components: - type: Transform @@ -51772,29 +57254,94 @@ entities: - type: Transform pos: 34.5,-42.5 parent: 2 - - uid: 12560 + - uid: 12447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-50.5 + pos: -37.5,-57.5 parent: 2 - - uid: 12561 + - uid: 12449 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: -49.5,-56.5 + parent: 2 + - uid: 12476 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: -9.5,-94.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + pos: 10.5,-86.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + pos: -1.5,-94.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: -6.5,-86.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: -0.5,-93.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + pos: 10.5,-85.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + pos: 10.5,-88.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-94.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + pos: 10.5,-87.5 + parent: 2 + - uid: 12832 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-50.5 + pos: -3.5,-90.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-90.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: -6.5,-88.5 parent: 2 - uid: 12845 components: - type: Transform pos: -32.5,10.5 parent: 2 - - uid: 13138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-54.5 - parent: 2 - uid: 13156 components: - type: Transform @@ -51805,27 +57352,37 @@ entities: - type: Transform pos: -15.5,-27.5 parent: 2 - - uid: 13163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-55.5 - parent: 2 - uid: 13165 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-22.5 parent: 2 - - uid: 13190 + - uid: 13171 components: - type: Transform - pos: -37.5,-57.5 + pos: -42.5,-57.5 parent: 2 - - uid: 13229 + - uid: 13176 components: - type: Transform - pos: 52.5,-32.5 + pos: -11.5,-54.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: -11.5,-55.5 parent: 2 - uid: 13234 components: @@ -51833,6 +57390,36 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-0.5 parent: 2 + - uid: 13271 + components: + - type: Transform + pos: -6.5,-85.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: 15.5,-58.5 + parent: 2 + - uid: 13677 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 13852 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: -49.5,-49.5 + parent: 2 - uid: 14218 components: - type: Transform @@ -51899,30 +57486,82 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,18.5 parent: 2 - - uid: 14552 - components: - - type: Transform - pos: -27.5,-13.5 - parent: 2 - uid: 14639 components: - type: Transform pos: 27.5,-43.5 parent: 2 - - uid: 14843 + - uid: 14972 components: - type: Transform - pos: -32.5,6.5 + pos: 10.5,-79.5 parent: 2 - - uid: 14865 + - uid: 14975 components: - type: Transform - pos: -27.5,-15.5 + pos: -7.5,-77.5 parent: 2 - - uid: 15271 + - uid: 14976 components: - type: Transform - pos: -32.5,0.5 + pos: -7.5,-78.5 + parent: 2 + - uid: 14977 + components: + - type: Transform + pos: 10.5,-77.5 + parent: 2 + - uid: 14985 + components: + - type: Transform + pos: -7.5,-79.5 + parent: 2 + - uid: 15020 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 + - uid: 15046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-90.5 + parent: 2 + - uid: 15047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-90.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + pos: 3.5,-98.5 + parent: 2 + - uid: 15053 + components: + - type: Transform + pos: 1.5,-95.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + pos: 3.5,-101.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + pos: 3.5,-100.5 + parent: 2 + - uid: 15188 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - uid: 15197 + components: + - type: Transform + pos: 15.5,-54.5 parent: 2 - uid: 15298 components: @@ -51930,6 +57569,11 @@ entities: rot: 3.141592653589793 rad pos: -14.5,20.5 parent: 2 + - uid: 15299 + components: + - type: Transform + pos: 14.5,-56.5 + parent: 2 - uid: 15311 components: - type: Transform @@ -51946,11 +57590,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-0.5 parent: 2 - - uid: 15570 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 2 - uid: 15676 components: - type: Transform @@ -51963,15 +57602,17 @@ entities: rot: 3.141592653589793 rad pos: -16.5,20.5 parent: 2 - - uid: 15739 + - uid: 15791 components: - type: Transform - pos: -38.5,-58.5 + rot: 1.5707963267948966 rad + pos: -59.5,-59.5 parent: 2 - - uid: 15743 + - uid: 15797 components: - type: Transform - pos: -37.5,-58.5 + rot: 1.5707963267948966 rad + pos: -60.5,-59.5 parent: 2 - uid: 15856 components: @@ -51979,6 +57620,27 @@ entities: rot: 3.141592653589793 rad pos: -21.5,20.5 parent: 2 + - uid: 15926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-59.5 + parent: 2 + - uid: 16030 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 16034 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 16041 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 - uid: 16107 components: - type: Transform @@ -51991,11 +57653,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,20.5 parent: 2 - - uid: 16321 - components: - - type: Transform - pos: -27.5,-14.5 - parent: 2 - uid: 16591 components: - type: Transform @@ -52092,96 +57749,57 @@ entities: - type: Transform pos: -39.5,-12.5 parent: 2 - - uid: 16617 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 2 - uid: 16618 components: - type: Transform pos: -44.5,-12.5 parent: 2 - - uid: 16619 + - uid: 16710 components: - type: Transform - pos: -38.5,-13.5 - parent: 2 - - uid: 16620 - components: - - type: Transform - pos: -38.5,-14.5 - parent: 2 - - uid: 16621 - components: - - type: Transform - pos: -38.5,-15.5 - parent: 2 - - uid: 16622 - components: - - type: Transform - pos: -38.5,-16.5 - parent: 2 - - uid: 16623 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 2 - - uid: 16624 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 2 - - uid: 16625 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 2 - - uid: 16626 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - uid: 16627 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 2 - - uid: 16628 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 2 - - uid: 16629 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 2 - - uid: 16630 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 2 - - uid: 16631 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 2 - - uid: 16632 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 2 - - uid: 16633 - components: - - type: Transform - pos: -27.5,-16.5 + pos: 3.5,-96.5 parent: 2 - uid: 16752 components: - type: Transform pos: -30.5,18.5 parent: 2 + - uid: 16763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-59.5 + parent: 2 + - uid: 16888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-59.5 + parent: 2 + - uid: 16890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-59.5 + parent: 2 + - uid: 16926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-54.5 + parent: 2 + - uid: 16936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-51.5 + parent: 2 + - uid: 16963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-90.5 + parent: 2 - uid: 17035 components: - type: Transform @@ -52257,15 +57875,42 @@ entities: - type: Transform pos: -30.5,19.5 parent: 2 - - uid: 17139 + - uid: 17253 components: - type: Transform - pos: -32.5,-49.5 + pos: 16.5,-8.5 parent: 2 - - uid: 17661 + - uid: 17254 components: - type: Transform - pos: -27.5,-19.5 + pos: 13.5,-16.5 + parent: 2 + - uid: 17259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-93.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 17574 + components: + - type: Transform + pos: 14.5,-55.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-95.5 parent: 2 - uid: 17737 components: @@ -52354,6 +57999,12 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-44.5 parent: 2 + - uid: 18616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-92.5 + parent: 2 - uid: 18634 components: - type: Transform @@ -52501,11 +58152,6 @@ entities: - type: Transform pos: 50.5,-52.5 parent: 2 - - uid: 18754 - components: - - type: Transform - pos: 59.5,-53.5 - parent: 2 - uid: 18755 components: - type: Transform @@ -52526,6 +58172,77 @@ entities: - type: Transform pos: 15.5,15.5 parent: 2 + - uid: 18984 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 19158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-97.5 + parent: 2 + - uid: 19159 + components: + - type: Transform + pos: 3.5,-97.5 + parent: 2 + - uid: 19181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-97.5 + parent: 2 + - uid: 19184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-97.5 + parent: 2 + - uid: 19203 + components: + - type: Transform + pos: 3.5,-99.5 + parent: 2 + - uid: 19212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-97.5 + parent: 2 + - uid: 19232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-90.5 + parent: 2 + - uid: 19242 + components: + - type: Transform + pos: 5.5,-95.5 + parent: 2 + - uid: 19267 + components: + - type: Transform + pos: -0.5,-94.5 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: -1.5,-93.5 + parent: 2 + - uid: 19271 + components: + - type: Transform + pos: 2.5,-95.5 + parent: 2 + - uid: 19272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-90.5 + parent: 2 - uid: 19867 components: - type: Transform @@ -52541,11 +58258,6 @@ entities: - type: Transform pos: 53.5,-54.5 parent: 2 - - uid: 19895 - components: - - type: Transform - pos: 51.5,-32.5 - parent: 2 - uid: 20082 components: - type: Transform @@ -52618,30 +58330,539 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-37.5 parent: 2 - - uid: 20260 + - uid: 20219 components: - type: Transform - pos: 1.5,-24.5 + rot: 1.5707963267948966 rad + pos: 3.5,-91.5 parent: 2 - - uid: 20625 + - uid: 20499 components: - type: Transform - pos: -32.5,-50.5 + rot: -1.5707963267948966 rad + pos: -34.5,12.5 parent: 2 - uid: 20657 components: - type: Transform pos: -30.5,16.5 parent: 2 - - uid: 20747 + - uid: 20830 components: - type: Transform - pos: -41.5,-58.5 + pos: -42.5,-48.5 parent: 2 - - uid: 20775 + - uid: 20831 components: - type: Transform - pos: -32.5,-1.5 + pos: -41.5,-48.5 + parent: 2 + - uid: 20836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-62.5 + parent: 2 + - uid: 21000 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 21001 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 21119 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 21120 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 21142 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 21157 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 21158 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 21159 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 21160 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 21161 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 21162 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 21163 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 21164 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 21166 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 21167 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 21168 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 21169 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 21170 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 21172 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 21173 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 21174 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 21175 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 21177 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 21178 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 21179 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 21180 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 21181 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 21197 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 21198 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 21200 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 21201 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 21202 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 21203 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 21204 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 21205 + components: + - type: Transform + pos: -38.5,-40.5 + parent: 2 + - uid: 21206 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 21207 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 21213 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 21214 + components: + - type: Transform + pos: -44.5,-48.5 + parent: 2 + - uid: 21315 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 21316 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 21318 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 21362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,14.5 + parent: 2 + - uid: 21400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-53.5 + parent: 2 + - uid: 21453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-56.5 + parent: 2 + - uid: 21454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-55.5 + parent: 2 + - uid: 21455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-54.5 + parent: 2 + - uid: 21460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-54.5 + parent: 2 + - uid: 21461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-54.5 + parent: 2 + - uid: 21462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-54.5 + parent: 2 + - uid: 21463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-54.5 + parent: 2 + - uid: 21464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-54.5 + parent: 2 + - uid: 21465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-54.5 + parent: 2 + - uid: 21466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-54.5 + parent: 2 + - uid: 21467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-54.5 + parent: 2 + - uid: 21468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-54.5 + parent: 2 + - uid: 21469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,-54.5 + parent: 2 + - uid: 21470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-54.5 + parent: 2 + - uid: 21471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-54.5 + parent: 2 + - uid: 21472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-55.5 + parent: 2 + - uid: 21473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-56.5 + parent: 2 + - uid: 21474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-56.5 + parent: 2 + - uid: 21475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-55.5 + parent: 2 + - uid: 21476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-53.5 + parent: 2 + - uid: 21477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-52.5 + parent: 2 + - uid: 21478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-52.5 + parent: 2 + - uid: 21479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-53.5 + parent: 2 + - uid: 21480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-53.5 + parent: 2 + - uid: 21481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-52.5 + parent: 2 + - uid: 21482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-55.5 + parent: 2 + - uid: 21483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-56.5 + parent: 2 + - uid: 21484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-52.5 + parent: 2 + - uid: 21679 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 21756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,9.5 + parent: 2 + - uid: 21822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + - uid: 21823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 2 + - uid: 21824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + - uid: 21841 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 21842 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 21850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 + - uid: 21893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,14.5 + parent: 2 + - uid: 21941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-53.5 + parent: 2 + - uid: 21944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-53.5 + parent: 2 + - uid: 22088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,15.5 + parent: 2 + - uid: 22414 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 22416 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 22466 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 22467 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 22468 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 22469 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 22641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,14.5 + parent: 2 + - uid: 22642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,14.5 parent: 2 - proto: CelloInstrument entities: @@ -52658,11 +58879,16 @@ entities: rot: 3.141592653589793 rad pos: -14.5,14.5 parent: 2 - - uid: 283 + - uid: 273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-29.5 + pos: 7.5,-18.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 parent: 2 - uid: 313 components: @@ -52675,12 +58901,6 @@ entities: - type: Transform pos: -30.5,4.5 parent: 2 - - uid: 461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 2 - uid: 493 components: - type: Transform @@ -52699,11 +58919,11 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-40.5 parent: 2 - - uid: 598 + - uid: 1135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-31.5 + rot: 1.5707963267948966 rad + pos: -57.5,-54.5 parent: 2 - uid: 1296 components: @@ -52717,92 +58937,63 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-39.5 parent: 2 - - uid: 1757 + - uid: 2044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-65.5 - parent: 2 - - uid: 1772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-34.5 - parent: 2 - - uid: 1773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-33.5 - parent: 2 - - uid: 1776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 2 - - uid: 1916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-29.5 - parent: 2 - - uid: 1920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 2 - - uid: 2134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-15.5 - parent: 2 - - uid: 2267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - - uid: 2509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + rot: 3.141592653589793 rad + pos: 13.5,-60.5 parent: 2 - uid: 2535 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - uid: 3121 + - uid: 2992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-57.5 + pos: 10.5,-16.5 parent: 2 - - uid: 3316 + - uid: 3048 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-31.5 + pos: -35.5,-72.5 parent: 2 - - uid: 3403 + - uid: 3189 components: - type: Transform - pos: -19.5,-18.5 + rot: -1.5707963267948966 rad + pos: -35.5,-73.5 parent: 2 - uid: 3411 components: - type: Transform pos: 1.5,12.5 parent: 2 - - uid: 3944 + - uid: 4038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-23.5 + rot: 1.5707963267948966 rad + pos: -8.5,-71.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-68.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-67.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-79.5 parent: 2 - uid: 4423 components: @@ -52810,50 +59001,33 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-38.5 parent: 2 + - uid: 4600 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-29.5 + parent: 2 - uid: 4662 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,5.5 parent: 2 - - uid: 5036 + - uid: 4768 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-29.5 - parent: 2 - - uid: 5069 - components: - - type: Transform - pos: -50.5,-31.5 - parent: 2 - - uid: 5135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-29.5 - parent: 2 - - uid: 5154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 2 - - uid: 5184 - components: - - type: Transform - pos: -52.5,-31.5 + pos: 6.5,-18.5 parent: 2 - uid: 5336 components: - type: Transform pos: -14.5,16.5 parent: 2 - - uid: 5393 - components: - - type: Transform - pos: 16.5,0.5 - parent: 2 - uid: 5698 components: - type: Transform @@ -52876,6 +59050,18 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-39.5 parent: 2 + - uid: 5842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-10.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 - uid: 5904 components: - type: Transform @@ -52929,20 +59115,15 @@ entities: - type: Transform pos: -27.5,7.5 parent: 2 - - uid: 6204 - components: - - type: Transform - pos: -38.5,-29.5 - parent: 2 - uid: 6293 components: - type: Transform pos: 54.5,-38.5 parent: 2 - - uid: 6595 + - uid: 6710 components: - type: Transform - pos: -18.5,-18.5 + pos: -29.5,-30.5 parent: 2 - uid: 7015 components: @@ -52950,33 +59131,23 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,12.5 parent: 2 - - uid: 7027 - components: - - type: Transform - pos: -39.5,-29.5 - parent: 2 - uid: 7265 components: - type: Transform pos: -12.5,15.5 parent: 2 + - uid: 7441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 2 - uid: 8197 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,13.5 parent: 2 - - uid: 8396 - components: - - type: Transform - pos: -51.5,-31.5 - parent: 2 - - uid: 8484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-31.5 - parent: 2 - uid: 8520 components: - type: Transform @@ -53005,18 +59176,18 @@ entities: - type: Transform pos: -12.5,9.5 parent: 2 - - uid: 8692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,41.5 - parent: 2 - uid: 8837 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 2 + - uid: 8981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 2 - uid: 9210 components: - type: Transform @@ -53097,6 +59268,12 @@ entities: rot: 3.141592653589793 rad pos: 51.5,-18.5 parent: 2 + - uid: 9334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-13.5 + parent: 2 - uid: 9348 components: - type: Transform @@ -53109,22 +59286,63 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,-24.5 parent: 2 - - uid: 10691 + - uid: 9625 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 10229 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-49.5 + pos: -26.5,-29.5 parent: 2 - - uid: 11180 + - uid: 10681 components: - type: Transform - pos: -38.5,-51.5 + rot: -1.5707963267948966 rad + pos: -55.5,-54.5 parent: 2 - - uid: 11249 + - uid: 10916 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-53.5 + pos: 18.5,5.5 + parent: 2 + - uid: 10951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-68.5 + parent: 2 + - uid: 10954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-67.5 + parent: 2 + - uid: 11173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-70.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-29.5 parent: 2 - uid: 11472 components: @@ -53136,17 +59354,49 @@ entities: - type: Transform pos: -17.5,-40.5 parent: 2 - - uid: 11590 + - uid: 11967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-64.5 + rot: 3.141592653589793 rad + pos: -29.5,-29.5 parent: 2 - - uid: 13791 + - uid: 12231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-57.5 + pos: 43.5,15.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + pos: 8.5,-87.5 parent: 2 - uid: 15310 components: @@ -53164,11 +59414,17 @@ entities: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 15711 + - uid: 15659 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-31.5 + pos: 39.5,19.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,19.5 parent: 2 - uid: 15873 components: @@ -53180,23 +59436,22 @@ entities: - type: Transform pos: -19.5,-40.5 parent: 2 + - uid: 16071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-42.5 + parent: 2 + - uid: 16163 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 - uid: 16258 components: - type: Transform pos: -40.5,-1.5 parent: 2 - - uid: 16756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-31.5 - parent: 2 - - uid: 16875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-10.5 - parent: 2 - uid: 17643 components: - type: Transform @@ -53221,18 +59476,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-60.5 parent: 2 - - uid: 17996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 2 - - uid: 17997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-35.5 - parent: 2 - uid: 18867 components: - type: Transform @@ -53251,6 +59494,16 @@ entities: rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 2 + - uid: 19188 + components: + - type: Transform + pos: 13.5,-58.5 + parent: 2 + - uid: 19201 + components: + - type: Transform + pos: 9.5,-87.5 + parent: 2 - uid: 20422 components: - type: Transform @@ -53266,6 +59519,24 @@ entities: - type: Transform pos: -36.5,-4.5 parent: 2 + - uid: 21813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-53.5 + parent: 2 + - uid: 21814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,5.5 + parent: 2 + - uid: 21815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 2 - proto: ChairFolding entities: - uid: 981 @@ -53274,11 +59545,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,22.5 parent: 2 - - uid: 3356 - components: - - type: Transform - pos: -41.30261,-50.400845 - parent: 2 - uid: 4299 components: - type: Transform @@ -53297,6 +59563,11 @@ entities: rot: 3.141592653589793 rad pos: -0.5,22.5 parent: 2 + - uid: 9001 + components: + - type: Transform + pos: 38.535606,21.511303 + parent: 2 - uid: 11869 components: - type: Transform @@ -53326,6 +59597,12 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,23.5 parent: 2 + - uid: 15940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.45649,-5.334695 + parent: 2 - uid: 16206 components: - type: Transform @@ -53337,6 +59614,35 @@ entities: rot: 3.141592653589793 rad pos: 96.49125,-32.383053 parent: 2 + - uid: 21444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.534172,-20.28666 + parent: 2 + - uid: 22312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.512619,19.602446 + parent: 2 + - uid: 22313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.47563,19.5841 + parent: 2 + - uid: 22613 + components: + - type: Transform + pos: 20.500767,19.519604 + parent: 2 + - uid: 22615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.469517,17.597729 + parent: 2 - proto: ChairFoldingSpawnFolded entities: - uid: 18834 @@ -53359,12 +59665,6 @@ entities: rot: 3.141592653589793 rad pos: 48.551674,-8.388277 parent: 2 - - uid: 284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.534855,-26.322289 - parent: 2 - uid: 342 components: - type: Transform @@ -53412,12 +59712,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.482578,12.543639 parent: 2 - - uid: 2827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.51401,-34.28615 - parent: 2 - uid: 2878 components: - type: Transform @@ -53429,17 +59723,10 @@ entities: rot: -1.5707963267948966 rad pos: -20.471191,-38.39636 parent: 2 - - uid: 3823 + - uid: 3606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.461061,-36.42368 - parent: 2 - - uid: 3824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.74245,-39.206863 + pos: 22.534935,-43.371696 parent: 2 - uid: 3856 components: @@ -53471,23 +59758,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.68654,-45.333687 parent: 2 - - uid: 4796 - components: - - type: Transform - pos: -27.552761,-27.28677 - parent: 2 - - uid: 5084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.25339,-26.060616 - parent: 2 - - uid: 5085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.097557,-21.07799 - parent: 2 - uid: 5153 components: - type: Transform @@ -53511,6 +59781,17 @@ entities: rot: 1.5707963267948966 rad pos: 38.543137,2.6380181 parent: 2 + - uid: 6601 + components: + - type: Transform + pos: -28.47198,-25.341808 + parent: 2 + - uid: 7418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.459618,-53.280823 + parent: 2 - uid: 7532 components: - type: Transform @@ -53534,11 +59815,10 @@ entities: - type: Transform pos: 4.5026083,16.648575 parent: 2 - - uid: 7959 + - uid: 8636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.489376,-41.355408 + pos: 18.439327,1.646283 parent: 2 - uid: 8675 components: @@ -53546,11 +59826,17 @@ entities: rot: 1.5707963267948966 rad pos: 27.426058,10.683699 parent: 2 - - uid: 8763 + - uid: 8739 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.467,-48.41087 + pos: 25.522947,0.75847006 + parent: 2 + - uid: 9031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.519394,-40.42816 parent: 2 - uid: 9358 components: @@ -53587,27 +59873,16 @@ entities: rot: 1.5707963267948966 rad pos: -15.224391,-52.759342 parent: 2 - - uid: 10193 + - uid: 10214 components: - type: Transform - pos: -33.562527,-44.434895 + pos: -27.543253,-8.208982 parent: 2 - - uid: 11286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.441496,-41.21525 - parent: 2 - - uid: 11293 + - uid: 11230 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.43157,-40.31879 - parent: 2 - - uid: 11295 - components: - - type: Transform - pos: 22.604893,-39.31542 + pos: -49.474953,-45.30314 parent: 2 - uid: 11550 components: @@ -53615,10 +59890,40 @@ entities: rot: 1.5707963267948966 rad pos: -51.438198,-11.359901 parent: 2 - - uid: 13153 + - uid: 12035 components: - type: Transform - pos: -26.556353,-8.16098 + rot: 3.141592653589793 rad + pos: -28.42853,-34.31103 + parent: 2 + - uid: 12339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.444351,-22.321272 + parent: 2 + - uid: 12930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.541805,-30.342693 + parent: 2 + - uid: 12940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.421295,-28.385447 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: -48.451073,-21.408466 + parent: 2 + - uid: 13076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.429733,-23.3668 parent: 2 - uid: 13340 components: @@ -53626,6 +59931,18 @@ entities: rot: -1.5707963267948966 rad pos: 27.486774,-18.330626 parent: 2 + - uid: 14116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.414894,-22.46213 + parent: 2 + - uid: 14186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.520638,-46.383194 + parent: 2 - uid: 14535 components: - type: Transform @@ -53638,19 +59955,32 @@ entities: rot: 3.141592653589793 rad pos: -1.4385903,-21.32861 parent: 2 - - uid: 14654 + - uid: 15792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.518234,-60.342995 + parent: 2 + - uid: 17148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.466614,-53.402744 + parent: 2 + - uid: 21761 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.454468,-35.39486 - parent: 2 - - uid: 18093 - components: - - type: Transform - pos: -40.668236,-33.44134 + pos: 21.511818,3.5986362 parent: 2 - proto: ChairPilotSeat entities: + - uid: 405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-84.5 + parent: 2 - uid: 4866 components: - type: Transform @@ -53686,16 +60016,17 @@ entities: rot: 3.141592653589793 rad pos: -7.452895,-40.322285 parent: 2 - - uid: 5046 - components: - - type: Transform - pos: 0.8496008,-39.432648 - parent: 2 - - uid: 5047 + - uid: 7317 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.280833,-39.559772 + pos: -11.260723,-39.485233 + parent: 2 + - uid: 7409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.220901,-40.38169 parent: 2 - uid: 9272 components: @@ -53703,33 +60034,41 @@ entities: rot: 3.141592653589793 rad pos: 14.477526,-51.48397 parent: 2 - - uid: 15299 + - uid: 10258 components: - type: Transform - pos: -6.5465918,-38.52324 + rot: -1.5707963267948966 rad + pos: -9.551541,-39.453964 parent: 2 - - uid: 15670 + - uid: 13293 components: - type: Transform - pos: 0.289124,-39.45648 + rot: -1.5707963267948966 rad + pos: -9.509854,-40.392117 parent: 2 - - uid: 17285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.280833,-40.47717 - parent: 2 - - uid: 17574 + - uid: 15040 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.439266,-40.34611 + pos: -6.5708957,-40.308723 parent: 2 - uid: 18384 components: - type: Transform pos: -7.5602202,-38.547066 parent: 2 + - uid: 18919 + components: + - type: Transform + pos: -6.5813174,-38.567932 + parent: 2 +- proto: CheapLighter + entities: + - uid: 20278 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 - proto: CheckerBoard entities: - uid: 3712 @@ -53740,15 +60079,22 @@ entities: parent: 2 - proto: ChemDispenser entities: - - uid: 5291 + - uid: 10460 components: - type: Transform - pos: -31.5,-34.5 + pos: -29.5,-38.5 parent: 2 - - uid: 5302 + - uid: 12053 components: - type: Transform - pos: -26.5,-34.5 + pos: -35.5,-37.5 + parent: 2 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 1331 + components: + - type: Transform + pos: -29.057194,-46.390995 parent: 2 - proto: ChemistryEmptyBottle03 entities: @@ -53759,22 +60105,22 @@ entities: parent: 2 - proto: ChemistryHotplate entities: - - uid: 5172 + - uid: 12037 components: - type: Transform - pos: -30.5,-34.5 + pos: -30.5,-36.5 parent: 2 - proto: ChemMaster entities: - - uid: 3615 + - uid: 12031 components: - type: Transform - pos: -27.5,-34.5 + pos: -30.5,-38.5 parent: 2 - - uid: 5289 + - uid: 12050 components: - type: Transform - pos: -31.5,-33.5 + pos: -34.5,-37.5 parent: 2 - proto: ChessBoard entities: @@ -53808,6 +60154,11 @@ entities: parent: 2 - proto: Cigar entities: + - uid: 4661 + components: + - type: Transform + pos: -27.764887,-46.23464 + parent: 2 - uid: 18968 components: - type: Transform @@ -53906,6 +60257,11 @@ entities: parent: 2 - proto: CigarGoldCase entities: + - uid: 1915 + components: + - type: Transform + pos: -30.487106,-64.386795 + parent: 2 - uid: 20240 components: - type: Transform @@ -53918,6 +60274,11 @@ entities: - type: Transform pos: -14.617033,15.569173 parent: 2 + - uid: 4978 + components: + - type: Transform + pos: -27.3897,-46.380573 + parent: 2 - uid: 5612 components: - type: Transform @@ -53945,11 +60306,23 @@ entities: parent: 2 - proto: CigPackBlue entities: + - uid: 14971 + components: + - type: Transform + pos: -0.6765833,-52.28148 + parent: 2 - uid: 18986 components: - type: Transform pos: 27.589014,-28.112291 parent: 2 +- proto: CigPackGreen + entities: + - uid: 6142 + components: + - type: Transform + pos: 27.353765,-12.522836 + parent: 2 - proto: CigPackRed entities: - uid: 717 @@ -53966,11 +60339,11 @@ entities: parent: 2 - proto: CleanerDispenser entities: - - uid: 9528 + - uid: 5745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,3.5 + rot: -1.5707963267948966 rad + pos: 29.5,0.5 parent: 2 - proto: ClosetBombFilled entities: @@ -53988,26 +60361,36 @@ entities: parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 2863 + - uid: 154 components: - type: Transform - pos: -28.5,-64.5 + pos: -6.5,-59.5 parent: 2 - - uid: 3159 + - uid: 2332 components: - type: Transform - pos: -42.5,-31.5 + pos: 24.5,10.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: -32.5,-78.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: -32.5,-77.5 parent: 2 - uid: 3165 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 3526 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 2 - uid: 3527 components: - type: Transform @@ -54023,41 +60406,31 @@ entities: - type: Transform pos: 30.5,-52.5 parent: 2 + - uid: 4057 + components: + - type: Transform + pos: 11.5,-75.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: 11.5,-74.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 - uid: 4332 components: - type: Transform pos: -3.5,12.5 parent: 2 - - uid: 6066 - components: - - type: Transform - pos: 12.5,-68.5 - parent: 2 - - uid: 6226 - components: - - type: Transform - pos: -9.5,-68.5 - parent: 2 - uid: 6827 components: - type: Transform pos: 50.5,-26.5 parent: 2 - - uid: 7325 - components: - - type: Transform - pos: 31.5,37.5 - parent: 2 - - uid: 7559 - components: - - type: Transform - pos: -9.5,-69.5 - parent: 2 - - uid: 7579 - components: - - type: Transform - pos: 12.5,-69.5 - parent: 2 - uid: 7597 components: - type: Transform @@ -54068,15 +60441,10 @@ entities: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 7669 + - uid: 7866 components: - type: Transform - pos: 28.5,19.5 - parent: 2 - - uid: 8272 - components: - - type: Transform - pos: -28.5,-63.5 + pos: -49.5,-32.5 parent: 2 - uid: 9337 components: @@ -54088,25 +60456,65 @@ entities: - type: Transform pos: 44.5,-18.5 parent: 2 + - uid: 10578 + components: + - type: Transform + pos: -8.5,-75.5 + parent: 2 + - uid: 10953 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + pos: -58.5,-53.5 + parent: 2 - uid: 11564 components: - type: Transform pos: 38.5,-52.5 parent: 2 - - uid: 15691 + - uid: 13119 components: - type: Transform - pos: 31.5,38.5 + pos: -47.5,-41.5 parent: 2 - - uid: 15716 + - uid: 14053 components: - type: Transform - pos: 27.5,-13.5 + pos: -47.5,-40.5 parent: 2 - - uid: 17867 + - uid: 14799 components: - type: Transform - pos: -33.5,11.5 + pos: -35.5,-39.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 2 + - uid: 16306 + components: + - type: Transform + pos: -32.5,-65.5 + parent: 2 + - uid: 18550 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 18572 + components: + - type: Transform + pos: 15.5,-10.5 parent: 2 - uid: 18847 components: @@ -54123,59 +60531,57 @@ entities: - type: Transform pos: 61.5,-52.5 parent: 2 - - uid: 20132 + - uid: 21615 components: - type: Transform - pos: 6.5,-47.5 + pos: -53.5,-60.5 parent: 2 - - uid: 20134 + - uid: 21616 components: - type: Transform - pos: -40.5,-31.5 + pos: -52.5,-60.5 parent: 2 - - uid: 20139 + - uid: 21994 components: - type: Transform - pos: 31.5,4.5 + pos: 23.5,10.5 parent: 2 - - uid: 20140 + - uid: 22037 components: - type: Transform - pos: 31.5,5.5 + pos: -36.5,11.5 parent: 2 - - uid: 20749 + - uid: 22047 components: - type: Transform - pos: -40.5,-57.5 + pos: 37.5,15.5 parent: 2 -- proto: ClosetEmergencyN2 - entities: - - uid: 323 + - uid: 22048 components: - type: Transform - pos: 14.5,-9.5 + pos: 36.5,15.5 parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 369 + - uid: 2790 components: - type: Transform - pos: 31.5,39.5 + pos: -34.5,-12.5 parent: 2 - - uid: 3352 + - uid: 2973 components: - type: Transform - pos: -3.5,-47.5 + pos: -32.5,-75.5 parent: 2 - - uid: 3378 + - uid: 4153 components: - type: Transform - pos: 14.5,-8.5 + pos: 13.5,-55.5 parent: 2 - - uid: 5902 + - uid: 5375 components: - type: Transform - pos: -28.5,-65.5 + pos: 29.5,19.5 parent: 2 - uid: 9982 components: @@ -54187,15 +60593,25 @@ entities: - type: Transform pos: 44.5,-19.5 parent: 2 + - uid: 11269 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 - uid: 11562 components: - type: Transform pos: 39.5,-52.5 parent: 2 - - uid: 17868 + - uid: 13100 components: - type: Transform - pos: -33.5,10.5 + pos: -34.5,-39.5 + parent: 2 + - uid: 18543 + components: + - type: Transform + pos: 15.5,-9.5 parent: 2 - uid: 18848 components: @@ -54207,13 +60623,33 @@ entities: - type: Transform pos: 61.5,-54.5 parent: 2 - - uid: 20748 + - uid: 21614 components: - type: Transform - pos: -41.5,-57.5 + pos: -51.5,-60.5 parent: 2 - proto: ClosetFireFilled entities: + - uid: 63 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: -32.5,-76.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: -8.5,-73.5 + parent: 2 - uid: 4580 components: - type: Transform @@ -54224,31 +60660,56 @@ entities: - type: Transform pos: -15.5,-20.5 parent: 2 - - uid: 5672 + - uid: 5135 components: - type: Transform - pos: 7.5,-47.5 + pos: 25.5,10.5 parent: 2 - - uid: 7598 + - uid: 7126 components: - type: Transform - pos: 12.5,-67.5 + pos: -33.5,-39.5 parent: 2 - - uid: 7601 + - uid: 12324 components: - type: Transform - pos: -9.5,-67.5 + pos: -34.5,11.5 parent: 2 - - uid: 14084 + - uid: 12744 components: - type: Transform - pos: -33.5,-41.5 + pos: -3.5,-55.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + pos: -49.5,-31.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: 11.5,-73.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: -38.5,-19.5 parent: 2 - uid: 14798 components: - type: Transform pos: 52.5,-15.5 parent: 2 + - uid: 15021 + components: + - type: Transform + pos: 13.5,-56.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: -32.5,-64.5 + parent: 2 - uid: 17472 components: - type: Transform @@ -54264,34 +60725,34 @@ entities: - type: Transform pos: 43.5,-50.5 parent: 2 - - uid: 18998 + - uid: 20817 components: - type: Transform - pos: 31.5,36.5 + pos: 15.5,-15.5 parent: 2 - - uid: 20135 + - uid: 21676 components: - type: Transform - pos: -39.5,-31.5 + pos: -36.5,-49.5 parent: 2 - - uid: 20141 + - uid: 21677 components: - type: Transform - pos: 31.5,6.5 + pos: -58.5,-52.5 parent: 2 - proto: ClosetJanitorFilled entities: - - uid: 9414 + - uid: 9635 components: - type: Transform - pos: 27.5,1.5 + pos: 24.5,2.5 parent: 2 - proto: ClosetL3JanitorFilled entities: - - uid: 9597 + - uid: 4025 components: - type: Transform - pos: 29.5,6.5 + pos: 25.5,3.5 parent: 2 - proto: ClosetL3ScienceFilled entities: @@ -54309,52 +60770,16 @@ entities: parent: 2 - proto: ClosetL3VirologyFilled entities: - - uid: 8032 + - uid: 618 components: - type: Transform - pos: -47.5,-42.5 + pos: -51.5,-29.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8110 + - uid: 12706 components: - type: Transform - pos: -46.5,-42.5 + pos: -51.5,-31.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetMaintenance entities: - uid: 3103 @@ -54362,8 +60787,18 @@ entities: - type: Transform pos: -29.5,15.5 parent: 2 + - uid: 7316 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 2 - proto: ClosetMaintenanceFilledRandom entities: + - uid: 975 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 - uid: 1410 components: - type: Transform @@ -54374,10 +60809,10 @@ entities: - type: Transform pos: 51.5,-35.5 parent: 2 - - uid: 5433 + - uid: 5348 components: - type: Transform - pos: 21.5,12.5 + pos: 22.5,-2.5 parent: 2 - uid: 5627 components: @@ -54407,10 +60842,20 @@ entities: - type: Transform pos: 31.5,-52.5 parent: 2 - - uid: 10707 + - uid: 7264 components: - type: Transform - pos: -43.5,-50.5 + pos: 16.5,-59.5 + parent: 2 + - uid: 9934 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 10770 + components: + - type: Transform + pos: 28.5,19.5 parent: 2 - uid: 11167 components: @@ -54422,16 +60867,26 @@ entities: - type: Transform pos: 25.5,-56.5 parent: 2 - - uid: 14461 + - uid: 15294 components: - type: Transform - pos: 16.5,-8.5 + pos: -36.5,-45.5 parent: 2 - uid: 15336 components: - type: Transform pos: -26.5,19.5 parent: 2 + - uid: 16910 + components: + - type: Transform + pos: -53.5,-48.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + pos: -52.5,-47.5 + parent: 2 - uid: 18579 components: - type: Transform @@ -54442,20 +60897,15 @@ entities: - type: Transform pos: 55.5,-55.5 parent: 2 - - uid: 18896 - components: - - type: Transform - pos: 26.5,-13.5 - parent: 2 - uid: 18908 components: - type: Transform pos: 38.5,-61.5 parent: 2 - - uid: 20753 + - uid: 21805 components: - type: Transform - pos: -35.5,-57.5 + pos: 40.5,22.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: @@ -54464,6 +60914,11 @@ entities: - type: Transform pos: 26.5,-41.5 parent: 2 + - uid: 21216 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 - proto: ClosetSteelBase entities: - uid: 2309 @@ -54471,37 +60926,22 @@ entities: - type: Transform pos: 50.5,-35.5 parent: 2 - - uid: 8158 - components: - - type: Transform - pos: -49.5,-46.5 - parent: 2 - uid: 11559 components: - type: Transform pos: 40.5,-52.5 parent: 2 - - uid: 20754 + - uid: 12931 components: - type: Transform - pos: -36.5,-57.5 + pos: -59.5,-31.5 parent: 2 - proto: ClosetToolFilled entities: - - uid: 1125 + - uid: 8408 components: - type: Transform - pos: 17.5,-18.5 - parent: 2 - - uid: 9128 - components: - - type: Transform - pos: 37.5,12.5 - parent: 2 - - uid: 17538 - components: - - type: Transform - pos: 16.5,1.5 + pos: 12.5,-2.5 parent: 2 - proto: ClothingBackpackDuffel entities: @@ -54510,19 +60950,12 @@ entities: - type: Transform pos: 52.586926,-35.256138 parent: 2 -- proto: ClothingBackpackDuffelCargo +- proto: ClothingBackpackDuffelAtmospherics entities: - - uid: 979 + - uid: 2267 components: - type: Transform - pos: 0.116775274,20.693357 - parent: 2 -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 3048 - components: - - type: Transform - pos: -44.468704,-47.20753 + pos: 12.441172,-10.7048235 parent: 2 - type: GroupExamine group: @@ -54543,10 +60976,19 @@ entities: priority: 0 component: ClothingSpeedModifier title: null - - uid: 5746 +- proto: ClothingBackpackDuffelCargo + entities: + - uid: 979 components: - type: Transform - pos: -49.51163,-33.29816 + pos: 0.116775274,20.693357 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 14163 + components: + - type: Transform + pos: -50.48092,-44.354164 parent: 2 - type: GroupExamine group: @@ -54605,14 +61047,19 @@ entities: - uid: 9362 components: - type: Transform - pos: 29.389355,3.5471458 + pos: 25.580952,-0.3524922 parent: 2 - proto: ClothingBeltMedicalEMTFilled entities: - - uid: 4802 + - uid: 1293 components: - type: Transform - pos: -32.60601,-27.341293 + pos: 18.387218,3.4808908 + parent: 2 + - uid: 12344 + components: + - type: Transform + pos: -28.528223,-21.415022 parent: 2 - proto: ClothingBeltPlantFilled entities: @@ -54647,31 +61094,19 @@ entities: - type: Transform pos: -11.6501,-13.9699955 parent: 2 - - uid: 5029 - components: - - type: Transform - pos: -26.470915,-18.3621 - parent: 2 -- proto: ClothingBeltUtilityFilled +- proto: ClothingEyesGlassesChemical entities: - - uid: 4776 + - uid: 15332 components: - type: Transform - pos: -34.898106,-53.323624 - parent: 2 -- proto: ClothingEyesGlassesGar - entities: - - uid: 7787 - components: - - type: Transform - pos: 17.508947,18.511362 + pos: -29.944489,-36.514187 parent: 2 - proto: ClothingEyesGlassesGarGiga entities: - - uid: 1753 + - uid: 2773 components: - type: Transform - pos: 9.0438595,6.568463 + pos: -30.43842,-63.914627 parent: 2 - proto: ClothingEyesGlassesMeson entities: @@ -54710,30 +61145,25 @@ entities: parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 20830 + - uid: 3621 components: - type: Transform - pos: -6.4632463,-14.56322 + pos: 7.5706596,-16.44566 parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: + - uid: 14105 + components: + - type: Transform + pos: -53.26527,-23.38064 + parent: 2 - uid: 18092 components: - type: Transform pos: 28.514162,-39.414745 parent: 2 - - uid: 18166 - components: - - type: Transform - pos: -40.472687,-34.309685 - parent: 2 - proto: ClothingHandsGlovesLatex entities: - - uid: 5185 - components: - - type: Transform - pos: -52.498062,-27.89957 - parent: 2 - uid: 6051 components: - type: Transform @@ -54744,40 +61174,31 @@ entities: - type: Transform pos: 22.49661,-58.714924 parent: 2 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 8204 + - uid: 14851 components: - type: Transform - pos: -52.470013,-41.035538 + pos: -45.437046,-23.20726 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 12947 + components: + - type: Transform + pos: -53.45067,-27.958363 parent: 2 - proto: ClothingHandsTacticalMaidGloves entities: - - uid: 1108 + - uid: 15742 components: - type: Transform - pos: 13.508534,-8.645821 + pos: -46.58147,-56.80421 parent: 2 - proto: ClothingHeadBandBotany entities: - - uid: 3798 + - uid: 21440 components: - type: Transform - pos: 6.5259585,-45.321552 - parent: 2 -- proto: ClothingHeadBandRed - entities: - - uid: 12352 - components: - - type: Transform - pos: -40.480824,-51.918766 - parent: 2 -- proto: ClothingHeadFishCap - entities: - - uid: 1271 - components: - - type: Transform - pos: 17.569733,18.70626 + pos: 6.9404736,-45.65364 parent: 2 - proto: ClothingHeadHatAnimalCat entities: @@ -54814,13 +61235,6 @@ entities: - type: Transform pos: 28.369284,-48.32308 parent: 2 -- proto: ClothingHeadHatBowlerHat - entities: - - uid: 15731 - components: - - type: Transform - pos: 22.72877,-40.145943 - parent: 2 - proto: ClothingHeadHatBrownFlatcap entities: - uid: 10989 @@ -54828,13 +61242,6 @@ entities: - type: Transform pos: 19.452253,-58.458893 parent: 2 -- proto: ClothingHeadHatBunny - entities: - - uid: 12331 - components: - - type: Transform - pos: 34.48958,41.4503 - parent: 2 - proto: ClothingHeadHatCargosoft entities: - uid: 8997 @@ -54861,48 +61268,11 @@ entities: - type: Transform pos: 31.329733,-77.7259 parent: 2 - - uid: 6850 - components: - - type: Transform - pos: 2.2315192,-19.537426 - parent: 2 - - uid: 7436 - components: - - type: Transform - pos: 2.4515443,-16.412426 - parent: 2 - uid: 7438 components: - type: Transform pos: 32.340652,-78.34091 parent: 2 - - uid: 7441 - components: - - type: Transform - pos: 2.1702943,-17.349926 - parent: 2 - - uid: 7447 - components: - - type: Transform - pos: 3.4202943,-16.224926 - parent: 2 - - uid: 11195 - components: - - type: Transform - pos: 2.2015443,-18.396801 - parent: 2 - - uid: 17539 - components: - - type: Transform - pos: 17.14647,7.379371 - parent: 2 -- proto: ClothingHeadHatCowboyBrown - entities: - - uid: 8804 - components: - - type: Transform - pos: -38.56931,-55.278778 - parent: 2 - proto: ClothingHeadHatFancyCrown entities: - uid: 20254 @@ -54931,19 +61301,12 @@ entities: - type: Transform pos: 7.316777,-31.202648 parent: 2 -- proto: ClothingHeadHatPaper - entities: - - uid: 17875 - components: - - type: Transform - pos: 6.8421288,-51.23095 - parent: 2 - proto: ClothingHeadHatParamedicsoft entities: - - uid: 4803 + - uid: 7155 components: - type: Transform - pos: -28.478964,-28.414955 + pos: -27.565483,-26.458542 parent: 2 - proto: ClothingHeadHatPartyWaterCup entities: @@ -54973,55 +61336,17 @@ entities: - type: Transform pos: -9.481663,24.584553 parent: 2 - - uid: 3276 - components: - - type: Transform - pos: -22.575134,17.796028 - parent: 2 - - uid: 13801 - components: - - type: Transform - pos: -22.502218,17.702213 - parent: 2 - - uid: 20261 - components: - - type: Transform - pos: -26.338486,12.810534 - parent: 2 - - uid: 20263 - components: - - type: Transform - pos: -30.243408,11.509218 - parent: 2 - - uid: 20266 - components: - - type: Transform - pos: -21.5342,10.806937 - parent: 2 - uid: 20267 components: - type: Transform pos: -27.292542,6.769797 parent: 2 - - uid: 20271 +- proto: ClothingHeadHatStrawHat + entities: + - uid: 1731 components: - type: Transform - pos: -20.665579,5.6604877 - parent: 2 - - uid: 20272 - components: - - type: Transform - pos: -20.217663,5.4624333 - parent: 2 - - uid: 20274 - components: - - type: Transform - pos: -21.232481,-5.3243594 - parent: 2 - - uid: 20276 - components: - - type: Transform - pos: -18.31642,-56.260468 + pos: 7.627987,-57.35527 parent: 2 - proto: ClothingHeadHatSyndie entities: @@ -55032,10 +61357,10 @@ entities: parent: 2 - proto: ClothingHeadHatTacticalMaidHeadband entities: - - uid: 2059 + - uid: 16937 components: - type: Transform - pos: 13.206302,-8.260137 + pos: -46.77624,-56.27259 parent: 2 - proto: ClothingHeadHatWarden entities: @@ -55065,29 +61390,32 @@ entities: - type: Transform pos: 71.56463,-77.43635 parent: 2 -- proto: ClothingMaskBee - entities: - - uid: 5635 - components: - - type: Transform - pos: 19.479597,5.590736 - parent: 2 - proto: ClothingMaskBreath entities: - - uid: 1763 - components: - - type: Transform - pos: -52.6127,-32.884636 - parent: 2 - uid: 4372 components: - type: Transform pos: 38.57368,-27.453815 parent: 2 - - uid: 4760 + - uid: 12380 components: - type: Transform - pos: -26.615105,-25.489788 + pos: -26.402035,-21.70669 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: -45.364094,-22.894545 + parent: 2 + - uid: 15155 + components: + - type: Transform + pos: 2.9914923,-55.272697 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: 3.1165543,-55.522873 parent: 2 - proto: ClothingMaskFox entities: @@ -55105,17 +61433,17 @@ entities: parent: 2 - proto: ClothingMaskWeldingGas entities: - - uid: 6300 + - uid: 22698 components: - type: Transform - pos: 41.490192,-27.507837 + pos: 41.5,-27.5 parent: 2 - proto: ClothingNeckBling entities: - - uid: 13191 + - uid: 2518 components: - type: Transform - pos: 9.609975,6.595586 + pos: -28.53385,-62.910625 parent: 2 - proto: ClothingNeckCloakAce entities: @@ -55124,13 +61452,6 @@ entities: - type: Transform pos: 47.501015,-87.459625 parent: 2 -- proto: ClothingNeckCloakAdmin - entities: - - uid: 19975 - components: - - type: Transform - pos: 61.5,-78.5 - parent: 2 - proto: ClothingNeckCloakAro entities: - uid: 16222 @@ -55150,14 +61471,14 @@ entities: - uid: 2876 components: - type: Transform - pos: 17.536743,-16.434425 + pos: 45.549652,7.560146 parent: 2 - proto: ClothingNeckCloakLesbian entities: - - uid: 2118 + - uid: 4815 components: - type: Transform - pos: 29.529152,28.479647 + pos: -30.482735,-54.52887 parent: 2 - proto: ClothingNeckCloakMoth entities: @@ -55187,19 +61508,19 @@ entities: - type: Transform pos: -17.641726,30.389639 parent: 2 -- proto: ClothingNeckScarfStripedZebra +- proto: ClothingNeckScarfStripedGreen entities: - - uid: 9275 + - uid: 13915 components: - type: Transform - pos: 19.523642,-13.4389515 + pos: 27.65064,-12.475961 parent: 2 - proto: ClothingOuterArmorRiot entities: - uid: 6250 components: - type: Transform - pos: -21.230423,6.4757457 + pos: -20.638523,5.589691 parent: 2 - type: GroupExamine group: @@ -55233,7 +61554,14 @@ entities: - uid: 6885 components: - type: Transform - pos: -21.397089,6.652952 + pos: -20.471773,5.495876 + parent: 2 +- proto: ClothingOuterCoatLabChem + entities: + - uid: 15303 + components: + - type: Transform + pos: -36.619774,-46.301968 parent: 2 - proto: ClothingOuterCoatLabOpened entities: @@ -55302,77 +61630,13 @@ entities: priority: 0 component: Armor title: null -- proto: ClothingOuterPonchoClassic - entities: - - uid: 15742 - components: - - type: Transform - pos: -38.4234,-55.393444 - parent: 2 - proto: ClothingOuterSanta entities: - - uid: 11183 - components: - - type: Transform - pos: -22.46055,17.660517 - parent: 2 - - uid: 14571 - components: - - type: Transform - pos: -22.377218,17.597973 - parent: 2 - - uid: 20262 - components: - - type: Transform - pos: -26.534176,12.553513 - parent: 2 - - uid: 20264 - components: - - type: Transform - pos: -30.587158,11.519642 - parent: 2 - - uid: 20265 - components: - - type: Transform - pos: -21.632044,10.782459 - parent: 2 - uid: 20268 components: - type: Transform pos: -27.584208,6.675982 parent: 2 - - uid: 20269 - components: - - type: Transform - pos: -20.623913,5.8064227 - parent: 2 - - uid: 20270 - components: - - type: Transform - pos: -20.342663,5.6604877 - parent: 2 - - uid: 20273 - components: - - type: Transform - pos: -21.669981,-5.3452077 - parent: 2 - - uid: 20275 - components: - - type: Transform - pos: -18.358086,-56.42725 - parent: 2 -- proto: ClothingOuterSuitEmergency - entities: - - uid: 7671 - components: - - type: Transform - pos: 29.480768,19.627275 - parent: 2 - - uid: 20675 - components: - - type: Transform - pos: -35.53648,11.655997 - parent: 2 - proto: ClothingOuterWinterBar entities: - uid: 7386 @@ -55382,24 +61646,24 @@ entities: parent: 2 - proto: ClothingOuterWinterChem entities: - - uid: 14147 + - uid: 15305 components: - type: Transform - pos: -34.40282,-41.34545 + pos: -36.38007,-46.343662 parent: 2 - proto: ClothingOuterWinterColorBlue entities: - - uid: 5082 + - uid: 12666 components: - type: Transform - pos: -36.32764,-20.24317 + pos: -44.511585,-39.395977 parent: 2 -- proto: ClothingOuterWinterPara +- proto: ClothingOuterWinterEngi entities: - - uid: 4805 + - uid: 22470 components: - type: Transform - pos: -27.59449,-28.370361 + pos: 19.54724,-15.513248 parent: 2 - proto: ClothingOuterWinterSci entities: @@ -55417,22 +61681,15 @@ entities: parent: 2 - proto: ClothingShoesBootsMag entities: - - uid: 11168 + - uid: 12737 components: - type: Transform - pos: -3.745983,-51.43929 + pos: 0.37740684,-55.29615 parent: 2 - - uid: 11169 + - uid: 12741 components: - type: Transform - pos: -3.4124844,-51.220387 - parent: 2 -- proto: ClothingShoesHighheelBoots - entities: - - uid: 1257 - components: - - type: Transform - pos: 17.446417,18.37585 + pos: 0.5441561,-55.410812 parent: 2 - proto: ClothingShoeSlippersDuck entities: @@ -55443,10 +61700,10 @@ entities: parent: 2 - proto: ClothingUnderSocksCoder entities: - - uid: 7005 + - uid: 6471 components: - type: Transform - pos: 25.468887,-11.482896 + pos: 27.539923,-8.522268 parent: 2 - proto: ClothingUniformColorRainbow entities: @@ -55455,26 +61712,12 @@ entities: - type: Transform pos: 38.429108,-59.892277 parent: 2 -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 3809 - components: - - type: Transform - pos: 6.641757,-39.371193 - parent: 2 -- proto: ClothingUniformJumpskirtLawyerBlue - entities: - - uid: 9258 - components: - - type: Transform - pos: 6.623013,-41.324974 - parent: 2 - proto: ClothingUniformJumpskirtTacticalMaid entities: - - uid: 18078 + - uid: 12371 components: - type: Transform - pos: 13.758658,-8.364376 + pos: -46.279236,-56.303864 parent: 2 - proto: ClothingUniformJumpskirtYellowTurtleneckDress entities: @@ -55483,20 +61726,6 @@ entities: - type: Transform pos: 19.530016,-58.5476 parent: 2 -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 3808 - components: - - type: Transform - pos: 6.339525,-39.246105 - parent: 2 -- proto: ClothingUniformJumpsuitLawyerBlue - entities: - - uid: 9251 - components: - - type: Transform - pos: 6.3312016,-41.26243 - parent: 2 - proto: ClothingUniformJumpsuitReporter entities: - uid: 3942 @@ -55517,23 +61746,12 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,9.5 parent: 2 - - uid: 15571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-0.5 - parent: 2 - uid: 15851 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,8.5 parent: 2 - - uid: 17545 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 2 - uid: 17546 components: - type: Transform @@ -55546,6 +61764,11 @@ entities: parent: 2 - proto: Cobweb2 entities: + - uid: 10737 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 - uid: 11858 components: - type: Transform @@ -55556,6 +61779,19 @@ entities: - type: Transform pos: 28.5,-48.5 parent: 2 + - uid: 21354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-16.5 + parent: 2 +- proto: CocoaSeeds + entities: + - uid: 12439 + components: + - type: Transform + pos: 18.38787,8.735438 + parent: 2 - proto: ComfyChair entities: - uid: 725 @@ -55570,21 +61806,59 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-22.5 parent: 2 - - uid: 1702 + - uid: 1335 components: - type: Transform - pos: 10.5,-63.5 + pos: -30.5,-51.5 parent: 2 - - uid: 1731 + - uid: 1336 + components: + - type: Transform + pos: -29.5,-51.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -29.5,-54.5 + parent: 2 + - uid: 1348 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-65.5 + pos: -29.5,-53.5 parent: 2 - - uid: 2305 + - uid: 1354 components: - type: Transform - pos: 10.5,-11.5 + rot: 3.141592653589793 rad + pos: -30.5,-53.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -27.5,-44.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-56.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-65.5 parent: 2 - uid: 3470 components: @@ -55626,17 +61900,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-31.5 parent: 2 - - uid: 3621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 2 - - uid: 3723 - components: - - type: Transform - pos: 0.5,-43.5 - parent: 2 - uid: 3736 components: - type: Transform @@ -55654,29 +61917,50 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-38.5 parent: 2 - - uid: 4057 + - uid: 3892 + components: + - type: Transform + pos: -35.5,-79.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-56.5 + parent: 2 + - uid: 4964 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-50.5 + pos: -30.5,-46.5 parent: 2 - - uid: 4152 + - uid: 4979 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-45.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-46.5 + parent: 2 + - uid: 5084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-50.5 + pos: -30.5,-45.5 parent: 2 - - uid: 4154 + - uid: 5122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-50.5 - parent: 2 - - uid: 4508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-50.5 + pos: -28.5,-44.5 parent: 2 - uid: 5718 components: @@ -55684,37 +61968,58 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-34.5 parent: 2 - - uid: 5862 + - uid: 5869 components: - type: Transform - pos: 30.5,25.5 + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 parent: 2 - - uid: 5868 - components: - - type: Transform - pos: 30.5,28.5 - parent: 2 - - uid: 5895 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 7129 - components: - - type: Transform - pos: 29.5,28.5 - parent: 2 - - uid: 7131 + - uid: 6044 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,26.5 + pos: -9.5,-60.5 parent: 2 - - uid: 7133 + - uid: 6046 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,26.5 + pos: -9.5,-65.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-72.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-47.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-52.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-53.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-53.5 parent: 2 - uid: 7387 components: @@ -55722,22 +62027,21 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,7.5 parent: 2 - - uid: 7599 + - uid: 7576 components: - type: Transform - pos: -9.5,-60.5 + pos: -0.5,-51.5 parent: 2 - - uid: 7602 + - uid: 7854 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-62.5 + pos: 19.5,-11.5 parent: 2 - - uid: 8041 + - uid: 7856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-46.5 + pos: -9.5,-63.5 parent: 2 - uid: 8094 components: @@ -55745,16 +62049,40 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,7.5 parent: 2 - - uid: 8691 + - uid: 8738 components: - type: Transform - pos: 30.5,42.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 2 - - uid: 10145 + - uid: 8763 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 9077 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-46.5 + pos: 2.5,-87.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-55.5 parent: 2 - uid: 10980 components: @@ -55789,39 +62117,49 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-26.5 parent: 2 - - uid: 11916 + - uid: 12919 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-56.5 + pos: -58.5,-28.5 parent: 2 - - uid: 12789 - components: - - type: Transform - pos: 8.5,-54.5 - parent: 2 - - uid: 12791 - components: - - type: Transform - pos: 7.5,-54.5 - parent: 2 - - uid: 13261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-56.5 - parent: 2 - - uid: 15920 + - uid: 13245 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-13.5 + pos: 19.5,-16.5 parent: 2 - - uid: 16634 + - uid: 14569 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 14955 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 15043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-52.5 + parent: 2 + - uid: 16009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-45.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 20842 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-13.5 + pos: 15.5,-62.5 parent: 2 - proto: CommandmentCircuitBoard entities: @@ -55835,7 +62173,7 @@ entities: - uid: 13265 components: - type: Transform - pos: 10.553459,-17.34669 + pos: 8.540823,-14.37939 parent: 2 - proto: ComputerAlert entities: @@ -55885,38 +62223,43 @@ entities: parent: 2 - proto: computerBodyScanner entities: - - uid: 265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-34.5 - parent: 2 - uid: 453 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,10.5 parent: 2 - - uid: 2847 + - uid: 14114 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-26.5 + pos: -50.5,-45.5 parent: 2 - - uid: 13024 + - uid: 14115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-48.5 + rot: -1.5707963267948966 rad + pos: -42.5,-22.5 parent: 2 - proto: ComputerBroken entities: + - uid: 613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-84.5 + parent: 2 - uid: 2188 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 + - uid: 6515 + components: + - type: Transform + pos: 1.5,-83.5 + parent: 2 - uid: 7079 components: - type: Transform @@ -55928,10 +62271,16 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-88.5 parent: 2 - - uid: 10690 + - uid: 14174 components: - type: Transform - pos: -33.5,-48.5 + pos: -42.5,-43.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-46.5 parent: 2 - uid: 16455 components: @@ -55992,12 +62341,6 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 4771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-27.5 - parent: 2 - uid: 6213 components: - type: Transform @@ -56010,11 +62353,16 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-46.5 parent: 2 - - uid: 8179 + - uid: 9435 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 13079 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-35.5 + pos: -47.5,-21.5 parent: 2 - uid: 13891 components: @@ -56022,6 +62370,12 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,3.5 parent: 2 + - uid: 15785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,3.5 + parent: 2 - uid: 20606 components: - type: Transform @@ -56097,17 +62451,10 @@ entities: parent: 2 - proto: ComputerMedicalRecords entities: - - uid: 8465 + - uid: 10723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-36.5 - parent: 2 - - uid: 10149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-43.5 + pos: -28.5,-24.5 parent: 2 - proto: ComputerPowerMonitoring entities: @@ -56127,12 +62474,6 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 6494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,1.5 - parent: 2 - uid: 8518 components: - type: Transform @@ -56156,6 +62497,12 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-18.5 parent: 2 + - uid: 15885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-60.5 + parent: 2 - proto: ComputerRadar entities: - uid: 5026 @@ -56164,10 +62511,10 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-57.5 parent: 2 - - uid: 5425 + - uid: 22124 components: - type: Transform - pos: 18.5,31.5 + pos: 16.5,32.5 parent: 2 - proto: ComputerResearchAndDevelopment entities: @@ -56211,7 +62558,7 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 4838 + - uid: 21998 components: - type: Transform rot: -1.5707963267948966 rad @@ -56248,20 +62595,14 @@ entities: - type: Transform pos: -29.5,24.5 parent: 2 - - uid: 10430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-53.5 - parent: 2 -- proto: ComputerStationRecords - entities: - - uid: 4797 + - uid: 16430 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-26.5 + pos: -56.5,-60.5 parent: 2 +- proto: ComputerStationRecords + entities: - uid: 9730 components: - type: Transform @@ -56292,22 +62633,22 @@ entities: parent: 2 - proto: ComputerTelevision entities: - - uid: 1043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-44.5 - parent: 2 - uid: 7593 components: - type: Transform pos: -11.5,-46.5 parent: 2 - - uid: 8136 + - uid: 12920 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-46.5 + pos: -59.5,-28.5 + parent: 2 + - uid: 15927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-4.5 parent: 2 - uid: 17190 components: @@ -56378,6 +62719,12 @@ entities: - type: Transform pos: 6.5,28.5 parent: 2 + - uid: 4763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 2 - uid: 5314 components: - type: Transform @@ -56407,12 +62754,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - - uid: 8507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,21.5 - parent: 2 - uid: 9114 components: - type: Transform @@ -56431,6 +62772,18 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-58.5 parent: 2 + - uid: 11225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-36.5 + parent: 2 + - uid: 11226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-36.5 + parent: 2 - uid: 14292 components: - type: Transform @@ -56446,6 +62799,12 @@ entities: - type: Transform pos: 6.5,15.5 parent: 2 + - uid: 15071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-92.5 + parent: 2 - uid: 18127 components: - type: Transform @@ -56458,6 +62817,18 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-58.5 parent: 2 + - uid: 19238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-92.5 + parent: 2 + - uid: 21999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 - proto: CorporateCircuitBoard entities: - uid: 16463 @@ -56479,10 +62850,17 @@ entities: parent: 2 - proto: CrateCandles entities: - - uid: 583 + - uid: 10087 components: - type: Transform - pos: 39.5,-7.5 + pos: 35.5,-7.5 + parent: 2 +- proto: CrateChemistrySecure + entities: + - uid: 22540 + components: + - type: Transform + pos: -37.5,-37.5 parent: 2 - proto: CrateCoffin entities: @@ -56515,20 +62893,55 @@ entities: - type: Transform pos: -0.5,18.5 parent: 2 + - uid: 3634 + components: + - type: Transform + pos: 12.5,-63.5 + parent: 2 - uid: 4618 components: - type: Transform pos: 28.5,-37.5 parent: 2 - - uid: 7658 + - uid: 8133 components: - type: Transform - pos: 12.5,-64.5 + pos: -13.5,-94.5 parent: 2 - - uid: 7659 + - uid: 8140 components: - type: Transform - pos: 12.5,-65.5 + pos: -13.5,-95.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + pos: 5.5,-93.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 16869 + components: + - type: Transform + pos: 2.5,-92.5 + parent: 2 + - uid: 17178 + components: + - type: Transform + pos: -1.5,-93.5 parent: 2 - uid: 17457 components: @@ -56540,16 +62953,6 @@ entities: - type: Transform pos: 9.5,20.5 parent: 2 - - uid: 17536 - components: - - type: Transform - pos: 14.5,1.5 - parent: 2 - - uid: 17537 - components: - - type: Transform - pos: 14.5,2.5 - parent: 2 - uid: 18063 components: - type: Transform @@ -56560,6 +62963,11 @@ entities: - type: Transform pos: 5.5,18.5 parent: 2 + - uid: 18414 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 - uid: 18760 components: - type: Transform @@ -56580,6 +62988,31 @@ entities: - type: Transform pos: 72.5,-63.5 parent: 2 + - uid: 19211 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 2 + - uid: 21079 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 2 + - uid: 22316 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 22317 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 22635 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 - proto: CrateEngineeringAMEJar entities: - uid: 19547 @@ -56601,25 +63034,25 @@ entities: - type: Transform pos: 28.5,-51.5 parent: 2 -- proto: CrateEngineeringShuttle - entities: - - uid: 14822 + - uid: 9382 components: - type: Transform - pos: -33.5,-55.5 + pos: 5.5,-19.5 + parent: 2 +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 9601 + components: + - type: Transform + pos: 25.5,19.5 parent: 2 - proto: CrateEngineeringSolar entities: - - uid: 1701 + - uid: 4024 components: - type: Transform pos: 26.5,-16.5 parent: 2 - - uid: 3556 - components: - - type: Transform - pos: -45.5,-55.5 - parent: 2 - uid: 5322 components: - type: Transform @@ -56630,6 +63063,11 @@ entities: - type: Transform pos: -9.5,-13.5 parent: 2 + - uid: 21617 + components: + - type: Transform + pos: -56.5,-58.5 + parent: 2 - proto: CrateFilledSpawner entities: - uid: 5411 @@ -56647,10 +63085,10 @@ entities: - type: Transform pos: 48.5,-13.5 parent: 2 - - uid: 11267 + - uid: 15729 components: - type: Transform - pos: -19.5,-16.5 + pos: 5.5,-58.5 parent: 2 - uid: 17448 components: @@ -56725,10 +63163,20 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 18543 + - uid: 12674 components: - type: Transform - pos: -26.5,-22.5 + pos: -51.5,-36.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + pos: -52.5,-36.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + pos: -42.5,-39.5 parent: 2 - proto: CrateMaterialPlasma entities: @@ -56744,10 +63192,10 @@ entities: parent: 2 - proto: CrateMedicalScrubs entities: - - uid: 12724 + - uid: 7892 components: - type: Transform - pos: -45.5,-38.5 + pos: -40.5,-24.5 parent: 2 - proto: CrateMedicalSurgery entities: @@ -56756,10 +63204,10 @@ entities: - type: Transform pos: 37.5,-28.5 parent: 2 - - uid: 5518 + - uid: 14780 components: - type: Transform - pos: -46.5,-31.5 + pos: -45.5,-25.5 parent: 2 - proto: CrateNPCHamlet entities: @@ -56810,22 +63258,27 @@ entities: parent: 2 - proto: CrateServiceJanitorialSupplies entities: - - uid: 9408 + - uid: 4506 components: - type: Transform - pos: 29.5,0.5 + pos: 28.5,-0.5 parent: 2 -- proto: CrateSurgery +- proto: CrateTrashCart entities: - - uid: 1779 + - uid: 757 components: - type: Transform - pos: -49.5,-27.5 + pos: 24.5,-2.5 parent: 2 - - uid: 5643 + - uid: 9291 components: - type: Transform - pos: -49.5,-33.5 + pos: -33.5,-5.5 + parent: 2 + - uid: 22407 + components: + - type: Transform + pos: 23.5,15.5 parent: 2 - proto: CrateTrashCartFilled entities: @@ -56834,17 +63287,10 @@ entities: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 9427 + - uid: 13309 components: - type: Transform - pos: 25.5,5.5 - parent: 2 -- proto: CrateTrashCartJani - entities: - - uid: 1041 - components: - - type: Transform - pos: 24.5,5.5 + pos: -46.5,-50.5 parent: 2 - proto: CrayonBox entities: @@ -56895,10 +63341,17 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 1255 + - uid: 17648 components: - type: Transform - pos: 20.5,1.5 + pos: -55.5,-21.5 + parent: 2 +- proto: CrowbarGreen + entities: + - uid: 8024 + components: + - type: Transform + pos: 12.561003,-94.61276 parent: 2 - proto: CrowbarYellow entities: @@ -56909,10 +63362,10 @@ entities: parent: 2 - proto: CryogenicSleepUnit entities: - - uid: 10414 + - uid: 3206 components: - type: Transform - pos: -34.5,-5.5 + pos: -35.5,-5.5 parent: 2 - proto: CryogenicSleepUnitSpawner entities: @@ -56948,27 +63401,27 @@ entities: parent: 2 - proto: CryoPod entities: - - uid: 4976 + - uid: 7008 components: - type: Transform - pos: -35.5,-20.5 + pos: -44.5,-36.5 parent: 2 - - uid: 4977 + - uid: 11993 components: - type: Transform - pos: -33.5,-20.5 + pos: -42.5,-36.5 parent: 2 - proto: CryoxadoneBeakerSmall entities: - - uid: 4956 + - uid: 12678 components: - type: Transform - pos: -32.588287,-20.351446 + pos: -43.609703,-39.262962 parent: 2 - - uid: 4959 + - uid: 12679 components: - type: Transform - pos: -32.359005,-20.205511 + pos: -43.36284,-39.375145 parent: 2 - proto: CultAltarSpawner entities: @@ -56984,10 +63437,9 @@ entities: - type: Transform pos: 38.5,-5.5 parent: 2 - - uid: 3197 + - uid: 5860 components: - type: Transform - rot: 3.141592653589793 rad pos: 7.5,-41.5 parent: 2 - uid: 7295 @@ -57019,11 +63471,10 @@ entities: - type: Transform pos: -4.5,-26.5 parent: 2 - - uid: 15618 + - uid: 14090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-38.5 + pos: -52.5,-21.5 parent: 2 - proto: CurtainsCyanOpen entities: @@ -57035,15 +63486,10 @@ entities: parent: 2 - proto: CurtainsGreenOpen entities: - - uid: 4765 + - uid: 21439 components: - type: Transform - pos: -30.5,-46.5 - parent: 2 - - uid: 4914 - components: - - type: Transform - pos: -29.5,-44.5 + pos: 7.5,-45.5 parent: 2 - proto: CurtainsOrangeOpen entities: @@ -57062,11 +63508,27 @@ entities: parent: 2 - proto: CurtainsPurpleOpen entities: + - uid: 6139 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 - uid: 11353 components: - type: Transform pos: 26.5,-34.5 parent: 2 + - uid: 12857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-55.5 + parent: 2 - proto: CurtainsRedOpen entities: - uid: 1705 @@ -57092,15 +63554,22 @@ entities: - type: Transform pos: 30.5,11.5 parent: 2 - - uid: 20654 + - uid: 21820 components: - type: Transform - pos: 28.5,14.5 + pos: 27.5,9.5 parent: 2 - - uid: 20655 +- proto: CurtainsWhiteOpen + entities: + - uid: 16619 components: - type: Transform - pos: 29.5,14.5 + pos: 17.5,-10.5 + parent: 2 + - uid: 16620 + components: + - type: Transform + pos: 17.5,-9.5 parent: 2 - proto: d20Dice entities: @@ -57126,16 +63595,6 @@ entities: - type: Transform pos: -0.526502,23.57693 parent: 2 - - uid: 11291 - components: - - type: Transform - pos: 22.316435,-40.18328 - parent: 2 - - uid: 11292 - components: - - type: Transform - pos: 22.608246,-40.42303 - parent: 2 - uid: 17279 components: - type: Transform @@ -57153,35 +63612,6 @@ entities: - type: Transform pos: 7.4465623,-33.43011 parent: 2 -- proto: DefaultStationBeacon - entities: - - uid: 15751 - components: - - type: Transform - pos: 32.5,36.5 - parent: 2 - - type: NavMapBeacon - text: Docking Arm -- proto: DefaultStationBeaconAI - entities: - - uid: 5136 - components: - - type: Transform - pos: -61.5,-15.5 - parent: 2 - - type: NavMapBeacon - text: AI Upload - - type: WarpPoint - location: AI Upload - - uid: 19164 - components: - - type: Transform - pos: -61.5,-9.5 - parent: 2 - - type: NavMapBeacon - text: AI Power - - type: WarpPoint - location: AI Power - proto: DefaultStationBeaconAICore entities: - uid: 5150 @@ -57189,6 +63619,13 @@ entities: - type: Transform pos: -66.5,-12.5 parent: 2 +- proto: DefaultStationBeaconAIPower + entities: + - uid: 10751 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 - proto: DefaultStationBeaconAISatellite entities: - uid: 4927 @@ -57196,6 +63633,13 @@ entities: - type: Transform pos: -52.5,-12.5 parent: 2 +- proto: DefaultStationBeaconAIUpload + entities: + - uid: 10750 + components: + - type: Transform + pos: -61.5,-15.5 + parent: 2 - proto: DefaultStationBeaconAME entities: - uid: 4329 @@ -57219,10 +63663,10 @@ entities: parent: 2 - proto: DefaultStationBeaconArrivals entities: - - uid: 11766 + - uid: 20185 components: - type: Transform - pos: 1.5,-49.5 + pos: 1.5,-61.5 parent: 2 - proto: DefaultStationBeaconArtifactLab entities: @@ -57233,10 +63677,10 @@ entities: parent: 2 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 15717 + - uid: 12446 components: - type: Transform - pos: -1.5,-2.5 + pos: -0.5,-2.5 parent: 2 - proto: DefaultStationBeaconBar entities: @@ -57266,6 +63710,13 @@ entities: - type: Transform pos: -25.5,-9.5 parent: 2 +- proto: DefaultStationBeaconBrigMed + entities: + - uid: 10754 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 15722 @@ -57301,19 +63752,26 @@ entities: - type: Transform pos: 36.5,-14.5 parent: 2 -- proto: DefaultStationBeaconChemistry +- proto: DefaultStationBeaconClinic entities: - - uid: 15727 + - uid: 9509 components: - type: Transform - pos: -31.5,-35.5 + pos: 20.5,0.5 parent: 2 - proto: DefaultStationBeaconCMORoom entities: - - uid: 19163 + - uid: 21741 components: - type: Transform - pos: -41.5,-36.5 + pos: -50.5,-22.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 21739 + components: + - type: Transform + pos: -43.5,-37.5 parent: 2 - proto: DefaultStationBeaconCryosleep entities: @@ -57336,26 +63794,33 @@ entities: - type: Transform pos: 29.5,-56.5 parent: 2 -- proto: DefaultStationBeaconDorms +- proto: DefaultStationBeaconDockingArm entities: - - uid: 15729 + - uid: 15569 components: - type: Transform - pos: 6.5,-42.5 + pos: -33.5,-73.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 11067 + components: + - type: Transform + pos: 7.5,-42.5 parent: 2 - proto: DefaultStationBeaconEngineering entities: - - uid: 13157 + - uid: 7630 components: - type: Transform - pos: -8.5,-13.5 + pos: -10.5,-13.5 parent: 2 - proto: DefaultStationBeaconEscapePod entities: - - uid: 16430 + - uid: 22039 components: - type: Transform - pos: -41.5,-58.5 + pos: -36.5,12.5 parent: 2 - proto: DefaultStationBeaconEvac entities: @@ -57366,17 +63831,10 @@ entities: parent: 2 - proto: DefaultStationBeaconEVAStorage entities: - - uid: 19097 + - uid: 4222 components: - type: Transform - pos: -4.5,-54.5 - parent: 2 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 15752 - components: - - type: Transform - pos: 23.5,-9.5 + pos: -1.5,-56.5 parent: 2 - proto: DefaultStationBeaconHOPOffice entities: @@ -57394,10 +63852,10 @@ entities: parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 15755 + - uid: 21809 components: - type: Transform - pos: 28.5,2.5 + pos: 26.5,2.5 parent: 2 - proto: DefaultStationBeaconKitchen entities: @@ -57415,53 +63873,31 @@ entities: parent: 2 - proto: DefaultStationBeaconLibrary entities: - - uid: 15766 + - uid: 6173 components: - type: Transform - pos: 14.5,-37.5 + pos: 18.5,-41.5 parent: 2 - - uid: 15780 - components: - - type: Transform - pos: 22.5,-36.5 - parent: 2 - - type: NavMapBeacon - text: Reporter - - type: WarpPoint - location: Reporter - proto: DefaultStationBeaconMedbay entities: - - uid: 7722 - components: - - type: MetaData - name: station beacon - - type: Transform - pos: -32.5,-45.5 - parent: 2 - - type: NavMapBeacon - text: Psychologist - - uid: 15758 + - uid: 21744 components: - type: Transform - pos: -37.5,-24.5 + pos: -42.5,-30.5 parent: 2 - proto: DefaultStationBeaconMedical entities: - - uid: 18476 + - uid: 21745 components: - type: Transform - pos: -51.5,-43.5 + pos: -28.5,-30.5 parent: 2 - - type: NavMapBeacon - text: Virology - - type: WarpPoint - location: Virology - proto: DefaultStationBeaconMorgue entities: - - uid: 15759 + - uid: 22178 components: - type: Transform - pos: -41.5,-47.5 + pos: -47.5,-44.5 parent: 2 - proto: DefaultStationBeaconPermaBrig entities: @@ -57477,6 +63913,13 @@ entities: - type: Transform pos: -2.5,-21.5 parent: 2 +- proto: DefaultStationBeaconPsychology + entities: + - uid: 21746 + components: + - type: Transform + pos: -38.5,-53.5 + parent: 2 - proto: DefaultStationBeaconRDRoom entities: - uid: 3230 @@ -57484,6 +63927,13 @@ entities: - type: Transform pos: 27.5,-33.5 parent: 2 +- proto: DefaultStationBeaconReporter + entities: + - uid: 6283 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 2 - proto: DefaultStationBeaconRND entities: - uid: 15764 @@ -57514,15 +63964,6 @@ entities: parent: 2 - proto: DefaultStationBeaconSecurity entities: - - uid: 2354 - components: - - type: Transform - pos: -29.5,11.5 - parent: 2 - - type: NavMapBeacon - text: Brig Med - - type: WarpPoint - location: Brig Med - uid: 19161 components: - type: Transform @@ -57542,43 +63983,43 @@ entities: - type: Transform pos: -30.5,23.5 parent: 2 - - uid: 15747 - components: - - type: Transform - pos: -45.5,-54.5 - parent: 2 - uid: 15769 components: - type: Transform pos: 45.5,2.5 parent: 2 -- proto: DefaultStationBeaconSurgery - entities: - - uid: 16070 + - uid: 21605 components: - type: Transform - pos: -51.5,-30.5 + pos: -57.5,-59.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 21743 + components: + - type: Transform + pos: -43.5,-23.5 parent: 2 - proto: DefaultStationBeaconTechVault entities: - - uid: 10240 + - uid: 9886 components: - type: Transform - pos: 14.5,-18.5 + pos: 5.5,-17.5 parent: 2 - proto: DefaultStationBeaconTEG entities: - - uid: 1249 + - uid: 6506 components: - type: Transform - pos: 0.5,-8.5 + pos: -0.5,-9.5 parent: 2 - proto: DefaultStationBeaconTelecoms entities: - - uid: 15771 + - uid: 21622 components: - type: Transform - pos: 21.5,1.5 + pos: 13.5,-18.5 parent: 2 - proto: DefaultStationBeaconToolRoom entities: @@ -57589,10 +64030,10 @@ entities: parent: 2 - proto: DefaultStationBeaconVault entities: - - uid: 15774 + - uid: 4856 components: - type: Transform - pos: 9.5,4.5 + pos: -29.5,-61.5 parent: 2 - proto: DefaultStationBeaconWardensOffice entities: @@ -57608,16 +64049,22 @@ entities: - type: Transform pos: -30.5,12.5 parent: 2 - - uid: 7793 + - uid: 5482 components: - type: Transform - pos: -46.5,-29.5 + pos: -29.5,-23.5 parent: 2 - - uid: 8615 + - uid: 6563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-26.5 + rot: 3.141592653589793 rad + pos: -26.5,-33.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-28.5 parent: 2 - uid: 9365 components: @@ -57636,29 +64083,27 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-23.5 parent: 2 - - uid: 15927 + - uid: 21976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-23.5 + pos: 20.5,4.5 parent: 2 - - uid: 20143 + - uid: 22287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-34.5 + pos: 3.5,-46.5 parent: 2 - proto: DeployableBarrier entities: - - uid: 664 + - uid: 1413 components: - type: Transform - pos: -29.5,-1.5 + pos: -30.5,-0.5 parent: 2 - - uid: 666 + - uid: 2047 components: - type: Transform - pos: -28.5,-1.5 + pos: -30.5,-1.5 parent: 2 - proto: DeskBell entities: @@ -57672,6 +64117,16 @@ entities: - type: Transform pos: -19.44472,-2.4078405 parent: 2 + - uid: 2415 + components: + - type: Transform + pos: -29.620085,-26.463236 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: -27.371931,-33.501823 + parent: 2 - uid: 3445 components: - type: Transform @@ -57699,8 +64154,7 @@ entities: - uid: 3511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.46949,-0.30218017 + pos: 24.710743,0.20568168 parent: 2 - uid: 5405 components: @@ -57714,23 +64168,13 @@ entities: parent: 2 - proto: DiseaseDiagnoser entities: - - uid: 8222 + - uid: 12945 components: - type: Transform - pos: -49.5,-40.5 + pos: -55.5,-27.5 parent: 2 - proto: DiseaseSwab entities: - - uid: 7191 - components: - - type: Transform - pos: -52.67026,-41.73423 - parent: 2 - - uid: 7957 - components: - - type: Transform - pos: -52.628574,-41.94271 - parent: 2 - uid: 17702 components: - type: Transform @@ -57753,11 +64197,34 @@ entities: parent: 2 - proto: DisposalBend entities: - - uid: 2957 + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,3.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-41.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-60.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 3894 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-22.5 + pos: 9.5,-21.5 parent: 2 - uid: 3899 components: @@ -57770,6 +64237,12 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-16.5 parent: 2 + - uid: 4171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 2 - uid: 4264 components: - type: Transform @@ -57781,24 +64254,12 @@ entities: - type: Transform pos: -8.5,-34.5 parent: 2 - - uid: 4456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-30.5 - parent: 2 - uid: 4709 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-37.5 parent: 2 - - uid: 4846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-25.5 - parent: 2 - uid: 4876 components: - type: Transform @@ -57840,16 +64301,20 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,17.5 parent: 2 + - uid: 5874 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 - uid: 6298 components: - type: Transform pos: 35.5,-18.5 parent: 2 - - uid: 6567 + - uid: 6647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-23.5 + pos: -39.5,-12.5 parent: 2 - uid: 6824 components: @@ -57857,33 +64322,22 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-46.5 parent: 2 - - uid: 6855 + - uid: 6845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-29.5 - parent: 2 - - uid: 7174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 + rot: -1.5707963267948966 rad + pos: 15.5,-43.5 parent: 2 - uid: 7231 components: - type: Transform pos: -24.5,-42.5 parent: 2 - - uid: 7672 + - uid: 7901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-34.5 - parent: 2 - - uid: 8092 - components: - - type: Transform - pos: 16.5,8.5 + rot: -1.5707963267948966 rad + pos: 32.5,5.5 parent: 2 - uid: 8095 components: @@ -57891,12 +64345,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-21.5 parent: 2 - - uid: 8391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-47.5 - parent: 2 - uid: 9892 components: - type: Transform @@ -57927,17 +64375,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-55.5 parent: 2 - - uid: 11067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-41.5 - parent: 2 - - uid: 11096 - components: - - type: Transform - pos: 24.5,-43.5 - parent: 2 - uid: 11129 components: - type: Transform @@ -57961,18 +64398,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-42.5 parent: 2 - - uid: 11154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-58.5 - parent: 2 - - uid: 11437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 2 - uid: 12156 components: - type: Transform @@ -57996,75 +64421,28 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-0.5 parent: 2 - - uid: 12196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-66.5 - parent: 2 - uid: 12218 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - uid: 12230 - components: - - type: Transform - pos: -35.5,-22.5 - parent: 2 - uid: 12278 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-42.5 parent: 2 - - uid: 12287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 2 - uid: 12325 components: - type: Transform pos: 36.5,-25.5 parent: 2 - - uid: 13025 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-43.5 - parent: 2 - - uid: 13055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-43.5 - parent: 2 - uid: 13070 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,10.5 parent: 2 - - uid: 13124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-48.5 - parent: 2 - - uid: 13125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-48.5 - parent: 2 - - uid: 13260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 2 - uid: 14594 components: - type: Transform @@ -58082,27 +64460,61 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-39.5 parent: 2 + - uid: 14761 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-36.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 - uid: 15686 components: - type: Transform pos: 32.5,-20.5 parent: 2 - - uid: 15940 + - uid: 15735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-25.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-32.5 + parent: 2 + - uid: 15759 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-56.5 + pos: -40.5,-32.5 parent: 2 - - uid: 16370 + - uid: 15760 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - uid: 15852 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-16.5 - parent: 2 - - uid: 16371 - components: - - type: Transform - pos: -38.5,-12.5 + pos: -35.5,-28.5 parent: 2 - uid: 17010 components: @@ -58155,23 +64567,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-30.5 parent: 2 - - uid: 18550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 2 - - uid: 18573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-36.5 - parent: 2 - - uid: 18622 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 2 - uid: 18649 components: - type: Transform @@ -58184,11 +64579,11 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 - - uid: 18856 + - uid: 20284 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-37.5 + pos: -27.5,-34.5 parent: 2 - uid: 20308 components: @@ -58264,19 +64659,55 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-54.5 parent: 2 - - uid: 20373 + - uid: 20755 components: - type: Transform - pos: 31.5,-3.5 + rot: 1.5707963267948966 rad + pos: 25.5,7.5 + parent: 2 + - uid: 20832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-63.5 + parent: 2 + - uid: 20835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-63.5 + parent: 2 + - uid: 21356 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 22555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-38.5 parent: 2 - proto: DisposalJunction entities: + - uid: 2526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-51.5 + parent: 2 - uid: 3213 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-28.5 parent: 2 + - uid: 4345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 - uid: 4465 components: - type: Transform @@ -58299,11 +64730,23 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-25.5 parent: 2 + - uid: 4996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 - uid: 5447 components: - type: Transform pos: 11.5,17.5 parent: 2 + - uid: 6898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-43.5 + parent: 2 - uid: 6916 components: - type: Transform @@ -58316,10 +64759,27 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-21.5 parent: 2 - - uid: 9336 + - uid: 7790 components: - type: Transform - pos: -23.5,-38.5 + rot: 1.5707963267948966 rad + pos: -28.5,-31.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 parent: 2 - uid: 10307 components: @@ -58327,6 +64787,12 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-21.5 parent: 2 + - uid: 10757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-47.5 + parent: 2 - uid: 11056 components: - type: Transform @@ -58338,11 +64804,6 @@ entities: - type: Transform pos: 48.5,-37.5 parent: 2 - - uid: 11071 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 2 - uid: 11150 components: - type: Transform @@ -58360,23 +64821,17 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-21.5 parent: 2 - - uid: 12175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,8.5 - parent: 2 - - uid: 12229 + - uid: 15364 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-30.5 + pos: -25.5,-31.5 parent: 2 - - uid: 13036 + - uid: 15609 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-43.5 + pos: -41.5,-31.5 parent: 2 - uid: 20299 components: @@ -58391,6 +64846,11 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-48.5 parent: 2 + - uid: 3550 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 - uid: 3914 components: - type: Transform @@ -58412,11 +64872,10 @@ entities: - type: Transform pos: 45.5,-16.5 parent: 2 - - uid: 8090 + - uid: 7894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,2.5 + pos: 32.5,19.5 parent: 2 - uid: 8093 components: @@ -58442,12 +64901,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-47.5 parent: 2 - - uid: 11109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-43.5 - parent: 2 - uid: 11149 components: - type: Transform @@ -58466,23 +64919,23 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-41.5 parent: 2 - - uid: 12195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-58.5 - parent: 2 - - uid: 12217 + - uid: 13780 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-30.5 + pos: -32.5,-41.5 parent: 2 - - uid: 12232 + - uid: 15369 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-30.5 + pos: -27.5,-31.5 + parent: 2 + - uid: 15574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-31.5 parent: 2 - uid: 18098 components: @@ -58504,16 +64957,36 @@ entities: parent: 2 - proto: DisposalPipe entities: + - uid: 13 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 - uid: 344 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-55.5 parent: 2 - - uid: 482 + - uid: 374 components: - type: Transform - pos: 10.5,-54.5 + pos: 27.5,4.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -39.5,-13.5 parent: 2 - uid: 819 components: @@ -58521,17 +64994,52 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-51.5 parent: 2 + - uid: 866 + components: + - type: Transform + pos: 24.5,-41.5 + parent: 2 + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-33.5 + parent: 2 - uid: 1028 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 - - uid: 1354 + - uid: 1250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-25.5 + rot: 1.5707963267948966 rad + pos: -6.5,-63.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-51.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-41.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,19.5 parent: 2 - uid: 1928 components: @@ -58545,6 +65053,16 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-18.5 parent: 2 + - uid: 2071 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 2 - uid: 2388 components: - type: Transform @@ -58563,18 +65081,65 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-16.5 parent: 2 + - uid: 2560 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 + parent: 2 - uid: 2694 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-48.5 parent: 2 + - uid: 2695 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: -33.5,-53.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-41.5 + parent: 2 - uid: 2893 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-25.5 parent: 2 + - uid: 2902 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 - uid: 2903 components: - type: Transform @@ -58587,12 +65152,34 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-48.5 parent: 2 + - uid: 2917 + components: + - type: Transform + pos: -33.5,-57.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-60.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: -33.5,-59.5 + parent: 2 - uid: 2955 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-12.5 parent: 2 + - uid: 2957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-41.5 + parent: 2 - uid: 2959 components: - type: Transform @@ -58610,6 +65197,36 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-48.5 parent: 2 + - uid: 3142 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 - uid: 3162 components: - type: Transform @@ -58622,17 +65239,18 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-48.5 parent: 2 - - uid: 3233 - components: - - type: Transform - pos: 10.5,-55.5 - parent: 2 - uid: 3234 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-32.5 parent: 2 + - uid: 3240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 - uid: 3380 components: - type: Transform @@ -58656,6 +65274,12 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-41.5 parent: 2 + - uid: 3516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,19.5 + parent: 2 - uid: 3521 components: - type: Transform @@ -58673,39 +65297,22 @@ entities: - type: Transform pos: 29.5,-57.5 parent: 2 - - uid: 3581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-34.5 - parent: 2 - - uid: 3636 + - uid: 3597 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-30.5 - parent: 2 - - uid: 3685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-29.5 - parent: 2 - - uid: 3686 - components: - - type: Transform - pos: -35.5,-28.5 + pos: 39.5,19.5 parent: 2 - uid: 3688 components: - type: Transform pos: 46.5,-22.5 parent: 2 - - uid: 3689 + - uid: 3698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-29.5 + rot: -1.5707963267948966 rad + pos: -6.5,-36.5 parent: 2 - uid: 3724 components: @@ -58719,11 +65326,32 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-51.5 parent: 2 - - uid: 3892 + - uid: 3758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-22.5 + rot: -1.5707963267948966 rad + pos: 35.5,19.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,19.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 9.5,-20.5 parent: 2 - uid: 3902 components: @@ -58755,23 +65383,29 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 + - uid: 4097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 - uid: 4118 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 - - uid: 4119 + - uid: 4149 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-43.5 + pos: 16.5,6.5 parent: 2 - - uid: 4147 + - uid: 4156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-38.5 + rot: 1.5707963267948966 rad + pos: 28.5,6.5 parent: 2 - uid: 4196 components: @@ -58795,17 +65429,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-16.5 parent: 2 - - uid: 4318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-26.5 - parent: 2 - - uid: 4375 - components: - - type: Transform - pos: -8.5,-36.5 - parent: 2 - uid: 4376 components: - type: Transform @@ -58847,16 +65470,11 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-27.5 parent: 2 - - uid: 4426 + - uid: 4431 components: - type: Transform - pos: -7.5,-54.5 - parent: 2 - - uid: 4442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-27.5 + rot: 1.5707963267948966 rad + pos: 27.5,6.5 parent: 2 - uid: 4448 components: @@ -58869,29 +65487,21 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 - - uid: 4452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-28.5 - parent: 2 - uid: 4476 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,17.5 parent: 2 - - uid: 4494 + - uid: 4598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 + pos: 27.5,5.5 parent: 2 - - uid: 4511 + - uid: 4601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-22.5 + pos: 27.5,6.5 parent: 2 - uid: 4623 components: @@ -58923,11 +65533,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-21.5 parent: 2 - - uid: 4704 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 2 - uid: 4708 components: - type: Transform @@ -58940,11 +65545,33 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-44.5 parent: 2 - - uid: 4857 + - uid: 4751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-22.5 + pos: -33.5,-43.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,19.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-41.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-41.5 parent: 2 - uid: 4865 components: @@ -58972,11 +65599,20 @@ entities: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 5015 + - uid: 5004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-3.5 + pos: -23.5,-38.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: -23.5,-34.5 parent: 2 - uid: 5050 components: @@ -59011,6 +65647,11 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-30.5 parent: 2 + - uid: 5128 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 - uid: 5164 components: - type: Transform @@ -59047,11 +65688,10 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-47.5 parent: 2 - - uid: 5213 + - uid: 5220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 + pos: -23.5,-29.5 parent: 2 - uid: 5225 components: @@ -59112,12 +65752,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-35.5 parent: 2 - - uid: 5240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-36.5 - parent: 2 - uid: 5248 components: - type: Transform @@ -59241,12 +65875,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-12.5 parent: 2 - - uid: 5509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 2 - uid: 5564 components: - type: Transform @@ -59265,6 +65893,18 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-55.5 parent: 2 + - uid: 6148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 2 - uid: 6209 components: - type: Transform @@ -59282,6 +65922,12 @@ entities: - type: Transform pos: 29.5,-56.5 parent: 2 + - uid: 6251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,19.5 + parent: 2 - uid: 6277 components: - type: Transform @@ -59299,6 +65945,18 @@ entities: - type: Transform pos: 35.5,-19.5 parent: 2 + - uid: 6299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-33.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-33.5 + parent: 2 - uid: 6340 components: - type: Transform @@ -59316,22 +65974,23 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-16.5 parent: 2 + - uid: 6463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,7.5 + parent: 2 - uid: 6539 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 - - uid: 6568 + - uid: 6639 components: - type: Transform - pos: -35.5,-26.5 - parent: 2 - - uid: 6569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-25.5 + rot: 3.141592653589793 rad + pos: 32.5,23.5 parent: 2 - uid: 6748 components: @@ -59439,107 +66098,17 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-28.5 parent: 2 - - uid: 6835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-22.5 - parent: 2 - - uid: 6840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 2 - - uid: 6843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-22.5 - parent: 2 - - uid: 6844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-38.5 - parent: 2 - - uid: 6845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-39.5 - parent: 2 - - uid: 6846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-40.5 - parent: 2 - uid: 6847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-41.5 + rot: 1.5707963267948966 rad + pos: 11.5,-43.5 parent: 2 - uid: 6848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-39.5 - parent: 2 - - uid: 6849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-42.5 - parent: 2 - - uid: 6851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-43.5 - parent: 2 - - uid: 6852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-43.5 - parent: 2 - - uid: 6853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-43.5 - parent: 2 - - uid: 6854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-43.5 - parent: 2 - - uid: 6856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-28.5 - parent: 2 - - uid: 6858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-29.5 - parent: 2 - - uid: 6859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-29.5 - parent: 2 - - uid: 6860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-26.5 + rot: 1.5707963267948966 rad + pos: 12.5,-43.5 parent: 2 - uid: 6861 components: @@ -59556,8 +66125,8 @@ entities: - uid: 6863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-33.5 + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 parent: 2 - uid: 6864 components: @@ -59587,7 +66156,37 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-43.5 + pos: 12.5,-33.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-33.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-33.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-33.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-33.5 parent: 2 - uid: 6907 components: @@ -59595,48 +66194,29 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 2 - - uid: 6921 - components: - - type: Transform - pos: 10.5,-53.5 - parent: 2 - uid: 6936 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,6.5 parent: 2 - - uid: 7175 + - uid: 7071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,23.5 + pos: 24.5,-43.5 parent: 2 - - uid: 7176 + - uid: 7136 components: - type: Transform + rot: 3.141592653589793 rad pos: 32.5,22.5 parent: 2 - - uid: 7177 + - uid: 7137 components: - type: Transform + rot: 3.141592653589793 rad pos: 32.5,21.5 parent: 2 - - uid: 7178 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 7179 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 - - uid: 7180 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - uid: 7181 components: - type: Transform @@ -59647,40 +66227,147 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 - - uid: 7232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 2 - uid: 7465 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 - - uid: 7728 + - uid: 7584 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-41.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: 24.5,-37.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 7893 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-2.5 + pos: 32.5,20.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-4.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-20.5 parent: 2 - uid: 7936 components: - type: Transform pos: 21.5,-22.5 parent: 2 + - uid: 7997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 - uid: 8326 components: - type: Transform pos: 10.5,-42.5 parent: 2 + - uid: 8461 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 - uid: 8502 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-5.5 parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 2 - uid: 8628 components: - type: Transform @@ -59732,11 +66419,16 @@ entities: - type: Transform pos: 32.5,9.5 parent: 2 - - uid: 8983 + - uid: 8892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-30.5 + pos: 24.5,-35.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,6.5 parent: 2 - uid: 9145 components: @@ -59744,34 +66436,50 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-12.5 parent: 2 + - uid: 9188 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 - uid: 9206 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-0.5 parent: 2 - - uid: 9265 - components: - - type: Transform - pos: 10.5,-52.5 - parent: 2 - uid: 9339 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-29.5 parent: 2 - - uid: 9578 + - uid: 9431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-47.5 + pos: 24.5,-39.5 parent: 2 - - uid: 9883 + - uid: 9467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-43.5 + rot: 1.5707963267948966 rad + pos: 23.5,-33.5 + parent: 2 + - uid: 9511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 + - uid: 9550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,6.5 parent: 2 - uid: 9900 components: @@ -59841,6 +66549,11 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-54.5 parent: 2 + - uid: 10063 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 2 - uid: 10179 components: - type: Transform @@ -59853,11 +66566,28 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-21.5 parent: 2 + - uid: 10542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - uid: 10620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 - uid: 10692 components: - type: Transform pos: 20.5,12.5 parent: 2 + - uid: 10772 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 - uid: 10946 components: - type: Transform @@ -59869,18 +66599,6 @@ entities: - type: Transform pos: 20.5,11.5 parent: 2 - - uid: 11007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-50.5 - parent: 2 - - uid: 11008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-49.5 - parent: 2 - uid: 11012 components: - type: Transform @@ -59922,58 +66640,12 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-21.5 parent: 2 - - uid: 11035 - components: - - type: Transform - pos: -35.5,-25.5 - parent: 2 - uid: 11037 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-22.5 parent: 2 - - uid: 11048 - components: - - type: Transform - pos: -35.5,-24.5 - parent: 2 - - uid: 11078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-43.5 - parent: 2 - - uid: 11079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-43.5 - parent: 2 - - uid: 11080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-43.5 - parent: 2 - - uid: 11081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-43.5 - parent: 2 - - uid: 11082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 2 - - uid: 11083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-43.5 - parent: 2 - uid: 11084 components: - type: Transform @@ -60045,58 +66717,11 @@ entities: - type: Transform pos: 10.5,-36.5 parent: 2 - - uid: 11098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-30.5 - parent: 2 - - uid: 11099 - components: - - type: Transform - pos: -35.5,-23.5 - parent: 2 - uid: 11100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 2 - - uid: 11101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 2 - - uid: 11102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-29.5 - parent: 2 - - uid: 11103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-29.5 - parent: 2 - - uid: 11104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-29.5 - parent: 2 - - uid: 11105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-29.5 - parent: 2 - - uid: 11106 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-27.5 + pos: 15.5,8.5 parent: 2 - uid: 11134 components: @@ -60134,24 +66759,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-15.5 parent: 2 - - uid: 11153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 2 - - uid: 11155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-57.5 - parent: 2 - - uid: 11156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-56.5 - parent: 2 - uid: 11157 components: - type: Transform @@ -60194,6 +66801,12 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-0.5 parent: 2 + - uid: 11576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 - uid: 11602 components: - type: Transform @@ -60224,18 +66837,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-43.5 parent: 2 - - uid: 11952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-31.5 - parent: 2 - - uid: 12016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-41.5 - parent: 2 - uid: 12059 components: - type: Transform @@ -60248,11 +66849,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-27.5 parent: 2 - - uid: 12061 - components: - - type: Transform - pos: -7.5,-50.5 - parent: 2 - uid: 12080 components: - type: Transform @@ -60271,12 +66867,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-48.5 parent: 2 - - uid: 12141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 2 - uid: 12142 components: - type: Transform @@ -60319,12 +66909,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 - - uid: 12155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-34.5 - parent: 2 - uid: 12157 components: - type: Transform @@ -60379,24 +66963,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-41.5 parent: 2 - - uid: 12168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 - parent: 2 - - uid: 12169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 - parent: 2 - - uid: 12170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,7.5 - parent: 2 - uid: 12171 components: - type: Transform @@ -60408,89 +66974,12 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-38.5 parent: 2 - - uid: 12177 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 2 - uid: 12178 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-20.5 parent: 2 - - uid: 12183 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 2 - - uid: 12184 - components: - - type: Transform - pos: -7.5,-53.5 - parent: 2 - - uid: 12185 - components: - - type: Transform - pos: -7.5,-55.5 - parent: 2 - - uid: 12186 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 2 - - uid: 12187 - components: - - type: Transform - pos: -7.5,-57.5 - parent: 2 - - uid: 12188 - components: - - type: Transform - pos: -7.5,-65.5 - parent: 2 - - uid: 12189 - components: - - type: Transform - pos: -7.5,-64.5 - parent: 2 - - uid: 12190 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 2 - - uid: 12191 - components: - - type: Transform - pos: -7.5,-62.5 - parent: 2 - - uid: 12192 - components: - - type: Transform - pos: -7.5,-61.5 - parent: 2 - - uid: 12193 - components: - - type: Transform - pos: -7.5,-59.5 - parent: 2 - - uid: 12194 - components: - - type: Transform - pos: -7.5,-60.5 - parent: 2 - - uid: 12200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-66.5 - parent: 2 - - uid: 12201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-58.5 - parent: 2 - uid: 12208 components: - type: Transform @@ -60544,62 +67033,6 @@ entities: - type: Transform pos: 19.5,-22.5 parent: 2 - - uid: 12222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-30.5 - parent: 2 - - uid: 12223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-30.5 - parent: 2 - - uid: 12224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-30.5 - parent: 2 - - uid: 12225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-30.5 - parent: 2 - - uid: 12226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-30.5 - parent: 2 - - uid: 12227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-30.5 - parent: 2 - - uid: 12228 - components: - - type: Transform - pos: -36.5,-31.5 - parent: 2 - - uid: 12234 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 2 - - uid: 12236 - components: - - type: Transform - pos: -43.5,-21.5 - parent: 2 - - uid: 12237 - components: - - type: Transform - pos: -43.5,-24.5 - parent: 2 - uid: 12241 components: - type: Transform @@ -60641,48 +67074,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,8.5 parent: 2 - - uid: 12254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 2 - - uid: 12256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 2 - - uid: 12257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,4.5 - parent: 2 - - uid: 12259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,1.5 - parent: 2 - - uid: 12261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-0.5 - parent: 2 - - uid: 12262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-1.5 - parent: 2 - - uid: 12264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,3.5 - parent: 2 - uid: 12265 components: - type: Transform @@ -60766,11 +67157,6 @@ entities: - type: Transform pos: 35.5,-20.5 parent: 2 - - uid: 12281 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 2 - uid: 12283 components: - type: Transform @@ -60787,11 +67173,11 @@ entities: - type: Transform pos: 19.5,-24.5 parent: 2 - - uid: 12286 + - uid: 12385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,2.5 + rot: 1.5707963267948966 rad + pos: 17.5,6.5 parent: 2 - uid: 12436 components: @@ -60799,28 +67185,29 @@ entities: rot: 3.141592653589793 rad pos: 10.5,14.5 parent: 2 - - uid: 12449 - components: - - type: Transform - pos: 32.5,0.5 - parent: 2 - uid: 12579 components: - type: Transform pos: 20.5,14.5 parent: 2 + - uid: 12707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 - uid: 12788 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,17.5 parent: 2 - - uid: 12899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-29.5 - parent: 2 - uid: 13002 components: - type: Transform @@ -60833,156 +67220,12 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,10.5 parent: 2 - - uid: 13019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-43.5 - parent: 2 - - uid: 13033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-43.5 - parent: 2 - - uid: 13034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-43.5 - parent: 2 - - uid: 13035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-43.5 - parent: 2 - - uid: 13038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-44.5 - parent: 2 - - uid: 13039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-45.5 - parent: 2 - - uid: 13040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-46.5 - parent: 2 - - uid: 13049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-43.5 - parent: 2 - - uid: 13050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-43.5 - parent: 2 - - uid: 13051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-43.5 - parent: 2 - - uid: 13052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-43.5 - parent: 2 - - uid: 13053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-43.5 - parent: 2 - - uid: 13054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-43.5 - parent: 2 - - uid: 13056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-42.5 - parent: 2 - - uid: 13057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-41.5 - parent: 2 - - uid: 13058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-40.5 - parent: 2 - - uid: 13059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-39.5 - parent: 2 - - uid: 13060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-37.5 - parent: 2 - - uid: 13061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-36.5 - parent: 2 - - uid: 13062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-35.5 - parent: 2 - - uid: 13063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-34.5 - parent: 2 - - uid: 13064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-33.5 - parent: 2 - - uid: 13065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-32.5 - parent: 2 - uid: 13066 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,10.5 parent: 2 - - uid: 13067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-38.5 - parent: 2 - uid: 13068 components: - type: Transform @@ -60995,18 +67238,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 2 - - uid: 13079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-30.5 - parent: 2 - - uid: 13080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-30.5 - parent: 2 - uid: 13095 components: - type: Transform @@ -61102,84 +67333,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,11.5 parent: 2 - - uid: 13117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-55.5 - parent: 2 - - uid: 13118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-54.5 - parent: 2 - - uid: 13119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-53.5 - parent: 2 - - uid: 13120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-52.5 - parent: 2 - - uid: 13121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-51.5 - parent: 2 - - uid: 13122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-50.5 - parent: 2 - - uid: 13123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-49.5 - parent: 2 - uid: 13126 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 2 - - uid: 13127 - components: - - type: Transform - pos: -27.5,-47.5 - parent: 2 - - uid: 13128 - components: - - type: Transform - pos: -27.5,-46.5 - parent: 2 - - uid: 13129 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - - uid: 13130 - components: - - type: Transform - pos: -27.5,-44.5 - parent: 2 - - uid: 13131 - components: - - type: Transform - pos: -27.5,-43.5 - parent: 2 - - uid: 13132 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 2 - uid: 13133 components: - type: Transform @@ -61192,12 +67351,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,11.5 parent: 2 - - uid: 13135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-48.5 - parent: 2 - uid: 13142 components: - type: Transform @@ -61234,143 +67387,46 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-26.5 parent: 2 - - uid: 13235 + - uid: 13183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,5.5 + rot: -1.5707963267948966 rad + pos: 31.5,7.5 parent: 2 - - uid: 13236 + - uid: 13297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,4.5 + pos: -7.5,-57.5 parent: 2 - - uid: 13237 + - uid: 13298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,3.5 + pos: -7.5,-60.5 parent: 2 - - uid: 13238 + - uid: 13372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,2.5 + pos: 10.5,-52.5 parent: 2 - - uid: 13239 + - uid: 13378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,1.5 + pos: -7.5,-61.5 parent: 2 - - uid: 13240 + - uid: 13379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,0.5 + pos: -7.5,-58.5 parent: 2 - - uid: 13241 + - uid: 13380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-0.5 + pos: -7.5,-52.5 parent: 2 - - uid: 13242 + - uid: 13381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 2 - - uid: 13243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-1.5 - parent: 2 - - uid: 13244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 2 - - uid: 13245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 2 - - uid: 13246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 2 - - uid: 13247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 2 - - uid: 13248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 2 - - uid: 13249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 2 - - uid: 13250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 2 - - uid: 13251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 - parent: 2 - - uid: 13252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 2 - - uid: 13253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 2 - - uid: 13254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 2 - - uid: 13255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-3.5 - parent: 2 - - uid: 13256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 2 - - uid: 13258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 + pos: 10.5,-53.5 parent: 2 - uid: 14212 components: @@ -61396,11 +67452,10 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-38.5 parent: 2 - - uid: 15130 + - uid: 14966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,6.5 + pos: 10.5,-55.5 parent: 2 - uid: 15162 components: @@ -61408,120 +67463,416 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-15.5 parent: 2 + - uid: 15348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-36.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + pos: -27.5,-35.5 + parent: 2 - uid: 15370 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-37.5 parent: 2 + - uid: 15380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 2 + - uid: 15381 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 15382 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 15388 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-45.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-44.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-43.5 + parent: 2 + - uid: 15410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-41.5 + parent: 2 + - uid: 15411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-40.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-39.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-38.5 + parent: 2 + - uid: 15414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-37.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-36.5 + parent: 2 + - uid: 15422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-35.5 + parent: 2 + - uid: 15468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-34.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-33.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-32.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-42.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-31.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-31.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-31.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-31.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-26.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 15674 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 15681 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 15706 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-25.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-32.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-32.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-32.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-32.5 + parent: 2 - uid: 15748 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-44.5 parent: 2 + - uid: 15751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-32.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-32.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-31.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-28.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-28.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-28.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-28.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-28.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-28.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-28.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-28.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-27.5 + parent: 2 - uid: 16079 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-45.5 parent: 2 - - uid: 16336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 2 - - uid: 16337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-16.5 - parent: 2 - - uid: 16338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-16.5 - parent: 2 - - uid: 16339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-16.5 - parent: 2 - - uid: 16340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-16.5 - parent: 2 - - uid: 16341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-16.5 - parent: 2 - - uid: 16342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-16.5 - parent: 2 - - uid: 16343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-16.5 - parent: 2 - - uid: 16344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-16.5 - parent: 2 - - uid: 16345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-16.5 - parent: 2 - - uid: 16346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-16.5 - parent: 2 - - uid: 16347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-16.5 - parent: 2 - - uid: 16348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-15.5 - parent: 2 - - uid: 16349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-14.5 - parent: 2 - - uid: 16350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-13.5 - parent: 2 - - uid: 16351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 2 - uid: 16352 components: - type: Transform @@ -61582,6 +67933,12 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-12.5 parent: 2 + - uid: 16898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-33.5 + parent: 2 - uid: 17464 components: - type: Transform @@ -61825,12 +68182,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-22.5 parent: 2 - - uid: 18558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-28.5 - parent: 2 - uid: 18560 components: - type: Transform @@ -61849,17 +68200,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-23.5 parent: 2 - - uid: 18569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-22.5 - parent: 2 - - uid: 18574 - components: - - type: Transform - pos: -27.5,-35.5 - parent: 2 - uid: 18577 components: - type: Transform @@ -61914,36 +68254,48 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-54.5 parent: 2 + - uid: 19143 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 19144 + components: + - type: Transform + pos: 10.5,-58.5 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 19146 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 19190 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 - uid: 19897 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-46.5 parent: 2 + - uid: 20217 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 - uid: 20285 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-47.5 parent: 2 - - uid: 20286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 - parent: 2 - - uid: 20287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-29.5 - parent: 2 - - uid: 20288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-29.5 - parent: 2 - uid: 20289 components: - type: Transform @@ -62392,6 +68744,94 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 + - uid: 20416 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - uid: 20619 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - uid: 20804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-63.5 + parent: 2 + - uid: 21348 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 21349 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 21350 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 21351 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 21353 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 21361 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 21409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,19.5 + parent: 2 + - uid: 22548 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 22549 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 22550 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 22551 + components: + - type: Transform + pos: -28.5,-35.5 + parent: 2 + - uid: 22552 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - uid: 22553 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 22554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 - proto: DisposalRouter entities: - uid: 384 @@ -62403,11 +68843,11 @@ entities: - type: DisposalRouter tags: - Bridge - - uid: 4022 + - uid: 6849 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-4.5 + pos: 10.5,-33.5 parent: 2 - type: DisposalRouter tags: @@ -62420,6 +68860,23 @@ entities: - type: DisposalRouter tags: - Security + - uid: 7897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 + - type: DisposalRouter + tags: + - Trash + - uid: 7917 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - type: DisposalRouter + tags: + - Medical - uid: 11151 components: - type: Transform @@ -62447,31 +68904,14 @@ entities: - type: DisposalRouter tags: - Science - - uid: 12221 + - uid: 15344 components: - type: Transform - pos: -23.5,-34.5 + pos: -23.5,-36.5 parent: 2 - type: DisposalRouter tags: - Chemistry - - uid: 12433 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 2 - - type: DisposalRouter - tags: - - Medical - - uid: 18552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-43.5 - parent: 2 - - type: DisposalRouter - tags: - - Trash - uid: 20302 components: - type: Transform @@ -62510,6 +68950,13 @@ entities: - Engineering - proto: DisposalTagger entities: + - uid: 3893 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - type: DisposalTagger + tag: Trash - uid: 4732 components: - type: Transform @@ -62533,11 +68980,27 @@ entities: parent: 2 - type: DisposalTagger tag: Trash - - uid: 6104 + - uid: 6226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-3.5 + rot: 3.141592653589793 rad + pos: -7.5,-49.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 6229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-49.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 6851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-43.5 parent: 2 - type: DisposalTagger tag: Trash @@ -62548,6 +69011,13 @@ entities: parent: 2 - type: DisposalTagger tag: Trash + - uid: 7577 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - type: DisposalTagger + tag: Trash - uid: 8300 components: - type: Transform @@ -62595,6 +69065,14 @@ entities: parent: 2 - type: DisposalTagger tag: Trash + - uid: 10118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - type: DisposalTagger + tag: Trash - uid: 10947 components: - type: Transform @@ -62603,22 +69081,6 @@ entities: parent: 2 - type: DisposalTagger tag: Trash - - uid: 11005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-51.5 - parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 11053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-51.5 - parent: 2 - - type: DisposalTagger - tag: Trash - uid: 11058 components: - type: Transform @@ -62634,49 +69096,40 @@ entities: parent: 2 - type: DisposalTagger tag: Trash - - uid: 12263 + - uid: 15362 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-38.5 - parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 18572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 20304 - components: - - type: Transform - pos: 16.5,7.5 + pos: -24.5,-31.5 parent: 2 - type: DisposalTagger tag: Trash - proto: DisposalTrunk entities: + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 - uid: 330 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-6.5 parent: 2 + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-14.5 + parent: 2 - uid: 737 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-18.5 parent: 2 - - uid: 1381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-23.5 - parent: 2 - uid: 2255 components: - type: Transform @@ -62688,6 +69141,12 @@ entities: - type: Transform pos: -14.5,-37.5 parent: 2 + - uid: 3321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-51.5 + parent: 2 - uid: 3611 components: - type: Transform @@ -62705,6 +69164,18 @@ entities: - type: Transform pos: 20.5,15.5 parent: 2 + - uid: 4110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-60.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 - uid: 4635 components: - type: Transform @@ -62746,18 +69217,6 @@ entities: - type: Transform pos: 29.5,-53.5 parent: 2 - - uid: 5744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 2 - - uid: 6173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-40.5 - parent: 2 - uid: 6782 components: - type: Transform @@ -62776,29 +69235,51 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 - - uid: 7173 + - uid: 6846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,23.5 + pos: 15.5,-42.5 parent: 2 - - uid: 7263 + - uid: 7538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 + rot: 3.141592653589793 rad + pos: -0.5,-50.5 parent: 2 - uid: 7836 components: - type: Transform pos: 50.5,-15.5 parent: 2 + - uid: 7922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 2 - uid: 8496 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 2 + - uid: 8605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,19.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 - uid: 8662 components: - type: Transform @@ -62822,40 +69303,16 @@ entities: - type: Transform pos: -17.5,-46.5 parent: 2 - - uid: 11171 + - uid: 10189 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-58.5 + pos: 8.5,-16.5 parent: 2 - - uid: 11446 + - uid: 10685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-36.5 - parent: 2 - - uid: 11469 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 2 - - uid: 12198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-66.5 - parent: 2 - - uid: 12204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-58.5 - parent: 2 - - uid: 12288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,1.5 + pos: -32.5,-39.5 parent: 2 - uid: 12898 components: @@ -62863,27 +69320,17 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-15.5 parent: 2 - - uid: 13022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-48.5 - parent: 2 - - uid: 13023 - components: - - type: Transform - pos: -49.5,-42.5 - parent: 2 - - uid: 13155 - components: - - type: Transform - pos: -37.5,-29.5 - parent: 2 - - uid: 14722 + - uid: 14762 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-20.5 + pos: -49.5,-28.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-34.5 parent: 2 - uid: 14882 components: @@ -62891,11 +69338,46 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-44.5 parent: 2 - - uid: 15160 + - uid: 15365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-32.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-46.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-32.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-25.5 + parent: 2 + - uid: 15819 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-38.5 + pos: -35.5,-22.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + pos: -35.5,-24.5 parent: 2 - uid: 16126 components: @@ -62915,6 +69397,12 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-27.5 parent: 2 + - uid: 16904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-48.5 + parent: 2 - uid: 17463 components: - type: Transform @@ -62938,18 +69426,18 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-32.5 parent: 2 + - uid: 18477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 2 - uid: 18566 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-24.5 parent: 2 - - uid: 18568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-25.5 - parent: 2 - uid: 18635 components: - type: Transform @@ -62967,17 +69455,23 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,16.5 parent: 2 - - uid: 20303 + - uid: 20814 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,6.5 + rot: 1.5707963267948966 rad + pos: 8.5,-63.5 parent: 2 - - uid: 20413 + - uid: 20833 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-56.5 + pos: -5.5,-63.5 + parent: 2 + - uid: 22556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-38.5 parent: 2 - proto: DisposalUnit entities: @@ -63041,15 +69535,30 @@ entities: - type: Transform pos: 22.5,-24.5 parent: 2 + - uid: 4477 + components: + - type: Transform + pos: -31.5,-51.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 - uid: 4731 components: - type: Transform pos: 29.5,-53.5 parent: 2 - - uid: 4733 + - uid: 5000 components: - type: Transform - pos: -42.5,-23.5 + pos: -35.5,-60.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: 25.5,5.5 parent: 2 - uid: 5531 components: @@ -63061,21 +69570,6 @@ entities: - type: Transform pos: 31.5,-46.5 parent: 2 - - uid: 5974 - components: - - type: Transform - pos: 19.5,-40.5 - parent: 2 - - uid: 6157 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 2 - - uid: 6278 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 2 - uid: 6377 components: - type: Transform @@ -63086,65 +69580,60 @@ entities: - type: Transform pos: -17.5,-46.5 parent: 2 - - uid: 7159 - components: - - type: Transform - pos: 34.5,23.5 - parent: 2 - uid: 7578 components: - type: Transform pos: -10.5,-44.5 parent: 2 - - uid: 7604 + - uid: 7935 components: - type: Transform - pos: -9.5,-66.5 + pos: 26.5,3.5 parent: 2 - - uid: 8107 + - uid: 8015 components: - type: Transform - pos: -49.5,-42.5 + pos: -5.5,-63.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: 8.5,-16.5 parent: 2 - uid: 8344 components: - type: Transform pos: 50.5,-15.5 parent: 2 + - uid: 8689 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 - uid: 8711 components: - type: Transform pos: 34.5,15.5 parent: 2 - - uid: 9187 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 2 - - uid: 9233 - components: - - type: Transform - pos: -41.5,-48.5 - parent: 2 - - uid: 9527 - components: - - type: Transform - pos: 29.5,1.5 - parent: 2 - uid: 9791 components: - type: Transform pos: -20.5,-52.5 parent: 2 - - uid: 11049 + - uid: 10089 components: - type: Transform - pos: -28.5,-56.5 + pos: 32.5,25.5 parent: 2 - - uid: 11142 + - uid: 10758 components: - type: Transform - pos: 9.5,-58.5 + pos: -32.5,-39.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: 15.5,-42.5 parent: 2 - uid: 11189 components: @@ -63156,41 +69645,81 @@ entities: - type: Transform pos: 44.5,-24.5 parent: 2 - - uid: 13069 + - uid: 13361 components: - type: Transform - pos: -27.5,-25.5 + pos: 17.5,-20.5 parent: 2 - - uid: 13233 + - uid: 13382 components: - type: Transform - pos: 16.5,6.5 + pos: -0.5,-50.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: -48.5,-46.5 parent: 2 - uid: 14246 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 15157 + - uid: 14783 components: - type: Transform - pos: -25.5,-38.5 + pos: -25.5,-32.5 parent: 2 - - uid: 15894 + - uid: 14829 components: - type: Transform - pos: -25.5,-16.5 + pos: -42.5,-25.5 parent: 2 - - uid: 17611 + - uid: 14903 components: - type: Transform - pos: -37.5,-29.5 + pos: -41.5,-32.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 16903 + components: + - type: Transform + pos: -24.5,-48.5 parent: 2 - uid: 18096 components: - type: Transform pos: 33.5,-32.5 parent: 2 + - uid: 20189 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 21367 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 22547 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 4786 @@ -63223,6 +69752,18 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-39.5 parent: 2 + - uid: 15716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 - proto: DogBed entities: - uid: 671 @@ -63230,21 +69771,11 @@ entities: - type: Transform pos: -19.5,-5.5 parent: 2 - - uid: 4638 - components: - - type: Transform - pos: -42.5,-33.5 - parent: 2 - uid: 7547 components: - type: Transform pos: -15.5,-46.5 parent: 2 - - uid: 7733 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 2 - uid: 9647 components: - type: Transform @@ -63255,10 +69786,25 @@ entities: - type: Transform pos: -23.5,-53.5 parent: 2 - - uid: 10728 + - uid: 12175 components: - type: Transform - pos: -42.5,-35.5 + pos: -37.5,-38.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: -49.5,-24.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: -47.5,-24.5 parent: 2 - proto: DoorElectronics entities: @@ -63283,22 +69829,22 @@ entities: parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 15312 + - uid: 13394 components: - type: Transform - pos: -42.5,-38.5 + pos: -53.5,-21.5 parent: 2 - proto: DresserFilled entities: - - uid: 3806 + - uid: 7877 components: - type: Transform - pos: 5.5,-39.5 + pos: 6.5,-39.5 parent: 2 - - uid: 6044 + - uid: 13766 components: - type: Transform - pos: 5.5,-41.5 + pos: 6.5,-41.5 parent: 2 - proto: DresserHeadOfPersonnelFilled entities: @@ -63352,12 +69898,19 @@ entities: - type: Transform pos: 19.484085,-52.344112 parent: 2 +- proto: DrinkCafeLatte + entities: + - uid: 13074 + components: + - type: Transform + pos: 24.646425,8.638431 + parent: 2 - proto: DrinkCanPack entities: - uid: 13018 components: - type: Transform - pos: -24.276548,-48.390488 + pos: -27.49392,-48.37154 parent: 2 - proto: DrinkCreamCarton entities: @@ -63368,10 +69921,10 @@ entities: parent: 2 - proto: DrinkDoctorsDelightGlass entities: - - uid: 8346 + - uid: 14103 components: - type: Transform - pos: -40.717422,-34.3464 + pos: -48.62749,-22.34152 parent: 2 - proto: DrinkFlask entities: @@ -63392,12 +69945,12 @@ entities: - uid: 3700 components: - type: Transform - pos: -4.397609,-45.428547 + pos: -0.6311126,-43.208096 parent: 2 - uid: 3704 components: - type: Transform - pos: -4.6477337,-45.22007 + pos: -0.25592685,-43.343605 parent: 2 - uid: 17135 components: @@ -63413,34 +69966,48 @@ entities: parent: 2 - proto: DrinkGoldenCup entities: - - uid: 13172 + - uid: 4738 components: - type: Transform - pos: 8.481442,4.6880107 + pos: -28.465271,-63.271435 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 18.431465,17.597729 parent: 2 - proto: DrinkHotCoco entities: - - uid: 3404 + - uid: 12659 components: - type: Transform - pos: -21.652742,-16.472178 + pos: -44.09471,-39.250145 parent: 2 - - uid: 5083 +- proto: DrinkHotCoffee + entities: + - uid: 12481 components: - type: Transform - pos: -36.873867,-20.45384 - parent: 2 - - uid: 7000 - components: - - type: Transform - pos: 23.939922,-9.299497 + pos: 23.356998,5.6595306 parent: 2 - proto: DrinkIcedGreenTeaGlass entities: - - uid: 2030 + - uid: 2045 components: - type: Transform - pos: 15.729584,-57.12312 + pos: 13.687973,-59.21468 + parent: 2 +- proto: DrinkIcedTeaCan + entities: + - uid: 3168 + components: + - type: Transform + pos: 13.862172,-10.998358 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 13.116106,-9.493994 parent: 2 - proto: DrinkJuiceLimeCarton entities: @@ -63472,15 +70039,15 @@ entities: parent: 2 - proto: DrinkMopwataBottleRandom entities: - - uid: 18891 + - uid: 1380 components: - type: Transform - pos: 35.367874,17.591213 + pos: 43.25334,17.451698 parent: 2 - - uid: 18980 + - uid: 5872 components: - type: Transform - pos: 35.743057,17.789268 + pos: 43.62834,17.58721 parent: 2 - proto: DrinkMug entities: @@ -63496,6 +70063,25 @@ entities: - type: Transform pos: -15.916694,-48.270462 parent: 2 +- proto: DrinkMugGreen + entities: + - uid: 12463 + components: + - type: Transform + pos: 18.653496,8.469813 + parent: 2 +- proto: DrinkMugMetal + entities: + - uid: 21451 + components: + - type: Transform + pos: 21.160868,-6.4974823 + parent: 2 + - uid: 21452 + components: + - type: Transform + pos: 21.004618,-6.2318573 + parent: 2 - proto: DrinkMugRainbow entities: - uid: 11561 @@ -63515,7 +70101,7 @@ entities: - uid: 3699 components: - type: Transform - pos: -4.178751,-45.28261 + pos: -0.5581603,-43.416573 parent: 2 - uid: 7371 components: @@ -63567,14 +70153,36 @@ entities: - uid: 3898 components: - type: Transform - pos: 20.686771,-38.929775 + pos: 21.342222,-41.262074 parent: 2 - proto: DrinkTeacup entities: - - uid: 290 + - uid: 359 components: - type: Transform - pos: 6.7192326,-51.458447 + pos: 19.428297,-9.307767 + parent: 2 + - uid: 9369 + components: + - type: Transform + pos: 20.50759,-10.36513 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: 19.365797,-10.370267 + parent: 2 + - uid: 22638 + components: + - type: Transform + pos: 20.50759,-9.255755 + parent: 2 +- proto: DrinkTeapot + entities: + - uid: 12536 + components: + - type: Transform + pos: 20.03884,-9.787005 parent: 2 - proto: DrinkTonicWaterCan entities: @@ -63597,13 +70205,6 @@ entities: - type: Transform pos: -20.329561,10.8367405 parent: 2 -- proto: DrinkWaterBottleFull - entities: - - uid: 16666 - components: - - type: Transform - pos: -34.283783,-2.3082447 - parent: 2 - proto: DrinkWaterCup entities: - uid: 1051 @@ -63618,10 +70219,10 @@ entities: parent: 2 - proto: DrinkWaterJug entities: - - uid: 320 + - uid: 13184 components: - type: Transform - pos: 5.6644287,-44.29744 + pos: 6.905526,-44.991566 parent: 2 - proto: DrinkWhiskeyBottleFull entities: @@ -63630,11 +70231,6 @@ entities: - type: Transform pos: 35.441143,3.7775984 parent: 2 - - uid: 7805 - components: - - type: Transform - pos: 0.18218291,24.00431 - parent: 2 - uid: 20411 components: - type: Transform @@ -63649,13 +70245,24 @@ entities: parent: 2 - proto: ElectricGuitarInstrument entities: - - uid: 3227 + - uid: 4740 components: - type: Transform - pos: 10.388435,3.6684923 + pos: -29.517876,-64.39722 parent: 2 - proto: EmergencyLight entities: + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-44.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 - uid: 1154 components: - type: Transform @@ -63672,28 +70279,12 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 2792 + - uid: 4915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-58.5 + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 2952 - components: - - type: Transform - pos: -39.5,-40.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 3539 - components: - - type: Transform - pos: -36.5,-57.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 4936 components: - type: Transform @@ -63718,6 +70309,22 @@ entities: parent: 2 - type: Battery startingCharge: 30000 + - uid: 6030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-10.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 20.5,22.5 + parent: 2 - uid: 6744 components: - type: Transform @@ -63734,14 +70341,22 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 8350 + - uid: 7860 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 7880 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-11.5 + pos: 2.5,22.5 parent: 2 - - type: Battery - startingCharge: 30000 - uid: 8962 components: - type: Transform @@ -63749,6 +70364,23 @@ entities: parent: 2 - type: Battery startingCharge: 30000 + - uid: 9655 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 12129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 - uid: 12379 components: - type: Transform @@ -63765,22 +70397,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 14568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-53.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-3.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16691 components: - type: Transform @@ -63881,54 +70497,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-48.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-65.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-65.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-57.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-53.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16711 components: - type: Transform @@ -63936,30 +70504,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-4.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16720 components: - type: Transform @@ -64006,13 +70550,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16734 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16735 components: - type: Transform @@ -64021,13 +70558,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16736 - components: - - type: Transform - pos: -32.5,-67.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16737 components: - type: Transform @@ -64051,51 +70581,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-56.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-43.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16743 - components: - - type: Transform - pos: -47.5,-42.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16746 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-27.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16748 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16750 components: - type: Transform @@ -64119,14 +70604,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-16.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16755 components: - type: Transform @@ -64149,38 +70626,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,35.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,22.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16769 components: - type: Transform @@ -64189,29 +70634,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 16770 - components: - - type: Transform - pos: 24.5,-8.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-0.5 - parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 16773 components: - type: Transform @@ -64243,14 +70665,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 17136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 18371 components: - type: Transform @@ -64259,14 +70673,6 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 18964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,12.5 - parent: 2 - - type: Battery - startingCharge: 30000 - uid: 19286 components: - type: Transform @@ -64274,47 +70680,204 @@ entities: parent: 2 - type: Battery startingCharge: 30000 - - uid: 20766 + - uid: 21379 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 21380 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 21381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 2 + - uid: 21396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 2 + - uid: 21397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 2 + - uid: 21449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 21844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,29.5 + pos: 27.5,24.5 + parent: 2 + - uid: 21845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 2 + - uid: 21954 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 22142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 2 + - uid: 22193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-29.5 + parent: 2 + - uid: 22194 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 22195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-27.5 + parent: 2 + - uid: 22196 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 22197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-32.5 + parent: 2 + - uid: 22198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-32.5 + parent: 2 + - uid: 22199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 2 + - uid: 22200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 2 + - uid: 22201 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 22202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-37.5 + parent: 2 + - uid: 22203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-38.5 + parent: 2 + - uid: 22204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-36.5 + parent: 2 + - uid: 22205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-24.5 + parent: 2 + - uid: 22206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-22.5 + parent: 2 + - uid: 22207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-23.5 + parent: 2 + - uid: 22208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-25.5 + parent: 2 + - uid: 22209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 2 + - uid: 22288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-49.5 parent: 2 - - type: Battery - startingCharge: 30000 - proto: EmergencyMedipen entities: - - uid: 4814 + - uid: 9502 components: - type: Transform - pos: -29.574272,-25.38519 + rot: 3.141592653589793 rad + pos: -26.574697,-22.069391 parent: 2 - - uid: 4815 + - uid: 22140 components: - type: Transform - pos: -29.574272,-25.187136 + rot: 3.141592653589793 rad + pos: -26.595541,-22.257023 parent: 2 - - uid: 4816 + - uid: 22141 components: - type: Transform - pos: -29.574272,-25.593668 + rot: 3.141592653589793 rad + pos: -26.605963,-22.4655 parent: 2 - proto: EmergencyRollerBed entities: - - uid: 1510 - components: - - type: Transform - pos: -31.5,-29.5 - parent: 2 - uid: 1880 components: - type: Transform pos: 52.441402,-37.397106 parent: 2 - - uid: 7269 + - uid: 14763 components: - type: Transform - pos: -32.5,-29.5 + pos: -35.5,-31.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: -35.5,-28.5 parent: 2 - uid: 18764 components: @@ -64358,6 +70921,11 @@ entities: parent: 2 - proto: ExtinguisherCabinetFilled entities: + - uid: 1672 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 - uid: 3541 components: - type: Transform @@ -64370,6 +70938,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,21.5 parent: 2 + - uid: 4002 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 - uid: 5101 components: - type: Transform @@ -64380,12 +70953,6 @@ entities: - type: Transform pos: -22.5,15.5 parent: 2 - - uid: 5444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-37.5 - parent: 2 - uid: 5833 components: - type: Transform @@ -64396,16 +70963,22 @@ entities: - type: Transform pos: 51.5,-23.5 parent: 2 - - uid: 10348 + - uid: 10667 components: - type: Transform - pos: 9.5,-63.5 + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 parent: 2 - - uid: 12342 + - uid: 10763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-39.5 + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + pos: -40.5,-35.5 parent: 2 - uid: 17619 components: @@ -64422,61 +70995,16 @@ entities: - type: Transform pos: 0.5,13.5 parent: 2 - - uid: 17622 - components: - - type: Transform - pos: 13.5,7.5 - parent: 2 - - uid: 17623 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 2 - - uid: 17624 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 2 - - uid: 17626 - components: - - type: Transform - pos: 30.5,39.5 - parent: 2 - uid: 17628 components: - type: Transform pos: 17.5,-23.5 parent: 2 - - uid: 17629 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 2 - - uid: 17630 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - - uid: 17631 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 2 - uid: 17632 components: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 17633 - components: - - type: Transform - pos: -32.5,-59.5 - parent: 2 - - uid: 17635 - components: - - type: Transform - pos: -31.5,-22.5 - parent: 2 - uid: 17636 components: - type: Transform @@ -64494,6 +71022,73 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-23.5 parent: 2 + - uid: 21165 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - uid: 21219 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 + - uid: 21220 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 21221 + components: + - type: Transform + pos: -43.5,-45.5 + parent: 2 + - uid: 21224 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 2 + - uid: 22185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-65.5 + parent: 2 + - uid: 22267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-65.5 + parent: 2 + - uid: 22268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 22269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-76.5 + parent: 2 + - uid: 22271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-76.5 + parent: 2 + - uid: 22285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-50.5 + parent: 2 + - uid: 22286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-46.5 + parent: 2 - proto: EZNutrientChemistryBottle entities: - uid: 17701 @@ -64503,6 +71098,13 @@ entities: parent: 2 - proto: FaxMachineBase entities: + - uid: 36 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - type: FaxMachine + name: Janitor - uid: 626 components: - type: Transform @@ -64536,6 +71138,15 @@ entities: - type: Transform pos: -11.5,-13.5 parent: 2 + - type: FaxMachine + name: Engineering + - uid: 6045 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 + - type: FaxMachine + name: Psychology - uid: 6057 components: - type: Transform @@ -64557,24 +71168,17 @@ entities: parent: 2 - type: FaxMachine name: Lawyer - - uid: 9402 + - uid: 10400 components: - type: Transform - pos: 28.5,4.5 + pos: -52.5,-23.5 parent: 2 - type: FaxMachine - name: Janitorial - - uid: 10152 + name: CMO + - uid: 10402 components: - type: Transform - pos: -34.5,-44.5 - parent: 2 - - type: FaxMachine - name: Psychologist - - uid: 11473 - components: - - type: Transform - pos: -45.5,-21.5 + pos: -37.5,-24.5 parent: 2 - type: FaxMachine name: Medical @@ -64599,23 +71203,23 @@ entities: - type: Transform pos: 13.5,-38.5 parent: 2 - - uid: 3833 + - uid: 6473 components: - type: Transform - pos: 20.5,-38.5 + pos: 22.5,-41.5 parent: 2 - - uid: 11317 + - uid: 6547 components: - type: Transform - pos: -40.5,-51.5 + pos: 19.5,-38.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: 18.5,-38.5 parent: 2 - proto: filingCabinetDrawerRandom entities: - - uid: 3740 - components: - - type: Transform - pos: 19.502523,-35.329025 - parent: 2 - uid: 4211 components: - type: Transform @@ -64631,15 +71235,20 @@ entities: - type: Transform pos: 1.5,16.5 parent: 2 - - uid: 10151 + - uid: 10226 components: - type: Transform - pos: -32.826313,-43.344933 + pos: -31.5,-25.5 parent: 2 - - uid: 17685 + - uid: 10401 components: - type: Transform - pos: -40.5,-53.5 + pos: -40.5,-55.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + pos: -47.5,-43.5 parent: 2 - uid: 20242 components: @@ -64670,16 +71279,6 @@ entities: - type: Transform pos: 18.74439,13.545596 parent: 2 - - uid: 8232 - components: - - type: Transform - pos: -42.252365,-45.359486 - parent: 2 - - uid: 8268 - components: - - type: Transform - pos: -42.80472,-45.390755 - parent: 2 - uid: 8664 components: - type: Transform @@ -64696,25 +71295,6 @@ entities: prevFixedRotation: True - proto: FireAlarm entities: - - uid: 110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 15242 - - 15241 - - 15240 - - 15230 - - 15231 - - 15232 - - uid: 1586 - components: - - type: Transform - pos: -43.5,-39.5 - parent: 2 - uid: 1667 components: - type: Transform @@ -64727,6 +71307,46 @@ entities: - 15210 - 15209 - 15208 + - uid: 2276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 14950 + - 14949 + - 14951 + - 14952 + - 14946 + - 14945 + - 14947 + - 14948 + - uid: 3315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 14950 + - 14949 + - 14951 + - 14952 + - uid: 3687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 13367 + - 13236 + - 21847 + - 11233 - uid: 3816 components: - type: Transform @@ -64736,6 +71356,27 @@ entities: devices: - 15393 - 15394 + - uid: 3820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 2520 + - 1720 + - 2342 + - 21855 + - 21854 + - 21853 + - 21856 + - 10397 + - 10457 + - 10396 + - 3985 + - 2321 + - 2919 - uid: 6790 components: - type: Transform @@ -64748,20 +71389,6 @@ entities: - 15625 - 15638 - 15639 - - uid: 9987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 15242 - - 15241 - - 15240 - - 15259 - - 15258 - - 15257 - uid: 13342 components: - type: Transform @@ -64773,23 +71400,6 @@ entities: - 15181 - 15182 - 15183 - - uid: 13663 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 2 - - type: DeviceList - devices: - - 15209 - - 15208 - - 15206 - - 15207 - - 15214 - - 15213 - - 15212 - - 15181 - - 15182 - - 15183 - uid: 14371 components: - type: Transform @@ -64812,15 +71422,12 @@ entities: parent: 2 - type: DeviceList devices: - - 15154 - - 15155 - - 15156 - 15153 - 15152 - 15151 - - 1722 - - 15148 - - 15149 + - 16320 + - 16319 + - 16318 - 15170 - 15169 - 15168 @@ -64828,19 +71435,6 @@ entities: - 15150 - 15164 - 15165 - - uid: 15197 - components: - - type: Transform - pos: 4.5,-46.5 - parent: 2 - - type: DeviceList - devices: - - 15192 - - 15193 - - 15194 - - 15156 - - 15155 - - 15154 - uid: 15202 components: - type: Transform @@ -64855,8 +71449,6 @@ entities: - 15192 - 15193 - 15194 - - 15203 - - 15204 - uid: 15226 components: - type: Transform @@ -64893,35 +71485,6 @@ entities: - 15222 - 15228 - 15229 - - uid: 15236 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 2 - - type: DeviceList - devices: - - 15233 - - 15234 - - 15235 - - 15238 - - 15237 - - 15230 - - 15231 - - 15232 - - uid: 15261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 15242 - - 15241 - - 15240 - - 15259 - - 15258 - - 15257 - uid: 15272 components: - type: Transform @@ -64930,78 +71493,12 @@ entities: parent: 2 - type: DeviceList devices: - - 15230 - - 15231 - - 15232 + - 3985 + - 2321 + - 2919 - 2282 - 2642 - 1580 - - uid: 15279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 2 - - type: DeviceList - devices: - - 15273 - - 15274 - - 15275 - - 15235 - - 15234 - - 15233 - - uid: 15384 - components: - - type: Transform - pos: -38.5,-28.5 - parent: 2 - - type: DeviceList - devices: - - 15343 - - 14732 - - 15333 - - 15339 - - 15340 - - 15341 - - 15344 - - 15380 - - 15381 - - uid: 15385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-24.5 - parent: 2 - - type: DeviceList - devices: - - 15380 - - 15381 - - 15382 - - uid: 15386 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - type: DeviceList - devices: - - 15343 - - 15348 - - 15349 - - uid: 15388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-25.5 - parent: 2 - - type: DeviceList - devices: - - 15339 - - 15333 - - 14732 - - 15325 - - 15326 - - 15327 - - 15151 - uid: 15391 components: - type: Transform @@ -65010,27 +71507,16 @@ entities: parent: 2 - type: DeviceList devices: - - 19003 + - 4519 - 15302 - 15323 - 15324 - - 8854 - - 15574 + - 4559 + - 2011 - 15672 - 19006 - 19008 - - uid: 15403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 2 - - type: DeviceList - devices: - 15301 - - 15302 - - 15324 - - 15323 - uid: 15415 components: - type: Transform @@ -65040,8 +71526,9 @@ entities: devices: - 15395 - 15396 - - 15398 - - 15397 + - 2540 + - 2516 + - 3025 - uid: 15424 components: - type: Transform @@ -65089,17 +71576,6 @@ entities: - 15220 - 15221 - 15222 - - uid: 15619 - components: - - type: Transform - pos: 12.5,-59.5 - parent: 2 - - uid: 15620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-54.5 - parent: 2 - uid: 15621 components: - type: Transform @@ -65107,8 +71583,9 @@ entities: parent: 2 - type: DeviceList devices: - - 15184 - - 15185 + - 11140 + - 8188 + - 10579 - uid: 15622 components: - type: Transform @@ -65117,8 +71594,18 @@ entities: parent: 2 - type: DeviceList devices: - - 15184 - - 15185 + - 1537 + - 11007 + - 1533 + - 15192 + - 15193 + - 15194 + - 10579 + - 8188 + - 5039 + - 11142 + - 11143 + - 11140 - uid: 15640 components: - type: Transform @@ -65129,6 +71616,46 @@ entities: devices: - 15626 - 15625 + - uid: 15907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 15153 + - 15152 + - 15151 + - 15338 + - 15337 + - 14952 + - 14951 + - 14950 + - 14949 + - 4519 + - 4559 + - 2011 + - uid: 16008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 15153 + - 15152 + - 15151 + - 15338 + - 15337 + - 14952 + - 14951 + - 14950 + - 14949 + - 4519 + - 4559 + - 2011 - uid: 16078 components: - type: Transform @@ -65142,6 +71669,51 @@ entities: - 14382 - 14368 - 19001 + - uid: 16314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-69.5 + parent: 2 + - type: DeviceList + devices: + - 6558 + - 8436 + - 8446 + - uid: 16315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-78.5 + parent: 2 + - uid: 16316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 6558 + - 8436 + - 8446 + - 4961 + - 5024 + - 4976 + - uid: 16317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 16320 + - 16319 + - 16318 + - 4961 + - 5024 + - 4976 - uid: 17349 components: - type: Transform @@ -65177,20 +71749,96 @@ entities: - 19008 - 19006 - 15672 - - uid: 19010 + - uid: 21082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-20.5 + rot: -1.5707963267948966 rad + pos: 12.5,-52.5 parent: 2 - type: DeviceList devices: - - 15325 - - 15326 - - 15327 - - 19003 - - 8854 - - 15574 + - 11007 + - 1537 + - 1533 + - 15192 + - 15193 + - 15194 + - 10579 + - 8188 + - 5039 + - 11142 + - 11143 + - 11140 + - uid: 21083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-59.5 + parent: 2 + - type: DeviceList + devices: + - 11007 + - 1537 + - 1533 + - uid: 21906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 2520 + - 1720 + - 2342 + - 21907 + - 18410 + - 18412 + - 21817 + - 8966 + - uid: 22029 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 21907 + - 18410 + - 18412 + - 167 + - 21360 + - 17823 + - 5591 + - 5597 + - uid: 22075 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 15273 + - 15274 + - 15275 + - 10396 + - 10457 + - 10397 + - 21856 + - uid: 22601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-63.5 + parent: 2 + - type: DeviceList + devices: + - 8446 + - 8436 + - 6558 + - 4961 + - 5024 + - 4976 - proto: FireAxeCabinetFilled entities: - uid: 2521 @@ -65208,12 +71856,12 @@ entities: - uid: 868 components: - type: Transform - pos: 11.64466,24.083237 + pos: 11.606097,24.11854 parent: 2 - uid: 4820 components: - type: Transform - pos: 11.279896,24.114508 + pos: 11.376817,23.764128 parent: 2 - proto: FirelockEdge entities: @@ -65244,6 +71892,35 @@ entities: deviceLists: - 13846 - 58 + - uid: 2516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 15415 + - uid: 2540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 15415 + - uid: 3025 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 15415 - uid: 5418 components: - type: Transform @@ -65324,36 +72001,6 @@ entities: deviceLists: - 13657 - 14371 - - uid: 15257 - components: - - type: Transform - pos: 31.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 9987 - - uid: 15258 - components: - - type: Transform - pos: 32.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 9987 - - uid: 15259 - components: - - type: Transform - pos: 33.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 9987 - uid: 15357 components: - type: Transform @@ -65390,7 +72037,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17353 + - 21678 - proto: FirelockGlass entities: - uid: 115 @@ -65402,15 +72049,16 @@ entities: deviceLists: - 17351 - 17352 - - uid: 227 + - uid: 167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-50.5 + pos: 38.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18978 + - 22029 + - 22432 + - 22439 - uid: 431 components: - type: Transform @@ -65421,6 +72069,30 @@ entities: - type: Transform pos: 58.5,-49.5 parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21083 + - 9393 + - 21082 + - 2583 + - 15622 + - uid: 1537 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 + - 21083 + - 21082 + - 2583 + - 15622 - uid: 1580 components: - type: Transform @@ -65430,19 +72102,32 @@ entities: deviceLists: - 15227 - 13639 - - 15421 - 15272 - - uid: 1722 + - 15421 + - uid: 1720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-40.5 + pos: 32.5,16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13972 - - 58 - - 15163 + - 14085 + - 3820 + - 21906 + - 22438 + - uid: 2011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - 10102 + - 15907 + - 15331 + - 16008 - uid: 2282 components: - type: Transform @@ -65452,8 +72137,41 @@ entities: deviceLists: - 15227 - 13639 + - 15272 + - 15421 + - uid: 2321 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 - 15421 - 15272 + - uid: 2342 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 21906 + - 22438 + - uid: 2520 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 21906 + - 22438 - uid: 2642 components: - type: Transform @@ -65463,8 +72181,8 @@ entities: deviceLists: - 15227 - 13639 - - 15421 - 15272 + - 15421 - uid: 2693 components: - type: Transform @@ -65474,6 +72192,103 @@ entities: deviceLists: - 14047 - 14019 + - uid: 2919 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 15421 + - 15272 + - uid: 3985 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 15421 + - 15272 + - uid: 4519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - 10102 + - 15907 + - 15331 + - 16008 + - uid: 4559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - 10102 + - 15907 + - 15331 + - 16008 + - uid: 4961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16316 + - 16317 + - 9309 + - 22601 + - uid: 4976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16316 + - 16317 + - 9309 + - 22601 + - uid: 5024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16316 + - 16317 + - 9309 + - 22601 + - uid: 5039 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 - uid: 5390 components: - type: Transform @@ -65514,8 +72329,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17353 - 17351 + - 21678 - uid: 5421 components: - type: Transform @@ -65524,8 +72339,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17353 - 17351 + - 21678 - uid: 5467 components: - type: Transform @@ -65538,6 +72353,45 @@ entities: - 17349 - 16078 - 8606 + - uid: 5591 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22029 + - 22439 + - uid: 5597 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22029 + - 22439 + - uid: 6322 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 6558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - 16314 + - 9309 + - 16316 + - 22601 - uid: 7288 components: - type: Transform @@ -65548,17 +72402,54 @@ entities: - type: Transform pos: 39.5,-62.5 parent: 2 - - uid: 8854 + - uid: 8188 components: - type: Transform - pos: -16.5,-17.5 + pos: -8.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15673 - - 19010 - - 15391 - - 17658 + - 21082 + - 2583 + - 15622 + - 15621 + - 5030 + - uid: 8436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - 16314 + - 9309 + - 16316 + - 22601 + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - 16314 + - 9309 + - 16316 + - 22601 + - uid: 8966 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22432 + - 22438 - uid: 9943 components: - type: Transform @@ -65574,6 +72465,105 @@ entities: - type: Transform pos: 54.5,-54.5 parent: 2 + - uid: 10396 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 22071 + - 22075 + - uid: 10397 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 22071 + - 22075 + - uid: 10457 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 22071 + - 22075 + - uid: 10579 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - 15621 + - 5030 + - uid: 11007 + components: + - type: Transform + pos: 11.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 + - 21083 + - 21082 + - 2583 + - 15622 + - uid: 11140 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - 15621 + - 5030 + - uid: 11142 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - uid: 11143 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - uid: 11233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3687 + - 14943 - uid: 12056 components: - type: Transform @@ -65582,8 +72572,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17353 - 17351 + - 21678 - uid: 12057 components: - type: Transform @@ -65634,8 +72624,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17353 - 17352 + - 21678 - uid: 12247 components: - type: Transform @@ -65662,12 +72652,49 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,24.5 parent: 2 - - uid: 13082 + - uid: 12629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-32.5 + rot: -1.5707963267948966 rad + pos: -32.5,-10.5 parent: 2 + - uid: 13120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,20.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3687 + - 21678 + - 14943 + - uid: 13367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3687 + - 21678 + - 14943 + - uid: 13781 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 14210 - uid: 14308 components: - type: Transform @@ -65712,17 +72739,150 @@ entities: - 19009 - 16078 - 8606 - - uid: 14732 + - uid: 14931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-31.5 + rot: -1.5707963267948966 rad + pos: -46.5,-31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15331 - - 15384 - - 15388 + - 14915 + - 15862 + - uid: 14941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14915 + - 15862 + - uid: 14945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - 16062 + - 2276 + - uid: 14946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - 16062 + - 2276 + - uid: 14947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - 16062 + - 2276 + - uid: 14948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - 16062 + - 2276 + - uid: 14949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15907 + - 16008 + - 16062 + - 3315 + - 2276 + - uid: 14950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15907 + - 16008 + - 16062 + - 3315 + - 2276 + - uid: 14951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15907 + - 16008 + - 16062 + - 3315 + - 2276 + - uid: 14952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15907 + - 16008 + - 16062 + - 3315 + - 2276 + - uid: 15035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 2 - uid: 15143 components: - type: Transform @@ -65732,55 +72892,6 @@ entities: deviceLists: - 14047 - 58 - - uid: 15145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-50.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 15146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-62.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 15147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-62.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 15148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 - - 58 - - 15163 - - uid: 15149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 - - 58 - - 15163 - uid: 15150 components: - type: Transform @@ -65799,9 +72910,10 @@ entities: - type: DeviceNetwork deviceLists: - 15163 - - 15332 - - 15388 - 58 + - 15907 + - 15331 + - 16008 - uid: 15152 components: - type: Transform @@ -65809,9 +72921,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 - 58 - 15163 + - 15907 + - 15331 + - 16008 - uid: 15153 components: - type: Transform @@ -65819,42 +72933,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 - 58 - 15163 - - uid: 15154 - components: - - type: Transform - pos: -9.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 14980 - - 15197 - - 15139 - - uid: 15155 - components: - - type: Transform - pos: -8.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 14980 - - 15197 - - 15139 - - uid: 15156 - components: - - type: Transform - pos: -7.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 14980 - - 15197 - - 15139 + - 15907 + - 15331 + - 16008 - uid: 15164 components: - type: Transform @@ -65884,6 +72967,7 @@ entities: deviceLists: - 15163 - 15139 + - 14795 - uid: 15168 components: - type: Transform @@ -65893,6 +72977,7 @@ entities: deviceLists: - 15163 - 15139 + - 14795 - uid: 15169 components: - type: Transform @@ -65902,6 +72987,7 @@ entities: deviceLists: - 15163 - 15139 + - 14795 - uid: 15170 components: - type: Transform @@ -65911,6 +72997,7 @@ entities: deviceLists: - 15163 - 15139 + - 14795 - uid: 15171 components: - type: Transform @@ -65945,7 +73032,6 @@ entities: deviceLists: - 13640 - 13654 - - 13663 - 13342 - uid: 15182 components: @@ -65957,7 +73043,6 @@ entities: deviceLists: - 13640 - 13654 - - 13663 - 13342 - uid: 15183 components: @@ -65969,52 +73054,7 @@ entities: deviceLists: - 13640 - 13654 - - 13663 - 13342 - - uid: 15184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-57.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15037 - - 15074 - - 15621 - - 15622 - - uid: 15185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-57.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15037 - - 15074 - - 15621 - - 15622 - - uid: 15186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-59.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - 15188 - - uid: 15187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-59.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - 15188 - uid: 15192 components: - type: Transform @@ -66023,11 +73063,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14980 - - 15197 - - 13662 - - 13650 + - 2583 + - 21082 + - 7178 - 15202 + - 15622 - uid: 15193 components: - type: Transform @@ -66036,11 +73076,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14980 - - 15197 - - 13662 - - 13650 + - 2583 + - 21082 + - 7178 - 15202 + - 15622 - uid: 15194 components: - type: Transform @@ -66049,11 +73089,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14980 - - 15197 - - 13662 - - 13650 + - 2583 + - 21082 + - 7178 - 15202 + - 15622 - uid: 15198 components: - type: Transform @@ -66066,8 +73106,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13662 - - 13650 + - 7178 - 15202 - 15226 - 13665 @@ -66078,8 +73117,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13662 - - 13650 + - 7178 - 15202 - 15226 - 13665 @@ -66090,33 +73128,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13662 - - 13650 + - 7178 - 15202 - 15226 - 13665 - - uid: 15203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15202 - - 13662 - - 13650 - - uid: 15204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15202 - - 13662 - - 13650 - uid: 15206 components: - type: Transform @@ -66128,7 +73143,6 @@ entities: - 13665 - 13640 - 15226 - - 13663 - uid: 15207 components: - type: Transform @@ -66140,7 +73154,6 @@ entities: - 13665 - 13640 - 15226 - - 13663 - uid: 15208 components: - type: Transform @@ -66151,7 +73164,6 @@ entities: deviceLists: - 2395 - 13640 - - 13663 - 1667 - uid: 15209 components: @@ -66163,7 +73175,6 @@ entities: deviceLists: - 2395 - 13640 - - 13663 - 1667 - uid: 15210 components: @@ -66198,7 +73209,6 @@ entities: - type: DeviceNetwork deviceLists: - 13640 - - 13663 - 13639 - 15227 - uid: 15213 @@ -66210,7 +73220,6 @@ entities: - type: DeviceNetwork deviceLists: - 13640 - - 13663 - 13639 - 15227 - uid: 15214 @@ -66222,7 +73231,6 @@ entities: - type: DeviceNetwork deviceLists: - 13640 - - 13663 - 13639 - 15227 - uid: 15220 @@ -66316,140 +73324,11 @@ entities: - 13639 - 15439 - 13655 - - uid: 15230 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 14085 - - 110 - - 15422 - - 15421 - - 15272 - - uid: 15231 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 14085 - - 110 - - 15422 - - 15421 - - 15272 - - uid: 15232 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 14085 - - 110 - - 15422 - - 15421 - - 15272 - - uid: 15233 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - 15236 - - 15279 - - 38 - - uid: 15234 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - 15236 - - 15279 - - 38 - - uid: 15235 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - 15236 - - 15279 - - 38 - - uid: 15237 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 15422 - - uid: 15238 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 15422 - uid: 15239 components: - type: Transform pos: 41.5,4.5 parent: 2 - - uid: 15240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 14085 - - 9987 - - 110 - - uid: 15241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 14085 - - 9987 - - 110 - - uid: 15242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 14085 - - 9987 - - 110 - uid: 15273 components: - type: Transform @@ -66458,10 +73337,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15279 - 17348 - 17349 - - 38 + - 22071 + - 22075 - uid: 15274 components: - type: Transform @@ -66470,10 +73349,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15279 - 17348 - 17349 - - 38 + - 22071 + - 22075 - uid: 15275 components: - type: Transform @@ -66482,10 +73361,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15279 - 17348 - 17349 - - 38 + - 22071 + - 22075 - uid: 15301 components: - type: Transform @@ -66494,8 +73373,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15403 - - 13798 + - 10102 + - 15391 - uid: 15302 components: - type: Transform @@ -66505,9 +73384,7 @@ entities: - type: DeviceNetwork deviceLists: - 15391 - - 15403 - - 13798 - - 17658 + - 10102 - uid: 15315 components: - type: Transform @@ -66523,9 +73400,6 @@ entities: - type: DeviceNetwork deviceLists: - 15391 - - 15403 - - 13798 - - 17658 - uid: 15324 components: - type: Transform @@ -66535,56 +73409,6 @@ entities: - type: DeviceNetwork deviceLists: - 15391 - - 15403 - - 13798 - - 17658 - - uid: 15325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15673 - - 15331 - - 15388 - - 19010 - - uid: 15326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15673 - - 15331 - - 15388 - - 19010 - - uid: 15327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15673 - - 15331 - - 15388 - - 19010 - - uid: 15333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15331 - - 15384 - - 15388 - uid: 15337 components: - type: Transform @@ -66593,8 +73417,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 - 13846 + - 15907 + - 15331 + - 16008 - uid: 15338 components: - type: Transform @@ -66603,86 +73429,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 - 13846 - - uid: 15339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: + - 15907 - 15331 - - 15384 - - 15388 - - uid: 15340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14783 - - uid: 15341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14783 - - uid: 15343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 15386 - - 14765 - - uid: 15344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14783 - - uid: 15348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15332 - - 15386 - - 14765 - - uid: 15349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15332 - - 15386 - - 14765 + - 16008 - uid: 15354 components: - type: Transform @@ -66695,46 +73445,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-32.5 parent: 2 - - uid: 15356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-23.5 - parent: 2 - - uid: 15380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14940 - - 15385 - - uid: 15381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14940 - - 15385 - - uid: 15382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14940 - - 15385 - uid: 15393 components: - type: Transform @@ -66779,26 +73489,6 @@ entities: - 13793 - 13796 - 15415 - - uid: 15397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - 15415 - - uid: 15398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - 15415 - uid: 15429 components: - type: Transform @@ -66842,18 +73532,6 @@ entities: deviceLists: - 15439 - 13655 - - uid: 15574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15391 - - 17658 - - 15673 - - 19010 - uid: 15625 components: - type: Transform @@ -66908,7 +73586,132 @@ entities: - 19007 - 19009 - 15391 - - 17658 + - 10102 + - uid: 15860 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 15910 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 14210 + - uid: 15920 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 14210 + - uid: 15933 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15894 + - uid: 15934 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15894 + - uid: 15936 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15894 + - uid: 16318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16317 + - 15163 + - 58 + - uid: 16319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16317 + - 15163 + - 58 + - uid: 16320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16317 + - 15163 + - 58 + - uid: 16950 + components: + - type: Transform + pos: -43.5,-52.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22029 + - 22439 + - uid: 18410 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22029 + - 22438 + - 22439 + - uid: 18412 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22029 + - 22438 + - 22439 - uid: 18455 components: - type: Transform @@ -66971,18 +73774,6 @@ entities: - 19009 - 16078 - 8606 - - uid: 19003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15391 - - 17658 - - 15673 - - 19010 - uid: 19006 components: - type: Transform @@ -66994,7 +73785,7 @@ entities: - 19007 - 19009 - 15391 - - 17658 + - 10102 - uid: 19008 components: - type: Transform @@ -67006,7 +73797,129 @@ entities: - 19007 - 19009 - 15391 - - 17658 + - 10102 + - uid: 20173 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 20277 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 20393 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 21360 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22029 + - 22432 + - 22439 + - uid: 21595 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 21596 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 21817 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22432 + - 22438 + - uid: 21847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3687 + - 14943 + - uid: 21853 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10105 + - 3820 + - 14085 + - uid: 21854 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10105 + - 3820 + - 14085 + - uid: 21855 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10105 + - 3820 + - 14085 + - uid: 21856 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9147 + - 3820 + - 22075 + - uid: 21907 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22029 + - 22438 + - 22439 +- proto: Fireplace + entities: + - uid: 6141 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 - proto: FlashlightLantern entities: - uid: 4904 @@ -67014,49 +73927,26 @@ entities: - type: Transform pos: 42.44693,-29.3774 parent: 2 - - uid: 6167 - components: - - type: Transform - pos: -32.516693,-57.438038 - parent: 2 - - type: HandheldLight - toggleActionEntity: 14387 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 14387 - - type: ActionsContainer - - uid: 6188 - components: - - type: Transform - pos: -32.77724,-57.239983 - parent: 2 - - type: HandheldLight - toggleActionEntity: 14544 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 14544 - - type: ActionsContainer - uid: 11010 components: - type: Transform pos: 28.34704,-39.254337 parent: 2 + - uid: 12364 + components: + - type: Transform + pos: -29.552534,-21.321272 + parent: 2 + - uid: 15075 + components: + - type: Transform + pos: 2.4182906,-57.28451 + parent: 2 + - uid: 15156 + components: + - type: Transform + pos: 2.6579933,-57.47214 + parent: 2 - uid: 16760 components: - type: Transform @@ -67129,7 +74019,7 @@ entities: - uid: 492 components: - type: Transform - pos: -26.740911,15.543136 + pos: -23.535683,15.622428 parent: 2 - type: HandheldLight toggleActionEntity: 494 @@ -67152,26 +74042,33 @@ entities: - type: Transform pos: -24.681618,-50.804417 parent: 2 +- proto: Floodlight + entities: + - uid: 88 + components: + - type: Transform + pos: -9.483673,-93.49975 + parent: 2 + - type: HandheldLight + toggleActionEntity: 121 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 121 + - type: ActionsContainer - proto: FloorDrain entities: - - uid: 296 + - uid: 1143 components: - type: Transform - pos: -51.5,-33.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 297 - components: - - type: Transform - pos: -51.5,-27.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 712 - components: - - type: Transform - pos: -43.5,-47.5 + pos: 14.5,3.5 parent: 2 - type: Fixtures fixtures: {} @@ -67183,20 +74080,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 3142 - components: - - type: Transform - pos: -47.5,-31.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 4108 - components: - - type: Transform - pos: -30.5,-35.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 4366 components: - type: Transform @@ -67212,21 +74095,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 8162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-45.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 9416 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 9834 components: - type: Transform @@ -67235,10 +74103,39 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 13041 + - uid: 12124 components: - type: Transform - pos: -36.5,-2.5 + pos: -32.5,-35.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 12929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-31.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13019 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14062 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14126 + components: + - type: Transform + pos: -48.5,-45.5 parent: 2 - type: Fixtures fixtures: {} @@ -67249,11 +74146,18 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 15897 + - uid: 15702 + components: + - type: Transform + pos: -43.5,-23.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 19148 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-43.5 + pos: -5.5,-45.5 parent: 2 - type: Fixtures fixtures: {} @@ -67266,16 +74170,6 @@ entities: parent: 2 - type: Stack count: 30 -- proto: FloorTileItemDarkPavementVertical - entities: - - uid: 11940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.51076,5.6010513 - parent: 2 - - type: Stack - count: 30 - proto: FloorTileItemLino entities: - uid: 7397 @@ -67285,124 +74179,64 @@ entities: parent: 2 - type: Stack count: 30 -- proto: FloorWaterEntity - entities: - - uid: 6987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 2 - - uid: 8231 - components: - - type: Transform - pos: -39.5,-42.5 - parent: 2 - - uid: 8266 - components: - - type: Transform - pos: -40.5,-42.5 - parent: 2 - proto: FloraRockSolid entities: - - uid: 17948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.492828,-6.4149537 - parent: 2 - - uid: 19549 - components: - - type: Transform - pos: 12.574104,-1.440425 - parent: 2 - uid: 19552 components: - type: Transform pos: -10.482171,6.58344 parent: 2 - - uid: 19556 - components: - - type: Transform - pos: 3.4913387,7.572454 - parent: 2 - - uid: 19558 - components: - - type: Transform - pos: 9.461854,1.5700341 - parent: 2 - uid: 19971 components: - type: Transform pos: -10.482171,3.5846229 parent: 2 - - uid: 19972 - components: - - type: Transform - pos: 22.556618,18.605299 - parent: 2 - - uid: 20653 - components: - - type: Transform - pos: 27.553556,21.553436 - parent: 2 - proto: FloraTree entities: - - uid: 1550 + - uid: 4626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.792082,16.220356 + pos: 7.666235,-51.78729 parent: 2 - - uid: 4620 + - uid: 4637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.873345,-6.103357 + pos: -2.334277,-51.76644 parent: 2 -- proto: FloraTreeChristmas01 + - uid: 4638 + components: + - type: Transform + pos: -4.6896114,-51.756016 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: 5.37343,-51.964497 + parent: 2 + - uid: 22274 + components: + - type: Transform + pos: -16.095478,15.975274 + parent: 2 + - uid: 22275 + components: + - type: Transform + pos: -16.178854,14.151091 + parent: 2 + - uid: 22276 + components: + - type: Transform + pos: -10.780342,16.194176 + parent: 2 +- proto: FloraTreeLarge entities: - - uid: 4951 + - uid: 6630 components: - type: Transform - pos: -15.944529,13.000485 - parent: 2 - - uid: 9929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.551569,-41.487434 - parent: 2 - - uid: 12864 - components: - - type: Transform - pos: -10.685584,16.372208 - parent: 2 - - uid: 13195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.497183,30.49985 - parent: 2 -- proto: FloraTreeChristmas02 - entities: - - uid: 4896 - components: - - type: Transform - pos: -8.998787,-40.16732 + pos: -19.469257,30.462284 parent: 2 - proto: FloraTreeStump entities: - - uid: 3262 - components: - - type: Transform - pos: -42.059097,-42.255505 - parent: 2 - - uid: 3439 - components: - - type: Transform - pos: -40.14148,-41.577953 - parent: 2 - uid: 8044 components: - type: Transform @@ -67415,6 +74249,18 @@ entities: rot: 1.5707963267948966 rad pos: -10.62285,14.114729 parent: 2 + - uid: 12001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.760044,15.310355 + parent: 2 + - uid: 21121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.83384,-53.40124 + parent: 2 - proto: FoamCutlass entities: - uid: 3601 @@ -67429,16 +74275,21 @@ entities: - type: Transform pos: -27.58403,0.63008094 parent: 2 - - uid: 3952 + - uid: 1382 components: - type: Transform - pos: 18.524017,-36.404434 + pos: -29.390694,-45.42049 parent: 2 - uid: 4502 components: - type: Transform pos: 35.670486,-41.46836 parent: 2 + - uid: 4720 + components: + - type: Transform + pos: 22.613304,-44.33881 + parent: 2 - uid: 5222 components: - type: Transform @@ -67469,16 +74320,21 @@ entities: - type: Transform pos: -15.2811,-48.58085 parent: 2 + - uid: 10399 + components: + - type: Transform + pos: -28.344467,-26.498697 + parent: 2 + - uid: 10918 + components: + - type: Transform + pos: 20.540285,-41.386803 + parent: 2 - uid: 13895 components: - type: Transform pos: 28.405712,10.798362 parent: 2 - - uid: 16030 - components: - - type: Transform - pos: -33.490604,-32.45252 - parent: 2 - uid: 16142 components: - type: Transform @@ -67486,10 +74342,10 @@ entities: parent: 2 - proto: FoodBakedCookieOatmeal entities: - - uid: 12714 + - uid: 19237 components: - type: Transform - pos: 15.401459,-57.43562 + pos: 13.387823,-59.475697 parent: 2 - proto: FoodBanana entities: @@ -67542,40 +74398,31 @@ entities: - type: Transform pos: 1.4228268,-29.25675 parent: 2 -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 7420 - components: - - type: Transform - pos: 11.683109,-13.410268 - parent: 2 - proto: FoodBoxDonut entities: - uid: 9642 components: - type: Transform - pos: -27.510775,-7.9826107 + pos: -28.571066,-7.4939437 parent: 2 - proto: FoodBoxPizzaFilled entities: - uid: 12863 components: - type: Transform - pos: -24.3443,-48.2645 + pos: -26.574448,-48.267326 parent: 2 -- proto: FoodCakeChristmas +- proto: FoodBurgerCheese entities: - - uid: 20217 + - uid: 2928 components: - type: Transform - pos: -10.4618225,-39.519108 + pos: 13.395158,-10.606978 parent: 2 -- proto: FoodCakeChristmasSlice - entities: - - uid: 20218 + - uid: 3150 components: - type: Transform - pos: -7.4209366,-39.35231 + pos: 12.649092,-9.787528 parent: 2 - proto: FoodCartHot entities: @@ -67590,19 +74437,40 @@ entities: - uid: 12868 components: - type: Transform - pos: -23.446165,-48.288555 - parent: 2 - - uid: 12889 - components: - - type: Transform - pos: -40.66454,-50.845734 + pos: -27.418615,-45.588383 parent: 2 - proto: FoodCondimentBottleHotsauce entities: - uid: 12872 components: - type: Transform - pos: -23.70671,-48.236435 + pos: -27.772959,-45.411175 + parent: 2 +- proto: FoodCondimentBottleKetchup + entities: + - uid: 3083 + components: + - type: Transform + pos: 12.110945,-10.631439 + parent: 2 +- proto: FoodCondimentPacketAstrotame + entities: + - uid: 6714 + components: + - type: Transform + pos: 20.47634,-9.86513 + parent: 2 +- proto: FoodCondimentPacketSugar + entities: + - uid: 6652 + components: + - type: Transform + pos: 20.585714,-9.67763 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 19.398214,-9.818255 parent: 2 - proto: FoodContainerEgg entities: @@ -67632,6 +74500,18 @@ entities: - type: Transform pos: -13.635734,-17.245079 parent: 2 +- proto: FoodMealFries + entities: + - uid: 2931 + components: + - type: Transform + pos: 12.857012,-10.447981 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 12.318865,-10.1666765 + parent: 2 - proto: FoodMeat entities: - uid: 3383 @@ -67644,13 +74524,6 @@ entities: - type: Transform pos: -2.6524074,-32.45494 parent: 2 -- proto: FoodMeatHuman - entities: - - uid: 6703 - components: - - type: Transform - pos: 20.478777,-53.488373 - parent: 2 - proto: FoodOnion entities: - uid: 1024 @@ -67672,22 +74545,10 @@ entities: parent: 2 - proto: FoodPlateSmallPlastic entities: - - uid: 12869 + - uid: 6443 components: - type: Transform - pos: -23.386118,-48.16896 - parent: 2 - - uid: 15360 - components: - - type: Transform - pos: 15.448334,-57.357494 - parent: 2 -- proto: FoodPlateSmallTrash - entities: - - uid: 4344 - components: - - type: Transform - pos: 11.441256,-12.588194 + pos: 13.408668,-59.42358 parent: 2 - proto: FoodPlateTin entities: @@ -67708,11 +74569,6 @@ entities: - type: Transform pos: -8.369396,12.742838 parent: 2 - - uid: 7431 - components: - - type: Transform - pos: -42.406033,-41.509243 - parent: 2 - proto: FoodShakerPepper entities: - uid: 12891 @@ -67739,6 +74595,18 @@ entities: - type: Transform pos: 87.53548,-29.466497 parent: 2 + - uid: 21604 + components: + - type: Transform + pos: -46.263836,-51.228725 + parent: 2 +- proto: FoodTinMRE + entities: + - uid: 22107 + components: + - type: Transform + pos: 39.421116,20.68132 + parent: 2 - proto: FoodTinMRETrash entities: - uid: 13164 @@ -67751,13 +74619,40 @@ entities: - type: Transform pos: 76.46632,-46.470753 parent: 2 + - uid: 21603 + components: + - type: Transform + pos: -52.670994,-55.272808 + parent: 2 + - uid: 22488 + components: + - type: Transform + pos: 38.43058,20.625526 + parent: 2 - proto: FoodTinPeachesMaint entities: + - uid: 2963 + components: + - type: Transform + pos: 14.418226,-6.5569444 + parent: 2 - uid: 3941 components: - type: Transform pos: 1.491024,-28.265974 parent: 2 + - uid: 18407 + components: + - type: Transform + pos: 30.276194,24.49647 + parent: 2 +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 2978 + components: + - type: Transform + pos: 14.2359705,-6.420357 + parent: 2 - proto: FoodTinPeachesTrash entities: - uid: 13161 @@ -67770,12 +74665,19 @@ entities: - type: Transform pos: 86.51489,-16.43149 parent: 2 -- proto: FoodTomato +- proto: Football entities: - - uid: 18586 + - uid: 13188 components: - type: Transform - pos: 3.5404968,-19.16355 + pos: 14.401545,-6.1120505 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 21675 + components: + - type: Transform + pos: 38.637722,20.57708 parent: 2 - proto: GameMasterCircuitBoard entities: @@ -67791,25 +74693,6 @@ entities: - type: Transform pos: -13.562385,-8.409812 parent: 2 - - uid: 6957 - components: - - type: Transform - pos: -26.330072,-21.414108 - parent: 2 - - uid: 14857 - components: - - type: Transform - pos: -6.3268914,-15.33333 - parent: 2 -- proto: GasFilter - entities: - - uid: 4998 - components: - - type: Transform - pos: -33.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - proto: GasFilterFlipped entities: - uid: 1575 @@ -67850,6 +74733,14 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-45.5 parent: 2 + - uid: 22602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasMinerCarbonDioxide entities: - uid: 1456 @@ -67885,12 +74776,14 @@ entities: - type: Transform pos: 29.5,-44.5 parent: 2 - - uid: 6713 + - uid: 13007 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-7.5 + pos: -51.5,-37.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasMixerFlipped entities: - uid: 1601 @@ -67901,6 +74794,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 16423 components: - type: Transform @@ -67933,39 +74834,38 @@ entities: - type: Transform pos: -7.5,4.5 parent: 2 - - uid: 2016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 2 - - uid: 4429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4554 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-44.5 parent: 2 + - uid: 6436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 - uid: 7680 components: - type: Transform pos: 0.5,4.5 parent: 2 -- proto: GasPassiveVent - entities: - - uid: 1648 + - uid: 10015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 + pos: 8.5,2.5 parent: 2 +- proto: GasPassiveVent + entities: - uid: 2004 components: - type: Transform @@ -68001,32 +74901,42 @@ entities: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 2053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 2 - uid: 2562 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-31.5 parent: 2 - - uid: 4431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4546 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-46.5 parent: 2 + - uid: 6850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9527 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 - uid: 16419 components: - type: Transform @@ -68133,14 +75043,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1784 + - uid: 1650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1754 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-12.5 + pos: -28.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 1857 components: - type: Transform @@ -68177,14 +75103,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,6.5 parent: 2 - - uid: 2117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 2428 components: - type: Transform @@ -68193,33 +75111,65 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3105 + - uid: 2436 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2437 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-10.5 + pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3118 + color: '#FF1212FF' + - uid: 2442 components: - type: Transform - pos: 7.5,-10.5 + rot: -1.5707963267948966 rad + pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3150 + color: '#FF1212FF' + - uid: 2589 components: - type: Transform - pos: 8.5,-9.5 + pos: -5.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3249 + color: '#FF1212FF' + - uid: 2596 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-21.5 + pos: 8.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 3108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -68260,37 +75210,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4443 + - uid: 4439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4488 - components: - - type: Transform - pos: 25.5,1.5 + pos: -36.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4982 + - uid: 4572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-23.5 + pos: -33.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4994 + color: '#0055CCFF' + - uid: 4879 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5007 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-23.5 + pos: -8.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF1212FF' - uid: 5388 components: - type: Transform @@ -68321,49 +75269,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6042 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-44.5 parent: 2 - - uid: 6458 + - uid: 6553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-40.5 + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -68375,18 +75291,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6692 + - uid: 6675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6705 - components: - - type: Transform - pos: 17.5,-33.5 + pos: -7.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -68405,6 +75313,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7006 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 7552 components: - type: Transform @@ -68412,14 +75327,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8177 + - uid: 7608 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7802 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-21.5 + pos: 31.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF1212FF' + - uid: 8210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8248 components: - type: Transform @@ -68428,10 +75358,58 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9393 + - uid: 8582 components: - type: Transform - pos: 10.5,-49.5 + rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8729 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -68443,25 +75421,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9466 + - uid: 9518 components: - type: Transform - pos: 18.5,-44.5 + pos: 18.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9467 + - uid: 9534 components: - type: Transform - pos: 19.5,-42.5 + rot: -1.5707963267948966 rad + pos: 23.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9515 + - uid: 9599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-38.5 + rot: -1.5707963267948966 rad + pos: -27.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -68489,6 +75468,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10254 components: - type: Transform @@ -68497,6 +75490,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10438 components: - type: Transform @@ -68513,6 +75514,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10775 components: - type: Transform @@ -68521,6 +75530,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10976 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11262 components: - type: Transform @@ -68529,6 +75561,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11296 components: - type: Transform @@ -68537,67 +75577,129 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 2 - - uid: 13072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13075 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13394 + - uid: 11611 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-22.5 + pos: -3.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11935 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12442 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-38.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13501 components: - type: Transform @@ -68660,14 +75762,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13830 components: - type: Transform @@ -68675,30 +75769,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13956 components: - type: Transform @@ -68760,19 +75830,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14056 + - uid: 14143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-2.5 + pos: -34.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -68847,26 +75917,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14763 - components: - - type: Transform - pos: -28.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14872 + - uid: 14866 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-41.5 + pos: -43.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -68878,51 +75933,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-43.5 + pos: -33.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14945 + - uid: 14899 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-25.5 + pos: -38.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -68987,26 +76009,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15190 + - uid: 15261 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15253 - components: - - type: Transform - pos: 33.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,40.5 + pos: -29.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -69033,30 +76040,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16377 + - uid: 16311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16312 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-15.5 + pos: -32.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 16427 components: - type: Transform @@ -69087,21 +76086,14 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,-12.5 parent: 2 - - uid: 16579 + - uid: 17291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-16.5 + rot: 1.5707963267948966 rad + pos: 27.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16580 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 17407 components: - type: Transform @@ -69126,21 +76118,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17420 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 17431 components: - type: Transform @@ -69195,20 +76172,186 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeBroken - entities: - - uid: 1089 + - uid: 21065 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-12.5 + pos: -3.5,-57.5 parent: 2 - - uid: 1095 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21075 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22242 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22314 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22318 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-11.5 + pos: 16.5,19.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22435 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 676 @@ -69218,27 +76361,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1266 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2649 - components: - - type: Transform - pos: 14.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4241 - components: - - type: Transform - pos: 11.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4331 components: - type: Transform @@ -69246,13 +76368,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4470 - components: - - type: Transform - pos: 9.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4682 components: - type: Transform @@ -69260,20 +76375,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4980 + - uid: 4771 components: - type: Transform - pos: -34.5,-21.5 + pos: -23.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4981 - components: - - type: Transform - pos: -33.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 6191 components: - type: Transform @@ -69281,20 +76389,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7455 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8073 - components: - - type: Transform - pos: -50.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8288 components: - type: Transform @@ -69302,13 +76396,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9141 + - uid: 8856 components: - type: Transform - pos: -51.5,-31.5 + pos: 30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9417 + components: + - type: Transform + pos: 11.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9537 + components: + - type: Transform + pos: 9.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10981 components: - type: Transform @@ -69316,6 +76424,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11386 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11471 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11904 + components: + - type: Transform + pos: -43.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12007 + components: + - type: Transform + pos: -44.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13648 components: - type: Transform @@ -69323,13 +76459,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13766 - components: - - type: Transform - pos: 24.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13836 components: - type: Transform @@ -69337,13 +76466,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13923 - components: - - type: Transform - pos: -28.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13939 components: - type: Transform @@ -69365,6 +76487,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14461 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14557 components: - type: Transform @@ -69400,6 +76529,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' +- proto: GasPipeSensor + entities: + - uid: 10680 + components: + - type: MetaData + name: gas pipe sensor (Cryopods) + - type: Transform + pos: -43.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: Label + currentLabel: Cryopods + - type: NameModifier + baseName: gas pipe sensor - proto: GasPipeSensorDistribution entities: - uid: 1139 @@ -69411,20 +76555,6 @@ entities: color: '#0055CCFF' - proto: GasPipeSensorMixedAir entities: - - uid: 9724 - components: - - type: MetaData - name: gas pipe sensor (Cryopods) - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 2 - - type: Label - currentLabel: Cryopods - - type: AtmosPipeColor - color: '#03FCD3FF' - - type: NameModifier - baseName: gas pipe sensor - uid: 9725 components: - type: MetaData @@ -69439,24 +76569,26 @@ entities: color: '#03FCD3FF' - type: NameModifier baseName: gas pipe sensor -- proto: GasPipeSensorTEGHot +- proto: GasPipeSensorTEGCold entities: - - uid: 6714 + - uid: 1460 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 + pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 8669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeSensorWaste entities: - uid: 1556 @@ -69476,13 +76608,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 67 + - uid: 43 components: - type: Transform - pos: -44.5,-35.5 + rot: 1.5707963267948966 rad + pos: -35.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 2 - uid: 74 components: - type: Transform @@ -69491,6 +76630,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 107 components: - type: Transform @@ -69499,6 +76654,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 128 components: - type: Transform @@ -69515,35 +76678,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 195 + - uid: 256 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-54.5 + pos: -51.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -69571,11 +76710,64 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 445 + - uid: 424 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 616 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-19.5 + pos: -22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -69587,6 +76779,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 682 components: - type: Transform @@ -69595,6 +76803,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 696 components: - type: Transform @@ -69610,6 +76826,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 777 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 846 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 889 components: - type: Transform @@ -69617,14 +76863,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1080 components: - type: Transform @@ -69641,6 +76879,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 2 - uid: 1130 components: - type: Transform @@ -69649,12 +76901,43 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1518 + - uid: 1183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-3.5 + pos: 4.5,-6.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1566 components: - type: Transform @@ -69744,14 +77027,29 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 2 + - uid: 1627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-9.5 + pos: -4.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF1212FF' + - uid: 1640 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1646 components: - type: Transform @@ -69759,31 +77057,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1654 + - uid: 1648 components: - type: Transform - pos: -44.5,-26.5 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1660 + - uid: 1681 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-12.5 + pos: -0.5,-12.5 parent: 2 - - uid: 1672 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1702 components: - type: Transform - pos: -44.5,-25.5 + pos: -8.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1706 + - uid: 1710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-34.5 + pos: 2.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -69803,12 +77103,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 2 - uid: 1737 components: - type: Transform @@ -69817,6 +77111,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1757 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1780 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1786 components: - type: Transform @@ -69877,80 +77201,46 @@ entities: rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 - - uid: 1798 + - uid: 1811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-29.5 + rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1836 + - uid: 1889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1895 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-30.5 + pos: -2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1838 - components: - - type: Transform - pos: -51.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1843 - components: - - type: Transform - pos: -51.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1863 - components: - - type: Transform - pos: -51.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1874 - components: - - type: Transform - pos: -51.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1910 - components: - - type: Transform - pos: -50.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1913 - components: - - type: Transform - pos: -45.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#03FCD3FF' - uid: 1968 components: - type: Transform @@ -70167,14 +77457,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 2 - - uid: 2029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2035 components: - type: Transform @@ -70276,35 +77558,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2104 + - uid: 2117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-11.5 + rot: -1.5707963267948966 rad + pos: 10.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 + rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -70315,14 +77589,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2135 components: - type: Transform @@ -70346,14 +77612,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2150 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-12.5 + pos: 7.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#03FCD3FF' - uid: 2155 components: - type: Transform @@ -70402,6 +77676,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2243 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2265 components: - type: Transform @@ -70456,13 +77737,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2387 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2390 components: - type: Transform @@ -70478,12 +77752,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2396 + - uid: 2399 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-11.5 + pos: -6.5,-13.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2402 components: - type: Transform @@ -70492,20 +77768,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2403 + - uid: 2435 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-12.5 - parent: 2 - - uid: 2415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-11.5 + pos: -1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF1212FF' - uid: 2440 components: - type: Transform @@ -70514,12 +77784,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2450 + - uid: 2441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2446 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-12.5 + pos: -3.5,-15.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2490 components: - type: Transform @@ -70536,30 +77816,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2518 + - uid: 2495 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-31.5 + pos: 2.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2519 + color: '#FF1212FF' + - uid: 2517 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-35.5 + pos: 5.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 2524 components: - type: Transform @@ -70568,13 +77840,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2525 - components: - - type: Transform - pos: -44.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2530 components: - type: Transform @@ -70583,59 +77848,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2537 + - uid: 2590 components: - type: Transform - pos: -44.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2545 - components: - - type: Transform - pos: -44.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2567 - components: - - type: Transform - pos: -44.5,-36.5 + rot: 3.141592653589793 rad + pos: 8.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-11.5 + rot: -1.5707963267948966 rad + pos: 9.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + rot: -1.5707963267948966 rad + pos: -29.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-1.5 + rot: -1.5707963267948966 rad + pos: -27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 2602 components: - type: Transform @@ -70647,27 +77891,27 @@ entities: - uid: 2611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-1.5 + rot: -1.5707963267948966 rad + pos: -32.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 2613 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-0.5 + rot: -1.5707963267948966 rad + pos: -32.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-0.5 + rot: -1.5707963267948966 rad + pos: -31.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 2623 components: - type: Transform @@ -70692,29 +77936,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2805 - components: - - type: Transform - pos: -30.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2821 components: - type: Transform @@ -70723,43 +77944,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2839 + - uid: 2894 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2916 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-31.5 + pos: 7.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2858 + color: '#03FCD3FF' + - uid: 2958 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-31.5 + pos: 26.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -70779,14 +77991,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2979 components: - type: Transform @@ -70825,14 +78029,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3049 components: - type: Transform @@ -70847,6 +78043,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 3080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 3096 components: - type: Transform @@ -70863,38 +78067,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3113 + - uid: 3170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 + pos: 9.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 3173 components: - type: Transform @@ -70903,20 +78082,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3181 + - uid: 3176 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-51.5 + rot: -1.5707963267948966 rad + pos: 10.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 3238 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-31.5 parent: 2 + - uid: 3239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 3377 components: - type: Transform @@ -70924,13 +78119,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3394 - components: - - type: Transform - pos: -50.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 3397 components: - type: Transform @@ -70963,30 +78151,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 3503 components: - type: Transform @@ -70995,13 +78159,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3583 + - uid: 3526 components: - type: Transform - pos: -50.5,-27.5 + rot: -1.5707963267948966 rad + pos: -4.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 3528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3641 components: - type: Transform @@ -71010,13 +78183,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3957 + - uid: 3723 components: - type: Transform - pos: -35.5,-26.5 + rot: -1.5707963267948966 rad + pos: -6.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' + - uid: 4009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4056 components: - type: Transform @@ -71046,13 +78228,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4183 - components: - - type: Transform - pos: 10.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4239 components: - type: Transform @@ -71068,14 +78243,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4255 components: - type: Transform @@ -71108,11 +78275,43 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4348 + - uid: 4350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-45.5 + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -71159,9 +78358,11 @@ entities: - uid: 4436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-9.5 + rot: 3.141592653589793 rad + pos: -36.5,-13.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4437 components: - type: Transform @@ -71169,22 +78370,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-10.5 + pos: -38.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' + - uid: 4443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4459 components: - type: Transform @@ -71201,6 +78410,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4467 components: - type: Transform @@ -71209,13 +78426,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4519 + - uid: 4488 components: - type: Transform - pos: 2.5,-6.5 + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' + - uid: 4491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4521 components: - type: Transform @@ -71228,36 +78462,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-44.5 parent: 2 - - uid: 4538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 2 - - uid: 4559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 4591 components: - type: Transform @@ -71273,21 +78477,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4624 + - uid: 4610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-54.5 + pos: 11.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4626 + - uid: 4641 components: - type: Transform - pos: -50.5,-33.5 + pos: -6.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' + - uid: 4652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4660 components: - type: Transform @@ -71296,6 +78507,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4664 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4665 components: - type: Transform @@ -71304,14 +78522,75 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4694 + - uid: 4676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-27.5 + pos: -29.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4690 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4692 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4710 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4736 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4743 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4760 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4780 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4781 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 - uid: 4850 components: - type: Transform @@ -71320,6 +78599,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4887 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4889 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4896 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4928 + components: + - type: Transform + pos: -8.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4941 components: - type: Transform @@ -71328,93 +78635,126 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4986 components: - type: Transform - pos: -35.5,-25.5 + rot: -1.5707963267948966 rad + pos: -33.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 4988 components: - type: Transform - pos: -34.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4990 - components: - - type: Transform - pos: -36.5,-23.5 + rot: -1.5707963267948966 rad + pos: -30.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4993 - components: - - type: Transform - pos: -36.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4995 - components: - - type: Transform - pos: -36.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4996 - components: - - type: Transform - pos: -36.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5000 + - uid: 5028 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-17.5 + pos: -27.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5068 + - uid: 5031 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5040 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5046 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5047 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-17.5 + pos: -26.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5133 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5208 + - uid: 5172 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-43.5 + pos: -20.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -71426,14 +78766,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 5391 components: - type: Transform @@ -71456,14 +78788,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5469 components: - type: Transform @@ -71480,13 +78804,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5519 + - uid: 5525 components: - type: Transform - pos: -30.5,-52.5 + rot: -1.5707963267948966 rad + pos: 10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 5561 components: - type: Transform @@ -71502,31 +78827,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5591 + - uid: 5590 components: - type: Transform - pos: -29.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5596 - components: - - type: Transform - pos: -30.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5621 - components: - - type: Transform - pos: -29.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5650 - components: - - type: Transform - pos: -29.5,-54.5 + rot: -1.5707963267948966 rad + pos: -24.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -71567,32 +78872,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5747 - components: - - type: Transform - pos: -29.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5750 - components: - - type: Transform - pos: -30.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5757 + - uid: 5746 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-10.5 + pos: -25.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 5844 + - uid: 5819 components: - type: Transform - pos: -28.5,-48.5 + pos: -29.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -71604,30 +78903,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 6031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 6118 components: - type: Transform @@ -71636,6 +78911,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6157 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6174 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6187 components: - type: Transform @@ -71666,6 +78955,94 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 6308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6314 + components: + - type: Transform + pos: 11.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6315 + components: + - type: Transform + pos: 9.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6318 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6319 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6336 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6337 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6342 + components: + - type: Transform + pos: 11.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6344 + components: + - type: Transform + pos: 11.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6358 components: - type: Transform @@ -71674,6 +79051,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6366 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6459 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6460 + components: + - type: Transform + pos: 9.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6461 components: - type: Transform @@ -71681,6 +79089,87 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6467 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6508 + components: + - type: Transform + pos: 9.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6509 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6528 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6531 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6546 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 6552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6565 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6590 components: - type: Transform @@ -71796,22 +79285,52 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6678 + - uid: 6649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-1.5 + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6695 + - uid: 6650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-29.5 + rot: -1.5707963267948966 rad + pos: -22.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6656 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6674 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6701 components: - type: Transform @@ -71820,22 +79339,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6706 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-10.5 + pos: -36.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 6716 + color: '#0055CCFF' + - uid: 6708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-10.5 + rot: 3.141592653589793 rad + pos: 32.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' + - uid: 6709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6718 components: - type: Transform @@ -71860,13 +79403,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6737 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 6749 components: - type: Transform @@ -71989,6 +79525,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6891 components: - type: Transform @@ -72004,6 +79548,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6958 components: - type: Transform @@ -72012,6 +79564,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6984 components: - type: Transform @@ -72020,14 +79580,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6986 + - uid: 7018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-42.5 + pos: 30.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 7046 components: - type: Transform @@ -72051,6 +79610,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7104 components: - type: Transform @@ -72059,6 +79626,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7220 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7245 components: - type: Transform @@ -72091,30 +79673,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7451 components: - type: Transform @@ -72122,149 +79680,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7463 - components: - - type: Transform - pos: -35.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7464 - components: - - type: Transform - pos: -36.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7467 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7473 + - uid: 7510 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7476 - components: - - type: Transform - pos: -30.5,-31.5 + pos: 17.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7491 + - uid: 7517 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7494 - components: - - type: Transform - pos: -30.5,-28.5 + pos: 17.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7495 + - uid: 7522 components: - type: Transform - pos: -30.5,-27.5 + rot: 1.5707963267948966 rad + pos: 15.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -72276,6 +79712,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7825 components: - type: Transform @@ -72298,6 +79750,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7863 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7971 components: - type: Transform @@ -72306,199 +79797,130 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7982 + - uid: 8003 + components: + - type: Transform + pos: 11.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8004 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-34.5 + pos: 9.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8009 + components: + - type: Transform + pos: 9.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8018 + components: + - type: Transform + pos: -6.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8123 - components: - - type: Transform - pos: -44.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8124 - components: - - type: Transform - pos: -44.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8130 - components: - - type: Transform - pos: -43.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8132 - components: - - type: Transform - pos: -43.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8181 - components: - - type: Transform - pos: -45.5,-31.5 + pos: 30.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8187 components: - type: Transform - pos: -8.5,-54.5 + pos: -6.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8191 + components: + - type: Transform + pos: 11.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8205 + components: + - type: Transform + pos: 9.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8188 + - uid: 8206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-53.5 + pos: 11.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8214 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8219 + components: + - type: Transform + pos: -8.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8210 + - uid: 8220 components: - type: Transform - pos: -8.5,-55.5 + pos: 9.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-54.5 + pos: 9.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 8264 components: - type: Transform @@ -72513,19 +79935,32 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8409 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8464 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-53.5 + pos: -18.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8469 + components: + - type: Transform + pos: -6.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8471 + components: + - type: Transform + pos: 30.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -72552,10 +79987,215 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8589 + - uid: 8501 components: - type: Transform - pos: -43.5,-25.5 + pos: -29.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8602 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 8676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8693 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8708 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -72566,6 +80206,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8990 components: - type: Transform @@ -72574,58 +80222,73 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9266 + - uid: 9084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-51.5 + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9128 + components: + - type: Transform + pos: 33.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9291 + - uid: 9132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9176 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-30.5 + pos: 33.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9295 + - uid: 9209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-50.5 + rot: 1.5707963267948966 rad + pos: 18.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9298 + - uid: 9283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-49.5 + rot: 1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9335 + components: + - type: Transform + pos: 32.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9326 + - uid: 9336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9332 - components: - - type: Transform - pos: -43.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-29.5 + rot: -1.5707963267948966 rad + pos: 30.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -72656,11 +80319,10 @@ entities: - uid: 9371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-43.5 + pos: 30.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 9372 components: - type: Transform @@ -72717,30 +80379,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9394 + - uid: 9387 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-49.5 + pos: 28.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9396 + - uid: 9409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9416 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-49.5 + pos: 15.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9397 + - uid: 9427 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-49.5 + pos: -40.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 9429 components: - type: Transform @@ -72757,14 +80427,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9432 components: - type: Transform @@ -72789,14 +80451,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9437 components: - type: Transform @@ -72856,22 +80510,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9456 components: - type: Transform @@ -72880,22 +80518,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9459 components: - type: Transform @@ -72952,6 +80574,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9491 components: - type: Transform @@ -72984,118 +80614,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9501 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9505 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9506 - components: - - type: Transform - pos: 17.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9510 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9511 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9512 - components: - - type: Transform - pos: 15.5,-33.5 + pos: 31.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -73107,46 +80630,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-38.5 + rot: 3.141592653589793 rad + pos: 17.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9518 + - uid: 9530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-38.5 + rot: 3.141592653589793 rad + pos: 31.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9519 + - uid: 9545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 + pos: 33.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 9579 components: - type: Transform @@ -73179,6 +80685,52 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9639 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9666 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9955 components: - type: Transform @@ -73203,6 +80755,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10120 components: - type: Transform @@ -73211,6 +80771,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10153 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10166 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10170 components: - type: Transform @@ -73219,6 +80809,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10262 components: - type: Transform @@ -73235,6 +80857,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10488 components: - type: Transform @@ -73243,6 +80873,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10538 components: - type: Transform @@ -73251,6 +80905,158 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10572 + components: + - type: Transform + pos: 11.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10583 + components: + - type: Transform + pos: 9.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10585 + components: + - type: Transform + pos: 9.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10587 + components: + - type: Transform + pos: 11.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10600 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10601 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10602 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10603 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10654 components: - type: Transform @@ -73259,10 +81065,48 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10657 + - uid: 10670 components: - type: Transform - pos: -44.5,-34.5 + pos: 21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10760 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10761 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -73282,6 +81126,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10964 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11055 components: - type: Transform @@ -73298,6 +81181,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11073 components: - type: Transform @@ -73306,14 +81197,66 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11112 + - uid: 11099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-17.5 + pos: -28.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11126 + components: + - type: Transform + pos: -6.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11154 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11156 + components: + - type: Transform + pos: 11.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11159 + components: + - type: Transform + pos: 11.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11188 components: - type: Transform @@ -73330,6 +81273,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11215 components: - type: Transform @@ -73337,6 +81288,43 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11276 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11300 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11309 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11339 components: - type: Transform @@ -73367,14 +81355,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 11387 components: - type: Transform @@ -73391,11 +81371,51 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11430 + - uid: 11426 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-7.5 + pos: -31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -73407,6 +81427,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11592 components: - type: Transform @@ -73415,6 +81467,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11605 + components: + - type: Transform + pos: 9.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11627 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11638 components: - type: Transform @@ -73423,6 +81497,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11639 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11645 components: - type: Transform @@ -73455,6 +81536,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11826 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11893 components: - type: Transform @@ -73463,6 +81551,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11902 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11916 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11949 components: - type: Transform @@ -73519,6 +81621,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12051 components: - type: Transform @@ -73527,14 +81637,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 12055 components: - type: Transform @@ -73543,14 +81645,101 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12231 + - uid: 12061 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-29.5 + pos: 9.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12115 + components: + - type: Transform + pos: 2.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12177 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12188 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12189 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12190 + components: + - type: Transform + pos: 9.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12195 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12201 + components: + - type: Transform + pos: 9.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12204 + components: + - type: Transform + pos: -8.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12280 components: - type: Transform @@ -73566,17 +81755,334 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12447 + - uid: 12388 components: - type: Transform - pos: 33.5,0.5 + rot: -1.5707963267948966 rad + pos: -35.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12450 + - uid: 12393 components: - type: Transform - pos: 31.5,2.5 + rot: -1.5707963267948966 rad + pos: -36.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12455 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12456 + components: + - type: Transform + pos: -42.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12457 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12460 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12521 + components: + - type: Transform + pos: 0.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -73595,14 +82101,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12666 + - uid: 12623 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-17.5 + pos: -49.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#03FCD3FF' + - uid: 12663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12673 components: - type: Transform @@ -73611,6 +82149,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12695 components: - type: Transform @@ -73627,13 +82173,164 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13045 + - uid: 12713 components: - type: Transform - pos: -45.5,-34.5 + pos: -8.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12714 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13046 components: - type: Transform @@ -73650,6 +82347,69 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13052 + components: + - type: Transform + pos: -48.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13053 + components: + - type: Transform + pos: -48.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13054 + components: + - type: Transform + pos: -47.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13055 + components: + - type: Transform + pos: -47.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13056 + components: + - type: Transform + pos: -47.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13058 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13059 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13060 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13063 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13137 components: - type: Transform @@ -73658,17 +82418,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13203 + - uid: 13254 components: - type: Transform - pos: 24.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13211 - components: - - type: Transform - pos: 25.5,0.5 + rot: 3.141592653589793 rad + pos: -49.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -73687,6 +82441,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13284 + components: + - type: Transform + pos: -8.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13302 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13347 components: - type: Transform @@ -73701,30 +82469,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13353 components: - type: Transform @@ -73760,45 +82504,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13375 - components: - - type: Transform - pos: 11.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13376 components: - type: Transform @@ -73807,83 +82512,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13377 - components: - - type: Transform - pos: 11.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13378 - components: - - type: Transform - pos: 11.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13379 - components: - - type: Transform - pos: 11.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13380 - components: - - type: Transform - pos: 11.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13381 - components: - - type: Transform - pos: 11.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13382 - components: - - type: Transform - pos: 11.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13383 - components: - - type: Transform - pos: 10.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13384 - components: - - type: Transform - pos: 10.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13385 - components: - - type: Transform - pos: 10.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13386 - components: - - type: Transform - pos: 10.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13387 - components: - - type: Transform - pos: 10.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13388 components: - type: Transform @@ -73892,86 +82520,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13398 - components: - - type: Transform - pos: 11.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13399 - components: - - type: Transform - pos: 11.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13400 - components: - - type: Transform - pos: 11.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13401 - components: - - type: Transform - pos: 10.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13403 - components: - - type: Transform - pos: 10.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13404 - components: - - type: Transform - pos: 10.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13405 - components: - - type: Transform - pos: 10.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13406 - components: - - type: Transform - pos: 10.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13413 components: - type: Transform @@ -74171,14 +82719,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13452 components: - type: Transform @@ -75025,13 +83565,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13615 - components: - - type: Transform - pos: -45.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13622 components: - type: Transform @@ -75101,81 +83634,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13647 - components: - - type: Transform - pos: -44.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13671 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13672 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13673 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13675 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13714 components: - type: Transform @@ -75216,22 +83674,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13722 components: - type: Transform @@ -75240,20 +83682,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13728 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13729 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13731 components: - type: Transform @@ -75261,92 +83689,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13740 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13741 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13746 components: - type: Transform @@ -75355,138 +83697,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13748 - components: - - type: Transform - pos: 31.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13749 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13750 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13751 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13752 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13756 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13757 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13758 - components: - - type: Transform - pos: 23.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13759 - components: - - type: Transform - pos: 23.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13760 - components: - - type: Transform - pos: 23.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13761 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13762 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13792 components: - type: Transform @@ -75596,328 +83806,99 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13869 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-59.5 + pos: -48.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 13871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-61.5 + pos: -48.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 13872 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-63.5 + pos: -47.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-62.5 + pos: -47.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-63.5 + pos: -47.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 13875 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-62.5 + pos: -47.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 13877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-60.5 + pos: -44.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-59.5 + pos: -44.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13880 - components: - - type: Transform - pos: -29.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13881 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13882 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13883 - components: - - type: Transform - pos: -30.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13898 + - uid: 13927 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13915 - components: - - type: Transform - pos: -29.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13917 - components: - - type: Transform - pos: -28.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13918 - components: - - type: Transform - pos: -28.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13919 - components: - - type: Transform - pos: -28.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13920 - components: - - type: Transform - pos: -28.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-43.5 + pos: -47.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13929 components: - type: Transform - pos: -28.5,-42.5 + rot: -1.5707963267948966 rad + pos: -48.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 13930 components: - type: Transform - pos: -28.5,-41.5 + rot: -1.5707963267948966 rad + pos: -49.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 13931 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-40.5 + pos: -49.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-40.5 + rot: 3.141592653589793 rad + pos: -48.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -75949,7 +83930,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-45.5 + pos: -47.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -76144,6 +84125,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13978 components: - type: Transform @@ -76222,6 +84235,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13996 components: - type: Transform @@ -76297,7 +84318,15 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-2.5 + pos: -47.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -76479,55 +84508,49 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,0.5 + pos: -48.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14053 + - uid: 14056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,2.5 + rot: -1.5707963267948966 rad + pos: -48.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14064 components: - type: Transform - pos: 31.5,0.5 + pos: 16.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14065 components: - type: Transform - pos: 31.5,1.5 + rot: -1.5707963267948966 rad + pos: 17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14067 components: - type: Transform - pos: 33.5,2.5 + rot: 3.141592653589793 rad + pos: -47.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14068 components: - type: Transform @@ -76535,13 +84558,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14070 components: - type: Transform - pos: 31.5,4.5 + rot: 3.141592653589793 rad + pos: -48.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 14071 components: - type: Transform @@ -76606,11 +84638,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14086 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,35.5 + pos: -47.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -76622,30 +84670,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14091 components: - type: Transform @@ -76662,14 +84686,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14096 components: - type: Transform @@ -76686,278 +84702,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14134 components: - type: Transform @@ -76974,14 +84718,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14138 components: - type: Transform @@ -77014,38 +84750,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14152 components: - type: Transform @@ -77094,184 +84798,43 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14185 - components: - - type: Transform - pos: 14.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14186 - components: - - type: Transform - pos: 14.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14187 - components: - - type: Transform - pos: 14.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14188 - components: - - type: Transform - pos: 16.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14189 - components: - - type: Transform - pos: 16.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14190 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14194 components: - type: Transform - pos: 14.5,3.5 + rot: -1.5707963267948966 rad + pos: -26.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14195 components: - type: Transform - pos: 14.5,4.5 + rot: -1.5707963267948966 rad + pos: -27.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14196 components: - type: Transform - pos: 14.5,5.5 + rot: -1.5707963267948966 rad + pos: -28.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14197 components: - type: Transform - pos: 14.5,6.5 + rot: -1.5707963267948966 rad + pos: -29.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14198 components: - type: Transform - pos: 14.5,7.5 + rot: -1.5707963267948966 rad + pos: -30.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -77292,35 +84855,40 @@ entities: - uid: 14201 components: - type: Transform - pos: 16.5,3.5 + rot: -1.5707963267948966 rad + pos: -31.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14202 components: - type: Transform - pos: 16.5,4.5 + rot: -1.5707963267948966 rad + pos: -26.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14203 components: - type: Transform - pos: 16.5,5.5 + rot: -1.5707963267948966 rad + pos: -27.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14204 components: - type: Transform - pos: 16.5,6.5 + rot: -1.5707963267948966 rad + pos: -28.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14205 components: - type: Transform - pos: 16.5,7.5 + rot: -1.5707963267948966 rad + pos: -29.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -77338,6 +84906,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14220 components: - type: Transform @@ -77346,6 +84922,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14241 components: - type: Transform @@ -77378,6 +84962,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14284 components: - type: Transform @@ -77386,14 +84978,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14296 components: - type: Transform @@ -77426,6 +85010,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14324 + components: + - type: Transform + pos: -34.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14342 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14343 components: - type: Transform @@ -77434,6 +85032,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14344 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14346 components: - type: Transform @@ -77482,6 +85087,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14354 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14355 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14356 components: - type: Transform @@ -77562,6 +85181,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14387 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14388 components: - type: Transform @@ -77618,6 +85244,48 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14396 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14398 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14400 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14405 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14410 + components: + - type: Transform + pos: -34.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14411 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14415 components: - type: Transform @@ -77633,6 +85301,48 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14419 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14423 + components: + - type: Transform + pos: -34.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14424 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14427 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14428 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14441 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14444 components: - type: Transform @@ -77649,6 +85359,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14446 + components: + - type: Transform + pos: -34.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14447 components: - type: Transform @@ -77753,6 +85470,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14472 + components: + - type: Transform + pos: -34.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14474 + components: + - type: Transform + pos: -34.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14487 components: - type: Transform @@ -77808,6 +85539,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14505 + components: + - type: Transform + pos: -34.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14506 components: - type: Transform @@ -77824,6 +85562,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14519 + components: + - type: Transform + pos: -34.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14520 + components: + - type: Transform + pos: -34.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14521 + components: + - type: Transform + pos: -34.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14523 components: - type: Transform @@ -77868,6 +85627,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14533 + components: + - type: Transform + pos: -34.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14540 components: - type: Transform @@ -77876,6 +85642,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14544 + components: + - type: Transform + pos: -34.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14545 + components: + - type: Transform + pos: -34.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14548 components: - type: Transform @@ -77897,6 +85677,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14552 + components: + - type: Transform + pos: -34.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14553 components: - type: Transform @@ -77989,6 +85776,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14571 + components: + - type: Transform + pos: -34.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14573 + components: + - type: Transform + pos: -34.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14577 components: - type: Transform @@ -78119,6 +85920,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14623 + components: + - type: Transform + pos: -34.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14627 components: - type: Transform @@ -78126,13 +85934,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14629 + components: + - type: Transform + pos: -32.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14630 components: - type: Transform - pos: -17.5,-15.5 + pos: -32.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14631 components: - type: Transform @@ -78185,18 +86000,17 @@ entities: - uid: 14640 components: - type: Transform - pos: -15.5,-16.5 + pos: -32.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-28.5 + pos: -32.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14642 components: - type: Transform @@ -78243,6 +86057,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14654 + components: + - type: Transform + pos: -32.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14656 components: - type: Transform @@ -78251,6 +86072,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14657 + components: + - type: Transform + pos: -32.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14658 components: - type: Transform @@ -78382,6 +86210,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14681 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14683 components: - type: Transform @@ -78399,7 +86234,14 @@ entities: - uid: 14686 components: - type: Transform - pos: -24.5,-28.5 + pos: -32.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14687 + components: + - type: Transform + pos: -32.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -78431,6 +86273,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14692 + components: + - type: Transform + pos: -32.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14693 components: - type: Transform @@ -78512,250 +86361,139 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14734 + - uid: 14713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-29.5 + pos: -32.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14737 + - uid: 14720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-29.5 + pos: -32.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14722 + components: + - type: Transform + pos: -32.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14734 + components: + - type: Transform + pos: -32.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14735 + components: + - type: Transform + pos: -32.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14736 + components: + - type: Transform + pos: -32.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14738 + components: + - type: Transform + pos: -32.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-34.5 + pos: -32.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-34.5 + pos: -32.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14741 components: - type: Transform - pos: -30.5,-33.5 + pos: -32.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14742 components: - type: Transform - pos: -30.5,-32.5 + pos: -32.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14743 components: - type: Transform - pos: -29.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14744 - components: - - type: Transform - pos: -29.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-37.5 + pos: -32.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14758 + - uid: 14745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-36.5 + pos: -32.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14759 + - uid: 14747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-35.5 + pos: -32.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14760 + - uid: 14748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-34.5 + pos: -32.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14769 + - uid: 14749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-29.5 + pos: -32.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14777 + - uid: 14750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-29.5 + pos: -32.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14789 + - uid: 14751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-30.5 + pos: -32.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14790 + - uid: 14752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-30.5 + pos: -32.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14828 components: - type: Transform @@ -78764,14 +86502,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14838 components: - type: Transform @@ -78783,355 +86513,128 @@ entities: - uid: 14862 components: - type: Transform - pos: -36.5,-32.5 + pos: -44.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14863 components: - type: Transform - pos: -36.5,-33.5 + pos: -42.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14866 + color: '#FF1212FF' + - uid: 14865 components: - type: Transform - pos: -36.5,-36.5 + pos: -42.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14867 + color: '#FF1212FF' + - uid: 14871 components: - type: Transform - pos: -36.5,-37.5 + rot: 3.141592653589793 rad + pos: -42.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14868 + color: '#FF1212FF' + - uid: 14872 components: - type: Transform - pos: -36.5,-38.5 + rot: 3.141592653589793 rad + pos: -42.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14869 + color: '#FF1212FF' + - uid: 14873 components: - type: Transform - pos: -36.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14870 - components: - - type: Transform - pos: -36.5,-40.5 + rot: 3.141592653589793 rad + pos: -44.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-35.5 + rot: 3.141592653589793 rad + pos: -44.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14892 + - uid: 14880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-43.5 + rot: 3.141592653589793 rad + pos: -44.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14893 + - uid: 14883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-43.5 + rot: 3.141592653589793 rad + pos: -42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14896 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-43.5 + pos: -35.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14897 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-43.5 + pos: -36.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14898 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-43.5 + pos: -37.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14901 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-43.5 + pos: -34.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14902 + - uid: 14909 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-42.5 + pos: -35.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14924 + - uid: 14944 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14925 - components: - - type: Transform - pos: -51.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14926 - components: - - type: Transform - pos: -50.5,-41.5 + pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14927 - components: - - type: Transform - pos: -50.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14928 - components: - - type: Transform - pos: -51.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14929 - components: - - type: Transform - pos: -50.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14930 - components: - - type: Transform - pos: -51.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14931 - components: - - type: Transform - pos: -50.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14932 - components: - - type: Transform - pos: -51.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14941 - components: - - type: Transform - pos: -35.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14947 + - uid: 14956 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-25.5 + pos: 16.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 14959 components: - type: Transform @@ -79180,22 +86683,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14967 components: - type: Transform @@ -79220,30 +86707,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14973 components: - type: Transform @@ -79252,37 +86715,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14976 - components: - - type: Transform - pos: -7.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14981 components: - type: Transform @@ -79291,69 +86723,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14989 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14991 components: - type: Transform @@ -79386,34 +86755,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14996 - components: - - type: Transform - pos: -7.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14997 - components: - - type: Transform - pos: -7.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14998 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14999 - components: - - type: Transform - pos: -8.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15001 components: - type: Transform @@ -79442,224 +86783,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15038 - components: - - type: Transform - pos: -7.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15039 - components: - - type: Transform - pos: -8.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15040 - components: - - type: Transform - pos: -8.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15041 - components: - - type: Transform - pos: -7.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15042 - components: - - type: Transform - pos: 11.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15043 - components: - - type: Transform - pos: 11.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15076 components: - type: Transform @@ -79809,13 +86932,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15101 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15103 components: - type: Transform @@ -79854,13 +86970,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15109 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15111 components: - type: Transform @@ -79964,21 +87073,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15140 - components: - - type: Transform - pos: 10.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15159 components: - type: Transform @@ -79995,52 +87089,54 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15244 + - uid: 15255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15251 - components: - - type: Transform - pos: 33.5,36.5 + rot: 1.5707963267948966 rad + pos: -33.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15252 + - uid: 15256 components: - type: Transform - pos: 33.5,37.5 + rot: 1.5707963267948966 rad + pos: -31.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15276 components: - type: Transform @@ -80159,19 +87255,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16009 + - uid: 15908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-45.5 + pos: -6.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -80295,14 +87382,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 16257 components: - type: Transform @@ -80311,173 +87390,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16260 - components: - - type: Transform - pos: -30.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 16397 components: - type: Transform @@ -80668,12 +87580,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-14.5 parent: 2 - - uid: 16486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 2 - uid: 16642 components: - type: Transform @@ -80722,6 +87628,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17332 components: - type: Transform @@ -81072,30 +88002,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17411 components: - type: Transform @@ -81152,21 +88058,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17421 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 17425 components: - type: Transform @@ -81311,46 +88202,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17888 components: - type: Transform @@ -81490,15 +88341,981 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeTJunction - entities: - - uid: 36 + - uid: 21054 components: - type: Transform - pos: 30.5,-4.5 + rot: 1.5707963267948966 rad + pos: -7.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 21055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22229 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22330 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22333 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22375 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22376 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22377 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22428 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22581 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22593 + components: + - type: Transform + pos: -41.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22594 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22595 + components: + - type: Transform + pos: -40.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeTJunction + entities: - uid: 129 components: - type: Transform @@ -81515,10 +89332,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1265 + - uid: 1249 components: - type: Transform - pos: -41.5,-40.5 + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -81530,6 +89356,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1447 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 1605 components: - type: Transform @@ -81550,6 +89383,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1736 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1778 components: - type: Transform @@ -81565,14 +89413,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1924 components: - type: Transform @@ -81581,13 +89421,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1926 - components: - - type: Transform - pos: -45.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2028 components: - type: Transform @@ -81612,6 +89445,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2127 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2137 components: - type: Transform @@ -81620,11 +89460,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2337 + - uid: 2319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 + pos: 8.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -81651,14 +89490,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2531 components: - type: Transform @@ -81667,38 +89498,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2571 components: - type: Transform @@ -81715,28 +89514,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2747 - components: - - type: Transform - pos: -36.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2919 - components: - - type: Transform - pos: 16.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3042 components: - type: Transform @@ -81745,29 +89522,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3068 - components: - - type: Transform - pos: -29.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3117 + - uid: 3494 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-7.5 + pos: -5.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4041 components: - type: Transform @@ -81784,14 +89546,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4247 components: - type: Transform @@ -81877,22 +89631,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4432 components: - type: Transform @@ -81917,14 +89655,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4566 components: - type: Transform @@ -81932,22 +89662,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4979 + - uid: 4567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-42.5 + rot: 3.141592653589793 rad + pos: -36.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5318 components: - type: Transform @@ -81956,6 +89686,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5553 components: - type: Transform @@ -81964,13 +89702,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5758 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 5760 components: - type: Transform @@ -81978,14 +89709,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5824 + - uid: 5854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-45.5 + rot: 1.5707963267948966 rad + pos: 30.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 6195 components: - type: Transform @@ -81994,22 +89725,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6206 + - uid: 6270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-7.5 + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6570 + color: '#0055CCFF' + - uid: 6317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-55.5 + pos: -22.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6498 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6571 components: - type: Transform @@ -82018,10 +89764,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6704 + - uid: 6582 components: - type: Transform - pos: 15.5,-32.5 + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -82055,13 +89826,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7020 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7033 components: - type: Transform @@ -82078,19 +89842,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7449 + - uid: 7153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-31.5 + rot: -1.5707963267948966 rad + pos: 19.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7474 + - uid: 7347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-31.5 + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7355 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7357 + components: + - type: Transform + pos: 14.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -82110,6 +89888,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7594 components: - type: Transform @@ -82118,6 +89912,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7827 components: - type: Transform @@ -82126,28 +89928,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7970 + - uid: 7930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7995 - components: - - type: Transform - pos: -38.5,-29.5 + rot: 1.5707963267948966 rad + pos: -32.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8031 + - uid: 7978 components: - type: Transform - pos: -44.5,-31.5 + rot: -1.5707963267948966 rad + pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' + - uid: 7987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8128 components: - type: Transform @@ -82156,14 +89960,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8293 components: - type: Transform @@ -82171,14 +89967,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8336 + - uid: 8413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-33.5 + pos: 32.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 8603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8658 components: - type: Transform @@ -82186,27 +90014,81 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9324 + - uid: 8680 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-49.5 + pos: 17.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9373 + - uid: 8694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-33.5 + pos: 19.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8744 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -82217,22 +90099,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9489 + - uid: 9454 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-36.5 + pos: 30.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9634 components: - type: Transform @@ -82241,11 +90131,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10699 + - uid: 10163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10167 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-29.5 + pos: -34.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10558 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10596 + components: + - type: Transform + pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -82257,6 +90185,105 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10987 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10992 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11041 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11120 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11385 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11619 components: - type: Transform @@ -82272,30 +90299,100 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12446 + - uid: 12196 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,6.5 + pos: -7.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12399 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12472 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12699 components: - type: Transform @@ -82304,27 +90401,51 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13044 + - uid: 12904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12952 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-31.5 + pos: -55.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13078 + - uid: 12967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 + rot: 3.141592653589793 rad + pos: -54.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13216 + color: '#FF1212FF' + - uid: 13237 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-0.5 + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -82344,22 +90465,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13419 components: - type: Transform @@ -82538,113 +90643,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13677 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13678 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13727 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13773 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13787 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13824 components: - type: Transform @@ -82660,50 +90658,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13858 + - uid: 13868 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-54.5 + pos: -47.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13859 - components: - - type: Transform - pos: -29.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13865 + - uid: 13870 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-55.5 + pos: -48.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13866 + - uid: 13928 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-45.5 + pos: -47.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -82723,14 +90698,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13977 components: - type: Transform @@ -82775,22 +90742,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14061 + - uid: 14088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,1.5 + rot: 3.141592653589793 rad + pos: -49.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14062 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14092 components: - type: Transform @@ -82799,22 +90758,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14140 components: - type: Transform @@ -82823,38 +90766,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14216 components: - type: Transform @@ -82886,14 +90797,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14374 components: - type: Transform @@ -82901,6 +90804,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14418 components: - type: Transform @@ -82917,6 +90836,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14450 components: - type: Transform @@ -82925,6 +90852,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14547 components: - type: Transform @@ -83012,6 +90947,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14682 components: - type: Transform @@ -83028,22 +90971,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14697 components: - type: Transform @@ -83052,88 +90979,51 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14752 - components: - - type: Transform - pos: -32.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14766 - components: - - type: Transform - pos: -36.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14780 - components: - - type: Transform - pos: -31.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14922 + - uid: 14732 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-43.5 + pos: -34.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14923 + - uid: 14737 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-42.5 + pos: -34.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -83144,60 +91034,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14992 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15005 - components: - - type: Transform - pos: -8.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15080 components: - type: Transform @@ -83278,10 +91114,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16378 + - uid: 15935 components: - type: Transform - pos: -20.5,-14.5 + rot: 1.5707963267948966 rad + pos: -8.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16127 + components: + - type: Transform + pos: -30.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -83292,6 +91136,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 16917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 17362 components: - type: Transform @@ -83354,14 +91206,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17880 components: - type: Transform @@ -83378,6 +91222,209 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22320 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22394 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22397 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22442 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22577 + components: + - type: Transform + pos: -37.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - uid: 1849 @@ -83416,12 +91463,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-37.5 - parent: 2 - uid: 4495 components: - type: Transform @@ -83458,46 +91499,65 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-45.5 parent: 2 - - uid: 5025 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 2 - - uid: 5252 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 2 - - uid: 6041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 2 - uid: 6197 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-45.5 parent: 2 - - uid: 10058 + - uid: 8761 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 9267 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,8.5 + pos: -3.5,-10.5 parent: 2 - - uid: 11429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 2 - - uid: 11431 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10060 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 2 + - uid: 10537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-38.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-37.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 16447 components: - type: Transform @@ -83512,12 +91572,54 @@ entities: parent: 2 - proto: GasPressurePump entities: - - uid: 544 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1476 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-2.5 + pos: 3.5,-8.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1607 components: - type: MetaData @@ -83567,12 +91669,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 2 - uid: 4517 components: - type: Transform @@ -83585,47 +91681,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-46.5 parent: 2 - - uid: 4558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4999 - components: - - type: MetaData - name: From Distro - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5244 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 6597 components: - type: Transform @@ -83634,49 +91689,24 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6711 + - uid: 9118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 + pos: 10.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6712 + - uid: 10122 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-9.5 + pos: 3.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 6715 + - uid: 12045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-37.5 - parent: 2 - - uid: 11384 - components: - - type: MetaData - name: TEG Supply - - type: Transform - pos: 2.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11904 - components: - - type: Transform - pos: -30.5,-20.5 + rot: 3.141592653589793 rad + pos: -44.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' @@ -83711,19 +91741,13 @@ entities: - type: Transform pos: 32.5,-40.5 parent: 2 - - uid: 4978 + - uid: 11370 components: - type: Transform - pos: -34.5,-20.5 + pos: -43.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,8.5 - parent: 2 - uid: 16001 components: - type: Transform @@ -83751,33 +91775,42 @@ entities: parent: 2 - proto: GasValve entities: - - uid: 1710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 2 - - type: GasValve - open: False - - uid: 16376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentPump - entities: - - uid: 13 + - uid: 5538 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-45.5 + pos: -37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 9278 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15421 - type: AtmosPipeColor color: '#0055CCFF' - uid: 690 @@ -83835,16 +91868,6 @@ entities: - 5565 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1328 - components: - - type: Transform - pos: -41.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14939 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1585 components: - type: Transform @@ -83856,27 +91879,6 @@ entities: - 13796 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15139 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1909 - components: - - type: Transform - pos: -51.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12728 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2034 components: - type: Transform @@ -83898,6 +91900,17 @@ entities: - 81 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11632 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2394 components: - type: Transform @@ -83906,37 +91919,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2352 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2413 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2528 - components: - - type: Transform - pos: -43.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14851 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2746 - components: - - type: Transform - pos: -39.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14940 + - 11724 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3201 @@ -83950,15 +91933,14 @@ entities: - 18900 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3932 + - uid: 3378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-42.5 + pos: -28.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 15894 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4410 @@ -83994,15 +91976,15 @@ entities: - 14595 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4653 + - uid: 4689 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-0.5 + pos: -7.5,-61.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14167 + - 5030 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4794 @@ -84027,6 +92009,17 @@ entities: - 20239 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5473 components: - type: Transform @@ -84037,6 +92030,50 @@ entities: - 15139 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14004 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15894 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6613 components: - type: Transform @@ -84092,47 +92129,15 @@ entities: - 13657 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7490 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14783 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8056 + - uid: 7862 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-34.5 + pos: 19.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12728 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14851 + - 22071 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8146 @@ -84143,29 +92148,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 4428 + - 8983 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8168 + - uid: 8410 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-35.5 + pos: 10.5,-69.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14163 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2080 + - 9393 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8468 @@ -84187,7 +92181,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 4428 + - 8983 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9438 @@ -84196,9 +92223,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9455 @@ -84212,37 +92236,59 @@ entities: - 15205 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3053 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9508 + - uid: 9861 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-36.5 + pos: 12.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3053 + - 11632 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10415 + - uid: 10103 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-10.5 + pos: -29.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 11724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14210 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7632 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11354 @@ -84256,17 +92302,6 @@ entities: - 13658 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14085 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11988 components: - type: Transform @@ -84277,15 +92312,57 @@ entities: - 8606 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12508 + - uid: 12170 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-37.5 + pos: -38.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 + - 14210 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12397 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16062 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12421 + components: + - type: Transform + pos: -39.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16096 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12654 @@ -84299,59 +92376,19 @@ entities: - 2697 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13076 + - uid: 13050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-18.5 + pos: -55.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13683 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7123 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13370 + - uid: 13051 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-52.5 + pos: -58.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15188 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13412 @@ -84362,7 +92399,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7178 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13433 @@ -84373,7 +92410,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 + - 15331 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13446 @@ -84494,15 +92531,14 @@ entities: - 13638 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13681 + - uid: 13680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 + pos: -49.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13683 + - 7632 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13686 @@ -84515,28 +92551,6 @@ entities: - 29 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15421 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14169 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13822 components: - type: Transform @@ -84557,47 +92571,6 @@ entities: - 13846 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13955 components: - type: Transform @@ -84606,17 +92579,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13993 components: - type: Transform @@ -84650,14 +92612,37 @@ entities: - 14047 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14057 + - uid: 14055 components: - type: Transform - pos: 28.5,1.5 + rot: 1.5707963267948966 rad + pos: -50.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14059 + - 14915 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14915 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14915 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14080 @@ -84671,15 +92656,15 @@ entities: - 409 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14095 + - uid: 14144 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,13.5 + pos: -49.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14085 + - 16098 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14158 @@ -84690,29 +92675,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 5138 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14167 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 + - 22510 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14325 @@ -84811,7 +92774,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17658 + - 10102 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14671 @@ -84832,103 +92795,60 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15673 + - 10102 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14747 + - uid: 14868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-37.5 + pos: -43.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14765 + - 15862 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14765 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14765 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14782 - components: - - type: Transform - pos: -33.5,-30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14871 + - uid: 14884 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-42.5 + pos: -43.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14939 + - 15869 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14921 + - uid: 14885 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-46.5 + pos: -44.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14957 + - 15869 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14933 + - uid: 14902 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-46.5 + rot: 1.5707963267948966 rad + pos: -35.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14953 + - 15875 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14934 + - uid: 14984 components: - type: Transform - pos: -50.5,-40.5 + rot: -1.5707963267948966 rad + pos: -2.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14953 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14944 - components: - - type: Transform - pos: -37.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14940 + - 14795 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15007 @@ -84939,18 +92859,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14980 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14980 + - 2583 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15018 @@ -84963,50 +92872,6 @@ entities: - 13089 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-67.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-61.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-62.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15074 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-68.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15074 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15116 components: - type: Transform @@ -85029,37 +92894,15 @@ entities: - 17576 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15249 + - uid: 15279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,29.5 + rot: -1.5707963267948966 rad + pos: -29.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15260 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 + - 15287 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15912 @@ -85070,7 +92913,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16246 @@ -85081,7 +92957,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 11724 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16247 @@ -85092,7 +92968,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 11724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16421 @@ -85170,17 +93079,6 @@ entities: - 17352 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17353 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 17443 components: - type: Transform @@ -85203,17 +93101,6 @@ entities: - 13655 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13798 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19969 components: - type: Transform @@ -85231,9 +93118,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13798 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20727 @@ -85247,14 +93131,243 @@ entities: - 2670 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasVentPumpVox - entities: - - uid: 1134 + - uid: 20834 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-12.5 + pos: -7.5,-69.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5030 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3722 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3722 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9147 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10105 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21848 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22345 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14943 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22438 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22438 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22432 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22439 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22450 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22439 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22579 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22597 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 131 @@ -85268,15 +93381,26 @@ entities: - 13800 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 312 + - uid: 580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-35.5 + rot: -1.5707963267948966 rad + pos: 32.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 + - 14085 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9278 - type: AtmosPipeColor color: '#FF1212FF' - uid: 678 @@ -85299,6 +93423,25 @@ entities: - 2697 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1016 components: - type: Transform @@ -85332,17 +93475,6 @@ entities: - 13549 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14939 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1569 components: - type: Transform @@ -85354,16 +93486,6 @@ entities: - 13796 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1800 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2074 components: - type: Transform @@ -85375,14 +93497,15 @@ entities: - 81 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2542 + - uid: 2176 components: - type: Transform - pos: -44.5,-22.5 + rot: 3.141592653589793 rad + pos: 4.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 + - 11632 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2752 @@ -85406,68 +93529,46 @@ entities: - 13089 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2966 + - uid: 3375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 + pos: -27.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14765 + - 15894 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3066 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14765 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3639 + - uid: 3376 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-9.5 + pos: -28.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 15894 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3667 + - uid: 3486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,6.5 + pos: -5.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14085 + - 2583 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4052 + - uid: 3721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 + rot: 3.141592653589793 rad + pos: 0.5,-52.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14167 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4143 - components: - - type: Transform - pos: -52.5,-29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12728 + - 2583 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4246 @@ -85492,16 +93593,6 @@ entities: - 13645 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4360 - components: - - type: Transform - pos: 24.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14167 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4911 components: - type: Transform @@ -85524,14 +93615,37 @@ entities: - 13665 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5348 + - uid: 5596 components: - type: Transform - pos: 15.5,23.5 + rot: 1.5707963267948966 rad + pos: -28.5,-45.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17353 + - 14004 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5030 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11632 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6614 @@ -85577,6 +93691,17 @@ entities: - 13654 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11724 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7482 components: - type: Transform @@ -85585,17 +93710,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 4428 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7496 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14783 + - 8983 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7574 @@ -85617,7 +93732,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 4428 + - 8983 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7998 @@ -85631,47 +93746,24 @@ entities: - 2697 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8070 + - uid: 8008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-34.5 + pos: 12.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 + - 7178 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8137 + - uid: 8014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-30.5 + pos: 8.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-53.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2080 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8505 - components: - - type: Transform - pos: -50.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12728 + - 2583 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8787 @@ -85685,48 +93777,43 @@ entities: - 3489 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15421 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9381 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9450 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9454 + - uid: 9627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-48.5 + pos: -0.5,-14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15205 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3053 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3053 + - 13793 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10416 @@ -85737,7 +93824,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 11724 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-35.5 + parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10802 @@ -85751,6 +93846,39 @@ entities: - 13665 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3722 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5030 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11333 components: - type: Transform @@ -85773,6 +93901,17 @@ entities: - 29 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12054 components: - type: Transform @@ -85783,6 +93922,17 @@ entities: - 8606 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14210 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12378 components: - type: Transform @@ -85794,77 +93944,62 @@ entities: - 13640 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12388 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13077 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13683 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13213 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13215 + - uid: 12398 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-8.5 + pos: -34.5,-29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14169 + - 16062 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13355 + - uid: 12415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14210 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13045 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13049 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-15.5 + pos: -58.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7123 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13371 + - uid: 13243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-55.5 + pos: -47.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15188 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13408 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 + - 7632 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13411 @@ -85875,7 +94010,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7178 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13448 @@ -85974,27 +94109,6 @@ entities: - 13657 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13679 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13683 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15421 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13790 components: - type: Transform @@ -86016,17 +94130,6 @@ entities: - 13846 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13833 components: - type: Transform @@ -86038,45 +94141,14 @@ entities: - 13846 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13852 + - uid: 13850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-57.5 + pos: 17.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 + - 22071 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14002 @@ -86118,15 +94190,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14058 + - uid: 14054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,3.5 + rot: 1.5707963267948966 rad + pos: -50.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14059 + - 14915 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14915 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14915 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14078 @@ -86140,15 +94234,25 @@ entities: - 409 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14136 + - uid: 14089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 + pos: -54.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14085 + - 7632 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16098 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14159 @@ -86159,18 +94263,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 5138 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 + - 22510 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14378 @@ -86184,17 +94277,6 @@ entities: - 15331 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14163 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14468 components: - type: Transform @@ -86268,7 +94350,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17658 + - 10102 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14709 @@ -86289,7 +94371,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15673 + - 10102 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14730 @@ -86300,29 +94382,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 + - 15331 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14749 + - uid: 14867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-38.5 + rot: 1.5707963267948966 rad + pos: -43.5,-31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14765 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 + - 15862 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14878 @@ -86336,145 +94407,46 @@ entities: - 14595 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14935 + - uid: 14886 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-41.5 + pos: -43.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14939 + - 15869 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14936 + - uid: 14887 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15869 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14900 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15875 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14983 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-46.5 + pos: -4.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14957 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14953 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14938 - components: - - type: Transform - pos: -51.5,-40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14953 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14940 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14940 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14978 - components: - - type: Transform - pos: 7.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14980 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14980 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-68.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-62.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-67.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15074 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-61.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15074 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15075 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15139 + - 14795 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15112 @@ -86520,37 +94492,14 @@ entities: - 8606 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15243 + - uid: 15269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,27.5 + pos: -29.5,-60.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15260 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13650 + - 15287 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15879 @@ -86561,18 +94510,39 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7178 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15908 + - uid: 16129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-41.5 + pos: -32.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7931 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16242 @@ -86583,7 +94553,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 11724 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16243 @@ -86594,7 +94564,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 11724 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16456 @@ -86679,43 +94682,243 @@ entities: - 13655 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13798 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 19983 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13798 - type: AtmosPipeColor color: '#FF1212FF' -- proto: GasVentScrubberVox - entities: - - uid: 1132 + - uid: 21067 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3722 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-11.5 + pos: 7.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9147 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22041 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22072 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15205 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22332 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22358 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14943 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22387 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22438 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22438 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,20.5 + parent: 2 + - uid: 22436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22432 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22439 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22439 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22596 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasVolumePump + entities: + - uid: 12148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-35.5 parent: 2 - proto: Gauze entities: - - uid: 11243 - components: - - type: Transform - pos: 22.36895,-59.193115 - parent: 2 - uid: 18976 components: - type: Transform @@ -86742,6 +94945,11 @@ entities: - type: Transform pos: 65.5,-45.5 parent: 2 + - uid: 8109 + components: + - type: Transform + pos: -0.5,-88.5 + parent: 2 - uid: 8329 components: - type: Transform @@ -86752,10 +94960,36 @@ entities: - type: Transform pos: 78.5,-43.5 parent: 2 - - uid: 17328 + - uid: 12808 components: - type: Transform - pos: 17.5,6.5 + pos: -2.5,-91.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 2 + - uid: 15064 + components: + - type: Transform + pos: 13.5,-90.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + pos: 12.5,-90.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-90.5 parent: 2 - uid: 18163 components: @@ -86772,6 +95006,16 @@ entities: - type: Transform pos: 89.5,-20.5 parent: 2 + - uid: 18514 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 19263 + components: + - type: Transform + pos: -2.5,-89.5 + parent: 2 - uid: 19587 components: - type: Transform @@ -86804,6 +95048,13 @@ entities: - type: Transform pos: -26.5,-52.5 parent: 2 +- proto: GoldRingDiamond + entities: + - uid: 4808 + components: + - type: Transform + pos: -30.014654,-64.389244 + parent: 2 - proto: GrassBattlemap entities: - uid: 6007 @@ -86813,53 +95064,38 @@ entities: parent: 2 - proto: GravityGenerator entities: - - uid: 6248 + - uid: 7868 components: - type: Transform - pos: 23.5,-11.5 + pos: 25.5,-7.5 parent: 2 - proto: Grille entities: - - uid: 24 + - uid: 22 components: - type: Transform - pos: 30.5,31.5 + pos: -31.5,-76.5 parent: 2 - uid: 50 components: - type: Transform pos: 47.5,-73.5 parent: 2 - - uid: 66 + - uid: 65 components: - type: Transform - pos: -34.5,-6.5 + pos: -31.5,-75.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -19.5,-62.5 parent: 2 - uid: 99 components: - type: Transform pos: -9.5,14.5 parent: 2 - - uid: 118 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 2 - - uid: 147 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 151 - components: - - type: Transform - pos: 30.5,36.5 - parent: 2 - - uid: 159 - components: - - type: Transform - pos: -47.5,-18.5 - parent: 2 - uid: 160 components: - type: Transform @@ -86870,11 +95106,6 @@ entities: - type: Transform pos: -49.5,-16.5 parent: 2 - - uid: 164 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - uid: 171 components: - type: Transform @@ -86885,6 +95116,11 @@ entities: - type: Transform pos: -50.5,-9.5 parent: 2 + - uid: 227 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 - uid: 228 components: - type: Transform @@ -86915,15 +95151,58 @@ entities: - type: Transform pos: -22.5,-10.5 parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,27.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: -33.5,-82.5 + parent: 2 - uid: 302 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 311 + - uid: 309 components: - type: Transform - pos: -39.5,-34.5 + rot: -1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: -11.5,-66.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: -30.5,-79.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -44.5,-33.5 parent: 2 - uid: 331 components: @@ -86945,36 +95224,66 @@ entities: - type: Transform pos: -24.5,8.5 parent: 2 + - uid: 375 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 - uid: 393 components: - type: Transform pos: -37.5,1.5 parent: 2 + - uid: 402 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 - uid: 422 components: - type: Transform pos: -42.5,1.5 parent: 2 + - uid: 430 + components: + - type: Transform + pos: -50.5,-62.5 + parent: 2 - uid: 472 components: - type: Transform pos: -14.5,-19.5 parent: 2 - - uid: 504 + - uid: 501 components: - type: Transform - pos: 35.5,14.5 - parent: 2 - - uid: 509 - components: - - type: Transform - pos: 35.5,15.5 + pos: 10.5,5.5 parent: 2 - uid: 601 components: - type: Transform pos: -5.5,9.5 parent: 2 + - uid: 651 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 - uid: 691 components: - type: Transform @@ -86985,6 +95294,11 @@ entities: - type: Transform pos: 9.5,9.5 parent: 2 + - uid: 701 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 - uid: 718 components: - type: Transform @@ -87000,16 +95314,6 @@ entities: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 747 - components: - - type: Transform - pos: -57.5,-62.5 - parent: 2 - - uid: 749 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 2 - uid: 754 components: - type: Transform @@ -87025,11 +95329,6 @@ entities: - type: Transform pos: -17.5,40.5 parent: 2 - - uid: 766 - components: - - type: Transform - pos: -54.5,-44.5 - parent: 2 - uid: 782 components: - type: Transform @@ -87050,11 +95349,6 @@ entities: - type: Transform pos: -26.5,38.5 parent: 2 - - uid: 794 - components: - - type: Transform - pos: -53.5,-20.5 - parent: 2 - uid: 797 components: - type: Transform @@ -87075,16 +95369,22 @@ entities: - type: Transform pos: -1.5,9.5 parent: 2 - - uid: 841 - components: - - type: Transform - pos: 28.5,14.5 - parent: 2 - uid: 871 components: - type: Transform pos: 10.5,23.5 parent: 2 + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-35.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 - uid: 899 components: - type: Transform @@ -87120,11 +95420,6 @@ entities: - type: Transform pos: 41.5,-44.5 parent: 2 - - uid: 1116 - components: - - type: Transform - pos: -55.5,-20.5 - parent: 2 - uid: 1119 components: - type: Transform @@ -87145,6 +95440,11 @@ entities: - type: Transform pos: 51.5,-50.5 parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -59.5,-49.5 + parent: 2 - uid: 1156 components: - type: Transform @@ -87160,6 +95460,12 @@ entities: - type: Transform pos: -29.5,5.5 parent: 2 + - uid: 1164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-48.5 + parent: 2 - uid: 1169 components: - type: Transform @@ -87180,6 +95486,54 @@ entities: - type: Transform pos: 59.5,-37.5 parent: 2 + - uid: 1257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-46.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -30.5,-67.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -13.5,-67.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: -18.5,-62.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,26.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: -12.5,-62.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: -11.5,-62.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,27.5 + parent: 2 - uid: 1357 components: - type: Transform @@ -87200,11 +95554,21 @@ entities: - type: Transform pos: -59.5,19.5 parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -21.5,-62.5 + parent: 2 - uid: 1524 components: - type: Transform pos: -14.5,-8.5 parent: 2 + - uid: 1549 + components: + - type: Transform + pos: -27.5,-65.5 + parent: 2 - uid: 1552 components: - type: Transform @@ -87220,11 +95584,6 @@ entities: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 1631 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 2 - uid: 1632 components: - type: Transform @@ -87235,15 +95594,10 @@ entities: - type: Transform pos: -25.5,37.5 parent: 2 - - uid: 1712 + - uid: 1676 components: - type: Transform - pos: 30.5,38.5 - parent: 2 - - uid: 1727 - components: - - type: Transform - pos: 6.5,-6.5 + pos: -44.5,-26.5 parent: 2 - uid: 1751 components: @@ -87255,6 +95609,11 @@ entities: - type: Transform pos: 3.5,9.5 parent: 2 + - uid: 1763 + components: + - type: Transform + pos: -36.5,-80.5 + parent: 2 - uid: 1767 components: - type: Transform @@ -87270,26 +95629,46 @@ entities: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 1895 + - uid: 1779 components: - type: Transform - pos: 11.5,-4.5 + pos: -30.5,-80.5 parent: 2 - - uid: 2109 + - uid: 1798 components: - type: Transform - pos: 11.5,-5.5 + pos: -36.5,-79.5 parent: 2 - - uid: 2112 + - uid: 1838 components: - type: Transform - pos: -2.5,-11.5 + pos: -36.5,-73.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -20.5,-68.5 parent: 2 - uid: 2126 components: - type: Transform pos: 60.5,-37.5 parent: 2 + - uid: 2131 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 - uid: 2132 components: - type: Transform @@ -87310,26 +95689,31 @@ entities: - type: Transform pos: 38.5,-66.5 parent: 2 + - uid: 2259 + components: + - type: Transform + pos: -25.5,-62.5 + parent: 2 - uid: 2268 components: - type: Transform pos: 64.5,-37.5 parent: 2 - - uid: 2318 + - uid: 2333 components: - type: Transform - pos: 30.5,33.5 - parent: 2 - - uid: 2328 - components: - - type: Transform - pos: 6.5,0.5 + pos: -22.5,-67.5 parent: 2 - uid: 2336 components: - type: Transform pos: 53.5,-36.5 parent: 2 + - uid: 2383 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 - uid: 2392 components: - type: Transform @@ -87340,25 +95724,40 @@ entities: - type: Transform pos: 41.5,-60.5 parent: 2 + - uid: 2434 + components: + - type: Transform + pos: -21.5,-63.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 - uid: 2507 components: - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 2517 + - uid: 2527 components: - type: Transform - pos: -46.5,-19.5 + pos: -21.5,-67.5 parent: 2 - - uid: 2587 + - uid: 2537 components: - type: Transform - pos: -6.5,-53.5 + pos: -36.5,-72.5 parent: 2 - - uid: 2620 + - uid: 2542 components: - type: Transform - pos: -33.5,-3.5 + pos: -24.5,-62.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: -13.5,-62.5 parent: 2 - uid: 2659 components: @@ -87370,15 +95769,20 @@ entities: - type: Transform pos: -4.5,17.5 parent: 2 + - uid: 2691 + components: + - type: Transform + pos: -13.5,-61.5 + parent: 2 - uid: 2700 components: - type: Transform pos: -33.5,0.5 parent: 2 - - uid: 2772 + - uid: 2746 components: - type: Transform - pos: -48.5,-27.5 + pos: -13.5,-64.5 parent: 2 - uid: 2793 components: @@ -87400,15 +95804,25 @@ entities: - type: Transform pos: -47.5,-6.5 parent: 2 + - uid: 2858 + components: + - type: Transform + pos: -22.5,-62.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 - uid: 2900 components: - type: Transform pos: 24.5,-29.5 parent: 2 - - uid: 2904 + - uid: 2967 components: - type: Transform - pos: 21.5,-5.5 + pos: -36.5,-71.5 parent: 2 - uid: 2986 components: @@ -87425,11 +95839,6 @@ entities: - type: Transform pos: 37.5,-51.5 parent: 2 - - uid: 3030 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 2 - uid: 3043 components: - type: Transform @@ -87450,11 +95859,6 @@ entities: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 3065 - components: - - type: Transform - pos: -54.5,-21.5 - parent: 2 - uid: 3069 components: - type: Transform @@ -87465,51 +95869,67 @@ entities: - type: Transform pos: -14.5,-7.5 parent: 2 - - uid: 3080 + - uid: 3146 components: - type: Transform - pos: 6.5,-7.5 + rot: 3.141592653589793 rad + pos: 28.5,29.5 parent: 2 - - uid: 3123 + - uid: 3187 components: - type: Transform - pos: -51.5,-25.5 + pos: -36.5,-63.5 parent: 2 - - uid: 3151 + - uid: 3192 components: - type: Transform - pos: -31.5,-62.5 + pos: -36.5,-64.5 parent: 2 - - uid: 3155 + - uid: 3196 components: - type: Transform - pos: 6.5,-9.5 + pos: -31.5,-71.5 parent: 2 - - uid: 3161 + - uid: 3199 components: - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 3185 - components: - - type: Transform - pos: 11.5,-14.5 + pos: -9.5,-96.5 parent: 2 - uid: 3217 components: - type: Transform pos: -54.5,-4.5 parent: 2 - - uid: 3221 + - uid: 3249 components: - type: Transform - pos: -54.5,-20.5 + pos: -55.5,-26.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: 16.5,-76.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -10.5,-96.5 parent: 2 - uid: 3406 components: - type: Transform pos: -5.5,21.5 parent: 2 + - uid: 3583 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 - uid: 3600 components: - type: Transform @@ -87530,11 +95950,6 @@ entities: - type: Transform pos: 49.5,-59.5 parent: 2 - - uid: 3672 - components: - - type: Transform - pos: -30.5,-32.5 - parent: 2 - uid: 3677 components: - type: Transform @@ -87545,10 +95960,10 @@ entities: - type: Transform pos: 30.5,-43.5 parent: 2 - - uid: 3687 + - uid: 3683 components: - type: Transform - pos: -34.5,-36.5 + pos: -36.5,-68.5 parent: 2 - uid: 3766 components: @@ -87575,11 +95990,26 @@ entities: - type: Transform pos: -28.5,4.5 parent: 2 + - uid: 3954 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 - uid: 3996 components: - type: Transform pos: 8.5,-27.5 parent: 2 + - uid: 4003 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 - uid: 4039 components: - type: Transform @@ -87595,41 +96025,11 @@ entities: - type: Transform pos: 31.5,-39.5 parent: 2 - - uid: 4054 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 2 - uid: 4058 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 4061 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 4065 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 2 - - uid: 4070 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 4071 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 4072 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 2 - uid: 4074 components: - type: Transform @@ -87740,21 +96140,6 @@ entities: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 4096 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - - uid: 4097 - components: - - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 4098 - components: - - type: Transform - pos: 3.5,6.5 - parent: 2 - uid: 4099 components: - type: Transform @@ -87780,6 +96165,11 @@ entities: - type: Transform pos: -7.5,7.5 parent: 2 + - uid: 4104 + components: + - type: Transform + pos: -35.5,-76.5 + parent: 2 - uid: 4106 components: - type: Transform @@ -87895,10 +96285,15 @@ entities: - type: Transform pos: 8.5,-33.5 parent: 2 - - uid: 4270 + - uid: 4260 components: - type: Transform - pos: 18.5,21.5 + pos: -23.5,-62.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: -12.5,-66.5 parent: 2 - uid: 4284 components: @@ -87910,36 +96305,31 @@ entities: - type: Transform pos: 33.5,-33.5 parent: 2 - - uid: 4353 - components: - - type: Transform - pos: 8.5,-41.5 - parent: 2 - uid: 4361 components: - type: Transform - pos: 18.5,24.5 + pos: -25.5,-45.5 parent: 2 - uid: 4381 components: - type: Transform pos: 25.5,-26.5 parent: 2 - - uid: 4464 + - uid: 4557 components: - type: Transform - pos: 6.5,-10.5 - parent: 2 - - uid: 4491 - components: - - type: Transform - pos: 10.5,9.5 + pos: -35.5,4.5 parent: 2 - uid: 4568 components: - type: Transform pos: 31.5,-59.5 parent: 2 + - uid: 4570 + components: + - type: Transform + pos: -12.5,-86.5 + parent: 2 - uid: 4575 components: - type: Transform @@ -87960,16 +96350,16 @@ entities: - type: Transform pos: 8.5,9.5 parent: 2 - - uid: 4641 - components: - - type: Transform - pos: 8.5,-45.5 - parent: 2 - uid: 4649 components: - type: Transform pos: 8.5,-31.5 parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 - uid: 4678 components: - type: Transform @@ -87980,6 +96370,11 @@ entities: - type: Transform pos: 53.5,-50.5 parent: 2 + - uid: 4685 + components: + - type: Transform + pos: -36.5,-76.5 + parent: 2 - uid: 4725 components: - type: Transform @@ -87993,77 +96388,187 @@ entities: - uid: 4739 components: - type: Transform - pos: -32.5,-63.5 + pos: -20.5,-67.5 parent: 2 - uid: 4742 components: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 4749 + - uid: 4746 components: - type: Transform - pos: -32.5,-64.5 + pos: -16.5,-62.5 parent: 2 - - uid: 4821 + - uid: 4747 components: - type: Transform - pos: 4.5,-5.5 + pos: -21.5,-61.5 parent: 2 - - uid: 4822 + - uid: 4750 components: - type: Transform - pos: 3.5,-5.5 + pos: -9.5,-78.5 parent: 2 - - uid: 4825 + - uid: 4755 components: - type: Transform - pos: -32.5,-36.5 + pos: -9.5,-77.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -37.5,-76.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: -31.5,-77.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: -14.5,-62.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -17.5,-67.5 parent: 2 - uid: 4832 components: - type: Transform pos: -49.5,-8.5 parent: 2 - - uid: 4852 + - uid: 4835 components: - type: Transform - pos: -44.5,-19.5 + pos: -23.5,-67.5 parent: 2 - - uid: 4901 + - uid: 4837 components: - type: Transform - pos: 2.5,-5.5 + pos: -27.5,-39.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: -28.5,-68.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: -20.5,-62.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: -26.5,-62.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: -17.5,-63.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: -15.5,-62.5 parent: 2 - uid: 4920 components: - type: Transform pos: -58.5,7.5 parent: 2 - - uid: 5006 + - uid: 4924 components: - type: Transform - pos: -30.5,-46.5 + pos: -15.5,-67.5 parent: 2 - - uid: 5034 + - uid: 4952 components: - type: Transform - pos: -29.5,-44.5 + pos: -35.5,-25.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: -31.5,-73.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: -31.5,-47.5 parent: 2 - uid: 5035 components: - type: Transform - pos: -32.5,-61.5 + pos: -25.5,-63.5 parent: 2 - - uid: 5060 + - uid: 5044 components: - type: Transform - pos: 25.5,-5.5 - parent: 2 - - uid: 5077 - components: - - type: Transform - pos: -32.5,-18.5 + pos: -17.5,-62.5 parent: 2 - uid: 5078 components: @@ -88075,6 +96580,11 @@ entities: - type: Transform pos: -42.5,-17.5 parent: 2 + - uid: 5083 + components: + - type: Transform + pos: -27.5,-66.5 + parent: 2 - uid: 5096 components: - type: Transform @@ -88085,11 +96595,6 @@ entities: - type: Transform pos: -4.5,16.5 parent: 2 - - uid: 5113 - components: - - type: Transform - pos: 25.5,-1.5 - parent: 2 - uid: 5114 components: - type: Transform @@ -88110,45 +96615,20 @@ entities: - type: Transform pos: -21.5,-32.5 parent: 2 - - uid: 5118 - components: - - type: Transform - pos: -34.5,-28.5 - parent: 2 - uid: 5119 components: - type: Transform - pos: -37.5,-28.5 - parent: 2 - - uid: 5123 - components: - - type: Transform - pos: -39.5,-19.5 - parent: 2 - - uid: 5124 - components: - - type: Transform - pos: -38.5,-19.5 + pos: -27.5,-67.5 parent: 2 - uid: 5125 components: - type: Transform - pos: -37.5,-19.5 + pos: -23.5,-63.5 parent: 2 - uid: 5126 components: - type: Transform - pos: -35.5,-19.5 - parent: 2 - - uid: 5127 - components: - - type: Transform - pos: -34.5,-19.5 - parent: 2 - - uid: 5128 - components: - - type: Transform - pos: -33.5,-19.5 + pos: -24.5,-63.5 parent: 2 - uid: 5170 components: @@ -88165,25 +96645,30 @@ entities: - type: Transform pos: 34.5,-47.5 parent: 2 + - uid: 5182 + components: + - type: Transform + pos: -31.5,-72.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 - uid: 5264 components: - type: Transform pos: -60.5,-7.5 parent: 2 - - uid: 5275 - components: - - type: Transform - pos: -59.5,-44.5 - parent: 2 - uid: 5313 components: - type: Transform - pos: -63.5,-44.5 + pos: 16.5,-44.5 parent: 2 - uid: 5333 components: - type: Transform - pos: 18.5,22.5 + pos: -35.5,5.5 parent: 2 - uid: 5369 components: @@ -88195,15 +96680,10 @@ entities: - type: Transform pos: -27.5,28.5 parent: 2 - - uid: 5413 + - uid: 5409 components: - type: Transform - pos: 28.5,-10.5 - parent: 2 - - uid: 5426 - components: - - type: Transform - pos: 18.5,25.5 + pos: 50.5,15.5 parent: 2 - uid: 5430 components: @@ -88233,13 +96713,18 @@ entities: - uid: 5459 components: - type: Transform - pos: -34.5,-32.5 + pos: -31.5,-45.5 parent: 2 - uid: 5464 components: - type: Transform pos: 63.5,-43.5 parent: 2 + - uid: 5477 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 - uid: 5497 components: - type: Transform @@ -88260,10 +96745,20 @@ entities: - type: Transform pos: 40.5,-40.5 parent: 2 - - uid: 5538 + - uid: 5511 components: - type: Transform - pos: -36.5,-9.5 + pos: 50.5,16.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: 7.5,4.5 parent: 2 - uid: 5558 components: @@ -88300,16 +96795,6 @@ entities: - type: Transform pos: 49.5,-86.5 parent: 2 - - uid: 5617 - components: - - type: Transform - pos: -73.5,-52.5 - parent: 2 - - uid: 5620 - components: - - type: Transform - pos: -73.5,-56.5 - parent: 2 - uid: 5630 components: - type: Transform @@ -88325,21 +96810,6 @@ entities: - type: Transform pos: 47.5,-89.5 parent: 2 - - uid: 5639 - components: - - type: Transform - pos: -67.5,-63.5 - parent: 2 - - uid: 5640 - components: - - type: Transform - pos: -70.5,-63.5 - parent: 2 - - uid: 5641 - components: - - type: Transform - pos: -73.5,-63.5 - parent: 2 - uid: 5646 components: - type: Transform @@ -88350,31 +96820,36 @@ entities: - type: Transform pos: 64.5,-43.5 parent: 2 + - uid: 5650 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 2 - uid: 5656 components: - type: Transform pos: 32.5,-53.5 parent: 2 - - uid: 5663 + - uid: 5661 components: - type: Transform - pos: -43.5,-19.5 + pos: -18.5,-68.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: -14.5,-68.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -21.5,-64.5 parent: 2 - uid: 5673 components: - type: Transform pos: 45.5,-86.5 parent: 2 - - uid: 5687 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 2 - - uid: 5688 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 2 - uid: 5705 components: - type: Transform @@ -88385,6 +96860,21 @@ entities: - type: Transform pos: 75.5,-61.5 parent: 2 + - uid: 5708 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 - uid: 5772 components: - type: Transform @@ -88395,21 +96885,16 @@ entities: - type: Transform pos: -21.5,-22.5 parent: 2 + - uid: 5925 + components: + - type: Transform + pos: -59.5,-63.5 + parent: 2 - uid: 5929 components: - type: Transform pos: -60.5,-17.5 parent: 2 - - uid: 5964 - components: - - type: Transform - pos: -72.5,-63.5 - parent: 2 - - uid: 6045 - components: - - type: Transform - pos: -72.5,-62.5 - parent: 2 - uid: 6050 components: - type: Transform @@ -88420,6 +96905,11 @@ entities: - type: Transform pos: -27.5,30.5 parent: 2 + - uid: 6120 + components: + - type: Transform + pos: -33.5,-81.5 + parent: 2 - uid: 6127 components: - type: Transform @@ -88455,26 +96945,131 @@ entities: - type: Transform pos: 37.5,-45.5 parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 - uid: 6219 components: - type: Transform pos: 40.5,-42.5 parent: 2 + - uid: 6222 + components: + - type: Transform + pos: -33.5,-83.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: 1.5,-82.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: 2.5,-83.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: 0.5,-83.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 - uid: 6492 components: - type: Transform pos: -18.5,9.5 parent: 2 - - uid: 6641 + - uid: 6512 components: - type: Transform - pos: 8.5,-20.5 + pos: -0.5,-83.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: -21.5,-14.5 parent: 2 - uid: 6669 components: - type: Transform pos: 30.5,11.5 parent: 2 + - uid: 6673 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 - uid: 6730 components: - type: Transform @@ -88485,6 +97080,11 @@ entities: - type: Transform pos: 33.5,-34.5 parent: 2 + - uid: 6852 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 - uid: 6911 components: - type: Transform @@ -88515,140 +97115,140 @@ entities: - type: Transform pos: 60.5,-79.5 parent: 2 + - uid: 6953 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 - uid: 6977 components: - type: Transform pos: -28.5,2.5 parent: 2 + - uid: 6996 + components: + - type: Transform + pos: -42.5,-33.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 - uid: 7016 components: - type: Transform pos: 78.5,-47.5 parent: 2 - - uid: 7023 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 2 - - uid: 7024 - components: - - type: Transform - pos: -5.5,-50.5 - parent: 2 - - uid: 7025 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 2 - uid: 7051 components: - type: Transform pos: 38.5,-70.5 parent: 2 - - uid: 7078 + - uid: 7065 components: - type: Transform - pos: -13.5,-63.5 + pos: -58.5,-63.5 parent: 2 - uid: 7094 components: - type: Transform pos: -14.5,41.5 parent: 2 - - uid: 7205 + - uid: 7128 components: - type: Transform - pos: -32.5,-60.5 + pos: -62.5,-28.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: -62.5,-31.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + pos: -62.5,-26.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: -62.5,-27.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: -59.5,-52.5 parent: 2 - uid: 7215 components: - type: Transform pos: 45.5,-1.5 parent: 2 + - uid: 7262 + components: + - type: Transform + pos: -57.5,-63.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: -51.5,-62.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: -55.5,-63.5 + parent: 2 - uid: 7336 components: - type: Transform pos: 50.5,-66.5 parent: 2 - - uid: 7351 - components: - - type: Transform - pos: -53.5,-28.5 - parent: 2 - uid: 7385 components: - type: Transform pos: 43.5,-70.5 parent: 2 - - uid: 7418 + - uid: 7589 components: - type: Transform - pos: -51.5,-60.5 - parent: 2 - - uid: 7443 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 2 - - uid: 7444 - components: - - type: Transform - pos: -25.5,-26.5 - parent: 2 - - uid: 7513 - components: - - type: Transform - pos: -53.5,-27.5 + pos: -5.5,-57.5 parent: 2 - uid: 7615 components: - type: Transform pos: 32.5,-33.5 parent: 2 - - uid: 7620 + - uid: 7702 components: - type: Transform - pos: -41.5,-21.5 + pos: -34.5,-8.5 parent: 2 - - uid: 7668 + - uid: 7706 components: - type: Transform - pos: -51.5,-35.5 - parent: 2 - - uid: 7679 - components: - - type: Transform - pos: -50.5,-58.5 - parent: 2 - - uid: 7705 - components: - - type: Transform - pos: -12.5,-64.5 + pos: -28.5,-12.5 parent: 2 - uid: 7720 components: - type: Transform pos: 33.5,-35.5 parent: 2 - - uid: 7754 + - uid: 7750 components: - type: Transform - pos: -53.5,-32.5 - parent: 2 - - uid: 7755 - components: - - type: Transform - pos: -50.5,-25.5 + pos: -35.5,-8.5 parent: 2 - uid: 7784 components: - type: Transform pos: 77.5,-47.5 parent: 2 - - uid: 7791 + - uid: 7787 components: - type: Transform - pos: 28.5,-9.5 + pos: -62.5,-23.5 parent: 2 - uid: 7798 components: @@ -88670,35 +97270,15 @@ entities: - type: Transform pos: 46.5,-63.5 parent: 2 - - uid: 7845 + - uid: 7881 components: - type: Transform - pos: -48.5,-28.5 + pos: 17.5,-9.5 parent: 2 - - uid: 7848 + - uid: 7890 components: - type: Transform - pos: -27.5,-64.5 - parent: 2 - - uid: 7937 - components: - - type: Transform - pos: -28.5,-62.5 - parent: 2 - - uid: 7940 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 2 - - uid: 7941 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 2 - - uid: 7945 - components: - - type: Transform - pos: -27.5,-63.5 + pos: 17.5,-10.5 parent: 2 - uid: 7963 components: @@ -88720,95 +97300,235 @@ entities: - type: Transform pos: 41.5,-59.5 parent: 2 - - uid: 7990 + - uid: 8057 components: - type: Transform - pos: -46.5,-23.5 + pos: 16.5,-78.5 parent: 2 - - uid: 8049 + - uid: 8059 components: - type: Transform - pos: -46.5,-22.5 + pos: 16.5,-82.5 parent: 2 - - uid: 8051 + - uid: 8060 components: - type: Transform - pos: -41.5,-23.5 + pos: 16.5,-87.5 parent: 2 - - uid: 8058 + - uid: 8061 components: - type: Transform - pos: -50.5,-35.5 + pos: 16.5,-84.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + pos: 16.5,-86.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: 16.5,-88.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + pos: 17.5,-95.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: 17.5,-89.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: 17.5,-92.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: 17.5,-93.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + pos: 17.5,-91.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + pos: 16.5,-95.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: 4.5,-99.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: 5.5,-96.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + pos: 5.5,-92.5 parent: 2 - uid: 8076 components: - type: Transform - pos: -51.5,-44.5 + pos: -3.5,-88.5 parent: 2 - - uid: 8133 + - uid: 8078 components: - type: Transform - pos: -53.5,-45.5 + pos: -4.5,-88.5 parent: 2 - - uid: 8153 + - uid: 8079 components: - type: Transform - pos: -46.5,-21.5 + pos: -5.5,-87.5 parent: 2 - - uid: 8184 + - uid: 8080 components: - type: Transform - pos: -51.5,-38.5 + pos: -2.5,-86.5 parent: 2 - - uid: 8189 + - uid: 8081 components: - type: Transform - pos: -53.5,-40.5 + pos: -8.5,-85.5 parent: 2 - - uid: 8190 + - uid: 8082 components: - type: Transform - pos: -48.5,-46.5 + pos: -8.5,-84.5 parent: 2 - - uid: 8192 + - uid: 8083 components: - type: Transform - pos: -53.5,-41.5 + pos: -7.5,-86.5 parent: 2 - - uid: 8194 + - uid: 8084 components: - type: Transform - pos: -53.5,-46.5 + pos: -7.5,-89.5 parent: 2 - - uid: 8195 + - uid: 8085 components: - type: Transform - pos: -48.5,-45.5 + pos: -10.5,-95.5 parent: 2 - - uid: 8198 + - uid: 8088 components: - type: Transform - pos: -51.5,-48.5 + pos: -8.5,-97.5 parent: 2 - - uid: 8200 + - uid: 8091 components: - type: Transform - pos: -50.5,-38.5 + pos: -2.5,-98.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: -1.5,-98.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: -1.5,-97.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + pos: -12.5,-76.5 parent: 2 - uid: 8212 components: - type: Transform - pos: -50.5,-48.5 + pos: -12.5,-82.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + pos: -11.5,-88.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + pos: -12.5,-89.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + pos: -12.5,-88.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + pos: -13.5,-80.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + pos: -13.5,-78.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + pos: -13.5,-74.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + pos: -13.5,-72.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: -16.5,-68.5 parent: 2 - uid: 8230 components: - type: Transform pos: 75.5,-41.5 parent: 2 + - uid: 8231 + components: + - type: Transform + pos: -12.5,-69.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + pos: -12.5,-72.5 + parent: 2 + - uid: 8238 + components: + - type: Transform + pos: -12.5,-77.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + pos: -12.5,-78.5 + parent: 2 - uid: 8241 components: - type: Transform - pos: -53.5,-33.5 + pos: -12.5,-80.5 parent: 2 - uid: 8245 components: @@ -88825,6 +97545,11 @@ entities: - type: Transform pos: 74.5,-47.5 parent: 2 + - uid: 8346 + components: + - type: Transform + pos: -12.5,-85.5 + parent: 2 - uid: 8354 components: - type: Transform @@ -88835,11 +97560,31 @@ entities: - type: Transform pos: 42.5,-19.5 parent: 2 + - uid: 8395 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 - uid: 8407 components: - type: Transform pos: -4.5,15.5 parent: 2 + - uid: 8415 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 - uid: 8438 components: - type: Transform @@ -88855,10 +97600,15 @@ entities: - type: Transform pos: -43.5,-8.5 parent: 2 - - uid: 8524 + - uid: 8485 components: - type: Transform - pos: -50.5,-60.5 + pos: 12.5,-67.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 33.5,22.5 parent: 2 - uid: 8549 components: @@ -88878,17 +97628,7 @@ entities: - uid: 8657 components: - type: Transform - pos: -34.5,4.5 - parent: 2 - - uid: 8670 - components: - - type: Transform - pos: -36.5,15.5 - parent: 2 - - uid: 8673 - components: - - type: Transform - pos: 29.5,14.5 + pos: -35.5,3.5 parent: 2 - uid: 8697 components: @@ -88915,16 +97655,6 @@ entities: - type: Transform pos: 51.5,11.5 parent: 2 - - uid: 8702 - components: - - type: Transform - pos: 51.5,12.5 - parent: 2 - - uid: 8703 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - uid: 8704 components: - type: Transform @@ -88935,166 +97665,6 @@ entities: - type: Transform pos: 48.5,13.5 parent: 2 - - uid: 8706 - components: - - type: Transform - pos: 44.5,13.5 - parent: 2 - - uid: 8707 - components: - - type: Transform - pos: 43.5,13.5 - parent: 2 - - uid: 8708 - components: - - type: Transform - pos: 42.5,13.5 - parent: 2 - - uid: 8713 - components: - - type: Transform - pos: 30.5,15.5 - parent: 2 - - uid: 8714 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - - uid: 8719 - components: - - type: Transform - pos: 35.5,23.5 - parent: 2 - - uid: 8720 - components: - - type: Transform - pos: 35.5,24.5 - parent: 2 - - uid: 8721 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8722 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 8723 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 8724 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 8725 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 8726 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 8727 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 8728 - components: - - type: Transform - pos: 35.5,28.5 - parent: 2 - - uid: 8729 - components: - - type: Transform - pos: 36.5,28.5 - parent: 2 - - uid: 8730 - components: - - type: Transform - pos: 35.5,31.5 - parent: 2 - - uid: 8731 - components: - - type: Transform - pos: 35.5,32.5 - parent: 2 - - uid: 8732 - components: - - type: Transform - pos: 35.5,33.5 - parent: 2 - - uid: 8733 - components: - - type: Transform - pos: 36.5,36.5 - parent: 2 - - uid: 8734 - components: - - type: Transform - pos: 35.5,36.5 - parent: 2 - - uid: 8735 - components: - - type: Transform - pos: 34.5,36.5 - parent: 2 - - uid: 8736 - components: - - type: Transform - pos: 35.5,38.5 - parent: 2 - - uid: 8737 - components: - - type: Transform - pos: 35.5,41.5 - parent: 2 - - uid: 8738 - components: - - type: Transform - pos: 35.5,42.5 - parent: 2 - - uid: 8739 - components: - - type: Transform - pos: 32.5,43.5 - parent: 2 - - uid: 8740 - components: - - type: Transform - pos: 32.5,44.5 - parent: 2 - - uid: 8741 - components: - - type: Transform - pos: 32.5,45.5 - parent: 2 - - uid: 8742 - components: - - type: Transform - pos: 34.5,44.5 - parent: 2 - - uid: 8743 - components: - - type: Transform - pos: 30.5,44.5 - parent: 2 - - uid: 8744 - components: - - type: Transform - pos: 29.5,42.5 - parent: 2 - - uid: 8745 - components: - - type: Transform - pos: 29.5,41.5 - parent: 2 - uid: 8901 components: - type: Transform @@ -89105,6 +97675,11 @@ entities: - type: Transform pos: 16.5,-27.5 parent: 2 + - uid: 8911 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 - uid: 8925 components: - type: Transform @@ -89115,6 +97690,11 @@ entities: - type: Transform pos: -19.5,8.5 parent: 2 + - uid: 9085 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 - uid: 9086 components: - type: Transform @@ -89140,11 +97720,36 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 2 + - uid: 9250 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 - uid: 9282 components: - type: Transform pos: 18.5,-60.5 parent: 2 + - uid: 9307 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: 12.5,-71.5 + parent: 2 - uid: 9419 components: - type: Transform @@ -89185,6 +97790,21 @@ entities: - type: Transform pos: -52.5,6.5 parent: 2 + - uid: 9587 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 - uid: 9593 components: - type: Transform @@ -89195,6 +97815,11 @@ entities: - type: Transform pos: -17.5,29.5 parent: 2 + - uid: 9598 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 - uid: 9608 components: - type: Transform @@ -89235,36 +97860,21 @@ entities: - type: Transform pos: -50.5,6.5 parent: 2 - - uid: 9644 - components: - - type: Transform - pos: 13.5,3.5 - parent: 2 - uid: 9813 components: - type: Transform pos: 80.5,-48.5 parent: 2 - - uid: 9861 - components: - - type: Transform - pos: -55.5,-44.5 - parent: 2 - - uid: 9862 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 2 - - uid: 9887 - components: - - type: Transform - pos: -54.5,-62.5 - parent: 2 - uid: 9889 components: - type: Transform pos: -49.5,32.5 parent: 2 + - uid: 9928 + components: + - type: Transform + pos: -49.5,-40.5 + parent: 2 - uid: 9936 components: - type: Transform @@ -89280,31 +97890,6 @@ entities: - type: Transform pos: 57.5,-39.5 parent: 2 - - uid: 10014 - components: - - type: Transform - pos: -16.5,-65.5 - parent: 2 - - uid: 10015 - components: - - type: Transform - pos: -14.5,-65.5 - parent: 2 - - uid: 10016 - components: - - type: Transform - pos: -20.5,-65.5 - parent: 2 - - uid: 10017 - components: - - type: Transform - pos: -18.5,-65.5 - parent: 2 - - uid: 10018 - components: - - type: Transform - pos: -18.5,-66.5 - parent: 2 - uid: 10020 components: - type: Transform @@ -89405,41 +97990,62 @@ entities: - type: Transform pos: 51.5,-27.5 parent: 2 - - uid: 10060 + - uid: 10064 components: - type: Transform - pos: 13.5,2.5 + pos: 16.5,-42.5 parent: 2 - - uid: 10061 + - uid: 10099 components: - type: Transform - pos: 13.5,1.5 + pos: -28.5,-19.5 parent: 2 - - uid: 10075 + - uid: 10194 components: - type: Transform - pos: 13.5,-1.5 + pos: 2.5,-18.5 parent: 2 - - uid: 10076 + - uid: 10199 components: - type: Transform - pos: 13.5,-2.5 + pos: -20.5,-12.5 parent: 2 - - uid: 10221 + - uid: 10225 components: - type: Transform - pos: 20.5,-16.5 + pos: -38.5,-29.5 parent: 2 - - uid: 10382 + - uid: 10237 components: - type: Transform - pos: 13.5,-0.5 + rot: 3.141592653589793 rad + pos: 20.5,-37.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 10317 + components: + - type: Transform + pos: 6.5,-9.5 parent: 2 - uid: 10395 components: - type: Transform pos: -24.5,-49.5 parent: 2 + - uid: 10435 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 - uid: 10449 components: - type: Transform @@ -89448,12 +98054,7 @@ entities: - uid: 10468 components: - type: Transform - pos: -71.5,-62.5 - parent: 2 - - uid: 10471 - components: - - type: Transform - pos: -73.5,-54.5 + pos: -65.5,-63.5 parent: 2 - uid: 10474 components: @@ -89515,200 +98116,10 @@ entities: - type: Transform pos: -10.5,-63.5 parent: 2 - - uid: 10570 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 2 - - uid: 10571 - components: - - type: Transform - pos: -6.5,-65.5 - parent: 2 - - uid: 10572 - components: - - type: Transform - pos: -5.5,-67.5 - parent: 2 - - uid: 10573 - components: - - type: Transform - pos: -6.5,-71.5 - parent: 2 - - uid: 10574 - components: - - type: Transform - pos: -10.5,-71.5 - parent: 2 - - uid: 10575 - components: - - type: Transform - pos: -10.5,-69.5 - parent: 2 - uid: 10576 components: - type: Transform - pos: -10.5,-68.5 - parent: 2 - - uid: 10577 - components: - - type: Transform - pos: -10.5,-67.5 - parent: 2 - - uid: 10578 - components: - - type: Transform - pos: -10.5,-66.5 - parent: 2 - - uid: 10579 - components: - - type: Transform - pos: 8.5,-67.5 - parent: 2 - - uid: 10580 - components: - - type: Transform - pos: 9.5,-71.5 - parent: 2 - - uid: 10581 - components: - - type: Transform - pos: 13.5,-71.5 - parent: 2 - - uid: 10582 - components: - - type: Transform - pos: 13.5,-69.5 - parent: 2 - - uid: 10583 - components: - - type: Transform - pos: 13.5,-68.5 - parent: 2 - - uid: 10584 - components: - - type: Transform - pos: 13.5,-67.5 - parent: 2 - - uid: 10585 - components: - - type: Transform - pos: 13.5,-66.5 - parent: 2 - - uid: 10586 - components: - - type: Transform - pos: 13.5,-63.5 - parent: 2 - - uid: 10587 - components: - - type: Transform - pos: 13.5,-61.5 - parent: 2 - - uid: 10588 - components: - - type: Transform - pos: 13.5,-60.5 - parent: 2 - - uid: 10589 - components: - - type: Transform - pos: 13.5,-62.5 - parent: 2 - - uid: 10590 - components: - - type: Transform - pos: 8.5,-62.5 - parent: 2 - - uid: 10591 - components: - - type: Transform - pos: 9.5,-64.5 - parent: 2 - - uid: 10592 - components: - - type: Transform - pos: 9.5,-65.5 - parent: 2 - - uid: 10593 - components: - - type: Transform - pos: 6.5,-56.5 - parent: 2 - - uid: 10594 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 2 - - uid: 10595 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 2 - - uid: 10596 - components: - - type: Transform - pos: 8.5,-50.5 - parent: 2 - - uid: 10597 - components: - - type: Transform - pos: 7.5,-50.5 - parent: 2 - - uid: 10598 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 2 - - uid: 10599 - components: - - type: Transform - pos: 4.5,-51.5 - parent: 2 - - uid: 10600 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 2 - - uid: 10601 - components: - - type: Transform - pos: 2.5,-51.5 - parent: 2 - - uid: 10602 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 2 - - uid: 10603 - components: - - type: Transform - pos: 0.5,-51.5 - parent: 2 - - uid: 10604 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 2 - - uid: 10606 - components: - - type: Transform - pos: -1.5,-51.5 - parent: 2 - - uid: 10607 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 2 - - uid: 10608 - components: - - type: Transform - pos: -3.5,-55.5 - parent: 2 - - uid: 10609 - components: - - type: Transform - pos: -3.5,-56.5 + pos: 7.5,-59.5 parent: 2 - uid: 10613 components: @@ -89725,40 +98136,45 @@ entities: - type: Transform pos: -16.5,-45.5 parent: 2 - - uid: 10660 + - uid: 10626 components: - type: Transform - pos: -49.5,-55.5 + pos: -29.5,-14.5 parent: 2 - - uid: 10661 + - uid: 10645 components: - type: Transform - pos: -49.5,-53.5 + pos: -63.5,-63.5 parent: 2 - - uid: 10662 + - uid: 10649 components: - type: Transform - pos: -46.5,-56.5 + pos: -61.5,-63.5 parent: 2 - - uid: 10663 + - uid: 10650 components: - type: Transform - pos: -45.5,-56.5 + pos: -79.5,-63.5 parent: 2 - - uid: 10664 + - uid: 10651 components: - type: Transform - pos: -44.5,-56.5 + pos: -64.5,-63.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: -59.5,-53.5 parent: 2 - uid: 10686 components: - type: Transform pos: -38.5,6.5 parent: 2 - - uid: 10716 + - uid: 10696 components: - type: Transform - pos: -61.5,-45.5 + pos: -57.5,-22.5 parent: 2 - uid: 10717 components: @@ -89775,125 +98191,35 @@ entities: - type: Transform pos: 71.5,12.5 parent: 2 - - uid: 10729 - components: - - type: Transform - pos: -41.5,-31.5 - parent: 2 - uid: 10733 components: - type: Transform pos: 69.5,12.5 parent: 2 - - uid: 10748 + - uid: 10736 components: - type: Transform - pos: -73.5,-60.5 + pos: -55.5,-55.5 parent: 2 - - uid: 10751 + - uid: 10747 components: - type: Transform - pos: -50.5,-56.5 + pos: 7.5,2.5 parent: 2 - uid: 10753 components: - type: Transform - pos: -72.5,-45.5 - parent: 2 - - uid: 10754 - components: - - type: Transform - pos: -71.5,-45.5 - parent: 2 - - uid: 10755 - components: - - type: Transform - pos: -58.5,-45.5 - parent: 2 - - uid: 10757 - components: - - type: Transform - pos: -68.5,-45.5 - parent: 2 - - uid: 10758 - components: - - type: Transform - pos: -67.5,-45.5 - parent: 2 - - uid: 10759 - components: - - type: Transform - pos: -66.5,-45.5 - parent: 2 - - uid: 10761 - components: - - type: Transform - pos: -63.5,-45.5 - parent: 2 - - uid: 10762 - components: - - type: Transform - pos: -62.5,-45.5 + pos: -54.5,-63.5 parent: 2 - uid: 10764 components: - type: Transform - pos: -64.5,-45.5 + pos: -45.5,-3.5 parent: 2 - uid: 10765 components: - type: Transform - pos: -72.5,-64.5 - parent: 2 - - uid: 10766 - components: - - type: Transform - pos: -57.5,-44.5 - parent: 2 - - uid: 10767 - components: - - type: Transform - pos: -56.5,-44.5 - parent: 2 - - uid: 10768 - components: - - type: Transform - pos: -57.5,-45.5 - parent: 2 - - uid: 10769 - components: - - type: Transform - pos: -57.5,-46.5 - parent: 2 - - uid: 10770 - components: - - type: Transform - pos: -57.5,-47.5 - parent: 2 - - uid: 10771 - components: - - type: Transform - pos: -56.5,-47.5 - parent: 2 - - uid: 10772 - components: - - type: Transform - pos: -73.5,-50.5 - parent: 2 - - uid: 10773 - components: - - type: Transform - pos: -73.5,-48.5 - parent: 2 - - uid: 10774 - components: - - type: Transform - pos: -67.5,-44.5 - parent: 2 - - uid: 10776 - components: - - type: Transform - pos: -66.5,-44.5 + pos: -48.5,-8.5 parent: 2 - uid: 10779 components: @@ -89905,16 +98231,6 @@ entities: - type: Transform pos: 59.5,-7.5 parent: 2 - - uid: 10804 - components: - - type: Transform - pos: -73.5,-47.5 - parent: 2 - - uid: 10805 - components: - - type: Transform - pos: -72.5,-46.5 - parent: 2 - uid: 10806 components: - type: Transform @@ -89933,7 +98249,7 @@ entities: - uid: 10818 components: - type: Transform - pos: -20.5,-66.5 + pos: 9.5,5.5 parent: 2 - uid: 10832 components: @@ -90010,16 +98326,47 @@ entities: - type: Transform pos: 13.5,-23.5 parent: 2 + - uid: 10926 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 10942 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 - uid: 10975 components: - type: Transform pos: 81.5,-39.5 parent: 2 + - uid: 10994 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,13.5 + parent: 2 - uid: 11011 components: - type: Transform pos: 80.5,-39.5 parent: 2 + - uid: 11061 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 - uid: 11072 components: - type: Transform @@ -90035,80 +98382,45 @@ entities: - type: Transform pos: 84.5,-36.5 parent: 2 - - uid: 11121 - components: - - type: Transform - pos: -48.5,-31.5 - parent: 2 - uid: 11146 components: - type: Transform pos: -37.5,3.5 parent: 2 - - uid: 11170 + - uid: 11168 components: - type: Transform - pos: -34.5,5.5 + pos: 12.5,-74.5 parent: 2 - - uid: 11172 + - uid: 11175 components: - type: Transform - pos: -34.5,3.5 + pos: -9.5,-69.5 parent: 2 - - uid: 11177 + - uid: 11176 components: - type: Transform - pos: 19.5,0.5 - parent: 2 - - uid: 11179 - components: - - type: Transform - pos: 19.5,3.5 - parent: 2 - - uid: 11181 - components: - - type: Transform - pos: 17.5,0.5 - parent: 2 - - uid: 11184 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 2 - - uid: 11186 - components: - - type: Transform - pos: 17.5,2.5 - parent: 2 - - uid: 11190 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 2 - - uid: 11192 - components: - - type: Transform - pos: 17.5,3.5 + pos: 0.5,-82.5 parent: 2 - uid: 11200 components: - type: Transform pos: 91.5,-37.5 parent: 2 - - uid: 11204 + - uid: 11214 components: - type: Transform - pos: 19.5,2.5 + pos: -23.5,-12.5 parent: 2 - - uid: 11259 + - uid: 11254 components: - type: Transform - pos: -40.5,-32.5 + pos: 39.5,25.5 parent: 2 - - uid: 11268 + - uid: 11267 components: - type: Transform - pos: -51.5,-61.5 + pos: -28.5,-39.5 parent: 2 - uid: 11272 components: @@ -90155,16 +98467,6 @@ entities: - type: Transform pos: -20.5,8.5 parent: 2 - - uid: 11504 - components: - - type: Transform - pos: -73.5,-53.5 - parent: 2 - - uid: 11507 - components: - - type: Transform - pos: -73.5,-46.5 - parent: 2 - uid: 11525 components: - type: Transform @@ -90180,11 +98482,6 @@ entities: - type: Transform pos: 89.5,-38.5 parent: 2 - - uid: 11553 - components: - - type: Transform - pos: -15.5,-66.5 - parent: 2 - uid: 11587 components: - type: Transform @@ -90195,11 +98492,6 @@ entities: - type: Transform pos: 89.5,-37.5 parent: 2 - - uid: 11639 - components: - - type: Transform - pos: -18.5,-63.5 - parent: 2 - uid: 11653 components: - type: Transform @@ -90210,11 +98502,6 @@ entities: - type: Transform pos: 27.5,-59.5 parent: 2 - - uid: 11772 - components: - - type: Transform - pos: -23.5,-62.5 - parent: 2 - uid: 11822 components: - type: Transform @@ -90245,11 +98532,6 @@ entities: - type: Transform pos: 81.5,-44.5 parent: 2 - - uid: 11891 - components: - - type: Transform - pos: -27.5,-32.5 - parent: 2 - uid: 11895 components: - type: Transform @@ -90265,10 +98547,30 @@ entities: - type: Transform pos: 37.5,-8.5 parent: 2 - - uid: 12008 + - uid: 12006 components: - type: Transform - pos: -34.5,-1.5 + pos: -22.5,-12.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + pos: -34.5,-34.5 parent: 2 - uid: 12047 components: @@ -90280,61 +98582,283 @@ entities: - type: Transform pos: 82.5,-43.5 parent: 2 + - uid: 12108 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 - uid: 12150 components: - type: Transform pos: -41.5,-1.5 parent: 2 + - uid: 12224 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 - uid: 12300 components: - type: Transform pos: 52.5,11.5 parent: 2 + - uid: 12322 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 - uid: 12329 components: - type: Transform pos: 75.5,11.5 parent: 2 + - uid: 12343 + components: + - type: Transform + pos: -56.5,-57.5 + parent: 2 - uid: 12357 components: - type: Transform pos: 75.5,-1.5 parent: 2 + - uid: 12382 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-38.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-36.5 + parent: 2 - uid: 12506 components: - type: Transform pos: 54.5,-5.5 parent: 2 + - uid: 12530 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 12589 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 - uid: 12599 components: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 12696 + - uid: 12672 components: - type: Transform - pos: -28.5,-32.5 + pos: 8.5,5.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + pos: -46.5,-27.5 parent: 2 - uid: 12702 components: - type: Transform pos: 83.5,-42.5 parent: 2 - - uid: 12710 + - uid: 12712 components: - type: Transform - pos: -41.5,-29.5 + pos: 12.5,-73.5 parent: 2 - - uid: 12834 + - uid: 12725 components: - type: Transform - pos: -5.5,-62.5 + pos: -4.5,-63.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + pos: -5.5,-77.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + pos: -5.5,-73.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: -5.5,-68.5 parent: 2 - uid: 12851 components: - type: Transform pos: -43.5,7.5 parent: 2 + - uid: 12885 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + pos: -60.5,-31.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 2 + - uid: 12925 + components: + - type: Transform + pos: -60.5,-32.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + pos: -54.5,-32.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 - uid: 12988 components: - type: Transform @@ -90345,25 +98869,16 @@ entities: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 13020 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 2 - - uid: 13021 - components: - - type: Transform - pos: -27.5,-57.5 - parent: 2 - uid: 13032 components: - type: Transform pos: 58.5,-7.5 parent: 2 - - uid: 13037 + - uid: 13039 components: - type: Transform - pos: 12.5,-6.5 + rot: -1.5707963267948966 rad + pos: 34.5,27.5 parent: 2 - uid: 13085 components: @@ -90375,6 +98890,21 @@ entities: - type: Transform pos: -20.5,-9.5 parent: 2 + - uid: 13103 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 - uid: 13149 components: - type: Transform @@ -90400,10 +98930,30 @@ entities: - type: Transform pos: 76.5,2.5 parent: 2 - - uid: 13309 + - uid: 13246 components: - type: Transform - pos: -22.5,-66.5 + pos: 4.5,-8.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + pos: 8.5,-73.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: -9.5,-75.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + pos: -9.5,-73.5 parent: 2 - uid: 13310 components: @@ -90420,10 +98970,26 @@ entities: - type: Transform pos: 76.5,7.5 parent: 2 - - uid: 13422 + - uid: 13351 components: - type: Transform - pos: -18.5,-15.5 + rot: -1.5707963267948966 rad + pos: 38.5,26.5 + parent: 2 + - uid: 13387 + components: + - type: Transform + pos: 12.5,-78.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: 8.5,-78.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + pos: -50.5,-29.5 parent: 2 - uid: 13576 components: @@ -90455,10 +99021,20 @@ entities: - type: Transform pos: 76.5,10.5 parent: 2 - - uid: 13704 + - uid: 13683 components: - type: Transform - pos: -22.5,-64.5 + pos: 5.5,-5.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + pos: 8.5,-41.5 parent: 2 - uid: 13753 components: @@ -90490,11 +99066,61 @@ entities: - type: Transform pos: 25.5,-60.5 parent: 2 + - uid: 13789 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 2 + - uid: 13797 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + pos: -49.5,-41.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: -47.5,-39.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + pos: -47.5,-42.5 + parent: 2 + - uid: 13923 + components: + - type: Transform + pos: -41.5,-42.5 + parent: 2 + - uid: 13924 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 - uid: 13991 components: - type: Transform pos: -23.5,-49.5 parent: 2 + - uid: 14109 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 - uid: 14208 components: - type: Transform @@ -90560,31 +99186,6 @@ entities: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 14274 - components: - - type: Transform - pos: -49.5,-62.5 - parent: 2 - - uid: 14279 - components: - - type: Transform - pos: -74.5,-63.5 - parent: 2 - - uid: 14281 - components: - - type: Transform - pos: -73.5,-64.5 - parent: 2 - - uid: 14282 - components: - - type: Transform - pos: -73.5,-59.5 - parent: 2 - - uid: 14283 - components: - - type: Transform - pos: -73.5,-58.5 - parent: 2 - uid: 14299 components: - type: Transform @@ -90660,10 +99261,10 @@ entities: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 14342 + - uid: 14333 components: - type: Transform - pos: -22.5,-65.5 + pos: 46.5,25.5 parent: 2 - uid: 14358 components: @@ -90695,11 +99296,6 @@ entities: - type: Transform pos: -26.5,14.5 parent: 2 - - uid: 14396 - components: - - type: Transform - pos: -14.5,-66.5 - parent: 2 - uid: 14402 components: - type: Transform @@ -90740,46 +99336,141 @@ entities: - type: Transform pos: 64.5,-58.5 parent: 2 - - uid: 14720 + - uid: 14753 components: - type: Transform - pos: -21.5,-66.5 + pos: -50.5,-26.5 parent: 2 - - uid: 14847 + - uid: 14754 components: - type: Transform - pos: -6.5,-54.5 + pos: -50.5,-27.5 + parent: 2 + - uid: 14755 + components: + - type: Transform + pos: -50.5,-33.5 + parent: 2 + - uid: 14756 + components: + - type: Transform + pos: -50.5,-34.5 parent: 2 - uid: 14858 components: - type: Transform pos: -6.5,-22.5 parent: 2 - - uid: 14888 + - uid: 14910 components: - type: Transform - pos: -48.5,-42.5 + pos: -62.5,-32.5 parent: 2 - - uid: 14889 + - uid: 14911 components: - type: Transform - pos: -45.5,-42.5 - parent: 2 - - uid: 14890 - components: - - type: Transform - pos: -42.5,-44.5 - parent: 2 - - uid: 14891 - components: - - type: Transform - pos: -43.5,-44.5 + pos: -62.5,-34.5 parent: 2 - uid: 14912 components: - type: Transform pos: -6.5,16.5 parent: 2 + - uid: 14913 + components: + - type: Transform + pos: -62.5,-33.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: -62.5,-41.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + pos: -62.5,-42.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + pos: -63.5,-30.5 + parent: 2 + - uid: 14924 + components: + - type: Transform + pos: -63.5,-29.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: -63.5,-27.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + pos: -62.5,-29.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + pos: -63.5,-32.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + pos: -63.5,-34.5 + parent: 2 + - uid: 14933 + components: + - type: Transform + pos: -63.5,-40.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + pos: -63.5,-42.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: 13.5,-70.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 2 + - uid: 14999 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + pos: 13.5,-68.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 - uid: 15025 components: - type: Transform @@ -90790,11 +99481,6 @@ entities: - type: Transform pos: -61.5,24.5 parent: 2 - - uid: 15034 - components: - - type: Transform - pos: -69.5,-45.5 - parent: 2 - uid: 15173 components: - type: Transform @@ -90805,6 +99491,11 @@ entities: - type: Transform pos: 75.5,-62.5 parent: 2 + - uid: 15247 + components: + - type: Transform + pos: -60.5,-63.5 + parent: 2 - uid: 15262 components: - type: Transform @@ -90830,11 +99521,6 @@ entities: - type: Transform pos: -51.5,32.5 parent: 2 - - uid: 15318 - components: - - type: Transform - pos: 51.5,17.5 - parent: 2 - uid: 15334 components: - type: Transform @@ -90845,16 +99531,26 @@ entities: - type: Transform pos: 81.5,-7.5 parent: 2 - - uid: 15367 - components: - - type: Transform - pos: -39.5,-35.5 - parent: 2 - uid: 15408 components: - type: Transform pos: -7.5,-23.5 parent: 2 + - uid: 15452 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 15453 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 - uid: 15461 components: - type: Transform @@ -90875,10 +99571,15 @@ entities: - type: Transform pos: -34.5,1.5 parent: 2 - - uid: 15616 + - uid: 15614 components: - type: Transform - pos: -34.5,-9.5 + pos: 8.5,-68.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + pos: 7.5,-75.5 parent: 2 - uid: 15628 components: @@ -90895,6 +99596,16 @@ entities: - type: Transform pos: 73.5,-5.5 parent: 2 + - uid: 15668 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: 12.5,-75.5 + parent: 2 - uid: 15710 components: - type: Transform @@ -90915,71 +99626,26 @@ entities: - type: Transform pos: -15.5,-45.5 parent: 2 - - uid: 15768 + - uid: 15740 components: - type: Transform - pos: -58.5,-44.5 + pos: -51.5,-9.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: 51.5,20.5 parent: 2 - uid: 15787 - components: - - type: Transform - pos: -63.5,-63.5 - parent: 2 - - uid: 15791 - components: - - type: Transform - pos: -72.5,-61.5 - parent: 2 - - uid: 15792 components: - type: Transform pos: -53.5,-63.5 parent: 2 - - uid: 15793 - components: - - type: Transform - pos: -62.5,-63.5 - parent: 2 - - uid: 15794 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 2 - - uid: 15799 - components: - - type: Transform - pos: -60.5,-63.5 - parent: 2 - - uid: 15800 - components: - - type: Transform - pos: -59.5,-63.5 - parent: 2 - - uid: 15804 - components: - - type: Transform - pos: -65.5,-63.5 - parent: 2 - - uid: 15810 - components: - - type: Transform - pos: -56.5,-63.5 - parent: 2 - - uid: 15811 - components: - - type: Transform - pos: -55.5,-63.5 - parent: 2 - uid: 15861 components: - type: Transform pos: -40.5,32.5 parent: 2 - - uid: 15934 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 2 - uid: 16039 components: - type: Transform @@ -91000,11 +99666,31 @@ entities: - type: Transform pos: 76.5,1.5 parent: 2 + - uid: 16050 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + pos: -57.5,-61.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 - uid: 16105 components: - type: Transform pos: 76.5,9.5 parent: 2 + - uid: 16121 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 2 - uid: 16125 components: - type: Transform @@ -91025,6 +99711,11 @@ entities: - type: Transform pos: 77.5,-72.5 parent: 2 + - uid: 16172 + components: + - type: Transform + pos: 8.5,-71.5 + parent: 2 - uid: 16196 components: - type: Transform @@ -91055,10 +99746,10 @@ entities: - type: Transform pos: 75.5,6.5 parent: 2 - - uid: 16333 + - uid: 16328 components: - type: Transform - pos: -26.5,-16.5 + pos: -56.5,-61.5 parent: 2 - uid: 16366 components: @@ -91105,141 +99796,102 @@ entities: - type: Transform pos: 73.5,11.5 parent: 2 - - uid: 16717 + - uid: 16714 components: - type: Transform - pos: -20.5,-63.5 - parent: 2 - - uid: 16718 - components: - - type: Transform - pos: -21.5,-63.5 + pos: -61.5,-60.5 parent: 2 - uid: 16719 components: - type: Transform - pos: -22.5,-63.5 + pos: -61.5,-58.5 parent: 2 - uid: 16721 components: - type: Transform pos: 57.5,-61.5 parent: 2 + - uid: 16734 + components: + - type: Transform + pos: -60.5,-58.5 + parent: 2 + - uid: 16740 + components: + - type: Transform + pos: -57.5,-57.5 + parent: 2 - uid: 16777 components: - type: Transform pos: -9.5,15.5 parent: 2 - - uid: 16780 - components: - - type: Transform - pos: -12.5,-65.5 - parent: 2 - - uid: 16784 - components: - - type: Transform - pos: -14.5,-63.5 - parent: 2 - - uid: 16785 - components: - - type: Transform - pos: -19.5,-63.5 - parent: 2 - - uid: 16787 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 2 - - uid: 16788 - components: - - type: Transform - pos: -16.5,-63.5 - parent: 2 - - uid: 16789 - components: - - type: Transform - pos: -15.5,-63.5 - parent: 2 - - uid: 16795 - components: - - type: Transform - pos: -22.5,-62.5 - parent: 2 - - uid: 16796 - components: - - type: Transform - pos: -24.5,-62.5 - parent: 2 - - uid: 16797 - components: - - type: Transform - pos: -25.5,-62.5 - parent: 2 - - uid: 16798 - components: - - type: Transform - pos: -26.5,-62.5 - parent: 2 - - uid: 16801 - components: - - type: Transform - pos: -11.5,-65.5 - parent: 2 - - uid: 16820 - components: - - type: Transform - pos: -12.5,-63.5 - parent: 2 - - uid: 16829 - components: - - type: Transform - pos: -25.5,-65.5 - parent: 2 - - uid: 16830 - components: - - type: Transform - pos: -26.5,-65.5 - parent: 2 - - uid: 16832 - components: - - type: Transform - pos: -16.5,-62.5 - parent: 2 - - uid: 16833 - components: - - type: Transform - pos: -18.5,-62.5 - parent: 2 - - uid: 16836 - components: - - type: Transform - pos: -20.5,-62.5 - parent: 2 - - uid: 16837 - components: - - type: Transform - pos: -14.5,-62.5 - parent: 2 - - uid: 16838 - components: - - type: Transform - pos: -12.5,-62.5 - parent: 2 - uid: 16883 components: - type: Transform pos: -43.5,-5.5 parent: 2 - - uid: 16960 + - uid: 16896 components: - type: Transform - pos: -24.5,-66.5 + pos: -60.5,-60.5 + parent: 2 + - uid: 16902 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 16916 + components: + - type: Transform + pos: -52.5,-63.5 + parent: 2 + - uid: 16942 + components: + - type: Transform + pos: -62.5,-62.5 + parent: 2 + - uid: 16944 + components: + - type: Transform + pos: -51.5,-63.5 + parent: 2 + - uid: 16945 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 2 + - uid: 16946 + components: + - type: Transform + pos: -63.5,-62.5 + parent: 2 + - uid: 16955 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 16961 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + pos: 50.5,20.5 parent: 2 - uid: 16984 components: - type: Transform pos: 63.5,11.5 parent: 2 + - uid: 16987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 2 - uid: 17006 components: - type: Transform @@ -91295,51 +99947,11 @@ entities: - type: Transform pos: -42.5,3.5 parent: 2 - - uid: 17105 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 2 - - uid: 17106 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 17107 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 - - uid: 17108 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 2 - uid: 17111 components: - type: Transform pos: 66.5,11.5 parent: 2 - - uid: 17141 - components: - - type: Transform - pos: -52.5,-62.5 - parent: 2 - - uid: 17188 - components: - - type: Transform - pos: -59.5,-62.5 - parent: 2 - - uid: 17193 - components: - - type: Transform - pos: -51.5,-62.5 - parent: 2 - - uid: 17194 - components: - - type: Transform - pos: -56.5,-62.5 - parent: 2 - uid: 17196 components: - type: Transform @@ -91400,41 +100012,21 @@ entities: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 17291 - components: - - type: Transform - pos: 50.5,16.5 - parent: 2 - - uid: 17292 - components: - - type: Transform - pos: 51.5,16.5 - parent: 2 - - uid: 17293 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - uid: 17309 components: - type: Transform pos: 57.5,12.5 parent: 2 - - uid: 17683 + - uid: 17420 components: - type: Transform - pos: -56.5,-46.5 + pos: -36.5,15.5 parent: 2 - uid: 17710 components: - type: Transform pos: 60.5,-52.5 parent: 2 - - uid: 17711 - components: - - type: Transform - pos: 60.5,-54.5 - parent: 2 - uid: 17712 components: - type: Transform @@ -91445,26 +100037,11 @@ entities: - type: Transform pos: 62.5,-52.5 parent: 2 - - uid: 17725 - components: - - type: Transform - pos: -49.5,-52.5 - parent: 2 - uid: 17729 components: - type: Transform pos: 81.5,-24.5 parent: 2 - - uid: 17751 - components: - - type: Transform - pos: -49.5,-63.5 - parent: 2 - - uid: 17752 - components: - - type: Transform - pos: -50.5,-63.5 - parent: 2 - uid: 17758 components: - type: Transform @@ -91510,11 +100087,6 @@ entities: - type: Transform pos: -9.5,27.5 parent: 2 - - uid: 17784 - components: - - type: Transform - pos: -64.5,-44.5 - parent: 2 - uid: 17785 components: - type: Transform @@ -91535,11 +100107,6 @@ entities: - type: Transform pos: -61.5,20.5 parent: 2 - - uid: 17794 - components: - - type: Transform - pos: 46.5,17.5 - parent: 2 - uid: 17796 components: - type: Transform @@ -91560,81 +100127,6 @@ entities: - type: Transform pos: -27.5,37.5 parent: 2 - - uid: 17807 - components: - - type: Transform - pos: 45.5,17.5 - parent: 2 - - uid: 17808 - components: - - type: Transform - pos: 44.5,17.5 - parent: 2 - - uid: 17809 - components: - - type: Transform - pos: 43.5,17.5 - parent: 2 - - uid: 17810 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - - uid: 17811 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 17812 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2 - - uid: 17813 - components: - - type: Transform - pos: 44.5,18.5 - parent: 2 - - uid: 17814 - components: - - type: Transform - pos: 48.5,18.5 - parent: 2 - - uid: 17815 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - - uid: 17816 - components: - - type: Transform - pos: 47.5,17.5 - parent: 2 - - uid: 17817 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 17818 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - - uid: 17819 - components: - - type: Transform - pos: 36.5,18.5 - parent: 2 - - uid: 17843 - components: - - type: Transform - pos: -74.5,-46.5 - parent: 2 - - uid: 17846 - components: - - type: Transform - pos: -73.5,-45.5 - parent: 2 - uid: 17866 components: - type: Transform @@ -91645,11 +100137,6 @@ entities: - type: Transform pos: -43.5,-3.5 parent: 2 - - uid: 17887 - components: - - type: Transform - pos: -72.5,-44.5 - parent: 2 - uid: 17889 components: - type: Transform @@ -91695,11 +100182,6 @@ entities: - type: Transform pos: -55.5,-3.5 parent: 2 - - uid: 17899 - components: - - type: Transform - pos: -74.5,-45.5 - parent: 2 - uid: 17900 components: - type: Transform @@ -91800,26 +100282,11 @@ entities: - type: Transform pos: -66.5,-21.5 parent: 2 - - uid: 17953 - components: - - type: Transform - pos: -54.5,-24.5 - parent: 2 - uid: 17954 components: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 17955 - components: - - type: Transform - pos: -56.5,-22.5 - parent: 2 - - uid: 17957 - components: - - type: Transform - pos: -55.5,-22.5 - parent: 2 - uid: 17958 components: - type: Transform @@ -91940,21 +100407,11 @@ entities: - type: Transform pos: -11.5,27.5 parent: 2 - - uid: 18150 - components: - - type: Transform - pos: -50.5,-62.5 - parent: 2 - uid: 18175 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 18188 - components: - - type: Transform - pos: -64.5,-62.5 - parent: 2 - uid: 18189 components: - type: Transform @@ -92090,11 +100547,6 @@ entities: - type: Transform pos: 76.5,-1.5 parent: 2 - - uid: 18275 - components: - - type: Transform - pos: -51.5,-64.5 - parent: 2 - uid: 18276 components: - type: Transform @@ -92235,11 +100687,6 @@ entities: - type: Transform pos: 77.5,2.5 parent: 2 - - uid: 18311 - components: - - type: Transform - pos: -50.5,-64.5 - parent: 2 - uid: 18312 components: - type: Transform @@ -92395,6 +100842,11 @@ entities: - type: Transform pos: 90.5,-15.5 parent: 2 + - uid: 18416 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 - uid: 18422 components: - type: Transform @@ -92550,21 +101002,11 @@ entities: - type: Transform pos: 83.5,-47.5 parent: 2 - - uid: 18600 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 2 - uid: 18606 components: - type: Transform pos: -24.5,40.5 parent: 2 - - uid: 18609 - components: - - type: Transform - pos: -63.5,-62.5 - parent: 2 - uid: 18615 components: - type: Transform @@ -92710,30 +101152,15 @@ entities: - type: Transform pos: 54.5,-45.5 parent: 2 - - uid: 18870 - components: - - type: Transform - pos: -40.5,-25.5 - parent: 2 - - uid: 18871 - components: - - type: Transform - pos: -42.5,-27.5 - parent: 2 - uid: 18899 components: - type: Transform pos: -28.5,6.5 parent: 2 - - uid: 18923 + - uid: 18964 components: - type: Transform - pos: -30.5,-10.5 - parent: 2 - - uid: 18965 - components: - - type: Transform - pos: -30.5,-11.5 + pos: -59.5,-50.5 parent: 2 - uid: 19031 components: @@ -92790,16 +101217,6 @@ entities: - type: Transform pos: -76.5,-18.5 parent: 2 - - uid: 19045 - components: - - type: Transform - pos: -55.5,-21.5 - parent: 2 - - uid: 19046 - components: - - type: Transform - pos: -56.5,-21.5 - parent: 2 - uid: 19047 components: - type: Transform @@ -92890,430 +101307,30 @@ entities: - type: Transform pos: 58.5,-76.5 parent: 2 - - uid: 19184 + - uid: 19097 components: - type: Transform - pos: -16.5,-84.5 + pos: 6.5,-54.5 parent: 2 - - uid: 19188 + - uid: 19142 components: - type: Transform - pos: -15.5,-84.5 + pos: 7.5,-54.5 parent: 2 - - uid: 19189 + - uid: 19186 components: - type: Transform - pos: -14.5,-84.5 - parent: 2 - - uid: 19190 - components: - - type: Transform - pos: -14.5,-82.5 - parent: 2 - - uid: 19191 - components: - - type: Transform - pos: -15.5,-82.5 - parent: 2 - - uid: 19192 - components: - - type: Transform - pos: -16.5,-82.5 - parent: 2 - - uid: 19193 - components: - - type: Transform - pos: -13.5,-82.5 - parent: 2 - - uid: 19194 - components: - - type: Transform - pos: -13.5,-83.5 - parent: 2 - - uid: 19195 - components: - - type: Transform - pos: -12.5,-83.5 - parent: 2 - - uid: 19196 - components: - - type: Transform - pos: -11.5,-83.5 - parent: 2 - - uid: 19197 - components: - - type: Transform - pos: -11.5,-82.5 - parent: 2 - - uid: 19198 - components: - - type: Transform - pos: -11.5,-81.5 - parent: 2 - - uid: 19199 - components: - - type: Transform - pos: -11.5,-80.5 - parent: 2 - - uid: 19200 - components: - - type: Transform - pos: -9.5,-80.5 - parent: 2 - - uid: 19201 - components: - - type: Transform - pos: -9.5,-82.5 - parent: 2 - - uid: 19202 - components: - - type: Transform - pos: -10.5,-82.5 - parent: 2 - - uid: 19203 - components: - - type: Transform - pos: -9.5,-81.5 - parent: 2 - - uid: 19204 - components: - - type: Transform - pos: 3.5,-82.5 - parent: 2 - - uid: 19205 - components: - - type: Transform - pos: -8.5,-81.5 - parent: 2 - - uid: 19206 - components: - - type: Transform - pos: -7.5,-81.5 - parent: 2 - - uid: 19207 - components: - - type: Transform - pos: -7.5,-80.5 - parent: 2 - - uid: 19208 - components: - - type: Transform - pos: -5.5,-80.5 - parent: 2 - - uid: 19209 - components: - - type: Transform - pos: -5.5,-81.5 - parent: 2 - - uid: 19210 - components: - - type: Transform - pos: -5.5,-82.5 - parent: 2 - - uid: 19211 - components: - - type: Transform - pos: -5.5,-83.5 - parent: 2 - - uid: 19212 - components: - - type: Transform - pos: -4.5,-81.5 + pos: -1.5,-96.5 parent: 2 - uid: 19213 components: - type: Transform - pos: -3.5,-81.5 - parent: 2 - - uid: 19214 - components: - - type: Transform - pos: -6.5,-82.5 - parent: 2 - - uid: 19215 - components: - - type: Transform - pos: -3.5,-82.5 - parent: 2 - - uid: 19216 - components: - - type: Transform - pos: -2.5,-82.5 - parent: 2 - - uid: 19217 - components: - - type: Transform - pos: -1.5,-82.5 - parent: 2 - - uid: 19218 - components: - - type: Transform - pos: -0.5,-82.5 - parent: 2 - - uid: 19219 - components: - - type: Transform - pos: -0.5,-84.5 - parent: 2 - - uid: 19220 - components: - - type: Transform - pos: -1.5,-84.5 - parent: 2 - - uid: 19221 - components: - - type: Transform - pos: -2.5,-84.5 - parent: 2 - - uid: 19222 - components: - - type: Transform - pos: -3.5,-84.5 - parent: 2 - - uid: 19223 - components: - - type: Transform - pos: -0.5,-83.5 - parent: 2 - - uid: 19224 - components: - - type: Transform - pos: 0.5,-83.5 - parent: 2 - - uid: 19225 - components: - - type: Transform - pos: 1.5,-83.5 - parent: 2 - - uid: 19226 - components: - - type: Transform - pos: 3.5,-83.5 - parent: 2 - - uid: 19227 - components: - - type: Transform - pos: 2.5,-83.5 - parent: 2 - - uid: 19228 - components: - - type: Transform - pos: 3.5,-85.5 - parent: 2 - - uid: 19229 - components: - - type: Transform - pos: 2.5,-85.5 - parent: 2 - - uid: 19230 - components: - - type: Transform - pos: 1.5,-85.5 - parent: 2 - - uid: 19231 - components: - - type: Transform - pos: 0.5,-85.5 - parent: 2 - - uid: 19232 - components: - - type: Transform - pos: -0.5,-85.5 - parent: 2 - - uid: 19233 - components: - - type: Transform - pos: 4.5,-82.5 - parent: 2 - - uid: 19234 - components: - - type: Transform - pos: 5.5,-82.5 - parent: 2 - - uid: 19235 - components: - - type: Transform - pos: 6.5,-82.5 - parent: 2 - - uid: 19236 - components: - - type: Transform - pos: 6.5,-84.5 - parent: 2 - - uid: 19237 - components: - - type: Transform - pos: 4.5,-84.5 - parent: 2 - - uid: 19238 - components: - - type: Transform - pos: 5.5,-84.5 - parent: 2 - - uid: 19239 - components: - - type: Transform - pos: 6.5,-83.5 - parent: 2 - - uid: 19240 - components: - - type: Transform - pos: 8.5,-80.5 - parent: 2 - - uid: 19241 - components: - - type: Transform - pos: 8.5,-81.5 - parent: 2 - - uid: 19242 - components: - - type: Transform - pos: 8.5,-82.5 - parent: 2 - - uid: 19243 - components: - - type: Transform - pos: 8.5,-83.5 - parent: 2 - - uid: 19244 - components: - - type: Transform - pos: 10.5,-82.5 - parent: 2 - - uid: 19245 - components: - - type: Transform - pos: 10.5,-81.5 - parent: 2 - - uid: 19246 - components: - - type: Transform - pos: 9.5,-80.5 - parent: 2 - - uid: 19247 - components: - - type: Transform - pos: 9.5,-82.5 + pos: -0.5,-96.5 parent: 2 - uid: 19248 components: - type: Transform - pos: 11.5,-81.5 - parent: 2 - - uid: 19249 - components: - - type: Transform - pos: 12.5,-81.5 - parent: 2 - - uid: 19250 - components: - - type: Transform - pos: 12.5,-82.5 - parent: 2 - - uid: 19251 - components: - - type: Transform - pos: 13.5,-82.5 - parent: 2 - - uid: 19252 - components: - - type: Transform - pos: 14.5,-82.5 - parent: 2 - - uid: 19253 - components: - - type: Transform - pos: 14.5,-83.5 - parent: 2 - - uid: 19254 - components: - - type: Transform - pos: 15.5,-83.5 - parent: 2 - - uid: 19255 - components: - - type: Transform - pos: 16.5,-83.5 - parent: 2 - - uid: 19256 - components: - - type: Transform - pos: 16.5,-82.5 - parent: 2 - - uid: 19257 - components: - - type: Transform - pos: 17.5,-82.5 - parent: 2 - - uid: 19258 - components: - - type: Transform - pos: 18.5,-82.5 - parent: 2 - - uid: 19259 - components: - - type: Transform - pos: 19.5,-82.5 - parent: 2 - - uid: 19260 - components: - - type: Transform - pos: 16.5,-81.5 - parent: 2 - - uid: 19261 - components: - - type: Transform - pos: 15.5,-81.5 - parent: 2 - - uid: 19262 - components: - - type: Transform - pos: 13.5,-80.5 - parent: 2 - - uid: 19263 - components: - - type: Transform - pos: 13.5,-80.5 - parent: 2 - - uid: 19264 - components: - - type: Transform - pos: 11.5,-79.5 - parent: 2 - - uid: 19265 - components: - - type: Transform - pos: 10.5,-79.5 - parent: 2 - - uid: 19266 - components: - - type: Transform - pos: 16.5,-84.5 - parent: 2 - - uid: 19267 - components: - - type: Transform - pos: 17.5,-84.5 - parent: 2 - - uid: 19268 - components: - - type: Transform - pos: 18.5,-84.5 - parent: 2 - - uid: 19269 - components: - - type: Transform - pos: -9.5,-79.5 - parent: 2 - - uid: 19270 - components: - - type: Transform - pos: -7.5,-79.5 - parent: 2 - - uid: 19271 - components: - - type: Transform - pos: 10.5,-78.5 + pos: -5.5,-78.5 parent: 2 - uid: 19544 components: @@ -93375,11 +101392,6 @@ entities: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 19627 - components: - - type: Transform - pos: -53.5,-25.5 - parent: 2 - uid: 19629 components: - type: Transform @@ -93430,11 +101442,6 @@ entities: - type: Transform pos: -59.5,-20.5 parent: 2 - - uid: 19759 - components: - - type: Transform - pos: -52.5,-20.5 - parent: 2 - uid: 19760 components: - type: Transform @@ -93465,11 +101472,6 @@ entities: - type: Transform pos: -60.5,-2.5 parent: 2 - - uid: 19773 - components: - - type: Transform - pos: -55.5,-23.5 - parent: 2 - uid: 19774 components: - type: Transform @@ -93670,6 +101672,11 @@ entities: - type: Transform pos: 93.5,-39.5 parent: 2 + - uid: 19975 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 - uid: 20005 components: - type: Transform @@ -93785,11 +101792,86 @@ entities: - type: Transform pos: -65.5,-18.5 parent: 2 + - uid: 20132 + components: + - type: Transform + pos: -5.5,-71.5 + parent: 2 - uid: 20144 components: - type: Transform pos: -7.5,13.5 parent: 2 + - uid: 20180 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 20182 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 20190 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - uid: 20196 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 + - uid: 20197 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 20199 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 20203 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 20207 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 + - uid: 20208 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 20209 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 20210 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 20211 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 + - uid: 20214 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 20215 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 - uid: 20390 components: - type: Transform @@ -93875,16 +101957,6 @@ entities: - type: Transform pos: -46.5,0.5 parent: 2 - - uid: 20523 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 2 - - uid: 20524 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - uid: 20526 components: - type: Transform @@ -93910,61 +101982,16 @@ entities: - type: Transform pos: -37.5,-8.5 parent: 2 - - uid: 20531 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 2 - - uid: 20532 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 20533 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 2 - - uid: 20535 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 20536 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 2 - uid: 20553 components: - type: Transform pos: -44.5,-7.5 parent: 2 - - uid: 20555 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 2 - - uid: 20556 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 - - uid: 20588 - components: - - type: Transform - pos: -37.5,-10.5 - parent: 2 - uid: 20589 components: - type: Transform pos: -44.5,-8.5 parent: 2 - - uid: 20590 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 2 - uid: 20591 components: - type: Transform @@ -93980,11 +102007,6 @@ entities: - type: Transform pos: -46.5,2.5 parent: 2 - - uid: 20663 - components: - - type: Transform - pos: -33.5,19.5 - parent: 2 - uid: 20664 components: - type: Transform @@ -94010,41 +102032,643 @@ entities: - type: Transform pos: -31.5,18.5 parent: 2 - - uid: 20817 + - uid: 21369 components: - type: Transform - pos: -25.5,-56.5 + pos: -56.5,-55.5 + parent: 2 + - uid: 21433 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 21488 + components: + - type: Transform + pos: -64.5,-58.5 + parent: 2 + - uid: 21489 + components: + - type: Transform + pos: -63.5,-60.5 + parent: 2 + - uid: 21495 + components: + - type: Transform + pos: -78.5,-63.5 + parent: 2 + - uid: 21496 + components: + - type: Transform + pos: -79.5,-46.5 + parent: 2 + - uid: 21497 + components: + - type: Transform + pos: -76.5,-63.5 + parent: 2 + - uid: 21498 + components: + - type: Transform + pos: -75.5,-63.5 + parent: 2 + - uid: 21499 + components: + - type: Transform + pos: -80.5,-54.5 + parent: 2 + - uid: 21500 + components: + - type: Transform + pos: -80.5,-47.5 + parent: 2 + - uid: 21501 + components: + - type: Transform + pos: -72.5,-63.5 + parent: 2 + - uid: 21502 + components: + - type: Transform + pos: -71.5,-63.5 + parent: 2 + - uid: 21503 + components: + - type: Transform + pos: -71.5,-46.5 + parent: 2 + - uid: 21504 + components: + - type: Transform + pos: -69.5,-63.5 + parent: 2 + - uid: 21505 + components: + - type: Transform + pos: -67.5,-63.5 + parent: 2 + - uid: 21506 + components: + - type: Transform + pos: -66.5,-63.5 + parent: 2 + - uid: 21507 + components: + - type: Transform + pos: -68.5,-63.5 + parent: 2 + - uid: 21508 + components: + - type: Transform + pos: -81.5,-61.5 + parent: 2 + - uid: 21510 + components: + - type: Transform + pos: -81.5,-59.5 + parent: 2 + - uid: 21512 + components: + - type: Transform + pos: -81.5,-57.5 + parent: 2 + - uid: 21513 + components: + - type: Transform + pos: -81.5,-55.5 + parent: 2 + - uid: 21514 + components: + - type: Transform + pos: -81.5,-54.5 + parent: 2 + - uid: 21516 + components: + - type: Transform + pos: -81.5,-52.5 + parent: 2 + - uid: 21517 + components: + - type: Transform + pos: -81.5,-51.5 + parent: 2 + - uid: 21518 + components: + - type: Transform + pos: -81.5,-50.5 + parent: 2 + - uid: 21519 + components: + - type: Transform + pos: -81.5,-49.5 + parent: 2 + - uid: 21520 + components: + - type: Transform + pos: -81.5,-48.5 + parent: 2 + - uid: 21522 + components: + - type: Transform + pos: -81.5,-64.5 + parent: 2 + - uid: 21523 + components: + - type: Transform + pos: -79.5,-45.5 + parent: 2 + - uid: 21525 + components: + - type: Transform + pos: -77.5,-45.5 + parent: 2 + - uid: 21526 + components: + - type: Transform + pos: -76.5,-45.5 + parent: 2 + - uid: 21529 + components: + - type: Transform + pos: -73.5,-45.5 + parent: 2 + - uid: 21531 + components: + - type: Transform + pos: -70.5,-45.5 + parent: 2 + - uid: 21532 + components: + - type: Transform + pos: -69.5,-45.5 + parent: 2 + - uid: 21534 + components: + - type: Transform + pos: -67.5,-45.5 + parent: 2 + - uid: 21535 + components: + - type: Transform + pos: -66.5,-45.5 + parent: 2 + - uid: 21536 + components: + - type: Transform + pos: -65.5,-45.5 + parent: 2 + - uid: 21538 + components: + - type: Transform + pos: -63.5,-45.5 + parent: 2 + - uid: 21539 + components: + - type: Transform + pos: -62.5,-45.5 + parent: 2 + - uid: 21541 + components: + - type: Transform + pos: -72.5,-45.5 + parent: 2 + - uid: 21542 + components: + - type: Transform + pos: -60.5,-45.5 + parent: 2 + - uid: 21543 + components: + - type: Transform + pos: -59.5,-45.5 + parent: 2 + - uid: 21544 + components: + - type: Transform + pos: -58.5,-45.5 + parent: 2 + - uid: 21545 + components: + - type: Transform + pos: -57.5,-45.5 + parent: 2 + - uid: 21547 + components: + - type: Transform + pos: -55.5,-45.5 + parent: 2 + - uid: 21549 + components: + - type: Transform + pos: -53.5,-45.5 + parent: 2 + - uid: 21550 + components: + - type: Transform + pos: -52.5,-45.5 + parent: 2 + - uid: 21551 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 21552 + components: + - type: Transform + pos: -54.5,-46.5 + parent: 2 + - uid: 21553 + components: + - type: Transform + pos: -62.5,-44.5 + parent: 2 + - uid: 21554 + components: + - type: Transform + pos: -62.5,-43.5 + parent: 2 + - uid: 21555 + components: + - type: Transform + pos: -63.5,-44.5 + parent: 2 + - uid: 21557 + components: + - type: Transform + pos: -66.5,-44.5 + parent: 2 + - uid: 21558 + components: + - type: Transform + pos: -68.5,-44.5 + parent: 2 + - uid: 21559 + components: + - type: Transform + pos: -71.5,-44.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + pos: -72.5,-44.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + pos: -74.5,-44.5 + parent: 2 + - uid: 21563 + components: + - type: Transform + pos: -76.5,-44.5 + parent: 2 + - uid: 21564 + components: + - type: Transform + pos: -82.5,-44.5 + parent: 2 + - uid: 21566 + components: + - type: Transform + pos: -82.5,-46.5 + parent: 2 + - uid: 21568 + components: + - type: Transform + pos: -81.5,-45.5 + parent: 2 + - uid: 21570 + components: + - type: Transform + pos: -80.5,-44.5 + parent: 2 + - uid: 21571 + components: + - type: Transform + pos: -80.5,-45.5 + parent: 2 + - uid: 21572 + components: + - type: Transform + pos: -80.5,-46.5 + parent: 2 + - uid: 21573 + components: + - type: Transform + pos: -80.5,-62.5 + parent: 2 + - uid: 21574 + components: + - type: Transform + pos: -80.5,-63.5 + parent: 2 + - uid: 21575 + components: + - type: Transform + pos: -80.5,-64.5 + parent: 2 + - uid: 21576 + components: + - type: Transform + pos: -81.5,-62.5 + parent: 2 + - uid: 21579 + components: + - type: Transform + pos: -82.5,-62.5 + parent: 2 + - uid: 21582 + components: + - type: Transform + pos: -75.5,-64.5 + parent: 2 + - uid: 21583 + components: + - type: Transform + pos: -72.5,-64.5 + parent: 2 + - uid: 21584 + components: + - type: Transform + pos: -66.5,-64.5 + parent: 2 + - uid: 21585 + components: + - type: Transform + pos: -80.5,-55.5 + parent: 2 + - uid: 21586 + components: + - type: Transform + pos: -68.5,-64.5 + parent: 2 + - uid: 21587 + components: + - type: Transform + pos: -64.5,-64.5 + parent: 2 + - uid: 21588 + components: + - type: Transform + pos: -80.5,-58.5 + parent: 2 + - uid: 21589 + components: + - type: Transform + pos: -76.5,-64.5 + parent: 2 + - uid: 21590 + components: + - type: Transform + pos: -71.5,-64.5 + parent: 2 + - uid: 21591 + components: + - type: Transform + pos: -65.5,-62.5 + parent: 2 + - uid: 21592 + components: + - type: Transform + pos: -69.5,-62.5 + parent: 2 + - uid: 21593 + components: + - type: Transform + pos: -80.5,-59.5 + parent: 2 + - uid: 21610 + components: + - type: Transform + pos: -55.5,-56.5 + parent: 2 + - uid: 21621 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 + - uid: 21625 + components: + - type: Transform + pos: -42.5,-58.5 + parent: 2 + - uid: 21626 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 21730 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 2 + - uid: 21731 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 21732 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 21733 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 21734 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 21811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,11.5 + parent: 2 + - uid: 21882 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 21883 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 21895 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 21902 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 21905 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 21913 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 21922 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 21923 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 21924 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 21937 + components: + - type: Transform + pos: -55.5,-51.5 + parent: 2 + - uid: 21938 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 21966 + components: + - type: Transform + pos: -57.5,-55.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 21989 + components: + - type: Transform + pos: 60.5,-54.5 + parent: 2 + - uid: 22019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 2 + - uid: 22030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,13.5 + parent: 2 + - uid: 22095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,11.5 + parent: 2 + - uid: 22126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,29.5 + parent: 2 + - uid: 22136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 parent: 2 - proto: GrilleBroken entities: - - uid: 656 + - uid: 1127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-46.5 + rot: 3.141592653589793 rad + pos: -58.5,-46.5 parent: 2 - uid: 1221 components: - type: Transform pos: -13.5,27.5 parent: 2 + - uid: 1271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-47.5 + parent: 2 - uid: 1279 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-8.5 parent: 2 - - uid: 2054 + - uid: 1508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-5.5 + pos: -29.5,-67.5 parent: 2 - - uid: 3606 + - uid: 1750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-63.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-67.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-95.5 + parent: 2 + - uid: 3439 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-47.5 + pos: -9.5,-97.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + pos: -13.5,-63.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-65.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-63.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-67.5 parent: 2 - uid: 5457 components: @@ -94052,22 +102676,16 @@ entities: rot: 3.141592653589793 rad pos: -60.5,29.5 parent: 2 - - uid: 5482 + - uid: 5518 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 5533 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,1.5 - parent: 2 - - uid: 5762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-63.5 - parent: 2 - - uid: 6060 - components: - - type: Transform - pos: 18.5,5.5 + pos: 50.5,17.5 parent: 2 - uid: 6143 components: @@ -94075,6 +102693,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,36.5 parent: 2 + - uid: 6204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-88.5 + parent: 2 - uid: 6750 components: - type: Transform @@ -94086,11 +102710,102 @@ entities: - type: Transform pos: -8.5,27.5 parent: 2 + - uid: 8055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-72.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-93.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-81.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-85.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + pos: 17.5,-90.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: 10.5,-89.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-91.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-93.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-88.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: -6.5,-90.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + pos: -3.5,-97.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-99.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-101.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-98.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: -12.5,-87.5 + parent: 2 - uid: 8301 components: - type: Transform pos: -60.5,24.5 parent: 2 + - uid: 8336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-95.5 + parent: 2 - uid: 8361 components: - type: Transform @@ -94102,102 +102817,45 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,33.5 parent: 2 - - uid: 9632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-62.5 - parent: 2 - - uid: 10475 - components: - - type: Transform - pos: -55.5,-62.5 - parent: 2 - - uid: 10485 - components: - - type: Transform - pos: -67.5,-62.5 - parent: 2 - uid: 10781 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-6.5 parent: 2 - - uid: 10798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-57.5 - parent: 2 - uid: 11440 components: - type: Transform pos: 19.5,12.5 parent: 2 - - uid: 11618 - components: - - type: Transform - pos: -21.5,-62.5 - parent: 2 - - uid: 11768 - components: - - type: Transform - pos: -24.5,-65.5 - parent: 2 - - uid: 11835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-64.5 - parent: 2 - uid: 12330 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-6.5 parent: 2 - - uid: 12397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 2 - - uid: 13308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-64.5 - parent: 2 - uid: 13799 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,7.5 parent: 2 - - uid: 14269 + - uid: 14935 + components: + - type: Transform + pos: -62.5,-30.5 + parent: 2 + - uid: 14937 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,-62.5 + pos: -62.5,-25.5 parent: 2 - - uid: 14277 + - uid: 15235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-57.5 - parent: 2 - - uid: 14280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-44.5 - parent: 2 - - uid: 14416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-66.5 + rot: 1.5707963267948966 rad + pos: -62.5,-63.5 parent: 2 - uid: 15709 components: @@ -94205,18 +102863,23 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 - - uid: 15925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-63.5 - parent: 2 - uid: 16226 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,11.5 parent: 2 + - uid: 16900 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 16941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-63.5 + parent: 2 - uid: 17130 components: - type: Transform @@ -94234,10 +102897,17 @@ entities: - type: Transform pos: -28.5,29.5 parent: 2 - - uid: 17302 + - uid: 17683 components: - type: Transform - pos: 51.5,14.5 + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-4.5 parent: 2 - uid: 17763 components: @@ -94245,42 +102915,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,31.5 parent: 2 - - uid: 17780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-46.5 - parent: 2 - - uid: 17783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-44.5 - parent: 2 - - uid: 17823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,16.5 - parent: 2 - - uid: 17824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,18.5 - parent: 2 - - uid: 17826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,18.5 - parent: 2 - - uid: 17827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,18.5 - parent: 2 - uid: 17907 components: - type: Transform @@ -94362,12 +102996,6 @@ entities: - type: Transform pos: -61.5,33.5 parent: 2 - - uid: 18266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-51.5 - parent: 2 - uid: 18278 components: - type: Transform @@ -94450,30 +103078,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 - - uid: 19272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-84.5 - parent: 2 - - uid: 19273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-83.5 - parent: 2 - - uid: 19274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-81.5 - parent: 2 - - uid: 19276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-84.5 - parent: 2 - uid: 19608 components: - type: Transform @@ -94621,22 +103225,91 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-7.5 parent: 2 - - uid: 20599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-9.5 - parent: 2 - - uid: 20600 - components: - - type: Transform - pos: -32.5,-12.5 - parent: 2 - uid: 20601 components: - type: Transform pos: -40.5,-17.5 parent: 2 + - uid: 21494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-64.5 + parent: 2 + - uid: 21509 + components: + - type: Transform + pos: -81.5,-44.5 + parent: 2 + - uid: 21511 + components: + - type: Transform + pos: -70.5,-44.5 + parent: 2 + - uid: 21515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-44.5 + parent: 2 + - uid: 21521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-44.5 + parent: 2 + - uid: 21569 + components: + - type: Transform + pos: -64.5,-45.5 + parent: 2 + - uid: 21577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-63.5 + parent: 2 + - uid: 21578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-64.5 + parent: 2 + - uid: 21580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-53.5 + parent: 2 + - uid: 21581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-45.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-46.5 + parent: 2 + - uid: 21735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-16.5 + parent: 2 + - uid: 21736 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 21995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 2 - proto: GrilleSpawner entities: - uid: 751 @@ -94650,11 +103323,30 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,6.5 parent: 2 - - uid: 3599 + - uid: 2868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-45.5 + pos: -22.5,-63.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: -19.5,-63.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: -18.5,-63.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: -16.5,-63.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: -25.5,-67.5 parent: 2 - uid: 3870 components: @@ -94666,50 +103358,80 @@ entities: - type: Transform pos: -11.5,31.5 parent: 2 - - uid: 5721 + - uid: 4802 components: - type: Transform - pos: -61.5,-63.5 + pos: 40.5,24.5 parent: 2 - - uid: 5945 + - uid: 4921 components: - type: Transform - pos: -64.5,-63.5 + pos: -13.5,-66.5 parent: 2 - - uid: 10743 + - uid: 5665 components: - type: Transform - pos: -73.5,-49.5 + pos: -21.5,-65.5 parent: 2 - - uid: 10750 + - uid: 7130 components: - type: Transform - pos: -59.5,-45.5 + pos: -67.5,-22.5 parent: 2 - - uid: 10760 + - uid: 8056 components: - type: Transform - pos: -65.5,-45.5 + pos: 16.5,-74.5 parent: 2 - - uid: 10763 + - uid: 8058 components: - type: Transform - pos: -60.5,-45.5 + pos: 16.5,-80.5 parent: 2 - - uid: 15788 + - uid: 8223 components: - type: Transform - pos: -50.5,-59.5 + pos: -13.5,-76.5 parent: 2 - - uid: 15805 + - uid: 8227 components: - type: Transform - pos: -52.5,-63.5 + pos: -13.5,-82.5 parent: 2 - - uid: 15926 + - uid: 8242 components: - type: Transform - pos: -71.5,-63.5 + pos: -13.5,-70.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: -62.5,-40.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + pos: -61.5,-29.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + pos: -63.5,-22.5 + parent: 2 + - uid: 14936 + components: + - type: Transform + pos: -61.5,-2.5 parent: 2 - uid: 17157 components: @@ -94722,11 +103444,6 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,6.5 parent: 2 - - uid: 17195 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 - uid: 17305 components: - type: Transform @@ -94767,21 +103484,6 @@ entities: - type: Transform pos: -60.5,33.5 parent: 2 - - uid: 17820 - components: - - type: Transform - pos: 42.5,18.5 - parent: 2 - - uid: 17821 - components: - - type: Transform - pos: 46.5,18.5 - parent: 2 - - uid: 17822 - components: - - type: Transform - pos: 39.5,18.5 - parent: 2 - uid: 18133 components: - type: Transform @@ -94852,6 +103554,81 @@ entities: - type: Transform pos: -54.5,32.5 parent: 2 + - uid: 21485 + components: + - type: Transform + pos: -81.5,-56.5 + parent: 2 + - uid: 21524 + components: + - type: Transform + pos: -71.5,-45.5 + parent: 2 + - uid: 21527 + components: + - type: Transform + pos: -68.5,-45.5 + parent: 2 + - uid: 21528 + components: + - type: Transform + pos: -74.5,-45.5 + parent: 2 + - uid: 21530 + components: + - type: Transform + pos: -78.5,-45.5 + parent: 2 + - uid: 21533 + components: + - type: Transform + pos: -81.5,-46.5 + parent: 2 + - uid: 21537 + components: + - type: Transform + pos: -81.5,-60.5 + parent: 2 + - uid: 21540 + components: + - type: Transform + pos: -73.5,-63.5 + parent: 2 + - uid: 21546 + components: + - type: Transform + pos: -70.5,-63.5 + parent: 2 + - uid: 21548 + components: + - type: Transform + pos: -74.5,-63.5 + parent: 2 + - uid: 21556 + components: + - type: Transform + pos: -77.5,-63.5 + parent: 2 + - uid: 21562 + components: + - type: Transform + pos: -75.5,-45.5 + parent: 2 + - uid: 21565 + components: + - type: Transform + pos: -56.5,-45.5 + parent: 2 + - uid: 21567 + components: + - type: Transform + pos: -61.5,-45.5 + parent: 2 + - uid: 21961 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 - proto: GunSafeDisabler entities: - uid: 2207 @@ -94880,26 +103657,19 @@ entities: - type: Transform pos: -20.5,2.5 parent: 2 -- proto: GyroscopeMachineCircuitboard - entities: - - uid: 4720 - components: - - type: Transform - pos: -35.346245,-53.448708 - parent: 2 - proto: GyroscopeUnanchored entities: - - uid: 15754 + - uid: 21926 components: - type: Transform - pos: -31.5,-63.5 + pos: 23.5,23.5 parent: 2 - proto: Handcuffs entities: - uid: 9845 components: - type: Transform - pos: -18.136644,-50.38884 + pos: -18.202019,-50.432945 parent: 2 - uid: 14807 components: @@ -94925,33 +103695,28 @@ entities: parent: 2 - proto: HandheldHealthAnalyzerUnpowered entities: - - uid: 8216 + - uid: 8500 components: - type: Transform - pos: -44.33753,-45.396572 + pos: 18.62692,3.6997924 parent: 2 - - uid: 11825 + - uid: 13069 components: - type: Transform - pos: -52.515003,-32.555782 + pos: -45.54084,-24.420279 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: -50.55387,-43.958057 parent: 2 - proto: HandLabeler entities: - - uid: 6115 - components: - - type: Transform - pos: -30.619154,-33.32016 - parent: 2 - uid: 6243 components: - type: Transform pos: 35.64464,-3.2836232 parent: 2 - - uid: 9707 - components: - - type: Transform - pos: -16.511583,-48.43057 - parent: 2 - uid: 14001 components: - type: Transform @@ -94962,6 +103727,16 @@ entities: - type: Transform pos: 22.51385,-59.475163 parent: 2 + - uid: 14805 + components: + - type: Transform + pos: -28.443506,-46.023293 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: -33.002285,-37.53686 + parent: 2 - uid: 18074 components: - type: Transform @@ -94986,11 +103761,19 @@ entities: parent: 2 - proto: HeatExchanger entities: - - uid: 2550 + - uid: 6877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-10.5 + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 7035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' @@ -95008,32 +103791,32 @@ entities: parent: 2 - proto: HighSecCommandLocked entities: - - uid: 325 + - uid: 4965 components: - type: Transform - pos: 12.5,5.5 - parent: 2 - - uid: 5536 - components: - - type: Transform - pos: 23.5,-5.5 + pos: -30.5,-61.5 parent: 2 - uid: 6253 components: - type: Transform pos: -56.5,-12.5 parent: 2 - - uid: 6992 + - uid: 8573 components: - type: Transform pos: -59.5,-12.5 parent: 2 + - uid: 9590 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 - proto: HolofanProjector entities: - uid: 13003 components: - type: Transform - pos: -5.451778,-10.512986 + pos: -5.511777,-10.439039 parent: 2 - uid: 13182 components: @@ -95117,10 +103900,10 @@ entities: parent: 2 - proto: HolopadCommandCmo entities: - - uid: 9968 + - uid: 7912 components: - type: Transform - pos: -42.5,-34.5 + pos: -48.5,-23.5 parent: 2 - proto: HolopadCommandHop entities: @@ -95136,6 +103919,13 @@ entities: - type: Transform pos: -22.5,11.5 parent: 2 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 7911 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 - proto: HolopadCommandQm entities: - uid: 20726 @@ -95150,6 +103940,13 @@ entities: - type: Transform pos: 30.5,-34.5 parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 1289 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 - proto: HolopadEngineeringAME entities: - uid: 20760 @@ -95159,17 +103956,17 @@ entities: parent: 2 - proto: HolopadEngineeringAtmosMain entities: - - uid: 20725 + - uid: 12662 components: - type: Transform - pos: -2.5,-2.5 + pos: 0.5,-2.5 parent: 2 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 20831 + - uid: 11980 components: - type: Transform - pos: 2.5,-8.5 + pos: 1.5,-9.5 parent: 2 - proto: HolopadEngineeringFront entities: @@ -95187,24 +103984,17 @@ entities: parent: 2 - proto: HolopadEngineeringTechVault entities: - - uid: 17150 + - uid: 7910 components: - type: Transform - pos: 10.5,-18.5 - parent: 2 -- proto: HolopadEngineeringTelecoms - entities: - - uid: 17423 - components: - - type: Transform - pos: 24.5,0.5 + pos: 9.5,-17.5 parent: 2 - proto: HolopadGeneralArrivals entities: - - uid: 20804 + - uid: 7942 components: - type: Transform - pos: 1.5,-47.5 + pos: 1.5,-51.5 parent: 2 - proto: HolopadGeneralEvac entities: @@ -95213,13 +104003,6 @@ entities: - type: Transform pos: 49.5,-21.5 parent: 2 -- proto: HolopadGeneralEVAStorage - entities: - - uid: 526 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - proto: HolopadGeneralTools entities: - uid: 20801 @@ -95229,62 +104012,71 @@ entities: parent: 2 - proto: HolopadMachineCircuitboard entities: + - uid: 9539 + components: + - type: Transform + pos: 3.4666295,-16.4342 + parent: 2 - uid: 20729 components: - type: Transform pos: 6.764127,-27.571396 parent: 2 - - uid: 20730 +- proto: HolopadMedicalBreakroom + entities: + - uid: 21747 components: - type: Transform - pos: 12.400941,-17.507607 - parent: 2 - - uid: 20731 - components: - - type: Transform - pos: 12.863626,-12.920663 + pos: -37.5,-23.5 parent: 2 - proto: HolopadMedicalChemistry entities: - - uid: 7977 + - uid: 15306 components: - type: Transform pos: -29.5,-34.5 parent: 2 +- proto: HolopadMedicalClinic + entities: + - uid: 21810 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 +- proto: HolopadMedicalCryopods + entities: + - uid: 6963 + components: + - type: Transform + pos: -43.5,-38.5 + parent: 2 - proto: HolopadMedicalFront entities: - - uid: 7992 + - uid: 21748 components: - type: Transform - pos: -28.5,-27.5 - parent: 2 -- proto: HolopadMedicalMedbay - entities: - - uid: 6807 - components: - - type: Transform - pos: -36.5,-22.5 + pos: -29.5,-25.5 parent: 2 - proto: HolopadMedicalMorgue entities: - - uid: 8054 + - uid: 10710 components: - type: Transform - pos: -42.5,-46.5 + pos: -48.5,-44.5 parent: 2 - proto: HolopadMedicalSurgery entities: - - uid: 7966 + - uid: 21742 components: - type: Transform - pos: -51.5,-30.5 + pos: -44.5,-23.5 parent: 2 - proto: HolopadMedicalVirology entities: - - uid: 6819 + - uid: 21740 components: - type: Transform - pos: -50.5,-41.5 + pos: -54.5,-29.5 parent: 2 - proto: HolopadScienceAnomaly entities: @@ -95302,10 +104094,10 @@ entities: parent: 2 - proto: HolopadScienceBreakroom entities: - - uid: 20715 + - uid: 22139 components: - type: Transform - pos: 29.5,-28.5 + pos: 28.5,-26.5 parent: 2 - proto: HolopadScienceFront entities: @@ -95386,10 +104178,10 @@ entities: parent: 2 - proto: HolopadServiceBar entities: - - uid: 20814 + - uid: 11612 components: - type: Transform - pos: -5.5,-43.5 + pos: -3.5,-43.5 parent: 2 - proto: HolopadServiceBotany entities: @@ -95414,10 +104206,10 @@ entities: parent: 2 - proto: HolopadServiceJanitor entities: - - uid: 20441 + - uid: 21357 components: - type: Transform - pos: 28.5,2.5 + pos: 28.5,4.5 parent: 2 - proto: HolopadServiceKitchen entities: @@ -95428,10 +104220,10 @@ entities: parent: 2 - proto: HolopadServiceLibrary entities: - - uid: 17248 + - uid: 10458 components: - type: Transform - pos: 14.5,-37.5 + pos: 19.5,-40.5 parent: 2 - proto: HolopadServiceNewsroom entities: @@ -95449,49 +104241,51 @@ entities: parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 196 - components: - - type: Transform - pos: -47.5,-31.5 - parent: 2 - - uid: 7812 - components: - - type: Transform - pos: -50.5,-44.5 - parent: 2 - - uid: 8139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-45.5 - parent: 2 - - uid: 8159 - components: - - type: Transform - pos: -51.5,-44.5 - parent: 2 - - uid: 8161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-45.5 - parent: 2 - uid: 8786 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-5.5 parent: 2 + - uid: 11015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-28.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-30.5 + parent: 2 + - uid: 12928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-31.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 14779 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 - uid: 17569 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 18559 - components: - - type: Transform - pos: -29.5,-8.5 - parent: 2 - uid: 18835 components: - type: Transform @@ -95505,10 +104299,45 @@ entities: parent: 2 - proto: hydroponicsSoil entities: - - uid: 4848 + - uid: 237 components: - type: Transform - pos: 6.5,-44.5 + pos: -4.5,-52.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: 5.5,-52.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: 17.5,-2.5 parent: 2 - proto: HydroponicsToolClippers entities: @@ -95517,10 +104346,10 @@ entities: - type: Transform pos: -17.829746,-39.424503 parent: 2 - - uid: 3799 + - uid: 10577 components: - type: Transform - pos: 6.515537,-45.467487 + pos: 7.500762,-57.955555 parent: 2 - uid: 17266 components: @@ -95556,6 +104385,11 @@ entities: - type: Transform pos: -19.461483,-39.341442 parent: 2 + - uid: 11710 + components: + - type: Transform + pos: 7.455774,-57.62218 + parent: 2 - uid: 17265 components: - type: Transform @@ -95585,10 +104419,10 @@ entities: - type: Transform pos: -19.357265,-39.39356 parent: 2 - - uid: 3801 + - uid: 15746 components: - type: Transform - pos: 6.5780673,-45.36325 + pos: 7.606819,-58.266537 parent: 2 - uid: 17308 components: @@ -95721,17 +104555,17 @@ entities: parent: 2 - proto: IDComputerCircuitboard entities: - - uid: 15936 + - uid: 9345 components: - type: Transform - pos: 10.528986,-19.36206 + pos: 10.56266,-14.37939 parent: 2 - proto: IngotGold entities: - - uid: 97 + - uid: 8246 components: - type: Transform - pos: 8.432307,6.658129 + pos: -30.466127,-58.522392 parent: 2 - proto: IngotGold1 entities: @@ -95747,10 +104581,10 @@ entities: parent: 2 - proto: IngotSilver entities: - - uid: 315 + - uid: 5045 components: - type: Transform - pos: 9.565312,3.687316 + pos: -30.445284,-63.50502 parent: 2 - proto: IntercomAll entities: @@ -95800,19 +104634,12 @@ entities: rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 2 - - uid: 16267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 2 - proto: IntercomMedical entities: - - uid: 13205 + - uid: 21749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-32.5 + pos: -30.5,-26.5 parent: 2 - proto: IntercomScience entities: @@ -95830,14 +104657,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-2.5 parent: 2 -- proto: IntercomService - entities: - - uid: 17556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,1.5 - parent: 2 - proto: IntercomSupply entities: - uid: 13201 @@ -95846,19 +104665,13 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 2 - - uid: 17555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,26.5 - parent: 2 - proto: JanitorialTrolley entities: - - uid: 9418 + - uid: 8743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-0.5 + rot: 1.5707963267948966 rad + pos: 28.5,1.5 parent: 2 - proto: JanitorServiceLight entities: @@ -95874,12 +104687,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-13.5 parent: 2 - - uid: 16113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-28.5 - parent: 2 - uid: 16118 components: - type: Transform @@ -95891,51 +104698,41 @@ entities: - type: Transform pos: 7.5,12.5 parent: 2 + - uid: 21751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-26.5 + parent: 2 + - uid: 21752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 - proto: JetpackMiniFilled entities: - - uid: 11111 + - uid: 12739 components: - type: Transform - pos: -3.7147171,-52.21066 + pos: -1.5297892,-55.24403 parent: 2 - - type: GasTank - toggleActionEntity: 11282 - - type: Jetpack - toggleActionEntity: 11276 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 11276 - - 11282 - - uid: 11126 + - uid: 12740 components: - type: Transform - pos: -3.495859,-52.32532 + pos: -1.404727,-55.421238 parent: 2 - - type: GasTank - toggleActionEntity: 11300 - - type: Jetpack - toggleActionEntity: 11298 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 11298 - - 11300 - proto: Jug entities: - - uid: 4363 + - uid: 12111 components: - type: Transform - pos: -29.40592,-22.374575 + pos: -30.646975,-34.204906 parent: 2 - - uid: 4965 + - uid: 12119 components: - type: Transform - pos: -29.645622,-22.197369 + pos: -30.39685,-34.35074 parent: 2 - proto: KalimbaInstrument entities: @@ -95953,11 +104750,6 @@ entities: parent: 2 - proto: KitchenMicrowave entities: - - uid: 3184 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 2 - uid: 3252 components: - type: Transform @@ -95990,11 +104782,16 @@ entities: - type: Transform pos: -13.5,-34.5 parent: 2 - - uid: 4756 + - uid: 5523 components: - type: Transform pos: -29.5,-36.5 parent: 2 + - uid: 7200 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 - uid: 13366 components: - type: Transform @@ -96009,20 +104806,41 @@ entities: parent: 2 - proto: KnifePlastic entities: - - uid: 20219 + - uid: 5739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.4618225,-40.19822 + pos: -26.93114,-48.32984 + parent: 2 +- proto: KoboldCubeWrapped + entities: + - uid: 9414 + components: + - type: Transform + pos: -59.664112,-29.204977 parent: 2 - proto: Lamp entities: - uid: 15782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.647448,-58.91686 + pos: 19.631758,-58.97455 parent: 2 + - type: HandheldLight + toggleActionEntity: 13295 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 13295 + - type: Physics + canCollide: True + - type: ActionsContainer - proto: LampBanana entities: - uid: 5214 @@ -96053,12 +104871,48 @@ entities: - type: Physics canCollide: True - type: ActionsContainer - - uid: 9684 + - uid: 4105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.523584,-45.52353 + pos: 21.482328,-44.174335 parent: 2 + - type: HandheldLight + toggleActionEntity: 4147 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 4147 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 6098 + components: + - type: Transform + pos: -36.465275,-53.173172 + parent: 2 + - type: HandheldLight + toggleActionEntity: 6113 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6113 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 10091 components: - type: Transform @@ -96080,27 +104934,6 @@ entities: - type: Physics canCollide: True - type: ActionsContainer - - uid: 18616 - components: - - type: Transform - pos: -0.55744004,-50.242683 - parent: 2 - - type: HandheldLight - toggleActionEntity: 6747 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 6747 - - type: Physics - canCollide: True - - type: ActionsContainer - proto: LampInterrogator entities: - uid: 373 @@ -96129,6 +104962,11 @@ entities: ents: - 7271 - type: ActionsContainer + - uid: 3105 + components: + - type: Transform + pos: 12.487499,-11.286444 + parent: 2 - uid: 5765 components: - type: Transform @@ -96151,7 +104989,7 @@ entities: - uid: 5977 components: - type: Transform - pos: 20.602448,-37.864635 + pos: 22.019642,-41.38716 parent: 2 - type: HandheldLight toggleActionEntity: 5978 @@ -96174,6 +105012,28 @@ entities: - type: Transform pos: -11.532342,19.777779 parent: 2 +- proto: LeavesTeaDried + entities: + - uid: 982 + components: + - type: Transform + pos: 19.739239,-6.3760834 + parent: 2 + - uid: 20629 + components: + - type: Transform + pos: 19.754864,-6.1260834 + parent: 2 + - uid: 22026 + components: + - type: Transform + pos: 19.739239,-6.2979584 + parent: 2 + - uid: 22138 + components: + - type: Transform + pos: 19.770489,-6.2042084 + parent: 2 - proto: LGBTQHandyFlag entities: - uid: 19888 @@ -96227,31 +105087,16 @@ entities: - Pressed: Toggle - proto: LockableButtonAtmospherics entities: - - uid: 15410 + - uid: 9424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 + pos: 7.5,1.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1653: + 1268: - Pressed: Toggle - 1663: - - Pressed: Toggle - 18816: - - Pressed: Toggle - - uid: 15414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1653: - - Pressed: Toggle - 1663: + 1324: - Pressed: Toggle - proto: LockableButtonBar entities: @@ -96270,8 +105115,44 @@ entities: - Pressed: Toggle 11459: - Pressed: Toggle + 6345: + - Pressed: Toggle + 2759: + - Pressed: Toggle + 12193: + - Pressed: Toggle + 16090: + - Pressed: Toggle + 3717: + - Pressed: Toggle - proto: LockableButtonCaptain entities: + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4701: + - Pressed: Toggle + 4782: + - Pressed: Toggle + 4796: + - Pressed: Toggle + 4698: + - Pressed: Toggle + 4699: + - Pressed: Toggle + 4700: + - Pressed: Toggle + 4721: + - Pressed: Toggle + 186: + - Pressed: Toggle + 21880: + - Pressed: Toggle - uid: 15649 components: - type: Transform @@ -96284,10 +105165,6 @@ entities: - Pressed: Toggle 15647: - Pressed: Toggle - 9963: - - Pressed: Toggle - 20824: - - Pressed: Toggle - proto: LockableButtonCargo entities: - uid: 17447 @@ -96324,29 +105201,37 @@ entities: - Pressed: Toggle - proto: LockableButtonChemistry entities: - - uid: 11331 + - uid: 21250 components: - - type: MetaData - name: Shutters - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 6220: + 11937: - Pressed: DoorBolt - 10464: - - Pressed: Toggle - 16041: - - Pressed: Toggle - 16042: - - Pressed: Toggle - 1312: + 144: - Pressed: DoorBolt - 1322: + 12508: + - Pressed: DoorBolt + 21258: - Pressed: Toggle - 12874: + 21257: + - Pressed: Toggle + 21256: + - Pressed: Toggle + 21254: + - Pressed: Toggle + 21255: + - Pressed: Toggle + 21251: + - Pressed: Toggle + 21253: + - Pressed: Toggle + 21252: + - Pressed: Toggle + 10414: - Pressed: DoorBolt - proto: LockableButtonChiefEngineer entities: @@ -96366,19 +105251,19 @@ entities: - Pressed: Toggle - proto: LockableButtonChiefMedicalOfficer entities: - - uid: 1615 + - uid: 21233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-35.5 + rot: -1.5707963267948966 rad + pos: -46.5,-23.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 13043: + 21229: - Pressed: Toggle - 7497: + 21230: - Pressed: Toggle - 1917: + 21231: - Pressed: Toggle - proto: LockableButtonCommand entities: @@ -96406,28 +105291,47 @@ entities: - Pressed: Toggle - proto: LockableButtonEngineering entities: - - uid: 1485 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1959: - - Pressed: Toggle - 5799: - - Pressed: Toggle - - uid: 10658 + - uid: 1651 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-56.5 + pos: 8.5,-5.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 7967: + 2989: - Pressed: Toggle - 7974: + 2954: + - Pressed: Toggle + 6106: + - Pressed: Toggle + - uid: 2401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2954: + - Pressed: Toggle + 6106: + - Pressed: Toggle + 2989: + - Pressed: Toggle + - uid: 3811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2954: + - Pressed: Toggle + 6106: + - Pressed: Toggle + 2989: - Pressed: Toggle - uid: 11423 components: @@ -96445,18 +105349,6 @@ entities: - Pressed: Toggle 4048: - Pressed: Toggle - - uid: 15413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1959: - - Pressed: Toggle - 5799: - - Pressed: Toggle - proto: LockableButtonHeadOfPersonnel entities: - uid: 3577 @@ -96533,18 +105425,6 @@ entities: linkedPorts: 9113: - Pressed: Toggle - - uid: 9538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 9369: - - Pressed: Toggle - 9370: - - Pressed: Toggle - proto: LockableButtonKitchen entities: - uid: 16023 @@ -96563,45 +105443,88 @@ entities: - Pressed: Toggle - proto: LockableButtonMedical entities: - - uid: 15653 + - uid: 1550 components: - type: Transform - pos: -29.5,-28.5 + pos: -38.5,-31.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7268: - - Pressed: Open - 11202: - - Pressed: Open - 11203: - - Pressed: Open - - uid: 16052 + - uid: 2322 components: - type: MetaData - name: Lockdown + name: Eastern Doors - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-27.5 + pos: -30.31269,-26.495672 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16050: - - Pressed: Toggle - 16051: - - Pressed: Toggle - - uid: 16115 + - uid: 3097 + components: + - type: MetaData + name: Western Doors + - type: Transform + rot: 3.141592653589793 rad + pos: -30.7203,-26.495672 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 5465 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-27.5 + pos: -32.5,-33.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-26.5 + parent: 2 + - uid: 21239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-38.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 574: - - Pressed: Open - 15141: - - Pressed: Open + 21234: + - Pressed: Toggle + 21235: + - Pressed: Toggle + 21236: + - Pressed: Toggle + 21237: + - Pressed: Toggle + 21238: + - Pressed: Toggle + 10771: + - Pressed: Toggle + 10807: + - Pressed: Toggle + - uid: 21240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21242: + - Pressed: Toggle + 21243: + - Pressed: Toggle + 21244: + - Pressed: Toggle + 21245: + - Pressed: Toggle + 21246: + - Pressed: Toggle + 21247: + - Pressed: Toggle + 21248: + - Pressed: Toggle - proto: LockableButtonQuartermaster entities: - uid: 12052 @@ -96667,6 +105590,30 @@ entities: - Pressed: Toggle 17616: - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 6146 + components: + - type: MetaData + name: Aft Shutters + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22618: + - Pressed: Toggle + 22619: + - Pressed: Toggle + 22620: + - Pressed: Toggle + 22617: + - Pressed: Toggle + 22616: + - Pressed: Toggle + 22614: + - Pressed: Toggle - proto: LockableButtonTheatre entities: - uid: 5329 @@ -96686,7 +105633,7 @@ entities: - Pressed: Toggle 13795: - Pressed: Toggle - 12282: + 7944: - Pressed: Toggle 17722: - Pressed: Toggle @@ -96711,10 +105658,10 @@ entities: parent: 2 - proto: LockerBoozeFilled entities: - - uid: 18919 + - uid: 13803 components: - type: Transform - pos: 1.5,-45.5 + pos: 1.5,-43.5 parent: 2 - proto: LockerBotanistFilled entities: @@ -96732,10 +105679,10 @@ entities: parent: 2 - proto: LockerChemistryFilled entities: - - uid: 11436 + - uid: 13213 components: - type: Transform - pos: -28.5,-38.5 + pos: -34.5,-35.5 parent: 2 - proto: LockerChiefEngineerFilled entities: @@ -96744,12 +105691,12 @@ entities: - type: Transform pos: -6.5,-25.5 parent: 2 -- proto: LockerChiefMedicalOfficerFilledHardsuit +- proto: LockerChiefMedicalOfficerFilled entities: - - uid: 14629 + - uid: 13083 components: - type: Transform - pos: -42.5,-36.5 + pos: -50.5,-21.5 parent: 2 - proto: LockerClown entities: @@ -96772,10 +105719,10 @@ entities: - type: Transform pos: -10.5,25.5 parent: 2 - - uid: 7590 + - uid: 1695 components: - type: Transform - pos: -6.5,-69.5 + pos: -6.5,-75.5 parent: 2 - uid: 8802 components: @@ -96784,25 +105731,30 @@ entities: parent: 2 - proto: LockerEngineerFilled entities: - - uid: 137 + - uid: 1177 components: - type: Transform - pos: -2.5,-14.5 + pos: -7.5,-15.5 parent: 2 - - uid: 8463 + - uid: 1631 components: - type: Transform - pos: -2.5,-15.5 + pos: 1.5,-20.5 parent: 2 - - uid: 13994 + - uid: 1644 components: - type: Transform - pos: -5.5,-12.5 + pos: 1.5,-19.5 parent: 2 - - uid: 20707 + - uid: 8589 components: - type: Transform - pos: -6.5,-12.5 + pos: -1.5,-15.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + pos: -0.5,-15.5 parent: 2 - uid: 20829 components: @@ -96821,36 +105773,56 @@ entities: - type: Transform pos: -27.5,11.5 parent: 2 - - uid: 1029 - components: - - type: Transform - pos: -31.5,-3.5 - parent: 2 - uid: 9103 components: - type: Transform pos: -23.5,-10.5 parent: 2 - - uid: 9655 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 2 - uid: 10025 components: - type: Transform pos: -26.5,-11.5 parent: 2 + - uid: 10144 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Pullable + prevFixedRotation: True + - uid: 10145 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 - uid: 11591 components: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 20721 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 2 - proto: LockerFreezer entities: - uid: 7085 @@ -96867,10 +105839,10 @@ entities: parent: 2 - proto: LockerFreezerVaultFilled entities: - - uid: 13140 + - uid: 2772 components: - type: Transform - pos: 10.5,6.5 + pos: -29.5,-58.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: @@ -96888,42 +105860,42 @@ entities: parent: 2 - proto: LockerMedicalFilled entities: - - uid: 4842 + - uid: 12639 components: - type: Transform - pos: -45.5,-34.5 + pos: -37.5,-22.5 parent: 2 - - uid: 18053 + - uid: 13186 components: - type: Transform - pos: -45.5,-33.5 + pos: -49.5,-33.5 + parent: 2 + - uid: 14757 + components: + - type: Transform + pos: -49.5,-26.5 parent: 2 - proto: LockerMedicineFilled entities: - - uid: 4701 - components: - - type: Transform - pos: -39.5,-27.5 - parent: 2 - - uid: 4753 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 2 - - uid: 13462 + - uid: 12636 components: - type: Transform pos: -45.5,-32.5 parent: 2 - - uid: 18633 + - uid: 12643 components: - type: Transform - pos: -39.5,-23.5 + pos: -39.5,-26.5 parent: 2 - - uid: 20756 + - uid: 12644 components: - type: Transform - pos: -39.5,-20.5 + pos: -40.5,-33.5 + parent: 2 + - uid: 14758 + components: + - type: Transform + pos: -49.5,-27.5 parent: 2 - proto: LockerMime entities: @@ -96934,15 +105906,15 @@ entities: parent: 2 - proto: LockerParamedicFilled entities: - - uid: 4801 + - uid: 69 components: - type: Transform - pos: -32.5,-25.5 + pos: -30.5,-21.5 parent: 2 - - uid: 4907 + - uid: 10553 components: - type: Transform - pos: -31.5,-25.5 + pos: -31.5,-22.5 parent: 2 - proto: LockerQuarterMasterFilled entities: @@ -96960,20 +105932,20 @@ entities: parent: 2 - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 4767 + - uid: 112 components: - type: Transform - pos: 15.5,25.5 + pos: 12.5,28.5 parent: 2 - - uid: 4855 + - uid: 22049 components: - type: Transform - pos: 16.5,25.5 + pos: 13.5,28.5 parent: 2 - - uid: 5408 + - uid: 22471 components: - type: Transform - pos: 14.5,25.5 + pos: 11.5,28.5 parent: 2 - proto: LockerScienceFilled entities: @@ -97019,6 +105991,14 @@ entities: - type: Transform pos: -26.5,17.5 parent: 2 +- proto: LockerWallMedicalFilled + entities: + - uid: 21456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 - proto: LockerWardenFilled entities: - uid: 14645 @@ -97028,203 +106008,195 @@ entities: parent: 2 - proto: LockerWeldingSuppliesFilled entities: - - uid: 7589 + - uid: 951 components: - type: Transform - pos: 9.5,-69.5 + pos: 35.5,19.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: 12.5,-65.5 parent: 2 - uid: 15373 components: - type: Transform pos: -25.5,19.5 parent: 2 - - uid: 20259 - components: - - type: Transform - pos: 25.5,10.5 - parent: 2 - proto: LogicGateOr entities: - - uid: 7561 + - uid: 5002 components: - type: Transform anchored: True rot: 3.141592653589793 rad - pos: 14.5,27.5 + pos: 17.5,28.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 7343: + 1722: - Output: DoorBolt - 3146: + 21849: + - Output: DoorBolt + 1756: + - Output: DoorBolt + 20665: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 15761 - components: - - type: Transform - anchored: True - pos: 15.5,28.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 8487: - - Output: DoorBolt - 10666: - - Output: DoorBolt - - type: Physics - canCollide: False - bodyType: Static - - uid: 18575 + - uid: 22393 components: - type: Transform anchored: True rot: 1.5707963267948966 rad - pos: -30.5,-67.5 + pos: 16.5,27.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 8096: + 21849: - Output: DoorBolt - 3520: + 1722: - Output: DoorBolt - 10047: + 5486: + - Output: DoorBolt + 22009: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 18578 + - uid: 22491 components: - type: Transform anchored: True - rot: 3.141592653589793 rad - pos: -32.5,-68.5 + rot: -1.5707963267948966 rad + pos: 16.5,29.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 18576: + 20665: - Output: DoorBolt - 3498: + 1756: - Output: DoorBolt - 6228: + 22009: + - Output: DoorBolt + 5486: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - proto: LogicGateXor entities: - - uid: 233 + - uid: 509 components: - type: Transform anchored: True - pos: 35.5,29.5 + rot: 3.141592653589793 rad + pos: 50.5,21.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5888: + 21863: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 246 + - uid: 3802 + components: + - type: Transform + anchored: True + pos: -36.5,-69.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4729: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 5120 + components: + - type: Transform + anchored: True + pos: -36.5,-67.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4772: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 5121 + components: + - type: Transform + anchored: True + pos: -36.5,-77.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4773: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 5123 components: - type: Transform anchored: True rot: 1.5707963267948966 rad - pos: 33.5,44.5 + pos: -32.5,-82.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7155: + 5764: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 618 - components: - - type: Transform - anchored: True - pos: 35.5,35.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5887: - - Output: DoorBolt - - type: Physics - canCollide: False - bodyType: Static - - uid: 620 - components: - - type: Transform - anchored: True - pos: 35.5,37.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6148: - - Output: DoorBolt - - type: Physics - canCollide: False - bodyType: Static - - uid: 624 + - uid: 5127 components: - type: Transform anchored: True rot: 1.5707963267948966 rad - pos: 31.5,44.5 + pos: -34.5,-82.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7147: + 5184: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 12389 + - uid: 5252 components: - type: Transform anchored: True - pos: 35.5,27.5 + pos: -36.5,-75.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5891: - - Output: DoorBolt - - type: Physics - canCollide: False - bodyType: Static - - uid: 20221 - components: - - type: Transform - anchored: True - pos: 7.5,-61.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 61: + 3999: - Output: DoorBolt - type: Physics canCollide: False @@ -97233,7 +106205,7 @@ entities: components: - type: Transform anchored: True - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 5.5,28.5 parent: 2 - type: DeviceLinkSink @@ -97249,7 +106221,7 @@ entities: components: - type: Transform anchored: True - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 3.5,28.5 parent: 2 - type: DeviceLinkSink @@ -97261,49 +106233,50 @@ entities: - type: Physics canCollide: False bodyType: Static - - uid: 20277 - components: - - type: Transform - anchored: True - pos: 7.5,-68.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 63: - - Output: DoorBolt - - type: Physics - canCollide: False - bodyType: Static - - uid: 20278 + - uid: 22300 components: - type: Transform anchored: True rot: 3.141592653589793 rad - pos: -4.5,-61.5 + pos: 50.5,19.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 31: + 21912: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 20279 + - uid: 22301 components: - type: Transform anchored: True - rot: 3.141592653589793 rad - pos: -4.5,-68.5 + rot: -1.5707963267948966 rad + pos: 47.5,24.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 30: + 8740: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 22302 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: 45.5,24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8579: - Output: DoorBolt - type: Physics canCollide: False @@ -97315,16 +106288,21 @@ entities: - type: Transform pos: 33.5,-53.5 parent: 2 - - uid: 11255 - components: - - type: Transform - pos: -40.5,-50.5 - parent: 2 - uid: 20682 components: - type: Transform pos: -33.5,18.5 parent: 2 + - uid: 20897 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 2 + - uid: 21185 + components: + - type: Transform + pos: -50.5,-47.5 + parent: 2 - proto: LootSpawnerIndustrial entities: - uid: 9651 @@ -97332,16 +106310,6 @@ entities: - type: Transform pos: 42.5,0.5 parent: 2 - - uid: 11974 - components: - - type: Transform - pos: 24.5,14.5 - parent: 2 - - uid: 16195 - components: - - type: Transform - pos: 19.5,7.5 - parent: 2 - uid: 20150 components: - type: Transform @@ -97349,30 +106317,80 @@ entities: parent: 2 - proto: LootSpawnerIndustrialFluff entities: + - uid: 394 + components: + - type: Transform + pos: 0.5,-84.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + pos: 15.5,-77.5 + parent: 2 - uid: 8256 components: - type: Transform pos: 11.5,-25.5 parent: 2 - - uid: 11316 + - uid: 8314 components: - type: Transform - pos: -43.5,-51.5 + pos: -19.5,-16.5 parent: 2 - - uid: 11975 + - uid: 8324 components: - type: Transform - pos: 24.5,14.5 + pos: -32.5,-18.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + pos: 9.5,-78.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + pos: 32.5,17.5 parent: 2 - uid: 13575 components: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 18963 + - uid: 14978 components: - type: Transform - pos: -33.5,3.5 + pos: -6.5,-61.5 + parent: 2 + - uid: 19249 + components: + - type: Transform + pos: -3.5,-92.5 + parent: 2 + - uid: 19250 + components: + - type: Transform + pos: -4.5,-95.5 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: -11.5,-91.5 parent: 2 - uid: 19877 components: @@ -97384,29 +106402,91 @@ entities: - type: Transform pos: 58.5,-55.5 parent: 2 + - uid: 21851 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 21865 + components: + - type: Transform + pos: 59.5,-56.5 + parent: 2 + - uid: 22637 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2 - proto: LootSpawnerMaterials entities: - - uid: 4155 + - uid: 10803 components: - type: Transform - pos: 1.5,-14.5 + pos: 10.5,-19.5 parent: 2 - - uid: 12610 + - uid: 15017 components: - type: Transform - pos: -28.5,-59.5 + pos: 11.5,-91.5 parent: 2 - uid: 20151 components: - type: Transform pos: 57.5,-59.5 parent: 2 -- proto: LootSpawnerMedicalClassy - entities: - - uid: 5003 + - uid: 20759 components: - type: Transform - pos: -37.5,-27.5 + pos: 12.5,-14.5 + parent: 2 + - uid: 20766 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 +- proto: LootSpawnerMaterialsHighValue + entities: + - uid: 7599 + components: + - type: Transform + pos: 84.5,-17.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: -9.5,-87.5 + parent: 2 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 9326 + components: + - type: Transform + pos: -42.5,-45.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: -47.5,-38.5 parent: 2 - uid: 18768 components: @@ -97425,16 +106505,6 @@ entities: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 4845 - components: - - type: Transform - pos: -40.5,-21.5 - parent: 2 - - uid: 8602 - components: - - type: Transform - pos: -40.5,-23.5 - parent: 2 - uid: 10501 components: - type: Transform @@ -97445,22 +106515,27 @@ entities: - type: Transform pos: 74.5,-41.5 parent: 2 - - uid: 12376 + - uid: 12198 components: - type: Transform - pos: -42.5,-50.5 + pos: -9.5,-59.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + pos: -42.5,-44.5 parent: 2 - uid: 18170 components: - type: Transform pos: 71.5,-64.5 parent: 2 -- proto: LootSpawnerSecurity +- proto: LootSpawnerRandomCrateEngineering entities: - - uid: 9409 + - uid: 16908 components: - type: Transform - pos: -31.5,-7.5 + pos: 8.5,-19.5 parent: 2 - proto: LootSpawnerSecurityBasic entities: @@ -97474,13 +106549,6 @@ entities: - type: Transform pos: 63.5,-81.5 parent: 2 -- proto: LuxuryPen - entities: - - uid: 20255 - components: - - type: Transform - pos: -16.162369,-48.395626 - parent: 2 - proto: MachineAnomalyGenerator entities: - uid: 4278 @@ -97528,17 +106596,17 @@ entities: parent: 2 - proto: MachineCentrifuge entities: - - uid: 11806 + - uid: 12041 components: - type: Transform - pos: -34.5,-34.5 + pos: -32.5,-37.5 parent: 2 - proto: MachineElectrolysisUnit entities: - - uid: 12697 + - uid: 12039 components: - type: Transform - pos: -34.5,-35.5 + pos: -33.5,-37.5 parent: 2 - proto: MachineFrame entities: @@ -97552,6 +106620,11 @@ entities: - type: Transform pos: 21.5,-29.5 parent: 2 + - uid: 5011 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 - uid: 6168 components: - type: Transform @@ -97562,6 +106635,16 @@ entities: - type: Transform pos: 43.5,11.5 parent: 2 + - uid: 7590 + components: + - type: Transform + pos: 0.5,-95.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 - uid: 20662 components: - type: Transform @@ -97569,20 +106652,20 @@ entities: parent: 2 - proto: MachineFrameDestroyed entities: + - uid: 456 + components: + - type: Transform + pos: -3.5,-86.5 + parent: 2 - uid: 652 components: - type: Transform pos: 44.5,-44.5 parent: 2 - - uid: 2067 + - uid: 3214 components: - type: Transform - pos: 14.5,-11.5 - parent: 2 - - uid: 4354 - components: - - type: Transform - pos: 13.5,-13.5 + pos: -19.5,-13.5 parent: 2 - uid: 8672 components: @@ -97599,10 +106682,10 @@ entities: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 13192 + - uid: 14184 components: - type: Transform - pos: 16.5,2.5 + pos: -40.5,-46.5 parent: 2 - uid: 14605 components: @@ -97694,16 +106777,6 @@ entities: - type: Configuration config: tag: Engineering - - uid: 11500 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 2 - - type: MailingUnit - tag: Medical - - type: Configuration - config: - tag: Medical - uid: 12581 components: - type: Transform @@ -97725,6 +106798,16 @@ entities: - type: Configuration config: tag: Security + - uid: 14844 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - type: MailingUnit + tag: Medical + - type: Configuration + config: + tag: Medical - uid: 17870 components: - type: Transform @@ -97732,17 +106815,6 @@ entities: parent: 2 - type: MailingUnit tag: Kitchen - - uid: 18638 - components: - - type: Transform - pos: -26.5,-36.5 - parent: 2 - - type: MailingUnit - tag: Chemistry - target: Chemistry - - type: Configuration - config: - tag: Chemistry - uid: 18639 components: - type: Transform @@ -97765,13 +106837,68 @@ entities: - type: Configuration config: tag: Cargo + - uid: 20232 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - type: MailingUnit + tag: Chemistry + - type: Configuration + config: + tag: Chemistry - proto: MaintenanceFluffSpawner entities: + - uid: 1111 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: -35.5,-79.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 - uid: 3336 components: - type: Transform pos: -16.5,9.5 parent: 2 + - uid: 4428 + components: + - type: Transform + pos: -53.5,-49.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: -53.5,-55.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: -29.5,-54.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 - uid: 5719 components: - type: Transform @@ -97782,70 +106909,125 @@ entities: - type: Transform pos: 56.5,-39.5 parent: 2 + - uid: 6644 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 - uid: 6717 components: - type: Transform pos: 18.5,12.5 parent: 2 - - uid: 7202 - components: - - type: Transform - pos: 29.5,23.5 - parent: 2 - uid: 7296 components: - type: Transform pos: 7.5,-22.5 parent: 2 - - uid: 7612 + - uid: 8765 components: - type: Transform - pos: -9.5,-61.5 - parent: 2 - - uid: 8217 - components: - - type: Transform - pos: -51.5,-47.5 - parent: 2 - - uid: 8636 - components: - - type: Transform - pos: 7.5,-55.5 - parent: 2 - - uid: 8695 - components: - - type: Transform - pos: 30.5,41.5 + pos: 11.5,-67.5 parent: 2 - uid: 9359 components: - type: Transform pos: 48.5,-24.5 parent: 2 + - uid: 9506 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 - uid: 9650 components: - type: Transform pos: 42.5,-0.5 parent: 2 - - uid: 10693 + - uid: 10482 components: - type: Transform - pos: -33.5,-49.5 + pos: -52.5,-51.5 parent: 2 - - uid: 12350 + - uid: 10516 components: - type: Transform - pos: -42.5,-51.5 + pos: -56.5,-54.5 + parent: 2 + - uid: 10524 + components: + - type: Transform + pos: -61.5,31.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + pos: -76.5,-5.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 10949 + components: + - type: Transform + pos: -9.5,-65.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + pos: -45.5,-54.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + pos: -7.5,-92.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: -5.5,-88.5 parent: 2 - uid: 13094 components: - type: Transform pos: 52.5,-60.5 parent: 2 - - uid: 13813 + - uid: 14061 components: - type: Transform - pos: 3.5,-18.5 + pos: -52.5,-55.5 + parent: 2 + - uid: 15056 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 2 + - uid: 16866 + components: + - type: Transform + pos: 9.5,-95.5 + parent: 2 + - uid: 16897 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 17875 + components: + - type: Transform + pos: 2.5,-93.5 parent: 2 - uid: 18116 components: @@ -97882,32 +107064,77 @@ entities: - type: Transform pos: -24.5,-51.5 parent: 2 + - uid: 21122 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - uid: 21441 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 22460 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 22489 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 - proto: MaintenancePlantSpawner entities: + - uid: 510 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 - uid: 631 components: - type: Transform pos: 38.5,-57.5 parent: 2 + - uid: 848 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 - uid: 2860 components: - type: Transform pos: 56.5,-55.5 parent: 2 - - uid: 6054 + - uid: 3839 components: - type: Transform - pos: 6.5,-44.5 + pos: 17.5,-1.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: -48.5,-54.5 parent: 2 - uid: 7401 components: - type: Transform pos: 48.5,12.5 parent: 2 - - uid: 13367 + - uid: 16907 components: - type: Transform - pos: -33.5,6.5 + pos: -27.5,-16.5 parent: 2 - uid: 20149 components: @@ -97926,35 +107153,70 @@ entities: parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 1529 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 - uid: 3267 components: - type: Transform pos: -15.5,-25.5 parent: 2 - - uid: 6582 + - uid: 4620 components: - type: Transform - pos: 25.5,-0.5 + pos: -53.5,-51.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: 12.5,-64.5 parent: 2 - uid: 6783 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 8856 + - uid: 8158 components: - type: Transform - pos: 37.5,9.5 + pos: -14.5,-96.5 parent: 2 - - uid: 9347 + - uid: 8161 components: - type: Transform - pos: 8.5,-51.5 + pos: -12.5,-95.5 parent: 2 - - uid: 14348 + - uid: 8568 components: - type: Transform - pos: 13.5,-56.5 + pos: -48.5,-49.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 11229 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + pos: -41.5,-44.5 parent: 2 - uid: 16223 components: @@ -97966,22 +107228,37 @@ entities: - type: Transform pos: -34.5,16.5 parent: 2 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 1135 + - uid: 21597 components: - type: Transform - pos: 13.5,-12.5 + pos: -40.5,-50.5 parent: 2 + - uid: 21869 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 22177 + components: + - type: Transform + pos: 52.5,-33.5 + parent: 2 + - uid: 22646 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: - uid: 2241 components: - type: Transform pos: 53.5,-41.5 parent: 2 - - uid: 13364 + - uid: 12262 components: - type: Transform - pos: -32.5,-6.5 + pos: -39.5,-17.5 parent: 2 - uid: 18171 components: @@ -97993,6 +107270,11 @@ entities: - type: Transform pos: 59.5,-77.5 parent: 2 + - uid: 21117 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 - proto: Matchbox entities: - uid: 18987 @@ -98007,8 +107289,37 @@ entities: - type: Transform pos: 27.31061,-28.853947 parent: 2 +- proto: MaterialCardboard1 + entities: + - uid: 8296 + components: + - type: Transform + pos: -52.721657,-48.491867 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: -52.44027,-49.315353 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: 30.533962,24.520311 + parent: 2 +- proto: MaterialCardboard10 + entities: + - uid: 22315 + components: + - type: Transform + pos: 19.48091,19.410229 + parent: 2 - proto: MaterialCloth entities: + - uid: 1925 + components: + - type: Transform + pos: -53.531147,-50.56324 + parent: 2 - uid: 4458 components: - type: Transform @@ -98019,11 +107330,6 @@ entities: - type: Transform pos: -11.630145,-48.309666 parent: 2 - - uid: 10709 - components: - - type: Transform - pos: -40.572792,-52.39697 - parent: 2 - proto: MaterialCloth1 entities: - uid: 18836 @@ -98048,6 +107354,13 @@ entities: - type: Transform pos: -23.528334,19.663761 parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 1919 + components: + - type: Transform + pos: -30.653856,-58.997635 + parent: 2 - proto: MaterialDurathread entities: - uid: 7551 @@ -98060,8 +107373,7 @@ entities: - uid: 11828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.48484,11.445508 + pos: 40.559696,9.455563 parent: 2 - proto: MaterialWoodPlank1 entities: @@ -98092,11 +107404,6 @@ entities: parent: 2 - proto: MaterialWoodPlank10 entities: - - uid: 4650 - components: - - type: Transform - pos: 11.530903,-11.53406 - parent: 2 - uid: 10824 components: - type: Transform @@ -98109,6 +107416,18 @@ entities: - type: Transform pos: 23.528748,-30.371534 parent: 2 +- proto: Mattress + entities: + - uid: 20496 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 - proto: MechEquipmentGrabberSmall entities: - uid: 5686 @@ -98123,34 +107442,44 @@ entities: - type: Transform pos: -30.5,11.5 parent: 2 - - uid: 8109 + - uid: 10655 components: - type: Transform - pos: -38.5,-20.5 + pos: -45.5,-30.5 parent: 2 - - uid: 20711 + - uid: 12383 components: - type: Transform - pos: -33.5,-23.5 + pos: -41.5,-27.5 parent: 2 - - uid: 20759 + - uid: 12635 components: - type: Transform - pos: -39.5,-24.5 + pos: -45.5,-27.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 + - uid: 22018 + components: + - type: Transform + pos: 18.5,0.5 parent: 2 - proto: MedicalTechFab entities: - - uid: 11829 + - uid: 14835 components: - type: Transform - pos: -44.5,-20.5 + pos: -36.5,-24.5 parent: 2 - proto: MedkitAdvancedFilled entities: - - uid: 4812 + - uid: 12345 components: - type: Transform - pos: -28.939676,-25.44473 + pos: -27.611101,-21.373356 parent: 2 - proto: MedkitBruteFilled entities: @@ -98159,29 +107488,29 @@ entities: - type: Transform pos: -28.597748,11.966526 parent: 2 - - uid: 4813 + - uid: 12346 components: - type: Transform - pos: -28.688416,-25.301798 + pos: -27.058744,-21.373356 parent: 2 - - uid: 4953 + - uid: 14890 components: - type: Transform - pos: -34.599285,-25.395685 + pos: -39.21216,-24.463324 parent: 2 - proto: MedkitBurnFilled entities: - - uid: 4787 + - uid: 14891 components: - type: Transform - pos: -34.58557,-25.79635 + pos: -38.95161,-24.327812 parent: 2 - proto: MedkitCombatFilled entities: - - uid: 4020 + - uid: 14106 components: - type: Transform - pos: -41.173077,-34.23781 + pos: -47.612183,-22.366476 parent: 2 - proto: MedkitFilled entities: @@ -98195,21 +107524,36 @@ entities: - type: Transform pos: 15.536427,-47.35837 parent: 2 - - uid: 5009 - components: - - type: Transform - pos: -34.35629,-26.421785 - parent: 2 - - uid: 8525 - components: - - type: Transform - pos: 20.53991,-13.383279 - parent: 2 - uid: 9844 components: - type: Transform pos: -18.531181,-50.325314 parent: 2 + - uid: 12347 + components: + - type: Transform + pos: -27.31929,-21.498356 + parent: 2 + - uid: 14769 + components: + - type: Transform + pos: -35.562977,-30.081774 + parent: 2 + - uid: 14770 + components: + - type: Transform + pos: -28.465706,-30.352795 + parent: 2 + - uid: 14907 + components: + - type: Transform + pos: -42.43738,-27.405184 + parent: 2 + - uid: 21611 + components: + - type: Transform + pos: 22.677423,2.570633 + parent: 2 - proto: MedkitO2 entities: - uid: 1962 @@ -98217,54 +107561,29 @@ entities: - type: Transform pos: -12.464999,-8.361995 parent: 2 - - uid: 4699 - components: - - type: Transform - pos: -28.38732,-25.434307 - parent: 2 - proto: MedkitOxygenFilled entities: - - uid: 5008 + - uid: 14893 components: - type: Transform - pos: -34.554306,-26.202883 - parent: 2 - - uid: 5155 - components: - - type: Transform - pos: -31.570898,-60.697475 - parent: 2 - - uid: 11615 - components: - - type: Transform - pos: -6.4743137,-60.38087 + pos: -38.40397,-24.327812 parent: 2 - proto: MedkitRadiationFilled entities: - - uid: 4785 + - uid: 14892 components: - type: Transform - pos: -34.377132,-25.598297 + pos: -39.534172,-24.327812 parent: 2 - proto: MedkitToxinFilled entities: - - uid: 12994 + - uid: 14895 components: - type: Transform - pos: -34.35926,-25.975962 + pos: -38.668125,-24.4529 parent: 2 - proto: MicroManipulatorStockPart entities: - - uid: 4773 - components: - - type: Transform - pos: -28.36625,-60.265133 - parent: 2 - - uid: 5668 - components: - - type: Transform - pos: -28.658062,-60.3381 - parent: 2 - uid: 9605 components: - type: Transform @@ -98284,10 +107603,10 @@ entities: parent: 2 - proto: MiniGravityGeneratorCircuitboard entities: - - uid: 8006 + - uid: 21977 components: - type: Transform - pos: -35.515686,-53.284847 + pos: 21.394836,23.732847 parent: 2 - proto: MinimoogInstrument entities: @@ -98305,13 +107624,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-39.5 parent: 2 -- proto: MonkeyCubeWrapped - entities: - - uid: 6952 - components: - - type: Transform - pos: -50.94765,-47.44612 - parent: 2 - proto: MoonBattlemap entities: - uid: 6009 @@ -98326,34 +107638,39 @@ entities: - type: Transform pos: -2.5,-26.5 parent: 2 -- proto: MopBucketFull - entities: - - uid: 9407 + - uid: 15747 components: - type: Transform - pos: 28.5,-0.5 + pos: -47.5,-52.5 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 21818 + components: + - type: Transform + pos: 28.5,2.5 parent: 2 - proto: MopItem entities: - - uid: 2437 - components: - - type: Transform - pos: 23.483007,5.5348063 - parent: 2 - uid: 3889 components: - type: Transform pos: -2.5393615,-26.524923 parent: 2 - - uid: 9529 + - uid: 16934 components: - type: Transform - pos: 28.482061,-0.5141529 + pos: -47.522087,-52.53586 parent: 2 - - uid: 18982 + - uid: 20336 components: - type: Transform - pos: 35.46167,18.529366 + pos: 44.345024,17.50864 + parent: 2 + - uid: 21371 + components: + - type: Transform + pos: 28.489487,2.5330553 parent: 2 - proto: Morgue entities: @@ -98362,61 +107679,56 @@ entities: - type: Transform pos: -29.5,12.5 parent: 2 - - uid: 3312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-47.5 - parent: 2 - uid: 4377 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-29.5 parent: 2 - - uid: 4888 + - uid: 14119 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-46.5 + pos: -46.5,-43.5 parent: 2 - - uid: 4894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-48.5 - parent: 2 - - uid: 4895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-45.5 - parent: 2 - - uid: 4898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-46.5 - parent: 2 - - uid: 7961 + - uid: 14120 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-45.5 + pos: -46.5,-44.5 parent: 2 - - uid: 8265 + - uid: 14121 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-48.5 + pos: -46.5,-46.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-43.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-44.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-45.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-46.5 parent: 2 - proto: MothroachCube entities: - - uid: 3154 - components: - - type: Transform - pos: 10.628341,3.8540983 - parent: 2 - uid: 4455 components: - type: Transform @@ -98434,6 +107746,11 @@ entities: - type: Transform pos: 46.5,10.5 parent: 2 + - uid: 5862 + components: + - type: Transform + pos: -46.5,-50.5 + parent: 2 - uid: 7092 components: - type: Transform @@ -98444,23 +107761,33 @@ entities: - type: Transform pos: 24.5,-53.5 parent: 2 - - uid: 11284 + - uid: 12128 components: - type: Transform - pos: 24.5,5.5 + pos: 24.5,-2.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + pos: 7.5,-52.5 parent: 2 - uid: 20634 components: - type: Transform pos: -22.5,19.5 parent: 2 -- proto: Multitool - entities: - - uid: 130 + - uid: 22636 components: - type: Transform - pos: -6.710307,-15.357808 + pos: 32.5,25.5 parent: 2 + - uid: 22645 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 +- proto: Multitool + entities: - uid: 3370 components: - type: Transform @@ -98471,42 +107798,18 @@ entities: - type: Transform pos: 26.30102,-37.382942 parent: 2 - - uid: 13074 + - uid: 11162 components: - type: Transform - pos: 13.493722,-19.422201 + pos: 7.350439,-16.342197 parent: 2 - uid: 16645 components: - type: Transform pos: 38.63871,-42.337013 parent: 2 -- proto: MysteryFigureBox - entities: - - uid: 20232 - components: - - type: Transform - pos: -31.540592,-45.965317 - parent: 2 -- proto: MysteryFigureBoxTrash - entities: - - uid: 559 - components: - - type: Transform - pos: -42.69603,-50.214554 - parent: 2 - - uid: 11319 - components: - - type: Transform - pos: -42.352108,-50.537697 - parent: 2 - proto: NitrogenCanister entities: - - uid: 275 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 2 - uid: 399 components: - type: Transform @@ -98527,16 +107830,21 @@ entities: - type: Transform pos: -11.5,-2.5 parent: 2 - - uid: 3108 + - uid: 3530 components: - type: Transform - pos: 3.5,-14.5 + pos: 11.5,-78.5 parent: 2 - uid: 4265 components: - type: Transform pos: -13.5,23.5 parent: 2 + - uid: 4379 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 - uid: 4469 components: - type: Transform @@ -98547,25 +107855,30 @@ entities: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 5022 + - uid: 5974 components: - type: Transform - pos: -29.5,-19.5 + pos: 49.5,-33.5 parent: 2 - - uid: 7576 + - uid: 11050 components: - type: Transform - pos: 12.5,-71.5 + pos: 28.5,-4.5 parent: 2 - - uid: 7583 + - uid: 12682 components: - type: Transform - pos: -9.5,-71.5 + pos: -52.5,-38.5 parent: 2 - - uid: 10703 + - uid: 12711 components: - type: Transform - pos: -39.5,-55.5 + pos: -8.5,-78.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: -34.5,-18.5 parent: 2 - uid: 14307 components: @@ -98577,16 +107890,21 @@ entities: - type: Transform pos: -53.5,-13.5 parent: 2 - - uid: 18591 + - uid: 19197 components: - type: Transform - pos: 49.5,-33.5 + pos: -4.5,-58.5 parent: 2 - uid: 19875 components: - type: Transform pos: 47.5,-54.5 parent: 2 + - uid: 21118 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 - proto: NitrogenTankFilled entities: - uid: 5347 @@ -98608,15 +107926,15 @@ entities: - type: Transform pos: 38.479885,-27.422543 parent: 2 - - uid: 5245 + - uid: 12368 components: - type: Transform - pos: -52.508484,-33.27032 + pos: -26.485409,-21.477522 parent: 2 - - uid: 16363 + - uid: 14846 components: - type: Transform - pos: -26.490044,-25.493969 + pos: -45.517696,-22.665138 parent: 2 - proto: NoticeBoard entities: @@ -98656,11 +107974,10 @@ entities: parent: 2 - proto: NuclearBombUnanchored entities: - - uid: 13189 + - uid: 1904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 + pos: -28.5,-61.5 parent: 2 - proto: NukeDiskFake entities: @@ -98680,32 +107997,27 @@ entities: parent: 2 - proto: OperatingTable entities: - - uid: 1892 - components: - - type: Transform - pos: -51.5,-33.5 - parent: 2 - - uid: 2846 - components: - - type: Transform - pos: -51.5,-27.5 - parent: 2 - - uid: 3879 - components: - - type: Transform - pos: -43.5,-47.5 - parent: 2 - uid: 4365 components: - type: Transform pos: 38.5,-29.5 parent: 2 + - uid: 12993 + components: + - type: Transform + pos: -43.5,-23.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 - proto: OreBag entities: - uid: 175 components: - type: Transform - pos: 11.532255,23.533916 + pos: 10.530537,28.604168 parent: 2 - proto: OreBox entities: @@ -98714,6 +108026,11 @@ entities: - type: Transform pos: 14.5,21.5 parent: 2 + - uid: 22474 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 - proto: OreProcessor entities: - uid: 1360 @@ -98748,20 +108065,20 @@ entities: - type: Transform pos: -11.5,-3.5 parent: 2 - - uid: 2327 + - uid: 3891 components: - type: Transform - pos: -5.5,-8.5 + pos: -8.5,-77.5 parent: 2 - - uid: 2877 + - uid: 3932 components: - type: Transform - pos: 19.5,-9.5 + pos: 11.5,-77.5 parent: 2 - - uid: 4303 + - uid: 4215 components: - type: Transform - pos: 4.5,-14.5 + pos: 29.5,15.5 parent: 2 - uid: 4468 components: @@ -98773,35 +108090,30 @@ entities: - type: Transform pos: 14.5,18.5 parent: 2 - - uid: 4668 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 2 - - uid: 6276 - components: - - type: Transform - pos: 18.5,8.5 - parent: 2 - uid: 6975 components: - type: Transform pos: 35.5,8.5 parent: 2 - - uid: 7580 + - uid: 7436 components: - type: Transform - pos: -7.5,-71.5 + pos: -5.5,-8.5 parent: 2 - - uid: 7596 + - uid: 11068 components: - type: Transform - pos: 10.5,-71.5 + pos: 27.5,-4.5 parent: 2 - - uid: 10701 + - uid: 13131 components: - type: Transform - pos: -40.5,-55.5 + pos: -52.5,-37.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: -34.5,-17.5 parent: 2 - uid: 14270 components: @@ -98813,11 +108125,21 @@ entities: - type: Transform pos: -54.5,-13.5 parent: 2 + - uid: 19209 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 - uid: 19876 components: - type: Transform pos: 46.5,-54.5 parent: 2 + - uid: 21156 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 - proto: OxygenTankFilled entities: - uid: 5326 @@ -98832,6 +108154,13 @@ entities: - type: Transform pos: -41.57583,-5.567674 parent: 2 +- proto: PaintingSkeletonCigarette + entities: + - uid: 21208 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 - proto: PaladinCircuitBoard entities: - uid: 16468 @@ -98853,6 +108182,11 @@ entities: - type: Transform pos: -12.605077,14.639001 parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -28.57779,-45.411148 + parent: 2 - uid: 1912 components: - type: Transform @@ -98869,10 +108203,20 @@ entities: rot: -1.5707963267948966 rad pos: 19.868683,14.68054 parent: 2 - - uid: 4510 + - uid: 3740 components: - type: Transform - pos: 10.756002,-13.212388 + pos: 22.102634,-44.28669 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: 22.269384,-44.463894 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -29.640818,-45.609203 parent: 2 - uid: 7073 components: @@ -98966,32 +108310,6 @@ entities: - type: Transform pos: 13.602551,-51.490356 parent: 2 - - uid: 12348 - components: - - type: Transform - pos: -40.606613,-51.410885 - parent: 2 - - uid: 12349 - components: - - type: Transform - pos: -40.419018,-50.94181 - parent: 2 - - uid: 15483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.9965925,-12.161332 - parent: 2 - - uid: 15830 - components: - - type: Transform - pos: 11.042132,-11.941029 - parent: 2 - - uid: 17874 - components: - - type: Transform - pos: 6.352662,-51.439014 - parent: 2 - proto: PaperBin10 entities: - uid: 3040 @@ -99004,16 +108322,17 @@ entities: - type: Transform pos: 35.5,-41.5 parent: 2 - - uid: 8260 - components: - - type: Transform - pos: -52.5,-42.5 - parent: 2 - uid: 8445 components: - type: Transform pos: -24.5,-18.5 parent: 2 + - uid: 13750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-24.5 + parent: 2 - proto: PaperBin20 entities: - uid: 1228 @@ -99021,11 +108340,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 5954 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - uid: 5995 components: - type: Transform @@ -99036,6 +108350,17 @@ entities: - type: Transform pos: -11.5,-47.5 parent: 2 + - uid: 9391 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - uid: 10922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 - uid: 15838 components: - type: Transform @@ -99053,11 +108378,6 @@ entities: - type: Transform pos: -11.5,-14.5 parent: 2 - - uid: 18637 - components: - - type: Transform - pos: -45.5,-22.5 - parent: 2 - proto: PaperCNCSheet entities: - uid: 5996 @@ -99149,26 +108469,30 @@ entities: - type: Transform pos: -10.496071,-13.459224 parent: 2 - - uid: 4775 + - uid: 15051 components: - type: Transform - pos: -31.512741,-59.428432 + pos: 6.545867,-89.35689 parent: 2 - - uid: 10652 + - uid: 15185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.464424,-55.467007 + pos: 0.5215175,-57.367905 parent: 2 - uid: 19939 components: - type: Transform - pos: 11.662693,26.53137 + pos: 15.414982,25.616112 parent: 2 - uid: 20133 components: - type: Transform - pos: 11.443943,26.520947 + pos: 15.560888,25.595263 + parent: 2 + - uid: 21618 + components: + - type: Transform + pos: -57.479538,-58.35758 parent: 2 - proto: PartRodMetal1 entities: @@ -99206,10 +108530,15 @@ entities: - type: Transform pos: -12.335869,14.626761 parent: 2 - - uid: 4112 + - uid: 1381 components: - type: Transform - pos: -6.6149387,-59.69337 + pos: -28.18176,-45.359028 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 21.831667,-44.265842 parent: 2 - uid: 6003 components: @@ -99227,11 +108556,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.373459,-49.153915 parent: 2 - - uid: 6006 - components: - - type: Transform - pos: 18.613163,-36.060383 - parent: 2 - uid: 6271 components: - type: Transform @@ -99248,45 +108572,25 @@ entities: rot: -1.5707963267948966 rad pos: -18.651308,-44.464256 parent: 2 - - uid: 8203 - components: - - type: Transform - pos: -51.8782,-42.349243 - parent: 2 - - uid: 8247 - components: - - type: Transform - pos: -44.468704,-45.82548 - parent: 2 - uid: 8510 components: - type: Transform pos: 48.20175,-7.408041 parent: 2 - - uid: 10191 - components: - - type: Transform - pos: -34.36954,-45.00922 - parent: 2 - uid: 11930 components: - type: Transform pos: 32.108105,-75.43631 parent: 2 - - uid: 13083 - components: - - type: Transform - pos: -33.33428,-32.462944 - parent: 2 - uid: 13493 components: - type: Transform pos: -24.065586,-18.367483 parent: 2 - - uid: 15867 + - uid: 14162 components: - type: Transform - pos: 12.290273,-12.883439 + pos: -49.959827,-43.384743 parent: 2 - uid: 16885 components: @@ -99298,6 +108602,11 @@ entities: - type: Transform pos: 17.558317,12.469315 parent: 2 + - uid: 21435 + components: + - type: Transform + pos: 20.623661,-40.959423 + parent: 2 - proto: PersonalAI entities: - uid: 3727 @@ -99325,6 +108634,16 @@ entities: - type: Transform pos: -23.127619,-18.398756 parent: 2 + - uid: 22272 + components: + - type: Transform + pos: -9.504319,-64.42072 + parent: 2 + - uid: 22273 + components: + - type: Transform + pos: -53.009056,-51.51435 + parent: 2 - proto: PhoneInstrument entities: - uid: 13539 @@ -99342,17 +108661,29 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 5409 + - uid: 21915 components: - type: Transform - pos: 18.529888,28.510042 + pos: 17.511118,31.580132 parent: 2 - proto: PillCanisterBicaridine entities: - - uid: 3156 + - uid: 21979 components: - type: Transform - pos: -25.62975,-33.982788 + pos: 22.274645,2.5428553 + parent: 2 +- proto: PillCanisterDermaline + entities: + - uid: 1442 + components: + - type: Transform + pos: -27.533257,-45.233967 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: 22.302423,2.7234106 parent: 2 - proto: PillCanisterDexalin entities: @@ -99363,32 +108694,25 @@ entities: parent: 2 - proto: PillCanisterRandom entities: - - uid: 4824 - components: - - type: Transform - pos: -28.032207,-28.350983 - parent: 2 - - uid: 4940 - components: - - type: Transform - pos: -29.676888,-22.437117 - parent: 2 - - uid: 7811 - components: - - type: Transform - pos: -52.253387,-41.817623 - parent: 2 - uid: 14060 components: - type: Transform pos: 22.25982,-58.332798 parent: 2 -- proto: PillCanisterTricordrazine - entities: - - uid: 4858 + - uid: 14771 components: - type: Transform - pos: -25.358917,-33.79516 + pos: -35.30047,-30.352795 + parent: 2 + - uid: 14776 + components: + - type: Transform + pos: -29.495483,-33.442432 + parent: 2 + - uid: 14777 + components: + - type: Transform + pos: -29.182829,-33.412388 parent: 2 - proto: PirateFlag entities: @@ -99445,7 +108769,7 @@ entities: - type: Transform pos: -11.5,-4.5 parent: 2 - - uid: 1967 + - uid: 7752 components: - type: Transform pos: -5.5,-9.5 @@ -99458,6 +108782,18 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-32.5 parent: 2 + - uid: 4758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,29.5 + parent: 2 - uid: 6839 components: - type: Transform @@ -99479,6 +108815,14 @@ entities: - type: Transform pos: 6.5,15.5 parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 12134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 2 - proto: PlayerStationAi entities: - uid: 16136 @@ -99486,15 +108830,39 @@ entities: - type: Transform pos: -67.5,-12.5 parent: 2 -- proto: PlushieDiona +- proto: PlushieArachind entities: - - uid: 8981 + - uid: 21888 components: - type: Transform - pos: 5.570408,-44.542873 + pos: 19.521072,-8.539616 + parent: 2 +- proto: PlushieAtmosian + entities: + - uid: 719 + components: + - type: Transform + pos: 13.541924,-10.43575 + parent: 2 +- proto: PlushieDiona + entities: + - uid: 8572 + components: + - type: Transform + pos: 6.540762,-45.45022 parent: 2 - proto: PlushieLizard entities: + - uid: 6264 + components: + - type: Transform + pos: -38.669014,-51.243996 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: 61.5,-78.5 + parent: 2 - uid: 19554 components: - type: Transform @@ -99520,8 +108888,20 @@ entities: - type: Transform pos: 62.5,-79.5 parent: 2 +- proto: PlushieLizardMirrored + entities: + - uid: 1797 + components: + - type: Transform + pos: 12.514555,-9.457302 + parent: 2 - proto: PlushieMoth entities: + - uid: 6278 + components: + - type: Transform + pos: -38.262566,-51.25442 + parent: 2 - uid: 17566 components: - type: Transform @@ -99529,31 +108909,17 @@ entities: parent: 2 - proto: PlushieSharkBlue entities: - - uid: 7986 + - uid: 6303 components: - type: Transform - pos: -32.542946,-46.481663 + pos: -38.450157,-51.567135 parent: 2 - proto: PlushieSharkPink entities: - uid: 10956 components: - type: Transform - pos: 13.497391,-55.429188 - parent: 2 -- proto: PlushieSpaceLizard - entities: - - uid: 7563 - components: - - type: Transform - pos: -31.529049,-68.521324 - parent: 2 -- proto: PlushieVox - entities: - - uid: 3183 - components: - - type: Transform - pos: 16.4438,-5.3298454 + pos: 13.538204,-53.419353 parent: 2 - proto: PonderingOrb entities: @@ -99571,61 +108937,76 @@ entities: parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 2926 - components: - - type: Transform - pos: 19.5,6.5 - parent: 2 - - uid: 3176 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 2 - - uid: 4157 - components: - - type: Transform - pos: 0.5,-41.5 - parent: 2 - uid: 5702 components: - type: Transform pos: 45.5,-36.5 parent: 2 + - uid: 7506 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 2 - uid: 8696 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 11468 + - uid: 9501 components: - type: Transform - pos: 14.5,-17.5 + pos: 37.5,12.5 parent: 2 - - uid: 18582 + - uid: 14172 components: - type: Transform - pos: -32.5,-41.5 + pos: -39.5,-41.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + pos: 28.5,25.5 parent: 2 - uid: 18810 components: - type: Transform pos: 81.5,-15.5 parent: 2 + - uid: 19191 + components: + - type: Transform + pos: 9.5,-90.5 + parent: 2 - uid: 20635 components: - type: Transform pos: 53.5,-56.5 parent: 2 - - uid: 20636 - components: - - type: Transform - pos: 21.5,-42.5 - parent: 2 - uid: 20685 components: - type: Transform pos: -33.5,20.5 parent: 2 + - uid: 21442 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 21843 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 - proto: PortableGeneratorPacman entities: - uid: 5501 @@ -99662,15 +109043,15 @@ entities: - type: Transform pos: 31.5,-45.5 parent: 2 - - uid: 18115 + - uid: 3359 components: - type: Transform - pos: 29.5,-10.5 + pos: 29.5,-7.5 parent: 2 - - uid: 18373 + - uid: 4909 components: - type: Transform - pos: 29.5,-9.5 + pos: 29.5,-8.5 parent: 2 - proto: PosterContrabandGreyTide entities: @@ -99686,6 +109067,13 @@ entities: - type: Transform pos: -14.5,-22.5 parent: 2 +- proto: PosterContrabandLamarr + entities: + - uid: 12254 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 - proto: PosterContrabandMoth entities: - uid: 4205 @@ -99694,12 +109082,12 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-6.5 parent: 2 -- proto: PosterContrabandRevolt +- proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 2147 + - uid: 4823 components: - type: Transform - pos: 14.5,-10.5 + pos: -30.5,-62.5 parent: 2 - proto: PosterContrabandTools entities: @@ -99717,6 +109105,21 @@ entities: parent: 2 - proto: PosterContrabandWehWatches entities: + - uid: 17180 + components: + - type: Transform + pos: 63.5,-79.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + pos: 63.5,-78.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + pos: 62.5,-76.5 + parent: 2 - uid: 19978 components: - type: Transform @@ -99736,12 +109139,12 @@ entities: - type: Transform pos: 47.5,-2.5 parent: 2 -- proto: PosterLegitHighClassMartini +- proto: PosterLegitFruitBowl entities: - - uid: 2765 + - uid: 22076 components: - type: Transform - pos: 4.5,-41.5 + pos: 19.5,-5.5 parent: 2 - proto: PosterLegitMime entities: @@ -99750,12 +109153,26 @@ entities: - type: Transform pos: 6.5,-29.5 parent: 2 -- proto: PosterLegitSafetyMothSSD +- proto: PosterLegitNanotrasenLogo entities: - - uid: 9537 + - uid: 7865 components: - type: Transform - pos: -40.5,-28.5 + rot: 3.141592653589793 rad + pos: 18.5,-16.5 + parent: 2 +- proto: PosterLegitNTTGC + entities: + - uid: 584 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 22347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,17.5 parent: 2 - proto: PottedPlant3 entities: @@ -99786,11 +109203,6 @@ entities: - type: Transform pos: -2.5,25.5 parent: 2 - - uid: 1908 - components: - - type: Transform - pos: -52.5,-30.5 - parent: 2 - uid: 2658 components: - type: Transform @@ -99801,25 +109213,20 @@ entities: - type: Transform pos: -21.5,-40.5 parent: 2 - - uid: 3494 - components: - - type: Transform - pos: 5.5,-45.5 - parent: 2 - uid: 3788 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 4223 + - uid: 4774 components: - type: Transform - pos: 4.5,-50.5 + pos: -31.5,-56.5 parent: 2 - - uid: 5300 + - uid: 5209 components: - type: Transform - pos: -40.5,-29.5 + pos: -29.5,-50.5 parent: 2 - uid: 5676 components: @@ -99836,25 +109243,30 @@ entities: - type: Transform pos: 35.5,-4.5 parent: 2 + - uid: 6140 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: -9.5,-61.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 2 - uid: 6757 components: - type: Transform pos: 24.5,-24.5 parent: 2 - - uid: 7136 + - uid: 7067 components: - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 7161 - components: - - type: Transform - pos: 34.5,31.5 - parent: 2 - - uid: 7162 - components: - - type: Transform - pos: 34.5,33.5 + pos: 33.5,1.5 parent: 2 - uid: 7402 components: @@ -99866,20 +109278,20 @@ entities: - type: Transform pos: -10.5,-43.5 parent: 2 - - uid: 7585 - components: - - type: Transform - pos: 9.5,-67.5 - parent: 2 - uid: 7607 components: - type: Transform pos: -18.5,-43.5 parent: 2 - - uid: 7942 + - uid: 7858 components: - type: Transform - pos: -6.5,-62.5 + pos: -45.5,-20.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 11.5,-61.5 parent: 2 - uid: 8379 components: @@ -99911,20 +109323,15 @@ entities: - type: Transform pos: 54.5,-22.5 parent: 2 - - uid: 10155 + - uid: 9505 components: - type: Transform - pos: -30.5,-44.5 + pos: -35.5,-43.5 parent: 2 - - uid: 10617 + - uid: 10672 components: - type: Transform - pos: -21.5,-48.5 - parent: 2 - - uid: 11439 - components: - - type: Transform - pos: 30.5,-33.5 + pos: -23.5,-48.5 parent: 2 - uid: 11457 components: @@ -99941,6 +109348,36 @@ entities: - type: Transform pos: 27.5,-31.5 parent: 2 + - uid: 12698 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + pos: 9.5,-75.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 2 + - uid: 14782 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 - uid: 16589 components: - type: Transform @@ -99966,6 +109403,16 @@ entities: - type: Transform pos: -23.5,-9.5 parent: 2 + - uid: 21078 + components: + - type: Transform + pos: 11.5,-66.5 + parent: 2 + - uid: 21277 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 - proto: PottedPlantRandomPlastic entities: - uid: 743 @@ -99978,36 +109425,51 @@ entities: - type: Transform pos: 7.5,22.5 parent: 2 - - uid: 7587 + - uid: 2528 components: - type: Transform - pos: -6.5,-67.5 + pos: -31.5,-80.5 parent: 2 - - uid: 7592 + - uid: 2534 components: - type: Transform - pos: 9.5,-62.5 + pos: -35.5,-71.5 parent: 2 - - uid: 8693 + - uid: 12709 components: - type: Transform - pos: 34.5,42.5 + pos: 14.5,5.5 parent: 2 - - uid: 11627 + - uid: 13062 components: - type: Transform - pos: 29.5,-11.5 + pos: -47.5,-46.5 parent: 2 - - uid: 16987 + - uid: 14781 components: - type: Transform - pos: 19.5,-42.5 + pos: -39.5,-31.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: -44.5,-22.5 parent: 2 - uid: 16988 components: - type: Transform pos: -9.5,-48.5 parent: 2 + - uid: 21217 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 - proto: PottedPlantRD entities: - uid: 4397 @@ -100041,6 +109503,11 @@ entities: - type: Transform pos: 7.5,18.5 parent: 2 + - uid: 2305 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 - uid: 2619 components: - type: Transform @@ -100058,64 +109525,61 @@ entities: rot: 3.141592653589793 rad pos: -23.5,0.5 parent: 2 - - uid: 4948 + - uid: 4143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-25.5 + pos: 24.5,-0.5 parent: 2 - uid: 5818 components: - type: Transform pos: 25.5,-17.5 parent: 2 - - uid: 6166 + - uid: 6631 components: - type: Transform - pos: -33.5,-57.5 - parent: 2 - - uid: 6308 - components: - - type: Transform - pos: 20.5,-17.5 + pos: 20.5,-18.5 parent: 2 - uid: 8405 components: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 9406 - components: - - type: Transform - pos: 29.5,4.5 - parent: 2 - uid: 9607 components: - type: Transform pos: 19.5,-23.5 parent: 2 + - uid: 11116 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 - uid: 12507 components: - type: Transform pos: -15.5,-25.5 parent: 2 + - uid: 12746 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 - uid: 12856 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-46.5 parent: 2 - - uid: 13100 + - uid: 14768 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-27.5 + pos: -35.5,-29.5 parent: 2 - - uid: 13103 + - uid: 16868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-29.5 + pos: 6.5,-88.5 parent: 2 - uid: 19878 components: @@ -100128,6 +109592,12 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 2 + - uid: 22007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 - proto: PowerDrill entities: - uid: 4425 @@ -100149,6 +109619,12 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,13.5 parent: 2 + - uid: 1764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 - uid: 1765 components: - type: Transform @@ -100172,12 +109648,6 @@ entities: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 6998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-72.5 - parent: 2 - uid: 7058 components: - type: Transform @@ -100189,35 +109659,12 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 - - uid: 7134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-49.5 - parent: 2 - - uid: 7633 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 2 - - uid: 7997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,13.5 - parent: 2 - uid: 8285 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-9.5 parent: 2 - - uid: 8950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 2 - uid: 9135 components: - type: Transform @@ -100230,6 +109677,23 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-55.5 parent: 2 + - uid: 10108 + components: + - type: Transform + pos: -49.5,-48.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 2 - uid: 11123 components: - type: Transform @@ -100254,41 +109718,17 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-26.5 parent: 2 - - uid: 11633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-54.5 - parent: 2 - uid: 11644 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-52.5 parent: 2 - - uid: 11724 + - uid: 12194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 2 - - uid: 11941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-14.5 - parent: 2 - - uid: 12108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,5.5 - parent: 2 - - uid: 12282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-42.5 + rot: -1.5707963267948966 rad + pos: -7.5,-42.5 parent: 2 - uid: 12386 components: @@ -100307,17 +109747,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,13.5 parent: 2 - - uid: 12901 - components: - - type: Transform - pos: 14.5,28.5 - parent: 2 - - uid: 13000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-45.5 - parent: 2 - uid: 13005 components: - type: Transform @@ -100329,6 +109758,11 @@ entities: - type: Transform pos: 28.5,19.5 parent: 2 + - uid: 13255 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 - uid: 13795 components: - type: Transform @@ -100368,40 +109802,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-41.5 parent: 2 - - uid: 17122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-18.5 - parent: 2 - - uid: 17123 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 2 - - uid: 17147 - components: - - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 17148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-57.5 - parent: 2 - - uid: 17155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-68.5 - parent: 2 - - uid: 17156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-69.5 - parent: 2 - uid: 17159 components: - type: Transform @@ -100437,46 +109837,6 @@ entities: - type: Transform pos: 23.5,-33.5 parent: 2 - - uid: 17177 - components: - - type: Transform - pos: 7.5,-67.5 - parent: 2 - - uid: 17178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-62.5 - parent: 2 - - uid: 17179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-62.5 - parent: 2 - - uid: 17180 - components: - - type: Transform - pos: -4.5,-67.5 - parent: 2 - - uid: 17181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-72.5 - parent: 2 - - uid: 17184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-36.5 - parent: 2 - - uid: 18095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,8.5 - parent: 2 - uid: 18174 components: - type: Transform @@ -100512,12 +109872,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-37.5 parent: 2 - - uid: 20737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,12.5 - parent: 2 - uid: 20763 components: - type: Transform @@ -100526,19 +109880,22 @@ entities: parent: 2 - type: PoweredLight on: False -- proto: PoweredLEDSmallLight - entities: - - uid: 12977 + - uid: 21443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-47.5 + pos: 1.5,-39.5 parent: 2 - - uid: 13188 + - uid: 21786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 + - uid: 21925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,6.5 + pos: 20.5,13.5 parent: 2 - proto: Poweredlight entities: @@ -100547,17 +109904,11 @@ entities: - type: Transform pos: -21.5,6.5 parent: 2 - - uid: 430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-51.5 - parent: 2 - - uid: 589 + - uid: 292 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-59.5 + pos: -23.5,-45.5 parent: 2 - uid: 714 components: @@ -100565,41 +109916,41 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,4.5 parent: 2 - - uid: 719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-4.5 - parent: 2 - uid: 1026 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-7.5 parent: 2 - - uid: 1730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-41.5 - parent: 2 - uid: 1804 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-5.5 parent: 2 + - uid: 1808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 2 - uid: 2057 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-47.5 parent: 2 - - uid: 2061 + - uid: 2113 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-56.5 + pos: -1.5,-23.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-59.5 parent: 2 - uid: 2595 components: @@ -100607,22 +109958,16 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 - - uid: 2840 + - uid: 3058 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-26.5 + pos: 21.5,-7.5 parent: 2 - - uid: 3361 + - uid: 3604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 2 - - uid: 3389 - components: - - type: Transform - pos: 8.5,-17.5 + pos: -1.5,-55.5 parent: 2 - uid: 3665 components: @@ -100630,12 +109975,24 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-11.5 parent: 2 + - uid: 3673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 2 - uid: 3708 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-11.5 parent: 2 + - uid: 3726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-57.5 + parent: 2 - uid: 3842 components: - type: Transform @@ -100647,23 +110004,97 @@ entities: - type: Transform pos: -11.5,-6.5 parent: 2 + - uid: 3957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-63.5 + parent: 2 - uid: 4257 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-22.5 parent: 2 - - uid: 4570 + - uid: 4375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-36.5 + rot: -1.5707963267948966 rad + pos: -6.5,-69.5 parent: 2 - - uid: 4843 + - uid: 4426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-72.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-64.5 + parent: 2 + - uid: 4472 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-35.5 + pos: 9.5,-64.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-61.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-69.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-72.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-61.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-46.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 4.5,-16.5 parent: 2 - uid: 5277 components: @@ -100671,16 +110102,11 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-52.5 parent: 2 - - uid: 5579 + - uid: 5747 components: - type: Transform - pos: -47.5,-30.5 - parent: 2 - - uid: 6272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-53.5 + rot: 3.141592653589793 rad + pos: -27.5,-48.5 parent: 2 - uid: 6367 components: @@ -100688,17 +110114,17 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-34.5 parent: 2 - - uid: 6424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-44.5 - parent: 2 - uid: 6452 components: - type: Transform pos: -20.5,-36.5 parent: 2 + - uid: 6576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 - uid: 6661 components: - type: Transform @@ -100725,43 +110151,14 @@ entities: - uid: 7944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-66.5 + rot: 3.141592653589793 rad + pos: -6.5,-41.5 parent: 2 - - uid: 8009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-63.5 - parent: 2 - - uid: 8011 + - uid: 8420 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-66.5 - parent: 2 - - uid: 8012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-63.5 - parent: 2 - - uid: 8014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-69.5 - parent: 2 - - uid: 8015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-69.5 - parent: 2 - - uid: 8017 - components: - - type: Transform - pos: 12.5,-60.5 + pos: 17.5,23.5 parent: 2 - uid: 8478 components: @@ -100792,30 +110189,84 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,12.5 parent: 2 + - uid: 8736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-16.5 + parent: 2 - uid: 8863 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,13.5 parent: 2 + - uid: 9123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 - uid: 9138 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-5.5 parent: 2 + - uid: 10073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-44.5 + parent: 2 - uid: 10749 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-13.5 parent: 2 + - uid: 10769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-55.5 + parent: 2 - uid: 11074 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-35.5 parent: 2 + - uid: 11111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-58.5 + parent: 2 - uid: 11443 components: - type: Transform @@ -100855,11 +110306,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-25.5 parent: 2 - - uid: 11551 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 2 - uid: 11558 components: - type: Transform @@ -100899,30 +110345,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 - - uid: 11609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-56.5 - parent: 2 - - uid: 11610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-52.5 - parent: 2 - - uid: 11611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-49.5 - parent: 2 - - uid: 11612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-49.5 - parent: 2 - uid: 11613 components: - type: Transform @@ -100941,23 +110363,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 - - uid: 11620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-37.5 - parent: 2 - - uid: 11621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-39.5 - parent: 2 - - uid: 11622 - components: - - type: Transform - pos: 18.5,-35.5 - parent: 2 - uid: 11624 components: - type: Transform @@ -100970,12 +110375,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-32.5 parent: 2 - - uid: 11628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-25.5 - parent: 2 - uid: 11630 components: - type: Transform @@ -101063,11 +110462,6 @@ entities: - type: Transform pos: -14.5,-37.5 parent: 2 - - uid: 11933 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 2 - uid: 11944 components: - type: Transform @@ -101091,47 +110485,18 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-4.5 parent: 2 - - uid: 11951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - uid: 11954 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 2 - - uid: 11963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,17.5 - parent: 2 - uid: 11964 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,10.5 parent: 2 - - uid: 11965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,4.5 - parent: 2 - - uid: 11967 - components: - - type: Transform - pos: 22.5,-2.5 - parent: 2 - - uid: 11968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 2 - uid: 12078 components: - type: Transform @@ -101144,120 +110509,26 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-24.5 parent: 2 + - uid: 12106 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 - uid: 12107 components: - type: Transform pos: -21.5,-18.5 parent: 2 - - uid: 12109 - components: - - type: Transform - pos: -28.5,-25.5 - parent: 2 - - uid: 12110 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 2 - - uid: 12385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,1.5 - parent: 2 - uid: 12541 components: - type: Transform pos: -25.5,17.5 parent: 2 - - uid: 12574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-52.5 - parent: 2 - - uid: 12873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 2 - - uid: 12875 + - uid: 12803 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-38.5 - parent: 2 - - uid: 12876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-31.5 - parent: 2 - - uid: 12885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-65.5 - parent: 2 - - type: PointLight - energy: 0.5 - - uid: 12967 - components: - - type: Transform - pos: -27.5,-40.5 - parent: 2 - - uid: 12968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-48.5 - parent: 2 - - uid: 12970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-58.5 - parent: 2 - - uid: 12971 - components: - - type: Transform - pos: -33.5,-53.5 - parent: 2 - - uid: 12973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-59.5 - parent: 2 - - type: PointLight - energy: 0.5 - - uid: 12978 - components: - - type: Transform - pos: -39.5,-45.5 - parent: 2 - - uid: 12984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-43.5 - parent: 2 - - uid: 12986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-43.5 - parent: 2 - - uid: 12996 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 2 - - uid: 13007 - components: - - type: Transform - pos: -26.5,-33.5 + pos: 1.5,-87.5 parent: 2 - uid: 13008 components: @@ -101265,6 +110536,41 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-29.5 parent: 2 + - uid: 13138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-11.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 2 - uid: 14166 components: - type: Transform @@ -101289,17 +110595,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-28.5 parent: 2 - - uid: 14404 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 2 - - uid: 14405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-19.5 - parent: 2 - uid: 14434 components: - type: Transform @@ -101317,23 +110612,23 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-30.5 parent: 2 - - uid: 15411 + - uid: 15037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-45.5 + parent: 2 + - uid: 15230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 15249 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 2 - - uid: 15416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 2 - - uid: 15666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-45.5 + pos: 33.5,-6.5 parent: 2 - uid: 15667 components: @@ -101341,35 +110636,17 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 - - uid: 15674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 2 - - uid: 15683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 2 - uid: 15684 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-22.5 parent: 2 - - uid: 15685 + - uid: 16061 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 2 - - uid: 16008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,38.5 + pos: 10.5,-2.5 parent: 2 - uid: 16478 components: @@ -101411,6 +110688,12 @@ entities: - type: Transform pos: -54.5,-11.5 parent: 2 + - uid: 16956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 2 - uid: 17324 components: - type: Transform @@ -101422,12 +110705,6 @@ entities: - type: Transform pos: 15.5,25.5 parent: 2 - - uid: 17488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 2 - uid: 17489 components: - type: Transform @@ -101483,6 +110760,24 @@ entities: - type: Transform pos: 0.5,26.5 parent: 2 + - uid: 17807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,21.5 + parent: 2 + - uid: 18403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,19.5 + parent: 2 - uid: 18883 components: - type: Transform @@ -101494,47 +110789,23 @@ entities: - type: Transform pos: -10.5,-17.5 parent: 2 - - uid: 18885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-19.5 - parent: 2 - uid: 18886 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-19.5 parent: 2 - - uid: 18887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-23.5 - parent: 2 - - uid: 18888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-15.5 - parent: 2 - - uid: 18890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 2 - uid: 18903 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 - - uid: 19002 + - uid: 18963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-16.5 + rot: 3.141592653589793 rad + pos: 24.5,21.5 parent: 2 - uid: 19005 components: @@ -101542,19 +110813,276 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-4.5 parent: 2 -- proto: PoweredlightLED - entities: - - uid: 1906 + - uid: 19154 components: - type: Transform - pos: -52.5,-27.5 + rot: 3.141592653589793 rad + pos: 0.5,-84.5 parent: 2 - - uid: 8036 + - uid: 19234 + components: + - type: Transform + pos: 8.5,-87.5 + parent: 2 + - uid: 20501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 2 + - uid: 21137 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-33.5 + pos: 11.5,-52.5 parent: 2 + - uid: 21141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-52.5 + parent: 2 + - uid: 21259 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 21262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-32.5 + parent: 2 + - uid: 21263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 2 + - uid: 21264 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 21265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 + - uid: 21266 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 21267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-33.5 + parent: 2 + - uid: 21268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 2 + - uid: 21269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-24.5 + parent: 2 + - uid: 21270 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 21278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-28.5 + parent: 2 + - uid: 21279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 2 + - uid: 21280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-35.5 + parent: 2 + - uid: 21281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-44.5 + parent: 2 + - uid: 21283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-32.5 + parent: 2 + - uid: 21284 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 2 + - uid: 21285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-45.5 + parent: 2 + - uid: 21288 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 21289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-38.5 + parent: 2 + - uid: 21290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-23.5 + parent: 2 + - uid: 21291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 2 + - uid: 21292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 2 + - uid: 21293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 2 + - uid: 21294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-28.5 + parent: 2 + - uid: 21295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-28.5 + parent: 2 + - uid: 21302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-38.5 + parent: 2 + - uid: 21305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-37.5 + parent: 2 + - uid: 21306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-24.5 + parent: 2 + - uid: 21319 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 21964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - uid: 22006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - uid: 22133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,17.5 + parent: 2 + - uid: 22380 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 22525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-44.5 + parent: 2 + - uid: 22560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-68.5 + parent: 2 + - uid: 22564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-59.5 + parent: 2 + - uid: 22612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 2 + - uid: 22643 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 22649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + - uid: 22650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 21609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 +- proto: PoweredlightLED + entities: - uid: 8479 components: - type: Transform @@ -101567,53 +111095,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-28.5 parent: 2 - - uid: 12900 - components: - - type: Transform - pos: -39.5,-29.5 - parent: 2 - - uid: 12975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-41.5 - parent: 2 - - uid: 12982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-42.5 - parent: 2 - - uid: 12991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-33.5 - parent: 2 - - uid: 12992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 2 - - uid: 12993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 2 - - uid: 15706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-26.5 - parent: 2 - - uid: 15707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-26.5 - parent: 2 - proto: PoweredLightPostSmall entities: - uid: 17113 @@ -101658,6 +111139,12 @@ entities: parent: 2 - proto: PoweredlightSodium entities: + - uid: 1665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 2 - uid: 5587 components: - type: Transform @@ -101675,17 +111162,11 @@ entities: - type: Transform pos: -64.5,-19.5 parent: 2 - - uid: 10722 + - uid: 12821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-55.5 - parent: 2 - - uid: 12974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-62.5 + rot: 1.5707963267948966 rad + pos: -4.5,-95.5 parent: 2 - uid: 13660 components: @@ -101710,11 +111191,23 @@ entities: rot: 3.141592653589793 rad pos: -71.5,-6.5 parent: 2 - - uid: 17487 + - uid: 17302 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,27.5 + pos: 50.5,23.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,24.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-95.5 parent: 2 - uid: 20115 components: @@ -101722,62 +111215,103 @@ entities: rot: 3.141592653589793 rad pos: -64.5,-5.5 parent: 2 + - uid: 21274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 2 + - uid: 21594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-59.5 + parent: 2 + - uid: 21620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-56.5 + parent: 2 + - uid: 21896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 2 - proto: PoweredSmallLight entities: + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-56.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 2 - uid: 391 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-3.5 parent: 2 - - uid: 1106 + - uid: 481 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,4.5 + pos: -43.5,-53.5 parent: 2 - - uid: 1321 + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-43.5 + parent: 2 + - uid: 2310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-58.5 + pos: 8.5,-15.5 parent: 2 - - uid: 2319 + - uid: 2826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 + rot: -1.5707963267948966 rad + pos: -32.5,-2.5 parent: 2 - uid: 2944 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 3287 + - uid: 3010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-9.5 + rot: 3.141592653589793 rad + pos: -40.5,-57.5 parent: 2 - - type: PointLight - color: '#FFA54FFF' - uid: 3362 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,1.5 parent: 2 - - uid: 3702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 2 - - uid: 3717 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 2 - uid: 3718 components: - type: Transform @@ -101792,20 +111326,23 @@ entities: - type: PointLight softness: 1.5 energy: 0.5 - - uid: 3954 + - uid: 4010 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-42.5 + pos: -37.5,-55.5 parent: 2 - - uid: 3984 + - uid: 4508 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-9.5 + pos: 5.5,-57.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: 18.5,8.5 parent: 2 - - type: PointLight - color: '#FFA54FFF' - uid: 4643 components: - type: Transform @@ -101823,37 +111360,51 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-33.5 parent: 2 - - uid: 4722 + - uid: 4693 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-45.5 + pos: 22.5,-43.5 parent: 2 - - type: PointLight - color: '#FFA54FFF' - - uid: 4769 + - uid: 4816 components: - type: Transform - pos: -32.5,-43.5 + rot: 3.141592653589793 rad + pos: -31.5,-61.5 parent: 2 - - type: PointLight - color: '#FFA54FFF' - uid: 4819 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,29.5 parent: 2 + - uid: 4825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-52.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-55.5 + parent: 2 - uid: 4975 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 5142 + - uid: 5060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,5.5 + pos: 11.5,27.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: 7.5,-73.5 parent: 2 - uid: 5330 components: @@ -101873,20 +111424,29 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-44.5 parent: 2 + - uid: 6394 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-59.5 + parent: 2 - uid: 6483 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-51.5 parent: 2 - - uid: 6877 + - uid: 6537 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,2.5 + pos: 14.5,-63.5 parent: 2 - - type: PointLight - energy: 0.5 - uid: 6943 components: - type: Transform @@ -101898,22 +111458,17 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,11.5 parent: 2 - - uid: 7630 - components: - - type: Transform - pos: 11.5,28.5 - parent: 2 - uid: 7794 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-14.5 parent: 2 - - uid: 7802 + - uid: 7923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 + rot: 3.141592653589793 rad + pos: -54.5,-23.5 parent: 2 - uid: 7939 components: @@ -101943,18 +111498,24 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-32.5 parent: 2 + - uid: 8417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-53.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-53.5 + parent: 2 - uid: 8427 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-36.5 parent: 2 - - uid: 8851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,10.5 - parent: 2 - uid: 8859 components: - type: Transform @@ -101973,39 +111534,34 @@ entities: rot: 3.141592653589793 rad pos: 43.5,8.5 parent: 2 + - uid: 9137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 - uid: 9270 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-51.5 parent: 2 - - uid: 9533 + - uid: 9510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,0.5 - parent: 2 - - uid: 9534 - components: - - type: Transform - pos: 28.5,4.5 - parent: 2 - - uid: 9594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-7.5 + rot: 3.141592653589793 rad + pos: 52.5,-31.5 parent: 2 - uid: 9648 components: - type: Transform pos: 53.5,-16.5 parent: 2 - - uid: 9735 + - uid: 9672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,11.5 + rot: 1.5707963267948966 rad + pos: 23.5,14.5 parent: 2 - uid: 9954 components: @@ -102024,11 +111580,69 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-54.5 parent: 2 + - uid: 10171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,10.5 + parent: 2 - uid: 10383 components: - type: Transform pos: -23.5,-55.5 parent: 2 + - uid: 10606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-78.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-14.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-50.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,14.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: -4.5,-73.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 11234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-57.5 + parent: 2 - uid: 11442 components: - type: Transform @@ -102040,11 +111654,11 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-35.5 parent: 2 - - uid: 11460 + - uid: 11473 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-45.5 + pos: -30.5,-7.5 parent: 2 - uid: 11545 components: @@ -102058,17 +111672,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-46.5 parent: 2 - - uid: 11572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 2 - - uid: 11575 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 2 - uid: 11583 components: - type: Transform @@ -102121,12 +111724,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-32.5 parent: 2 - - uid: 11788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 2 - uid: 11790 components: - type: Transform @@ -102165,16 +111762,6 @@ entities: - type: Transform pos: -8.5,2.5 parent: 2 - - uid: 11935 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 2 - - uid: 11937 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - uid: 11955 components: - type: Transform @@ -102190,40 +111777,33 @@ entities: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 12371 + - uid: 12282 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 12310 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-52.5 + pos: 7.5,-24.5 parent: 2 - - uid: 12390 - components: - - type: Transform - pos: 30.5,28.5 - parent: 2 - - uid: 12767 + - uid: 12631 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-38.5 + pos: -41.5,-53.5 parent: 2 - - uid: 12870 + - uid: 12716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-37.5 + pos: 12.5,-1.5 parent: 2 - uid: 12881 components: - type: Transform pos: -42.5,-5.5 parent: 2 - - uid: 12979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-46.5 - parent: 2 - uid: 13001 components: - type: Transform @@ -102248,18 +111828,51 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-49.5 parent: 2 + - uid: 13139 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-68.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-78.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: -53.5,-21.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 13399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-33.5 + parent: 2 - uid: 13414 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,19.5 parent: 2 - - uid: 13695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-19.5 - parent: 2 - uid: 13860 components: - type: Transform @@ -102272,10 +111885,11 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 - - uid: 13892 + - uid: 13863 components: - type: Transform - pos: 16.5,-55.5 + rot: 3.141592653589793 rad + pos: 24.5,-14.5 parent: 2 - uid: 13896 components: @@ -102306,18 +111920,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-22.5 parent: 2 - - uid: 14494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-45.5 - parent: 2 - - uid: 14844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 2 - uid: 15099 components: - type: Transform @@ -102336,23 +111938,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-58.5 parent: 2 - - uid: 15217 - components: - - type: Transform - pos: -45.5,-53.5 - parent: 2 - - uid: 15218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-16.5 - parent: 2 - - uid: 15680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 2 - uid: 15682 components: - type: Transform @@ -102376,11 +111961,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-39.5 parent: 2 - - uid: 15702 - components: - - type: Transform - pos: -41.5,-33.5 - parent: 2 - uid: 15703 components: - type: Transform @@ -102389,28 +111969,23 @@ entities: parent: 2 - type: PointLight energy: 0.5 - - uid: 15745 - components: - - type: Transform - pos: 30.5,42.5 - parent: 2 - - uid: 15935 + - uid: 15755 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-43.5 + pos: -46.5,-51.5 parent: 2 - - uid: 16331 + - uid: 16322 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-14.5 + pos: -37.5,-43.5 parent: 2 - - uid: 16334 + - uid: 16327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,10.5 + rot: 1.5707963267948966 rad + pos: -58.5,-58.5 parent: 2 - uid: 16480 components: @@ -102445,23 +112020,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-26.5 parent: 2 - - uid: 16876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 2 - - uid: 17146 - components: - - type: Transform - pos: -20.5,-13.5 - parent: 2 - - uid: 17174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-40.5 - parent: 2 - uid: 17200 components: - type: Transform @@ -102510,17 +112068,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 2 - - uid: 17543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-4.5 - parent: 2 - - uid: 17649 - components: - - type: Transform - pos: 34.5,33.5 - parent: 2 - uid: 17722 components: - type: Transform @@ -102532,17 +112079,11 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-30.5 parent: 2 - - uid: 18007 + - uid: 17949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-53.5 - parent: 2 - - uid: 18514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 + rot: -1.5707963267948966 rad + pos: -0.5,-45.5 parent: 2 - uid: 18906 components: @@ -102550,11 +112091,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,11.5 parent: 2 - - uid: 18997 - components: - - type: Transform - pos: 34.5,42.5 - parent: 2 - uid: 19284 components: - type: Transform @@ -102567,6 +112103,12 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-61.5 parent: 2 + - uid: 20220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-68.5 + parent: 2 - uid: 20602 components: - type: Transform @@ -102578,11 +112120,156 @@ entities: - type: Transform pos: 50.5,-51.5 parent: 2 - - uid: 20705 + - uid: 21209 + components: + - type: Transform + pos: -41.5,-48.5 + parent: 2 + - uid: 21271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-19.5 + parent: 2 + - uid: 21272 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,4.5 + pos: -34.5,-13.5 + parent: 2 + - uid: 21273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-15.5 + parent: 2 + - uid: 21282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-38.5 + parent: 2 + - uid: 21286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-41.5 + parent: 2 + - uid: 21298 + components: + - type: Transform + pos: -51.5,-29.5 + parent: 2 + - uid: 21299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-22.5 + parent: 2 + - uid: 21301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-23.5 + parent: 2 + - uid: 21307 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 21359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-53.5 + parent: 2 + - uid: 21410 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 21411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 2 + - uid: 21633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-58.5 + parent: 2 + - uid: 21680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,29.5 + parent: 2 + - uid: 21763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,4.5 + parent: 2 + - uid: 21821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - uid: 21836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 2 + - uid: 22020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-4.5 + parent: 2 + - uid: 22374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,17.5 + parent: 2 + - uid: 22462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,18.5 + parent: 2 + - uid: 22538 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - uid: 22545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 2 + - uid: 22561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-80.5 + parent: 2 + - uid: 22562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-80.5 + parent: 2 + - uid: 22611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-11.5 parent: 2 - proto: PoweredSmallLightEmpty entities: @@ -102591,12 +112278,24 @@ entities: - type: Transform pos: 38.5,3.5 parent: 2 + - uid: 9504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 2 - uid: 11452 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,8.5 parent: 2 + - uid: 17421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,12.5 + parent: 2 - proto: PrefilledSyringe entities: - uid: 6049 @@ -102604,213 +112303,6 @@ entities: - type: Transform pos: 41.507294,-9.45423 parent: 2 - - uid: 6327 - components: - - type: Transform - pos: -52.445953,-28.358221 - parent: 2 -- proto: PresentRandom - entities: - - uid: 2702 - components: - - type: Transform - pos: 1.0353602,-44.483185 - parent: 2 - - uid: 16066 - components: - - type: Transform - pos: -8.365779,-40.747547 - parent: 2 - - uid: 20160 - components: - - type: Transform - pos: 8.48614,-55.324482 - parent: 2 - - uid: 20173 - components: - - type: Transform - pos: -9.701384,-40.795204 - parent: 2 - - uid: 20180 - components: - - type: Transform - pos: -19.50937,-36.460606 - parent: 2 - - uid: 20181 - components: - - type: Transform - pos: -30.503675,-37.485226 - parent: 2 - - uid: 20182 - components: - - type: Transform - pos: -32.48774,-26.466976 - parent: 2 - - uid: 20183 - components: - - type: Transform - pos: -44.50385,-24.55849 - parent: 2 - - uid: 20184 - components: - - type: Transform - pos: -41.48093,-35.35964 - parent: 2 - - uid: 20185 - components: - - type: Transform - pos: -36.525757,-58.49134 - parent: 2 - - uid: 20186 - components: - - type: Transform - pos: -17.745596,-53.073235 - parent: 2 - - uid: 20188 - components: - - type: Transform - pos: 5.539477,-34.470036 - parent: 2 - - uid: 20189 - components: - - type: Transform - pos: 5.539477,-30.540796 - parent: 2 - - uid: 20190 - components: - - type: Transform - pos: 5.5156274,-28.503466 - parent: 2 - - uid: 20191 - components: - - type: Transform - pos: 0.47468758,-33.572815 - parent: 2 - - uid: 20192 - components: - - type: Transform - pos: -5.5752964,-26.526909 - parent: 2 - - uid: 20193 - components: - - type: Transform - pos: -6.5054507,-13.47634 - parent: 2 - - uid: 20194 - components: - - type: Transform - pos: -20.505522,-5.508332 - parent: 2 - - uid: 20195 - components: - - type: Transform - pos: -26.040714,11.067827 - parent: 2 - - uid: 20196 - components: - - type: Transform - pos: -8.497291,18.500269 - parent: 2 - - uid: 20197 - components: - - type: Transform - pos: 1.3926457,19.470612 - parent: 2 - - uid: 20198 - components: - - type: Transform - pos: 7.5340443,23.521446 - parent: 2 - - uid: 20199 - components: - - type: Transform - pos: 27.550629,3.583963 - parent: 2 - - uid: 20200 - components: - - type: Transform - pos: 9.5775585,4.5612216 - parent: 2 - - uid: 20201 - components: - - type: Transform - pos: 10.460012,4.573136 - parent: 2 - - uid: 20202 - components: - - type: Transform - pos: 10.460012,5.454788 - parent: 2 - - uid: 20203 - components: - - type: Transform - pos: 19.496592,12.52666 - parent: 2 - - uid: 20204 - components: - - type: Transform - pos: 32.562187,42.49896 - parent: 2 - - uid: 20205 - components: - - type: Transform - pos: 47.519917,9.484293 - parent: 2 - - uid: 20206 - components: - - type: Transform - pos: 49.450848,-21.526688 - parent: 2 - - uid: 20207 - components: - - type: Transform - pos: 45.498848,-39.60184 - parent: 2 - - uid: 20208 - components: - - type: Transform - pos: 54.473816,-38.607082 - parent: 2 - - uid: 20209 - components: - - type: Transform - pos: 45.457485,-58.459232 - parent: 2 - - uid: 20210 - components: - - type: Transform - pos: 59.46425,-56.47981 - parent: 2 - - uid: 20211 - components: - - type: Transform - pos: 18.49242,-58.580788 - parent: 2 - - uid: 20212 - components: - - type: Transform - pos: -13.50799,-45.47591 - parent: 2 - - uid: 20213 - components: - - type: Transform - pos: 34.499878,-42.452095 - parent: 2 - - uid: 20214 - components: - - type: Transform - pos: 29.443993,-34.51149 - parent: 2 - - uid: 20215 - components: - - type: Transform - pos: 38.52804,-28.484364 - parent: 2 - - uid: 20216 - components: - - type: Transform - pos: 37.504032,-4.4606795 - parent: 2 - proto: Protolathe entities: - uid: 4232 @@ -102820,54 +112312,17 @@ entities: parent: 2 - proto: ProtolatheMachineCircuitboard entities: - - uid: 15937 + - uid: 8045 components: - type: Transform - pos: 12.518505,-17.379326 + pos: 9.530897,-14.358557 parent: 2 - proto: PsychBed entities: - - uid: 3939 + - uid: 15246 components: - type: Transform - pos: -32.5,-46.5 - parent: 2 -- proto: PuddleTomato - entities: - - uid: 1113 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 2 - - uid: 2682 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 2757 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 2 - - uid: 2763 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 2 - - uid: 18077 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 2 - - uid: 18269 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 2 - - uid: 18303 - components: - - type: Transform - pos: 3.5,-16.5 + pos: -36.5,-55.5 parent: 2 - proto: PuddleWatermelon entities: @@ -102878,11 +112333,6 @@ entities: parent: 2 - proto: Rack entities: - - uid: 73 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - uid: 124 components: - type: Transform @@ -102894,16 +112344,16 @@ entities: - type: Transform pos: 46.5,-36.5 parent: 2 - - uid: 294 - components: - - type: Transform - pos: 37.5,9.5 - parent: 2 - uid: 469 components: - type: Transform pos: -24.5,13.5 parent: 2 + - uid: 770 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 - uid: 824 components: - type: Transform @@ -102914,17 +112364,6 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 1223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 2 - - uid: 1655 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 2 - uid: 1799 components: - type: Transform @@ -102948,10 +112387,11 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 - - uid: 2056 + - uid: 2033 components: - type: Transform - pos: -5.5,-10.5 + rot: 3.141592653589793 rad + pos: -53.5,-50.5 parent: 2 - uid: 2066 components: @@ -102959,27 +112399,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-46.5 parent: 2 - - uid: 2084 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 2 - - uid: 2085 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 2249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 2 - - uid: 2300 - components: - - type: Transform - pos: 23.5,5.5 - parent: 2 - uid: 2312 components: - type: Transform @@ -102991,29 +112410,34 @@ entities: - type: Transform pos: -23.5,15.5 parent: 2 + - uid: 2504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-45.5 + parent: 2 - uid: 2681 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-41.5 parent: 2 - - uid: 2790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-17.5 - parent: 2 - uid: 2862 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,12.5 parent: 2 - - uid: 2912 + - uid: 2920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-16.5 + pos: 6.5,-16.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,25.5 parent: 2 - uid: 3242 components: @@ -103050,6 +112474,18 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-35.5 parent: 2 + - uid: 3720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-78.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 2 - uid: 3785 components: - type: Transform @@ -103062,16 +112498,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 - - uid: 3794 - components: - - type: Transform - pos: 6.5,-45.5 - parent: 2 - - uid: 3805 - components: - - type: Transform - pos: 6.5,-39.5 - parent: 2 - uid: 3859 components: - type: Transform @@ -103087,15 +112513,15 @@ entities: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 4149 + - uid: 4069 components: - type: Transform - pos: -26.5,-18.5 + pos: -5.5,-10.5 parent: 2 - - uid: 4156 + - uid: 4183 components: - type: Transform - pos: 1.5,-14.5 + pos: 0.5,-57.5 parent: 2 - uid: 4188 components: @@ -103114,39 +112540,30 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-42.5 parent: 2 - - uid: 4579 + - uid: 4604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-32.5 + pos: -53.5,-55.5 parent: 2 - - uid: 4673 + - uid: 4766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-22.5 + pos: -1.5,-55.5 parent: 2 - - uid: 4684 + - uid: 4864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-22.5 + pos: 0.5,-55.5 parent: 2 - - uid: 4971 + - uid: 5134 components: - type: Transform - pos: -32.5,-20.5 + pos: -6.5,-61.5 parent: 2 - - uid: 5017 + - uid: 5202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-25.5 - parent: 2 - - uid: 5081 - components: - - type: Transform - pos: 1.5,-11.5 + pos: 12.5,-64.5 parent: 2 - uid: 5340 components: @@ -103158,11 +112575,11 @@ entities: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 5578 + - uid: 5586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-45.5 + rot: 1.5707963267948966 rad + pos: -47.5,-38.5 parent: 2 - uid: 5651 components: @@ -103185,12 +112602,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-53.5 parent: 2 - - uid: 5745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-16.5 - parent: 2 - uid: 5783 components: - type: Transform @@ -103202,23 +112613,12 @@ entities: - type: Transform pos: 21.5,-50.5 parent: 2 - - uid: 6174 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - uid: 6200 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 - - uid: 6208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 2 - uid: 6211 components: - type: Transform @@ -103230,12 +112630,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 2 - - uid: 6408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-21.5 - parent: 2 - uid: 6700 components: - type: Transform @@ -103251,10 +112645,15 @@ entities: - type: Transform pos: 41.5,-36.5 parent: 2 - - uid: 6879 + - uid: 6868 components: - type: Transform - pos: 5.5,-14.5 + pos: 13.5,-54.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: -48.5,-49.5 parent: 2 - uid: 7306 components: @@ -103282,25 +112681,30 @@ entities: - type: Transform pos: -11.5,-26.5 parent: 2 - - uid: 7670 + - uid: 8159 components: - type: Transform - pos: 29.5,19.5 + pos: -13.5,-96.5 parent: 2 - - uid: 8193 + - uid: 8160 components: - type: Transform - pos: -52.5,-43.5 + pos: -14.5,-96.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: -19.5,-16.5 parent: 2 - uid: 8331 components: - type: Transform pos: 42.5,-29.5 parent: 2 - - uid: 8380 + - uid: 8453 components: - type: Transform - pos: -38.5,-55.5 + pos: -20.5,-16.5 parent: 2 - uid: 8514 components: @@ -103314,10 +112718,11 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 - - uid: 8677 + - uid: 8574 components: - type: Transform - pos: -22.5,17.5 + rot: 1.5707963267948966 rad + pos: 26.5,-0.5 parent: 2 - uid: 8803 components: @@ -103335,64 +112740,180 @@ entities: - type: Transform pos: 34.5,-53.5 parent: 2 - - uid: 9417 + - uid: 9255 components: - type: Transform - pos: 29.5,-0.5 + rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + pos: 10.5,-14.5 parent: 2 - uid: 10022 components: - type: Transform pos: 33.5,-53.5 parent: 2 - - uid: 10432 + - uid: 10088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-55.5 + rot: -1.5707963267948966 rad + pos: 35.5,-6.5 parent: 2 - - uid: 10710 + - uid: 10115 components: - type: Transform - pos: -43.5,-51.5 + pos: 3.5,-16.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-49.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + pos: -52.5,-55.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: -39.5,-19.5 parent: 2 - uid: 11066 components: - type: Transform pos: -23.5,19.5 parent: 2 - - uid: 11254 + - uid: 11079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-51.5 + rot: -1.5707963267948966 rad + pos: 23.5,13.5 parent: 2 - - uid: 11973 + - uid: 11224 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,14.5 + pos: -33.5,-3.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-32.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-34.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-38.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-18.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + pos: -29.5,-21.5 parent: 2 - uid: 12372 components: - type: Transform pos: 19.5,-58.5 parent: 2 - - uid: 12597 + - uid: 12545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-52.5 + pos: 19.5,-6.5 parent: 2 - - uid: 12605 + - uid: 12675 components: - type: Transform - pos: -28.5,-59.5 + pos: -41.5,-39.5 parent: 2 - - uid: 12721 + - uid: 12743 components: - type: Transform - pos: 13.5,-55.5 + pos: 2.5,-93.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: -55.5,-31.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: -54.5,-31.5 parent: 2 - uid: 12995 components: @@ -103404,16 +112925,20 @@ entities: - type: Transform pos: -5.5,-21.5 parent: 2 - - uid: 13207 + - uid: 13288 components: - type: Transform - pos: 8.5,4.5 + pos: 0.5,-93.5 parent: 2 - - uid: 13341 + - uid: 13291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,26.5 + pos: 6.5,-58.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: -32.5,-18.5 parent: 2 - uid: 13816 components: @@ -103425,10 +112950,10 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 14083 + - uid: 14188 components: - type: Transform - pos: -34.5,-41.5 + pos: -40.5,-43.5 parent: 2 - uid: 14222 components: @@ -103436,45 +112961,57 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-27.5 parent: 2 - - uid: 14344 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 2 - - uid: 14347 - components: - - type: Transform - pos: 13.5,-56.5 - parent: 2 - uid: 14436 components: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 14880 + - uid: 14760 components: - type: Transform - pos: 10.5,-19.5 + pos: -50.5,-36.5 + parent: 2 + - uid: 15187 + components: + - type: Transform + pos: 13.5,-53.5 parent: 2 - uid: 15215 components: - type: Transform pos: -4.5,-30.5 parent: 2 - - uid: 15835 + - uid: 15242 components: - type: Transform - pos: 19.5,-13.5 + pos: -48.5,-50.5 parent: 2 - - uid: 15852 + - uid: 15243 components: - type: Transform - pos: 20.5,-13.5 + pos: -50.5,-47.5 parent: 2 - - uid: 15910 + - uid: 15288 components: - type: Transform - pos: 12.5,-19.5 + pos: -45.5,-50.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-46.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-78.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: -40.5,-50.5 parent: 2 - uid: 15917 components: @@ -103482,49 +113019,59 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-8.5 parent: 2 - - uid: 16007 + - uid: 15925 components: - type: Transform - pos: 6.5,-41.5 + rot: 3.141592653589793 rad + pos: -58.5,-58.5 parent: 2 - uid: 16012 components: - type: Transform pos: 28.5,-48.5 parent: 2 + - uid: 16095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-58.5 + parent: 2 - uid: 16450 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 + - uid: 16708 + components: + - type: Transform + pos: 9.5,-95.5 + parent: 2 - uid: 16759 components: - type: Transform pos: -52.5,-13.5 parent: 2 + - uid: 16931 + components: + - type: Transform + pos: -45.5,-54.5 + parent: 2 - uid: 17310 components: - type: Transform pos: 42.5,-61.5 parent: 2 + - uid: 17487 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 - uid: 17547 components: - type: Transform pos: 48.5,-61.5 parent: 2 - - uid: 17863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,3.5 - parent: 2 - - uid: 17864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 2 - uid: 18076 components: - type: Transform @@ -103567,10 +113114,10 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,15.5 parent: 2 - - uid: 18862 + - uid: 19227 components: - type: Transform - pos: -31.5,-57.5 + pos: 11.5,-91.5 parent: 2 - uid: 19278 components: @@ -103603,17 +113150,6 @@ entities: - type: Transform pos: 44.5,-50.5 parent: 2 - - uid: 20513 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - uid: 20674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,11.5 - parent: 2 - uid: 20688 components: - type: Transform @@ -103624,6 +113160,85 @@ entities: - type: Transform pos: -10.5,-13.5 parent: 2 + - uid: 20756 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 20757 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 20775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-40.5 + parent: 2 + - uid: 20784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 2 + - uid: 20794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-40.5 + parent: 2 + - uid: 20896 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 2 + - uid: 21624 + components: + - type: Transform + pos: -53.5,-57.5 + parent: 2 + - uid: 21890 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 21919 + components: + - type: Transform + pos: 59.5,-56.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 22001 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 22091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - uid: 22458 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 22459 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 22648 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 - proto: RadioHandheld entities: - uid: 3964 @@ -103631,21 +113246,21 @@ entities: - type: Transform pos: -22.659456,-18.314274 parent: 2 - - uid: 4926 - components: - - type: Transform - pos: -28.642363,-60.916378 - parent: 2 - - uid: 4946 - components: - - type: Transform - pos: -28.308863,-60.801716 - parent: 2 - uid: 13294 components: - type: Transform pos: -22.357222,-18.376818 parent: 2 + - uid: 22045 + components: + - type: Transform + pos: 28.35513,23.62658 + parent: 2 + - uid: 22046 + components: + - type: Transform + pos: 28.58441,23.772514 + parent: 2 - proto: RadioHandheldSecurity entities: - uid: 2640 @@ -103660,10 +113275,15 @@ entities: parent: 2 - proto: RagItem entities: - - uid: 3725 + - uid: 15855 components: - type: Transform - pos: -1.3852944,-45.32798 + pos: -0.66263175,-45.283024 + parent: 2 + - uid: 20693 + components: + - type: Transform + pos: 20.529516,-6.291148 parent: 2 - proto: Railing entities: @@ -103741,11 +113361,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-39.5 parent: 2 - - uid: 3549 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 2 - uid: 3593 components: - type: Transform @@ -103757,6 +113372,24 @@ entities: - type: Transform pos: -2.5,-39.5 parent: 2 + - uid: 3794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-53.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-50.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 2 - uid: 5074 components: - type: Transform @@ -103792,15 +113425,23 @@ entities: - type: Transform pos: -19.5,-52.5 parent: 2 - - uid: 6686 + - uid: 6323 components: - type: Transform - pos: 15.5,-4.5 + rot: 3.141592653589793 rad + pos: 7.5,-50.5 parent: 2 - - uid: 7056 + - uid: 6432 components: - type: Transform - pos: 16.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-42.5 parent: 2 - uid: 7377 components: @@ -103814,23 +113455,123 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,10.5 parent: 2 - - uid: 7437 + - uid: 7660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-48.5 + rot: 3.141592653589793 rad + pos: -3.5,-50.5 parent: 2 - - uid: 8103 + - uid: 7838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-46.5 + rot: 3.141592653589793 rad + pos: 6.5,-50.5 parent: 2 - - uid: 8104 + - uid: 8136 + components: + - type: Transform + pos: -13.5,-96.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + pos: -12.5,-96.5 + parent: 2 + - uid: 8138 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-45.5 + pos: -14.5,-95.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-94.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-95.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-95.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-94.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-93.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-92.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-91.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-99.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-100.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-101.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-102.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-90.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-90.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-90.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-90.5 parent: 2 - uid: 8762 components: @@ -103838,6 +113579,12 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,13.5 parent: 2 + - uid: 8778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 - uid: 8828 components: - type: Transform @@ -103849,11 +113596,41 @@ entities: - type: Transform pos: -14.5,-51.5 parent: 2 + - uid: 9265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-52.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-53.5 + parent: 2 + - uid: 9308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 2 - uid: 9619 components: - type: Transform pos: -20.5,-52.5 parent: 2 + - uid: 9629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 - uid: 9787 components: - type: Transform @@ -103865,28 +113642,118 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-52.5 parent: 2 - - uid: 9948 - components: - - type: Transform - pos: 13.5,-41.5 - parent: 2 - - uid: 9949 + - uid: 9841 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-40.5 + pos: 17.5,-1.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 2 + - uid: 10525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-42.5 parent: 2 - uid: 11717 components: - type: Transform pos: -3.5,-39.5 parent: 2 + - uid: 11896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-51.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 2 - uid: 13193 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,30.5 parent: 2 + - uid: 13400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-52.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-46.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-44.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-43.5 + parent: 2 - uid: 14225 components: - type: Transform @@ -103916,6 +113783,12 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,17.5 parent: 2 + - uid: 15029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-50.5 + parent: 2 - uid: 15655 components: - type: Transform @@ -103928,6 +113801,18 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 + - uid: 16015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-51.5 + parent: 2 + - uid: 16042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 2 - uid: 18054 components: - type: Transform @@ -103958,11 +113843,23 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,11.5 parent: 2 - - uid: 9884 + - uid: 8135 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-41.5 + pos: -14.5,-96.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,0.5 + parent: 2 + - uid: 10687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 parent: 2 - uid: 14168 components: @@ -103977,6 +113874,12 @@ entities: parent: 2 - proto: RailingCornerSmall entities: + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-39.5 + parent: 2 - uid: 3290 components: - type: Transform @@ -103989,6 +113892,12 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-39.5 parent: 2 + - uid: 5817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-42.5 + parent: 2 - uid: 7089 components: - type: Transform @@ -104000,6 +113909,23 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,11.5 parent: 2 + - uid: 8181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-95.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-90.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: 6.5,-95.5 + parent: 2 - uid: 9585 components: - type: Transform @@ -104012,6 +113938,11 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-51.5 parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 - uid: 13196 components: - type: Transform @@ -104024,12 +113955,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,29.5 parent: 2 - - uid: 15875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 2 - uid: 20714 components: - type: Transform @@ -104044,13 +113969,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-38.5 parent: 2 -- proto: RandomArcade - entities: - - uid: 7613 - components: - - type: Transform - pos: 12.5,-60.5 - parent: 2 - proto: RandomArtifactSpawner entities: - uid: 4547 @@ -104065,11 +113983,6 @@ entities: - type: Transform pos: 38.5,-46.5 parent: 2 - - uid: 9123 - components: - - type: Transform - pos: 24.5,16.5 - parent: 2 - uid: 17456 components: - type: Transform @@ -104082,60 +113995,75 @@ entities: parent: 2 - proto: RandomBoard entities: - - uid: 1593 + - uid: 1106 components: - type: Transform - pos: 12.5,-17.5 + pos: 4.5,-19.5 parent: 2 - - uid: 2168 + - uid: 1108 components: - type: Transform - pos: 12.5,-19.5 + pos: 3.5,-16.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: -53.5,-49.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 7.5,-19.5 parent: 2 - uid: 2592 components: - type: Transform pos: -3.5,-23.5 parent: 2 - - uid: 3395 + - uid: 3113 components: - type: Transform - pos: 12.5,-19.5 + pos: 3.5,-16.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: 3.5,-19.5 parent: 2 - uid: 7429 components: - type: Transform pos: 27.5,-50.5 parent: 2 - - uid: 10251 + - uid: 10114 components: - type: Transform - pos: 11.5,-19.5 - parent: 2 - - uid: 11124 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 12781 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 2 - - uid: 12846 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 2 - - uid: 12847 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 2 - - uid: 12892 - components: - - type: Transform - pos: -43.5,-51.5 + pos: 5.5,-16.5 parent: 2 - uid: 20125 components: @@ -104149,16 +114077,26 @@ entities: - type: Transform pos: 54.5,-39.5 parent: 2 - - uid: 3862 + - uid: 4234 components: - type: Transform - pos: 0.5,-45.5 + pos: 0.5,24.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: -28.5,-59.5 parent: 2 - uid: 8866 components: - type: Transform pos: 49.5,11.5 parent: 2 + - uid: 13721 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 - uid: 18820 components: - type: Transform @@ -104169,22 +114107,27 @@ entities: - type: Transform pos: 46.5,-74.5 parent: 2 -- proto: RandomDrinkGlass - entities: - - uid: 3863 + - uid: 21404 components: - type: Transform - pos: -5.5,-42.5 + pos: -33.5,-20.5 parent: 2 +- proto: RandomDrinkGlass + entities: - uid: 3864 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 3865 + - uid: 14990 components: - type: Transform - pos: -4.5,-45.5 + pos: -3.5,-46.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + pos: -1.5,-46.5 parent: 2 - proto: RandomDrinkSoda entities: @@ -104203,6 +114146,11 @@ entities: - type: Transform pos: 19.5,-49.5 parent: 2 + - uid: 7523 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 - uid: 10990 components: - type: Transform @@ -104215,10 +114163,15 @@ entities: parent: 2 - proto: RandomFoodBakedSingle entities: - - uid: 20220 + - uid: 7905 components: - type: Transform - pos: -6.5,-39.5 + pos: 20.5,-16.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: 20.5,-15.5 parent: 2 - proto: RandomFoodMeal entities: @@ -104227,6 +114180,18 @@ entities: - type: Transform pos: -7.5,-35.5 parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 10183 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 14970 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 - proto: RandomIngredient entities: - uid: 3295 @@ -104256,6 +114221,11 @@ entities: - type: Transform pos: -29.5,16.5 parent: 2 + - uid: 21623 + components: + - type: Transform + pos: -53.5,-57.5 + parent: 2 - proto: RandomPainting entities: - uid: 3268 @@ -104268,6 +114238,11 @@ entities: - type: Transform pos: 15.5,-49.5 parent: 2 + - uid: 3710 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 - uid: 3922 components: - type: Transform @@ -104278,16 +114253,31 @@ entities: - type: Transform pos: 16.5,-41.5 parent: 2 - - uid: 6633 + - uid: 5877 components: - type: Transform - pos: 9.5,7.5 + pos: 20.5,-42.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + pos: -37.5,-50.5 parent: 2 - uid: 9263 components: - type: Transform pos: 12.5,-51.5 parent: 2 + - uid: 9284 + components: + - type: Transform + pos: -37.5,-56.5 + parent: 2 - uid: 9293 components: - type: Transform @@ -104298,6 +114288,11 @@ entities: - type: Transform pos: 13.5,-49.5 parent: 2 + - uid: 22226 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 2 - proto: RandomPosterAny entities: - uid: 593 @@ -104305,6 +114300,16 @@ entities: - type: Transform pos: 41.5,10.5 parent: 2 + - uid: 2149 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 - uid: 6015 components: - type: Transform @@ -104320,36 +114325,45 @@ entities: - type: Transform pos: 16.5,-46.5 parent: 2 - - uid: 6473 + - uid: 6603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-45.5 + pos: 24.5,9.5 parent: 2 - uid: 7975 components: - type: Transform pos: 34.5,-56.5 parent: 2 - - uid: 8527 + - uid: 10481 components: - type: Transform - pos: 17.5,-8.5 + pos: -32.5,-34.5 parent: 2 - - uid: 8538 + - uid: 10493 components: - type: Transform - pos: 4.5,-16.5 + pos: -50.5,-53.5 parent: 2 - - uid: 9568 + - uid: 10503 components: - type: Transform - pos: 15.5,-13.5 + pos: -26.5,-14.5 parent: 2 - - uid: 10737 + - uid: 10512 components: - type: Transform - pos: 18.5,-14.5 + pos: -40.5,-38.5 + parent: 2 + - uid: 10514 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 10608 + components: + - type: Transform + pos: 15.5,-55.5 parent: 2 - uid: 15849 components: @@ -104436,21 +114450,6 @@ entities: - type: Transform pos: 50.5,8.5 parent: 2 - - uid: 16163 - components: - - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 16164 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 16166 - components: - - type: Transform - pos: 23.5,3.5 - parent: 2 - uid: 17020 components: - type: Transform @@ -104486,16 +114485,6 @@ entities: - type: Transform pos: 8.5,27.5 parent: 2 - - uid: 17590 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 17591 - components: - - type: Transform - pos: 16.5,18.5 - parent: 2 - uid: 17592 components: - type: Transform @@ -104511,12 +114500,6 @@ entities: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 18918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-43.5 - parent: 2 - uid: 19870 components: - type: Transform @@ -104537,18 +114520,128 @@ entities: - type: Transform pos: 41.5,-54.5 parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 2992 + - uid: 21672 components: - type: Transform - pos: 9.5,-13.5 + pos: -54.5,-54.5 + parent: 2 + - uid: 22655 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 22656 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 22658 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 22665 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 22666 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 22667 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 22668 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 22669 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 22670 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 22675 + components: + - type: Transform + pos: -48.5,-57.5 + parent: 2 + - uid: 22688 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 22689 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 2 + - uid: 22690 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 22691 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 22692 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - uid: 22693 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 22694 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 22695 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 5583 + components: + - type: Transform + pos: -51.5,-49.5 parent: 2 - uid: 6017 components: - type: Transform pos: 19.5,-51.5 parent: 2 + - uid: 10490 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 - uid: 16147 components: - type: Transform @@ -104583,19 +114676,73 @@ entities: rot: 3.141592653589793 rad pos: -40.5,5.5 parent: 2 -- proto: RandomPosterLegit - entities: - - uid: 1295 + - uid: 22651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,13.5 + pos: 37.5,16.5 parent: 2 + - uid: 22652 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 22653 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 22674 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 2 +- proto: RandomPosterLegit + entities: - uid: 2859 components: - type: Transform pos: -28.5,5.5 parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -49.5,-42.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 - uid: 5677 components: - type: Transform @@ -104611,16 +114758,51 @@ entities: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 8523 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 2 - uid: 9563 components: - type: Transform pos: 34.5,9.5 parent: 2 + - uid: 9614 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 10479 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 10485 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 10502 + components: + - type: Transform + pos: -46.5,-35.5 + parent: 2 + - uid: 10506 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 10508 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 10510 + components: + - type: Transform + pos: -54.5,-20.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 - uid: 11961 components: - type: Transform @@ -104636,10 +114818,15 @@ entities: - type: Transform pos: -18.5,-49.5 parent: 2 - - uid: 12867 + - uid: 14173 components: - type: Transform - pos: -25.5,-44.5 + pos: -30.5,-43.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + pos: -28.5,-52.5 parent: 2 - uid: 14507 components: @@ -104659,18 +114846,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-36.5 parent: 2 - - uid: 16120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-46.5 - parent: 2 - - uid: 16121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-46.5 - parent: 2 - uid: 16123 components: - type: Transform @@ -104681,21 +114856,6 @@ entities: - type: Transform pos: 28.5,-19.5 parent: 2 - - uid: 16127 - components: - - type: Transform - pos: 34.5,21.5 - parent: 2 - - uid: 16128 - components: - - type: Transform - pos: 30.5,35.5 - parent: 2 - - uid: 16129 - components: - - type: Transform - pos: 34.5,43.5 - parent: 2 - uid: 16130 components: - type: Transform @@ -104731,11 +114891,6 @@ entities: - type: Transform pos: 40.5,2.5 parent: 2 - - uid: 16165 - components: - - type: Transform - pos: 22.5,12.5 - parent: 2 - uid: 16974 components: - type: Transform @@ -104762,11 +114917,6 @@ entities: - type: Transform pos: 7.5,21.5 parent: 2 - - uid: 20226 - components: - - type: Transform - pos: 30.5,5.5 - parent: 2 - uid: 20227 components: - type: Transform @@ -104800,42 +114950,166 @@ entities: rot: 3.141592653589793 rad pos: -27.5,18.5 parent: 2 - - uid: 20584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-12.5 - parent: 2 - uid: 20586 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,18.5 parent: 2 - - uid: 20604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-12.5 - parent: 2 - uid: 20607 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-1.5 parent: 2 - - uid: 20626 + - uid: 21260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + - uid: 22654 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 22657 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 22659 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 22660 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 22661 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 22662 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 22663 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 22664 components: - type: Transform pos: 28.5,-12.5 parent: 2 + - uid: 22671 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 22672 + components: + - type: Transform + pos: 20.5,23.5 + parent: 2 + - uid: 22673 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 22676 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 22677 + components: + - type: Transform + pos: -31.5,-78.5 + parent: 2 + - uid: 22678 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 2 + - uid: 22679 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 + - uid: 22680 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 22681 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 22682 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 22683 + components: + - type: Transform + pos: 12.5,-72.5 + parent: 2 + - uid: 22684 + components: + - type: Transform + pos: 12.5,-66.5 + parent: 2 + - uid: 22685 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 22686 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 22687 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 + - uid: 22696 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 22697 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 22699 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 - proto: RandomSnacks entities: - - uid: 20616 + - uid: 12935 + components: + - type: Transform + pos: -59.5,-29.5 + parent: 2 + - uid: 12936 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-2.5 + pos: -37.5,-5.5 parent: 2 - proto: RandomSoap entities: @@ -104849,11 +115123,6 @@ entities: - type: Transform pos: 46.5,-41.5 parent: 2 - - uid: 17051 - components: - - type: Transform - pos: -49.5,-45.5 - parent: 2 - proto: RandomSpawner entities: - uid: 208 @@ -104861,15 +115130,10 @@ entities: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 1092 + - uid: 3221 components: - type: Transform - pos: -50.5,-42.5 - parent: 2 - - uid: 4350 - components: - - type: Transform - pos: 12.5,-13.5 + pos: -29.5,-10.5 parent: 2 - uid: 5315 components: @@ -104881,6 +115145,11 @@ entities: - type: Transform pos: -18.5,-23.5 parent: 2 + - uid: 7001 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 - uid: 7049 components: - type: Transform @@ -104891,31 +115160,16 @@ entities: - type: Transform pos: 15.5,-38.5 parent: 2 - - uid: 7054 + - uid: 7697 components: - type: Transform - pos: 17.5,-36.5 - parent: 2 - - uid: 8325 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 2 - - uid: 8338 - components: - - type: Transform - pos: 25.5,-8.5 + pos: -40.5,3.5 parent: 2 - uid: 8341 components: - type: Transform pos: -8.5,-31.5 parent: 2 - - uid: 8420 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 2 - uid: 8442 components: - type: Transform @@ -104931,6 +115185,11 @@ entities: - type: Transform pos: 28.5,-58.5 parent: 2 + - uid: 9645 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 - uid: 10052 components: - type: Transform @@ -104947,72 +115206,17 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-9.5 parent: 2 - - uid: 11052 - components: - - type: Transform - pos: -32.5,-34.5 - parent: 2 - - uid: 11068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-46.5 - parent: 2 - uid: 11191 components: - type: Transform pos: 30.5,-56.5 parent: 2 - - uid: 11310 - components: - - type: Transform - pos: -34.5,-49.5 - parent: 2 - - uid: 11986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 2 - - uid: 13167 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 2 - - uid: 14399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 2 - - uid: 15485 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 2 - - uid: 15870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-45.5 - parent: 2 - uid: 15871 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-47.5 parent: 2 - - uid: 15885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-51.5 - parent: 2 - - uid: 15907 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - uid: 15919 components: - type: Transform @@ -105043,6 +115247,11 @@ entities: - type: Transform pos: 33.5,-57.5 parent: 2 + - uid: 16935 + components: + - type: Transform + pos: -46.5,-51.5 + parent: 2 - uid: 17261 components: - type: Transform @@ -105273,6 +115482,51 @@ entities: - type: Transform pos: -21.5,-7.5 parent: 2 + - uid: 22475 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 22479 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 22481 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 22482 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 22483 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 22484 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 22485 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 22486 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 22487 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 - proto: RandomVending entities: - uid: 3388 @@ -105280,15 +115534,15 @@ entities: - type: Transform pos: -17.5,-25.5 parent: 2 - - uid: 6295 + - uid: 8065 components: - type: Transform - pos: 19.5,-20.5 + pos: 18.5,-20.5 parent: 2 - - uid: 11143 + - uid: 22515 components: - type: Transform - pos: 12.5,-58.5 + pos: -29.5,18.5 parent: 2 - proto: RandomVendingDrinks entities: @@ -105299,10 +115553,10 @@ entities: parent: 2 - proto: RandomVendingSnacks entities: - - uid: 1293 + - uid: 1739 components: - type: Transform - pos: 34.5,24.5 + pos: -35.5,-62.5 parent: 2 - uid: 2604 components: @@ -105352,7 +115606,7 @@ entities: - uid: 20229 components: - type: Transform - pos: -38.29994,-2.4838533 + pos: -36.578762,-2.2497342 parent: 2 - proto: ReagentContainerSugar entities: @@ -105363,52 +115617,139 @@ entities: parent: 2 - proto: Recycler entities: - - uid: 5365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,21.5 - parent: 2 - uid: 18132 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-58.5 parent: 2 + - uid: 21974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 - proto: ReinforcedGirder entities: + - uid: 290 + components: + - type: Transform + pos: -5.5,-86.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -1.5,-86.5 + parent: 2 - uid: 2158 components: - type: Transform pos: 75.5,-43.5 parent: 2 + - uid: 9082 + components: + - type: Transform + pos: -62.5,-37.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-48.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: 9.5,-86.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 11.5,-86.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: -61.5,-39.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + pos: 7.5,-96.5 + parent: 2 + - uid: 17179 + components: + - type: Transform + pos: 5.5,-97.5 + parent: 2 + - uid: 19155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-96.5 + parent: 2 + - uid: 19219 + components: + - type: Transform + pos: 10.5,-100.5 + parent: 2 - uid: 20676 components: - type: Transform pos: -37.5,15.5 parent: 2 + - uid: 22085 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 - proto: ReinforcedPlasmaWindow entities: - - uid: 114 + - uid: 461 components: - type: Transform - pos: 7.5,-8.5 + pos: 9.5,1.5 parent: 2 - - uid: 116 + - uid: 531 components: - type: Transform - pos: 8.5,-8.5 + pos: 3.5,7.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 10.5,1.5 parent: 2 - uid: 1411 components: - type: Transform pos: -7.5,7.5 parent: 2 - - uid: 1412 - components: - - type: Transform - pos: 2.5,6.5 - parent: 2 - uid: 1415 components: - type: Transform @@ -105429,16 +115770,6 @@ entities: - type: Transform pos: -1.5,7.5 parent: 2 - - uid: 1447 - components: - - type: Transform - pos: 3.5,6.5 - parent: 2 - - uid: 1448 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - uid: 1463 components: - type: Transform @@ -105479,25 +115810,10 @@ entities: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 1650 + - uid: 2484 components: - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 1652 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 1669 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 2 - - uid: 1893 - components: - - type: Transform - pos: 6.5,-6.5 + pos: 10.5,5.5 parent: 2 - uid: 4475 components: @@ -105524,6 +115840,76 @@ entities: - type: Transform pos: 41.5,-46.5 parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 - uid: 14625 components: - type: Transform @@ -105546,10 +115932,10 @@ entities: parent: 2 - proto: ReinforcedWindow entities: - - uid: 16 + - uid: 21 components: - type: Transform - pos: -48.5,-31.5 + pos: -31.5,-71.5 parent: 2 - uid: 28 components: @@ -105581,16 +115967,22 @@ entities: - type: Transform pos: -5.5,9.5 parent: 2 - - uid: 136 - components: - - type: Transform - pos: 30.5,31.5 - parent: 2 - uid: 150 components: - type: Transform pos: -22.5,-10.5 parent: 2 + - uid: 181 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,26.5 + parent: 2 - uid: 211 components: - type: Transform @@ -105606,6 +115998,11 @@ entities: - type: Transform pos: -42.5,3.5 parent: 2 + - uid: 244 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 - uid: 247 components: - type: Transform @@ -105616,20 +116013,10 @@ entities: - type: Transform pos: -19.5,-7.5 parent: 2 - - uid: 260 + - uid: 280 components: - type: Transform - pos: -4.5,-50.5 - parent: 2 - - uid: 263 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 2 - - uid: 279 - components: - - type: Transform - pos: 12.5,-6.5 + pos: -27.5,-20.5 parent: 2 - uid: 291 components: @@ -105641,21 +116028,16 @@ entities: - type: Transform pos: -24.5,8.5 parent: 2 - - uid: 299 + - uid: 296 components: - type: Transform - pos: -30.5,-0.5 + pos: -31.5,-76.5 parent: 2 - uid: 332 components: - type: Transform pos: -27.5,-3.5 parent: 2 - - uid: 333 - components: - - type: Transform - pos: -34.5,4.5 - parent: 2 - uid: 367 components: - type: Transform @@ -105671,25 +116053,35 @@ entities: - type: Transform pos: -37.5,1.5 parent: 2 + - uid: 515 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 - uid: 522 components: - type: Transform pos: 33.5,-33.5 parent: 2 + - uid: 574 + components: + - type: Transform + pos: -31.5,-75.5 + parent: 2 - uid: 597 components: - type: Transform - pos: 28.5,14.5 + pos: -50.5,-29.5 parent: 2 - uid: 604 components: - type: Transform pos: 10.5,24.5 parent: 2 - - uid: 616 + - uid: 619 components: - type: Transform - pos: 12.5,-5.5 + pos: 3.5,-84.5 parent: 2 - uid: 640 components: @@ -105721,6 +116113,16 @@ entities: - type: Transform pos: -4.5,19.5 parent: 2 + - uid: 712 + components: + - type: Transform + pos: -31.5,-77.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -36.5,-72.5 + parent: 2 - uid: 742 components: - type: Transform @@ -105751,16 +116153,6 @@ entities: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 907 - components: - - type: Transform - pos: -31.5,-62.5 - parent: 2 - - uid: 946 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 2 - uid: 960 components: - type: Transform @@ -105776,11 +116168,6 @@ entities: - type: Transform pos: -3.5,20.5 parent: 2 - - uid: 982 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - uid: 1036 components: - type: Transform @@ -105811,26 +116198,16 @@ entities: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 1124 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - uid: 1141 components: - type: Transform - pos: -26.5,-16.5 + pos: -55.5,-55.5 parent: 2 - uid: 1142 components: - type: Transform pos: 60.5,-37.5 parent: 2 - - uid: 1152 - components: - - type: Transform - pos: 18.5,22.5 - parent: 2 - uid: 1160 components: - type: Transform @@ -105841,11 +116218,6 @@ entities: - type: Transform pos: -31.5,7.5 parent: 2 - - uid: 1164 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 - uid: 1189 components: - type: Transform @@ -105861,6 +116233,11 @@ entities: - type: Transform pos: 2.5,1.5 parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 - uid: 1375 components: - type: Transform @@ -105886,6 +116263,11 @@ entities: - type: Transform pos: -7.5,1.5 parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 - uid: 1495 components: - type: Transform @@ -105926,15 +116308,20 @@ entities: - type: Transform pos: 3.5,9.5 parent: 2 + - uid: 1518 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 - uid: 1519 components: - type: Transform pos: 41.5,-23.5 parent: 2 - - uid: 1532 + - uid: 1527 components: - type: Transform - pos: -6.5,-64.5 + pos: -20.5,-12.5 parent: 2 - uid: 1547 components: @@ -105986,21 +116373,33 @@ entities: - type: Transform pos: 34.5,-47.5 parent: 2 - - uid: 1676 + - uid: 1654 components: - type: Transform - pos: 6.5,-0.5 + pos: -29.5,-43.5 parent: 2 - - uid: 1725 + - uid: 1664 components: - type: Transform - pos: 30.5,37.5 + pos: -28.5,-14.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,28.5 parent: 2 - uid: 1747 components: - type: Transform pos: 0.5,9.5 parent: 2 + - uid: 1800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 2 - uid: 1832 components: - type: Transform @@ -106011,15 +116410,11 @@ entities: - type: Transform pos: -21.5,-32.5 parent: 2 - - uid: 1886 + - uid: 1891 components: - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 1890 - components: - - type: Transform - pos: -4.5,-11.5 + rot: -1.5707963267948966 rad + pos: -35.5,13.5 parent: 2 - uid: 1900 components: @@ -106031,61 +116426,58 @@ entities: - type: Transform pos: -10.5,-9.5 parent: 2 + - uid: 1916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,27.5 + parent: 2 - uid: 1958 components: - type: Transform pos: -21.5,-33.5 parent: 2 - - uid: 2081 + - uid: 2041 components: - type: Transform - pos: -6.5,-53.5 + pos: -23.5,-12.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: -3.5,-59.5 parent: 2 - uid: 2178 components: - type: Transform pos: -6.5,-22.5 parent: 2 - - uid: 2294 + - uid: 2329 components: - type: Transform - pos: 30.5,32.5 + rot: -1.5707963267948966 rad + pos: 34.5,27.5 parent: 2 - - uid: 2304 + - uid: 2352 components: - type: Transform - pos: 30.5,36.5 + pos: 3.5,-5.5 parent: 2 - - uid: 2306 + - uid: 2397 components: - type: Transform - pos: 30.5,33.5 + pos: -5.5,-57.5 parent: 2 - - uid: 2310 + - uid: 2548 components: - type: Transform - pos: 30.5,38.5 - parent: 2 - - uid: 2333 - components: - - type: Transform - pos: -53.5,-32.5 - parent: 2 - - uid: 2410 - components: - - type: Transform - pos: -2.5,-11.5 + pos: -36.5,-79.5 parent: 2 - uid: 2552 components: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 2583 - components: - - type: Transform - pos: -6.5,-54.5 - parent: 2 - uid: 2600 components: - type: Transform @@ -106101,20 +116493,20 @@ entities: - type: Transform pos: -22.5,30.5 parent: 2 - - uid: 2698 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 2 - uid: 2701 components: - type: Transform pos: -33.5,1.5 parent: 2 - - uid: 2773 + - uid: 2747 components: - type: Transform - pos: -51.5,-35.5 + pos: -36.5,-68.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: -36.5,-73.5 parent: 2 - uid: 2869 components: @@ -106136,10 +116528,15 @@ entities: - type: Transform pos: 38.5,-51.5 parent: 2 - - uid: 2967 + - uid: 2966 components: - type: Transform - pos: -39.5,-35.5 + pos: -30.5,-79.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 9.5,-5.5 parent: 2 - uid: 3051 components: @@ -106156,30 +116553,25 @@ entities: - type: Transform pos: 40.5,-41.5 parent: 2 - - uid: 3097 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 2 - uid: 3102 components: - type: Transform pos: 72.5,-67.5 parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -9.5,-69.5 + parent: 2 - uid: 3147 components: - type: Transform pos: -21.5,31.5 parent: 2 - - uid: 3187 + - uid: 3148 components: - type: Transform - pos: -32.5,-64.5 - parent: 2 - - uid: 3188 - components: - - type: Transform - pos: -48.5,-27.5 + pos: -42.5,-33.5 parent: 2 - uid: 3202 components: @@ -106191,21 +116583,51 @@ entities: - type: Transform pos: -17.5,31.5 parent: 2 + - uid: 3262 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: -44.5,-33.5 + parent: 2 - uid: 3387 components: - type: Transform pos: 65.5,-84.5 parent: 2 - - uid: 3518 + - uid: 3451 components: - type: Transform - pos: -43.5,-19.5 + pos: -36.5,-64.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: -38.5,-30.5 parent: 2 - uid: 3562 components: - type: Transform pos: 60.5,-75.5 parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 - uid: 3605 components: - type: Transform @@ -106216,11 +116638,41 @@ entities: - type: Transform pos: 40.5,-66.5 parent: 2 + - uid: 3725 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: 12.5,-71.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 - uid: 3847 components: - type: Transform pos: -21.5,29.5 parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 12.5,-75.5 + parent: 2 - uid: 3929 components: - type: Transform @@ -106236,15 +116688,20 @@ entities: - type: Transform pos: 75.5,-63.5 parent: 2 + - uid: 4108 + components: + - type: Transform + pos: -30.5,-80.5 + parent: 2 - uid: 4120 components: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 4171 + - uid: 4154 components: - type: Transform - pos: 2.5,-5.5 + pos: 2.5,-58.5 parent: 2 - uid: 4206 components: @@ -106306,25 +116763,41 @@ entities: - type: Transform pos: 30.5,-41.5 parent: 2 + - uid: 4494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,11.5 + parent: 2 - uid: 4513 components: - type: Transform pos: 75.5,-61.5 parent: 2 - - uid: 4670 + - uid: 4577 components: - type: Transform - pos: -37.5,-19.5 + pos: -26.5,-17.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -36.5,-76.5 parent: 2 - uid: 4680 components: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 4719 + - uid: 4683 components: - type: Transform - pos: -27.5,-64.5 + pos: -37.5,-76.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: -35.5,-76.5 parent: 2 - uid: 4724 components: @@ -106341,30 +116814,26 @@ entities: - type: Transform pos: 49.5,-86.5 parent: 2 - - uid: 4764 + - uid: 4741 components: - type: Transform - pos: -34.5,-28.5 + pos: -26.5,-56.5 parent: 2 - - uid: 4781 + - uid: 4745 components: - type: Transform - pos: -41.5,-21.5 + rot: 3.141592653589793 rad + pos: 51.5,20.5 parent: 2 - - uid: 4788 + - uid: 4754 components: - type: Transform - pos: -41.5,-23.5 + pos: -35.5,4.5 parent: 2 - - uid: 4798 + - uid: 4809 components: - type: Transform - pos: -25.5,-27.5 - parent: 2 - - uid: 4799 - components: - - type: Transform - pos: -25.5,-26.5 + pos: -31.5,-47.5 parent: 2 - uid: 4829 components: @@ -106376,25 +116845,25 @@ entities: - type: Transform pos: -60.5,-17.5 parent: 2 - - uid: 4853 + - uid: 4847 components: - type: Transform - pos: -30.5,-32.5 + pos: -33.5,-38.5 parent: 2 - - uid: 4860 + - uid: 4894 components: - type: Transform - pos: -46.5,-22.5 + pos: -31.5,-44.5 parent: 2 - - uid: 4906 + - uid: 4901 components: - type: Transform - pos: -37.5,-28.5 + pos: -26.5,-20.5 parent: 2 - - uid: 4912 + - uid: 4903 components: - type: Transform - pos: 6.5,0.5 + pos: -31.5,-45.5 parent: 2 - uid: 4919 components: @@ -106411,35 +116880,20 @@ entities: - type: Transform pos: -16.5,31.5 parent: 2 - - uid: 4964 + - uid: 4993 components: - type: Transform - pos: -39.5,-19.5 + pos: -36.5,-71.5 parent: 2 - - uid: 4987 + - uid: 4995 components: - type: Transform - pos: 35.5,31.5 + pos: -28.5,-43.5 parent: 2 - - uid: 5011 + - uid: 5036 components: - type: Transform - pos: -38.5,-19.5 - parent: 2 - - uid: 5012 - components: - - type: Transform - pos: -35.5,-19.5 - parent: 2 - - uid: 5013 - components: - - type: Transform - pos: -34.5,-19.5 - parent: 2 - - uid: 5014 - components: - - type: Transform - pos: -33.5,-19.5 + pos: -31.5,-48.5 parent: 2 - uid: 5037 components: @@ -106476,11 +116930,6 @@ entities: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 5129 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 2 - uid: 5132 components: - type: Transform @@ -106506,6 +116955,31 @@ entities: - type: Transform pos: -63.5,-7.5 parent: 2 + - uid: 5208 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: -31.5,-73.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: -31.5,-72.5 + parent: 2 - uid: 5355 components: - type: Transform @@ -106541,30 +117015,22 @@ entities: - type: Transform pos: -31.5,25.5 parent: 2 - - uid: 5525 + - uid: 5490 components: - type: Transform - pos: 25.5,-5.5 + rot: 3.141592653589793 rad + pos: 46.5,24.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,23.5 parent: 2 - uid: 5527 components: - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 5528 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 2 - - uid: 5537 - components: - - type: Transform - pos: 21.5,-5.5 - parent: 2 - - uid: 5543 - components: - - type: Transform - pos: 27.5,-5.5 + pos: -34.5,-3.5 parent: 2 - uid: 5554 components: @@ -106591,6 +117057,11 @@ entities: - type: Transform pos: 28.5,-36.5 parent: 2 + - uid: 5575 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 - uid: 5599 components: - type: Transform @@ -106616,21 +117087,6 @@ entities: - type: Transform pos: 26.5,-56.5 parent: 2 - - uid: 5660 - components: - - type: Transform - pos: -5.5,-50.5 - parent: 2 - - uid: 5665 - components: - - type: Transform - pos: -44.5,-19.5 - parent: 2 - - uid: 5667 - components: - - type: Transform - pos: -46.5,-21.5 - parent: 2 - uid: 5684 components: - type: Transform @@ -106651,150 +117107,107 @@ entities: - type: Transform pos: 45.5,-63.5 parent: 2 - - uid: 5739 + - uid: 5749 components: - type: Transform - pos: -28.5,-32.5 - parent: 2 - - uid: 5791 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 5817 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - - uid: 5826 - components: - - type: Transform - pos: 28.5,28.5 + pos: -25.5,-46.5 parent: 2 - uid: 5837 components: - type: Transform pos: 35.5,-47.5 parent: 2 - - uid: 5842 + - uid: 5844 components: - type: Transform - pos: 6.5,-9.5 + pos: -33.5,-83.5 parent: 2 - - uid: 5850 + - uid: 5863 components: - type: Transform - pos: 35.5,36.5 + pos: 20.5,-17.5 parent: 2 - - uid: 5851 + - uid: 5867 components: - type: Transform - pos: 35.5,32.5 + rot: 3.141592653589793 rad + pos: 50.5,20.5 parent: 2 - - uid: 5853 + - uid: 5871 components: - type: Transform - pos: 35.5,33.5 - parent: 2 - - uid: 5856 - components: - - type: Transform - pos: 35.5,41.5 - parent: 2 - - uid: 5858 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 5880 - components: - - type: Transform - pos: 34.5,36.5 + rot: 3.141592653589793 rad + pos: 49.5,20.5 parent: 2 - uid: 5889 components: - type: Transform pos: -14.5,-18.5 parent: 2 - - uid: 5899 + - uid: 5902 components: - type: Transform - pos: 34.5,28.5 + pos: -1.5,-50.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: 27.5,9.5 parent: 2 - uid: 6083 components: - type: Transform pos: 44.5,-63.5 parent: 2 - - uid: 6119 + - uid: 6117 components: - type: Transform - pos: 32.5,43.5 + pos: 8.5,-50.5 parent: 2 - - uid: 6141 + - uid: 6167 components: - type: Transform - pos: 36.5,36.5 + pos: -33.5,-82.5 parent: 2 - - uid: 6142 + - uid: 6202 components: - type: Transform - pos: 36.5,28.5 + pos: -5.5,-50.5 parent: 2 - - uid: 6144 + - uid: 6220 components: - type: Transform - pos: 35.5,38.5 + pos: 4.5,-50.5 parent: 2 - - uid: 6146 + - uid: 6221 components: - type: Transform - pos: 35.5,28.5 + pos: -33.5,-81.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: 10.5,-5.5 parent: 2 - uid: 6265 components: - type: Transform pos: 41.5,-60.5 parent: 2 - - uid: 6316 + - uid: 6347 components: - type: Transform - pos: -6.5,-65.5 + pos: 4.5,-10.5 parent: 2 - - uid: 6319 + - uid: 6348 components: - type: Transform - pos: -3.5,-55.5 - parent: 2 - - uid: 6324 - components: - - type: Transform - pos: 8.5,-67.5 - parent: 2 - - uid: 6328 - components: - - type: Transform - pos: 13.5,-71.5 - parent: 2 - - uid: 6330 - components: - - type: Transform - pos: 9.5,-71.5 - parent: 2 - - uid: 6332 - components: - - type: Transform - pos: -6.5,-71.5 - parent: 2 - - uid: 6344 - components: - - type: Transform - pos: -5.5,-67.5 - parent: 2 - - uid: 6352 - components: - - type: Transform - pos: -5.5,-62.5 + pos: 7.5,-54.5 parent: 2 - uid: 6381 components: @@ -106806,95 +117219,40 @@ entities: - type: Transform pos: 45.5,0.5 parent: 2 - - uid: 6383 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 2 - uid: 6385 components: - type: Transform - pos: 7.5,-50.5 + pos: 1.5,-82.5 parent: 2 - - uid: 6390 + - uid: 6401 components: - type: Transform - pos: 8.5,-50.5 - parent: 2 - - uid: 6394 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 2 - - uid: 6399 - components: - - type: Transform - pos: 8.5,-62.5 - parent: 2 - - uid: 6418 - components: - - type: Transform - pos: -3.5,-56.5 + pos: -0.5,-83.5 parent: 2 - uid: 6420 components: - type: Transform pos: -19.5,-57.5 parent: 2 - - uid: 6430 + - uid: 6426 components: - type: Transform - pos: 6.5,-54.5 + pos: -9.5,-75.5 parent: 2 - uid: 6431 components: - type: Transform - pos: 1.5,-51.5 - parent: 2 - - uid: 6433 - components: - - type: Transform - pos: 2.5,-51.5 - parent: 2 - - uid: 6439 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 2 - - uid: 6443 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 2 - - uid: 6448 - components: - - type: Transform - pos: 6.5,-56.5 - parent: 2 - - uid: 6453 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 2 - - uid: 6455 - components: - - type: Transform - pos: 0.5,-51.5 + pos: 1.5,-54.5 parent: 2 - uid: 6456 components: - type: Transform - pos: -1.5,-51.5 + pos: 2.5,-82.5 parent: 2 - - uid: 6459 + - uid: 6457 components: - type: Transform - pos: -10.5,-71.5 - parent: 2 - - uid: 6460 - components: - - type: Transform - pos: 4.5,-51.5 + pos: 0.5,-83.5 parent: 2 - uid: 6485 components: @@ -106926,41 +117284,6 @@ entities: - type: Transform pos: -15.5,-57.5 parent: 2 - - uid: 6508 - components: - - type: Transform - pos: 13.5,-69.5 - parent: 2 - - uid: 6510 - components: - - type: Transform - pos: 9.5,-64.5 - parent: 2 - - uid: 6511 - components: - - type: Transform - pos: 9.5,-65.5 - parent: 2 - - uid: 6515 - components: - - type: Transform - pos: -10.5,-66.5 - parent: 2 - - uid: 6516 - components: - - type: Transform - pos: -10.5,-67.5 - parent: 2 - - uid: 6517 - components: - - type: Transform - pos: -10.5,-68.5 - parent: 2 - - uid: 6518 - components: - - type: Transform - pos: -10.5,-69.5 - parent: 2 - uid: 6519 components: - type: Transform @@ -106981,35 +117304,15 @@ entities: - type: Transform pos: -10.5,-60.5 parent: 2 - - uid: 6523 + - uid: 6557 components: - type: Transform - pos: 13.5,-67.5 + pos: 4.5,-12.5 parent: 2 - - uid: 6525 + - uid: 6595 components: - type: Transform - pos: 13.5,-68.5 - parent: 2 - - uid: 6528 - components: - - type: Transform - pos: 13.5,-63.5 - parent: 2 - - uid: 6529 - components: - - type: Transform - pos: 13.5,-62.5 - parent: 2 - - uid: 6530 - components: - - type: Transform - pos: 13.5,-61.5 - parent: 2 - - uid: 6531 - components: - - type: Transform - pos: 13.5,-60.5 + pos: -31.5,-3.5 parent: 2 - uid: 6621 components: @@ -107036,6 +117339,21 @@ entities: - type: Transform pos: 41.5,-59.5 parent: 2 + - uid: 6637 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 - uid: 6658 components: - type: Transform @@ -107056,21 +117374,26 @@ entities: - type: Transform pos: 24.5,-29.5 parent: 2 + - uid: 6853 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 - uid: 6871 components: - type: Transform pos: -24.5,1.5 parent: 2 - - uid: 6880 - components: - - type: Transform - pos: -45.5,-56.5 - parent: 2 - uid: 6881 components: - type: Transform pos: -7.5,-23.5 parent: 2 + - uid: 6922 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 - uid: 6926 components: - type: Transform @@ -107106,121 +117429,11 @@ entities: - type: Transform pos: 49.5,-59.5 parent: 2 - - uid: 7067 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 2 - - uid: 7080 - components: - - type: Transform - pos: -46.5,-56.5 - parent: 2 - - uid: 7125 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 7130 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 7132 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 7137 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 7138 - components: - - type: Transform - pos: 35.5,24.5 - parent: 2 - - uid: 7139 - components: - - type: Transform - pos: 35.5,23.5 - parent: 2 - - uid: 7140 - components: - - type: Transform - pos: 35.5,42.5 - parent: 2 - - uid: 7143 - components: - - type: Transform - pos: 34.5,44.5 - parent: 2 - - uid: 7145 - components: - - type: Transform - pos: 30.5,44.5 - parent: 2 - - uid: 7148 - components: - - type: Transform - pos: 29.5,42.5 - parent: 2 - - uid: 7149 - components: - - type: Transform - pos: 29.5,41.5 - parent: 2 - - uid: 7153 - components: - - type: Transform - pos: 32.5,44.5 - parent: 2 - - uid: 7156 - components: - - type: Transform - pos: 32.5,45.5 - parent: 2 - - uid: 7157 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 2 - - uid: 7171 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 2 - - uid: 7172 - components: - - type: Transform - pos: -40.5,-32.5 - parent: 2 - - uid: 7186 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 2 - - uid: 7188 - components: - - type: Transform - pos: -51.5,-25.5 - parent: 2 - - uid: 7197 - components: - - type: Transform - pos: -32.5,-60.5 - parent: 2 - uid: 7212 components: - type: Transform pos: 30.5,11.5 parent: 2 - - uid: 7267 - components: - - type: Transform - pos: -44.5,-56.5 - parent: 2 - uid: 7275 components: - type: Transform @@ -107231,26 +117444,6 @@ entities: - type: Transform pos: 51.5,10.5 parent: 2 - - uid: 7328 - components: - - type: Transform - pos: 44.5,13.5 - parent: 2 - - uid: 7330 - components: - - type: Transform - pos: 42.5,13.5 - parent: 2 - - uid: 7332 - components: - - type: Transform - pos: 43.5,13.5 - parent: 2 - - uid: 7350 - components: - - type: Transform - pos: -50.5,-25.5 - parent: 2 - uid: 7353 components: - type: Transform @@ -107266,16 +117459,6 @@ entities: - type: Transform pos: 49.5,13.5 parent: 2 - - uid: 7362 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - - uid: 7364 - components: - - type: Transform - pos: 51.5,12.5 - parent: 2 - uid: 7365 components: - type: Transform @@ -107306,11 +117489,6 @@ entities: - type: Transform pos: 74.5,-47.5 parent: 2 - - uid: 7511 - components: - - type: Transform - pos: 13.5,-66.5 - parent: 2 - uid: 7539 components: - type: Transform @@ -107321,20 +117499,30 @@ entities: - type: Transform pos: -12.5,-45.5 parent: 2 + - uid: 7543 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 - uid: 7548 components: - type: Transform pos: -16.5,-45.5 parent: 2 - - uid: 7626 + - uid: 7559 components: - type: Transform - pos: 30.5,15.5 + pos: 7.5,-59.5 parent: 2 - - uid: 7627 + - uid: 7561 components: - type: Transform - pos: 30.5,16.5 + pos: -59.5,-52.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: 6.5,-59.5 parent: 2 - uid: 7646 components: @@ -107346,6 +117534,11 @@ entities: - type: Transform pos: -26.5,14.5 parent: 2 + - uid: 7694 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 - uid: 7729 components: - type: Transform @@ -107356,21 +117549,6 @@ entities: - type: Transform pos: -14.5,-8.5 parent: 2 - - uid: 7765 - components: - - type: Transform - pos: -53.5,-28.5 - parent: 2 - - uid: 7817 - components: - - type: Transform - pos: -48.5,-28.5 - parent: 2 - - uid: 7818 - components: - - type: Transform - pos: -53.5,-33.5 - parent: 2 - uid: 7828 components: - type: Transform @@ -107381,120 +117559,20 @@ entities: - type: Transform pos: -31.5,17.5 parent: 2 - - uid: 7833 - components: - - type: Transform - pos: -50.5,-48.5 - parent: 2 - - uid: 7837 - components: - - type: Transform - pos: -53.5,-46.5 - parent: 2 - - uid: 7946 - components: - - type: Transform - pos: -53.5,-27.5 - parent: 2 - uid: 7951 components: - type: Transform pos: -23.5,11.5 parent: 2 - - uid: 7952 - components: - - type: Transform - pos: -48.5,-45.5 - parent: 2 - - uid: 7954 - components: - - type: Transform - pos: -50.5,-35.5 - parent: 2 - - uid: 7973 - components: - - type: Transform - pos: -32.5,-63.5 - parent: 2 - - uid: 8040 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 2 - - uid: 8060 - components: - - type: Transform - pos: -48.5,-46.5 - parent: 2 - - uid: 8068 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 2 - - uid: 8074 - components: - - type: Transform - pos: -27.5,-57.5 - parent: 2 - - uid: 8091 - components: - - type: Transform - pos: -28.5,-62.5 - parent: 2 - - uid: 8117 - components: - - type: Transform - pos: -53.5,-40.5 - parent: 2 - - uid: 8125 - components: - - type: Transform - pos: -51.5,-38.5 - parent: 2 - - uid: 8126 - components: - - type: Transform - pos: -50.5,-38.5 - parent: 2 - - uid: 8129 - components: - - type: Transform - pos: -53.5,-41.5 - parent: 2 - - uid: 8165 - components: - - type: Transform - pos: -51.5,-48.5 - parent: 2 - - uid: 8170 - components: - - type: Transform - pos: -53.5,-45.5 - parent: 2 - - uid: 8178 - components: - - type: Transform - pos: -41.5,-29.5 - parent: 2 - - uid: 8183 - components: - - type: Transform - pos: -51.5,-44.5 - parent: 2 - - uid: 8228 - components: - - type: Transform - pos: -46.5,-23.5 - parent: 2 - - uid: 8242 - components: - - type: Transform - pos: -30.5,-46.5 - parent: 2 - uid: 8243 components: - type: Transform - pos: -29.5,-44.5 + pos: -36.5,-80.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + pos: -25.5,-56.5 parent: 2 - uid: 8279 components: @@ -107541,6 +117619,11 @@ entities: - type: Transform pos: 32.5,-28.5 parent: 2 + - uid: 8449 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 2 - uid: 8545 components: - type: Transform @@ -107551,6 +117634,17 @@ entities: - type: Transform pos: 49.5,-5.5 parent: 2 + - uid: 8571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,25.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 - uid: 8618 components: - type: Transform @@ -107586,6 +117680,11 @@ entities: - type: Transform pos: -35.5,17.5 parent: 2 + - uid: 8679 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 - uid: 8682 components: - type: Transform @@ -107661,26 +117760,11 @@ entities: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 8905 - components: - - type: Transform - pos: 13.5,-2.5 - parent: 2 - uid: 9019 components: - type: Transform pos: -29.5,25.5 parent: 2 - - uid: 9084 - components: - - type: Transform - pos: 13.5,1.5 - parent: 2 - - uid: 9085 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - uid: 9108 components: - type: Transform @@ -107696,10 +117780,20 @@ entities: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 9267 + - uid: 9258 components: - type: Transform - pos: 13.5,2.5 + pos: -4.5,-59.5 + parent: 2 + - uid: 9264 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 9268 + components: + - type: Transform + pos: 8.5,-78.5 parent: 2 - uid: 9273 components: @@ -107711,36 +117805,11 @@ entities: - type: Transform pos: 43.5,-71.5 parent: 2 - - uid: 9283 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 2 - - uid: 9285 - components: - - type: Transform - pos: 19.5,3.5 - parent: 2 - - uid: 9286 - components: - - type: Transform - pos: 19.5,2.5 - parent: 2 - - uid: 9290 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 2 - uid: 9296 components: - type: Transform pos: 43.5,-70.5 parent: 2 - - uid: 9310 - components: - - type: Transform - pos: -49.5,-53.5 - parent: 2 - uid: 9383 components: - type: Transform @@ -107761,6 +117830,26 @@ entities: - type: Transform pos: 46.5,-89.5 parent: 2 + - uid: 9553 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 - uid: 9583 components: - type: Transform @@ -107771,31 +117860,31 @@ entities: - type: Transform pos: 45.5,-86.5 parent: 2 - - uid: 9630 + - uid: 9624 components: - type: Transform - pos: 17.5,3.5 + pos: -29.5,-39.5 parent: 2 - - uid: 9631 + - uid: 9649 components: - type: Transform - pos: 19.5,0.5 + pos: -42.5,-58.5 parent: 2 - uid: 9676 components: - type: Transform pos: 59.5,-49.5 parent: 2 - - uid: 9696 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 2 - uid: 9800 components: - type: Transform pos: 57.5,-49.5 parent: 2 + - uid: 9937 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 - uid: 9958 components: - type: Transform @@ -107806,15 +117895,30 @@ entities: - type: Transform pos: 62.5,-82.5 parent: 2 + - uid: 10136 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 - uid: 10182 components: - type: Transform pos: -39.5,6.5 parent: 2 - - uid: 10394 + - uid: 10190 components: - type: Transform - pos: -49.5,-55.5 + pos: 2.5,-18.5 + parent: 2 + - uid: 10251 + components: + - type: Transform + pos: -28.5,-39.5 parent: 2 - uid: 10398 components: @@ -107826,15 +117930,40 @@ entities: - type: Transform pos: -35.5,-6.5 parent: 2 + - uid: 10433 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 - uid: 10452 components: - type: Transform pos: -38.5,-6.5 parent: 2 - - uid: 10687 + - uid: 10465 components: - type: Transform - pos: -34.5,-6.5 + pos: -56.5,-55.5 + parent: 2 + - uid: 10513 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + pos: 4.5,-11.5 parent: 2 - uid: 10793 components: @@ -107886,6 +118015,21 @@ entities: - type: Transform pos: 72.5,-39.5 parent: 2 + - uid: 10969 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 - uid: 11075 components: - type: Transform @@ -107896,30 +118040,35 @@ entities: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 11115 + - uid: 11121 components: - type: Transform - pos: 17.5,0.5 - parent: 2 - - uid: 11116 - components: - - type: Transform - pos: 17.5,2.5 - parent: 2 - - uid: 11117 - components: - - type: Transform - pos: 13.5,3.5 + pos: -22.5,-12.5 parent: 2 - uid: 11128 components: - type: Transform pos: -14.5,-19.5 parent: 2 - - uid: 11161 + - uid: 11170 components: - type: Transform - pos: 17.5,-0.5 + pos: 22.5,24.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + pos: -63.5,-60.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: 0.5,-82.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + pos: 2.5,-23.5 parent: 2 - uid: 11327 components: @@ -107951,15 +118100,20 @@ entities: - type: Transform pos: 26.5,-28.5 parent: 2 - - uid: 11451 + - uid: 11504 components: - type: Transform - pos: -42.5,-27.5 + pos: -57.5,-61.5 parent: 2 - - uid: 11517 + - uid: 11582 components: - type: Transform - pos: -40.5,-25.5 + pos: -56.5,-57.5 + parent: 2 + - uid: 11610 + components: + - type: Transform + pos: 2.5,-83.5 parent: 2 - uid: 11654 components: @@ -107991,10 +118145,30 @@ entities: - type: Transform pos: 72.5,-59.5 parent: 2 - - uid: 12135 + - uid: 11933 components: - type: Transform - pos: -48.5,-42.5 + pos: -30.5,-12.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: -34.5,-34.5 parent: 2 - uid: 12151 components: @@ -108006,20 +118180,130 @@ entities: - type: Transform pos: -38.5,6.5 parent: 2 - - uid: 12176 + - uid: 12186 components: - type: Transform - pos: -34.5,5.5 + pos: 12.5,-67.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + pos: -9.5,-78.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + pos: -32.5,-22.5 parent: 2 - uid: 12245 components: - type: Transform pos: -43.5,-3.5 parent: 2 - - uid: 12573 + - uid: 12281 components: - type: Transform - pos: -45.5,-42.5 + pos: -28.5,-23.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + pos: -61.5,-58.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + pos: -57.5,-57.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + pos: 12.5,-73.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: 12.5,-74.5 parent: 2 - uid: 12609 components: @@ -108031,16 +118315,136 @@ entities: - type: Transform pos: -23.5,-3.5 parent: 2 + - uid: 12645 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + pos: -46.5,-27.5 + parent: 2 - uid: 12694 components: - type: Transform pos: -41.5,-0.5 parent: 2 + - uid: 12703 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + pos: -9.5,-77.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: -54.5,-32.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + pos: -5.5,-71.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: 7.5,-75.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + pos: -60.5,-31.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 - uid: 12880 components: - type: Transform pos: -38.5,0.5 parent: 2 + - uid: 12884 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: -60.5,-32.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 - uid: 13011 components: - type: Transform @@ -108051,10 +118455,101 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 13273 + - uid: 13116 components: - type: Transform - pos: -36.5,15.5 + pos: -4.5,-75.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + pos: -61.5,-60.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + pos: -60.5,-58.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + pos: -60.5,-60.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: 8.5,-73.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,26.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + pos: 12.5,-78.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: -5.5,-78.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + pos: -50.5,-33.5 parent: 2 - uid: 13767 components: @@ -108086,6 +118581,46 @@ entities: - type: Transform pos: 18.5,-60.5 parent: 2 + - uid: 13791 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: -49.5,-40.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + pos: -41.5,-42.5 + parent: 2 + - uid: 13926 + components: + - type: Transform + pos: -49.5,-41.5 + parent: 2 - uid: 13990 components: - type: Transform @@ -108096,56 +118631,66 @@ entities: - type: Transform pos: 7.5,28.5 parent: 2 - - uid: 14338 - components: - - type: Transform - pos: 18.5,24.5 - parent: 2 - uid: 14498 components: - type: Transform pos: -42.5,2.5 parent: 2 - - uid: 14573 + - uid: 14502 components: - type: Transform - pos: -27.5,-32.5 + pos: -5.5,-77.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + pos: -2.5,-54.5 parent: 2 - uid: 14809 components: - type: Transform pos: -27.5,14.5 parent: 2 - - uid: 14811 + - uid: 14996 components: - type: Transform - pos: 35.5,14.5 + pos: 7.5,-62.5 parent: 2 - - uid: 14823 + - uid: 14998 components: - type: Transform - pos: 28.5,-10.5 + pos: -4.5,-63.5 parent: 2 - - uid: 14840 + - uid: 15005 components: - type: Transform - pos: 28.5,-9.5 + pos: 7.5,-63.5 parent: 2 - - uid: 15307 + - uid: 15027 components: - type: Transform - pos: -41.5,-31.5 + pos: -5.5,-55.5 parent: 2 - - uid: 15366 + - uid: 15236 components: - type: Transform - pos: -39.5,-34.5 + pos: -64.5,-58.5 parent: 2 - uid: 15372 components: - type: Transform pos: -21.5,-6.5 parent: 2 + - uid: 15454 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 15615 + components: + - type: Transform + pos: -5.5,-73.5 + parent: 2 - uid: 15675 components: - type: Transform @@ -108156,20 +118701,10 @@ entities: - type: Transform pos: -20.5,-9.5 parent: 2 - - uid: 15699 + - uid: 15780 components: - type: Transform - pos: -34.5,-32.5 - parent: 2 - - uid: 15828 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 2 - - uid: 15834 - components: - - type: Transform - pos: 35.5,15.5 + pos: 35.5,20.5 parent: 2 - uid: 15901 components: @@ -108191,6 +118726,26 @@ entities: - type: Transform pos: -52.5,-14.5 parent: 2 + - uid: 16021 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: -9.5,-73.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 - uid: 16202 components: - type: Transform @@ -108221,6 +118776,11 @@ entities: - type: Transform pos: -49.5,-12.5 parent: 2 + - uid: 16664 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 - uid: 16679 components: - type: Transform @@ -108236,25 +118796,25 @@ entities: - type: Transform pos: -41.5,-1.5 parent: 2 - - uid: 17092 + - uid: 16909 components: - type: Transform - pos: -34.5,3.5 + pos: -41.5,-58.5 parent: 2 - uid: 17094 components: - type: Transform pos: -33.5,0.5 parent: 2 - - uid: 17295 + - uid: 17177 components: - type: Transform - pos: -30.5,-11.5 + pos: -1.5,-96.5 parent: 2 - - uid: 17706 + - uid: 17418 components: - type: Transform - pos: 60.5,-54.5 + pos: -25.5,-45.5 parent: 2 - uid: 17707 components: @@ -108276,6 +118836,11 @@ entities: - type: Transform pos: 80.5,-15.5 parent: 2 + - uid: 17821 + components: + - type: Transform + pos: -59.5,-53.5 + parent: 2 - uid: 17825 components: - type: Transform @@ -108301,11 +118866,6 @@ entities: - type: Transform pos: 83.5,-14.5 parent: 2 - - uid: 17859 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 2 - uid: 17946 components: - type: Transform @@ -108326,6 +118886,11 @@ entities: - type: Transform pos: 95.5,-19.5 parent: 2 + - uid: 18415 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 - uid: 18418 components: - type: Transform @@ -108386,15 +118951,152 @@ entities: - type: Transform pos: 97.5,-36.5 parent: 2 + - uid: 19195 + components: + - type: Transform + pos: -0.5,-96.5 + parent: 2 + - uid: 19202 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 19215 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 19244 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 19258 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - uid: 19276 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 - uid: 19361 components: - type: Transform pos: 78.5,-47.5 parent: 2 - - uid: 20410 + - uid: 20168 components: - type: Transform - pos: 29.5,14.5 + pos: 8.5,-71.5 + parent: 2 + - uid: 21674 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 21838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,11.5 + parent: 2 + - uid: 21867 + components: + - type: Transform + pos: 60.5,-54.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 21901 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 21903 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 21904 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 21909 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 21918 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 21920 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 21921 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,13.5 + parent: 2 + - uid: 21931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - uid: 21942 + components: + - type: Transform + pos: -55.5,-51.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 22011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,27.5 + parent: 2 + - uid: 22012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,29.5 + parent: 2 + - uid: 22050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 2 + - uid: 22052 + components: + - type: Transform + pos: -57.5,-55.5 + parent: 2 + - uid: 22080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,29.5 parent: 2 - proto: RemoteSignaller entities: @@ -108418,19 +119120,39 @@ entities: - Pressed: Toggle 3501: - Pressed: Toggle + - uid: 8340 + components: + - type: MetaData + name: Janitor Shutters Remote + - type: Transform + pos: 24.653408,0.86710465 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7263: + - Pressed: Toggle + 6578: + - Pressed: Toggle - uid: 9536 components: - type: MetaData name: Janitor Shutters Remote - type: Transform - pos: 29.016838,4.6675644 + pos: 24.361597,1.0651593 parent: 2 - type: DeviceLinkSource linkedPorts: - 9369: + 7263: - Pressed: Toggle - 9370: + 6578: - Pressed: Toggle + - uid: 11096 + components: + - type: MetaData + name: Salvage Dock Remote + - type: Transform + pos: 14.520121,25.664625 + parent: 2 - uid: 17983 components: - type: MetaData @@ -108463,7 +119185,7 @@ entities: - uid: 9847 components: - type: Transform - pos: -18.337261,-50.37869 + pos: -17.983162,-50.297432 parent: 2 - proto: RevolverCapGun entities: @@ -108477,8 +119199,16 @@ entities: - uid: 8291 components: - type: Transform - pos: -21.647089,6.5904083 + pos: -21.461847,6.590386 parent: 2 + - type: Blocking + blockingToggleActionEntity: 5100 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 5100 - proto: RiotLaserShield entities: - uid: 632 @@ -108488,10 +119218,10 @@ entities: parent: 2 - proto: RiotShield entities: - - uid: 6754 + - uid: 3686 components: - type: Transform - pos: -21.574173,6.5174413 + pos: -21.211723,6.5486903 parent: 2 - proto: RobocopCircuitBoard entities: @@ -108523,11 +119253,11 @@ entities: parent: 2 - proto: SalvageMagnet entities: - - uid: 1035 + - uid: 21965 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,32.5 + pos: 16.5,33.5 parent: 2 - proto: SandBattlemap entities: @@ -108569,22 +119299,26 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-19.5 parent: 2 - - uid: 5007 + - uid: 6902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-46.5 + pos: -31.5,-26.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: -50.5,-28.5 parent: 2 - uid: 11314 components: - type: Transform pos: -21.5,-39.5 parent: 2 - - uid: 12115 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - uid: 12117 components: - type: Transform @@ -108600,10 +119334,10 @@ entities: - type: Transform pos: 43.5,-23.5 parent: 2 - - uid: 12122 + - uid: 12606 components: - type: Transform - pos: 30.5,29.5 + pos: 20.5,8.5 parent: 2 - uid: 13206 components: @@ -108615,16 +119349,6 @@ entities: - type: Transform pos: 27.5,-19.5 parent: 2 - - uid: 16668 - components: - - type: Transform - pos: -31.5,-28.5 - parent: 2 - - uid: 16678 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 2 - uid: 16680 components: - type: Transform @@ -108645,29 +119369,69 @@ entities: - type: Transform pos: -13.5,-56.5 parent: 2 - - uid: 16688 + - uid: 22035 components: - type: Transform - pos: 34.5,40.5 - parent: 2 - - uid: 18966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-50.5 - parent: 2 - - uid: 20767 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: 34.5,16.5 parent: 2 -- proto: Screwdriver - entities: - - uid: 19555 + - uid: 22036 components: - type: Transform - pos: -33.476517,4.525329 + pos: 36.5,23.5 + parent: 2 + - uid: 22164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-74.5 + parent: 2 + - uid: 22165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-81.5 + parent: 2 + - uid: 22166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-59.5 + parent: 2 + - uid: 22167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-49.5 + parent: 2 + - uid: 22210 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 22211 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 22212 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 22213 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 22214 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 22216 + components: + - type: Transform + pos: 8.5,-46.5 parent: 2 - proto: SecurityTechFab entities: @@ -108707,6 +119471,11 @@ entities: - type: Transform pos: 74.42811,-44.107338 parent: 2 + - uid: 890 + components: + - type: Transform + pos: -0.48252273,-84.521225 + parent: 2 - uid: 2288 components: - type: Transform @@ -108732,11 +119501,6 @@ entities: - type: Transform pos: 73.42761,-43.54445 parent: 2 - - uid: 4025 - components: - - type: Transform - pos: 13.981267,-12.895584 - parent: 2 - uid: 4985 components: - type: Transform @@ -108763,11 +119527,6 @@ entities: - type: Transform pos: 64.549995,-40.491837 parent: 2 - - uid: 10689 - components: - - type: Transform - pos: -33.48411,-50.31736 - parent: 2 - uid: 10841 components: - type: Transform @@ -108779,16 +119538,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.56429,-82.79552 parent: 2 - - uid: 15911 - components: - - type: Transform - pos: 11.269943,-13.322539 - parent: 2 - - uid: 17540 - components: - - type: Transform - pos: 16.667065,-0.29552567 - parent: 2 - uid: 17852 components: - type: Transform @@ -108864,17 +119613,12 @@ entities: - uid: 2250 components: - type: Transform - pos: 28.253607,-16.335518 + pos: 28.705658,-16.41892 parent: 2 - - uid: 4002 + - uid: 3635 components: - type: Transform - pos: -3.7460008,-14.344318 - parent: 2 - - uid: 4003 - components: - - type: Transform - pos: -3.747398,-14.455197 + pos: 11.520535,-16.466494 parent: 2 - uid: 4268 components: @@ -108886,15 +119630,15 @@ entities: - type: Transform pos: 8.793852,18.587227 parent: 2 - - uid: 4774 + - uid: 14889 components: - type: Transform - pos: -33.92257,-53.43389 + pos: -37.7531,-24.421627 parent: 2 - - uid: 10433 + - uid: 21619 components: - type: Transform - pos: -46.492474,-55.416134 + pos: -57.542072,-58.42012 parent: 2 - proto: SheetGlass1 entities: @@ -108908,13 +119652,6 @@ entities: - type: Transform pos: 63.470222,-39.49492 parent: 2 -- proto: SheetGlass10 - entities: - - uid: 501 - components: - - type: Transform - pos: 19.591537,7.632542 - parent: 2 - proto: SheetPaper entities: - uid: 2962 @@ -108922,6 +119659,31 @@ entities: - type: Transform pos: 13.540051,-50.447964 parent: 2 +- proto: SheetPaper1 + entities: + - uid: 5913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.547642,18.769604 + parent: 2 + - uid: 12485 + components: + - type: Transform + pos: 20.500767,18.425854 + parent: 2 + - uid: 22382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.701982,19.633614 + parent: 2 + - uid: 22383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.31672,19.486847 + parent: 2 - proto: SheetPlasma entities: - uid: 11897 @@ -108934,18 +119696,13 @@ entities: - uid: 1758 components: - type: Transform - pos: 28.389091,-16.377214 + pos: 28.53891,-16.450193 parent: 2 - uid: 2546 components: - type: Transform pos: -10.506894,-13.427014 parent: 2 - - uid: 4759 - components: - - type: Transform - pos: -28.457413,-61.391724 - parent: 2 - uid: 10172 components: - type: Transform @@ -108973,6 +119730,11 @@ entities: - type: Transform pos: 19.5265,-30.937439 parent: 2 + - uid: 14888 + components: + - type: Transform + pos: -37.47171,-24.411203 + parent: 2 - proto: SheetPlastic10 entities: - uid: 3997 @@ -109005,37 +119767,37 @@ entities: - uid: 2256 components: - type: Transform - pos: 28.576683,-16.36679 + pos: 28.236675,-16.41892 parent: 2 - uid: 2408 components: - type: Transform pos: -0.48844743,-4.350263 parent: 2 - - uid: 4000 + - uid: 3639 components: - type: Transform - pos: -3.335125,-14.359608 + pos: 11.364208,-16.487328 parent: 2 - - uid: 4001 + - uid: 4068 components: - type: Transform - pos: -3.3313518,-14.430718 + pos: -3.4528265,-14.511956 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: -10.51167,-13.449734 parent: 2 - uid: 4272 components: - type: Transform pos: 19.547344,-30.51006 parent: 2 - - uid: 4594 + - uid: 12747 components: - type: Transform - pos: 1.5190241,-11.392845 - parent: 2 - - uid: 4738 - components: - - type: Transform - pos: -33.35979,-53.45474 + pos: 2.4604461,-55.406693 parent: 2 - uid: 14425 components: @@ -109047,12 +119809,10 @@ entities: - type: Transform pos: -60.99963,-11.384789 parent: 2 -- proto: SheetSteel1 - entities: - - uid: 2342 + - uid: 22546 components: - type: Transform - pos: 13.934829,-12.065643 + pos: -3.4737914,-14.490146 parent: 2 - proto: SheetSteel10 entities: @@ -109097,36 +119857,34 @@ entities: - uid: 4279 components: - type: Transform + rot: 3.141592653589793 rad pos: 33.5,-23.5 parent: 2 + - uid: 6578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 - uid: 6787 components: - type: Transform + rot: 3.141592653589793 rad pos: 34.5,-23.5 parent: 2 - - uid: 9369 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 2 - - uid: 9370 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 2 -- proto: ShuttersNormalOpen - entities: - - uid: 1322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-32.5 - parent: 2 - - uid: 1917 + - uid: 7263 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-34.5 + pos: 29.5,1.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-46.5 parent: 2 - uid: 2359 components: @@ -109140,22 +119898,74 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-11.5 parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-44.5 + parent: 2 - uid: 4048 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 2 + - uid: 4698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-44.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-43.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-43.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-48.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-43.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-47.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 2 - uid: 5439 components: - type: Transform pos: -8.5,16.5 parent: 2 - - uid: 7497 + - uid: 6345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-32.5 + pos: -4.5,-46.5 parent: 2 - uid: 7960 components: @@ -109163,16 +119973,17 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,11.5 parent: 2 - - uid: 9963 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 2 - - uid: 10464 + - uid: 10771 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-32.5 + pos: -42.5,-33.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-33.5 parent: 2 - uid: 11182 components: @@ -109226,18 +120037,17 @@ entities: - type: Transform pos: -6.5,16.5 parent: 2 + - uid: 12193 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 - uid: 12990 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-10.5 parent: 2 - - uid: 13043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-35.5 - parent: 2 - uid: 13642 components: - type: Transform @@ -109325,29 +120135,10 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-32.5 parent: 2 - - uid: 16041 + - uid: 16090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-32.5 - parent: 2 - - uid: 16042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-32.5 - parent: 2 - - uid: 16050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-27.5 - parent: 2 - - uid: 16051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-26.5 + pos: -1.5,-46.5 parent: 2 - uid: 17052 components: @@ -109416,10 +120207,166 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-35.5 parent: 2 - - uid: 20824 + - uid: 21229 components: - type: Transform - pos: -26.5,-56.5 + pos: -47.5,-25.5 + parent: 2 + - uid: 21230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-20.5 + parent: 2 + - uid: 21231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-20.5 + parent: 2 + - uid: 21234 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 21235 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 21236 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - uid: 21237 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 21238 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 21242 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 21243 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 21244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-19.5 + parent: 2 + - uid: 21245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-19.5 + parent: 2 + - uid: 21246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-19.5 + parent: 2 + - uid: 21247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-19.5 + parent: 2 + - uid: 21248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-19.5 + parent: 2 + - uid: 21251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-34.5 + parent: 2 + - uid: 21252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-37.5 + parent: 2 + - uid: 21253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 2 + - uid: 21254 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 21255 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 21256 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - uid: 21257 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-45.5 + parent: 2 + - uid: 22614 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 22616 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 22617 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 22618 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 22619 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 22620 + components: + - type: Transform + pos: -30.5,-12.5 parent: 2 - proto: ShuttersWindowOpen entities: @@ -109440,18 +120387,13 @@ entities: parent: 2 - proto: ShuttleConsoleCircuitboard entities: - - uid: 4721 + - uid: 21971 components: - type: Transform - pos: -34.410973,-53.378662 + pos: 21.58446,23.544025 parent: 2 - proto: SignAi entities: - - uid: 3315 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 - uid: 7090 components: - type: Transform @@ -109464,6 +120406,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-13.5 parent: 2 + - uid: 21309 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 - proto: SignAiUpload entities: - uid: 16477 @@ -109485,30 +120432,6 @@ entities: linkedPorts: 16099: - Pressed: Toggle - - uid: 1331 - components: - - type: MetaData - name: Janitorial Light - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.497658,-27.75303 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16113: - - Pressed: Toggle - - uid: 2351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,8.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20737: - - Pressed: Toggle - 9735: - - Pressed: Toggle - uid: 3255 components: - type: Transform @@ -109538,6 +120461,18 @@ entities: linkedPorts: 3508: - Pressed: Toggle + - uid: 13730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11992: + - Pressed: DoorBolt + 11221: + - Pressed: DoorBolt - uid: 15842 components: - type: Transform @@ -109557,31 +120492,6 @@ entities: linkedPorts: 5908: - Pressed: DoorBolt - 5923: - - Pressed: DoorBolt - - uid: 16055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-43.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 237: - - Pressed: DoorBolt - 6029: - - Pressed: DoorBolt - - uid: 16056 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 267: - - Pressed: DoorBolt - 4928: - - Pressed: DoorBolt - uid: 16057 components: - type: Transform @@ -109632,7 +120542,7 @@ entities: - uid: 17553 components: - type: MetaData - name: Janitorial Button + name: Janitor Light - type: Transform rot: 3.141592653589793 rad pos: 7.5,15.5 @@ -109663,6 +120573,51 @@ entities: linkedPorts: 12881: - Pressed: Toggle + - uid: 21408 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11833: + - Pressed: DoorBolt + 21406: + - Pressed: DoorBolt + - uid: 21754 + components: + - type: MetaData + name: Janitor Light + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21752: + - Pressed: Toggle + - uid: 21755 + components: + - type: MetaData + name: Janitor Light + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21751: + - Pressed: Toggle + - uid: 22621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12433: + - Pressed: Toggle - proto: SignAnomaly entities: - uid: 4573 @@ -109694,11 +120649,11 @@ entities: parent: 2 - proto: SignBar entities: - - uid: 16015 + - uid: 20198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-45.5 + rot: 3.141592653589793 rad + pos: -6.5,-46.5 parent: 2 - proto: SignCans entities: @@ -109737,11 +120692,10 @@ entities: parent: 2 - proto: SignChem entities: - - uid: 17572 + - uid: 11968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 + pos: -25.5,-33.5 parent: 2 - proto: SignCryo entities: @@ -109753,17 +120707,22 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 5010 + - uid: 15241 components: - type: Transform - pos: -36.5,-19.5 + pos: -45.5,-33.5 + parent: 2 + - uid: 21737 + components: + - type: Transform + pos: -46.5,-36.5 parent: 2 - proto: SignDirectionalBar entities: - uid: 16976 components: - type: Transform - pos: -21.500635,-30.930183 + pos: -21.5,-30.93 parent: 2 - uid: 17015 components: @@ -109771,53 +120730,53 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-19.5 parent: 2 + - uid: 22260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.8,-46.3 + parent: 2 - proto: SignDirectionalBridge entities: + - uid: 8742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-46.5 + parent: 2 - uid: 15465 components: - type: Transform pos: -21.5,-30.5 parent: 2 - - uid: 16963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.4946065,-46.298473 - parent: 2 - uid: 16981 components: - type: Transform - pos: -13.5028,-2.2967658 + pos: -13.5,-2.3 parent: 2 - uid: 17069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.497295,-19.297873 + pos: 25.5,-19.3 parent: 2 - proto: SignDirectionalDorms entities: - - uid: 16021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-46.5 - parent: 2 - - uid: 16968 - components: - - type: Transform - pos: 29.501575,-5.2910233 - parent: 2 - uid: 16978 components: - type: Transform - pos: -21.497547,-31.359373 + pos: -21.5,-31.36 parent: 2 - uid: 17068 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.497295,-19.714828 + pos: 25.5,-19.7 + parent: 2 + - uid: 22514 + components: + - type: Transform + pos: 29.5,9.3 parent: 2 - proto: SignDirectionalEng entities: @@ -109825,66 +120784,42 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -21.500673,-29.646055 - parent: 2 - - uid: 16964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5000954,-46.381866 - parent: 2 - - uid: 16969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.497402,-5.287935 - parent: 2 - - uid: 16970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.502121,-20.71029 + pos: -21.5,-29.65 parent: 2 - uid: 16982 components: - type: Transform - pos: -13.5028,-2.0836544 + pos: -13.5,-2.1 + parent: 2 + - uid: 22265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.8,-46.7 + parent: 2 + - uid: 22506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.3 parent: 2 - proto: SignDirectionalEvac entities: - - uid: 15651 + - uid: 31 components: - type: Transform - pos: 29.5,-5.5 - parent: 2 - - uid: 16024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.499233,-46.28323 - parent: 2 - - uid: 16046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 2 - - uid: 16866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.4983397,-46.721607 + pos: 29.5,9.5 parent: 2 - uid: 16972 components: - type: Transform - pos: -21.497791,-30.715273 + pos: -21.5,-30.72 parent: 2 - uid: 16980 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.499712,-1.2991593 + pos: -13.5,-1.3 parent: 2 - uid: 17012 components: @@ -109892,25 +120827,51 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-19.5 parent: 2 + - uid: 22266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.2,-46.5 + parent: 2 + - uid: 22505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.3 + parent: 2 - proto: SignDirectionalFood entities: + - uid: 9489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-46.7 + parent: 2 - uid: 16977 components: - type: Transform - pos: -21.500635,-31.149471 + pos: -21.5,-31.15 parent: 2 - uid: 16983 components: - type: Transform - pos: -13.499712,-2.7137218 + pos: -13.5,-2.71 parent: 2 - proto: SignDirectionalJanitor entities: - - uid: 16965 + - uid: 22504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.497597,-5.932226 + rot: 1.5707963267948966 rad + pos: 12.5,9.7 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 22263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.2,-46.7 parent: 2 - proto: SignDirectionalMed entities: @@ -109919,62 +120880,80 @@ entities: - type: Transform pos: -13.5,-2.5 parent: 2 - - uid: 13550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5000954,-46.598064 - parent: 2 - - uid: 16971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.499033,-20.28407 - parent: 2 - uid: 17013 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.497282,-19.713396 + pos: 26.5,-19.7 + parent: 2 + - uid: 22262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-46.3 + parent: 2 + - uid: 22501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 2 + - uid: 22509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 2 - proto: SignDirectionalSci entities: - - uid: 13538 - components: - - type: Transform - pos: 29.501575,-5.717245 - parent: 2 - - uid: 15803 + - uid: 22264 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.4985585,-46.702446 + pos: 7.2,-46.3 + parent: 2 + - uid: 22503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 + - uid: 22511 + components: + - type: Transform + pos: 29.5,9.7 parent: 2 - proto: SignDirectionalSec entities: - - uid: 16868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-46.5 - parent: 2 - - uid: 16967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.50108,-5.717245 - parent: 2 - - uid: 16979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.50685,-30.073809 - parent: 2 - uid: 17014 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.497282,-19.284084 + pos: 26.5,-19.3 + parent: 2 + - uid: 21928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.49749,-30.06194 + parent: 2 + - uid: 22261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.8,-46.5 + parent: 2 + - uid: 22507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.7 + parent: 2 + - uid: 22512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.7 parent: 2 - proto: SignDirectionalSolar entities: @@ -109990,20 +120969,14 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,21.5 parent: 2 - - uid: 20755 + - uid: 21606 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-49.5 + pos: -35.5,-47.5 parent: 2 - proto: SignDirectionalSupply entities: - - uid: 16966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - uid: 16973 components: - type: Transform @@ -110014,15 +120987,27 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -21.503761,-29.859167 + pos: -21.5,-29.86 parent: 2 -- proto: SignElectricalMed - entities: - - uid: 628 + - uid: 22513 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,10.5 + pos: 28.5,9.3 + parent: 2 +- proto: SignDirectionalWash + entities: + - uid: 1805 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 1748 + components: + - type: Transform + pos: 14.5,-15.5 parent: 2 - uid: 4292 components: @@ -110042,11 +121027,16 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 - - uid: 4324 + - uid: 9202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 + pos: -33.5,-9.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 parent: 2 - uid: 11388 components: @@ -110054,17 +121044,15 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-32.5 parent: 2 - - uid: 17059 + - uid: 12892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-15.5 + pos: -31.5,-20.5 parent: 2 - - uid: 17064 + - uid: 13017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,12.5 + pos: -54.5,-60.5 parent: 2 - uid: 17066 components: @@ -110095,11 +121083,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 2 - - uid: 20582 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - uid: 20583 components: - type: Transform @@ -110148,29 +121131,18 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-55.5 parent: 2 - - uid: 17856 + - uid: 22094 components: - type: Transform - pos: -34.5,11.5 - parent: 2 - - uid: 20746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-57.5 + rot: 3.141592653589793 rad + pos: -54.5,-51.5 parent: 2 - proto: SignEVA entities: - - uid: 15669 + - uid: 19223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-51.5 - parent: 2 - - uid: 20578 - components: - - type: Transform - pos: -31.5,-2.5 + pos: -5.5,-58.5 parent: 2 - proto: SignFlammableMed entities: @@ -110181,10 +121153,10 @@ entities: parent: 2 - proto: SignGravity entities: - - uid: 6583 + - uid: 22623 components: - type: Transform - pos: 24.5,-5.5 + pos: 29.5,-9.5 parent: 2 - proto: SignInterrogation entities: @@ -110195,17 +121167,18 @@ entities: parent: 2 - proto: SignJanitor entities: - - uid: 9375 + - uid: 5858 components: - type: Transform - pos: 30.5,3.5 + rot: -1.5707963267948966 rad + pos: 29.5,3.5 parent: 2 - proto: SignKiddiePlaque entities: - - uid: 10735 + - uid: 4806 components: - type: Transform - pos: 7.5,5.5 + pos: -28.5,-64.5 parent: 2 - proto: SignKitchen entities: @@ -110238,29 +121211,10 @@ entities: parent: 2 - proto: SignMagneticsMed entities: - - uid: 10727 + - uid: 21934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 2 - - uid: 17071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 17072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-10.5 - parent: 2 - - uid: 17493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,29.5 + pos: 15.5,30.5 parent: 2 - proto: SignMail entities: @@ -110279,11 +121233,19 @@ entities: parent: 2 - proto: SignMedical entities: - - uid: 13202 + - uid: 12234 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-28.5 + pos: -25.5,-26.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 14118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-39.5 parent: 2 - proto: SignNews entities: @@ -110295,18 +121257,6 @@ entities: parent: 2 - proto: SignNosmoking entities: - - uid: 17016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-32.5 - parent: 2 - - uid: 17074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-28.5 - parent: 2 - uid: 17076 components: - type: Transform @@ -110315,10 +121265,10 @@ entities: parent: 2 - proto: SignPlaque entities: - - uid: 10734 + - uid: 4944 components: - type: Transform - pos: 11.5,4.5 + pos: -28.5,-58.5 parent: 2 - proto: SignPrison entities: @@ -110330,11 +121280,11 @@ entities: parent: 2 - proto: SignPsychology entities: - - uid: 9660 + - uid: 18 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-45.5 + pos: -35.5,-53.5 parent: 2 - proto: SignRadiationMed entities: @@ -110360,10 +121310,10 @@ entities: parent: 2 - proto: SignRedThree entities: - - uid: 16869 + - uid: 21447 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 - proto: SignRedTwo @@ -110374,10 +121324,10 @@ entities: rot: -1.5707963267948966 rad pos: -22.534918,-9.81543 parent: 2 - - uid: 16961 + - uid: 21446 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 8.5,-41.5 parent: 2 - proto: SignRobo @@ -110387,6 +121337,18 @@ entities: - type: Transform pos: 31.5,-26.5 parent: 2 +- proto: SignSalvage + entities: + - uid: 22415 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 22473 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 - proto: SignScience entities: - uid: 4323 @@ -110399,6 +121361,14 @@ entities: - type: Transform pos: 31.5,-23.5 parent: 2 +- proto: SignSecureMed + entities: + - uid: 4914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-62.5 + parent: 2 - proto: SignServer entities: - uid: 5592 @@ -110423,22 +121393,6 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 3516 - components: - - type: Transform - pos: -34.5,8.5 - parent: 2 - - uid: 14474 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 2 - - uid: 17078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 2 - uid: 19866 components: - type: Transform @@ -110446,17 +121400,15 @@ entities: parent: 2 - proto: SignSurgery entities: - - uid: 3189 + - uid: 12991 components: - type: Transform - pos: -45.5,-29.5 + pos: -45.5,-26.5 parent: 2 -- proto: SignTelecomms - entities: - - uid: 7761 + - uid: 21308 components: - type: Transform - pos: 23.5,-1.5 + pos: -40.5,-19.5 parent: 2 - proto: SignToolStorage entities: @@ -110468,25 +121420,24 @@ entities: parent: 2 - proto: SignVault entities: - - uid: 326 + - uid: 1917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,6.5 + pos: -31.5,-60.5 parent: 2 - proto: SignVirology entities: - - uid: 8186 + - uid: 21325 components: - type: Transform - pos: -45.5,-41.5 + pos: -50.5,-31.5 parent: 2 - proto: Sink entities: - - uid: 434 + - uid: 413 components: - type: Transform - pos: -36.5,-2.5 + pos: -29.5,-9.5 parent: 2 - uid: 786 components: @@ -110500,27 +121451,17 @@ entities: rot: 3.141592653589793 rad pos: -40.5,1.5 parent: 2 - - uid: 7962 - components: - - type: Transform - pos: -49.5,-45.5 - parent: 2 - - uid: 8120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-43.5 - parent: 2 - uid: 9836 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-55.5 parent: 2 - - uid: 10412 + - uid: 12903 components: - type: Transform - pos: -28.5,-9.5 + rot: 3.141592653589793 rad + pos: -57.5,-31.5 parent: 2 - uid: 14526 components: @@ -110528,14 +121469,13 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 -- proto: SinkWide - entities: - - uid: 668 + - uid: 20630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-43.5 + pos: 18.5,-6.5 parent: 2 +- proto: SinkWide + entities: - uid: 3259 components: - type: Transform @@ -110558,93 +121498,119 @@ entities: - type: Transform pos: 45.5,12.5 parent: 2 - - uid: 9415 + - uid: 9043 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 9376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 20194 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,0.5 - parent: 2 - - uid: 10730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-33.5 - parent: 2 - - uid: 11122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-31.5 + pos: -5.5,-45.5 parent: 2 - proto: SmartFridge entities: - - uid: 4741 + - uid: 1726 components: - type: Transform - pos: -32.5,-32.5 + pos: -40.5,-36.5 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: -35.5,-34.5 parent: 2 - proto: SMESAdvanced entities: - uid: 2499 components: + - type: MetaData + name: Bank SMES - Starboard - type: Transform pos: -1.5,-18.5 parent: 2 - uid: 2776 components: + - type: MetaData + name: Bank SMES - Bow - type: Transform pos: -2.5,-18.5 parent: 2 - uid: 8444 components: + - type: MetaData + name: Solars - North West SMES - type: Transform pos: -30.5,24.5 parent: 2 - uid: 8838 components: + - type: MetaData + name: Solars - North East SMES - type: Transform pos: 46.5,3.5 parent: 2 - - uid: 10400 + - uid: 15810 components: + - type: MetaData + name: Solars - South West SMES - type: Transform - pos: -43.5,-55.5 + pos: -55.5,-58.5 parent: 2 - uid: 15942 components: + - type: MetaData + name: AI Satellite SMES - type: Transform pos: -62.5,-8.5 parent: 2 - uid: 16111 components: + - type: MetaData + name: Bank SMES - Port - type: Transform pos: -3.5,-18.5 parent: 2 - proto: SMESBasic entities: - - uid: 2314 + - uid: 6269 + components: + - type: MetaData + name: Gravity SMES + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 12984 components: - type: MetaData name: Bridge SMES - type: Transform - pos: -10.5,-53.5 - parent: 2 - - uid: 6542 - components: - - type: MetaData - name: Telecoms SMES - - type: Transform - pos: 25.5,3.5 - parent: 2 - - uid: 6564 - components: - - type: MetaData - name: Gravity Generator SMES - - type: Transform - pos: 21.5,-8.5 + pos: -10.5,-56.5 parent: 2 - proto: SMESMachineCircuitboard entities: + - uid: 573 + components: + - type: Transform + pos: 3.5083165,-19.382118 + parent: 2 - uid: 2088 components: - type: Transform @@ -110653,7 +121619,7 @@ entities: - uid: 18882 components: - type: Transform - pos: 11.562226,-17.361189 + pos: 6.5098057,-16.3717 parent: 2 - proto: SnowBattlemap entities: @@ -110664,17 +121630,17 @@ entities: parent: 2 - proto: SodaDispenser entities: - - uid: 3701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-45.5 - parent: 2 - uid: 7366 components: - type: Transform pos: 44.5,12.5 parent: 2 + - uid: 15897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-44.5 + parent: 2 - proto: SolarPanel entities: - uid: 34 @@ -110695,12 +121661,6 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,5.5 parent: 2 - - uid: 3010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-50.5 - parent: 2 - uid: 5067 components: - type: Transform @@ -110833,132 +121793,11 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,12.5 parent: 2 - - uid: 7093 + - uid: 5815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-50.5 - parent: 2 - - uid: 7225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-57.5 - parent: 2 - - uid: 8234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-58.5 - parent: 2 - - uid: 8324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-58.5 - parent: 2 - - uid: 8332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-57.5 - parent: 2 - - uid: 8348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-52.5 - parent: 2 - - uid: 8412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-57.5 - parent: 2 - - uid: 8419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-49.5 - parent: 2 - - uid: 8450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-60.5 - parent: 2 - - uid: 8451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-58.5 - parent: 2 - - uid: 8453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-57.5 - parent: 2 - - uid: 8454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-60.5 - parent: 2 - - uid: 8472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-59.5 - parent: 2 - - uid: 8481 - components: - - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-59.5 parent: 2 - - uid: 8482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-56.5 - parent: 2 - - uid: 8483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-57.5 - parent: 2 - - uid: 8511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-59.5 - parent: 2 - - uid: 8516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-56.5 - parent: 2 - - uid: 8552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-59.5 - parent: 2 - - uid: 8616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-60.5 - parent: 2 - - uid: 8676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-58.5 - parent: 2 - uid: 8970 components: - type: Transform @@ -111001,6 +121840,21 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-1.5 parent: 2 + - uid: 9395 + components: + - type: Transform + pos: -68.5,-49.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + pos: -68.5,-48.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + pos: -68.5,-51.5 + parent: 2 - uid: 9618 components: - type: Transform @@ -111013,24 +121867,92 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,4.5 parent: 2 - - uid: 9649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-56.5 - parent: 2 - uid: 9669 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,4.5 parent: 2 - - uid: 10467 + - uid: 10094 + components: + - type: Transform + pos: -66.5,-48.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + pos: -64.5,-51.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + pos: -72.5,-51.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + pos: -66.5,-49.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + pos: -68.5,-50.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + pos: -66.5,-51.5 + parent: 2 + - uid: 10406 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-52.5 parent: 2 + - uid: 10407 + components: + - type: Transform + pos: -66.5,-50.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: -68.5,-52.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: -72.5,-52.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + pos: -74.5,-51.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: -70.5,-48.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: -64.5,-48.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: -64.5,-49.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: -64.5,-50.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: -62.5,-51.5 + parent: 2 - uid: 10469 components: - type: Transform @@ -111043,41 +121965,10 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 - - uid: 10476 + - uid: 10471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-60.5 - parent: 2 - - uid: 10480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-60.5 - parent: 2 - - uid: 10481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-51.5 - parent: 2 - - uid: 10482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-48.5 - parent: 2 - - uid: 10483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-49.5 - parent: 2 - - uid: 10493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-49.5 + pos: -70.5,-49.5 parent: 2 - uid: 10494 components: @@ -111085,11 +121976,50 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-2.5 parent: 2 - - uid: 10496 + - uid: 10640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-56.5 + pos: -70.5,-52.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + pos: -70.5,-50.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + pos: -70.5,-51.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: -62.5,-50.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: -62.5,-49.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: -62.5,-48.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + pos: -66.5,-60.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + pos: -68.5,-57.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + pos: -66.5,-58.5 parent: 2 - uid: 10787 components: @@ -111181,42 +122111,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,20.5 parent: 2 - - uid: 11260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-59.5 - parent: 2 - - uid: 11261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-60.5 - parent: 2 - - uid: 11264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-58.5 - parent: 2 - - uid: 11266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-57.5 - parent: 2 - - uid: 11269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-49.5 - parent: 2 - - uid: 11270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-48.5 - parent: 2 - uid: 11283 components: - type: Transform @@ -111313,36 +122207,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-0.5 parent: 2 - - uid: 12233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-58.5 - parent: 2 - - uid: 12235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-59.5 - parent: 2 - - uid: 12239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-51.5 - parent: 2 - - uid: 12240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-52.5 - parent: 2 - - uid: 12243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-50.5 - parent: 2 - uid: 12298 components: - type: Transform @@ -111367,48 +122231,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-2.5 parent: 2 - - uid: 12366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-49.5 - parent: 2 - - uid: 12367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-48.5 - parent: 2 - - uid: 12375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-48.5 - parent: 2 - - uid: 13017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-50.5 - parent: 2 - - uid: 13139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-48.5 - parent: 2 - - uid: 13152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-49.5 - parent: 2 - - uid: 13171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-48.5 - parent: 2 - uid: 14217 components: - type: Transform @@ -111427,11 +122249,20 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-0.5 parent: 2 + - uid: 14283 + components: + - type: Transform + pos: -76.5,-56.5 + parent: 2 - uid: 14881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-51.5 + pos: -72.5,-57.5 + parent: 2 + - uid: 14939 + components: + - type: Transform + pos: -76.5,-57.5 parent: 2 - uid: 15033 components: @@ -111439,6 +122270,26 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-1.5 parent: 2 + - uid: 15034 + components: + - type: Transform + pos: -72.5,-50.5 + parent: 2 + - uid: 15237 + components: + - type: Transform + pos: -66.5,-57.5 + parent: 2 + - uid: 15238 + components: + - type: Transform + pos: -66.5,-56.5 + parent: 2 + - uid: 15295 + components: + - type: Transform + pos: -70.5,-56.5 + parent: 2 - uid: 16106 components: - type: Transform @@ -111451,6 +122302,46 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,-3.5 parent: 2 + - uid: 16957 + components: + - type: Transform + pos: -70.5,-59.5 + parent: 2 + - uid: 16959 + components: + - type: Transform + pos: -70.5,-57.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + pos: -68.5,-56.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + pos: -68.5,-58.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + pos: -68.5,-59.5 + parent: 2 + - uid: 17170 + components: + - type: Transform + pos: -68.5,-60.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + pos: -72.5,-56.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + pos: -64.5,-52.5 + parent: 2 - uid: 17298 components: - type: Transform @@ -111493,6 +122384,11 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,0.5 parent: 2 + - uid: 17624 + components: + - type: Transform + pos: -62.5,-52.5 + parent: 2 - uid: 17760 components: - type: Transform @@ -111511,6 +122407,16 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,8.5 parent: 2 + - uid: 17780 + components: + - type: Transform + pos: -74.5,-56.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + pos: -74.5,-58.5 + parent: 2 - uid: 17800 components: - type: Transform @@ -111541,6 +122447,16 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,4.5 parent: 2 + - uid: 17808 + components: + - type: Transform + pos: -74.5,-52.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + pos: -74.5,-57.5 + parent: 2 - uid: 17942 components: - type: Transform @@ -111819,59 +122735,65 @@ entities: parent: 2 - proto: SolarPanelBroken entities: - - uid: 16076 + - uid: 5762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-56.5 + pos: -76.5,-51.5 parent: 2 - - uid: 16077 + - uid: 10409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-56.5 + pos: -72.5,-48.5 parent: 2 - - uid: 16867 + - uid: 10410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-50.5 + pos: -72.5,-49.5 parent: 2 - - uid: 17121 + - uid: 10673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-52.5 + pos: -76.5,-52.5 parent: 2 - - uid: 17170 + - uid: 14281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-51.5 + pos: -74.5,-59.5 parent: 2 - - uid: 20154 + - uid: 14282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-52.5 + pos: -76.5,-58.5 parent: 2 - - uid: 20156 + - uid: 15705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-50.5 + pos: -76.5,-50.5 parent: 2 - - uid: 20157 + - uid: 15714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-52.5 + pos: -70.5,-60.5 parent: 2 - - uid: 20158 + - uid: 16901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-51.5 + pos: -72.5,-58.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: -74.5,-49.5 + parent: 2 + - uid: 16958 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: -74.5,-48.5 parent: 2 - uid: 20159 components: @@ -111976,16 +122898,16 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 10505 - components: - - type: Transform - pos: -70.5,-54.5 - parent: 2 - uid: 11502 components: - type: Transform pos: -57.5,23.5 parent: 2 + - uid: 16918 + components: + - type: Transform + pos: -78.5,-54.5 + parent: 2 - uid: 17299 components: - type: Transform @@ -112015,6 +122937,11 @@ entities: - type: Transform pos: -0.20342517,23.545658 parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -28.98412,-45.744713 + parent: 2 - uid: 1544 components: - type: Transform @@ -112040,11 +122967,6 @@ entities: - type: Transform pos: -0.5473455,23.754135 parent: 2 - - uid: 11290 - components: - - type: Transform - pos: 22.358122,-40.464725 - parent: 2 - uid: 14149 components: - type: Transform @@ -112057,25 +122979,20 @@ entities: - type: Transform pos: 46.476448,-33.315113 parent: 2 -- proto: SpaceCash1000 - entities: - - uid: 15819 + - uid: 22042 components: - type: Transform - pos: 10.122962,3.7327852 + pos: 20.460146,-4.696697 + parent: 2 +- proto: SpaceCash1000 + entities: + - uid: 8247 + components: + - type: Transform + pos: -30.403597,-59.283337 parent: 2 - proto: SpacemenFigureSpawner entities: - - uid: 3825 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 2 - - uid: 3826 - components: - - type: Transform - pos: 20.5,-39.5 - parent: 2 - uid: 5986 components: - type: Transform @@ -112091,6 +123008,16 @@ entities: - type: Transform pos: 21.5,-50.5 parent: 2 + - uid: 6301 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 2 - proto: SpaceVillainArcadeComputerCircuitboard entities: - uid: 8879 @@ -112098,10 +123025,10 @@ entities: - type: Transform pos: 47.48892,-12.3788 parent: 2 - - uid: 18857 + - uid: 9538 components: - type: Transform - pos: 15.553789,-19.44597 + pos: 4.4929867,-19.3717 parent: 2 - proto: SpawnMechRipley entities: @@ -112158,41 +123085,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,30.5 parent: 2 - - uid: 4044 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 2 - - uid: 5696 - components: - - type: Transform - pos: 6.5,-45.5 - parent: 2 - - uid: 6939 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 2 - - uid: 7433 - components: - - type: Transform - pos: -41.5,-42.5 - parent: 2 - - uid: 7486 - components: - - type: Transform - pos: -40.5,-41.5 - parent: 2 - - uid: 7725 - components: - - type: Transform - pos: -38.5,-41.5 - parent: 2 - - uid: 14275 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 2 - uid: 17326 components: - type: Transform @@ -112207,17 +123099,17 @@ entities: parent: 2 - proto: SpawnMobCatException entities: - - uid: 16098 + - uid: 13082 components: - type: Transform - pos: -42.5,-33.5 + pos: -49.5,-24.5 parent: 2 - proto: SpawnMobCatRuntime entities: - - uid: 12706 + - uid: 13012 components: - type: Transform - pos: -42.5,-35.5 + pos: -47.5,-24.5 parent: 2 - proto: SpawnMobCorgi entities: @@ -112228,10 +123120,10 @@ entities: parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 2113 + - uid: 7028 components: - type: Transform - pos: -2.5,-2.5 + pos: 1.5,-2.5 parent: 2 - proto: SpawnMobFoxRenault entities: @@ -112240,24 +123132,6 @@ entities: - type: Transform pos: -23.5,-53.5 parent: 2 -- proto: SpawnMobFrog - entities: - - uid: 3261 - components: - - type: Transform - pos: -41.5,-41.5 - parent: 2 - - uid: 3418 - components: - - type: Transform - pos: -39.5,-41.5 - parent: 2 - - uid: 15681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 2 - proto: SpawnMobKangarooWillow entities: - uid: 20136 @@ -112267,11 +123141,10 @@ entities: parent: 2 - proto: SpawnMobLizard entities: - - uid: 12860 + - uid: 10632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 + pos: 12.5,-40.5 parent: 2 - proto: SpawnMobMcGriff entities: @@ -112282,17 +123155,17 @@ entities: parent: 2 - proto: SpawnMobMedibot entities: - - uid: 4836 + - uid: 21310 components: - type: Transform - pos: -38.5,-22.5 + pos: -42.5,-29.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 14499 + - uid: 20395 components: - type: Transform - pos: -2.5,-44.5 + pos: -1.5,-44.5 parent: 2 - proto: SpawnMobMouse entities: @@ -112306,11 +123179,6 @@ entities: - type: Transform pos: -12.5,-27.5 parent: 2 - - uid: 20710 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - proto: SpawnMobParrot entities: - uid: 16167 @@ -112318,15 +123186,13 @@ entities: - type: Transform pos: -7.5,-25.5 parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 4204 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - proto: SpawnMobRaccoonMorticia entities: + - uid: 2142 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 - uid: 17535 components: - type: Transform @@ -112334,19 +123200,19 @@ entities: parent: 2 - proto: SpawnMobReindeerBuck entities: - - uid: 5924 + - uid: 61 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,14.5 + rot: 1.5707963267948966 rad + pos: -3.5,-53.5 parent: 2 - proto: SpawnMobReindeerDoe entities: - - uid: 8861 + - uid: 10952 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,16.5 + pos: 6.5,-53.5 parent: 2 - proto: SpawnMobShiva entities: @@ -112371,10 +123237,10 @@ entities: parent: 2 - proto: SpawnMobWalter entities: - - uid: 10926 + - uid: 12182 components: - type: Transform - pos: -33.5,-37.5 + pos: -37.5,-38.5 parent: 2 - proto: SpawnPointAtmos entities: @@ -112395,15 +123261,15 @@ entities: parent: 2 - proto: SpawnPointBartender entities: - - uid: 3720 + - uid: 20192 components: - type: Transform - pos: -4.5,-44.5 + pos: 2.5,-44.5 parent: 2 - - uid: 3721 + - uid: 22131 components: - type: Transform - pos: -3.5,-44.5 + pos: -0.5,-44.5 parent: 2 - proto: SpawnPointBorg entities: @@ -112509,20 +123375,25 @@ entities: parent: 2 - proto: SpawnPointChemist entities: - - uid: 17252 + - uid: 15321 components: - type: Transform - pos: -29.5,-34.5 + pos: -30.5,-37.5 parent: 2 - - uid: 17253 + - uid: 15325 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 15326 components: - type: Transform pos: -29.5,-35.5 parent: 2 - - uid: 17254 + - uid: 15327 components: - type: Transform - pos: -33.5,-34.5 + pos: -30.5,-35.5 parent: 2 - proto: SpawnPointChiefEngineer entities: @@ -112533,10 +123404,10 @@ entities: parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 11334 + - uid: 21300 components: - type: Transform - pos: -41.5,-38.5 + pos: -53.5,-22.5 parent: 2 - proto: SpawnPointClown entities: @@ -112554,11 +123425,6 @@ entities: parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 7608 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 2 - uid: 17257 components: - type: Transform @@ -112573,42 +123439,20 @@ entities: parent: 2 - proto: SpawnPointJanitor entities: - - uid: 17249 + - uid: 20500 components: - type: Transform - pos: 28.5,1.5 + pos: 26.5,0.5 parent: 2 - - uid: 17250 + - uid: 21459 components: - type: Transform - pos: 28.5,3.5 + pos: 27.5,2.5 parent: 2 - - uid: 20669 + - uid: 21762 components: - type: Transform - pos: 28.5,0.5 - parent: 2 -- proto: SpawnPointLatejoin - entities: - - uid: 17217 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 2 - - uid: 17258 - components: - - type: Transform - pos: 11.5,-65.5 - parent: 2 - - uid: 17259 - components: - - type: Transform - pos: 11.5,-64.5 - parent: 2 - - uid: 17260 - components: - - type: Transform - pos: -8.5,-65.5 + pos: 25.5,2.5 parent: 2 - proto: SpawnPointLawyer entities: @@ -112624,64 +123468,74 @@ entities: parent: 2 - proto: SpawnPointLibrarian entities: - - uid: 3827 + - uid: 952 components: - type: Transform - pos: 15.5,-37.5 - parent: 2 - - uid: 3828 - components: - - type: Transform - pos: 19.5,-36.5 + pos: 21.5,-39.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 11464 + - uid: 3656 components: - type: Transform - pos: -44.5,-37.5 + pos: -48.5,-30.5 parent: 2 - - uid: 11465 + - uid: 3806 components: - type: Transform - pos: -44.5,-36.5 + pos: -43.5,-29.5 parent: 2 - - uid: 18000 + - uid: 3808 components: - type: Transform - pos: -39.5,-22.5 + pos: -41.5,-29.5 parent: 2 - - uid: 18001 + - uid: 3809 components: - type: Transform - pos: -37.5,-22.5 + pos: -37.5,-23.5 parent: 2 - - uid: 18052 + - uid: 6534 components: - type: Transform - pos: -44.5,-32.5 + pos: -48.5,-29.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: -36.5,-23.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 3682 + - uid: 22186 components: - type: Transform - pos: -44.5,-34.5 + pos: -43.5,-30.5 parent: 2 - - uid: 5024 + - uid: 22187 components: - type: Transform - pos: -44.5,-33.5 + pos: -41.5,-30.5 parent: 2 - - uid: 18002 + - uid: 22188 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 2 + - uid: 22189 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 2 + - uid: 22190 components: - type: Transform pos: -38.5,-23.5 parent: 2 - - uid: 18003 + - uid: 22191 components: - type: Transform - pos: -38.5,-21.5 + pos: -35.5,-23.5 parent: 2 - proto: SpawnPointMime entities: @@ -112709,30 +123563,30 @@ entities: parent: 2 - proto: SpawnPointObserver entities: - - uid: 15746 + - uid: 21116 components: - type: Transform - pos: 1.5,-49.5 + pos: 1.5,-50.5 parent: 2 - proto: SpawnPointParamedic entities: - - uid: 10486 + - uid: 12311 components: - type: Transform - pos: -30.5,-26.5 + pos: -28.5,-22.5 parent: 2 - - uid: 10725 + - uid: 12319 components: - type: Transform - pos: -31.5,-26.5 - parent: 2 - - uid: 10731 - components: - - type: Transform - pos: -29.5,-26.5 + pos: -29.5,-22.5 parent: 2 - proto: SpawnPointPassenger entities: + - uid: 194 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 - uid: 11013 components: - type: Transform @@ -112753,31 +123607,6 @@ entities: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 16168 - components: - - type: Transform - pos: 23.5,-40.5 - parent: 2 - - uid: 16169 - components: - - type: Transform - pos: 22.5,-41.5 - parent: 2 - - uid: 16170 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 2 - - uid: 16171 - components: - - type: Transform - pos: 1.5,-48.5 - parent: 2 - - uid: 16172 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 2 - uid: 16173 components: - type: Transform @@ -112793,11 +123622,6 @@ entities: - type: Transform pos: -17.5,-23.5 parent: 2 - - uid: 16178 - components: - - type: Transform - pos: 18.5,7.5 - parent: 2 - uid: 16181 components: - type: Transform @@ -112848,27 +123672,72 @@ entities: - type: Transform pos: 20.5,-50.5 parent: 2 - - uid: 17650 + - uid: 21114 components: - type: Transform - pos: 30.5,27.5 + pos: 1.5,-52.5 parent: 2 - - uid: 17652 + - uid: 21115 components: - type: Transform - pos: 30.5,24.5 + pos: 2.5,-51.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 21952 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 21953 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 22518 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 22519 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 22520 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 22521 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - uid: 22522 + components: + - type: Transform + pos: -29.5,-51.5 parent: 2 - proto: SpawnPointPsychologist entities: - - uid: 17262 + - uid: 10505 components: - type: Transform - pos: -33.5,-44.5 + pos: -37.5,-54.5 parent: 2 - - uid: 17263 + - uid: 12563 components: - type: Transform - pos: -32.5,-45.5 + pos: -37.5,-52.5 parent: 2 - proto: SpawnPointQuartermaster entities: @@ -112879,11 +123748,6 @@ entities: parent: 2 - proto: SpawnPointReporter entities: - - uid: 3877 - components: - - type: Transform - pos: 20.5,-36.5 - parent: 2 - uid: 3878 components: - type: Transform @@ -112925,20 +123789,20 @@ entities: parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 17459 + - uid: 22477 components: - type: Transform - pos: 13.5,23.5 + pos: 11.5,27.5 parent: 2 - - uid: 17460 + - uid: 22478 components: - type: Transform - pos: 14.5,23.5 + pos: 12.5,27.5 parent: 2 - - uid: 17461 + - uid: 22480 components: - type: Transform - pos: 15.5,23.5 + pos: 13.5,27.5 parent: 2 - proto: SpawnPointScientist entities: @@ -113003,54 +123867,54 @@ entities: parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 15300 + - uid: 21873 components: - type: Transform - pos: -9.5,-41.5 + pos: -8.5,-38.5 parent: 2 - - uid: 15658 + - uid: 22516 components: - type: Transform - pos: -8.5,-41.5 + pos: -8.5,-39.5 parent: 2 - - uid: 20155 + - uid: 22517 components: - type: Transform - pos: -7.5,-41.5 + pos: -8.5,-40.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 5541 + - uid: 2128 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 4072 components: - type: Transform pos: -1.5,-14.5 parent: 2 - - uid: 5550 + - uid: 4096 components: - type: Transform - pos: -1.5,-13.5 - parent: 2 - - uid: 7035 - components: - - type: Transform - pos: -1.5,-15.5 + pos: -0.5,-14.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 5870 + - uid: 2387 components: - type: Transform - pos: -4.5,-15.5 + pos: 0.5,-21.5 parent: 2 - - uid: 6940 + - uid: 2410 components: - type: Transform - pos: -4.5,-14.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - pos: -4.5,-13.5 + pos: 0.5,-18.5 parent: 2 - proto: SpawnPointWarden entities: @@ -113059,13 +123923,6 @@ entities: - type: Transform pos: -21.5,-4.5 parent: 2 -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 13199 - components: - - type: Transform - pos: 16.5,3.5 - parent: 2 - proto: SprayBottle entities: - uid: 3499 @@ -113085,11 +123942,6 @@ entities: - type: Transform pos: 1.7120702,-33.15089 parent: 2 - - uid: 3763 - components: - - type: Transform - pos: 0.7823801,-45.45515 - parent: 2 - uid: 5911 components: - type: Transform @@ -113108,36 +123960,29 @@ entities: - uid: 9411 components: - type: Transform - pos: 29.681166,3.766048 + pos: 24.486702,0.22927201 parent: 2 - uid: 9412 components: - type: Transform - pos: 29.719204,4.0160723 + pos: 24.278265,0.21884787 parent: 2 - uid: 9413 components: - type: Transform - pos: 29.545681,4.245547 - parent: 2 -- proto: SprayBottleWater - entities: - - uid: 17541 - components: - - type: Transform - pos: 14.197013,-2.5043328 + pos: 24.392906,0.38563025 parent: 2 - proto: SprayPainter entities: - uid: 3987 components: - type: Transform - pos: 20.488756,-39.273766 + pos: 21.592346,-41.32462 parent: 2 - uid: 4717 components: - type: Transform - pos: -5.5797024,-10.352867 + pos: -5.501354,-10.355706 parent: 2 - proto: StairDark entities: @@ -113193,12 +124038,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-42.5 parent: 2 - - uid: 7487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-47.5 - parent: 2 - uid: 9014 components: - type: Transform @@ -113219,79 +124058,11 @@ entities: - type: Transform pos: -16.5,1.5 parent: 2 - - uid: 12315 - components: - - type: Transform - pos: 14.5,9.5 - parent: 2 - - uid: 12316 - components: - - type: Transform - pos: 15.5,9.5 - parent: 2 - - uid: 12317 - components: - - type: Transform - pos: 16.5,9.5 - parent: 2 - - uid: 12318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 2 - - uid: 12319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 2 - - uid: 12320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 2 - - uid: 13266 + - uid: 14117 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-49.5 - parent: 2 - - uid: 13267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-48.5 - parent: 2 - - uid: 13268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-47.5 - parent: 2 - - uid: 13269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-49.5 - parent: 2 - - uid: 13270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-48.5 - parent: 2 - - uid: 13271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-47.5 - parent: 2 - - uid: 13274 - components: - - type: Transform - pos: 3.5,-45.5 + pos: -46.5,-45.5 parent: 2 - uid: 14366 components: @@ -113309,58 +124080,20 @@ entities: - type: Transform pos: -14.5,1.5 parent: 2 - - uid: 19025 - components: - - type: Transform - pos: 32.5,0.5 - parent: 2 - - uid: 19026 - components: - - type: Transform - pos: 31.5,0.5 - parent: 2 - - uid: 19027 - components: - - type: Transform - pos: 33.5,0.5 - parent: 2 - proto: StairStageDark entities: - - uid: 818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 2 - - uid: 3751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 2 - uid: 4972 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-42.5 parent: 2 - - uid: 5243 - components: - - type: Transform - pos: -49.5,-31.5 - parent: 2 - uid: 5546 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-42.5 parent: 2 - - uid: 16071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-29.5 - parent: 2 - proto: StairStageWood entities: - uid: 3515 @@ -113384,12 +124117,18 @@ entities: - type: Transform pos: 50.5,10.5 parent: 2 -- proto: StasisBed - entities: - - uid: 4943 + - uid: 10515 components: - type: Transform - pos: -38.5,-26.5 + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 6573 + components: + - type: Transform + pos: -39.5,-29.5 parent: 2 - proto: StationAiUploadComputer entities: @@ -113415,10 +124154,10 @@ entities: parent: 2 - proto: StationMap entities: - - uid: 5100 + - uid: 1684 components: - type: Transform - pos: -25.5,-39.5 + pos: 29.5,-1.5 parent: 2 - uid: 5148 components: @@ -113430,21 +124169,21 @@ entities: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 11455 + - uid: 8454 components: - type: Transform - pos: 30.5,-1.5 + pos: -18.5,-17.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + pos: -25.5,-39.5 parent: 2 - uid: 16663 components: - type: Transform pos: 12.5,-47.5 parent: 2 - - uid: 16664 - components: - - type: Transform - pos: -6.5,-46.5 - parent: 2 - uid: 16667 components: - type: Transform @@ -113465,11 +124204,6 @@ entities: - type: Transform pos: 30.5,13.5 parent: 2 - - uid: 16675 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - uid: 16676 components: - type: Transform @@ -113480,15 +124214,10 @@ entities: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 16682 + - uid: 21872 components: - type: Transform - pos: -18.5,-17.5 - parent: 2 - - uid: 19553 - components: - - type: Transform - pos: -30.5,-47.5 + pos: -31.5,-57.5 parent: 2 - proto: StationMapAssembly entities: @@ -113497,6 +124226,29 @@ entities: - type: Transform pos: 71.5,-39.5 parent: 2 +- proto: StationMapBroken + entities: + - uid: 1347 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 +- proto: StatueVenusBlue + entities: + - uid: 10580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 + parent: 2 +- proto: StatueVenusRed + entities: + - uid: 6435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-52.5 + parent: 2 - proto: SteelBench entities: - uid: 683 @@ -113505,17 +124257,16 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-11.5 parent: 2 - - uid: 2259 + - uid: 6290 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-41.5 + pos: 14.5,1.5 parent: 2 - - uid: 2434 + - uid: 6634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-42.5 + pos: 20.5,-4.5 parent: 2 - uid: 8381 components: @@ -113541,11 +124292,17 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-11.5 parent: 2 - - uid: 9596 + - uid: 9591 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-11.5 + pos: 15.5,0.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-11.5 parent: 2 - uid: 18897 components: @@ -113553,6 +124310,11 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-12.5 parent: 2 + - uid: 21837 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 - proto: Stool entities: - uid: 3803 @@ -113573,44 +124335,14 @@ entities: rot: -1.5707963267948966 rad pos: 35.355778,-9.333347 parent: 2 - - uid: 6310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.652184,1.584077 - parent: 2 - - uid: 7614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.439132,-61.18458 - parent: 2 - uid: 8882 components: - type: Transform rot: 3.141592653589793 rad pos: 47.478497,-12.295409 parent: 2 - - uid: 9131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.502296,11.696904 - parent: 2 - - uid: 10651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.609833,-53.361378 - parent: 2 - proto: StoolBar entities: - - uid: 71 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-52.5 - parent: 2 - uid: 132 components: - type: Transform @@ -113674,11 +124406,11 @@ entities: rot: 3.141592653589793 rad pos: 45.5,9.5 parent: 2 - - uid: 11114 + - uid: 8317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-52.5 + rot: 1.5707963267948966 rad + pos: -7.5,-44.5 parent: 2 - uid: 11257 components: @@ -113702,17 +124434,35 @@ entities: - type: Transform pos: 72.5,-61.5 parent: 2 + - uid: 14986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-47.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-47.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-47.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-47.5 + parent: 2 - uid: 15019 components: - type: Transform pos: 73.5,-61.5 parent: 2 - - uid: 15668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-52.5 - parent: 2 - uid: 16213 components: - type: Transform @@ -113732,11 +124482,6 @@ entities: parent: 2 - proto: StorageCanister entities: - - uid: 1469 - components: - - type: Transform - pos: 3.5,4.5 - parent: 2 - uid: 2121 components: - type: Transform @@ -113747,26 +124492,36 @@ entities: - type: Transform pos: 26.5,-43.5 parent: 2 - - uid: 19990 + - uid: 6276 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 19991 + - uid: 7066 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 10497 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 20735 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 - - uid: 20736 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - proto: StrangePill entities: - uid: 18971 @@ -113779,6 +124534,18 @@ entities: - type: Transform pos: -25.723806,23.681719 parent: 2 +- proto: Stunbaton + entities: + - uid: 3561 + components: + - type: Transform + pos: -20.47044,6.5382667 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: -20.720564,6.5591145 + parent: 2 - proto: SubstationBasic entities: - uid: 798 @@ -113788,20 +124555,6 @@ entities: - type: Transform pos: -11.5,25.5 parent: 2 - - uid: 1525 - components: - - type: MetaData - name: Tech Vault Substation - - type: Transform - pos: 16.5,-19.5 - parent: 2 - - uid: 1639 - components: - - type: MetaData - name: North Maints Substation - - type: Transform - pos: 23.5,14.5 - parent: 2 - uid: 1692 components: - type: MetaData @@ -113809,13 +124562,6 @@ entities: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 2248 - components: - - type: MetaData - name: North East Substation - - type: Transform - pos: 36.5,12.5 - parent: 2 - uid: 2347 components: - type: MetaData @@ -113851,20 +124597,6 @@ entities: - type: Transform pos: 25.5,-18.5 parent: 2 - - uid: 6498 - components: - - type: MetaData - name: Telecoms Substation - - type: Transform - pos: 24.5,3.5 - parent: 2 - - uid: 6645 - components: - - type: MetaData - name: Gravity Generator Substation - - type: Transform - pos: 21.5,-11.5 - parent: 2 - uid: 7425 components: - type: MetaData @@ -113872,17 +124604,10 @@ entities: - type: Transform pos: 28.5,-50.5 parent: 2 - - uid: 8008 - components: - - type: MetaData - name: Medical North Substation - - type: Transform - pos: -27.5,-18.5 - parent: 2 - uid: 8780 components: - type: MetaData - name: North East Solars Substation + name: Solars - North East Substation - type: Transform pos: 44.5,3.5 parent: 2 @@ -113893,12 +124618,52 @@ entities: - type: Transform pos: -28.5,22.5 parent: 2 - - uid: 10396 + - uid: 10154 components: - type: MetaData - name: South West Solars Substation + name: Medical Substation - type: Transform - pos: -43.5,-53.5 + pos: -29.5,-18.5 + parent: 2 + - uid: 12610 + components: + - type: MetaData + name: Telecoms Substation + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 13303 + components: + - type: MetaData + name: Arrivals Substation + - type: Transform + pos: 14.5,-64.5 + parent: 2 + - uid: 13349 + components: + - type: MetaData + name: Gravity Substation + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 15804 + components: + - type: MetaData + name: Solars - South West Substation + - type: Transform + pos: -55.5,-60.5 + parent: 2 + - uid: 22092 + components: + - type: MetaData + name: Salvage Substation + - type: Transform + pos: 26.5,19.5 parent: 2 - proto: SubstationBasicEmpty entities: @@ -113937,110 +124702,107 @@ entities: - type: Transform pos: -5.5,-25.5 parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 12946 + components: + - type: Transform + pos: -50.5,-23.5 + parent: 2 - proto: SuitStorageEngi entities: - - uid: 2754 + - uid: 1635 components: - type: Transform - pos: -0.5,-15.5 - parent: 2 - - uid: 2755 - components: - - type: Transform - pos: -0.5,-14.5 + pos: 1.5,-21.5 parent: 2 - uid: 5341 components: - type: Transform pos: -34.5,22.5 parent: 2 - - uid: 9950 + - uid: 9547 components: - type: Transform - pos: -0.5,-12.5 + pos: 1.5,-18.5 parent: 2 - - uid: 15035 + - uid: 10077 components: - type: Transform - pos: -0.5,-13.5 + pos: 0.5,-15.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + pos: 0.5,-14.5 parent: 2 - proto: SuitStorageEVA entities: - - uid: 15219 + - uid: 429 components: - type: Transform - pos: -25.5,-15.5 + pos: -37.5,-14.5 parent: 2 - proto: SuitStorageEVAAlternate entities: - - uid: 4633 + - uid: 2318 components: - type: Transform - pos: -4.5,-54.5 + pos: -11.5,-56.5 parent: 2 - - uid: 8206 + - uid: 4166 components: - type: Transform - pos: -4.5,-55.5 + pos: -0.5,-57.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: -2.5,-55.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: 1.5,-55.5 parent: 2 - uid: 10484 components: - type: Transform pos: -54.5,-11.5 parent: 2 - - uid: 11901 + - uid: 19204 components: - type: Transform - pos: -4.5,-56.5 - parent: 2 - - uid: 12521 - components: - - type: Transform - pos: -4.5,-53.5 + pos: 1.5,-57.5 parent: 2 - proto: SuitStorageEVAEmergency entities: - - uid: 5470 + - uid: 6392 components: - type: Transform - pos: -31.5,-1.5 + pos: 9.5,-77.5 parent: 2 - - uid: 5511 + - uid: 6525 components: - type: Transform - pos: -11.5,-56.5 - parent: 2 - - uid: 7022 - components: - - type: Transform - pos: -10.5,-56.5 - parent: 2 - - uid: 10009 - components: - - type: Transform - pos: 52.5,-33.5 - parent: 2 - - uid: 12884 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 2 - - uid: 18726 - components: - - type: Transform - pos: 51.5,-33.5 + pos: -6.5,-77.5 parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 13136 + - uid: 8465 components: - type: Transform - pos: -29.5,-3.5 + pos: -30.5,-5.5 parent: 2 - - uid: 20723 + - uid: 11806 components: - type: Transform - pos: -28.5,-3.5 + pos: -30.5,-3.5 parent: 2 - proto: SuitStorageHOS entities: @@ -114082,6 +124844,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Bridge - Entrance + - uid: 4843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-66.5 + parent: 2 + - type: SurveillanceCamera + id: Vault - Outside South - uid: 5064 components: - type: Transform @@ -114089,14 +124859,14 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Outside North East - - uid: 5216 + - uid: 5663 components: - - type: MetaData - name: AI Chute - Outside Airlock - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-13.5 + rot: 1.5707963267948966 rad + pos: -28.5,-61.5 parent: 2 + - type: SurveillanceCamera + id: Vault - Inside - uid: 8020 components: - type: Transform @@ -114120,14 +124890,6 @@ entities: parent: 2 - type: SurveillanceCamera id: HoP's Office - - uid: 8317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-15.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Outside South East - uid: 10451 components: - type: Transform @@ -114135,22 +124897,6 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Foyer - - uid: 10460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 2 - - type: SurveillanceCamera - id: Gravity Generator - - uid: 11000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 2 - - type: SurveillanceCamera - id: AI Chute - Entrance - uid: 11004 components: - type: Transform @@ -114158,14 +124904,6 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Upload - - uid: 11787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,0.5 - parent: 2 - - type: SurveillanceCamera - id: Telecoms - uid: 14164 components: - type: Transform @@ -114180,14 +124918,6 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Core South East - - uid: 14354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 2 - - type: SurveillanceCamera - id: Vault - uid: 17245 components: - type: Transform @@ -114196,14 +124926,6 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Power - - uid: 17949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-51.5 - parent: 2 - - type: SurveillanceCamera - id: EVA - uid: 17969 components: - type: Transform @@ -114242,38 +124964,32 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Core North West - - uid: 20399 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - - type: SurveillanceCamera - id: Tech Vault - - uid: 20613 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 2 - - type: SurveillanceCamera - id: AI Chute - Bin -- proto: SurveillanceCameraEngineering - entities: - - uid: 402 + - uid: 21154 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-1.5 + pos: -0.5,-55.5 parent: 2 - type: SurveillanceCamera - id: Atmos West - - uid: 1298 + id: EVA + - uid: 21276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-53.5 + rot: 3.141592653589793 rad + pos: -54.5,-15.5 parent: 2 - type: SurveillanceCamera - id: Solars - South West + id: AI Satellite - Outside South East + - uid: 22148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-44.5 + parent: 2 + - type: SurveillanceCamera + id: Conference Room +- proto: SurveillanceCameraEngineering + entities: - uid: 5456 components: - type: Transform @@ -114282,59 +124998,22 @@ entities: parent: 2 - type: SurveillanceCamera id: Solars - North West - - uid: 8669 - components: - - type: Transform - pos: -34.5,-55.5 - parent: 2 - - type: SurveillanceCamera - id: Shuttle Building Storage - - uid: 10462 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 2 - - type: SurveillanceCamera - id: Station Anchor - - uid: 11069 + - uid: 7864 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-16.5 + pos: 5.5,-16.5 parent: 2 - type: SurveillanceCamera - id: Materials Room - - uid: 11425 + id: Tech Vault + - uid: 7872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-19.5 + rot: 3.141592653589793 rad + pos: 14.5,-17.5 parent: 2 - type: SurveillanceCamera - id: AME Room - - uid: 11426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 2 - - type: SurveillanceCamera - id: SMES Power Bank - - uid: 11435 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 2 - - type: SurveillanceCamera - id: Lockers - - uid: 18047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 2 - - type: SurveillanceCamera - id: TEG West + id: Telecoms - uid: 18049 components: - type: MetaData @@ -114352,8 +125031,55 @@ entities: parent: 2 - type: SurveillanceCamera id: Solars - North East + - uid: 21194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 2 + - type: SurveillanceCamera + id: Station Anchor + - uid: 21403 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - type: SurveillanceCamera + id: Gravity Generator + - uid: 21448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: SurveillanceCamera + id: Atmos - East + - uid: 21608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-60.5 + parent: 2 + - type: SurveillanceCamera + id: Solars - South West - West Side - proto: SurveillanceCameraGeneral entities: + - uid: 526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-72.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals West Arm - South + - uid: 1180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Outside Clothing - uid: 7726 components: - type: Transform @@ -114362,37 +125088,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Disposals - - uid: 7831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,5.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Detective's Office - - uid: 7978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,26.5 - parent: 2 - - type: SurveillanceCamera - id: Docking Arm - Seating - - uid: 8307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-59.5 - parent: 2 - - type: SurveillanceCamera - id: Shuttle Construction - Materials - - uid: 8550 - components: - - type: Transform - pos: 22.5,-4.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Grav and Comms - uid: 8554 components: - type: Transform @@ -114401,30 +125096,29 @@ entities: parent: 2 - type: SurveillanceCamera id: Evac - North - - uid: 10450 + - uid: 10076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,43.5 + rot: 3.141592653589793 rad + pos: 11.5,-81.5 parent: 2 - type: SurveillanceCamera - id: Docking Arm - Outside NW - - uid: 10479 + id: Arrivals East Arm - Outside + - uid: 10491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-68.5 + pos: 12.5,-44.5 parent: 2 - type: SurveillanceCamera - id: Shuttle Construction - Airlock - - uid: 10489 + id: Hall - Outside Cryo + - uid: 10584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-45.5 + rot: -1.5707963267948966 rad + pos: -8.5,-50.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Psych + id: Arrivals West Arm - North - uid: 10656 components: - type: Transform @@ -114433,14 +125127,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Hall - Outside Engineering - - uid: 10719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Medical - uid: 11045 components: - type: Transform @@ -114448,38 +125134,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Tool Room - - uid: 11050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,40.5 - parent: 2 - - type: SurveillanceCamera - id: Docking Arm - Outside NE - - uid: 11060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,22.5 - parent: 2 - - type: SurveillanceCamera - id: Docking Arm - Outside SE - - uid: 11063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-3.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - NE Intersection - - uid: 11064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,39.5 - parent: 2 - - type: SurveillanceCamera - id: Docking Arm - North - uid: 11070 components: - type: Transform @@ -114487,22 +125141,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Hall - Outside Evac - - uid: 11273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Science - - uid: 11274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-47.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - East Arrivals - uid: 11277 components: - type: Transform @@ -114518,37 +125156,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Hall - Outside HoP - - uid: 11629 + - uid: 11460 components: - type: Transform - pos: 16.5,-44.5 + rot: 3.141592653589793 rad + pos: -8.5,-81.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Cryo - - uid: 13257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-37.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Library - - uid: 14238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,4.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Vault - - uid: 16332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-11.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - West of Chapel + id: Arrivals West Arm - Outside - uid: 17484 components: - type: Transform @@ -114557,14 +125172,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Garden - - uid: 17970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-49.5 - parent: 2 - - type: SurveillanceCamera - id: Arrivals West - Outside EVA - uid: 18005 components: - type: Transform @@ -114573,14 +125180,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Hall - Outside Security - - uid: 18048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-20.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Tools Room - uid: 18056 components: - type: Transform @@ -114595,47 +125194,7 @@ entities: pos: -11.5,10.5 parent: 2 - type: SurveillanceCamera - id: Hall - NW Garden - - uid: 20392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-64.5 - parent: 2 - - type: SurveillanceCamera - id: Arrivals West - Airlocks - - uid: 20393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-64.5 - parent: 2 - - type: SurveillanceCamera - id: Arrivals East - Airlocks - - uid: 20394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-54.5 - parent: 2 - - type: SurveillanceCamera - id: Arrivals East - Seating - - uid: 20395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-52.5 - parent: 2 - - type: SurveillanceCamera - id: Arrivals West - EVA - - uid: 20397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 2 - - type: SurveillanceCamera - id: Clothing Vendors + id: Hall - North West Garden - uid: 20398 components: - type: Transform @@ -114644,14 +125203,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Banana Phone - - uid: 20400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-13.5 - parent: 2 - - type: SurveillanceCamera - id: Chapel - uid: 20401 components: - type: Transform @@ -114668,106 +125219,242 @@ entities: parent: 2 - type: SurveillanceCamera id: Evac - East - - uid: 20409 + - uid: 21138 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,18.5 + pos: -6.5,-60.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside North Airlock + id: Arrivals West Arm - Center + - uid: 21139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-60.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals East Arm - Center + - uid: 21140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-50.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals East Arm - North + - uid: 21143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-72.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals East Arm - South + - uid: 21155 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals Lounge + - uid: 21402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Outside Gravity Generator + - uid: 22057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Detective's Garden + - uid: 22145 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Coffee Hall + - uid: 22147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Cargo Loading Bay + - uid: 22149 + components: + - type: MetaData + name: camera + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-53.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Outside Psychology + - uid: 22151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-78.5 + parent: 2 + - type: SurveillanceCamera + id: Docking Arm - South Gates + - uid: 22152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-82.5 + parent: 2 + - type: SurveillanceCamera + id: Docking Arm - Outside South West + - uid: 22153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-82.5 + parent: 2 + - type: SurveillanceCamera + id: Docking Arm - Outside South East + - uid: 22192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Med Entrance + - uid: 22565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-67.5 + parent: 2 + - type: SurveillanceCamera + id: Docking Arm - North Gate - proto: SurveillanceCameraMedical entities: - - uid: 8422 - components: - - type: Transform - pos: -34.5,-31.5 - parent: 2 - - type: SurveillanceCamera - id: Entrance Hall - - uid: 9548 + - uid: 11147 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-35.5 + pos: 22.5,0.5 parent: 2 - type: SurveillanceCamera - id: South Hall - - uid: 10235 + id: Clinic + - uid: 21317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-40.5 - parent: 2 - - type: SurveillanceCamera - id: Virology - - uid: 10440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-45.5 - parent: 2 - - type: SurveillanceCamera - id: Morgue - - uid: 10723 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - type: SurveillanceCamera - id: Chemistry - - uid: 18050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-24.5 - parent: 2 - - type: SurveillanceCamera - id: Break Area - - uid: 18051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-35.5 - parent: 2 - - type: SurveillanceCamera - id: Lockers - - uid: 18055 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - type: SurveillanceCamera - id: Frog Pond - - uid: 19016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-22.5 - parent: 2 - - type: SurveillanceCamera - id: Cryo Pods - - uid: 20121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-29.5 + rot: -1.5707963267948966 rad + pos: -45.5,-21.5 parent: 2 - type: SurveillanceCamera id: Surgery - - uid: 20406 + - uid: 21324 components: - type: Transform - pos: -31.5,-26.5 + pos: -53.5,-31.5 parent: 2 - type: SurveillanceCamera - id: Paramedic's Office -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 6247 + id: Virology + - uid: 22154 components: - type: Transform - pos: 5.5,-17.5 + rot: 3.141592653589793 rad + pos: -49.5,-43.5 + parent: 2 + - type: SurveillanceCamera + id: Morgue + - uid: 22155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-36.5 + parent: 2 + - type: SurveillanceCamera + id: Aft Hall - Starboard + - uid: 22156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-35.5 + parent: 2 + - type: SurveillanceCamera + id: Cryopods + - uid: 22157 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - type: SurveillanceCamera + id: Chemistry + - uid: 22158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 2 + - type: SurveillanceCamera + id: Waiting Area + - uid: 22159 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 2 + - type: SurveillanceCamera + id: Front Desk + - uid: 22160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-22.5 + parent: 2 + - type: SurveillanceCamera + id: Break Room + - uid: 22161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-29.5 + parent: 2 + - type: SurveillanceCamera + id: Aft Hall - Stern Dock + - uid: 22162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-30.5 + parent: 2 + - type: SurveillanceCamera + id: Medbay - Aft + - uid: 22163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-28.5 + parent: 2 + - type: SurveillanceCamera + id: Foyer +- proto: SurveillanceCameraRouterCircuitboard + entities: + - uid: 2970 + components: + - type: Transform + pos: 6.574911,-16.383217 + parent: 2 +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 13218 + components: + - type: Transform + pos: -10.5,-53.5 parent: 2 - uid: 16582 components: @@ -114776,52 +125463,52 @@ entities: parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 5217 + - uid: 7888 components: - type: Transform - pos: 8.5,-17.5 + pos: 13.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 3372 + - uid: 5687 components: - type: Transform - pos: 5.5,-19.5 + pos: 14.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 3379 + - uid: 12464 components: - type: Transform - pos: 7.5,-17.5 + pos: -55.5,-23.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 1515 + - uid: 24 components: - type: Transform - pos: 8.5,-19.5 + pos: 30.5,-33.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 1460 + - uid: 6887 components: - type: Transform - pos: 9.5,-17.5 + pos: 17.5,-18.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 3374 + - uid: 12986 components: - type: Transform - pos: 6.5,-19.5 + pos: -12.5,-56.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 3170 + - uid: 9297 components: - type: Transform - pos: 9.5,-19.5 + pos: 11.5,-19.5 parent: 2 - proto: SurveillanceCameraScience entities: @@ -114833,14 +125520,6 @@ entities: parent: 2 - type: SurveillanceCamera id: R&D - - uid: 8513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-45.5 - parent: 2 - - type: SurveillanceCamera - id: Artifacts - Cans - uid: 12293 components: - type: Transform @@ -114902,21 +125581,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Foyer - - uid: 3706 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - type: SurveillanceCamera - id: Holding Cell - - uid: 5523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-3.5 - parent: 2 - - type: SurveillanceCamera - id: Perma Entrance - uid: 7830 components: - type: Transform @@ -114970,21 +125634,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Locker Room - - uid: 20503 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 2 - - type: SurveillanceCamera - id: Perma Kitchen - - uid: 20603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-7.5 - parent: 2 - - type: SurveillanceCamera - id: Perma - Outside South - uid: 20614 components: - type: Transform @@ -114995,24 +125644,21 @@ entities: id: Perma - Outside North - proto: SurveillanceCameraService entities: - - uid: 7673 + - uid: 9503 components: - - type: MetaData - name: Janitorial - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,3.5 + pos: 21.5,-41.5 parent: 2 - type: SurveillanceCamera - id: Janitorial + id: Library Desk - uid: 10478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-35.5 + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 parent: 2 - type: SurveillanceCamera - id: Library - Office + id: Reporter's Office - uid: 11279 components: - type: Transform @@ -115021,13 +125667,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Hydroponics - Back - - uid: 11281 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 2 - - type: SurveillanceCamera - id: Hydroponics - Front - uid: 11302 components: - type: Transform @@ -115044,15 +125683,29 @@ entities: parent: 2 - type: SurveillanceCamera id: Kitchen - Back - - uid: 11309 + - uid: 22146 components: - type: Transform - pos: -4.5,-45.5 + pos: 25.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Bar - Front + id: Janitor - proto: SurveillanceCameraSupply entities: + - uid: 1280 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - type: SurveillanceCamera + id: Salvage - Shuttle Yard + - uid: 17404 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - type: SurveillanceCamera + id: Salvage - Magnet - uid: 17482 components: - type: Transform @@ -115069,30 +125722,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Outside QM's Office - - uid: 17485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,23.5 - parent: 2 - - type: SurveillanceCamera - id: Salvage - - uid: 20403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,12.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Cargo - - uid: 20404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,18.5 - parent: 2 - - type: SurveillanceCamera - id: Loading Bay - uid: 20405 components: - type: Transform @@ -115101,20 +125730,28 @@ entities: parent: 2 - type: SurveillanceCamera id: Docking Airlocks - - uid: 20408 + - uid: 22472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,28.5 + parent: 2 + - type: SurveillanceCamera + id: Salvage - Lockers + - uid: 22476 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,29.5 + pos: 14.5,21.5 parent: 2 - type: SurveillanceCamera - id: Salvage - Airlocks + id: Salvage - Processing - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 1254 + - uid: 3506 components: - type: Transform - pos: 5.5,-18.5 + pos: 15.5,-19.5 parent: 2 - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: @@ -115153,6 +125790,27 @@ entities: parent: 2 - proto: Syringe entities: + - uid: 907 + components: + - type: Transform + pos: -29.442802,-46.33888 + parent: 2 + - uid: 12661 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: -41.466064,-39.364727 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: -53.516407,-27.447947 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: -45.478733,-23.540825 + parent: 2 - uid: 18973 components: - type: Transform @@ -115160,15 +125818,11 @@ entities: parent: 2 - proto: Table entities: - - uid: 209 + - uid: 71 components: - type: Transform - pos: -38.5,-2.5 - parent: 2 - - uid: 230 - components: - - type: Transform - pos: 28.5,-16.5 + rot: 3.141592653589793 rad + pos: 13.5,-59.5 parent: 2 - uid: 270 components: @@ -115212,12 +125866,6 @@ entities: - type: Transform pos: -26.5,13.5 parent: 2 - - uid: 474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 2 - uid: 511 components: - type: Transform @@ -115228,12 +125876,6 @@ entities: - type: Transform pos: -27.5,4.5 parent: 2 - - uid: 665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-2.5 - parent: 2 - uid: 722 components: - type: Transform @@ -115244,16 +125886,23 @@ entities: - type: Transform pos: -11.5,19.5 parent: 2 + - uid: 732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-37.5 + parent: 2 - uid: 1091 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,22.5 parent: 2 - - uid: 1183 + - uid: 1134 components: - type: Transform - pos: -6.5,-14.5 + rot: 3.141592653589793 rad + pos: -56.5,-54.5 parent: 2 - uid: 1503 components: @@ -115271,6 +125920,17 @@ entities: - type: Transform pos: 30.5,-35.5 parent: 2 + - uid: 1728 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 - uid: 1829 components: - type: Transform @@ -115310,11 +125970,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,0.5 parent: 2 - - uid: 2762 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 2 - uid: 2924 components: - type: Transform @@ -115332,22 +125987,11 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 - - uid: 3158 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 2 - uid: 3191 components: - type: Transform pos: -13.5,-33.5 parent: 2 - - uid: 3196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-61.5 - parent: 2 - uid: 3225 components: - type: Transform @@ -115374,6 +126018,11 @@ entities: - type: Transform pos: -13.5,-34.5 parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 - uid: 3348 components: - type: Transform @@ -115416,22 +126065,11 @@ entities: - type: Transform pos: -19.5,-39.5 parent: 2 - - uid: 3563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-60.5 - parent: 2 - uid: 3564 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 3595 - components: - - type: Transform - pos: -30.5,-33.5 - parent: 2 - uid: 3623 components: - type: Transform @@ -115442,21 +126080,11 @@ entities: - type: Transform pos: -7.5,-33.5 parent: 2 - - uid: 3635 - components: - - type: Transform - pos: -40.5,-21.5 - parent: 2 - uid: 3844 components: - type: Transform pos: 15.5,-47.5 parent: 2 - - uid: 4110 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 2 - uid: 4161 components: - type: Transform @@ -115467,18 +126095,17 @@ entities: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 4166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-51.5 - parent: 2 - uid: 4209 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-38.5 parent: 2 + - uid: 4241 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 - uid: 4248 components: - type: Transform @@ -115507,11 +126134,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-27.5 parent: 2 - - uid: 4322 - components: - - type: Transform - pos: -45.5,-22.5 - parent: 2 - uid: 4326 components: - type: Transform @@ -115556,47 +126178,16 @@ entities: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 4686 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 4698 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 2 - - uid: 4761 - components: - - type: Transform - pos: -31.5,-59.5 - parent: 2 - - uid: 4763 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 2 - - uid: 4810 - components: - - type: Transform - pos: -28.5,-25.5 - parent: 2 - - uid: 4811 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 2 - - uid: 4947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-25.5 - parent: 2 - - uid: 5002 + - uid: 4762 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-27.5 + pos: 7.5,-19.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: -26.5,-48.5 parent: 2 - uid: 5196 components: @@ -115610,20 +126201,15 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-22.5 parent: 2 - - uid: 5293 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 2 - uid: 5446 components: - type: Transform pos: -0.5,12.5 parent: 2 - - uid: 5549 + - uid: 5502 components: - type: Transform - pos: -27.5,-8.5 + pos: -27.5,-48.5 parent: 2 - uid: 5610 components: @@ -115631,31 +126217,21 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,21.5 parent: 2 - - uid: 5925 - components: - - type: Transform - pos: -40.5,-52.5 - parent: 2 - uid: 5943 components: - type: Transform pos: 6.5,-27.5 parent: 2 - - uid: 6222 + - uid: 6653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-47.5 + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 parent: 2 - - uid: 6312 + - uid: 6677 components: - type: Transform - pos: 25.5,-0.5 - parent: 2 - - uid: 6578 - components: - - type: Transform - pos: 25.5,0.5 + pos: 26.5,-9.5 parent: 2 - uid: 6722 components: @@ -115674,60 +126250,40 @@ entities: - type: Transform pos: -13.5,-17.5 parent: 2 + - uid: 6987 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 - uid: 7002 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-9.5 + pos: -45.5,-29.5 parent: 2 - - uid: 7003 + - uid: 7097 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-9.5 + pos: 14.5,0.5 parent: 2 - - uid: 7012 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 7018 + - uid: 7176 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-14.5 + pos: 10.5,-19.5 parent: 2 - - uid: 7195 - components: - - type: Transform - pos: -33.5,-53.5 - parent: 2 - - uid: 7196 - components: - - type: Transform - pos: -44.5,-45.5 - parent: 2 - - uid: 7198 + - uid: 7617 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-60.5 + pos: 20.5,-6.5 parent: 2 - - uid: 7484 - components: - - type: Transform - pos: -35.5,-53.5 - parent: 2 - - uid: 7485 + - uid: 7626 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-60.5 - parent: 2 - - uid: 7619 - components: - - type: Transform - pos: -40.5,-23.5 + pos: 21.5,-6.5 parent: 2 - uid: 7629 components: @@ -115735,52 +126291,11 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-25.5 parent: 2 - - uid: 7657 + - uid: 8538 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-64.5 - parent: 2 - - uid: 7991 - components: - - type: Transform - pos: -37.5,-24.5 - parent: 2 - - uid: 7994 - components: - - type: Transform - pos: -34.5,-53.5 - parent: 2 - - uid: 8088 - components: - - type: Transform - pos: -51.5,-47.5 - parent: 2 - - uid: 8156 - components: - - type: Transform - pos: -50.5,-47.5 - parent: 2 - - uid: 8160 - components: - - type: Transform - pos: -52.5,-46.5 - parent: 2 - - uid: 8205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-51.5 - parent: 2 - - uid: 8229 - components: - - type: Transform - pos: -44.5,-46.5 - parent: 2 - - uid: 8267 - components: - - type: Transform - pos: -43.5,-45.5 + pos: -3.5,-14.5 parent: 2 - uid: 8599 components: @@ -115788,32 +126303,67 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-2.5 parent: 2 - - uid: 8659 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 2 - uid: 8852 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,22.5 parent: 2 + - uid: 8881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-19.5 + parent: 2 - uid: 9130 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,23.5 parent: 2 - - uid: 9140 + - uid: 9275 components: - type: Transform - pos: -27.5,-7.5 + rot: 1.5707963267948966 rad + pos: 7.5,-16.5 parent: 2 - - uid: 9257 + - uid: 9288 components: - type: Transform - pos: -30.5,-34.5 + pos: -27.5,-21.5 + parent: 2 + - uid: 9289 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 9290 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 9380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-16.5 + parent: 2 + - uid: 9515 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 + - uid: 10191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 parent: 2 - uid: 10439 components: @@ -115821,21 +126371,33 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,15.5 parent: 2 - - uid: 11178 + - uid: 10489 components: - type: Transform - pos: -40.5,-50.5 + pos: -40.5,-30.5 parent: 2 - - uid: 11193 + - uid: 10492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-52.5 + rot: -1.5707963267948966 rad + pos: -52.5,-51.5 parent: 2 - - uid: 11201 + - uid: 10533 components: - type: Transform - pos: -40.5,-51.5 + rot: 1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-36.5 + parent: 2 + - uid: 10915 + components: + - type: Transform + pos: -28.5,-8.5 parent: 2 - uid: 11244 components: @@ -115843,23 +126405,23 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,15.5 parent: 2 + - uid: 11338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-36.5 + parent: 2 - uid: 11416 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-27.5 parent: 2 - - uid: 11604 + - uid: 11437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-58.5 - parent: 2 - - uid: 11605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-59.5 + rot: -1.5707963267948966 rad + pos: -53.5,-51.5 parent: 2 - uid: 11843 components: @@ -115871,22 +126433,66 @@ entities: - type: Transform pos: -10.5,-37.5 parent: 2 + - uid: 11976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-37.5 + parent: 2 - uid: 12152 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,3.5 parent: 2 - - uid: 12427 + - uid: 12338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-34.5 + pos: -28.5,-21.5 parent: 2 - - uid: 12551 + - uid: 12384 components: - type: Transform - pos: 13.5,-17.5 + rot: 3.141592653589793 rad + pos: -44.5,-29.5 + parent: 2 + - uid: 12429 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,8.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + pos: -44.5,-39.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + pos: -43.5,-39.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + pos: 2.5,-57.5 parent: 2 - uid: 12855 components: @@ -115894,51 +126500,56 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-46.5 parent: 2 - - uid: 12857 + - uid: 12918 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-48.5 + pos: -59.5,-30.5 parent: 2 - - uid: 12858 + - uid: 12933 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-48.5 + pos: -59.5,-29.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-28.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-27.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-28.5 parent: 2 - uid: 12983 components: - type: Transform pos: -27.5,6.5 parent: 2 - - uid: 13084 + - uid: 13061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-35.5 - parent: 2 - - uid: 13101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-29.5 + rot: 1.5707963267948966 rad + pos: 10.5,-18.5 parent: 2 - uid: 13194 components: - type: Transform pos: -21.5,6.5 parent: 2 - - uid: 13363 + - uid: 13384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-16.5 - parent: 2 - - uid: 13395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-16.5 + pos: 7.5,-58.5 parent: 2 - uid: 13551 components: @@ -115946,16 +126557,72 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-24.5 parent: 2 - - uid: 13789 + - uid: 13749 components: - type: Transform - pos: 15.5,-57.5 + rot: -1.5707963267948966 rad + pos: -29.5,-24.5 parent: 2 - uid: 13894 components: - type: Transform pos: 53.5,-51.5 parent: 2 + - uid: 14108 + components: + - type: Transform + pos: -49.5,-43.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: -50.5,-43.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + pos: -50.5,-44.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 14764 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 14766 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 14840 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 14841 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 15186 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 - uid: 15376 components: - type: Transform @@ -115968,6 +126635,16 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 + - uid: 15610 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 2 - uid: 16409 components: - type: Transform @@ -116002,12 +126679,6 @@ entities: - type: Transform pos: -61.5,-11.5 parent: 2 - - uid: 16635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 2 - uid: 16879 components: - type: Transform @@ -116020,6 +126691,16 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-75.5 parent: 2 + - uid: 17258 + components: + - type: Transform + pos: 6.5,-89.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 - uid: 17699 components: - type: Transform @@ -116030,10 +126711,10 @@ entities: - type: Transform pos: 48.5,-60.5 parent: 2 - - uid: 18545 + - uid: 17855 components: - type: Transform - pos: -32.5,-57.5 + pos: 34.5,26.5 parent: 2 - uid: 18910 components: @@ -116050,6 +126731,16 @@ entities: - type: Transform pos: 44.5,-75.5 parent: 2 + - uid: 19210 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 2 + - uid: 19217 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 - uid: 19882 components: - type: Transform @@ -116111,6 +126802,33 @@ entities: - type: Transform pos: -11.5,-14.5 parent: 2 + - uid: 21398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 + - uid: 21445 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: 53.5,-52.5 + parent: 2 + - uid: 21757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 + - uid: 22111 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 - proto: TableCarpet entities: - uid: 26 @@ -116151,11 +126869,6 @@ entities: - type: Transform pos: 67.5,-62.5 parent: 2 - - uid: 11297 - components: - - type: Transform - pos: 22.5,-40.5 - parent: 2 - uid: 14295 components: - type: Transform @@ -116173,6 +126886,17 @@ entities: - type: Transform pos: -20.5,-2.5 parent: 2 + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 - uid: 2169 components: - type: Transform @@ -116226,40 +126950,55 @@ entities: - type: Transform pos: 21.5,-23.5 parent: 2 - - uid: 4685 + - uid: 4596 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-28.5 + pos: -27.5,-33.5 parent: 2 - - uid: 4697 + - uid: 6371 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 11265 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-28.5 - parent: 2 - - uid: 6116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - uid: 6120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 + pos: -29.5,-33.5 parent: 2 - uid: 11322 components: - type: Transform pos: -19.5,-2.5 parent: 2 + - uid: 11331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-33.5 + parent: 2 - uid: 11453 components: - type: Transform pos: 15.5,13.5 parent: 2 + - uid: 12009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-26.5 + parent: 2 - uid: 12596 components: - type: Transform @@ -116270,12 +127009,6 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 - - uid: 15775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-32.5 - parent: 2 - uid: 18073 components: - type: Transform @@ -116301,15 +127034,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-42.5 parent: 2 - - uid: 3753 + - uid: 6062 components: - type: Transform - pos: 18.5,-36.5 - parent: 2 - - uid: 3754 - components: - - type: Transform - pos: 18.5,-35.5 + rot: 1.5707963267948966 rad + pos: -36.5,-53.5 parent: 2 - uid: 6147 components: @@ -116346,6 +127075,12 @@ entities: - type: Transform pos: 46.5,11.5 parent: 2 + - uid: 9397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-46.5 + parent: 2 - uid: 11865 components: - type: Transform @@ -116356,6 +127091,12 @@ entities: - type: Transform pos: 71.5,-65.5 parent: 2 + - uid: 14611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-46.5 + parent: 2 - uid: 14721 components: - type: Transform @@ -116386,6 +127127,18 @@ entities: - type: Transform pos: -6.5,-44.5 parent: 2 + - uid: 17970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-46.5 + parent: 2 + - uid: 20188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-46.5 + parent: 2 - proto: TableFancyBlack entities: - uid: 3513 @@ -116442,6 +127195,18 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-11.5 parent: 2 + - uid: 6705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-38.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-38.5 + parent: 2 - uid: 8390 components: - type: Transform @@ -116462,6 +127227,12 @@ entities: - type: Transform pos: -24.5,-51.5 parent: 2 + - uid: 21436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-41.5 + parent: 2 - proto: TableFancyCyan entities: - uid: 2975 @@ -116515,20 +127286,28 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-30.5 parent: 2 + - uid: 7808 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 - proto: TableFrame entities: - - uid: 4024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 2 - - uid: 4345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 2 - uid: 7344 components: - type: Transform @@ -116539,21 +127318,10 @@ entities: - type: Transform pos: 46.5,7.5 parent: 2 - - uid: 8555 + - uid: 15766 components: - type: Transform - pos: 18.5,5.5 - parent: 2 - - uid: 8881 - components: - - type: Transform - pos: 19.5,5.5 - parent: 2 - - uid: 12401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 + pos: 42.5,21.5 parent: 2 - uid: 18808 components: @@ -116589,61 +127357,38 @@ entities: rot: 3.141592653589793 rad pos: 96.5,-29.5 parent: 2 + - uid: 21804 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 - proto: TableGlass entities: - - uid: 5294 + - uid: 1136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-26.5 + pos: 18.5,3.5 parent: 2 - - uid: 5295 + - uid: 13067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-25.5 + pos: -45.5,-24.5 parent: 2 - - uid: 7816 + - uid: 13073 components: - type: Transform - pos: -51.5,-42.5 + pos: -45.5,-23.5 parent: 2 - - uid: 8033 + - uid: 13084 components: - type: Transform - pos: -52.5,-42.5 - parent: 2 - - uid: 8157 - components: - - type: Transform - pos: -52.5,-40.5 - parent: 2 - - uid: 8218 - components: - - type: Transform - pos: -52.5,-41.5 + pos: -45.5,-22.5 parent: 2 - uid: 14015 components: - type: Transform pos: 22.5,-59.5 parent: 2 - - uid: 16420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-23.5 - parent: 2 - - uid: 20739 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 2 - - uid: 20740 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 2 - proto: TablePlasmaGlass entities: - uid: 6734 @@ -116654,6 +127399,12 @@ entities: parent: 2 - proto: TableReinforced entities: + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 2 - uid: 443 components: - type: Transform @@ -116669,15 +127420,10 @@ entities: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 548 + - uid: 836 components: - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 564 - components: - - type: Transform - pos: 9.5,3.5 + pos: -30.5,-64.5 parent: 2 - uid: 851 components: @@ -116707,21 +127453,40 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,16.5 parent: 2 - - uid: 1414 + - uid: 1906 components: - type: Transform - pos: 8.5,6.5 + pos: -28.5,-63.5 parent: 2 - - uid: 1428 + - uid: 1908 components: - type: Transform - pos: 9.5,6.5 + pos: -28.5,-62.5 parent: 2 - - uid: 2845 + - uid: 1909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-32.5 + pos: -28.5,-60.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -28.5,-59.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: -30.5,-63.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: -38.5,-14.5 parent: 2 - uid: 3843 components: @@ -116729,6 +127494,22 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,20.5 parent: 2 + - uid: 4874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: -30.5,-58.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: -30.5,-59.5 + parent: 2 - uid: 5332 components: - type: Transform @@ -116755,16 +127536,10 @@ entities: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 10688 + - uid: 9610 components: - type: Transform - pos: -33.5,-50.5 - parent: 2 - - uid: 11902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-33.5 + pos: 22.5,2.5 parent: 2 - uid: 14290 components: @@ -116777,18 +127552,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,22.5 parent: 2 - - uid: 14410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-27.5 - parent: 2 - - uid: 14411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-28.5 - parent: 2 - uid: 18466 components: - type: Transform @@ -116801,8 +127564,31 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-28.5 parent: 2 + - uid: 20675 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 21969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - uid: 22644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,15.5 + parent: 2 - proto: TableReinforcedGlass entities: + - uid: 2080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-86.5 + parent: 2 - uid: 10045 components: - type: Transform @@ -116821,55 +127607,48 @@ entities: rot: 1.5707963267948966 rad pos: 74.5,-41.5 parent: 2 + - uid: 12824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-87.5 + parent: 2 - proto: TableWood entities: + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 2 - uid: 165 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,4.5 parent: 2 + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-43.5 + parent: 2 - uid: 556 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,2.5 parent: 2 - - uid: 1011 + - uid: 1629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-51.5 + rot: 3.141592653589793 rad + pos: -31.5,-53.5 parent: 2 - - uid: 1015 + - uid: 1836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-51.5 - parent: 2 - - uid: 2044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-51.5 - parent: 2 - - uid: 2045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-55.5 - parent: 2 - - uid: 2058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-55.5 - parent: 2 - - uid: 2523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 + pos: -35.5,-80.5 parent: 2 - uid: 2529 components: @@ -116893,21 +127672,26 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,15.5 parent: 2 + - uid: 3531 + components: + - type: Transform + pos: -9.5,-64.5 + parent: 2 - uid: 3584 components: - type: Transform pos: 13.5,-32.5 parent: 2 - - uid: 3604 - components: - - type: Transform - pos: -4.5,-45.5 - parent: 2 - uid: 3608 components: - type: Transform pos: -12.5,14.5 parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 9.5,-71.5 + parent: 2 - uid: 3650 components: - type: Transform @@ -116918,82 +127702,85 @@ entities: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 3697 - components: - - type: Transform - pos: -3.5,-45.5 - parent: 2 - - uid: 3698 - components: - - type: Transform - pos: -2.5,-45.5 - parent: 2 - uid: 3738 components: - type: Transform pos: 15.5,-35.5 parent: 2 - - uid: 3821 + - uid: 3986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-39.5 + rot: -1.5707963267948966 rad + pos: 21.5,-44.5 parent: 2 - - uid: 3822 + - uid: 4001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + rot: -1.5707963267948966 rad + pos: 22.5,-44.5 parent: 2 - - uid: 3846 + - uid: 4204 components: - type: Transform - pos: 0.5,-45.5 + pos: -28.5,-45.5 parent: 2 - - uid: 3881 + - uid: 4216 components: - type: Transform - pos: -10.5,-39.5 + pos: -29.5,-46.5 parent: 2 - - uid: 4153 + - uid: 4714 components: - type: Transform - pos: 2.5,-50.5 - parent: 2 - - uid: 4222 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - uid: 4637 - components: - - type: Transform - pos: -41.5,-34.5 + rot: 3.141592653589793 rad + pos: -31.5,-54.5 parent: 2 - uid: 4934 components: - type: Transform pos: -12.5,-48.5 parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 - uid: 5048 components: - type: Transform pos: -7.5,-39.5 parent: 2 + - uid: 5085 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 - uid: 5131 components: - type: Transform pos: 46.5,-33.5 parent: 2 - - uid: 5133 + - uid: 5203 components: - type: Transform - pos: -6.5,-39.5 + pos: -27.5,-45.5 parent: 2 - - uid: 5590 + - uid: 5227 components: - type: Transform - pos: -31.5,-46.5 + pos: -27.5,-46.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-64.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-52.5 parent: 2 - uid: 5761 components: @@ -117036,7 +127823,7 @@ entities: - uid: 5979 components: - type: Transform - pos: 20.5,-37.5 + pos: 22.5,-41.5 parent: 2 - uid: 5991 components: @@ -117068,15 +127855,44 @@ entities: - type: Transform pos: 35.5,-2.5 parent: 2 + - uid: 6350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-52.5 + parent: 2 - uid: 6363 components: - type: Transform pos: -11.5,-48.5 parent: 2 - - uid: 7135 + - uid: 6523 components: - type: Transform - pos: 29.5,23.5 + rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: -28.5,-30.5 parent: 2 - uid: 7322 components: @@ -117089,6 +127905,11 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,1.5 parent: 2 + - uid: 7508 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 - uid: 7525 components: - type: Transform @@ -117111,10 +127932,16 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-47.5 parent: 2 - - uid: 7603 + - uid: 7658 components: - type: Transform - pos: -9.5,-61.5 + rot: -1.5707963267948966 rad + pos: -2.5,-44.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -53.5,-23.5 parent: 2 - uid: 8355 components: @@ -117128,41 +127955,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-10.5 parent: 2 - - uid: 8694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,41.5 - parent: 2 - uid: 9120 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,11.5 parent: 2 - - uid: 9389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 - parent: 2 - - uid: 9401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 - parent: 2 - - uid: 9404 - components: - - type: Transform - pos: 29.5,3.5 - parent: 2 - - uid: 9685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-44.5 - parent: 2 - uid: 9704 components: - type: Transform @@ -117185,17 +127983,46 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-50.5 parent: 2 - - uid: 10144 + - uid: 10074 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-45.5 + pos: 21.5,-41.5 parent: 2 - - uid: 10148 + - uid: 10083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-45.5 + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 2 + - uid: 10224 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 10507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-53.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-52.5 parent: 2 - uid: 10977 components: @@ -117224,6 +128051,23 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-51.5 parent: 2 + - uid: 12459 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-22.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-22.5 + parent: 2 - uid: 13373 components: - type: Transform @@ -117234,6 +128078,11 @@ entities: - type: Transform pos: 19.5,-59.5 parent: 2 + - uid: 14575 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 - uid: 14814 components: - type: Transform @@ -117246,16 +128095,29 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,10.5 parent: 2 + - uid: 15248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-51.5 + parent: 2 - uid: 15330 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,10.5 parent: 2 - - uid: 18065 + - uid: 16171 components: - type: Transform - pos: -10.5,-40.5 + rot: -1.5707963267948966 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 18590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-39.5 parent: 2 - uid: 18776 components: @@ -117283,6 +128145,24 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 + - uid: 19069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-40.5 + parent: 2 + - uid: 22303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,18.5 + parent: 2 + - uid: 22309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,19.5 + parent: 2 - proto: TargetClown entities: - uid: 18803 @@ -117290,51 +128170,59 @@ entities: - type: Transform pos: 82.5,-14.5 parent: 2 -- proto: TegCenter +- proto: TeaPlantSeeds entities: - - uid: 6710 + - uid: 12627 components: - type: Transform - pos: 0.5,-8.5 + pos: 19.270489,-6.2979584 + parent: 2 +- proto: TegCenter + entities: + - uid: 2237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 parent: 2 - proto: TegCirculator entities: - - uid: 6708 + - uid: 1697 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-9.5 + pos: -0.5,-10.5 parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 6709 + - uid: 9630 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-7.5 + pos: -0.5,-8.5 parent: 2 - type: PointLight color: '#FF3300FF' - proto: TelecomServerCircuitboard entities: - - uid: 6581 + - uid: 2932 components: - type: Transform - pos: 25.540142,-0.05832243 + pos: 4.532232,-19.395725 parent: 2 - proto: TelecomServerFilledCargo entities: - - uid: 6466 + - uid: 11551 components: - type: Transform - pos: 22.5,3.5 + pos: 11.5,-18.5 parent: 2 - proto: TelecomServerFilledCommand entities: - - uid: 6465 + - uid: 7545 components: - type: Transform - pos: 20.5,-0.5 + pos: -11.5,-53.5 parent: 2 - uid: 16581 components: @@ -117343,24 +128231,24 @@ entities: parent: 2 - proto: TelecomServerFilledCommon entities: - - uid: 6467 + - uid: 13181 components: - type: Transform - pos: 22.5,0.5 + pos: 15.5,-18.5 parent: 2 - proto: TelecomServerFilledEngineering entities: - - uid: 6313 + - uid: 7158 components: - type: Transform - pos: 20.5,2.5 + pos: 13.5,-18.5 parent: 2 - proto: TelecomServerFilledMedical entities: - - uid: 6472 + - uid: 7924 components: - type: Transform - pos: 20.5,3.5 + pos: -55.5,-22.5 parent: 2 - proto: TelecomServerFilledScience entities: @@ -117369,24 +128257,19 @@ entities: - type: Transform pos: 31.5,-35.5 parent: 2 - - uid: 6475 - components: - - type: Transform - pos: 22.5,2.5 - parent: 2 - proto: TelecomServerFilledSecurity entities: - - uid: 6484 + - uid: 9080 components: - type: Transform - pos: 20.5,0.5 + pos: 17.5,-17.5 parent: 2 - proto: TelecomServerFilledService entities: - - uid: 6493 + - uid: 7489 components: - type: Transform - pos: 22.5,-0.5 + pos: -12.5,-55.5 parent: 2 - proto: ThrusterUnanchored entities: @@ -117396,21 +128279,16 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-28.5 parent: 2 - - uid: 7644 + - uid: 7601 + components: + - type: Transform + pos: 5.5,-86.5 + parent: 2 + - uid: 10993 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-69.5 - parent: 2 - - uid: 8081 - components: - - type: Transform - pos: -34.5,-55.5 - parent: 2 - - uid: 8127 - components: - - type: Transform - pos: -35.5,-55.5 + pos: -31.5,-13.5 parent: 2 - uid: 19098 components: @@ -117418,18 +128296,28 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-71.5 parent: 2 - - uid: 20704 + - uid: 19194 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-69.5 + pos: 11.5,-97.5 + parent: 2 + - uid: 22043 + components: + - type: Transform + pos: 22.5,23.5 parent: 2 - proto: TintedWindow entities: - - uid: 1177 + - uid: 369 components: - type: Transform - pos: -18.5,-15.5 + pos: 8.5,-41.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: 19.5,-45.5 parent: 2 - uid: 3132 components: @@ -117446,16 +128334,6 @@ entities: - type: Transform pos: 15.5,-34.5 parent: 2 - - uid: 4014 - components: - - type: Transform - pos: 8.5,-45.5 - parent: 2 - - uid: 4146 - components: - - type: Transform - pos: 8.5,-41.5 - parent: 2 - uid: 4151 components: - type: Transform @@ -117481,6 +128359,34 @@ entities: - type: Transform pos: -28.5,2.5 parent: 2 + - uid: 7780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-35.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-37.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 - uid: 11979 components: - type: Transform @@ -117491,36 +128397,49 @@ entities: - type: Transform pos: 37.5,-5.5 parent: 2 + - uid: 12023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-38.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-36.5 + parent: 2 - uid: 12073 components: - type: Transform pos: 29.5,-16.5 parent: 2 - - uid: 12129 + - uid: 13377 components: - type: Transform - pos: -42.5,-44.5 + pos: -47.5,-39.5 parent: 2 - - uid: 12182 + - uid: 13732 components: - type: Transform - pos: -43.5,-44.5 + pos: 8.5,-45.5 parent: 2 - - uid: 13667 + - uid: 13884 components: - type: Transform - pos: 8.5,-20.5 - parent: 2 - - uid: 13763 - components: - - type: Transform - pos: 25.5,-1.5 + pos: -47.5,-42.5 parent: 2 - uid: 14542 components: - type: Transform pos: -28.5,4.5 parent: 2 + - uid: 21437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-41.5 + parent: 2 - proto: ToiletDirtyWater entities: - uid: 2278 @@ -117529,17 +128448,17 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 - - uid: 2383 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - uid: 7440 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 2 + - uid: 9285 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 - uid: 20146 components: - type: Transform @@ -117548,6 +128467,11 @@ entities: parent: 2 - proto: ToiletEmpty entities: + - uid: 12756 + components: + - type: Transform + pos: 12.5,-87.5 + parent: 2 - uid: 18798 components: - type: Transform @@ -117567,7 +128491,7 @@ entities: - uid: 6175 components: - type: Transform - pos: 36.611614,-6.2526426 + pos: 35.468998,-6.2932315 parent: 2 - uid: 12719 components: @@ -117581,11 +128505,6 @@ entities: - type: Transform pos: 48.499065,8.688345 parent: 2 - - uid: 2236 - components: - - type: Transform - pos: -3.4769769,-15.417981 - parent: 2 - uid: 2252 components: - type: Transform @@ -117596,55 +128515,25 @@ entities: - type: Transform pos: -13.8070965,-24.415592 parent: 2 - - uid: 3891 + - uid: 3829 components: - type: Transform - pos: -6.4899387,-58.354485 + pos: 6.4702086,-19.298756 parent: 2 - uid: 4021 components: - type: Transform pos: 0.4601429,-37.34924 parent: 2 - - uid: 4905 + - uid: 10540 components: - type: Transform - pos: -31.393875,-57.456467 + pos: -30.529837,-18.358828 parent: 2 - - uid: 7001 + - uid: 15360 components: - type: Transform - pos: 24.461014,-9.445431 - parent: 2 - - uid: 7393 - components: - - type: Transform - pos: 6.5029826,-14.36323 - parent: 2 - - uid: 9488 - components: - - type: Transform - pos: 40.49712,-32.355556 - parent: 2 - - uid: 10252 - components: - - type: Transform - pos: 13.54951,-17.30169 - parent: 2 - - uid: 11176 - components: - - type: Transform - pos: -4.5797296,-51.20996 - parent: 2 - - uid: 11789 - components: - - type: Transform - pos: 25.41051,0.32120275 - parent: 2 - - uid: 14400 - components: - - type: Transform - pos: -23.574083,-16.441706 + pos: 3.230478,-57.190697 parent: 2 - uid: 17533 components: @@ -117656,22 +128545,27 @@ entities: - type: Transform pos: -23.49462,22.648626 parent: 2 -- proto: ToolboxEmergencyFilled - entities: - - uid: 2954 + - uid: 20753 components: - type: Transform - pos: 5.488068,-14.345005 + pos: 13.516491,-2.3443527 parent: 2 + - uid: 22647 + components: + - type: Transform + pos: 42.479362,15.690158 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: - uid: 3368 components: - type: Transform pos: -13.5152855,-24.269657 parent: 2 - - uid: 3873 + - uid: 3744 components: - type: Transform - pos: -6.3961887,-58.71386 + pos: 26.48545,15.684371 parent: 2 - uid: 5177 components: @@ -117690,10 +128584,10 @@ entities: parent: 2 - proto: ToolboxGoldFilled entities: - - uid: 732 + - uid: 1911 components: - type: Transform - pos: 8.515682,5.553195 + pos: -28.496399,-62.452206 parent: 2 - proto: ToolboxMechanicalFilled entities: @@ -117702,45 +128596,45 @@ entities: - type: Transform pos: 27.628296,-16.512726 parent: 2 - - uid: 2237 + - uid: 2789 components: - type: Transform - pos: -3.549467,-15.050287 + pos: -38.525826,-14.398721 parent: 2 - uid: 3369 components: - type: Transform pos: -14.161439,-24.24881 parent: 2 - - uid: 4921 + - uid: 3945 components: - type: Transform - pos: -31.560625,-57.27926 + pos: 6.8037076,-19.507088 parent: 2 - uid: 6740 components: - type: Transform pos: 25.522491,-24.342314 parent: 2 + - uid: 8162 + components: + - type: Transform + pos: -13.500765,-96.34585 + parent: 2 - uid: 9074 components: - type: Transform pos: 45.476677,-28.1458 parent: 2 - - uid: 10971 + - uid: 15055 components: - type: Transform - pos: -23.324083,-16.16026 - parent: 2 - - uid: 11175 - components: - - type: Transform - pos: -4.3608713,-51.460136 + pos: 3.5118675,-57.430447 parent: 2 - uid: 16081 components: - type: Transform - pos: -27.562857,-8.430839 + pos: -28.404318,-7.233346 parent: 2 - uid: 16275 components: @@ -117797,26 +128691,33 @@ entities: - type: Transform pos: -24.332443,-50.88702 parent: 2 -- proto: ToyFigurineChemist +- proto: ToyFigurineCargoTech entities: - - uid: 731 + - uid: 1329 components: - type: Transform - pos: -30.1006,-36.283936 + pos: 0.37641108,24.536484 + parent: 2 +- proto: ToyFigurineChemist + entities: + - uid: 8550 + components: + - type: Transform + pos: -37.48012,-37.226265 parent: 2 - proto: ToyFigurineChiefMedicalOfficer entities: - - uid: 17049 + - uid: 13101 components: - type: Transform - pos: -41.133793,-34.387356 + pos: -53.583843,-23.123 parent: 2 - proto: ToyFigurineEngineer entities: - - uid: 2243 + - uid: 4071 components: - type: Transform - pos: -6.640417,-14.156688 + pos: -3.2924695,-15.3550205 parent: 2 - proto: ToyFigurineHeadOfPersonnel entities: @@ -117837,14 +128738,14 @@ entities: - uid: 3831 components: - type: Transform - pos: 20.36242,-38.93584 + pos: 21.092098,-41.16826 parent: 2 - proto: ToyFigurineMedicalDoctor entities: - - uid: 20233 + - uid: 8580 components: - type: Transform - pos: -45.47558,-38.18208 + pos: -38.15235,-24.380262 parent: 2 - proto: ToyFigurineMouse entities: @@ -117855,10 +128756,10 @@ entities: parent: 2 - proto: ToyFigurineParamedic entities: - - uid: 4804 + - uid: 3805 components: - type: Transform - pos: -32.345467,-27.41426 + pos: -28.05531,-21.336483 parent: 2 - proto: ToyFigurineRatKing entities: @@ -117904,10 +128805,15 @@ entities: parent: 2 - proto: ToyMouse entities: - - uid: 13548 + - uid: 13064 components: - type: Transform - pos: -42.55918,-33.612373 + pos: 14.441343,6.51343 + parent: 2 + - uid: 13129 + components: + - type: Transform + pos: -49.47193,-24.443256 parent: 2 - uid: 20819 components: @@ -117926,17 +128832,12 @@ entities: - type: Transform pos: -16.40359,-35.52857 parent: 2 - - uid: 17050 - components: - - type: Transform - pos: -49.464893,-45.456413 - parent: 2 - proto: ToySpawner entities: - - uid: 5597 + - uid: 6119 components: - type: Transform - pos: -31.5,-46.5 + pos: -36.5,-55.5 parent: 2 - uid: 7623 components: @@ -117948,20 +128849,15 @@ entities: - type: Transform pos: 48.5,-12.5 parent: 2 - - uid: 9686 - components: - - type: Transform - pos: -31.5,-45.5 - parent: 2 - uid: 9959 components: - type: Transform pos: -15.5,-46.5 parent: 2 - - uid: 13475 + - uid: 10657 components: - type: Transform - pos: 29.5,25.5 + pos: -55.5,-54.5 parent: 2 - uid: 17296 components: @@ -117973,6 +128869,11 @@ entities: - type: Transform pos: 95.5,-28.5 parent: 2 + - uid: 20737 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 - proto: trayScanner entities: - uid: 4066 @@ -117985,10 +128886,10 @@ entities: - type: Transform pos: 27.39705,-50.377018 parent: 2 - - uid: 16799 + - uid: 12676 components: - type: Transform - pos: -26.673822,-21.455803 + pos: -50.456078,-36.383743 parent: 2 - proto: TreasureCoinGold entities: @@ -118014,21 +128915,6 @@ entities: parent: 2 - proto: TwoWayLever entities: - - uid: 891 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5365: - - Left: Forward - - Right: Reverse - - Middle: Off - 8507: - - Left: Forward - - Right: Reverse - - Middle: Off - uid: 6135 components: - type: Transform @@ -118087,6 +128973,29 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 11941 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11226: + - Left: Forward + - Right: Reverse + - Middle: Off + 4763: + - Left: Forward + - Right: Reverse + - Middle: Off + 11225: + - Left: Forward + - Right: Reverse + - Middle: Off + 11937: + - Middle: Close + - Right: AutoClose + - Left: AutoClose - uid: 14673 components: - type: Transform @@ -118152,6 +129061,21 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 22008 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21999: + - Left: Forward + - Right: Reverse + - Middle: Off + 21974: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 14624 @@ -118169,6 +129093,18 @@ entities: - type: Transform pos: 76.5,-42.5 parent: 2 + - uid: 19193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-97.5 + parent: 2 + - uid: 19206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-86.5 + parent: 2 - proto: UniformPrinter entities: - uid: 9700 @@ -118204,10 +129140,10 @@ entities: parent: 2 - proto: Vaccinator entities: - - uid: 8025 + - uid: 12943 components: - type: Transform - pos: -49.5,-41.5 + pos: -54.5,-27.5 parent: 2 - proto: VariantCubeBox entities: @@ -118218,10 +129154,10 @@ entities: parent: 2 - proto: VendingBarDrobe entities: - - uid: 5059 + - uid: 21407 components: - type: Transform - pos: 1.5,-43.5 + pos: 2.5,-43.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: @@ -118232,16 +129168,16 @@ entities: parent: 2 - proto: VendingMachineBooze entities: - - uid: 3696 - components: - - type: Transform - pos: -5.5,-45.5 - parent: 2 - uid: 7368 components: - type: Transform pos: 42.5,12.5 parent: 2 + - uid: 18007 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 - proto: VendingMachineCargoDrobe entities: - uid: 741 @@ -118279,17 +129215,17 @@ entities: parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 18583 + - uid: 10129 components: - type: Transform - pos: -27.5,-38.5 + pos: -39.5,-38.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 4826 + - uid: 10453 components: - type: Transform - pos: -30.5,-38.5 + pos: -31.5,-34.5 parent: 2 - proto: VendingMachineCigs entities: @@ -118298,11 +129234,6 @@ entities: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 7660 - components: - - type: Transform - pos: 9.5,-60.5 - parent: 2 - uid: 8043 components: - type: Transform @@ -118313,6 +129244,11 @@ entities: - type: Transform pos: 47.5,-15.5 parent: 2 + - uid: 10607 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 - uid: 11458 components: - type: Transform @@ -118330,12 +129266,22 @@ entities: - type: Transform pos: 13.5,-25.5 parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 5857 + - uid: 11490 components: - type: Transform - pos: 34.5,25.5 + pos: 15.5,3.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 1752 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + pos: 19.5,8.5 parent: 2 - proto: VendingMachineCondiments entities: @@ -118344,12 +129290,17 @@ entities: - type: Transform pos: -10.5,-36.5 parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 3820 + - uid: 7915 components: - type: Transform - pos: 20.5,-40.5 + pos: 18.5,-15.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 10799 + components: + - type: Transform + pos: 22.5,-39.5 parent: 2 - proto: VendingMachineDetDrobe entities: @@ -118395,10 +129346,10 @@ entities: parent: 2 - proto: VendingMachineGeneDrobe entities: - - uid: 11016 + - uid: 15011 components: - type: Transform - pos: -45.5,-37.5 + pos: -33.5,-22.5 parent: 2 - proto: VendingMachineHappyHonk entities: @@ -118416,10 +129367,10 @@ entities: parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 9410 + - uid: 9633 components: - type: Transform - pos: 27.5,2.5 + pos: 24.5,3.5 parent: 2 - proto: VendingMachineLawDrobe entities: @@ -118430,22 +129381,32 @@ entities: parent: 2 - proto: VendingMachineMedical entities: - - uid: 4952 + - uid: 1718 components: - type: Transform - pos: -34.5,-24.5 + pos: -40.5,-26.5 parent: 2 - - uid: 12844 + - uid: 12263 components: - type: Transform - pos: -42.5,-21.5 + pos: -36.5,-22.5 + parent: 2 + - uid: 14759 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 2 + - uid: 21973 + components: + - type: Transform + pos: 22.5,1.5 parent: 2 - proto: VendingMachineMediDrobe entities: - - uid: 12716 + - uid: 15012 components: - type: Transform - pos: -45.5,-36.5 + pos: -33.5,-23.5 parent: 2 - proto: VendingMachineNutri entities: @@ -118463,10 +129424,10 @@ entities: parent: 2 - proto: VendingMachineSalvage entities: - - uid: 10465 + - uid: 355 components: - type: Transform - pos: 17.5,25.5 + pos: 14.5,28.5 parent: 2 - proto: VendingMachineSciDrobe entities: @@ -118510,18 +129471,13 @@ entities: parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 9679 + - uid: 13180 components: - type: Transform - pos: 23.5,9.5 + pos: 25.5,-12.5 parent: 2 - proto: VendingMachineSustenance entities: - - uid: 8037 - components: - - type: Transform - pos: -51.5,-39.5 - parent: 2 - uid: 20256 components: - type: Transform @@ -118546,25 +129502,15 @@ entities: - type: Transform pos: -12.5,-10.5 parent: 2 - - uid: 3506 + - uid: 10582 components: - type: Transform - pos: -31.5,0.5 + pos: -4.5,-55.5 parent: 2 - - uid: 7021 + - uid: 22334 components: - type: Transform - pos: -12.5,-56.5 - parent: 2 - - uid: 8598 - components: - - type: Transform - pos: -5.5,-51.5 - parent: 2 - - uid: 8710 - components: - - type: Transform - pos: 10.5,28.5 + pos: 16.5,17.5 parent: 2 - proto: VendingMachineTheater entities: @@ -118587,10 +129533,10 @@ entities: parent: 2 - proto: VendingMachineViroDrobe entities: - - uid: 10744 + - uid: 12937 components: - type: Transform - pos: -45.5,-35.5 + pos: -53.5,-31.5 parent: 2 - proto: VendingMachineWinter entities: @@ -118625,16 +129571,16 @@ entities: parent: 2 - proto: WallmountTelevision entities: - - uid: 1305 + - uid: 4761 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 14992 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 1306 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - proto: WallReinforced entities: - uid: 9 @@ -118652,11 +129598,6 @@ entities: - type: Transform pos: -14.5,24.5 parent: 2 - - uid: 21 - components: - - type: Transform - pos: -53.5,-29.5 - parent: 2 - uid: 37 components: - type: Transform @@ -118672,21 +129613,6 @@ entities: - type: Transform pos: -18.5,24.5 parent: 2 - - uid: 65 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 2 - - uid: 70 - components: - - type: Transform - pos: 13.5,4.5 - parent: 2 - - uid: 89 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 2 - uid: 90 components: - type: Transform @@ -118722,11 +129648,6 @@ entities: - type: Transform pos: 50.5,-45.5 parent: 2 - - uid: 121 - components: - - type: Transform - pos: -49.5,-25.5 - parent: 2 - uid: 125 components: - type: Transform @@ -118750,12 +129671,7 @@ entities: - uid: 138 components: - type: Transform - pos: 18.5,16.5 - parent: 2 - - uid: 139 - components: - - type: Transform - pos: 20.5,16.5 + pos: 41.5,16.5 parent: 2 - uid: 140 components: @@ -118777,11 +129693,6 @@ entities: - type: Transform pos: 9.5,15.5 parent: 2 - - uid: 162 - components: - - type: Transform - pos: 21.5,16.5 - parent: 2 - uid: 168 components: - type: Transform @@ -118792,21 +129703,32 @@ entities: - type: Transform pos: -17.5,0.5 parent: 2 - - uid: 177 + - uid: 185 components: - type: Transform - pos: 0.5,-15.5 + pos: -30.5,-78.5 parent: 2 - uid: 207 components: - type: Transform pos: -22.5,1.5 parent: 2 + - uid: 209 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 2 - uid: 214 components: - type: Transform pos: -23.5,1.5 parent: 2 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,10.5 + parent: 2 - uid: 222 components: - type: Transform @@ -118842,71 +129764,121 @@ entities: - type: Transform pos: -69.5,-8.5 parent: 2 - - uid: 256 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 2 - uid: 259 components: - type: Transform pos: -30.5,5.5 parent: 2 - - uid: 280 + - uid: 260 components: - type: Transform - pos: 12.5,-4.5 + pos: 4.5,-87.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: -1.5,-87.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: -28.5,-20.5 parent: 2 - uid: 287 components: - type: Transform pos: -31.5,2.5 parent: 2 + - uid: 295 + components: + - type: Transform + pos: -2.5,-87.5 + parent: 2 - uid: 298 components: - type: Transform pos: -24.5,18.5 parent: 2 - - uid: 309 + - uid: 303 components: - type: Transform - pos: 13.5,26.5 + pos: 11.5,5.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -28.5,-57.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -4.5,-87.5 parent: 2 - uid: 327 components: - type: Transform pos: 56.5,-46.5 parent: 2 + - uid: 333 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -3.5,-87.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 - uid: 352 components: - type: Transform pos: -31.5,5.5 parent: 2 + - uid: 366 + components: + - type: Transform + pos: -8.5,-86.5 + parent: 2 - uid: 370 components: - type: Transform pos: 42.5,-63.5 parent: 2 - - uid: 381 + - uid: 376 components: - type: Transform - pos: -25.5,-12.5 + pos: 10.5,-96.5 parent: 2 - uid: 392 components: - type: Transform pos: -37.5,0.5 parent: 2 - - uid: 395 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 2 - uid: 396 components: - type: Transform pos: -42.5,0.5 parent: 2 + - uid: 397 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: -54.5,-51.5 + parent: 2 - uid: 408 components: - type: Transform @@ -118922,11 +129894,6 @@ entities: - type: Transform pos: -28.5,17.5 parent: 2 - - uid: 413 - components: - - type: Transform - pos: 10.5,2.5 - parent: 2 - uid: 414 components: - type: Transform @@ -118942,15 +129909,10 @@ entities: - type: Transform pos: 48.5,-63.5 parent: 2 - - uid: 424 + - uid: 434 components: - type: Transform - pos: 8.5,7.5 - parent: 2 - - uid: 425 - components: - - type: Transform - pos: 13.5,6.5 + pos: 13.5,1.5 parent: 2 - uid: 435 components: @@ -118977,10 +129939,10 @@ entities: - type: Transform pos: -11.5,7.5 parent: 2 - - uid: 515 + - uid: 513 components: - type: Transform - pos: 9.5,2.5 + pos: -36.5,-11.5 parent: 2 - uid: 520 components: @@ -118992,21 +129954,11 @@ entities: - type: Transform pos: -9.5,-54.5 parent: 2 - - uid: 528 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - uid: 530 components: - type: Transform pos: 60.5,-46.5 parent: 2 - - uid: 531 - components: - - type: Transform - pos: 10.5,7.5 - parent: 2 - uid: 532 components: - type: Transform @@ -119020,12 +129972,7 @@ entities: - uid: 538 components: - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 539 - components: - - type: Transform - pos: 13.5,9.5 + pos: 7.5,1.5 parent: 2 - uid: 545 components: @@ -119055,22 +130002,17 @@ entities: - uid: 577 components: - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 580 - components: - - type: Transform - pos: 38.5,13.5 + pos: 5.5,7.5 parent: 2 - uid: 581 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 588 + - uid: 589 components: - type: Transform - pos: -5.5,-5.5 + pos: 3.5,-85.5 parent: 2 - uid: 596 components: @@ -119107,30 +130049,40 @@ entities: - type: Transform pos: 37.5,-64.5 parent: 2 - - uid: 646 + - uid: 648 components: - type: Transform - pos: 11.5,6.5 + pos: -21.5,-12.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: -31.5,-12.5 parent: 2 - uid: 657 components: - type: Transform pos: 47.5,-49.5 parent: 2 + - uid: 668 + components: + - type: Transform + pos: -0.5,-85.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 - uid: 686 components: - type: Transform pos: -28.5,7.5 parent: 2 - - uid: 688 + - uid: 687 components: - type: Transform - pos: 11.5,4.5 - parent: 2 - - uid: 689 - components: - - type: Transform - pos: 12.5,6.5 + pos: -37.5,10.5 parent: 2 - uid: 700 components: @@ -119157,36 +130109,26 @@ entities: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 752 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - uid: 758 components: - type: Transform pos: 49.5,-14.5 parent: 2 - - uid: 762 - components: - - type: Transform - pos: 36.5,13.5 - parent: 2 - uid: 764 components: - type: Transform pos: -28.5,27.5 parent: 2 - - uid: 765 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 - uid: 789 components: - type: Transform pos: 44.5,-43.5 parent: 2 + - uid: 818 + components: + - type: Transform + pos: 2.5,-85.5 + parent: 2 - uid: 820 components: - type: Transform @@ -119207,6 +130149,11 @@ entities: - type: Transform pos: -20.5,27.5 parent: 2 + - uid: 840 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 - uid: 842 components: - type: Transform @@ -119222,11 +130169,6 @@ entities: - type: Transform pos: -5.5,20.5 parent: 2 - - uid: 854 - components: - - type: Transform - pos: 17.5,20.5 - parent: 2 - uid: 869 components: - type: Transform @@ -119237,11 +130179,6 @@ entities: - type: Transform pos: -0.5,15.5 parent: 2 - - uid: 882 - components: - - type: Transform - pos: 27.5,14.5 - parent: 2 - uid: 892 components: - type: Transform @@ -119277,6 +130214,31 @@ entities: - type: Transform pos: -3.5,21.5 parent: 2 + - uid: 941 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 - uid: 961 components: - type: Transform @@ -119292,11 +130254,6 @@ entities: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 986 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - uid: 987 components: - type: Transform @@ -119312,11 +130269,6 @@ entities: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 996 - components: - - type: Transform - pos: 39.5,13.5 - parent: 2 - uid: 998 components: - type: Transform @@ -119347,6 +130299,11 @@ entities: - type: Transform pos: 7.5,15.5 parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 0.5,-85.5 + parent: 2 - uid: 1012 components: - type: Transform @@ -119367,6 +130324,12 @@ entities: - type: Transform pos: -58.5,-10.5 parent: 2 + - uid: 1037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,19.5 + parent: 2 - uid: 1042 components: - type: Transform @@ -119382,6 +130345,12 @@ entities: - type: Transform pos: -0.5,27.5 parent: 2 + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 2 - uid: 1084 components: - type: Transform @@ -119392,11 +130361,6 @@ entities: - type: Transform pos: -70.5,-13.5 parent: 2 - - uid: 1094 - components: - - type: Transform - pos: 35.5,12.5 - parent: 2 - uid: 1102 components: - type: Transform @@ -119420,17 +130384,14 @@ entities: - uid: 1110 components: - type: Transform - pos: 16.5,17.5 - parent: 2 - - uid: 1111 - components: - - type: Transform - pos: 16.5,18.5 + rot: 3.141592653589793 rad + pos: 27.5,18.5 parent: 2 - uid: 1112 components: - type: Transform - pos: 16.5,19.5 + rot: 3.141592653589793 rad + pos: 27.5,17.5 parent: 2 - uid: 1114 components: @@ -119452,6 +130413,11 @@ entities: - type: Transform pos: -70.5,-8.5 parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 - uid: 1133 components: - type: Transform @@ -119462,16 +130428,6 @@ entities: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 1140 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 2 - - uid: 1143 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 2 - uid: 1146 components: - type: Transform @@ -119495,12 +130451,14 @@ entities: - uid: 1151 components: - type: Transform - pos: -29.5,-17.5 + rot: -1.5707963267948966 rad + pos: -59.5,-51.5 parent: 2 - uid: 1153 components: - type: Transform - pos: 18.5,23.5 + rot: -1.5707963267948966 rad + pos: -58.5,-54.5 parent: 2 - uid: 1162 components: @@ -119527,6 +130485,11 @@ entities: - type: Transform pos: -37.5,6.5 parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 - uid: 1245 components: - type: Transform @@ -119537,6 +130500,11 @@ entities: - type: Transform pos: -18.5,-5.5 parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 - uid: 1294 components: - type: Transform @@ -119572,6 +130540,16 @@ entities: - type: Transform pos: -35.5,15.5 parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 - uid: 1419 components: - type: Transform @@ -119617,11 +130595,6 @@ entities: - type: Transform pos: -2.5,6.5 parent: 2 - - uid: 1429 - components: - - type: Transform - pos: 17.5,1.5 - parent: 2 - uid: 1430 components: - type: Transform @@ -119697,6 +130670,11 @@ entities: - type: Transform pos: 5.5,3.5 parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -28.5,-49.5 + parent: 2 - uid: 1484 components: - type: Transform @@ -119717,46 +130695,21 @@ entities: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 1497 - components: - - type: Transform - pos: -43.5,-33.5 - parent: 2 - uid: 1512 components: - type: Transform pos: 45.5,-91.5 parent: 2 - - uid: 1516 - components: - - type: Transform - pos: 24.5,15.5 - parent: 2 - - uid: 1529 - components: - - type: Transform - pos: 22.5,14.5 - parent: 2 - uid: 1530 components: - type: Transform pos: 42.5,-26.5 parent: 2 - - uid: 1533 - components: - - type: Transform - pos: 7.5,-60.5 - parent: 2 - uid: 1534 components: - type: Transform pos: -4.5,13.5 parent: 2 - - uid: 1538 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 2 - uid: 1560 components: - type: Transform @@ -119767,150 +130720,65 @@ entities: - type: Transform pos: -10.5,1.5 parent: 2 - - uid: 1583 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 2 - uid: 1589 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 1627 + - uid: 1639 components: - type: Transform - pos: -26.5,-14.5 - parent: 2 - - uid: 1635 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 1644 - components: - - type: Transform - pos: 6.5,1.5 + pos: -38.5,14.5 parent: 2 - uid: 1645 components: - type: Transform pos: 47.5,-43.5 parent: 2 - - uid: 1659 + - uid: 1663 components: - type: Transform - pos: -36.5,8.5 - parent: 2 - - uid: 1661 - components: - - type: Transform - pos: -37.5,10.5 - parent: 2 - - uid: 1662 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 2 - - uid: 1664 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 2 - - uid: 1666 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - - uid: 1671 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 2 - - uid: 1679 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 2 - - uid: 1684 - components: - - type: Transform - pos: 8.5,-1.5 + pos: -24.5,-13.5 parent: 2 - uid: 1687 components: - type: Transform pos: -33.5,-0.5 parent: 2 - - uid: 1696 + - uid: 1691 components: - type: Transform - pos: 29.5,-6.5 + pos: 13.5,29.5 parent: 2 - - uid: 1697 + - uid: 1707 components: - type: Transform - pos: 13.5,-3.5 + pos: -33.5,-10.5 parent: 2 - - uid: 1718 + - uid: 1725 components: - type: Transform - pos: 6.5,-11.5 + pos: 14.5,29.5 parent: 2 - uid: 1735 components: - type: Transform pos: 44.5,-15.5 parent: 2 - - uid: 1736 + - uid: 1843 components: - type: Transform - pos: 0.5,-18.5 + pos: -30.5,-60.5 parent: 2 - - uid: 1754 + - uid: 1858 components: - type: Transform - pos: 11.5,-10.5 + pos: -59.5,-61.5 parent: 2 - - uid: 1764 + - uid: 1863 components: - type: Transform - pos: 25.5,15.5 - parent: 2 - - uid: 1780 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 2 - - uid: 1781 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 2 - - uid: 1807 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 2 - - uid: 1817 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 2 - - uid: 1819 - components: - - type: Transform - pos: -6.5,-8.5 - parent: 2 - - uid: 1833 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 1846 - components: - - type: Transform - pos: -36.5,-56.5 + pos: -28.5,-58.5 parent: 2 - uid: 1864 components: @@ -119922,65 +130790,75 @@ entities: - type: Transform pos: 26.5,-47.5 parent: 2 - - uid: 1872 + - uid: 1874 components: - type: Transform - pos: 8.5,-13.5 + pos: -27.5,-61.5 parent: 2 - uid: 1876 components: - type: Transform pos: 10.5,-20.5 parent: 2 - - uid: 1879 + - uid: 1882 components: - type: Transform - pos: 9.5,-20.5 + pos: -27.5,-64.5 parent: 2 - - uid: 1883 + - uid: 1890 components: - type: Transform - pos: 6.5,-60.5 + pos: -35.5,14.5 parent: 2 - - uid: 1887 + - uid: 1892 components: - type: Transform - pos: 0.5,-11.5 - parent: 2 - - uid: 1889 - components: - - type: Transform - pos: 0.5,-12.5 + pos: -30.5,-62.5 parent: 2 - uid: 1894 components: - type: Transform pos: 40.5,-68.5 parent: 2 - - uid: 1897 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 1911 - components: - - type: Transform - pos: -40.5,-39.5 - parent: 2 - uid: 1918 components: - type: Transform pos: 53.5,-27.5 parent: 2 - - uid: 2011 + - uid: 1926 components: - type: Transform - pos: 0.5,-20.5 + pos: -27.5,-62.5 parent: 2 - - uid: 2041 + - uid: 1950 components: - type: Transform - pos: 7.5,5.5 + pos: -28.5,-64.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: -27.5,-58.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -29.5,-65.5 parent: 2 - uid: 2069 components: @@ -119992,10 +130870,10 @@ entities: - type: Transform pos: 53.5,-57.5 parent: 2 - - uid: 2086 + - uid: 2077 components: - type: Transform - pos: -45.5,-39.5 + pos: 11.5,-88.5 parent: 2 - uid: 2153 components: @@ -120052,6 +130930,16 @@ entities: - type: Transform pos: -67.5,-8.5 parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 - uid: 2258 components: - type: Transform @@ -120077,11 +130965,6 @@ entities: - type: Transform pos: -65.5,-8.5 parent: 2 - - uid: 2287 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 2 - uid: 2289 components: - type: Transform @@ -120112,6 +130995,17 @@ entities: - type: Transform pos: 37.5,-63.5 parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,27.5 + parent: 2 - uid: 2353 components: - type: Transform @@ -120122,15 +131016,16 @@ entities: - type: Transform pos: 66.5,-43.5 parent: 2 - - uid: 2435 + - uid: 2389 components: - type: Transform - pos: 0.5,-5.5 + rot: -1.5707963267948966 rad + pos: 36.5,27.5 parent: 2 - - uid: 2436 + - uid: 2413 components: - type: Transform - pos: -6.5,-10.5 + pos: 5.5,-13.5 parent: 2 - uid: 2452 components: @@ -120142,21 +131037,31 @@ entities: - type: Transform pos: -20.5,25.5 parent: 2 + - uid: 2456 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 6.5,-87.5 + parent: 2 - uid: 2515 components: - type: Transform pos: -6.5,-24.5 parent: 2 - - uid: 2527 - components: - - type: Transform - pos: -43.5,-34.5 - parent: 2 - uid: 2541 components: - type: Transform pos: -19.5,-12.5 parent: 2 + - uid: 2545 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 - uid: 2553 components: - type: Transform @@ -120182,16 +131087,6 @@ entities: - type: Transform pos: -3.5,-27.5 parent: 2 - - uid: 2588 - components: - - type: Transform - pos: -46.5,-39.5 - parent: 2 - - uid: 2590 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 2 - uid: 2609 components: - type: Transform @@ -120220,27 +131115,32 @@ entities: - uid: 2624 components: - type: Transform - pos: -4.5,-5.5 + pos: -35.5,-13.5 parent: 2 - uid: 2653 components: - type: Transform pos: -28.5,5.5 parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 - uid: 2676 components: - type: Transform - pos: -21.5,-12.5 + pos: -35.5,-18.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: -38.5,-11.5 parent: 2 - uid: 2685 components: - type: Transform - pos: -22.5,-12.5 - parent: 2 - - uid: 2704 - components: - - type: Transform - pos: -33.5,-5.5 + pos: -38.5,-16.5 parent: 2 - uid: 2737 components: @@ -120262,11 +131162,6 @@ entities: - type: Transform pos: 65.5,-43.5 parent: 2 - - uid: 2766 - components: - - type: Transform - pos: -40.5,-24.5 - parent: 2 - uid: 2781 components: - type: Transform @@ -120277,6 +131172,11 @@ entities: - type: Transform pos: 42.5,-32.5 parent: 2 + - uid: 2805 + components: + - type: Transform + pos: -29.5,-68.5 + parent: 2 - uid: 2806 components: - type: Transform @@ -120312,6 +131212,11 @@ entities: - type: Transform pos: -19.5,10.5 parent: 2 + - uid: 2847 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 - uid: 2879 components: - type: Transform @@ -120322,16 +131227,16 @@ entities: - type: Transform pos: 42.5,-65.5 parent: 2 + - uid: 2907 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 - uid: 2915 components: - type: Transform pos: -10.5,-24.5 parent: 2 - - uid: 2920 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 2 - uid: 2923 components: - type: Transform @@ -120342,6 +131247,11 @@ entities: - type: Transform pos: 23.5,-26.5 parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 - uid: 2936 components: - type: Transform @@ -120352,31 +131262,11 @@ entities: - type: Transform pos: 11.5,-20.5 parent: 2 - - uid: 2949 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 2 - uid: 2953 components: - type: Transform pos: -65.5,-9.5 parent: 2 - - uid: 2958 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 - - uid: 2963 - components: - - type: Transform - pos: 30.5,14.5 - parent: 2 - - uid: 2989 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 2 - uid: 3005 components: - type: Transform @@ -120387,11 +131277,6 @@ entities: - type: Transform pos: -36.5,22.5 parent: 2 - - uid: 3014 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 2 - uid: 3016 components: - type: Transform @@ -120402,10 +131287,10 @@ entities: - type: Transform pos: -2.5,13.5 parent: 2 - - uid: 3070 + - uid: 3066 components: - type: Transform - pos: 9.5,-8.5 + pos: -31.5,-60.5 parent: 2 - uid: 3072 components: @@ -120422,21 +131307,11 @@ entities: - type: Transform pos: -11.5,-45.5 parent: 2 - - uid: 3092 - components: - - type: Transform - pos: -10.5,-45.5 - parent: 2 - uid: 3093 components: - type: Transform pos: -10.5,-46.5 parent: 2 - - uid: 3094 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 2 - uid: 3100 components: - type: Transform @@ -120477,21 +131352,11 @@ entities: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 3130 - components: - - type: Transform - pos: -46.5,-29.5 - parent: 2 - uid: 3131 components: - type: Transform pos: -10.5,-49.5 parent: 2 - - uid: 3133 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 2 - uid: 3134 components: - type: Transform @@ -120532,36 +131397,6 @@ entities: - type: Transform pos: -10.5,-48.5 parent: 2 - - uid: 3143 - components: - - type: Transform - pos: -45.5,-29.5 - parent: 2 - - uid: 3144 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 2 - - uid: 3186 - components: - - type: Transform - pos: -32.5,-59.5 - parent: 2 - - uid: 3199 - components: - - type: Transform - pos: -52.5,-35.5 - parent: 2 - - uid: 3204 - components: - - type: Transform - pos: -27.5,-17.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 2 - uid: 3210 components: - type: Transform @@ -120572,11 +131407,6 @@ entities: - type: Transform pos: -4.5,-33.5 parent: 2 - - uid: 3214 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 - uid: 3215 components: - type: Transform @@ -120602,40 +131432,55 @@ entities: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 3237 + - uid: 3233 components: - type: Transform - pos: -29.5,-18.5 - parent: 2 - - uid: 3239 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 2 - - uid: 3240 - components: - - type: Transform - pos: -30.5,-18.5 + pos: -4.5,-72.5 parent: 2 - uid: 3251 components: - type: Transform pos: -64.5,-16.5 parent: 2 + - uid: 3261 + components: + - type: Transform + pos: -31.5,-66.5 + parent: 2 - uid: 3270 components: - type: Transform pos: -19.5,13.5 parent: 2 + - uid: 3294 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 - uid: 3322 components: - type: Transform pos: 61.5,-80.5 parent: 2 - - uid: 3451 + - uid: 3379 components: - type: Transform - pos: -27.5,-65.5 + pos: -25.5,-24.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: -31.5,-43.5 parent: 2 - uid: 3488 components: @@ -120647,6 +131492,11 @@ entities: - type: Transform pos: 47.5,-45.5 parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -35.5,-83.5 + parent: 2 - uid: 3524 components: - type: Transform @@ -120672,15 +131522,10 @@ entities: - type: Transform pos: 40.5,-62.5 parent: 2 - - uid: 3559 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - uid: 3568 components: - type: Transform - pos: 13.5,7.5 + pos: -34.5,-1.5 parent: 2 - uid: 3579 components: @@ -120702,15 +131547,35 @@ entities: - type: Transform pos: 59.5,-78.5 parent: 2 + - uid: 3689 + components: + - type: Transform + pos: -36.5,-74.5 + parent: 2 - uid: 3692 components: - type: Transform pos: 58.5,-78.5 parent: 2 - - uid: 3710 + - uid: 3714 components: - type: Transform - pos: 35.5,11.5 + pos: -36.5,14.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: 16.5,-61.5 parent: 2 - uid: 3797 components: @@ -120722,11 +131587,52 @@ entities: - type: Transform pos: 54.5,-47.5 parent: 2 + - uid: 3801 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,17.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 12.5,-69.5 + parent: 2 - uid: 3946 components: - type: Transform pos: 57.5,-45.5 parent: 2 + - uid: 3947 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 - uid: 3958 components: - type: Transform @@ -120747,11 +131653,6 @@ entities: - type: Transform pos: 53.5,-64.5 parent: 2 - - uid: 3995 - components: - - type: Transform - pos: 28.5,-12.5 - parent: 2 - uid: 4017 components: - type: Transform @@ -120772,16 +131673,26 @@ entities: - type: Transform pos: 52.5,-62.5 parent: 2 - - uid: 4069 + - uid: 4073 components: - type: Transform - pos: 9.5,-10.5 + pos: -35.5,-78.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: 8.5,-59.5 parent: 2 - uid: 4145 components: - type: Transform pos: 75.5,-64.5 parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 6.5,-66.5 + parent: 2 - uid: 4195 components: - type: Transform @@ -120797,6 +131708,11 @@ entities: - type: Transform pos: 32.5,-32.5 parent: 2 + - uid: 4223 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 - uid: 4256 components: - type: Transform @@ -120837,6 +131753,16 @@ entities: - type: Transform pos: 50.5,-65.5 parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: -10.5,-64.5 + parent: 2 - uid: 4362 components: - type: Transform @@ -120847,6 +131773,11 @@ entities: - type: Transform pos: 50.5,-43.5 parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 - uid: 4414 components: - type: Transform @@ -120857,6 +131788,16 @@ entities: - type: Transform pos: 42.5,-33.5 parent: 2 + - uid: 4442 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: -37.5,-78.5 + parent: 2 - uid: 4478 components: - type: Transform @@ -120865,7 +131806,12 @@ entities: - uid: 4507 components: - type: Transform - pos: 4.5,-13.5 + pos: -31.5,-14.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: -40.5,-16.5 parent: 2 - uid: 4520 components: @@ -120920,12 +131866,12 @@ entities: - uid: 4549 components: - type: Transform - pos: 2.5,-13.5 + pos: -36.5,-18.5 parent: 2 - uid: 4550 components: - type: Transform - pos: 1.5,-13.5 + pos: -37.5,-18.5 parent: 2 - uid: 4551 components: @@ -120937,6 +131883,11 @@ entities: - type: Transform pos: 40.5,-47.5 parent: 2 + - uid: 4558 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 - uid: 4564 components: - type: Transform @@ -120952,10 +131903,15 @@ entities: - type: Transform pos: 30.5,-47.5 parent: 2 - - uid: 4593 + - uid: 4594 components: - type: Transform - pos: -6.5,-5.5 + pos: -31.5,0.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: 24.5,-5.5 parent: 2 - uid: 4613 components: @@ -120992,125 +131948,130 @@ entities: - type: Transform pos: 37.5,-58.5 parent: 2 - - uid: 4675 + - uid: 4684 components: - type: Transform - pos: -28.5,-18.5 + pos: -36.5,-78.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: -31.5,-57.5 parent: 2 - uid: 4695 components: - type: Transform pos: 47.5,-48.5 parent: 2 + - uid: 4697 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 - uid: 4711 components: - type: Transform pos: 50.5,-64.5 parent: 2 - - uid: 4716 + - uid: 4719 components: - type: Transform - pos: 9.5,-5.5 + pos: -31.5,-58.5 parent: 2 - uid: 4723 components: - type: Transform pos: 53.5,-61.5 parent: 2 + - uid: 4733 + components: + - type: Transform + pos: -31.5,-78.5 + parent: 2 - uid: 4734 components: - type: Transform pos: 49.5,-91.5 parent: 2 - - uid: 4777 + - uid: 4749 components: - type: Transform - pos: -42.5,-24.5 + pos: -30.5,-81.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: -37.5,-21.5 parent: 2 - uid: 4789 components: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 4790 + - uid: 4795 components: - type: Transform - pos: -45.5,-19.5 + pos: 22.5,-7.5 parent: 2 - - uid: 4791 + - uid: 4811 components: - type: Transform - pos: 35.5,16.5 + pos: -37.5,-70.5 parent: 2 - uid: 4828 components: - type: Transform pos: 74.5,-67.5 parent: 2 - - uid: 4831 - components: - - type: Transform - pos: -42.5,-56.5 - parent: 2 - uid: 4833 components: - type: Transform pos: 60.5,-80.5 parent: 2 - - uid: 4835 + - uid: 4846 components: - type: Transform - pos: -45.5,-28.5 - parent: 2 - - uid: 4837 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 2 - - uid: 4847 - components: - - type: Transform - pos: 4.5,-19.5 + pos: -25.5,-68.5 parent: 2 - uid: 4849 components: - type: Transform pos: 4.5,-20.5 parent: 2 - - uid: 4863 + - uid: 4852 components: - type: Transform - pos: -42.5,-26.5 + pos: -23.5,-68.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: -15.5,-68.5 parent: 2 - uid: 4875 components: - type: Transform - pos: -45.5,-20.5 + pos: -35.5,-74.5 parent: 2 - - uid: 4879 + - uid: 4881 components: - type: Transform - pos: 4.5,-16.5 + pos: -37.5,-66.5 parent: 2 - uid: 4883 components: - type: Transform - pos: -47.5,-32.5 + pos: -19.5,-68.5 parent: 2 - uid: 4885 components: - type: Transform - pos: -39.5,-39.5 + pos: -30.5,-65.5 parent: 2 - - uid: 4886 + - uid: 4888 components: - type: Transform - pos: -47.5,-29.5 - parent: 2 - - uid: 4889 - components: - - type: Transform - pos: 0.5,-23.5 + pos: -27.5,-60.5 parent: 2 - uid: 4893 components: @@ -121122,30 +132083,25 @@ entities: - type: Transform pos: 6.5,-23.5 parent: 2 - - uid: 4902 + - uid: 4905 components: - type: Transform - pos: 8.5,-5.5 + pos: -21.5,-68.5 parent: 2 - - uid: 4903 + - uid: 4907 components: - type: Transform - pos: -29.5,-70.5 + pos: -27.5,-68.5 parent: 2 - - uid: 4909 + - uid: 4908 components: - type: Transform - pos: 9.5,-12.5 + pos: -17.5,-68.5 parent: 2 - - uid: 4913 + - uid: 4912 components: - type: Transform - pos: 35.5,10.5 - parent: 2 - - uid: 4915 - components: - - type: Transform - pos: 29.5,17.5 + pos: 14.5,-3.5 parent: 2 - uid: 4931 components: @@ -121162,20 +132118,30 @@ entities: - type: Transform pos: -5.5,26.5 parent: 2 + - uid: 4945 + components: + - type: Transform + pos: -27.5,-63.5 + parent: 2 - uid: 4960 components: - type: Transform - pos: -40.5,-20.5 + pos: -30.5,-43.5 parent: 2 - - uid: 4963 + - uid: 4966 components: - type: Transform - pos: -36.5,-19.5 + pos: -35.5,-66.5 parent: 2 - - uid: 4989 + - uid: 4984 components: - type: Transform - pos: 30.5,19.5 + pos: -48.5,-59.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -37.5,-74.5 parent: 2 - uid: 5021 components: @@ -121187,6 +132153,11 @@ entities: - type: Transform pos: -8.5,24.5 parent: 2 + - uid: 5058 + components: + - type: Transform + pos: 8.5,-76.5 + parent: 2 - uid: 5065 components: - type: Transform @@ -121197,11 +132168,6 @@ entities: - type: Transform pos: -72.5,-13.5 parent: 2 - - uid: 5080 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - uid: 5088 components: - type: Transform @@ -121232,6 +132198,16 @@ entities: - type: Transform pos: -9.5,16.5 parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: -37.5,-59.5 + parent: 2 - uid: 5140 components: - type: Transform @@ -121247,6 +132223,16 @@ entities: - type: Transform pos: 49.5,-85.5 parent: 2 + - uid: 5154 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 - uid: 5157 components: - type: Transform @@ -121257,11 +132243,6 @@ entities: - type: Transform pos: 76.5,-59.5 parent: 2 - - uid: 5163 - components: - - type: Transform - pos: -32.5,-70.5 - parent: 2 - uid: 5174 components: - type: Transform @@ -121270,7 +132251,13 @@ entities: - uid: 5176 components: - type: Transform - pos: -33.5,-66.5 + rot: 3.141592653589793 rad + pos: 18.5,27.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: -31.5,-74.5 parent: 2 - uid: 5186 components: @@ -121297,15 +132284,15 @@ entities: - type: Transform pos: -64.5,-7.5 parent: 2 - - uid: 5212 + - uid: 5224 components: - type: Transform - pos: -28.5,-19.5 + pos: 13.5,-0.5 parent: 2 - - uid: 5215 + - uid: 5242 components: - type: Transform - pos: -30.5,-70.5 + pos: -35.5,-82.5 parent: 2 - uid: 5246 components: @@ -121317,21 +132304,21 @@ entities: - type: Transform pos: -21.5,1.5 parent: 2 - - uid: 5280 + - uid: 5289 components: - type: Transform - pos: -25.5,-14.5 - parent: 2 - - uid: 5284 - components: - - type: Transform - pos: -24.5,-14.5 + pos: -35.5,-70.5 parent: 2 - uid: 5290 components: - type: Transform pos: -23.5,6.5 parent: 2 + - uid: 5295 + components: + - type: Transform + pos: -37.5,-58.5 + parent: 2 - uid: 5305 components: - type: Transform @@ -121362,11 +132349,6 @@ entities: - type: Transform pos: -18.5,27.5 parent: 2 - - uid: 5335 - components: - - type: Transform - pos: -9.5,19.5 - parent: 2 - uid: 5337 components: - type: Transform @@ -121407,11 +132389,6 @@ entities: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 5366 - components: - - type: Transform - pos: 18.5,26.5 - parent: 2 - uid: 5367 components: - type: Transform @@ -121437,6 +132414,11 @@ entities: - type: Transform pos: -9.5,20.5 parent: 2 + - uid: 5426 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 - uid: 5448 components: - type: Transform @@ -121502,6 +132484,11 @@ entities: - type: Transform pos: -54.5,-10.5 parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 - uid: 5521 components: - type: Transform @@ -121527,6 +132514,11 @@ entities: - type: Transform pos: -56.5,-10.5 parent: 2 + - uid: 5541 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 - uid: 5544 components: - type: Transform @@ -121572,6 +132564,21 @@ entities: - type: Transform pos: 30.5,-23.5 parent: 2 + - uid: 5576 + components: + - type: Transform + pos: -40.5,-58.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 - uid: 5603 components: - type: Transform @@ -121617,25 +132624,10 @@ entities: - type: Transform pos: 32.5,-56.5 parent: 2 - - uid: 5661 + - uid: 5667 components: - type: Transform - pos: -28.5,-69.5 - parent: 2 - - uid: 5662 - components: - - type: Transform - pos: -28.5,-68.5 - parent: 2 - - uid: 5664 - components: - - type: Transform - pos: -41.5,-24.5 - parent: 2 - - uid: 5666 - components: - - type: Transform - pos: -46.5,-24.5 + pos: -35.5,-59.5 parent: 2 - uid: 5669 components: @@ -121687,11 +132679,6 @@ entities: - type: Transform pos: 43.5,-19.5 parent: 2 - - uid: 5751 - components: - - type: Transform - pos: -26.5,-48.5 - parent: 2 - uid: 5770 components: - type: Transform @@ -121707,26 +132694,16 @@ entities: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 5811 - components: - - type: Transform - pos: 22.5,13.5 - parent: 2 - uid: 5816 components: - type: Transform - pos: 5.5,-5.5 + pos: 52.5,-32.5 parent: 2 - uid: 5825 components: - type: Transform pos: 50.5,-34.5 parent: 2 - - uid: 5832 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - uid: 5836 components: - type: Transform @@ -121747,100 +132724,16 @@ entities: - type: Transform pos: 58.5,-70.5 parent: 2 - - uid: 5845 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 5849 - components: - - type: Transform - pos: 35.5,34.5 - parent: 2 - - uid: 5852 - components: - - type: Transform - pos: 34.5,26.5 - parent: 2 - - uid: 5854 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 5860 - components: - - type: Transform - pos: 28.5,22.5 - parent: 2 - uid: 5861 components: - type: Transform pos: -28.5,18.5 parent: 2 - - uid: 5863 + - uid: 5886 components: - type: Transform - pos: 30.5,30.5 - parent: 2 - - uid: 5865 - components: - - type: Transform - pos: 30.5,34.5 - parent: 2 - - uid: 5867 - components: - - type: Transform - pos: 27.5,17.5 - parent: 2 - - uid: 5869 - components: - - type: Transform - pos: 34.5,34.5 - parent: 2 - - uid: 5871 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - - uid: 5874 - components: - - type: Transform - pos: 34.5,30.5 - parent: 2 - - uid: 5875 - components: - - type: Transform - pos: 36.5,38.5 - parent: 2 - - uid: 5876 - components: - - type: Transform - pos: 34.5,21.5 - parent: 2 - - uid: 5877 - components: - - type: Transform - pos: 34.5,20.5 - parent: 2 - - uid: 5879 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 5882 - components: - - type: Transform - pos: 36.5,26.5 - parent: 2 - - uid: 5896 - components: - - type: Transform - pos: 35.5,26.5 - parent: 2 - - uid: 5897 - components: - - type: Transform - pos: 34.5,16.5 + rot: 3.141592653589793 rad + pos: 48.5,25.5 parent: 2 - uid: 5900 components: @@ -121892,11 +132785,6 @@ entities: - type: Transform pos: 56.5,-51.5 parent: 2 - - uid: 5950 - components: - - type: Transform - pos: -28.5,-50.5 - parent: 2 - uid: 6035 components: - type: Transform @@ -121917,10 +132805,15 @@ entities: - type: Transform pos: 41.5,-15.5 parent: 2 - - uid: 6102 + - uid: 6109 components: - type: Transform - pos: 30.5,40.5 + pos: 14.5,-0.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: -31.5,-63.5 parent: 2 - uid: 6122 components: @@ -121942,25 +132835,25 @@ entities: - type: Transform pos: 46.5,13.5 parent: 2 - - uid: 6140 - components: - - type: Transform - pos: 30.5,35.5 - parent: 2 - uid: 6149 components: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 6150 + - uid: 6165 components: - type: Transform - pos: 34.5,39.5 + pos: -31.5,-67.5 parent: 2 - - uid: 6154 + - uid: 6172 components: - type: Transform - pos: 30.5,39.5 + pos: -31.5,-69.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + pos: -31.5,-83.5 parent: 2 - uid: 6190 components: @@ -121977,10 +132870,10 @@ entities: - type: Transform pos: 40.5,-16.5 parent: 2 - - uid: 6227 + - uid: 6224 components: - type: Transform - pos: -28.5,-67.5 + pos: -31.5,-68.5 parent: 2 - uid: 6233 components: @@ -122007,80 +132900,15 @@ entities: - type: Transform pos: 32.5,-61.5 parent: 2 - - uid: 6249 - components: - - type: Transform - pos: 22.5,-6.5 - parent: 2 - - uid: 6251 - components: - - type: Transform - pos: 22.5,-7.5 - parent: 2 - - uid: 6255 - components: - - type: Transform - pos: 20.5,-8.5 - parent: 2 - uid: 6256 components: - type: Transform - pos: 20.5,-9.5 - parent: 2 - - uid: 6258 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 2 - - uid: 6259 - components: - - type: Transform - pos: 20.5,-12.5 + pos: 28.5,-8.5 parent: 2 - uid: 6262 components: - type: Transform - pos: 23.5,-13.5 - parent: 2 - - uid: 6263 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 2 - - uid: 6266 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 2 - - uid: 6268 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 2 - - uid: 6269 - components: - - type: Transform - pos: 26.5,-10.5 - parent: 2 - - uid: 6280 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 2 - - uid: 6281 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 2 - - uid: 6283 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 2 - - uid: 6284 - components: - - type: Transform - pos: 21.5,-12.5 + pos: 28.5,-7.5 parent: 2 - uid: 6286 components: @@ -122097,165 +132925,35 @@ entities: - type: Transform pos: -67.5,-13.5 parent: 2 - - uid: 6314 + - uid: 6310 components: - type: Transform - pos: -7.5,-72.5 + pos: 11.5,-5.5 parent: 2 - - uid: 6315 + - uid: 6332 components: - type: Transform - pos: -7.5,-73.5 + pos: 15.5,-61.5 parent: 2 - - uid: 6317 + - uid: 6352 components: - type: Transform - pos: 23.5,3.5 - parent: 2 - - uid: 6318 - components: - - type: Transform - pos: -6.5,-66.5 - parent: 2 - - uid: 6320 - components: - - type: Transform - pos: 26.5,4.5 - parent: 2 - - uid: 6321 - components: - - type: Transform - pos: -3.5,-57.5 - parent: 2 - - uid: 6322 - components: - - type: Transform - pos: -5.5,-66.5 - parent: 2 - - uid: 6323 - components: - - type: Transform - pos: 8.5,-60.5 - parent: 2 - - uid: 6325 - components: - - type: Transform - pos: -4.5,-66.5 - parent: 2 - - uid: 6326 - components: - - type: Transform - pos: -3.5,-66.5 - parent: 2 - - uid: 6329 - components: - - type: Transform - pos: 6.5,-63.5 - parent: 2 - - uid: 6331 - components: - - type: Transform - pos: 6.5,-69.5 - parent: 2 - - uid: 6333 - components: - - type: Transform - pos: 9.5,-70.5 - parent: 2 - - uid: 6334 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 2 - - uid: 6335 - components: - - type: Transform - pos: 8.5,-66.5 - parent: 2 - - uid: 6336 - components: - - type: Transform - pos: 5.5,-51.5 - parent: 2 - - uid: 6337 - components: - - type: Transform - pos: 5.5,-52.5 - parent: 2 - - uid: 6342 - components: - - type: Transform - pos: -3.5,-60.5 - parent: 2 - - uid: 6345 - components: - - type: Transform - pos: -3.5,-63.5 - parent: 2 - - uid: 6346 - components: - - type: Transform - pos: -5.5,-69.5 - parent: 2 - - uid: 6348 - components: - - type: Transform - pos: 5.5,-53.5 - parent: 2 - - uid: 6349 - components: - - type: Transform - pos: -9.5,-70.5 - parent: 2 - - uid: 6350 - components: - - type: Transform - pos: -10.5,-72.5 - parent: 2 - - uid: 6351 - components: - - type: Transform - pos: 24.5,4.5 + pos: -4.5,-86.5 parent: 2 - uid: 6353 components: - type: Transform - pos: 6.5,-66.5 + pos: -10.5,-86.5 parent: 2 - uid: 6360 components: - type: Transform pos: -13.5,-57.5 parent: 2 - - uid: 6365 - components: - - type: Transform - pos: 23.5,-1.5 - parent: 2 - - uid: 6366 - components: - - type: Transform - pos: 22.5,-1.5 - parent: 2 - - uid: 6368 - components: - - type: Transform - pos: 20.5,-1.5 - parent: 2 - - uid: 6371 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 2 - - uid: 6372 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - uid: 6373 components: - type: Transform - pos: 26.5,1.5 + pos: 14.5,-15.5 parent: 2 - uid: 6376 components: @@ -122275,72 +132973,17 @@ entities: - uid: 6384 components: - type: Transform - pos: 7.5,-66.5 - parent: 2 - - uid: 6386 - components: - - type: Transform - pos: 8.5,-69.5 - parent: 2 - - uid: 6387 - components: - - type: Transform - pos: 7.5,-63.5 - parent: 2 - - uid: 6388 - components: - - type: Transform - pos: 12.5,-73.5 + pos: -1.5,-85.5 parent: 2 - uid: 6389 components: - type: Transform - pos: 26.5,3.5 - parent: 2 - - uid: 6392 - components: - - type: Transform - pos: -4.5,-57.5 - parent: 2 - - uid: 6393 - components: - - type: Transform - pos: 25.5,4.5 - parent: 2 - - uid: 6396 - components: - - type: Transform - pos: 13.5,-72.5 - parent: 2 - - uid: 6397 - components: - - type: Transform - pos: 10.5,-73.5 + pos: 12.5,-3.5 parent: 2 - uid: 6400 components: - type: Transform - pos: -4.5,-63.5 - parent: 2 - - uid: 6401 - components: - - type: Transform - pos: -4.5,-69.5 - parent: 2 - - uid: 6402 - components: - - type: Transform - pos: 10.5,-72.5 - parent: 2 - - uid: 6404 - components: - - type: Transform - pos: -9.5,-72.5 - parent: 2 - - uid: 6405 - components: - - type: Transform - pos: -5.5,-70.5 + pos: 16.5,-64.5 parent: 2 - uid: 6406 components: @@ -122350,52 +132993,17 @@ entities: - uid: 6407 components: - type: Transform - pos: 8.5,-63.5 + pos: -9.5,-72.5 parent: 2 - - uid: 6409 + - uid: 6418 components: - type: Transform - pos: -5.5,-63.5 - parent: 2 - - uid: 6411 - components: - - type: Transform - pos: 7.5,-69.5 - parent: 2 - - uid: 6412 - components: - - type: Transform - pos: -3.5,-69.5 - parent: 2 - - uid: 6413 - components: - - type: Transform - pos: 12.5,-72.5 - parent: 2 - - uid: 6415 - components: - - type: Transform - pos: -2.5,-51.5 - parent: 2 - - uid: 6416 - components: - - type: Transform - pos: 13.5,-70.5 + pos: 13.5,-62.5 parent: 2 - uid: 6422 components: - type: Transform - pos: -2.5,-52.5 - parent: 2 - - uid: 6423 - components: - - type: Transform - pos: -2.5,-53.5 - parent: 2 - - uid: 6426 - components: - - type: Transform - pos: -9.5,-51.5 + pos: 14.5,-65.5 parent: 2 - uid: 6427 components: @@ -122405,92 +133013,47 @@ entities: - uid: 6428 components: - type: Transform - pos: -5.5,-60.5 + pos: -9.5,-71.5 parent: 2 - - uid: 6432 + - uid: 6430 components: - type: Transform - pos: 14.5,-58.5 + pos: -9.5,-66.5 parent: 2 - - uid: 6435 + - uid: 6433 components: - type: Transform - pos: -9.5,-73.5 + pos: 12.5,-68.5 parent: 2 - uid: 6437 components: - type: Transform - pos: 8.5,-58.5 + pos: 12.5,-70.5 parent: 2 - - uid: 6441 + - uid: 6439 components: - type: Transform - pos: -4.5,-60.5 + pos: -10.5,-66.5 parent: 2 - uid: 6442 components: - type: Transform - pos: 7.5,-57.5 - parent: 2 - - uid: 6445 - components: - - type: Transform - pos: -3.5,-53.5 - parent: 2 - - uid: 6447 - components: - - type: Transform - pos: 6.5,-57.5 - parent: 2 - - uid: 6450 - components: - - type: Transform - pos: -10.5,-70.5 - parent: 2 - - uid: 6451 - components: - - type: Transform - pos: -6.5,-70.5 + pos: 12.5,-72.5 parent: 2 - uid: 6454 components: - type: Transform - pos: -6.5,-72.5 - parent: 2 - - uid: 6457 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 2 - - uid: 6462 - components: - - type: Transform - pos: 22.5,4.5 - parent: 2 - - uid: 6463 - components: - - type: Transform - pos: 20.5,4.5 + pos: -10.5,-87.5 parent: 2 - uid: 6464 components: - type: Transform pos: 36.5,-56.5 parent: 2 - - uid: 6471 + - uid: 6472 components: - type: Transform - pos: 23.5,4.5 - parent: 2 - - uid: 6478 - components: - - type: Transform - pos: -25.5,-44.5 - parent: 2 - - uid: 6479 - components: - - type: Transform - pos: -25.5,-45.5 + pos: -31.5,-8.5 parent: 2 - uid: 6482 components: @@ -122502,35 +133065,20 @@ entities: - type: Transform pos: -14.5,-57.5 parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 - uid: 6496 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 6506 + - uid: 6510 components: - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 6509 - components: - - type: Transform - pos: 9.5,-66.5 - parent: 2 - - uid: 6512 - components: - - type: Transform - pos: 9.5,-63.5 - parent: 2 - - uid: 6513 - components: - - type: Transform - pos: 8.5,-70.5 - parent: 2 - - uid: 6514 - components: - - type: Transform - pos: 9.5,-72.5 + pos: 9.5,-79.5 parent: 2 - uid: 6524 components: @@ -122542,55 +133090,10 @@ entities: - type: Transform pos: 13.5,-65.5 parent: 2 - - uid: 6527 + - uid: 6544 components: - type: Transform - pos: 13.5,-64.5 - parent: 2 - - uid: 6532 - components: - - type: Transform - pos: 10.5,-70.5 - parent: 2 - - uid: 6533 - components: - - type: Transform - pos: -3.5,-67.5 - parent: 2 - - uid: 6534 - components: - - type: Transform - pos: 6.5,-67.5 - parent: 2 - - uid: 6535 - components: - - type: Transform - pos: 6.5,-62.5 - parent: 2 - - uid: 6536 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 2 - - uid: 6537 - components: - - type: Transform - pos: -7.5,-70.5 - parent: 2 - - uid: 6538 - components: - - type: Transform - pos: 12.5,-70.5 - parent: 2 - - uid: 6546 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 2 - - uid: 6549 - components: - - type: Transform - pos: 25.5,-15.5 + pos: 15.5,-64.5 parent: 2 - uid: 6555 components: @@ -122602,6 +133105,16 @@ entities: - type: Transform pos: 41.5,-26.5 parent: 2 + - uid: 6588 + components: + - type: Transform + pos: -57.5,-39.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 - uid: 6616 components: - type: Transform @@ -122632,11 +133145,41 @@ entities: - type: Transform pos: 36.5,-57.5 parent: 2 + - uid: 6628 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: -37.5,-31.5 + parent: 2 - uid: 6640 components: - type: Transform pos: 32.5,-64.5 parent: 2 + - uid: 6641 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 - uid: 6663 components: - type: Transform @@ -122647,6 +133190,21 @@ entities: - type: Transform pos: 42.5,-1.5 parent: 2 + - uid: 6712 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 - uid: 6733 components: - type: Transform @@ -122702,6 +133260,11 @@ entities: - type: Transform pos: -66.5,-11.5 parent: 2 + - uid: 6880 + components: + - type: Transform + pos: -36.5,-61.5 + parent: 2 - uid: 6882 components: - type: Transform @@ -122722,16 +133285,42 @@ entities: - type: Transform pos: 43.5,-24.5 parent: 2 + - uid: 6931 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 2 - uid: 6944 components: - type: Transform pos: 40.5,-18.5 parent: 2 + - uid: 6946 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 - uid: 6950 components: - type: Transform pos: 40.5,-24.5 parent: 2 + - uid: 6960 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 - uid: 6961 components: - type: Transform @@ -122757,40 +133346,30 @@ entities: - type: Transform pos: 50.5,-77.5 parent: 2 - - uid: 6979 - components: - - type: Transform - pos: 15.5,-58.5 - parent: 2 - uid: 6993 components: - type: Transform pos: -68.5,-16.5 parent: 2 - - uid: 7034 + - uid: 6994 components: - type: Transform - pos: -41.5,-56.5 + pos: 24.5,-11.5 parent: 2 - - uid: 7042 + - uid: 7010 components: - type: Transform - pos: -42.5,-39.5 + pos: -53.5,-20.5 parent: 2 - uid: 7048 components: - type: Transform pos: 53.5,-59.5 parent: 2 - - uid: 7066 + - uid: 7056 components: - type: Transform - pos: 19.5,-7.5 - parent: 2 - - uid: 7070 - components: - - type: Transform - pos: 19.5,-5.5 + pos: 11.5,-12.5 parent: 2 - uid: 7075 components: @@ -122807,40 +133386,15 @@ entities: - type: Transform pos: 49.5,-10.5 parent: 2 - - uid: 7126 + - uid: 7105 components: - type: Transform - pos: 35.5,22.5 + pos: 8.5,-5.5 parent: 2 - - uid: 7128 + - uid: 7123 components: - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 7141 - components: - - type: Transform - pos: 34.5,43.5 - parent: 2 - - uid: 7142 - components: - - type: Transform - pos: 35.5,40.5 - parent: 2 - - uid: 7144 - components: - - type: Transform - pos: 35.5,43.5 - parent: 2 - - uid: 7146 - components: - - type: Transform - pos: 29.5,43.5 - parent: 2 - - uid: 7152 - components: - - type: Transform - pos: 30.5,45.5 + pos: 8.5,-9.5 parent: 2 - uid: 7164 components: @@ -122857,11 +133411,6 @@ entities: - type: Transform pos: 49.5,-69.5 parent: 2 - - uid: 7170 - components: - - type: Transform - pos: -27.5,-59.5 - parent: 2 - uid: 7184 components: - type: Transform @@ -122872,26 +133421,11 @@ entities: - type: Transform pos: -27.5,-53.5 parent: 2 - - uid: 7189 - components: - - type: Transform - pos: -48.5,-33.5 - parent: 2 - - uid: 7207 - components: - - type: Transform - pos: 13.5,-59.5 - parent: 2 - uid: 7208 components: - type: Transform pos: 44.5,-16.5 parent: 2 - - uid: 7209 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 2 - uid: 7229 components: - type: Transform @@ -122907,26 +133441,26 @@ entities: - type: Transform pos: 53.5,-47.5 parent: 2 + - uid: 7237 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 - uid: 7238 components: - type: Transform pos: -10.5,26.5 parent: 2 + - uid: 7240 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 - uid: 7244 components: - type: Transform pos: 81.5,-13.5 parent: 2 - - uid: 7262 - components: - - type: Transform - pos: -43.5,-56.5 - parent: 2 - - uid: 7264 - components: - - type: Transform - pos: 13.5,-58.5 - parent: 2 - uid: 7308 components: - type: Transform @@ -122947,26 +133481,6 @@ entities: - type: Transform pos: 17.5,-58.5 parent: 2 - - uid: 7316 - components: - - type: Transform - pos: 16.5,-58.5 - parent: 2 - - uid: 7317 - components: - - type: Transform - pos: 8.5,-57.5 - parent: 2 - - uid: 7324 - components: - - type: Transform - pos: -32.5,-65.5 - parent: 2 - - uid: 7334 - components: - - type: Transform - pos: -52.5,-26.5 - parent: 2 - uid: 7337 components: - type: Transform @@ -122977,21 +133491,11 @@ entities: - type: Transform pos: 53.5,-60.5 parent: 2 - - uid: 7347 - components: - - type: Transform - pos: 38.5,10.5 - parent: 2 - uid: 7348 components: - type: Transform pos: 53.5,-65.5 parent: 2 - - uid: 7349 - components: - - type: Transform - pos: -48.5,-26.5 - parent: 2 - uid: 7359 components: - type: Transform @@ -123042,11 +133546,6 @@ entities: - type: Transform pos: -19.5,7.5 parent: 2 - - uid: 7477 - components: - - type: Transform - pos: -48.5,-34.5 - parent: 2 - uid: 7481 components: - type: Transform @@ -123062,11 +133561,6 @@ entities: - type: Transform pos: -10.5,-58.5 parent: 2 - - uid: 7508 - components: - - type: Transform - pos: 9.5,-59.5 - parent: 2 - uid: 7516 components: - type: Transform @@ -123082,70 +133576,55 @@ entities: - type: Transform pos: -10.5,-57.5 parent: 2 - - uid: 7522 - components: - - type: Transform - pos: -5.5,-58.5 - parent: 2 - - uid: 7523 - components: - - type: Transform - pos: -5.5,-57.5 - parent: 2 - uid: 7529 components: - type: Transform pos: -20.5,-57.5 parent: 2 - - uid: 7533 - components: - - type: Transform - pos: 17.5,16.5 - parent: 2 - - uid: 7538 - components: - - type: Transform - pos: 8.5,-59.5 - parent: 2 - - uid: 7543 - components: - - type: Transform - pos: 12.5,-59.5 - parent: 2 - - uid: 7545 - components: - - type: Transform - pos: -5.5,-59.5 - parent: 2 - uid: 7546 components: - type: Transform pos: 49.5,-62.5 parent: 2 - - uid: 7558 + - uid: 7588 components: - type: Transform - pos: -41.5,-28.5 + pos: -5.5,-61.5 parent: 2 - - uid: 7616 + - uid: 7602 components: - type: Transform - pos: -41.5,-32.5 + pos: 5.5,-87.5 parent: 2 - - uid: 7621 + - uid: 7612 components: - type: Transform - pos: -41.5,-20.5 + pos: -10.5,-88.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + pos: -10.5,-89.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: -31.5,-7.5 parent: 2 - uid: 7631 components: - type: Transform pos: -28.5,14.5 parent: 2 - - uid: 7647 + - uid: 7633 components: - type: Transform - pos: 28.5,20.5 + pos: -33.5,-7.5 parent: 2 - uid: 7649 components: @@ -123162,225 +133641,145 @@ entities: - type: Transform pos: 80.5,-46.5 parent: 2 - - uid: 7653 + - uid: 7659 components: - type: Transform - pos: 29.5,20.5 + pos: 16.5,-60.5 parent: 2 - - uid: 7663 + - uid: 7671 components: - type: Transform - pos: -40.5,-56.5 + pos: 18.5,-16.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: 12.5,-86.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: -33.5,-9.5 parent: 2 - uid: 7731 components: - type: Transform pos: 43.5,-69.5 parent: 2 + - uid: 7761 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 - uid: 7785 components: - type: Transform pos: 72.5,-47.5 parent: 2 - - uid: 7806 + - uid: 7831 components: - type: Transform - pos: -48.5,-29.5 - parent: 2 - - uid: 7807 - components: - - type: Transform - pos: -52.5,-25.5 - parent: 2 - - uid: 7809 - components: - - type: Transform - pos: -45.5,-49.5 - parent: 2 - - uid: 7819 - components: - - type: Transform - pos: -52.5,-34.5 - parent: 2 - - uid: 7839 - components: - - type: Transform - pos: -44.5,-50.5 - parent: 2 - - uid: 7840 - components: - - type: Transform - pos: -44.5,-52.5 + pos: -30.5,-33.5 parent: 2 - uid: 7841 components: - type: Transform pos: -9.5,-50.5 parent: 2 - - uid: 7842 - components: - - type: Transform - pos: -44.5,-51.5 - parent: 2 - - uid: 7846 - components: - - type: Transform - pos: -53.5,-34.5 - parent: 2 - - uid: 7847 - components: - - type: Transform - pos: -33.5,-70.5 - parent: 2 - - uid: 7947 - components: - - type: Transform - pos: -49.5,-35.5 - parent: 2 - - uid: 7948 - components: - - type: Transform - pos: -52.5,-38.5 - parent: 2 - - uid: 7953 - components: - - type: Transform - pos: -52.5,-39.5 - parent: 2 - - uid: 7955 - components: - - type: Transform - pos: -49.5,-38.5 - parent: 2 - - uid: 7958 - components: - - type: Transform - pos: -45.5,-46.5 - parent: 2 - - uid: 7964 - components: - - type: Transform - pos: -45.5,-40.5 - parent: 2 - - uid: 7965 - components: - - type: Transform - pos: -45.5,-41.5 - parent: 2 - uid: 7993 components: - type: Transform pos: 37.5,-59.5 parent: 2 - - uid: 8010 + - uid: 8017 components: - type: Transform - pos: -6.5,-63.5 - parent: 2 - - uid: 8027 - components: - - type: Transform - pos: -32.5,-62.5 - parent: 2 - - uid: 8038 - components: - - type: Transform - pos: -45.5,-45.5 + pos: 13.5,-69.5 parent: 2 - uid: 8039 components: - type: Transform - pos: -48.5,-44.5 + pos: 16.5,-71.5 parent: 2 - - uid: 8055 + - uid: 8040 components: - type: Transform - pos: -42.5,-28.5 + pos: 16.5,-73.5 parent: 2 - - uid: 8059 + - uid: 8041 components: - type: Transform - pos: -53.5,-39.5 + pos: 16.5,-75.5 parent: 2 - - uid: 8062 + - uid: 8046 components: - type: Transform - pos: -48.5,-47.5 + pos: 16.5,-77.5 parent: 2 - - uid: 8063 + - uid: 8049 components: - type: Transform - pos: -49.5,-48.5 + pos: 16.5,-79.5 parent: 2 - - uid: 8071 + - uid: 8051 components: - type: Transform - pos: -34.5,-56.5 + pos: 16.5,-81.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: 16.5,-83.5 parent: 2 - uid: 8077 components: - type: Transform pos: 50.5,-79.5 parent: 2 - - uid: 8078 + - uid: 8196 components: - type: Transform - pos: -33.5,-59.5 + pos: -13.5,-69.5 parent: 2 - - uid: 8079 + - uid: 8198 components: - type: Transform - pos: -27.5,-66.5 + pos: -13.5,-71.5 parent: 2 - - uid: 8106 + - uid: 8199 components: - type: Transform - pos: -47.5,-44.5 + pos: -13.5,-73.5 parent: 2 - - uid: 8118 + - uid: 8200 components: - type: Transform - pos: -52.5,-48.5 + pos: -13.5,-75.5 parent: 2 - - uid: 8142 + - uid: 8202 components: - type: Transform - pos: -40.5,-28.5 + pos: -13.5,-77.5 parent: 2 - - uid: 8145 + - uid: 8203 components: - type: Transform - pos: -40.5,-26.5 + pos: -13.5,-79.5 parent: 2 - - uid: 8154 + - uid: 8204 components: - type: Transform - pos: -42.5,-19.5 - parent: 2 - - uid: 8164 - components: - - type: Transform - pos: -46.5,-41.5 - parent: 2 - - uid: 8169 - components: - - type: Transform - pos: -53.5,-44.5 - parent: 2 - - uid: 8171 - components: - - type: Transform - pos: -47.5,-41.5 - parent: 2 - - uid: 8172 - components: - - type: Transform - pos: -45.5,-44.5 - parent: 2 - - uid: 8173 - components: - - type: Transform - pos: -48.5,-41.5 + pos: -13.5,-81.5 parent: 2 - uid: 8254 components: @@ -123422,6 +133821,11 @@ entities: - type: Transform pos: 40.5,-26.5 parent: 2 + - uid: 8380 + components: + - type: Transform + pos: -52.5,-61.5 + parent: 2 - uid: 8385 components: - type: Transform @@ -123432,10 +133836,35 @@ entities: - type: Transform pos: 39.5,-16.5 parent: 2 - - uid: 8414 + - uid: 8391 components: - type: Transform - pos: 26.5,12.5 + pos: -53.5,-61.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: -50.5,-61.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: -38.5,-31.5 parent: 2 - uid: 8467 components: @@ -123447,15 +133876,21 @@ entities: - type: Transform pos: -20.5,7.5 parent: 2 + - uid: 8476 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 - uid: 8492 components: - type: Transform pos: -50.5,-10.5 parent: 2 - - uid: 8495 + - uid: 8507 components: - type: Transform - pos: 9.5,-13.5 + rot: 3.141592653589793 rad + pos: 46.5,18.5 parent: 2 - uid: 8541 components: @@ -123472,21 +133907,16 @@ entities: - type: Transform pos: -68.5,-17.5 parent: 2 + - uid: 8577 + components: + - type: Transform + pos: -60.5,-35.5 + parent: 2 - uid: 8594 components: - type: Transform pos: -25.5,24.5 parent: 2 - - uid: 8600 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 2 - - uid: 8605 - components: - - type: Transform - pos: -37.5,8.5 - parent: 2 - uid: 8623 components: - type: Transform @@ -123497,25 +133927,25 @@ entities: - type: Transform pos: 55.5,-23.5 parent: 2 - - uid: 8625 - components: - - type: Transform - pos: -24.5,-17.5 - parent: 2 - uid: 8629 components: - type: Transform pos: 57.5,-23.5 parent: 2 - - uid: 8685 + - uid: 8695 components: - type: Transform - pos: -19.5,-17.5 + pos: -35.5,2.5 parent: 2 - - uid: 8717 + - uid: 8702 components: - type: Transform - pos: -20.5,-17.5 + pos: -35.5,6.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: -34.5,6.5 parent: 2 - uid: 8718 components: @@ -123607,15 +134037,26 @@ entities: - type: Transform pos: 43.5,3.5 parent: 2 + - uid: 8853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,24.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: 8.5,-79.5 + parent: 2 - uid: 8864 components: - type: Transform pos: -35.5,19.5 parent: 2 - - uid: 8884 + - uid: 8893 components: - type: Transform - pos: 50.5,-33.5 + pos: -44.5,-58.5 parent: 2 - uid: 8896 components: @@ -123667,80 +134108,80 @@ entities: - type: Transform pos: -32.5,24.5 parent: 2 - - uid: 9132 + - uid: 9260 components: - type: Transform - pos: 26.5,14.5 + pos: 16.5,-63.5 + parent: 2 + - uid: 9266 + components: + - type: Transform + pos: 6.5,-72.5 parent: 2 - uid: 9276 components: - type: Transform pos: 2.5,-20.5 parent: 2 - - uid: 9278 + - uid: 9295 components: - type: Transform - pos: 2.5,-21.5 + pos: 8.5,-60.5 parent: 2 - - uid: 9284 + - uid: 9298 components: - type: Transform - pos: -42.5,-52.5 - parent: 2 - - uid: 9287 - components: - - type: Transform - pos: 19.5,1.5 - parent: 2 - - uid: 9288 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 2 - - uid: 9289 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 2 - - uid: 9307 - components: - - type: Transform - pos: -48.5,-55.5 - parent: 2 - - uid: 9309 - components: - - type: Transform - pos: -42.5,-55.5 - parent: 2 - - uid: 9311 - components: - - type: Transform - pos: 23.5,12.5 + pos: -6.5,-79.5 parent: 2 - uid: 9314 components: - type: Transform pos: 3.5,-24.5 parent: 2 - - uid: 9351 + - uid: 9375 components: - type: Transform - pos: 11.5,-8.5 + pos: -45.5,-58.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 9495 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: -38.5,-17.5 parent: 2 - uid: 9542 components: - type: Transform pos: 43.5,-73.5 parent: 2 + - uid: 9549 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 - uid: 9566 components: - type: Transform pos: 49.5,-82.5 parent: 2 - - uid: 9567 + - uid: 9569 components: - type: Transform - pos: 0.5,-21.5 + pos: -34.5,-2.5 parent: 2 - uid: 9575 components: @@ -123752,20 +134193,36 @@ entities: - type: Transform pos: 57.5,-38.5 parent: 2 + - uid: 9597 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 - uid: 9600 components: - type: Transform pos: 43.5,-78.5 parent: 2 - - uid: 9633 + - uid: 9602 components: - type: Transform - pos: 19.5,4.5 + rot: 3.141592653589793 rad + pos: 24.5,17.5 parent: 2 - - uid: 9635 + - uid: 9609 components: - type: Transform - pos: 17.5,4.5 + pos: -37.5,-39.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + pos: 4.5,-9.5 parent: 2 - uid: 9654 components: @@ -123777,26 +134234,31 @@ entities: - type: Transform pos: -14.5,-10.5 parent: 2 + - uid: 9660 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 - uid: 9663 components: - type: Transform pos: 66.5,-66.5 parent: 2 - - uid: 9668 + - uid: 9664 components: - type: Transform - pos: -25.5,-46.5 + pos: 28.5,-11.5 parent: 2 - uid: 9670 components: - type: Transform pos: -13.5,-0.5 parent: 2 - - uid: 9672 - components: - - type: Transform - pos: -25.5,-49.5 - parent: 2 - uid: 9691 components: - type: Transform @@ -123807,26 +134269,11 @@ entities: - type: Transform pos: -22.5,-56.5 parent: 2 - - uid: 9694 - components: - - type: Transform - pos: -23.5,-56.5 - parent: 2 - uid: 9701 components: - type: Transform pos: -9.5,-53.5 parent: 2 - - uid: 9713 - components: - - type: Transform - pos: 35.5,13.5 - parent: 2 - - uid: 9798 - components: - - type: Transform - pos: 22.5,12.5 - parent: 2 - uid: 9839 components: - type: Transform @@ -123842,11 +134289,6 @@ entities: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 9859 - components: - - type: Transform - pos: -11.5,-57.5 - parent: 2 - uid: 9863 components: - type: Transform @@ -123857,11 +134299,6 @@ entities: - type: Transform pos: -12.5,-57.5 parent: 2 - - uid: 9886 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 2 - uid: 9894 components: - type: Transform @@ -123882,11 +134319,6 @@ entities: - type: Transform pos: -27.5,-49.5 parent: 2 - - uid: 9945 - components: - - type: Transform - pos: -26.5,-49.5 - parent: 2 - uid: 9946 components: - type: Transform @@ -123915,83 +134347,204 @@ entities: - uid: 10011 components: - type: Transform - pos: -17.5,-65.5 - parent: 2 - - uid: 10012 - components: - - type: Transform - pos: -13.5,-65.5 + pos: -58.5,-57.5 parent: 2 - uid: 10013 components: - type: Transform - pos: -15.5,-65.5 - parent: 2 - - uid: 10077 - components: - - type: Transform - pos: 18.5,4.5 + pos: -31.5,-18.5 parent: 2 - uid: 10081 components: - type: Transform pos: -14.5,-6.5 parent: 2 - - uid: 10171 + - uid: 10113 components: - type: Transform - pos: 17.5,26.5 + pos: 8.5,-13.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: -32.5,-33.5 parent: 2 - uid: 10173 components: - type: Transform pos: -17.5,3.5 parent: 2 + - uid: 10193 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 10228 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 - uid: 10384 components: - type: Transform - pos: -47.5,-56.5 + pos: -58.5,-61.5 parent: 2 - - uid: 10385 + - uid: 10412 components: - type: Transform - pos: -47.5,-55.5 + pos: 11.5,-8.5 parent: 2 - - uid: 10387 + - uid: 10417 components: - type: Transform - pos: -47.5,-53.5 + pos: -31.5,-10.5 parent: 2 - - uid: 10388 + - uid: 10422 components: - type: Transform - pos: -47.5,-52.5 + pos: 63.5,-51.5 parent: 2 - - uid: 10390 + - uid: 10423 components: - type: Transform - pos: -45.5,-52.5 + rot: -1.5707963267948966 rad + pos: -58.5,-55.5 parent: 2 - - uid: 10393 + - uid: 10428 components: - type: Transform - pos: -50.5,-53.5 + pos: 27.5,-5.5 parent: 2 - - uid: 10399 + - uid: 10429 components: - type: Transform - pos: -50.5,-55.5 + pos: 22.5,-8.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + pos: 27.5,-11.5 parent: 2 - uid: 10498 components: - type: Transform pos: -1.5,15.5 parent: 2 + - uid: 10528 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 10529 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 10531 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 - uid: 10534 components: - type: Transform pos: -14.5,-16.5 parent: 2 + - uid: 10541 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 10550 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 10555 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 10557 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 10691 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + pos: -49.5,-35.5 + parent: 2 - uid: 10694 components: - type: Transform @@ -124002,6 +134555,31 @@ entities: - type: Transform pos: -10.5,32.5 parent: 2 + - uid: 10742 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 + - uid: 10744 + components: + - type: Transform + pos: -56.5,-24.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + pos: -54.5,-56.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + pos: -56.5,-23.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + pos: -56.5,-20.5 + parent: 2 - uid: 10778 components: - type: Transform @@ -124127,65 +134705,116 @@ entities: - type: Transform pos: 66.5,-84.5 parent: 2 + - uid: 10971 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 - uid: 10985 components: - type: Transform pos: 85.5,-39.5 parent: 2 + - uid: 10999 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 11035 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 - uid: 11043 components: - type: Transform pos: -28.5,-55.5 parent: 2 + - uid: 11059 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 11071 + components: + - type: Transform + pos: -46.5,-25.5 + parent: 2 - uid: 11076 components: - type: Transform pos: 74.5,-59.5 parent: 2 - - uid: 11130 + - uid: 11122 components: - type: Transform - pos: -34.5,14.5 + pos: 18.5,-19.5 parent: 2 - - uid: 11162 + - uid: 11169 components: - type: Transform - pos: -21.5,-65.5 - parent: 2 - - uid: 11163 - components: - - type: Transform - pos: -23.5,-65.5 + pos: -9.5,-86.5 parent: 2 - uid: 11209 components: - type: Transform pos: -21.5,18.5 parent: 2 - - uid: 11263 + - uid: 11216 components: - type: Transform - pos: -18.5,-17.5 + rot: -1.5707963267948966 rad + pos: 26.5,30.5 parent: 2 - - uid: 11265 + - uid: 11239 components: - type: Transform - pos: -18.5,-12.5 + pos: -36.5,-38.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: -54.5,-47.5 + parent: 2 + - uid: 11264 + components: + - type: Transform + pos: -54.5,-48.5 parent: 2 - uid: 11271 components: - type: Transform - pos: -46.5,-35.5 + pos: -26.5,-26.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + pos: -53.5,-46.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: 51.5,18.5 parent: 2 - uid: 11287 components: - type: Transform pos: 17.5,-59.5 parent: 2 - - uid: 11321 + - uid: 11290 components: - type: Transform - pos: -34.5,8.5 + pos: -7.5,-27.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + pos: -25.5,-38.5 parent: 2 - uid: 11323 components: @@ -124227,6 +134856,11 @@ entities: - type: Transform pos: 31.5,-36.5 parent: 2 + - uid: 11483 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 - uid: 11526 components: - type: Transform @@ -124237,16 +134871,46 @@ entities: - type: Transform pos: 63.5,-67.5 parent: 2 + - uid: 11553 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 - uid: 11554 components: - type: Transform pos: 64.5,-63.5 parent: 2 + - uid: 11575 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 - uid: 11598 components: - type: Transform pos: 64.5,-67.5 parent: 2 + - uid: 11609 + components: + - type: Transform + pos: 4.5,-85.5 + parent: 2 - uid: 11625 components: - type: Transform @@ -124257,16 +134921,16 @@ entities: - type: Transform pos: -49.5,-10.5 parent: 2 + - uid: 11787 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 - uid: 11803 components: - type: Transform pos: 82.5,-38.5 parent: 2 - - uid: 11815 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 2 - uid: 11824 components: - type: Transform @@ -124277,31 +134941,93 @@ entities: - type: Transform pos: 73.5,-72.5 parent: 2 - - uid: 11871 - components: - - type: Transform - pos: -19.5,-65.5 - parent: 2 - uid: 11873 components: - type: Transform pos: 80.5,-53.5 parent: 2 + - uid: 11892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-33.5 + parent: 2 - uid: 11894 components: - type: Transform pos: -28.5,35.5 parent: 2 - - uid: 11969 + - uid: 11908 components: - type: Transform - pos: -28.5,-20.5 + pos: -32.5,-29.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,14.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: 64.5,-55.5 + parent: 2 + - uid: 12133 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + pos: -59.5,-58.5 parent: 2 - uid: 12323 components: - type: Transform pos: -14.5,-22.5 parent: 2 + - uid: 12337 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 - uid: 12356 components: - type: Transform @@ -124312,70 +135038,460 @@ entities: - type: Transform pos: 51.5,-30.5 parent: 2 - - uid: 12364 - components: - - type: Transform - pos: -45.5,-25.5 - parent: 2 - uid: 12374 components: - type: Transform pos: -17.5,16.5 parent: 2 - - uid: 12380 + - uid: 12448 components: - type: Transform - pos: -43.5,-39.5 + pos: -48.5,-58.5 parent: 2 - - uid: 12400 + - uid: 12462 components: - type: Transform - pos: -25.5,-20.5 + pos: -54.5,-20.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + pos: 13.5,5.5 parent: 2 - uid: 12501 components: - type: Transform pos: 52.5,-30.5 parent: 2 + - uid: 12511 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + pos: -46.5,-39.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + pos: -46.5,-40.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + pos: -52.5,-28.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + pos: -52.5,-39.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + pos: -53.5,-35.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + pos: -51.5,-35.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + pos: -52.5,-35.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + pos: -50.5,-35.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + pos: -51.5,-20.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: -47.5,-20.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: -46.5,-22.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + pos: -54.5,-24.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + pos: -53.5,-38.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + pos: -53.5,-39.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + pos: -50.5,-24.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + pos: -49.5,-59.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + pos: -50.5,-32.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + pos: -50.5,-28.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 2 - uid: 12670 components: - type: Transform pos: -17.5,4.5 parent: 2 + - uid: 12692 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 2 - uid: 12693 components: - type: Transform pos: -18.5,10.5 parent: 2 + - uid: 12696 + components: + - type: Transform + pos: -53.5,-32.5 + parent: 2 - uid: 12701 components: - type: Transform pos: -23.5,2.5 parent: 2 - - uid: 12717 + - uid: 12705 components: - type: Transform - pos: -46.5,-34.5 + pos: -51.5,-28.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: 7.5,-87.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: 7.5,-86.5 + parent: 2 + - uid: 12731 + components: + - type: Transform + pos: 8.5,-86.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + pos: 11.5,-87.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: 13.5,-86.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + pos: 7.5,-97.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + pos: 12.5,-76.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + pos: 13.5,-88.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + pos: 13.5,-87.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: -5.5,-95.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + pos: 8.5,-69.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: -4.5,-64.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + pos: -11.5,-90.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + pos: -12.5,-91.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: -12.5,-90.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: -4.5,-96.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: -4.5,-97.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: 14.5,-90.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: 13.5,-89.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + pos: -3.5,-73.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 6.5,-73.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + pos: -57.5,-27.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + pos: -57.5,-32.5 parent: 2 - uid: 12981 components: - type: Transform pos: -21.5,15.5 parent: 2 + - uid: 13025 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 - uid: 13027 components: - type: Transform pos: 71.5,-39.5 parent: 2 + - uid: 13057 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 - uid: 13102 components: - type: Transform pos: -22.5,18.5 parent: 2 - - uid: 13263 + - uid: 13124 components: - type: Transform - pos: -46.5,-33.5 + pos: -49.5,-25.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + pos: -3.5,-75.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + pos: 8.5,-75.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + pos: 15.5,-90.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: 8.5,-72.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: -5.5,-76.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: -5.5,-60.5 parent: 2 - uid: 13306 components: @@ -124387,6 +135503,36 @@ entities: - type: Transform pos: -20.5,15.5 parent: 2 + - uid: 13386 + components: + - type: Transform + pos: -6.5,-80.5 + parent: 2 + - uid: 13391 + components: + - type: Transform + pos: -9.5,-76.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + pos: -6.5,-76.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: 11.5,-80.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: -8.5,-79.5 + parent: 2 - uid: 13469 components: - type: Transform @@ -124402,6 +135548,11 @@ entities: - type: Transform pos: 26.5,-60.5 parent: 2 + - uid: 13691 + components: + - type: Transform + pos: -9.5,-79.5 + parent: 2 - uid: 13738 components: - type: Transform @@ -124417,65 +135568,115 @@ entities: - type: Transform pos: 17.5,-60.5 parent: 2 - - uid: 13802 + - uid: 13859 components: - type: Transform - pos: -43.5,-37.5 + pos: 18.5,-17.5 parent: 2 - - uid: 13863 + - uid: 13880 components: - type: Transform - pos: -30.5,-9.5 + pos: -46.5,-41.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + pos: -46.5,-42.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: -49.5,-42.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + pos: -50.5,-42.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + pos: -51.5,-43.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + pos: -51.5,-44.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + pos: 11.5,-76.5 parent: 2 - uid: 13897 components: - type: Transform pos: -42.5,-6.5 parent: 2 - - uid: 14014 + - uid: 13904 components: - type: Transform - pos: -43.5,-38.5 + pos: -43.5,-45.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + pos: -49.5,-46.5 + parent: 2 + - uid: 13911 + components: + - type: Transform + pos: -46.5,-47.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + pos: -43.5,-42.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + pos: -44.5,-47.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + pos: -51.5,-46.5 + parent: 2 + - uid: 13920 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + pos: -43.5,-46.5 parent: 2 - uid: 14211 components: - type: Transform pos: -22.5,23.5 parent: 2 - - uid: 14213 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - uid: 14263 components: - type: Transform pos: -16.5,24.5 parent: 2 - - uid: 14272 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 - uid: 14276 components: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 14278 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - uid: 14302 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 14333 + - uid: 14314 components: - type: Transform - pos: 14.5,26.5 + pos: 42.5,22.5 parent: 2 - uid: 14334 components: @@ -124487,20 +135688,10 @@ entities: - type: Transform pos: -2.5,15.5 parent: 2 - - uid: 14336 + - uid: 14348 components: - type: Transform - pos: 16.5,29.5 - parent: 2 - - uid: 14413 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 2 - - uid: 14423 - components: - - type: Transform - pos: 11.5,-16.5 + pos: -8.5,-76.5 parent: 2 - uid: 14456 components: @@ -124512,6 +135703,26 @@ entities: - type: Transform pos: 45.5,-42.5 parent: 2 + - uid: 14494 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + pos: -5.5,-79.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + pos: -8.5,-80.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + pos: 9.5,-80.5 + parent: 2 - uid: 14510 components: - type: Transform @@ -124557,11 +135768,6 @@ entities: - type: Transform pos: -19.5,6.5 parent: 2 - - uid: 14779 - components: - - type: Transform - pos: -45.5,-27.5 - parent: 2 - uid: 14792 components: - type: Transform @@ -124572,16 +135778,6 @@ entities: - type: Transform pos: -19.5,1.5 parent: 2 - - uid: 14805 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 2 - - uid: 14808 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 2 - uid: 14810 components: - type: Transform @@ -124612,61 +135808,76 @@ entities: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 15023 + - uid: 14916 components: - type: Transform - pos: -46.5,-36.5 + pos: -63.5,-35.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + pos: -63.5,-39.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 2 + - uid: 15008 + components: + - type: Transform + pos: 7.5,-64.5 parent: 2 - uid: 15024 components: - type: Transform pos: -22.5,8.5 parent: 2 - - uid: 15036 + - uid: 15042 components: - type: Transform - pos: -34.5,10.5 + pos: 8.5,-61.5 parent: 2 - - uid: 15195 + - uid: 15049 components: - type: Transform - pos: -42.5,-25.5 + pos: 9.5,-100.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + pos: 8.5,-95.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + pos: 13.5,-96.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + pos: -3.5,-66.5 + parent: 2 + - uid: 15240 + components: + - type: Transform + pos: -54.5,-58.5 parent: 2 - uid: 15286 components: - type: Transform pos: -23.5,23.5 parent: 2 - - uid: 15288 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 - uid: 15289 components: - type: Transform pos: -24.5,23.5 parent: 2 - - uid: 15294 - components: - - type: Transform - pos: -46.5,-38.5 - parent: 2 - - uid: 15305 - components: - - type: Transform - pos: -45.5,-26.5 - parent: 2 - uid: 15328 components: - type: Transform pos: -10.5,34.5 parent: 2 - - uid: 15361 - components: - - type: Transform - pos: -46.5,-37.5 - parent: 2 - uid: 15371 components: - type: Transform @@ -124682,6 +135893,16 @@ entities: - type: Transform pos: -26.5,24.5 parent: 2 + - uid: 15451 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 - uid: 15467 components: - type: Transform @@ -124712,6 +135933,11 @@ entities: - type: Transform pos: -58.5,-15.5 parent: 2 + - uid: 15606 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 2 - uid: 15644 components: - type: Transform @@ -124737,41 +135963,16 @@ entities: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 15734 + - uid: 15786 components: - type: Transform - pos: -35.5,-59.5 - parent: 2 - - uid: 15737 - components: - - type: Transform - pos: -38.5,-59.5 - parent: 2 - - uid: 15740 - components: - - type: Transform - pos: -39.5,-59.5 - parent: 2 - - uid: 15741 - components: - - type: Transform - pos: -39.5,-57.5 - parent: 2 - - uid: 15744 - components: - - type: Transform - pos: -38.5,-56.5 + pos: -54.5,-55.5 parent: 2 - uid: 15823 components: - type: Transform pos: -61.5,-7.5 parent: 2 - - uid: 15836 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 2 - uid: 15843 components: - type: Transform @@ -124862,11 +136063,6 @@ entities: - type: Transform pos: 42.5,-40.5 parent: 2 - - uid: 15933 - components: - - type: Transform - pos: 29.5,-8.5 - parent: 2 - uid: 15941 components: - type: Transform @@ -125032,6 +136228,17 @@ entities: - type: Transform pos: -13.5,-55.5 parent: 2 + - uid: 16055 + components: + - type: Transform + pos: -3.5,-72.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,18.5 + parent: 2 - uid: 16080 components: - type: Transform @@ -125047,21 +136254,26 @@ entities: - type: Transform pos: -13.5,-52.5 parent: 2 + - uid: 16092 + components: + - type: Transform + pos: 13.5,-66.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + pos: -3.5,-69.5 + parent: 2 + - uid: 16113 + components: + - type: Transform + pos: -64.5,-57.5 + parent: 2 - uid: 16141 components: - type: Transform pos: -43.5,-4.5 parent: 2 - - uid: 16179 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 2 - - uid: 16180 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 2 - uid: 16201 components: - type: Transform @@ -125142,16 +136354,6 @@ entities: - type: Transform pos: 56.5,-60.5 parent: 2 - - uid: 16683 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 2 - - uid: 16687 - components: - - type: Transform - pos: -11.5,-52.5 - parent: 2 - uid: 16723 components: - type: Transform @@ -125217,6 +136419,21 @@ entities: - type: Transform pos: -43.5,-2.5 parent: 2 + - uid: 16895 + components: + - type: Transform + pos: -64.5,-60.5 + parent: 2 + - uid: 16964 + components: + - type: Transform + pos: 5.5,-100.5 + parent: 2 + - uid: 16965 + components: + - type: Transform + pos: -49.5,-47.5 + parent: 2 - uid: 16993 components: - type: Transform @@ -125292,16 +136509,37 @@ entities: - type: Transform pos: 51.5,-72.5 parent: 2 - - uid: 17283 + - uid: 17393 components: - type: Transform - pos: -30.5,-8.5 + pos: 21.5,20.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 17459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,13.5 + parent: 2 + - uid: 17461 + components: + - type: Transform + pos: 44.5,13.5 parent: 2 - uid: 17655 components: - type: Transform pos: -35.5,18.5 parent: 2 + - uid: 17706 + components: + - type: Transform + pos: 64.5,-51.5 + parent: 2 - uid: 17714 components: - type: Transform @@ -125347,6 +136585,12 @@ entities: - type: Transform pos: 86.5,-32.5 parent: 2 + - uid: 17817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-51.5 + parent: 2 - uid: 17844 components: - type: Transform @@ -125372,11 +136616,6 @@ entities: - type: Transform pos: 89.5,-11.5 parent: 2 - - uid: 17855 - components: - - type: Transform - pos: -34.5,11.5 - parent: 2 - uid: 17972 components: - type: Transform @@ -125387,11 +136626,6 @@ entities: - type: Transform pos: 90.5,-11.5 parent: 2 - - uid: 18148 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 2 - uid: 18161 components: - type: Transform @@ -125462,11 +136696,6 @@ entities: - type: Transform pos: -23.5,40.5 parent: 2 - - uid: 18236 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 - uid: 18243 components: - type: Transform @@ -125492,6 +136721,12 @@ entities: - type: Transform pos: -10.5,35.5 parent: 2 + - uid: 18409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,23.5 + parent: 2 - uid: 18423 components: - type: Transform @@ -125552,21 +136787,11 @@ entities: - type: Transform pos: 97.5,-35.5 parent: 2 - - uid: 18553 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - uid: 18605 components: - type: Transform pos: -28.5,34.5 parent: 2 - - uid: 18612 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 - uid: 18724 components: - type: Transform @@ -125582,120 +136807,120 @@ entities: - type: Transform pos: -23.5,4.5 parent: 2 - - uid: 19069 - components: - - type: Transform - pos: -16.5,-83.5 - parent: 2 - - uid: 19142 - components: - - type: Transform - pos: -15.5,-83.5 - parent: 2 - - uid: 19143 - components: - - type: Transform - pos: -14.5,-83.5 - parent: 2 - - uid: 19144 - components: - - type: Transform - pos: -12.5,-82.5 - parent: 2 - - uid: 19145 - components: - - type: Transform - pos: -10.5,-81.5 - parent: 2 - - uid: 19146 - components: - - type: Transform - pos: -8.5,-80.5 - parent: 2 - - uid: 19147 - components: - - type: Transform - pos: -6.5,-81.5 - parent: 2 - - uid: 19148 - components: - - type: Transform - pos: -4.5,-82.5 - parent: 2 - uid: 19149 components: - type: Transform - pos: -2.5,-83.5 - parent: 2 - - uid: 19151 - components: - - type: Transform - pos: -1.5,-83.5 - parent: 2 - - uid: 19153 - components: - - type: Transform - pos: 0.5,-84.5 - parent: 2 - - uid: 19154 - components: - - type: Transform - pos: 1.5,-84.5 - parent: 2 - - uid: 19155 - components: - - type: Transform - pos: 2.5,-84.5 - parent: 2 - - uid: 19156 - components: - - type: Transform - pos: 4.5,-83.5 - parent: 2 - - uid: 19157 - components: - - type: Transform - pos: 5.5,-83.5 - parent: 2 - - uid: 19158 - components: - - type: Transform - pos: 7.5,-82.5 - parent: 2 - - uid: 19159 - components: - - type: Transform - pos: 9.5,-81.5 - parent: 2 - - uid: 19181 - components: - - type: Transform - pos: 11.5,-80.5 + pos: -6.5,-96.5 parent: 2 - uid: 19182 components: - type: Transform - pos: 13.5,-81.5 + pos: 15.5,-96.5 parent: 2 - uid: 19183 components: - type: Transform - pos: 15.5,-82.5 + pos: 5.5,-98.5 parent: 2 - uid: 19185 components: - type: Transform - pos: 17.5,-83.5 + pos: 7.5,-98.5 parent: 2 - - uid: 19186 + - uid: 19199 components: - type: Transform - pos: 18.5,-83.5 + pos: 9.5,-96.5 parent: 2 - - uid: 19187 + - uid: 19214 components: - type: Transform - pos: 19.5,-83.5 + pos: 7.5,-100.5 + parent: 2 + - uid: 19218 + components: + - type: Transform + pos: 8.5,-100.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + pos: 11.5,-79.5 + parent: 2 + - uid: 19226 + components: + - type: Transform + pos: 14.5,-96.5 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: -7.5,-96.5 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: 7.5,-69.5 + parent: 2 + - uid: 19239 + components: + - type: Transform + pos: 5.5,-99.5 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: 8.5,-96.5 + parent: 2 + - uid: 19241 + components: + - type: Transform + pos: 7.5,-99.5 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: 12.5,-79.5 + parent: 2 + - uid: 19247 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 2 + - uid: 19254 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 2 + - uid: 19257 + components: + - type: Transform + pos: 8.5,-66.5 + parent: 2 + - uid: 19260 + components: + - type: Transform + pos: -3.5,-68.5 + parent: 2 + - uid: 19261 + components: + - type: Transform + pos: -5.5,-69.5 + parent: 2 + - uid: 19264 + components: + - type: Transform + pos: -11.5,-89.5 + parent: 2 + - uid: 19266 + components: + - type: Transform + pos: -5.5,-96.5 + parent: 2 + - uid: 19274 + components: + - type: Transform + pos: 14.5,-89.5 parent: 2 - uid: 19365 components: @@ -125802,10 +137027,31 @@ entities: - type: Transform pos: 36.5,-49.5 parent: 2 - - uid: 20665 + - uid: 20160 components: - type: Transform - pos: -34.5,15.5 + pos: -5.5,-72.5 + parent: 2 + - uid: 20181 + components: + - type: Transform + pos: 7.5,-72.5 + parent: 2 + - uid: 20193 + components: + - type: Transform + pos: 12.5,-66.5 + parent: 2 + - uid: 20195 + components: + - type: Transform + pos: 9.5,-76.5 + parent: 2 + - uid: 20663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,26.5 parent: 2 - uid: 20666 components: @@ -125815,105 +137061,173 @@ entities: - uid: 20670 components: - type: Transform - pos: -35.5,13.5 - parent: 2 - - uid: 20671 - components: - - type: Transform - pos: -36.5,13.5 - parent: 2 - - uid: 20720 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 2 - - uid: 20742 - components: - - type: Transform - pos: -42.5,-57.5 - parent: 2 - - uid: 20743 - components: - - type: Transform - pos: -42.5,-59.5 - parent: 2 - - uid: 20744 - components: - - type: Transform - pos: -41.5,-59.5 - parent: 2 - - uid: 20745 - components: - - type: Transform - pos: -40.5,-59.5 + pos: 43.5,22.5 parent: 2 - uid: 20770 components: - type: Transform pos: -33.5,-1.5 parent: 2 + - uid: 21760 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 21785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,25.5 + parent: 2 + - uid: 21807 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 21859 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - uid: 21870 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 21877 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 21879 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 21881 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,12.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - uid: 21897 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 21899 + components: + - type: Transform + pos: 63.5,-55.5 + parent: 2 + - uid: 22004 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 22013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 2 + - uid: 22015 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 22022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-49.5 + parent: 2 + - uid: 22025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-50.5 + parent: 2 + - uid: 22038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 + - uid: 22054 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 22081 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 22082 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 22086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,10.5 + parent: 2 + - uid: 22089 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 22096 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 22101 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 22117 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 22118 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 22125 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 22639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,15.5 + parent: 2 - proto: WallReinforcedRust entities: - - uid: 141 - components: - - type: Transform - pos: 38.5,11.5 - parent: 2 - - uid: 144 - components: - - type: Transform - pos: 38.5,12.5 - parent: 2 - uid: 249 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 273 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 2 - - uid: 286 - components: - - type: Transform - pos: 8.5,2.5 - parent: 2 - - uid: 307 - components: - - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 374 - components: - - type: Transform - pos: -39.5,-37.5 - parent: 2 - - uid: 375 - components: - - type: Transform - pos: -39.5,-38.5 - parent: 2 - - uid: 513 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 576 - components: - - type: Transform - pos: 7.5,7.5 - parent: 2 - - uid: 592 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - - uid: 648 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - uid: 694 components: - type: Transform @@ -125949,11 +137263,6 @@ entities: - type: Transform pos: -59.5,-9.5 parent: 2 - - uid: 1053 - components: - - type: Transform - pos: 40.5,13.5 - parent: 2 - uid: 1079 components: - type: Transform @@ -125984,30 +137293,26 @@ entities: - type: Transform pos: -61.5,-10.5 parent: 2 + - uid: 1118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-54.5 + parent: 2 - uid: 1158 components: - type: Transform pos: 13.5,8.5 parent: 2 - - uid: 1413 + - uid: 1448 components: - type: Transform - pos: 12.5,9.5 + pos: 20.5,20.5 parent: 2 - - uid: 1442 + - uid: 1659 components: - type: Transform - pos: -43.5,-32.5 - parent: 2 - - uid: 1950 - components: - - type: Transform - pos: -39.5,-32.5 - parent: 2 - - uid: 2047 - components: - - type: Transform - pos: 12.5,4.5 + pos: 18.5,24.5 parent: 2 - uid: 2139 components: @@ -126024,11 +137329,6 @@ entities: - type: Transform pos: -68.5,-6.5 parent: 2 - - uid: 3190 - components: - - type: Transform - pos: 16.5,26.5 - parent: 2 - uid: 3208 components: - type: Transform @@ -126069,11 +137369,6 @@ entities: - type: Transform pos: 57.5,-77.5 parent: 2 - - uid: 3714 - components: - - type: Transform - pos: 16.5,20.5 - parent: 2 - uid: 3719 components: - type: Transform @@ -126089,16 +137384,6 @@ entities: - type: Transform pos: 5.5,9.5 parent: 2 - - uid: 3866 - components: - - type: Transform - pos: 23.5,15.5 - parent: 2 - - uid: 4060 - components: - - type: Transform - pos: -36.5,10.5 - parent: 2 - uid: 4144 components: - type: Transform @@ -126124,16 +137409,6 @@ entities: - type: Transform pos: 67.5,-66.5 parent: 2 - - uid: 4830 - components: - - type: Transform - pos: -43.5,-36.5 - parent: 2 - - uid: 4954 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 2 - uid: 4974 components: - type: Transform @@ -126149,11 +137424,6 @@ entities: - type: Transform pos: -19.5,11.5 parent: 2 - - uid: 5173 - components: - - type: Transform - pos: -34.5,13.5 - parent: 2 - uid: 5183 components: - type: Transform @@ -126229,11 +137499,6 @@ entities: - type: Transform pos: -60.5,-10.5 parent: 2 - - uid: 5609 - components: - - type: Transform - pos: -53.5,-31.5 - parent: 2 - uid: 5622 components: - type: Transform @@ -126244,11 +137509,6 @@ entities: - type: Transform pos: 75.5,-57.5 parent: 2 - - uid: 5648 - components: - - type: Transform - pos: -49.5,-26.5 - parent: 2 - uid: 5736 components: - type: Transform @@ -126284,6 +137544,11 @@ entities: - type: Transform pos: -23.5,8.5 parent: 2 + - uid: 5811 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 2 - uid: 5814 components: - type: Transform @@ -126404,21 +137669,11 @@ entities: - type: Transform pos: -32.5,22.5 parent: 2 - - uid: 6619 - components: - - type: Transform - pos: 22.5,15.5 - parent: 2 - uid: 6620 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 6631 - components: - - type: Transform - pos: 25.5,14.5 - parent: 2 - uid: 6632 components: - type: Transform @@ -126429,31 +137684,6 @@ entities: - type: Transform pos: -3.5,-24.5 parent: 2 - - uid: 6872 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 2 - - uid: 6876 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 2 - - uid: 6878 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 2 - - uid: 6887 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 2 - - uid: 6888 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - uid: 6905 components: - type: Transform @@ -126469,21 +137699,6 @@ entities: - type: Transform pos: -5.5,-27.5 parent: 2 - - uid: 6915 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 2 - - uid: 6918 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 2 - uid: 6923 components: - type: Transform @@ -126494,11 +137709,6 @@ entities: - type: Transform pos: -10.5,-27.5 parent: 2 - - uid: 6929 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 2 - uid: 6933 components: - type: Transform @@ -126509,36 +137719,6 @@ entities: - type: Transform pos: 28.5,-5.5 parent: 2 - - uid: 6938 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 2 - - uid: 6946 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 6949 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 2 - - uid: 6953 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 2 - - uid: 6972 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 2 - - uid: 6973 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 2 - uid: 6982 components: - type: Transform @@ -126559,16 +137739,6 @@ entities: - type: Transform pos: -29.5,9.5 parent: 2 - - uid: 7097 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 2 - - uid: 7103 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 2 - uid: 7107 components: - type: Transform @@ -126614,11 +137784,6 @@ entities: - type: Transform pos: 81.5,-14.5 parent: 2 - - uid: 7313 - components: - - type: Transform - pos: -46.5,-20.5 - parent: 2 - uid: 7318 components: - type: Transform @@ -126629,46 +137794,16 @@ entities: - type: Transform pos: -26.5,-12.5 parent: 2 - - uid: 7331 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 2 - - uid: 7333 - components: - - type: Transform - pos: -32.5,-19.5 - parent: 2 - uid: 7352 components: - type: Transform pos: -22.5,7.5 parent: 2 - - uid: 7363 - components: - - type: Transform - pos: -28.5,-70.5 - parent: 2 - uid: 7370 components: - type: Transform pos: -20.5,18.5 parent: 2 - - uid: 7389 - components: - - type: Transform - pos: -40.5,-19.5 - parent: 2 - - uid: 7392 - components: - - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 7417 - components: - - type: Transform - pos: -31.5,-70.5 - parent: 2 - uid: 7430 components: - type: Transform @@ -126684,56 +137819,6 @@ entities: - type: Transform pos: 32.5,-59.5 parent: 2 - - uid: 7483 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 7488 - components: - - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 7489 - components: - - type: Transform - pos: 29.5,22.5 - parent: 2 - - uid: 7499 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 7500 - components: - - type: Transform - pos: 34.5,45.5 - parent: 2 - - uid: 7510 - components: - - type: Transform - pos: 35.5,30.5 - parent: 2 - - uid: 7517 - components: - - type: Transform - pos: 34.5,17.5 - parent: 2 - - uid: 7527 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 7537 - components: - - type: Transform - pos: 34.5,18.5 - parent: 2 - - uid: 7562 - components: - - type: Transform - pos: 36.5,30.5 - parent: 2 - uid: 7572 components: - type: Transform @@ -126789,16 +137874,6 @@ entities: - type: Transform pos: -19.5,12.5 parent: 2 - - uid: 7662 - components: - - type: Transform - pos: 34.5,38.5 - parent: 2 - - uid: 7664 - components: - - type: Transform - pos: 34.5,40.5 - parent: 2 - uid: 7701 components: - type: Transform @@ -126814,21 +137889,16 @@ entities: - type: Transform pos: 25.5,-33.5 parent: 2 - - uid: 7734 - components: - - type: Transform - pos: 29.5,40.5 - parent: 2 - - uid: 7741 - components: - - type: Transform - pos: 30.5,43.5 - parent: 2 - uid: 7744 components: - type: Transform pos: 49.5,-3.5 parent: 2 + - uid: 7748 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 - uid: 7749 components: - type: Transform @@ -126849,16 +137919,6 @@ entities: - type: Transform pos: 66.5,-44.5 parent: 2 - - uid: 7808 - components: - - type: Transform - pos: 26.5,2.5 - parent: 2 - - uid: 7810 - components: - - type: Transform - pos: -32.5,-66.5 - parent: 2 - uid: 7820 components: - type: Transform @@ -126889,36 +137949,11 @@ entities: - type: Transform pos: 44.5,-13.5 parent: 2 - - uid: 8045 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 8046 - components: - - type: Transform - pos: -46.5,-32.5 - parent: 2 - uid: 8047 components: - type: Transform pos: 48.5,-3.5 parent: 2 - - uid: 8052 - components: - - type: Transform - pos: -21.5,-17.5 - parent: 2 - - uid: 8065 - components: - - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 8067 - components: - - type: Transform - pos: -27.5,-62.5 - parent: 2 - uid: 8089 components: - type: Transform @@ -126934,36 +137969,16 @@ entities: - type: Transform pos: 42.5,6.5 parent: 2 - - uid: 8116 - components: - - type: Transform - pos: -28.5,-66.5 - parent: 2 - - uid: 8119 - components: - - type: Transform - pos: 41.5,13.5 - parent: 2 - uid: 8144 components: - type: Transform pos: 45.5,13.5 parent: 2 - - uid: 8152 - components: - - type: Transform - pos: -53.5,-26.5 - parent: 2 - uid: 8175 components: - type: Transform pos: -17.5,23.5 parent: 2 - - uid: 8201 - components: - - type: Transform - pos: 30.5,13.5 - parent: 2 - uid: 8209 components: - type: Transform @@ -127014,36 +138029,16 @@ entities: - type: Transform pos: 26.5,-52.5 parent: 2 - - uid: 8277 - components: - - type: Transform - pos: -42.5,-32.5 - parent: 2 - uid: 8318 components: - type: Transform pos: 27.5,20.5 parent: 2 - - uid: 8360 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 2 - - uid: 8368 - components: - - type: Transform - pos: -39.5,-56.5 - parent: 2 - uid: 8392 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - uid: 8395 - components: - - type: Transform - pos: -48.5,-32.5 - parent: 2 - uid: 8399 components: - type: Transform @@ -127054,81 +138049,16 @@ entities: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 8403 - components: - - type: Transform - pos: -45.5,-48.5 - parent: 2 - uid: 8404 components: - type: Transform pos: 43.5,-26.5 parent: 2 - - uid: 8408 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 2 - - uid: 8415 - components: - - type: Transform - pos: -53.5,-30.5 - parent: 2 - - uid: 8417 - components: - - type: Transform - pos: -49.5,-34.5 - parent: 2 - - uid: 8446 - components: - - type: Transform - pos: -35.5,10.5 - parent: 2 - - uid: 8461 - components: - - type: Transform - pos: -34.5,6.5 - parent: 2 - - uid: 8470 - components: - - type: Transform - pos: -46.5,-44.5 - parent: 2 - - uid: 8471 - components: - - type: Transform - pos: -53.5,-43.5 - parent: 2 - - uid: 8475 - components: - - type: Transform - pos: -48.5,-39.5 - parent: 2 - - uid: 8476 - components: - - type: Transform - pos: -48.5,-40.5 - parent: 2 - - uid: 8477 - components: - - type: Transform - pos: -53.5,-42.5 - parent: 2 - uid: 8486 components: - type: Transform pos: -49.5,-14.5 parent: 2 - - uid: 8503 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 2 - - uid: 8679 - components: - - type: Transform - pos: 16.5,16.5 - parent: 2 - uid: 8746 components: - type: Transform @@ -127139,16 +138069,6 @@ entities: - type: Transform pos: 53.5,-35.5 parent: 2 - - uid: 8772 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 2 - - uid: 8778 - components: - - type: Transform - pos: -52.5,-47.5 - parent: 2 - uid: 8894 components: - type: Transform @@ -127159,56 +138079,6 @@ entities: - type: Transform pos: 56.5,-37.5 parent: 2 - - uid: 8910 - components: - - type: Transform - pos: -35.5,-56.5 - parent: 2 - - uid: 8911 - components: - - type: Transform - pos: -49.5,-47.5 - parent: 2 - - uid: 9001 - components: - - type: Transform - pos: -35.5,8.5 - parent: 2 - - uid: 9031 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 2 - - uid: 9043 - components: - - type: Transform - pos: -53.5,-47.5 - parent: 2 - - uid: 9137 - components: - - type: Transform - pos: -40.5,-27.5 - parent: 2 - - uid: 9146 - components: - - type: Transform - pos: -45.5,-24.5 - parent: 2 - - uid: 9180 - components: - - type: Transform - pos: -49.5,-39.5 - parent: 2 - - uid: 9253 - components: - - type: Transform - pos: -45.5,-47.5 - parent: 2 - - uid: 9255 - components: - - type: Transform - pos: -44.5,-49.5 - parent: 2 - uid: 9256 components: - type: Transform @@ -127239,61 +138109,11 @@ entities: - type: Transform pos: 43.5,-18.5 parent: 2 - - uid: 9334 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 2 - - uid: 9335 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - - uid: 9367 - components: - - type: Transform - pos: -43.5,-52.5 - parent: 2 - - uid: 9391 - components: - - type: Transform - pos: -46.5,-52.5 - parent: 2 - - uid: 9392 - components: - - type: Transform - pos: -48.5,-53.5 - parent: 2 - - uid: 9395 - components: - - type: Transform - pos: -42.5,-53.5 - parent: 2 - - uid: 9398 - components: - - type: Transform - pos: 25.5,12.5 - parent: 2 - - uid: 9399 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 2 - - uid: 9523 - components: - - type: Transform - pos: 26.5,13.5 - parent: 2 - uid: 9562 components: - type: Transform pos: -21.5,13.5 parent: 2 - - uid: 9569 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 - uid: 9571 components: - type: Transform @@ -127304,41 +138124,11 @@ entities: - type: Transform pos: 54.5,-37.5 parent: 2 - - uid: 9624 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 2 - - uid: 9629 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 2 - - uid: 9661 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 2 - - uid: 9662 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 2 - uid: 9799 components: - type: Transform pos: -17.5,14.5 parent: 2 - - uid: 9841 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - - uid: 9856 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 2 - uid: 9858 components: - type: Transform @@ -127349,16 +138139,6 @@ entities: - type: Transform pos: -14.5,-9.5 parent: 2 - - uid: 9934 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 2 - - uid: 9939 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 10002 components: - type: Transform @@ -127384,31 +138164,6 @@ entities: - type: Transform pos: -28.5,31.5 parent: 2 - - uid: 10198 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 2 - - uid: 10199 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 2 - - uid: 10200 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 2 - - uid: 10201 - components: - - type: Transform - pos: 21.5,-1.5 - parent: 2 - - uid: 10202 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 2 - uid: 10241 components: - type: Transform @@ -127449,16 +138204,17 @@ entities: - type: Transform pos: 84.5,-38.5 parent: 2 + - uid: 10925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-64.5 + parent: 2 - uid: 10978 components: - type: Transform pos: -20.5,40.5 parent: 2 - - uid: 10993 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 2 - uid: 11017 components: - type: Transform @@ -127484,6 +138240,12 @@ entities: - type: Transform pos: 55.5,-19.5 parent: 2 + - uid: 11024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-17.5 + parent: 2 - uid: 11033 components: - type: Transform @@ -127504,11 +138266,6 @@ entities: - type: Transform pos: 50.5,-29.5 parent: 2 - - uid: 11041 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - uid: 11042 components: - type: Transform @@ -127519,21 +138276,95 @@ entities: - type: Transform pos: 52.5,-14.5 parent: 2 - - uid: 11059 + - uid: 11082 components: - type: Transform - pos: 19.5,-1.5 + rot: 3.141592653589793 rad + pos: -40.5,-21.5 parent: 2 - - uid: 11061 + - uid: 11109 components: - type: Transform - pos: 0.5,-14.5 + rot: 3.141592653589793 rad + pos: -27.5,-59.5 parent: 2 - uid: 11165 components: - type: Transform pos: -12.5,37.5 parent: 2 + - uid: 11266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-39.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-43.5 + parent: 2 + - uid: 11292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-45.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-47.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-45.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-70.5 + parent: 2 + - uid: 11572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-70.5 + parent: 2 + - uid: 11620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-66.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-24.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-17.5 + parent: 2 + - uid: 11825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-81.5 + parent: 2 - uid: 11875 components: - type: Transform @@ -127579,6 +138410,12 @@ entities: - type: Transform pos: 51.5,-43.5 parent: 2 + - uid: 11903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-39.5 + parent: 2 - uid: 11927 components: - type: Transform @@ -127589,6 +138426,18 @@ entities: - type: Transform pos: 54.5,-48.5 parent: 2 + - uid: 11965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-57.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-56.5 + parent: 2 - uid: 12069 components: - type: Transform @@ -127604,21 +138453,70 @@ entities: - type: Transform pos: -19.5,3.5 parent: 2 - - uid: 12133 + - uid: 12207 components: - type: Transform - pos: -52.5,-44.5 + rot: 3.141592653589793 rad + pos: -36.5,-65.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-65.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-13.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-16.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-81.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-81.5 parent: 2 - uid: 12321 components: - type: Transform pos: -37.5,5.5 parent: 2 + - uid: 12342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-82.5 + parent: 2 - uid: 12353 components: - type: Transform pos: 53.5,-58.5 parent: 2 + - uid: 12362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-59.5 + parent: 2 - uid: 12365 components: - type: Transform @@ -127629,11 +138527,29 @@ entities: - type: Transform pos: 49.5,-70.5 parent: 2 + - uid: 12390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-20.5 + parent: 2 - uid: 12441 components: - type: Transform pos: 53.5,-62.5 parent: 2 + - uid: 12478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-35.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-35.5 + parent: 2 - uid: 12486 components: - type: Transform @@ -127644,11 +138560,50 @@ entities: - type: Transform pos: -19.5,2.5 parent: 2 + - uid: 12555 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-50.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-20.5 + parent: 2 - uid: 12601 components: - type: Transform pos: 43.5,-76.5 parent: 2 + - uid: 12616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-60.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-58.5 + parent: 2 - uid: 12648 components: - type: Transform @@ -127669,11 +138624,77 @@ entities: - type: Transform pos: 37.5,-60.5 parent: 2 + - uid: 12689 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-13.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-39.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-61.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-60.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 - uid: 13141 components: - type: Transform pos: 43.5,-74.5 parent: 2 + - uid: 13157 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-61.5 + parent: 2 - uid: 13223 components: - type: Transform @@ -127689,15 +138710,282 @@ entities: - type: Transform pos: 37.5,-61.5 parent: 2 - - uid: 14427 + - uid: 13229 components: - type: Transform - pos: -30.5,0.5 + rot: 3.141592653589793 rad + pos: -35.5,-11.5 parent: 2 - - uid: 14441 + - uid: 13250 components: - type: Transform - pos: -43.5,-35.5 + pos: 13.5,2.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + pos: 20.5,23.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-58.5 + parent: 2 + - uid: 13409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-58.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-56.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-57.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-57.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-17.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-24.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-24.5 + parent: 2 + - uid: 13723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-21.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-22.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-47.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-60.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-50.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 13887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-30.5 + parent: 2 + - uid: 13890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-57.5 + parent: 2 + - uid: 13900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-60.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-20.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-39.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-34.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-58.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-39.5 + parent: 2 + - uid: 13922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-21.5 + parent: 2 + - uid: 13975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-60.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-21.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-24.5 + parent: 2 + - uid: 14098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-59.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-36.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-39.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-39.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-20.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-18.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-37.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-39.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-27.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-32.5 + parent: 2 + - uid: 14150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-26.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-32.5 + parent: 2 + - uid: 14279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-27.5 + parent: 2 + - uid: 14280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-20.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-42.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-45.5 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: 13.5,-5.5 parent: 2 - uid: 14481 components: @@ -127714,35 +139002,166 @@ entities: - type: Transform pos: 80.5,-16.5 parent: 2 + - uid: 14744 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-44.5 + parent: 2 - uid: 14816 components: - type: Transform - pos: 34.5,10.5 + rot: 3.141592653589793 rad + pos: -43.5,-43.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-47.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-47.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-47.5 + parent: 2 + - uid: 14932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-46.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - uid: 14957 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 15028 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-26.5 parent: 2 - uid: 15265 components: - type: Transform pos: -30.5,-2.5 parent: 2 + - uid: 15307 + components: + - type: Transform + pos: 48.5,18.5 + parent: 2 + - uid: 15312 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 - uid: 15316 components: - type: Transform pos: -30.5,1.5 parent: 2 + - uid: 15444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-36.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-38.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-35.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-52.5 + parent: 2 + - uid: 15448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-57.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-57.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-49.5 + parent: 2 + - uid: 15457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-59.5 + parent: 2 - uid: 15476 components: - type: Transform pos: -58.5,-14.5 parent: 2 - - uid: 15735 + - uid: 15768 components: - type: Transform - pos: -36.5,-59.5 - parent: 2 - - uid: 15736 - components: - - type: Transform - pos: -37.5,-59.5 + pos: 11.5,-15.5 parent: 2 - uid: 15884 components: @@ -127899,6 +139318,11 @@ entities: - type: Transform pos: 56.5,-65.5 parent: 2 + - uid: 16233 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 - uid: 16234 components: - type: Transform @@ -127909,6 +139333,16 @@ entities: - type: Transform pos: -59.5,-16.5 parent: 2 + - uid: 16308 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 - uid: 16451 components: - type: Transform @@ -127929,11 +139363,6 @@ entities: - type: Transform pos: 56.5,-63.5 parent: 2 - - uid: 16884 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 2 - uid: 16996 components: - type: Transform @@ -127954,6 +139383,11 @@ entities: - type: Transform pos: -42.5,-2.5 parent: 2 + - uid: 17527 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 - uid: 17718 components: - type: Transform @@ -127999,21 +139433,11 @@ entities: - type: Transform pos: 66.5,-37.5 parent: 2 - - uid: 17975 - components: - - type: Transform - pos: 37.5,10.5 - parent: 2 - uid: 18196 components: - type: Transform pos: 95.5,-16.5 parent: 2 - - uid: 18386 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - uid: 18470 components: - type: Transform @@ -128079,15 +139503,165 @@ entities: - type: Transform pos: 39.5,-78.5 parent: 2 + - uid: 20541 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 20636 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 - uid: 20656 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 20673 + - uid: 21355 components: - type: Transform - pos: -36.5,11.5 + pos: 14.5,4.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 21365 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 21370 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 21673 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 21738 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 21784 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 21803 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 21852 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 21860 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 21868 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 21871 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 21878 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 21894 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 21910 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 21960 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 22010 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 22016 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 22017 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 22021 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 22027 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 22119 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 22127 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 22134 + components: + - type: Transform + pos: 43.5,13.5 parent: 2 - proto: WallSolid entities: @@ -128111,16 +139685,31 @@ entities: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 112 + - uid: 116 components: - type: Transform - pos: 13.5,14.5 + pos: 19.5,-12.5 parent: 2 - uid: 120 components: - type: Transform pos: -22.5,-6.5 parent: 2 + - uid: 130 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 - uid: 205 components: - type: Transform @@ -128131,10 +139720,10 @@ entities: - type: Transform pos: 47.5,-50.5 parent: 2 - - uid: 236 + - uid: 257 components: - type: Transform - pos: 2.5,-43.5 + pos: -37.5,-34.5 parent: 2 - uid: 272 components: @@ -128151,15 +139740,15 @@ entities: - type: Transform pos: 6.5,-40.5 parent: 2 - - uid: 337 + - uid: 320 components: - type: Transform - pos: 7.5,-43.5 + pos: -8.5,-87.5 parent: 2 - - uid: 338 + - uid: 334 components: - type: Transform - pos: -31.5,-36.5 + pos: 0.5,-43.5 parent: 2 - uid: 345 components: @@ -128171,6 +139760,11 @@ entities: - type: Transform pos: 5.5,-29.5 parent: 2 + - uid: 381 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 2 - uid: 383 components: - type: Transform @@ -128181,11 +139775,21 @@ entities: - type: Transform pos: -23.5,12.5 parent: 2 + - uid: 482 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 - uid: 542 components: - type: Transform pos: 67.5,-58.5 parent: 2 + - uid: 548 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 - uid: 590 components: - type: Transform @@ -128201,11 +139805,21 @@ entities: - type: Transform pos: -21.5,21.5 parent: 2 + - uid: 620 + components: + - type: Transform + pos: -50.5,-31.5 + parent: 2 - uid: 622 components: - type: Transform pos: 7.5,-35.5 parent: 2 + - uid: 624 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 - uid: 644 components: - type: Transform @@ -128216,6 +139830,16 @@ entities: - type: Transform pos: -17.5,21.5 parent: 2 + - uid: 766 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: -41.5,-56.5 + parent: 2 - uid: 870 components: - type: Transform @@ -128231,25 +139855,35 @@ entities: - type: Transform pos: -9.5,21.5 parent: 2 + - uid: 935 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 - uid: 957 components: - type: Transform pos: -12.5,20.5 parent: 2 - - uid: 958 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 2 - uid: 978 components: - type: Transform pos: 10.5,22.5 parent: 2 - - uid: 1009 + - uid: 996 components: - type: Transform - pos: 14.5,14.5 + pos: 35.5,14.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 35.5,15.5 parent: 2 - uid: 1088 components: @@ -128266,10 +139900,10 @@ entities: - type: Transform pos: 13.5,18.5 parent: 2 - - uid: 1318 + - uid: 1302 components: - type: Transform - pos: 14.5,13.5 + pos: 30.5,19.5 parent: 2 - uid: 1392 components: @@ -128281,16 +139915,16 @@ entities: - type: Transform pos: -14.5,18.5 parent: 2 - - uid: 1395 - components: - - type: Transform - pos: -15.5,18.5 - parent: 2 - uid: 1397 components: - type: Transform pos: -12.5,18.5 parent: 2 + - uid: 1412 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 - uid: 1481 components: - type: Transform @@ -128321,11 +139955,6 @@ entities: - type: Transform pos: 49.5,-43.5 parent: 2 - - uid: 1665 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 2 - uid: 1668 components: - type: Transform @@ -128336,15 +139965,20 @@ entities: - type: Transform pos: 31.5,-29.5 parent: 2 - - uid: 1699 + - uid: 1677 components: - type: Transform - pos: -25.5,-39.5 + pos: -42.5,-53.5 parent: 2 - - uid: 1708 + - uid: 1680 components: - type: Transform - pos: -31.5,-51.5 + pos: 23.5,-39.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 24.5,9.5 parent: 2 - uid: 1714 components: @@ -128356,16 +139990,32 @@ entities: - type: Transform pos: -21.5,-28.5 parent: 2 - - uid: 1760 + - uid: 1783 components: - type: Transform - pos: -42.5,-37.5 + pos: 30.5,16.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-44.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: -50.5,-50.5 parent: 2 - uid: 1869 components: - type: Transform pos: 43.5,-5.5 parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 - uid: 1901 components: - type: Transform @@ -128376,6 +140026,11 @@ entities: - type: Transform pos: -10.5,-5.5 parent: 2 + - uid: 2063 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 - uid: 2072 components: - type: Transform @@ -128411,6 +140066,11 @@ entities: - type: Transform pos: 13.5,17.5 parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 - uid: 2179 components: - type: Transform @@ -128421,11 +140081,6 @@ entities: - type: Transform pos: -12.5,-30.5 parent: 2 - - uid: 2206 - components: - - type: Transform - pos: -6.5,-46.5 - parent: 2 - uid: 2216 components: - type: Transform @@ -128441,6 +140096,11 @@ entities: - type: Transform pos: 44.5,-33.5 parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 - uid: 2307 components: - type: Transform @@ -128481,11 +140141,6 @@ entities: - type: Transform pos: -20.5,21.5 parent: 2 - - uid: 2431 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 2 - uid: 2438 components: - type: Transform @@ -128501,20 +140156,16 @@ entities: - type: Transform pos: 12.5,-49.5 parent: 2 - - uid: 2544 + - uid: 2500 components: - type: Transform - pos: 35.5,-5.5 + pos: 8.5,-54.5 parent: 2 - - uid: 2569 + - uid: 2582 components: - type: Transform - pos: -6.5,-56.5 - parent: 2 - - uid: 2584 - components: - - type: Transform - pos: -6.5,-55.5 + rot: 1.5707963267948966 rad + pos: -25.5,-48.5 parent: 2 - uid: 2606 components: @@ -128526,26 +140177,16 @@ entities: - type: Transform pos: -6.5,-29.5 parent: 2 - - uid: 2680 + - uid: 2682 components: - type: Transform - pos: -3.5,-46.5 + pos: 23.5,-45.5 parent: 2 - uid: 2687 components: - type: Transform pos: 2.5,-32.5 parent: 2 - - uid: 2695 - components: - - type: Transform - pos: -31.5,-50.5 - parent: 2 - - uid: 2703 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 2 - uid: 2710 components: - type: Transform @@ -128591,11 +140232,6 @@ entities: - type: Transform pos: -12.5,-16.5 parent: 2 - - uid: 2961 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 2 - uid: 2983 components: - type: Transform @@ -128606,15 +140242,10 @@ entities: - type: Transform pos: -24.5,19.5 parent: 2 - - uid: 3033 + - uid: 3030 components: - type: Transform - pos: -44.5,-44.5 - parent: 2 - - uid: 3058 - components: - - type: Transform - pos: 12.5,-10.5 + pos: 1.5,-16.5 parent: 2 - uid: 3067 components: @@ -128646,11 +140277,6 @@ entities: - type: Transform pos: -18.5,-49.5 parent: 2 - - uid: 3099 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - uid: 3160 components: - type: Transform @@ -128661,21 +140287,11 @@ entities: - type: Transform pos: 61.5,-74.5 parent: 2 - - uid: 3172 - components: - - type: Transform - pos: -4.5,-46.5 - parent: 2 - uid: 3177 components: - type: Transform pos: -10.5,-33.5 parent: 2 - - uid: 3192 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 2 - uid: 3207 components: - type: Transform @@ -128686,6 +140302,11 @@ entities: - type: Transform pos: 2.5,-28.5 parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 - uid: 3247 components: - type: Transform @@ -128716,11 +140337,6 @@ entities: - type: Transform pos: -16.5,-28.5 parent: 2 - - uid: 3294 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - uid: 3298 components: - type: Transform @@ -128801,15 +140417,15 @@ entities: - type: Transform pos: -20.5,-21.5 parent: 2 - - uid: 3376 + - uid: 3355 components: - type: Transform - pos: 15.5,-13.5 + pos: 22.5,-17.5 parent: 2 - - uid: 3400 + - uid: 3404 components: - type: Transform - pos: 15.5,-9.5 + pos: 14.5,-7.5 parent: 2 - uid: 3409 components: @@ -128891,41 +140507,11 @@ entities: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 3530 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 2 - - uid: 3531 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 2 - - uid: 3532 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - uid: 3573 components: - type: Transform pos: 20.5,9.5 parent: 2 - - uid: 3597 - components: - - type: Transform - pos: 38.5,7.5 - parent: 2 - - uid: 3634 - components: - - type: Transform - pos: -6.5,-45.5 - parent: 2 - - uid: 3638 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - uid: 3663 components: - type: Transform @@ -128936,6 +140522,11 @@ entities: - type: Transform pos: 6.5,-37.5 parent: 2 + - uid: 3696 + components: + - type: Transform + pos: 15.5,-55.5 + parent: 2 - uid: 3729 components: - type: Transform @@ -128946,11 +140537,6 @@ entities: - type: Transform pos: 13.5,-40.5 parent: 2 - - uid: 3744 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 2 - uid: 3750 components: - type: Transform @@ -128981,21 +140567,6 @@ entities: - type: Transform pos: 18.5,-34.5 parent: 2 - - uid: 3787 - components: - - type: Transform - pos: 18.5,-41.5 - parent: 2 - - uid: 3791 - components: - - type: Transform - pos: 6.5,-46.5 - parent: 2 - - uid: 3802 - components: - - type: Transform - pos: -31.5,-38.5 - parent: 2 - uid: 3812 components: - type: Transform @@ -129011,25 +140582,11 @@ entities: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 3815 + - uid: 3828 components: - type: Transform - pos: 21.5,-39.5 - parent: 2 - - uid: 3817 - components: - - type: Transform - pos: 21.5,-41.5 - parent: 2 - - uid: 3818 - components: - - type: Transform - pos: 20.5,-41.5 - parent: 2 - - uid: 3819 - components: - - type: Transform - pos: 19.5,-41.5 + rot: 1.5707963267948966 rad + pos: 30.5,20.5 parent: 2 - uid: 3834 components: @@ -129041,11 +140598,6 @@ entities: - type: Transform pos: 16.5,-45.5 parent: 2 - - uid: 3839 - components: - - type: Transform - pos: 17.5,-45.5 - parent: 2 - uid: 3840 components: - type: Transform @@ -129081,20 +140633,15 @@ entities: - type: Transform pos: -11.5,-43.5 parent: 2 - - uid: 3874 + - uid: 3876 components: - type: Transform - pos: -26.5,-37.5 + pos: -53.5,-56.5 parent: 2 - - uid: 3947 + - uid: 3983 components: - type: Transform - pos: 20.5,6.5 - parent: 2 - - uid: 3999 - components: - - type: Transform - pos: -25.5,-24.5 + pos: -50.5,-53.5 parent: 2 - uid: 4004 components: @@ -129121,6 +140668,11 @@ entities: - type: Transform pos: -0.5,-30.5 parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 - uid: 4046 components: - type: Transform @@ -129131,20 +140683,20 @@ entities: - type: Transform pos: -21.5,-26.5 parent: 2 - - uid: 4104 + - uid: 4061 components: - type: Transform - pos: -32.5,-39.5 + pos: 29.5,-0.5 parent: 2 - - uid: 4109 + - uid: 4098 components: - type: Transform - pos: -34.5,-39.5 + pos: 22.5,8.5 parent: 2 - - uid: 4141 + - uid: 4164 components: - type: Transform - pos: 8.5,-43.5 + pos: 23.5,-43.5 parent: 2 - uid: 4173 components: @@ -129201,11 +140753,6 @@ entities: - type: Transform pos: 30.5,-40.5 parent: 2 - - uid: 4355 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 2 - uid: 4441 components: - type: Transform @@ -129221,220 +140768,45 @@ entities: - type: Transform pos: 32.5,-39.5 parent: 2 - - uid: 4474 + - uid: 4451 components: - type: Transform - pos: 5.5,-46.5 + pos: 28.5,9.5 parent: 2 - uid: 4481 components: - type: Transform pos: 30.5,-44.5 parent: 2 - - uid: 4506 - components: - - type: Transform - pos: 35.5,-7.5 - parent: 2 - - uid: 4585 - components: - - type: Transform - pos: 4.5,-46.5 - parent: 2 - - uid: 4587 - components: - - type: Transform - pos: 8.5,-46.5 - parent: 2 - - uid: 4598 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 2 - uid: 4642 components: - type: Transform pos: 8.5,-40.5 parent: 2 - - uid: 4664 - components: - - type: Transform - pos: 4.5,-43.5 - parent: 2 - - uid: 4672 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 2 - - uid: 4683 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: 4.5,-45.5 - parent: 2 - - uid: 4690 - components: - - type: Transform - pos: -26.5,-35.5 - parent: 2 - - uid: 4691 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - uid: 4692 - components: - - type: Transform - pos: 4.5,-41.5 - parent: 2 - - uid: 4693 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 2 - - uid: 4700 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - uid: 4703 components: - type: Transform pos: 68.5,-66.5 parent: 2 - - uid: 4705 - components: - - type: Transform - pos: -27.5,-39.5 - parent: 2 - - uid: 4706 - components: - - type: Transform - pos: -28.5,-39.5 - parent: 2 - - uid: 4727 - components: - - type: Transform - pos: -32.5,-28.5 - parent: 2 - - uid: 4729 - components: - - type: Transform - pos: -33.5,-28.5 - parent: 2 - uid: 4737 components: - type: Transform pos: 61.5,-76.5 parent: 2 - - uid: 4740 - components: - - type: Transform - pos: -31.5,-28.5 - parent: 2 - - uid: 4746 - components: - - type: Transform - pos: -25.5,-25.5 - parent: 2 - - uid: 4747 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 2 - - uid: 4750 - components: - - type: Transform - pos: 7.5,-46.5 - parent: 2 - - uid: 4757 - components: - - type: Transform - pos: -33.5,-27.5 - parent: 2 - - uid: 4758 - components: - - type: Transform - pos: -35.5,-35.5 - parent: 2 - - uid: 4768 - components: - - type: Transform - pos: -35.5,-33.5 - parent: 2 - - uid: 4770 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 2 - - uid: 4780 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 2 - - uid: 4783 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 2 - - uid: 4784 - components: - - type: Transform - pos: -33.5,-26.5 - parent: 2 - - uid: 4795 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 2 - - uid: 4800 - components: - - type: Transform - pos: -25.5,-28.5 - parent: 2 - - uid: 4807 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 2 - - uid: 4808 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 2 - - uid: 4809 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 2 - uid: 4862 components: - type: Transform pos: 71.5,-68.5 parent: 2 - - uid: 4864 - components: - - type: Transform - pos: -6.5,-57.5 - parent: 2 - uid: 4871 components: - type: Transform pos: 8.5,-32.5 parent: 2 - - uid: 4874 + - uid: 4918 components: - type: Transform - pos: 4.5,-37.5 - parent: 2 - - uid: 4908 - components: - - type: Transform - pos: -31.5,-24.5 + pos: 21.5,11.5 parent: 2 - uid: 4923 components: @@ -129456,20 +140828,25 @@ entities: - type: Transform pos: 49.5,-38.5 parent: 2 - - uid: 4967 + - uid: 4951 components: - type: Transform - pos: -31.5,-23.5 + pos: -41.5,-33.5 parent: 2 - - uid: 4968 + - uid: 4998 components: - type: Transform - pos: -31.5,-22.5 + pos: -35.5,-56.5 parent: 2 - - uid: 4970 + - uid: 5027 components: - type: Transform - pos: -31.5,-20.5 + pos: -35.5,-55.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 29.5,3.5 parent: 2 - uid: 5162 components: @@ -129486,6 +140863,16 @@ entities: - type: Transform pos: 7.5,-32.5 parent: 2 + - uid: 5187 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 - uid: 5304 components: - type: Transform @@ -129496,10 +140883,10 @@ entities: - type: Transform pos: 35.5,5.5 parent: 2 - - uid: 5351 + - uid: 5413 components: - type: Transform - pos: 34.5,-5.5 + pos: 22.5,4.5 parent: 2 - uid: 5414 components: @@ -129511,10 +140898,11 @@ entities: - type: Transform pos: 11.5,21.5 parent: 2 - - uid: 5508 + - uid: 5425 components: - type: Transform - pos: -26.5,-38.5 + rot: -1.5707963267948966 rad + pos: 40.5,16.5 parent: 2 - uid: 5513 components: @@ -129531,6 +140919,11 @@ entities: - type: Transform pos: 49.5,-41.5 parent: 2 + - uid: 5580 + components: + - type: Transform + pos: -51.5,-49.5 + parent: 2 - uid: 5585 components: - type: Transform @@ -129566,16 +140959,21 @@ entities: - type: Transform pos: 26.5,-57.5 parent: 2 + - uid: 5668 + components: + - type: Transform + pos: -50.5,-56.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 - uid: 5691 components: - type: Transform pos: 26.5,-53.5 parent: 2 - - uid: 5708 - components: - - type: Transform - pos: -26.5,-39.5 - parent: 2 - uid: 5723 components: - type: Transform @@ -129671,11 +141069,6 @@ entities: - type: Transform pos: -20.5,-31.5 parent: 2 - - uid: 5807 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 2 - uid: 5812 components: - type: Transform @@ -129686,6 +141079,11 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 2 + - uid: 5826 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 - uid: 5830 components: - type: Transform @@ -129706,11 +141104,36 @@ entities: - type: Transform pos: 7.5,-40.5 parent: 2 + - uid: 5875 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 - uid: 5885 components: - type: Transform pos: 39.5,1.5 parent: 2 + - uid: 5888 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 - uid: 5906 components: - type: Transform @@ -129721,11 +141144,6 @@ entities: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 5913 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 2 - uid: 5915 components: - type: Transform @@ -129751,11 +141169,6 @@ entities: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 5951 - components: - - type: Transform - pos: 20.5,-45.5 - parent: 2 - uid: 5953 components: - type: Transform @@ -129846,16 +141259,21 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 2 - - uid: 6047 + - uid: 6060 components: - type: Transform - pos: 6.5,-43.5 + pos: 11.5,-2.5 parent: 2 - uid: 6069 components: - type: Transform pos: 39.5,-5.5 parent: 2 + - uid: 6085 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 - uid: 6108 components: - type: Transform @@ -129866,16 +141284,6 @@ entities: - type: Transform pos: 33.5,-13.5 parent: 2 - - uid: 6117 - components: - - type: Transform - pos: -25.5,-32.5 - parent: 2 - - uid: 6139 - components: - - type: Transform - pos: -35.5,-41.5 - parent: 2 - uid: 6152 components: - type: Transform @@ -129926,16 +141334,6 @@ entities: - type: Transform pos: -12.5,-51.5 parent: 2 - - uid: 6221 - components: - - type: Transform - pos: -26.5,-32.5 - parent: 2 - - uid: 6224 - components: - - type: Transform - pos: -25.5,-35.5 - parent: 2 - uid: 6241 components: - type: Transform @@ -129951,21 +141349,42 @@ entities: - type: Transform pos: 49.5,-39.5 parent: 2 - - uid: 6299 + - uid: 6295 components: - type: Transform - pos: 20.5,-44.5 + pos: 6.5,-43.5 parent: 2 - - uid: 6301 + - uid: 6300 components: - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,-42.5 parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 2 - uid: 6339 components: - type: Transform pos: 1.5,-30.5 parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 - uid: 6356 components: - type: Transform @@ -129976,25 +141395,26 @@ entities: - type: Transform pos: -12.5,-49.5 parent: 2 + - uid: 6365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-44.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 2 - uid: 6429 components: - type: Transform pos: 12.5,-55.5 parent: 2 - - uid: 6468 + - uid: 6494 components: - type: Transform - pos: -29.5,-39.5 - parent: 2 - - uid: 6469 - components: - - type: Transform - pos: -31.5,-39.5 - parent: 2 - - uid: 6470 - components: - - type: Transform - pos: -30.5,-39.5 + pos: 25.5,-2.5 parent: 2 - uid: 6495 components: @@ -130011,15 +141431,40 @@ entities: - type: Transform pos: -16.5,-49.5 parent: 2 - - uid: 6541 + - uid: 6517 components: - type: Transform - pos: 23.5,2.5 + pos: 3.5,-42.5 parent: 2 - - uid: 6659 + - uid: 6518 components: - type: Transform - pos: 22.5,-18.5 + pos: 3.5,-46.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: 17.5,-15.5 parent: 2 - uid: 6680 components: @@ -130056,30 +141501,20 @@ entities: - type: Transform pos: 37.5,-39.5 parent: 2 + - uid: 6840 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 2 - uid: 6842 components: - type: Transform pos: 16.5,-50.5 parent: 2 - - uid: 6922 + - uid: 6929 components: - type: Transform - pos: 17.5,-9.5 - parent: 2 - - uid: 6951 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 2 - - uid: 6954 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 2 - - uid: 6966 - components: - - type: Transform - pos: 26.5,10.5 + pos: -6.5,-15.5 parent: 2 - uid: 6974 components: @@ -130091,31 +141526,41 @@ entities: - type: Transform pos: 39.5,-10.5 parent: 2 - - uid: 6994 + - uid: 6992 components: - type: Transform - pos: 17.5,-8.5 + pos: -39.5,-51.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: -38.5,-56.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: -36.5,-56.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: -37.5,-56.5 parent: 2 - uid: 7060 components: - type: Transform pos: 48.5,-14.5 parent: 2 - - uid: 7065 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - - uid: 7071 - components: - - type: Transform - pos: 30.5,9.5 - parent: 2 - uid: 7077 components: - type: Transform pos: 48.5,-6.5 parent: 2 + - uid: 7080 + components: + - type: Transform + pos: -42.5,-52.5 + parent: 2 - uid: 7086 components: - type: Transform @@ -130146,10 +141591,15 @@ entities: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 7199 + - uid: 7174 components: - type: Transform - pos: -35.5,-52.5 + pos: 3.5,-45.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: 3.5,-43.5 parent: 2 - uid: 7216 components: @@ -130161,21 +141611,6 @@ entities: - type: Transform pos: 24.5,-18.5 parent: 2 - - uid: 7220 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 2 - - uid: 7221 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - - uid: 7223 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - uid: 7224 components: - type: Transform @@ -130251,26 +141686,16 @@ entities: - type: Transform pos: 34.5,5.5 parent: 2 + - uid: 7330 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 - uid: 7403 components: - type: Transform pos: 37.5,5.5 parent: 2 - - uid: 7439 - components: - - type: Transform - pos: -34.5,-47.5 - parent: 2 - - uid: 7442 - components: - - type: Transform - pos: -33.5,-47.5 - parent: 2 - - uid: 7469 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - uid: 7531 components: - type: Transform @@ -130286,15 +141711,30 @@ entities: - type: Transform pos: -11.5,-44.5 parent: 2 + - uid: 7596 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 - uid: 7611 components: - type: Transform pos: 12.5,-50.5 parent: 2 - - uid: 7618 + - uid: 7635 components: - type: Transform - pos: 13.5,-7.5 + pos: -39.5,-52.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: -8.5,-89.5 parent: 2 - uid: 7666 components: @@ -130306,6 +141746,11 @@ entities: - type: Transform pos: 34.5,8.5 parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 - uid: 7760 components: - type: Transform @@ -130321,100 +141766,15 @@ entities: - type: Transform pos: 10.5,27.5 parent: 2 - - uid: 7838 + - uid: 7869 components: - type: Transform - pos: -2.5,-50.5 + pos: 22.5,13.5 parent: 2 - - uid: 7843 + - uid: 7933 components: - type: Transform - pos: -31.5,-52.5 - parent: 2 - - uid: 7856 - components: - - type: Transform - pos: 9.5,-50.5 - parent: 2 - - uid: 8013 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 2 - - uid: 8016 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 2 - - uid: 8018 - components: - - type: Transform - pos: 5.5,-50.5 - parent: 2 - - uid: 8021 - components: - - type: Transform - pos: -37.5,-45.5 - parent: 2 - - uid: 8131 - components: - - type: Transform - pos: -49.5,-44.5 - parent: 2 - - uid: 8140 - components: - - type: Transform - pos: -38.5,-28.5 - parent: 2 - - uid: 8143 - components: - - type: Transform - pos: -39.5,-28.5 - parent: 2 - - uid: 8151 - components: - - type: Transform - pos: -40.5,-49.5 - parent: 2 - - uid: 8180 - components: - - type: Transform - pos: -40.5,-37.5 - parent: 2 - - uid: 8223 - components: - - type: Transform - pos: -36.5,-53.5 - parent: 2 - - uid: 8226 - components: - - type: Transform - pos: -32.5,-56.5 - parent: 2 - - uid: 8227 - components: - - type: Transform - pos: -34.5,-52.5 - parent: 2 - - uid: 8233 - components: - - type: Transform - pos: -37.5,-48.5 - parent: 2 - - uid: 8238 - components: - - type: Transform - pos: -38.5,-49.5 - parent: 2 - - uid: 8255 - components: - - type: Transform - pos: -36.5,-55.5 - parent: 2 - - uid: 8259 - components: - - type: Transform - pos: -33.5,-56.5 + pos: 22.5,-15.5 parent: 2 - uid: 8278 components: @@ -130436,6 +141796,11 @@ entities: - type: Transform pos: 46.5,-7.5 parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 - uid: 8386 components: - type: Transform @@ -130451,35 +141816,45 @@ entities: - type: Transform pos: 46.5,-9.5 parent: 2 - - uid: 8413 - components: - - type: Transform - pos: 30.5,12.5 - parent: 2 - - uid: 8416 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 - - uid: 8418 - components: - - type: Transform - pos: 29.5,9.5 - parent: 2 - uid: 8421 components: - type: Transform pos: 3.5,15.5 parent: 2 + - uid: 8451 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 2 - uid: 8466 components: - type: Transform pos: -3.5,-16.5 parent: 2 - - uid: 8521 + - uid: 8477 components: - type: Transform - pos: 22.5,-19.5 + pos: 17.5,-11.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: -47.5,-49.5 parent: 2 - uid: 8559 components: @@ -130496,6 +141871,11 @@ entities: - type: Transform pos: 34.5,9.5 parent: 2 + - uid: 8725 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 - uid: 8767 components: - type: Transform @@ -130506,11 +141886,6 @@ entities: - type: Transform pos: -11.5,18.5 parent: 2 - - uid: 8853 - components: - - type: Transform - pos: 37.5,7.5 - parent: 2 - uid: 8886 components: - type: Transform @@ -130526,11 +141901,6 @@ entities: - type: Transform pos: 49.5,-26.5 parent: 2 - - uid: 8964 - components: - - type: Transform - pos: -6.5,-50.5 - parent: 2 - uid: 8984 components: - type: Transform @@ -130561,6 +141931,11 @@ entities: - type: Transform pos: 47.5,-27.5 parent: 2 + - uid: 9148 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 - uid: 9213 components: - type: Transform @@ -130571,76 +141946,56 @@ entities: - type: Transform pos: 47.5,-23.5 parent: 2 + - uid: 9287 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 - uid: 9306 components: - type: Transform pos: 47.5,-19.5 parent: 2 + - uid: 9310 + components: + - type: Transform + pos: -41.5,-51.5 + parent: 2 + - uid: 9316 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 2 - uid: 9323 components: - type: Transform pos: 51.5,-19.5 parent: 2 - - uid: 9376 + - uid: 9367 components: - type: Transform - pos: 30.5,-1.5 + pos: -40.5,-51.5 parent: 2 - uid: 9379 components: - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 9380 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 9381 - components: - - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 9387 - components: - - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 9388 - components: - - type: Transform - pos: 30.5,4.5 + pos: 25.5,4.5 parent: 2 - uid: 9400 components: - type: Transform pos: 23.5,-59.5 parent: 2 - - uid: 9403 + - uid: 9407 components: - type: Transform - pos: 29.5,-1.5 + pos: 22.5,-12.5 parent: 2 - uid: 9420 components: - type: Transform pos: 23.5,-58.5 parent: 2 - - uid: 9422 - components: - - type: Transform - pos: 28.5,5.5 - parent: 2 - - uid: 9424 - components: - - type: Transform - pos: 29.5,5.5 - parent: 2 - - uid: 9425 - components: - - type: Transform - pos: 26.5,5.5 - parent: 2 - uid: 9448 components: - type: Transform @@ -130656,30 +142011,10 @@ entities: - type: Transform pos: 36.5,-39.5 parent: 2 - - uid: 9544 + - uid: 9551 components: - type: Transform - pos: 30.5,6.5 - parent: 2 - - uid: 9545 - components: - - type: Transform - pos: 29.5,7.5 - parent: 2 - - uid: 9547 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 - - uid: 9549 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 - - uid: 9550 - components: - - type: Transform - pos: 22.5,10.5 + pos: -46.5,-38.5 parent: 2 - uid: 9555 components: @@ -130691,90 +142026,45 @@ entities: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 9587 - components: - - type: Transform - pos: 30.5,7.5 - parent: 2 - - uid: 9588 - components: - - type: Transform - pos: 28.5,7.5 - parent: 2 - - uid: 9589 - components: - - type: Transform - pos: 27.5,7.5 - parent: 2 - - uid: 9590 - components: - - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 9591 - components: - - type: Transform - pos: 25.5,7.5 - parent: 2 - - uid: 9592 - components: - - type: Transform - pos: 23.5,7.5 - parent: 2 - - uid: 9627 - components: - - type: Transform - pos: -43.5,-49.5 - parent: 2 - uid: 9628 components: - type: Transform - pos: 17.5,5.5 + pos: 2.5,-16.5 parent: 2 - - uid: 9645 + - uid: 9662 components: - type: Transform - pos: -41.5,-49.5 + pos: 29.5,-2.5 parent: 2 - - uid: 9665 + - uid: 9668 components: - type: Transform - pos: -33.5,-42.5 - parent: 2 - - uid: 9666 - components: - - type: Transform - pos: -30.5,-42.5 - parent: 2 - - uid: 9667 - components: - - type: Transform - pos: -32.5,-42.5 + pos: 17.5,1.5 parent: 2 - uid: 9675 components: - type: Transform - pos: -35.5,-39.5 + pos: 17.5,2.5 parent: 2 - uid: 9677 components: - type: Transform - pos: -29.5,-42.5 + pos: 17.5,-0.5 parent: 2 - uid: 9678 components: - type: Transform - pos: -29.5,-41.5 + pos: 18.5,-0.5 parent: 2 - - uid: 9682 + - uid: 9679 components: - type: Transform - pos: -29.5,-45.5 + pos: -37.5,-25.5 parent: 2 - - uid: 9683 + - uid: 9686 components: - type: Transform - pos: -30.5,-45.5 + pos: 17.5,0.5 parent: 2 - uid: 9687 components: @@ -130801,10 +142091,20 @@ entities: - type: Transform pos: -18.5,-46.5 parent: 2 - - uid: 9928 + - uid: 9859 components: - type: Transform - pos: -34.5,-42.5 + pos: 33.5,-5.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + pos: 17.5,3.5 parent: 2 - uid: 9995 components: @@ -130816,11 +142116,6 @@ entities: - type: Transform pos: 70.5,-76.5 parent: 2 - - uid: 10050 - components: - - type: Transform - pos: -35.5,-48.5 - parent: 2 - uid: 10054 components: - type: Transform @@ -130831,30 +142126,35 @@ entities: - type: Transform pos: 19.5,9.5 parent: 2 - - uid: 10080 + - uid: 10061 components: - type: Transform - pos: 20.5,5.5 + pos: 24.5,4.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + pos: 36.5,16.5 parent: 2 - uid: 10082 components: - type: Transform pos: 16.5,-53.5 parent: 2 + - uid: 10109 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 2 - uid: 10119 components: - type: Transform pos: 12.5,-51.5 parent: 2 - - uid: 10129 + - uid: 10123 components: - type: Transform - pos: -35.5,-42.5 - parent: 2 - - uid: 10130 - components: - - type: Transform - pos: -35.5,-43.5 + pos: 2.5,-19.5 parent: 2 - uid: 10131 components: @@ -130866,20 +142166,171 @@ entities: - type: Transform pos: -35.5,-45.5 parent: 2 + - uid: 10133 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 - uid: 10463 components: - type: Transform pos: -6.5,12.5 parent: 2 - - uid: 10696 + - uid: 10467 components: - type: Transform - pos: 28.5,-13.5 + pos: -50.5,-55.5 parent: 2 - - uid: 10799 + - uid: 10472 components: - type: Transform - pos: 18.5,-14.5 + pos: -50.5,-54.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 10511 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 10622 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 10623 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + pos: -50.5,-49.5 + parent: 2 + - uid: 10690 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-54.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + pos: -42.5,-54.5 parent: 2 - uid: 10823 components: @@ -130961,10 +142412,10 @@ entities: - type: Transform pos: 70.5,-78.5 parent: 2 - - uid: 10967 + - uid: 10914 components: - type: Transform - pos: 13.5,-57.5 + pos: 23.5,-44.5 parent: 2 - uid: 10968 components: @@ -130976,16 +142427,86 @@ entities: - type: Transform pos: 12.5,-56.5 parent: 2 + - uid: 11078 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 11080 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 11106 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 - uid: 11205 components: - type: Transform pos: 12.5,-23.5 parent: 2 + - uid: 11212 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 11228 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + pos: -44.5,-55.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 - uid: 11306 components: - type: Transform pos: 16.5,-54.5 parent: 2 + - uid: 11341 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 11439 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 - uid: 11503 components: - type: Transform @@ -131001,6 +142522,21 @@ entities: - type: Transform pos: 63.5,-80.5 parent: 2 + - uid: 11621 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 2 + - uid: 11766 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 - uid: 11805 components: - type: Transform @@ -131026,20 +142562,75 @@ entities: - type: Transform pos: 48.5,-55.5 parent: 2 - - uid: 12123 + - uid: 11951 components: - type: Transform - pos: -31.5,-47.5 + pos: 28.5,14.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 12125 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 + - uid: 12126 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 2 + - uid: 12130 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 12132 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + pos: -5.5,-58.5 parent: 2 - uid: 12199 components: - type: Transform pos: 44.5,-55.5 parent: 2 - - uid: 12424 + - uid: 12230 components: - type: Transform - pos: -35.5,-34.5 + pos: -46.5,-33.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: -32.5,-23.5 parent: 2 - uid: 12503 components: @@ -131051,35 +142642,170 @@ entities: - type: Transform pos: 13.5,21.5 parent: 2 + - uid: 12514 + components: + - type: Transform + pos: -46.5,-35.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 - uid: 12564 components: - type: Transform - pos: -37.5,-47.5 + pos: -48.5,-57.5 parent: 2 - - uid: 12582 + - uid: 12571 components: - type: Transform - pos: -25.5,-36.5 - parent: 2 - - uid: 12588 - components: - - type: Transform - pos: -25.5,-37.5 + pos: -46.5,-26.5 parent: 2 - uid: 12600 components: - type: Transform pos: 41.5,-56.5 parent: 2 + - uid: 12619 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 - uid: 12660 components: - type: Transform pos: 41.5,-61.5 parent: 2 - - uid: 13015 + - uid: 12680 components: - type: Transform - pos: 30.5,5.5 + pos: -46.5,-36.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: 11.5,-90.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + pos: -56.5,-31.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + pos: 8.5,-90.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + pos: 8.5,-91.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + pos: 5.5,-90.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + pos: 5.5,-91.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + pos: 5.5,-88.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + pos: 8.5,-92.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + pos: -5.5,-91.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + pos: -3.5,-91.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + pos: -2.5,-88.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + pos: -5.5,-92.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: -6.5,-91.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + pos: -2.5,-96.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: -7.5,-91.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + pos: 0.5,-96.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 4.5,-88.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + pos: -51.5,-21.5 parent: 2 - uid: 13144 components: @@ -131096,6 +142822,46 @@ entities: - type: Transform pos: 50.5,-49.5 parent: 2 + - uid: 13153 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 - uid: 13209 components: - type: Transform @@ -131106,16 +142872,21 @@ entities: - type: Transform pos: 20.5,-59.5 parent: 2 + - uid: 13212 + components: + - type: Transform + pos: -45.5,-55.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 - uid: 13219 components: - type: Transform pos: 17.5,-57.5 parent: 2 - - uid: 13220 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 2 - uid: 13222 components: - type: Transform @@ -131131,11 +142902,41 @@ entities: - type: Transform pos: 49.5,-61.5 parent: 2 + - uid: 13249 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 - uid: 13262 components: - type: Transform pos: 12.5,-27.5 parent: 2 + - uid: 13281 + components: + - type: Transform + pos: 5.5,-89.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 - uid: 13304 components: - type: Transform @@ -131146,25 +142947,185 @@ entities: - type: Transform pos: 41.5,-58.5 parent: 2 + - uid: 13360 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 13364 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 - uid: 13389 components: - type: Transform pos: 17.5,13.5 parent: 2 + - uid: 13395 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 - uid: 13808 components: - type: Transform pos: 22.5,-57.5 parent: 2 - - uid: 14066 + - uid: 14136 components: - type: Transform - pos: -31.5,-37.5 + pos: 29.5,14.5 parent: 2 - - uid: 14324 + - uid: 14167 components: - type: Transform - pos: 19.5,-12.5 + pos: -36.5,-43.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: -42.5,-47.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: -39.5,-47.5 parent: 2 - uid: 14379 components: @@ -131211,16 +143172,16 @@ entities: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 14501 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 2 - uid: 14516 components: - type: Transform pos: 45.5,-41.5 parent: 2 + - uid: 14580 + components: + - type: Transform + pos: 16.5,-55.5 + parent: 2 - uid: 14772 components: - type: Transform @@ -131231,111 +143192,66 @@ entities: - type: Transform pos: -28.5,3.5 parent: 2 - - uid: 14824 - components: - - type: Transform - pos: 14.5,16.5 - parent: 2 - - uid: 14839 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 2 - - uid: 14841 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 2 - - uid: 14842 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 2 - - uid: 14845 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - uid: 14853 components: - type: Transform pos: -22.5,-2.5 parent: 2 - - uid: 14873 + - uid: 15015 components: - type: Transform - pos: 9.5,-14.5 + pos: -6.5,-45.5 parent: 2 - - uid: 14883 + - uid: 15041 components: - type: Transform - pos: 17.5,-20.5 + pos: 2.5,-42.5 parent: 2 - - uid: 14884 + - uid: 15045 components: - type: Transform - pos: 17.5,-19.5 + pos: 12.5,-59.5 parent: 2 - - uid: 14909 + - uid: 15244 components: - type: Transform - pos: 16.5,-20.5 + pos: -47.5,-50.5 parent: 2 - - uid: 14920 + - uid: 15251 components: - type: Transform - pos: 18.5,-18.5 + pos: -36.5,-47.5 parent: 2 - - uid: 15011 + - uid: 15252 components: - type: Transform - pos: 13.5,-20.5 + pos: -37.5,-47.5 parent: 2 - - uid: 15174 + - uid: 15253 components: - type: Transform - pos: 12.5,-20.5 - parent: 2 - - uid: 15264 - components: - - type: Transform - pos: 13.5,16.5 + pos: -42.5,-51.5 parent: 2 - uid: 15308 components: - type: Transform pos: -27.5,8.5 parent: 2 - - uid: 15321 - components: - - type: Transform - pos: 15.5,-20.5 - parent: 2 - uid: 15345 components: - type: Transform pos: -24.5,22.5 parent: 2 - - uid: 15353 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 2 - - uid: 15369 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 2 - - uid: 15468 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - uid: 15648 components: - type: Transform pos: -23.5,-54.5 parent: 2 + - uid: 15680 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 - uid: 15704 components: - type: Transform @@ -131351,15 +143267,30 @@ entities: - type: Transform pos: 9.5,21.5 parent: 2 + - uid: 15731 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 15788 + components: + - type: Transform + pos: -44.5,-54.5 + parent: 2 - uid: 15815 components: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 15832 + - uid: 15880 components: - type: Transform - pos: 15.5,-8.5 + pos: 7.5,-46.5 parent: 2 - uid: 15903 components: @@ -131376,6 +143307,26 @@ entities: - type: Transform pos: 0.5,21.5 parent: 2 + - uid: 16066 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 16169 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 - uid: 16209 components: - type: Transform @@ -131391,11 +143342,21 @@ entities: - type: Transform pos: 2.5,21.5 parent: 2 + - uid: 16323 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 - uid: 16530 components: - type: Transform pos: 6.5,21.5 parent: 2 + - uid: 16655 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 - uid: 16673 components: - type: Transform @@ -131406,10 +143367,90 @@ entities: - type: Transform pos: 1.5,21.5 parent: 2 - - uid: 16880 + - uid: 16899 components: - type: Transform - pos: -0.5,-45.5 + pos: -44.5,-53.5 + parent: 2 + - uid: 16911 + components: + - type: Transform + pos: -47.5,-51.5 + parent: 2 + - uid: 16912 + components: + - type: Transform + pos: -51.5,-48.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + pos: -51.5,-47.5 + parent: 2 + - uid: 16920 + components: + - type: Transform + pos: -48.5,-51.5 + parent: 2 + - uid: 16921 + components: + - type: Transform + pos: -50.5,-51.5 + parent: 2 + - uid: 16923 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 16924 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 16927 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 16928 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 16929 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 16938 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - uid: 16940 + components: + - type: Transform + pos: -48.5,-52.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 16948 + components: + - type: Transform + pos: -39.5,-56.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + pos: -44.5,-52.5 + parent: 2 + - uid: 16953 + components: + - type: Transform + pos: -22.5,-17.5 parent: 2 - uid: 17011 components: @@ -131426,6 +143467,26 @@ entities: - type: Transform pos: -42.5,-4.5 parent: 2 + - uid: 17149 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + pos: -42.5,-56.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + pos: -40.5,-56.5 + parent: 2 - uid: 17323 components: - type: Transform @@ -131436,11 +143497,6 @@ entities: - type: Transform pos: 39.5,10.5 parent: 2 - - uid: 17563 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 2 - uid: 17720 components: - type: Transform @@ -131451,11 +143507,31 @@ entities: - type: Transform pos: 86.5,-22.5 parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 + - uid: 17816 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 - uid: 17837 components: - type: Transform pos: 83.5,-15.5 parent: 2 + - uid: 18065 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 - uid: 18079 components: - type: Transform @@ -131556,6 +143632,16 @@ entities: - type: Transform pos: 41.5,10.5 parent: 2 + - uid: 18855 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 18856 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 - uid: 18863 components: - type: Transform @@ -131566,6 +143652,71 @@ entities: - type: Transform pos: 38.5,5.5 parent: 2 + - uid: 19147 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 19156 + components: + - type: Transform + pos: 10.5,-90.5 + parent: 2 + - uid: 19157 + components: + - type: Transform + pos: 10.5,-91.5 + parent: 2 + - uid: 19187 + components: + - type: Transform + pos: -7.5,-90.5 + parent: 2 + - uid: 19205 + components: + - type: Transform + pos: -1.5,-88.5 + parent: 2 + - uid: 19231 + components: + - type: Transform + pos: 9.5,-91.5 + parent: 2 + - uid: 19236 + components: + - type: Transform + pos: 1.5,-88.5 + parent: 2 + - uid: 19246 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + pos: 6.5,-91.5 + parent: 2 + - uid: 19265 + components: + - type: Transform + pos: -2.5,-97.5 + parent: 2 + - uid: 19273 + components: + - type: Transform + pos: -8.5,-90.5 + parent: 2 + - uid: 19895 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 20221 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 2 - uid: 20237 components: - type: Transform @@ -131586,48 +143737,163 @@ entities: - type: Transform pos: -21.5,-55.5 parent: 2 + - uid: 20255 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - uid: 20715 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 - uid: 20768 components: - type: Transform pos: -6.5,-42.5 parent: 2 + - uid: 20787 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 21438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 2 + - uid: 21876 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 21900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - uid: 21967 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 21997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-52.5 + parent: 2 + - uid: 22002 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 22003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 2 + - uid: 22005 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 22028 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 22031 + components: + - type: Transform + pos: -25.5,-49.5 + parent: 2 + - uid: 22032 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 2 + - uid: 22055 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 22078 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 22097 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 22098 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 22106 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 22112 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 22113 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 22120 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 22123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 2 + - uid: 22128 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 22132 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 - proto: WallSolidRust entities: - - uid: 206 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 2 - - uid: 856 - components: - - type: Transform - pos: -32.5,-52.5 - parent: 2 - - uid: 1711 - components: - - type: Transform - pos: -31.5,-49.5 - parent: 2 - uid: 2745 components: - type: Transform pos: 66.5,-40.5 parent: 2 - - uid: 3084 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 2 - - uid: 3525 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 2 - - uid: 3586 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 2 - uid: 4867 components: - type: Transform @@ -131638,16 +143904,6 @@ entities: - type: Transform pos: 69.5,-67.5 parent: 2 - - uid: 4961 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 5058 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 2 - uid: 5387 components: - type: Transform @@ -131658,6 +143914,11 @@ entities: - type: Transform pos: 63.5,-74.5 parent: 2 + - uid: 6921 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 - uid: 7796 components: - type: Transform @@ -131668,21 +143929,11 @@ entities: - type: Transform pos: 16.5,-52.5 parent: 2 - - uid: 7987 - components: - - type: Transform - pos: 13.5,-54.5 - parent: 2 - uid: 9271 components: - type: Transform pos: 12.5,-52.5 parent: 2 - - uid: 9557 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 2 - uid: 9708 components: - type: Transform @@ -131818,41 +144069,16 @@ entities: - type: Transform pos: 72.5,-75.5 parent: 2 - - uid: 10950 - components: - - type: Transform - pos: 20.5,7.5 - parent: 2 - - uid: 10976 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 2 - - uid: 10987 - components: - - type: Transform - pos: 0.5,-42.5 - parent: 2 - uid: 11001 components: - type: Transform pos: 23.5,-37.5 parent: 2 - - uid: 11006 - components: - - type: Transform - pos: 21.5,-40.5 - parent: 2 - uid: 11118 components: - type: Transform pos: 12.5,-48.5 parent: 2 - - uid: 11127 - components: - - type: Transform - pos: 12.5,-57.5 - parent: 2 - uid: 11133 components: - type: Transform @@ -131883,51 +144109,21 @@ entities: - type: Transform pos: 71.5,-59.5 parent: 2 - - uid: 11253 + - uid: 11310 components: - type: Transform - pos: 4.5,-40.5 - parent: 2 - - uid: 11275 - components: - - type: Transform - pos: 15.5,-10.5 + pos: -29.5,-8.5 parent: 2 - uid: 11368 components: - type: Transform pos: 62.5,-76.5 parent: 2 - - uid: 11386 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 2 - uid: 11523 components: - type: Transform pos: 63.5,-79.5 parent: 2 - - uid: 11577 - components: - - type: Transform - pos: -35.5,-32.5 - parent: 2 - - uid: 11578 - components: - - type: Transform - pos: -32.5,-24.5 - parent: 2 - - uid: 11582 - components: - - type: Transform - pos: -35.5,-37.5 - parent: 2 - - uid: 11632 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 2 - uid: 11634 components: - type: Transform @@ -131993,11 +144189,6 @@ entities: - type: Transform pos: 33.5,-15.5 parent: 2 - - uid: 11976 - components: - - type: Transform - pos: -35.5,-36.5 - parent: 2 - uid: 11985 components: - type: Transform @@ -132033,56 +144224,16 @@ entities: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 12075 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 2 - - uid: 12106 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 2 - - uid: 12113 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 2 - uid: 12116 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 12124 - components: - - type: Transform - pos: -40.5,-44.5 - parent: 2 - - uid: 12125 - components: - - type: Transform - pos: -39.5,-44.5 - parent: 2 - - uid: 12128 - components: - - type: Transform - pos: -33.5,-52.5 - parent: 2 - uid: 12131 components: - type: Transform pos: 13.5,-52.5 parent: 2 - - uid: 12132 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 12148 - components: - - type: Transform - pos: -37.5,-49.5 - parent: 2 - uid: 12202 components: - type: Transform @@ -132098,16 +144249,6 @@ entities: - type: Transform pos: -35.5,-50.5 parent: 2 - - uid: 12207 - components: - - type: Transform - pos: 26.5,9.5 - parent: 2 - - uid: 12238 - components: - - type: Transform - pos: 27.5,9.5 - parent: 2 - uid: 12290 components: - type: Transform @@ -132118,21 +144259,6 @@ entities: - type: Transform pos: 47.5,-26.5 parent: 2 - - uid: 12322 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 12324 - components: - - type: Transform - pos: 23.5,10.5 - parent: 2 - - uid: 12358 - components: - - type: Transform - pos: -42.5,-49.5 - parent: 2 - uid: 12360 components: - type: Transform @@ -132143,11 +144269,6 @@ entities: - type: Transform pos: -35.5,-49.5 parent: 2 - - uid: 12362 - components: - - type: Transform - pos: -30.5,-47.5 - parent: 2 - uid: 12363 components: - type: Transform @@ -132163,11 +144284,6 @@ entities: - type: Transform pos: 49.5,-56.5 parent: 2 - - uid: 12555 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - uid: 12603 components: - type: Transform @@ -132183,10 +144299,35 @@ entities: - type: Transform pos: 50.5,-50.5 parent: 2 - - uid: 13390 + - uid: 13735 components: - type: Transform - pos: 14.5,-14.5 + pos: 24.5,-1.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 13782 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + pos: 15.5,-3.5 parent: 2 - uid: 13794 components: @@ -132248,11 +144389,6 @@ entities: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 15406 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 2 - uid: 15462 components: - type: Transform @@ -132263,11 +144399,6 @@ entities: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 15473 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 2 - uid: 15486 components: - type: Transform @@ -132288,11 +144419,6 @@ entities: - type: Transform pos: 7.5,-26.5 parent: 2 - - uid: 15839 - components: - - type: Transform - pos: -36.5,-52.5 - parent: 2 - uid: 15906 components: - type: Transform @@ -132318,6 +144444,18 @@ entities: - type: Transform pos: 68.5,-74.5 parent: 2 + - uid: 16704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-34.5 + parent: 2 + - uid: 16894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-23.5 + parent: 2 - uid: 17120 components: - type: Transform @@ -132343,21 +144481,6 @@ entities: - type: Transform pos: -27.5,-6.5 parent: 2 - - uid: 17625 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 2 - - uid: 17638 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - uid: 17648 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 2 - uid: 17721 components: - type: Transform @@ -132403,6 +144526,18 @@ entities: - type: Transform pos: 89.5,-28.5 parent: 2 + - uid: 18552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-34.5 + parent: 2 + - uid: 18622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-34.5 + parent: 2 - uid: 18967 components: - type: Transform @@ -132423,6 +144558,122 @@ entities: - type: Transform pos: 67.5,-59.5 parent: 2 + - uid: 20767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-25.5 + parent: 2 + - uid: 21223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-29.5 + parent: 2 + - uid: 21297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-25.5 + parent: 2 + - uid: 21311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-25.5 + parent: 2 + - uid: 21312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-23.5 + parent: 2 + - uid: 21314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-33.5 + parent: 2 + - uid: 21389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-34.5 + parent: 2 + - uid: 21395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-31.5 + parent: 2 + - uid: 21963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 2 + - uid: 21968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - uid: 21996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 2 + - uid: 22099 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 22102 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 22103 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 22104 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 22105 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 22108 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 22109 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 22110 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 22115 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 22116 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 - proto: WardrobeAtmosphericsFilled entities: - uid: 20244 @@ -132463,13 +144714,6 @@ entities: - type: Transform pos: 39.5,-3.5 parent: 2 -- proto: WardrobeChemistryFilled - entities: - - uid: 12368 - components: - - type: Transform - pos: -29.5,-38.5 - parent: 2 - proto: WardrobeGreenFilled entities: - uid: 10903 @@ -132484,6 +144728,13 @@ entities: - type: Transform pos: 46.5,-28.5 parent: 2 +- proto: WardrobeMedicalDoctorFilled + entities: + - uid: 12640 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 - proto: WardrobePrisonFilled entities: - uid: 179 @@ -132501,12 +144752,7 @@ entities: - type: Transform pos: -20.5,-11.5 parent: 2 - - uid: 8526 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 14681 + - uid: 11789 components: - type: Transform pos: -29.5,-5.5 @@ -132527,10 +144773,10 @@ entities: parent: 2 - proto: WardrobeSecurityFilled entities: - - uid: 5352 + - uid: 12452 components: - type: Transform - pos: -21.5,16.5 + pos: -22.5,17.5 parent: 2 - proto: WardrobeYellowFilled entities: @@ -132607,20 +144853,20 @@ entities: - type: Transform pos: -12.5,-36.5 parent: 2 - - uid: 7200 + - uid: 6102 components: - type: Transform - pos: 34.5,32.5 + pos: 33.5,-7.5 parent: 2 - uid: 9792 components: - type: Transform pos: -13.5,-51.5 parent: 2 - - uid: 10156 + - uid: 12782 components: - type: Transform - pos: -31.5,-44.5 + pos: -5.5,-62.5 parent: 2 - uid: 14082 components: @@ -132634,30 +144880,15 @@ entities: parent: 2 - proto: WaterTankFull entities: - - uid: 1651 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 2 - - uid: 2603 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 2 - uid: 3447 components: - type: Transform pos: -17.5,-35.5 parent: 2 - - uid: 9202 + - uid: 6329 components: - type: Transform - pos: -30.5,-41.5 - parent: 2 - - uid: 9551 - components: - - type: Transform - pos: 23.5,6.5 + pos: 7.5,-55.5 parent: 2 - uid: 12255 components: @@ -132674,6 +144905,11 @@ entities: - type: Transform pos: -7.5,12.5 parent: 2 + - uid: 16939 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 - uid: 17165 components: - type: Transform @@ -132684,6 +144920,11 @@ entities: - type: Transform pos: -6.5,25.5 parent: 2 + - uid: 22456 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 - proto: WaterVaporCanister entities: - uid: 1458 @@ -132750,13 +144991,18 @@ entities: - uid: 4718 components: - type: Transform - pos: -5.419433,-10.3817625 + pos: -3.431983,-15.230706 parent: 2 - uid: 8867 components: - type: Transform pos: 48.698742,-4.357929 parent: 2 + - uid: 19270 + components: + - type: Transform + pos: 6.466244,-88.86231 + parent: 2 - proto: WelderIndustrialAdvanced entities: - uid: 17034 @@ -132766,41 +145012,46 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 1136 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 2 - uid: 3088 components: - type: Transform pos: 38.5,9.5 parent: 2 - - uid: 5802 + - uid: 5351 components: - type: Transform - pos: 1.5,-12.5 + pos: 28.5,24.5 + parent: 2 + - uid: 10455 + components: + - type: Transform + pos: -5.5,-11.5 parent: 2 - uid: 12377 components: - type: Transform pos: 25.5,-49.5 parent: 2 - - uid: 12556 + - uid: 12738 components: - type: Transform - pos: -28.5,-58.5 + pos: -2.5,-58.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + pos: 7.5,-88.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -46.5,-54.5 parent: 2 - uid: 17481 components: - type: Transform pos: -7.5,25.5 parent: 2 - - uid: 18907 - components: - - type: Transform - pos: -34.5,-48.5 - parent: 2 - uid: 19283 components: - type: Transform @@ -132827,17 +145078,11 @@ entities: parent: 2 - proto: Windoor entities: - - uid: 3157 + - uid: 1796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - uid: 3673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 + rot: 3.141592653589793 rad + pos: -51.5,-51.5 parent: 2 - uid: 7524 components: @@ -132849,24 +145094,6 @@ entities: - type: Transform pos: -19.5,-43.5 parent: 2 - - uid: 11247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-53.5 - parent: 2 - - uid: 11248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-51.5 - parent: 2 - - uid: 13081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-32.5 - parent: 2 - proto: WindoorChapelLocked entities: - uid: 5903 @@ -132935,6 +145162,26 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-23.5 parent: 2 + - uid: 4855 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 - uid: 7566 components: - type: Transform @@ -132957,10 +145204,11 @@ entities: linkedPorts: 7609: - DoorStatus: Close - - uid: 8224 + - uid: 12433 components: - type: Transform - pos: 20.5,-19.5 + rot: 1.5707963267948966 rad + pos: 18.5,17.5 parent: 2 - uid: 12602 components: @@ -133002,6 +145250,30 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 + - uid: 21759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 2 + - uid: 22306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-33.5 + parent: 2 + - uid: 22307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-33.5 + parent: 2 + - uid: 22311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-33.5 + parent: 2 - proto: WindoorSecureArmoryLocked entities: - uid: 3570 @@ -133048,59 +145320,57 @@ entities: parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 1312 + - uid: 144 components: - type: Transform - pos: -33.5,-32.5 + pos: -29.5,-33.5 parent: 2 - - uid: 3876 + - uid: 3361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-36.5 + rot: 1.5707963267948966 rad + pos: -40.5,-36.5 parent: 2 - - uid: 6220 + - uid: 10414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-33.5 + pos: -27.5,-33.5 parent: 2 - - uid: 12874 + - uid: 11937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-34.5 + rot: 1.5707963267948966 rad + pos: -27.5,-36.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 22305 + components: + - type: Transform + pos: -35.5,-34.5 parent: 2 - proto: WindoorSecureCommandLocked entities: + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-9.5 + parent: 2 - uid: 4818 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-34.5 parent: 2 - - uid: 6341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,1.5 - parent: 2 - - uid: 6545 - components: - - type: Transform - pos: 24.5,2.5 - parent: 2 - - uid: 6964 + - uid: 7005 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 2 - - uid: 6996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-10.5 + pos: 23.5,-9.5 parent: 2 - uid: 7606 components: @@ -133114,11 +145384,10 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,-12.5 parent: 2 - - uid: 12663 + - uid: 11497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 + pos: 9.5,-15.5 parent: 2 - uid: 16415 components: @@ -133172,11 +145441,28 @@ entities: - DoorStatus: Close - proto: WindoorSecureJanitorLocked entities: - - uid: 9598 + - uid: 5537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,6.5 + pos: 28.5,5.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - uid: 17460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - uid: 21885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 parent: 2 - proto: WindoorSecureKitchenLocked entities: @@ -133200,26 +145486,40 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 8542 - components: - - type: Transform - pos: -49.5,-28.5 - parent: 2 - - uid: 9277 + - uid: 4822 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-32.5 + pos: -35.5,-34.5 parent: 2 - - uid: 12111 + - uid: 8732 components: - type: Transform - pos: -28.5,-28.5 + rot: -1.5707963267948966 rad + pos: -40.5,-36.5 parent: 2 - - uid: 12112 + - uid: 21758 components: - type: Transform - pos: -27.5,-28.5 + pos: 21.5,4.5 + parent: 2 + - uid: 22137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-26.5 + parent: 2 + - uid: 22150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-26.5 + parent: 2 + - uid: 22310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-26.5 parent: 2 - proto: WindoorSecureSalvageLocked entities: @@ -133291,30 +145591,36 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-11.5 parent: 2 + - uid: 5020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 - uid: 18668 components: - type: Transform pos: -22.5,0.5 parent: 2 - - uid: 18916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 - parent: 2 - proto: WindoorServiceLocked entities: - - uid: 3986 + - uid: 6903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-36.5 + rot: -1.5707963267948966 rad + pos: 20.5,-39.5 parent: 2 - - uid: 18855 + - uid: 10924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-37.5 + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 parent: 2 - proto: WindoorTheatreLocked entities: @@ -133332,10 +145638,10 @@ entities: parent: 2 - proto: Window entities: - - uid: 185 + - uid: 724 components: - type: Transform - pos: -34.5,-36.5 + pos: -36.5,-37.5 parent: 2 - uid: 2324 components: @@ -133407,11 +145713,6 @@ entities: - type: Transform pos: 13.5,-39.5 parent: 2 - - uid: 3747 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - uid: 3749 components: - type: Transform @@ -133437,21 +145738,31 @@ entities: - type: Transform pos: -21.5,-24.5 parent: 2 - - uid: 4661 + - uid: 5215 components: - type: Transform - pos: -32.5,-36.5 + pos: 16.5,-44.5 parent: 2 - - uid: 6311 + - uid: 7885 components: - type: Transform - pos: 19.5,-45.5 + pos: 17.5,-10.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: 17.5,-9.5 parent: 2 - uid: 8902 components: - type: Transform pos: 16.5,-23.5 parent: 2 + - uid: 9447 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 - uid: 9573 components: - type: Transform @@ -133467,6 +145778,11 @@ entities: - type: Transform pos: 13.5,-27.5 parent: 2 + - uid: 12070 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 - uid: 12197 components: - type: Transform @@ -133474,11 +145790,11 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 3985 + - uid: 339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-35.5 + rot: 3.141592653589793 rad + pos: -44.5,-29.5 parent: 2 - uid: 4198 components: @@ -133496,26 +145812,134 @@ entities: - type: Transform pos: 38.5,-26.5 parent: 2 - - uid: 6264 + - uid: 4607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-50.5 + pos: -30.5,-29.5 parent: 2 - - uid: 11245 + - uid: 4611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-52.5 + pos: -26.5,-29.5 parent: 2 - - uid: 11246 + - uid: 5008 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 2 + - uid: 9925 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-53.5 + pos: -45.5,-29.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-30.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-30.5 + parent: 2 + - uid: 10921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-30.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - uid: 22130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-51.5 parent: 2 - proto: WindowFrostedDirectional entities: + - uid: 3172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-51.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-53.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-51.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-51.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-51.5 + parent: 2 - uid: 5600 components: - type: Transform @@ -133550,34 +145974,42 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-9.5 parent: 2 + - uid: 10574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-52.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-53.5 + parent: 2 + - uid: 14965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 2 - proto: WindowReinforcedDirectional entities: + - uid: 38 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 - uid: 341 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-33.5 parent: 2 - - uid: 692 + - uid: 2249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 2 - - uid: 1904 - components: - - type: Transform - pos: -52.5,-28.5 - parent: 2 - - uid: 2239 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 2257 - components: - - type: Transform - pos: 19.5,-19.5 + rot: 3.141592653589793 rad + pos: 24.5,-9.5 parent: 2 - uid: 3098 components: @@ -133620,12 +146052,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-29.5 parent: 2 - - uid: 3544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-44.5 - parent: 2 - uid: 3553 components: - type: Transform @@ -133716,70 +146142,18 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-35.5 parent: 2 + - uid: 4777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 2 - uid: 4916 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-42.5 parent: 2 - - uid: 4944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-27.5 - parent: 2 - - uid: 4945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-25.5 - parent: 2 - - uid: 5187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-29.5 - parent: 2 - - uid: 5198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-32.5 - parent: 2 - - uid: 5203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-32.5 - parent: 2 - - uid: 5209 - components: - - type: Transform - pos: -42.5,-42.5 - parent: 2 - - uid: 5227 - components: - - type: Transform - pos: -40.5,-42.5 - parent: 2 - - uid: 5233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-41.5 - parent: 2 - - uid: 5241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-41.5 - parent: 2 - - uid: 5242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-41.5 - parent: 2 - uid: 5595 components: - type: Transform @@ -133791,51 +146165,22 @@ entities: - type: Transform pos: 29.5,-57.5 parent: 2 - - uid: 6338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 2 - - uid: 6347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 2 - uid: 6497 components: - type: Transform pos: -18.5,-54.5 parent: 2 - - uid: 6547 - components: - - type: Transform - pos: 25.5,2.5 - parent: 2 - - uid: 6912 + - uid: 6662 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-10.5 + pos: 25.5,-9.5 parent: 2 - - uid: 6963 + - uid: 7393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 2 - - uid: 6965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 2 - - uid: 7346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-41.5 + rot: -1.5707963267948966 rad + pos: 28.5,5.5 parent: 2 - uid: 7565 components: @@ -133858,40 +146203,32 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-23.5 parent: 2 - - uid: 7968 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 2 - - uid: 8024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-41.5 - parent: 2 - - uid: 8026 + - uid: 7645 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-42.5 + pos: -54.5,-21.5 parent: 2 - - uid: 8083 + - uid: 7920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-42.5 + pos: 19.5,-19.5 parent: 2 - - uid: 8270 + - uid: 8087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-24.5 + pos: 29.5,4.5 parent: 2 - - uid: 9139 + - uid: 8224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-9.5 + pos: 21.5,-19.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-9.5 parent: 2 - uid: 9252 components: @@ -133963,27 +146300,39 @@ entities: - type: Transform pos: -16.5,-54.5 parent: 2 + - uid: 9968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 11305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 - uid: 11356 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-35.5 parent: 2 - - uid: 11826 + - uid: 11500 components: - type: Transform - pos: -51.5,-28.5 + pos: 10.5,-15.5 parent: 2 - - uid: 11903 + - uid: 11618 components: - type: Transform - pos: -50.5,-28.5 - parent: 2 - - uid: 11908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-17.5 + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 parent: 2 - uid: 11953 components: @@ -133997,50 +146346,41 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,11.5 parent: 2 - - uid: 14428 + - uid: 12994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 + rot: 3.141592653589793 rad + pos: -42.5,-22.5 parent: 2 - - uid: 15760 + - uid: 12996 components: - type: Transform - pos: -27.5,-8.5 + rot: 3.141592653589793 rad + pos: -43.5,-22.5 parent: 2 - - uid: 16034 + - uid: 12998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-22.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-22.5 + parent: 2 + - uid: 13170 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-31.5 + pos: 10.5,-18.5 parent: 2 - - uid: 16062 + - uid: 13231 components: - type: Transform - pos: -41.5,-42.5 - parent: 2 - - uid: 16063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-32.5 - parent: 2 - - uid: 16095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-41.5 - parent: 2 - - uid: 16096 - components: - - type: Transform - pos: -39.5,-42.5 - parent: 2 - - uid: 16097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-41.5 + rot: 1.5707963267948966 rad + pos: -54.5,-23.5 parent: 2 - uid: 16461 components: @@ -134048,12 +146388,6 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,-16.5 parent: 2 - - uid: 16475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-24.5 - parent: 2 - uid: 17452 components: - type: Transform @@ -134120,11 +146454,6 @@ entities: - type: Transform pos: 27.57422,-50.418713 parent: 2 - - uid: 17542 - components: - - type: Transform - pos: 14.701017,-2.216905 - parent: 2 - uid: 20660 components: - type: Transform @@ -134132,6 +146461,11 @@ entities: parent: 2 - proto: WoodDoor entities: + - uid: 4022 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 - uid: 5206 components: - type: Transform @@ -134147,10 +146481,10 @@ entities: - type: Transform pos: 38.5,0.5 parent: 2 - - uid: 15617 + - uid: 15254 components: - type: Transform - pos: -41.5,-37.5 + pos: -39.5,-54.5 parent: 2 - uid: 16197 components: @@ -134162,11 +146496,6 @@ entities: - type: Transform pos: 39.5,-13.5 parent: 2 - - uid: 20336 - components: - - type: Transform - pos: 40.5,10.5 - parent: 2 - proto: WoodenBench entities: - uid: 1319 @@ -134181,12 +146510,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,30.5 parent: 2 - - uid: 5377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,32.5 - parent: 2 - uid: 6074 components: - type: Transform @@ -134235,6 +146558,12 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-16.5 parent: 2 + - uid: 12141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,32.5 + parent: 2 - proto: Wrench entities: - uid: 4063 @@ -134252,26 +146581,26 @@ entities: - type: Transform pos: 41.480793,-36.388645 parent: 2 + - uid: 12677 + components: + - type: Transform + pos: -50.518612,-36.425438 + parent: 2 - uid: 15383 components: - type: Transform pos: -13.512281,-21.38337 parent: 2 - - uid: 18889 - components: - - type: Transform - pos: -26.532364,-21.427582 - parent: 2 - proto: Zipties entities: - uid: 6296 components: - type: Transform - pos: -27.437857,-7.60735 + pos: -28.469805,-8.400824 parent: 2 - uid: 16264 components: - type: Transform - pos: -27.48994,-7.388448 + pos: -28.5636,-8.140225 parent: 2 ... diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml index 5552a973f1..4e6650aaaa 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml @@ -178,6 +178,14 @@ - type: NavMapBeacon defaultText: station-beacon-brig +- type: entity + parent: DefaultStationBeaconSecurity + id: DefaultStationBeaconBrigMed + suffix: Brig Med + components: + - type: NavMapBeacon + defaultText: station-beacon-brig-med + - type: entity parent: DefaultStationBeaconSecurity id: DefaultStationBeaconWardensOffice @@ -299,6 +307,22 @@ - type: NavMapBeacon defaultText: station-beacon-surgery +- type: entity + parent: DefaultStationBeaconMedical + id: DefaultStationBeaconPsychology + suffix: Psychology + components: + - type: NavMapBeacon + defaultText: station-beacon-psychology + +- type: entity + parent: DefaultStationBeaconMedical + id: DefaultStationBeaconClinic + suffix: Clinic + components: + - type: NavMapBeacon + defaultText: station-beacon-clinic + - type: entity parent: DefaultStationBeacon id: DefaultStationBeaconScience @@ -560,6 +584,22 @@ - type: NavMapBeacon defaultText: station-beacon-ai-core +- type: entity + parent: DefaultStationBeaconAI + id: DefaultStationBeaconAIUpload + suffix: AI Upload + components: + - type: NavMapBeacon + defaultText: station-beacon-ai-upload + +- type: entity + parent: DefaultStationBeaconAI + id: DefaultStationBeaconAIPower + suffix: AI Power + components: + - type: NavMapBeacon + defaultText: station-beacon-ai-power + - type: entity parent: DefaultStationBeacon id: DefaultStationBeaconArrivals @@ -576,6 +616,14 @@ - type: NavMapBeacon defaultText: station-beacon-evac +- type: entity + parent: DefaultStationBeacon + id: DefaultStationBeaconDockingArm + suffix: Docking Arm + components: + - type: NavMapBeacon + defaultText: station-beacon-docking-arm + - type: entity parent: DefaultStationBeacon id: DefaultStationBeaconEVAStorage @@ -600,6 +648,14 @@ - type: NavMapBeacon defaultText: station-beacon-library +- type: entity + parent: DefaultStationBeacon + id: DefaultStationBeaconReporter + suffix: Reporter + components: + - type: NavMapBeacon + defaultText: station-beacon-reporter + - type: entity parent: DefaultStationBeacon id: DefaultStationBeaconTheater diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index 5d85c06388..891777f306 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -104,7 +104,7 @@ node: machineFrame - !type:DoActsBehavior acts: ["Destruction"] - + - type: entity name: long-range holopad description: "A floor-mounted device for projecting holographic images to similar devices that are far away." @@ -117,7 +117,7 @@ - Map - Unlimited ignoreTelephonesOnSameGrid: true - + - type: entity name: quantum entangling holopad description: "An floor-mounted device for projecting holographic images to similar devices at extreme distances." @@ -485,6 +485,14 @@ - type: Label currentLabel: holopad-medical-breakroom +- type: entity + parent: Holopad + id: HolopadMedicalClinic + suffix: Med Clinic + components: + - type: Label + currentLabel: holopad-medical-clinic + # Cargo - type: entity parent: Holopad From be6c2754f9095261f970dc429deb1881e4877b49 Mon Sep 17 00:00:00 2001 From: Ed Date: Fri, 3 Jan 2025 18:37:44 +0300 Subject: [PATCH 263/263] Update bagel.yml --- Resources/Maps/bagel.yml | 444 ++++++--------------------------------- 1 file changed, 62 insertions(+), 382 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index ad66ea847d..3d55e34adf 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -732,7 +732,6 @@ entities: 3941: -5,17 3979: -56,13 3980: -54,13 - 4774: 6,-20 4869: -31,19 4870: -31,20 4871: -31,21 @@ -2272,22 +2271,6 @@ entities: 4866: 32,30 4867: 32,31 4868: 32,32 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 4750: 6,-22 - 4751: 6,-21 - 4752: 6,-20 - 4753: 7,-20 - 4754: 8,-20 - 4755: 9,-20 - 4756: 9,-21 - 4757: 9,-22 - 4758: 8,-22 - 4759: 7,-22 - 4760: 7,-21 - 4761: 8,-21 - node: color: '#334E6DC8' id: CheckerNWSE @@ -2300,22 +2283,6 @@ entities: 620: -68,17 621: -69,17 622: -62,17 - - node: - color: '#43990996' - id: CheckerNWSE - decals: - 4762: 6,-22 - 4763: 6,-21 - 4764: 6,-20 - 4765: 7,-20 - 4766: 7,-21 - 4767: 7,-22 - 4768: 8,-22 - 4769: 8,-21 - 4770: 8,-20 - 4771: 9,-20 - 4772: 9,-21 - 4773: 9,-22 - node: color: '#52B4E996' id: CheckerNWSE @@ -2916,7 +2883,6 @@ entities: 3494: 8,14 3855: -11,-17 3856: -11,-14 - 4778: 9,-22 - node: color: '#FFFFFFFF' id: DirtLight @@ -3039,7 +3005,6 @@ entities: 830: -8,-25 835: -4,-24 836: -1,-25 - 893: 10,-23 895: -6,-23 896: -25,-23 897: -34,-23 @@ -3075,10 +3040,7 @@ entities: 1172: 5,8 1173: -7,9 1174: -8,8 - 1214: 5,-23 - 1215: 4,-23 1216: 7,-24 - 1217: 23,-23 1218: 18,-28 1219: 21,-35 1220: 19,-34 @@ -3260,12 +3222,6 @@ entities: 4665: 16,-18 4666: 16,-12 4667: 15,-21 - 4668: 16,-25 - 4669: 13,-25 - 4670: 12,-23 - 4775: 6,-22 - 4776: 9,-21 - 4777: 9,-20 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3353,7 +3309,6 @@ entities: 4630: -28,-19 4658: 17,-16 4659: 17,-15 - 4779: 6,-20 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -4133,23 +4088,6 @@ entities: 886: -1,-12 887: -1,-11 888: -1,-10 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale - decals: - 4685: 6,-23 - 4686: 7,-23 - 4687: 8,-23 - 4688: 9,-23 - 4689: 5,-23 - 4690: 4,-23 - 4691: 3,-23 - 4692: 10,-23 - 4693: 11,-23 - 4694: 12,-23 - 4695: 13,-23 - 4696: 14,-23 - 4697: 15,-23 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale @@ -4266,10 +4204,6 @@ entities: 1183: -17,19 1184: -17,20 1185: -17,21 - 1370: 6,-23 - 1371: 5,-23 - 1372: 4,-23 - 1373: 3,-23 1394: -4,10 1395: -5,10 1396: -6,10 @@ -4292,10 +4226,6 @@ entities: 1462: -24,-23 1463: -25,-23 1464: -26,-23 - 1468: 10,-23 - 1469: 11,-23 - 1471: 13,-23 - 1472: 14,-23 1487: 36,10 1488: 36,11 1489: 37,11 @@ -4316,7 +4246,6 @@ entities: 2567: 15,12 2568: 15,11 2569: 15,9 - 2572: 15,-23 2575: -17,-23 2600: 15,23 2601: 15,24 @@ -4370,7 +4299,17 @@ entities: 4235: 15,-10 4652: 15,-12 4654: 15,-11 - 4671: 12,-23 + 4924: 3,-23 + 4925: 4,-23 + 4926: 5,-23 + 4927: 6,-23 + 4928: 6,-22 + 4929: 6,-21 + 4930: 6,-20 + 4943: 13,-23 + 4944: 14,-23 + 4946: 15,-23 + 4947: 7,-20 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale @@ -4439,18 +4378,6 @@ entities: 662: -17,-6 698: -18,1 699: -18,2 - 4813: 29,-23 - 4814: 28,-23 - 4815: 27,-23 - 4816: 26,-23 - 4817: 25,-23 - 4818: 24,-23 - 4819: 23,-23 - 4820: 22,-23 - 4821: 21,-23 - 4822: 20,-23 - 4823: 19,-23 - 4824: 18,-23 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale @@ -4494,26 +4421,6 @@ entities: 3886: -29,30 3887: -30,30 3888: -31,30 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale180 - decals: - 4718: 17,-25 - 4720: 19,-25 - 4721: 20,-25 - 4723: 21,-25 - 4724: 22,-25 - 4725: 23,-25 - 4726: 24,-25 - 4727: 25,-25 - 4728: 26,-25 - 4729: 27,-25 - 4730: 28,-25 - 4731: 29,-25 - 4732: 30,-25 - 4733: 31,-25 - 4734: 32,-25 - 4826: 18,-25 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale180 @@ -4565,6 +4472,9 @@ entities: 3556: 35,-25 3557: 34,-25 3558: 33,-25 + 4967: 30,-25 + 4968: 31,-25 + 4969: 32,-25 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -4639,20 +4549,6 @@ entities: 2648: 2,-78 2649: 2,-77 2650: 2,-76 - 3559: 32,-25 - 3560: 31,-25 - 3561: 30,-25 - 3562: 29,-25 - 3563: 28,-25 - 3564: 27,-25 - 3565: 26,-25 - 3566: 25,-25 - 3567: 23,-25 - 3568: 24,-25 - 3569: 22,-25 - 3570: 21,-25 - 3571: 20,-25 - 3572: 19,-25 4080: 17,-3 4081: 17,-3 4082: 17,-4 @@ -4684,6 +4580,18 @@ entities: 4612: 55,30 4613: 55,29 4614: 55,28 + 4955: 17,-25 + 4956: 18,-25 + 4957: 19,-25 + 4958: 20,-25 + 4959: 21,-25 + 4960: 22,-25 + 4961: 23,-25 + 4962: 24,-25 + 4963: 25,-25 + 4964: 26,-25 + 4965: 27,-25 + 4966: 28,-25 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale180 @@ -4714,16 +4622,6 @@ entities: 4470: 36,50 4521: 44,20 4522: 45,20 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 4792: 14,-25 - 4793: 13,-25 - 4794: 12,-25 - 4795: 11,-25 - 4796: 10,-25 - 4797: 9,-25 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale180 @@ -4757,17 +4655,6 @@ entities: 610: -74,16 611: -73,16 612: -72,16 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale270 - decals: - 4711: 9,-25 - 4712: 10,-25 - 4713: 11,-25 - 4714: 12,-25 - 4715: 13,-25 - 4716: 14,-25 - 4717: 15,-25 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale270 @@ -4969,6 +4856,13 @@ entities: 4621: 53,34 4622: 53,35 4623: 53,36 + 4948: 9,-25 + 4949: 10,-25 + 4950: 11,-25 + 4951: 12,-25 + 4952: 13,-25 + 4953: 14,-25 + 4954: 15,-25 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale270 @@ -4992,21 +4886,6 @@ entities: decals: 696: -18,-1 697: -18,0 - 4798: 18,-25 - 4799: 19,-25 - 4800: 20,-25 - 4801: 21,-25 - 4802: 22,-25 - 4803: 23,-25 - 4804: 24,-25 - 4805: 25,-25 - 4806: 26,-25 - 4807: 27,-25 - 4808: 28,-25 - 4809: 29,-25 - 4810: 30,-25 - 4811: 31,-25 - 4812: 32,-25 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale270 @@ -5051,23 +4930,6 @@ entities: 874: 1,-19 875: 1,-20 876: 1,-21 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale90 - decals: - 4698: 17,-23 - 4700: 19,-23 - 4701: 20,-23 - 4702: 21,-23 - 4703: 22,-23 - 4704: 23,-23 - 4705: 24,-23 - 4706: 25,-23 - 4707: 26,-23 - 4708: 27,-23 - 4709: 28,-23 - 4710: 29,-23 - 4825: 18,-23 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale90 @@ -5199,17 +5061,6 @@ entities: 1427: -34,25 1428: -33,25 1473: 30,-23 - 1474: 29,-23 - 1475: 28,-23 - 1476: 27,-23 - 1477: 26,-23 - 1478: 25,-23 - 1479: 24,-23 - 1480: 23,-23 - 1481: 22,-23 - 1482: 21,-23 - 1483: 20,-23 - 1484: 19,-23 1491: -15,1 1492: -15,0 1493: -14,0 @@ -5248,7 +5099,6 @@ entities: 2557: 17,12 2558: 17,11 2570: 17,9 - 2574: 17,-23 2577: -18,-23 2578: -15,-23 2579: -15,-22 @@ -5296,6 +5146,26 @@ entities: 4655: 17,-14 4656: 17,-13 4657: 17,-10 + 4933: 8,-20 + 4934: 8,-20 + 4935: 9,-20 + 4936: 9,-21 + 4937: 9,-22 + 4938: 9,-23 + 4939: 10,-23 + 4940: 11,-23 + 4970: 29,-23 + 4971: 28,-23 + 4972: 27,-23 + 4973: 26,-23 + 4974: 25,-23 + 4975: 24,-23 + 4976: 23,-23 + 4977: 22,-23 + 4978: 21,-23 + 4979: 20,-23 + 4980: 19,-23 + 4981: 18,-23 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale90 @@ -5355,18 +5225,6 @@ entities: 1635: -8,-15 1636: -8,-14 1637: -8,-13 - 4780: 3,-23 - 4781: 4,-23 - 4782: 5,-23 - 4783: 6,-23 - 4784: 7,-23 - 4785: 8,-23 - 4786: 9,-23 - 4787: 10,-23 - 4788: 11,-23 - 4789: 12,-23 - 4790: 13,-23 - 4791: 14,-23 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale90 @@ -6143,10 +6001,10 @@ entities: 4103: -18,7 4211: -17,32 4243: 38,23 - 4828: 18,-25 4881: -1,24 4882: 0,24 4883: 1,24 + 4983: 18,-25 - node: color: '#DE3A3A96' id: WarnLineS @@ -6282,10 +6140,10 @@ entities: 4187: 57,3 4213: -17,34 4244: 38,25 - 4827: 18,-23 4888: -1,24 4889: 0,24 4890: 1,24 + 4982: 18,-23 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -17332,6 +17190,11 @@ entities: parent: 60 - proto: ButtonFrameCaution entities: + - uid: 666 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 60 - uid: 4723 components: - type: Transform @@ -17475,11 +17338,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-21.5 parent: 60 - - uid: 25395 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 60 - proto: ButtonFrameGrey entities: - uid: 19839 @@ -49592,8 +49450,8 @@ entities: - uid: 60213 components: - type: Transform - pos: 237.90862,73.403786 - parent: 60 + pos: 238.36444,73.83216 + parent: 943 - proto: CarbonDioxideCanister entities: - uid: 15245 @@ -49775,26 +49633,6 @@ entities: - type: Transform pos: -23.5,16.5 parent: 60 - - uid: 23652 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 60 - - uid: 23653 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 60 - - uid: 23914 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 60 - - uid: 23915 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 60 - uid: 24171 components: - type: Transform @@ -49974,31 +49812,6 @@ entities: parent: 60 - proto: CarpetGreen entities: - - uid: 666 - components: - - type: Transform - pos: 20.5,-27.5 - parent: 60 - - uid: 2278 - components: - - type: Transform - pos: 19.5,-26.5 - parent: 60 - - uid: 2569 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 60 - - uid: 2584 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 60 - - uid: 3156 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 60 - uid: 4195 components: - type: Transform @@ -50346,11 +50159,6 @@ entities: - type: Transform pos: 52.5,-44.5 parent: 60 - - uid: 23892 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 60 - proto: CarpetOrange entities: - uid: 1071 @@ -60631,46 +60439,6 @@ entities: - type: Transform pos: -15.664602,-30.50866 parent: 60 - - uid: 23905 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23906 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23907 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23908 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23909 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23910 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23911 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23912 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - proto: ClothingHeadHatSkub entities: - uid: 6791 @@ -61362,48 +61130,6 @@ entities: - type: Transform pos: 22.509872,-51.419544 parent: 60 -- proto: ClothingOuterSanta - entities: - - uid: 23897 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23898 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23899 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23900 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23901 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23902 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23903 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23904 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - proto: ClothingOuterSkub entities: - uid: 6793 @@ -63757,11 +63483,6 @@ entities: - type: Transform pos: -16.5,-29.5 parent: 60 - - uid: 23919 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 60 - proto: DefaultStationBeacon entities: - uid: 20983 @@ -63769,11 +63490,6 @@ entities: - type: Transform pos: 35.5,16.5 parent: 60 - - uid: 24676 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 60 - proto: DefaultStationBeaconAICore entities: - uid: 18703 @@ -73052,11 +72768,6 @@ entities: - type: Transform pos: -7.5,-2.5 parent: 60 - - uid: 23894 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 60 - proto: Flare entities: - uid: 9525 @@ -73993,13 +73704,6 @@ entities: - type: Transform pos: -65.522354,23.506481 parent: 60 -- proto: FloraTreeChristmas02 - entities: - - uid: 23913 - components: - - type: Transform - pos: 7.9998736,-21.48742 - parent: 60 - proto: FoodApple entities: - uid: 7496 @@ -119299,23 +119003,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 -- proto: PresentRandom - entities: - - uid: 23920 - components: - - type: Transform - pos: 19.509592,-26.607985 - parent: 60 - - uid: 23921 - components: - - type: Transform - pos: 19.650217,-27.232985 - parent: 60 - - uid: 23922 - components: - - type: Transform - pos: 21.337717,-26.654861 - parent: 60 - proto: Protolathe entities: - uid: 7081 @@ -137188,13 +136875,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,21.5 parent: 60 -- proto: TableFancyGreen - entities: - - uid: 23896 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 60 - proto: TableGlass entities: - uid: 123
diff --git a/Content.Shared/Atmos/Components/GasPipeSensorComponent.cs b/Content.Shared/Atmos/Components/GasPipeSensorComponent.cs new file mode 100644 index 0000000000..3393948f4f --- /dev/null +++ b/Content.Shared/Atmos/Components/GasPipeSensorComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Atmos.Components; + +/// +/// Entities with component will be queried against for their +/// atmos monitoring data on atmos monitoring consoles +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class GasPipeSensorComponent : Component; diff --git a/Content.Shared/Atmos/Consoles/Components/AtmosMonitoringConsoleComponent.cs b/Content.Shared/Atmos/Consoles/Components/AtmosMonitoringConsoleComponent.cs new file mode 100644 index 0000000000..2ac0d2a9af --- /dev/null +++ b/Content.Shared/Atmos/Consoles/Components/AtmosMonitoringConsoleComponent.cs @@ -0,0 +1,235 @@ +using Content.Shared.Atmos.Consoles; +using Content.Shared.Pinpointer; +using Content.Shared.Prototypes; +using Robust.Shared.GameStates; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Timing; + +namespace Content.Shared.Atmos.Components; + +/// +/// Entities capable of opening the atmos monitoring console UI +/// require this component to function correctly +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedAtmosMonitoringConsoleSystem))] +public sealed partial class AtmosMonitoringConsoleComponent : Component +{ + /* + * Don't need DataFields as this can be reconstructed + */ + + /// + /// A dictionary of the all the nav map chunks that contain anchored atmos pipes + /// + [ViewVariables] + public Dictionary AtmosPipeChunks = new(); + + /// + /// A list of all the atmos devices that will be used to populate the nav map + /// + [ViewVariables] + public Dictionary AtmosDevices = new(); + + /// + /// Color of the floor tiles on the nav map screen + /// + [DataField, ViewVariables] + public Color NavMapTileColor; + + /// + /// Color of the wall lines on the nav map screen + /// + [DataField, ViewVariables] + public Color NavMapWallColor; + + /// + /// The next time this component is dirtied, it will force the full state + /// to be sent to the client, instead of just the delta state + /// + [ViewVariables] + public bool ForceFullUpdate = false; +} + +[Serializable, NetSerializable] +public struct AtmosPipeChunk(Vector2i origin) +{ + /// + /// Chunk position + /// + [ViewVariables] + public readonly Vector2i Origin = origin; + + /// + /// Bitmask look up for atmos pipes, 1 for occupied and 0 for empty. + /// Indexed by the color hexcode of the pipe + /// + [ViewVariables] + public Dictionary<(int, string), ulong> AtmosPipeData = new(); + + /// + /// The last game tick that the chunk was updated + /// + [NonSerialized] + public GameTick LastUpdate; +} + +[Serializable, NetSerializable] +public struct AtmosDeviceNavMapData +{ + /// + /// The entity in question + /// + public NetEntity NetEntity; + + /// + /// Location of the entity + /// + public NetCoordinates NetCoordinates; + + /// + /// The associated pipe network ID + /// + public int NetId = -1; + + /// + /// Prototype ID for the nav map blip + /// + public ProtoId NavMapBlip; + + /// + /// Direction of the entity + /// + public Direction Direction; + + /// + /// Color of the attached pipe + /// + public Color PipeColor; + + /// + /// Populate the atmos monitoring console nav map with a single entity + /// + public AtmosDeviceNavMapData(NetEntity netEntity, NetCoordinates netCoordinates, int netId, ProtoId navMapBlip, Direction direction, Color pipeColor) + { + NetEntity = netEntity; + NetCoordinates = netCoordinates; + NetId = netId; + NavMapBlip = navMapBlip; + Direction = direction; + PipeColor = pipeColor; + } +} + +[Serializable, NetSerializable] +public sealed class AtmosMonitoringConsoleBoundInterfaceState : BoundUserInterfaceState +{ + /// + /// A list of all entries to populate the UI with + /// + public AtmosMonitoringConsoleEntry[] AtmosNetworks; + + /// + /// Sends data from the server to the client to populate the atmos monitoring console UI + /// + public AtmosMonitoringConsoleBoundInterfaceState(AtmosMonitoringConsoleEntry[] atmosNetworks) + { + AtmosNetworks = atmosNetworks; + } +} + +[Serializable, NetSerializable] +public struct AtmosMonitoringConsoleEntry +{ + /// + /// The entity in question + /// + public NetEntity NetEntity; + + /// + /// Location of the entity + /// + public NetCoordinates Coordinates; + + /// + /// The associated pipe network ID + /// + public int NetId = -1; + + /// + /// Localised device name + /// + public string EntityName; + + /// + /// Device network address + /// + public string Address; + + /// + /// Temperature (K) + /// + public float TemperatureData; + + /// + /// Pressure (kPA) + /// + public float PressureData; + + /// + /// Total number of mols of gas + /// + public float TotalMolData; + + /// + /// Mol and percentage for all detected gases + /// + public Dictionary GasData = new(); + + /// + /// The color to be associated with the pipe network + /// + public Color Color; + + /// + /// Indicates whether the entity is powered + /// + public bool IsPowered = true; + + /// + /// Used to populate the atmos monitoring console UI with data from a single air alarm + /// + public AtmosMonitoringConsoleEntry + (NetEntity entity, + NetCoordinates coordinates, + int netId, + string entityName, + string address) + { + NetEntity = entity; + Coordinates = coordinates; + NetId = netId; + EntityName = entityName; + Address = address; + } +} + +public enum AtmosPipeChunkDataFacing : byte +{ + // Values represent bit shift offsets when retrieving data in the tile array. + North = 0, + South = SharedNavMapSystem.ArraySize, + East = SharedNavMapSystem.ArraySize * 2, + West = SharedNavMapSystem.ArraySize * 3, +} + +/// +/// UI key associated with the atmos monitoring console +/// +[Serializable, NetSerializable] +public enum AtmosMonitoringConsoleUiKey +{ + Key +} diff --git a/Content.Shared/Atmos/Consoles/Components/AtmosMonitoringConsoleDeviceComponent.cs b/Content.Shared/Atmos/Consoles/Components/AtmosMonitoringConsoleDeviceComponent.cs new file mode 100644 index 0000000000..50c3abcfca --- /dev/null +++ b/Content.Shared/Atmos/Consoles/Components/AtmosMonitoringConsoleDeviceComponent.cs @@ -0,0 +1,21 @@ +using Content.Shared.Prototypes; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Atmos.Components; + +/// +/// Entities with this component appear on the +/// nav maps of atmos monitoring consoles +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class AtmosMonitoringConsoleDeviceComponent : Component +{ + /// + /// Prototype ID for the blip used to represent this + /// entity on the atmos monitoring console nav map. + /// If null, no blip is drawn (i.e., null for pipes) + /// + [DataField, ViewVariables] + public ProtoId? NavMapBlip = null; +} diff --git a/Content.Shared/Atmos/Consoles/SharedAtmosMonitoringConsoleSystem.cs b/Content.Shared/Atmos/Consoles/SharedAtmosMonitoringConsoleSystem.cs new file mode 100644 index 0000000000..e6dd455be7 --- /dev/null +++ b/Content.Shared/Atmos/Consoles/SharedAtmosMonitoringConsoleSystem.cs @@ -0,0 +1,115 @@ +using Content.Shared.Atmos.Components; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Atmos.Consoles; + +public abstract class SharedAtmosMonitoringConsoleSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetState); + } + + private void OnGetState(EntityUid uid, AtmosMonitoringConsoleComponent component, ref ComponentGetState args) + { + Dictionary> chunks; + + // Should this be a full component state or a delta-state? + if (args.FromTick <= component.CreationTick || component.ForceFullUpdate) + { + component.ForceFullUpdate = false; + + // Full state + chunks = new(component.AtmosPipeChunks.Count); + + foreach (var (origin, chunk) in component.AtmosPipeChunks) + { + chunks.Add(origin, chunk.AtmosPipeData); + } + + args.State = new AtmosMonitoringConsoleState(chunks, component.AtmosDevices); + + return; + } + + chunks = new(); + + foreach (var (origin, chunk) in component.AtmosPipeChunks) + { + if (chunk.LastUpdate < args.FromTick) + continue; + + chunks.Add(origin, chunk.AtmosPipeData); + } + + args.State = new AtmosMonitoringConsoleDeltaState(chunks, component.AtmosDevices, new(component.AtmosPipeChunks.Keys)); + } + + #region: System messages + + [Serializable, NetSerializable] + protected sealed class AtmosMonitoringConsoleState( + Dictionary> chunks, + Dictionary atmosDevices) + : ComponentState + { + public Dictionary> Chunks = chunks; + public Dictionary AtmosDevices = atmosDevices; + } + + [Serializable, NetSerializable] + protected sealed class AtmosMonitoringConsoleDeltaState( + Dictionary> modifiedChunks, + Dictionary atmosDevices, + HashSet allChunks) + : ComponentState, IComponentDeltaState + { + public Dictionary> ModifiedChunks = modifiedChunks; + public Dictionary AtmosDevices = atmosDevices; + public HashSet AllChunks = allChunks; + + public void ApplyToFullState(AtmosMonitoringConsoleState state) + { + foreach (var key in state.Chunks.Keys) + { + if (!AllChunks!.Contains(key)) + state.Chunks.Remove(key); + } + + foreach (var (index, data) in ModifiedChunks) + { + state.Chunks[index] = new Dictionary<(int, string), ulong>(data); + } + + state.AtmosDevices.Clear(); + foreach (var (nuid, atmosDevice) in AtmosDevices) + { + state.AtmosDevices.Add(nuid, atmosDevice); + } + } + + public AtmosMonitoringConsoleState CreateNewFullState(AtmosMonitoringConsoleState state) + { + var chunks = new Dictionary>(state.Chunks.Count); + + foreach (var (index, data) in state.Chunks) + { + if (!AllChunks!.Contains(index)) + continue; + + if (ModifiedChunks.ContainsKey(index)) + chunks[index] = new Dictionary<(int, string), ulong>(ModifiedChunks[index]); + + else + chunks[index] = new Dictionary<(int, string), ulong>(state.Chunks[index]); + } + + return new AtmosMonitoringConsoleState(chunks, new(AtmosDevices)); + } + } + + #endregion +} diff --git a/Content.Shared/Prototypes/NavMapBlipPrototype.cs b/Content.Shared/Prototypes/NavMapBlipPrototype.cs new file mode 100644 index 0000000000..ede82d8e04 --- /dev/null +++ b/Content.Shared/Prototypes/NavMapBlipPrototype.cs @@ -0,0 +1,42 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.Prototypes; + +[Prototype("navMapBlip")] +public sealed partial class NavMapBlipPrototype : IPrototype +{ + [ViewVariables] + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// Sets whether the associated entity can be selected when the blip is clicked + /// + [DataField] + public bool Selectable = false; + + /// + /// Sets whether the blips is always blinking + /// + [DataField] + public bool Blinks = false; + + /// + /// Sets the color of the blip + /// + [DataField] + public Color Color { get; private set; } = Color.LightGray; + + /// + /// Texture paths associated with the blip + /// + [DataField] + public ResPath[]? TexturePaths { get; private set; } + + /// + /// Sets the UI scaling of the blip + /// + [DataField] + public float Scale { get; private set; } = 1f; +} diff --git a/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl index 470a8f8695..dd9b6a0128 100644 --- a/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl +++ b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl @@ -10,6 +10,9 @@ atmos-alerts-window-tab-fire-alarms = Fire alarms atmos-alerts-window-alarm-label = {CAPITALIZE($name)} ({$address}) atmos-alerts-window-temperature-label = Temperature atmos-alerts-window-temperature-value = {$valueInC} °C ({$valueInK} K) +atmos-alerts-window-invalid-value = N/A +atmos-alerts-window-total-mol-label = Total moles +atmos-alerts-window-total-mol-value = {$value} mol atmos-alerts-window-pressure-label = Pressure atmos-alerts-window-pressure-value = {$value} kPa atmos-alerts-window-oxygenation-label = Oxygenation diff --git a/Resources/Locale/en-US/atmos/gases.ftl b/Resources/Locale/en-US/atmos/gases.ftl new file mode 100644 index 0000000000..5c540c46df --- /dev/null +++ b/Resources/Locale/en-US/atmos/gases.ftl @@ -0,0 +1,10 @@ +gas-ammonia-abbreviation = NH₃ +gas-carbon-dioxide-abbreviation = CO₂ +gas-frezon-abbreviation = F +gas-nitrogen-abbreviation = N₂ +gas-nitrous-oxide-abbreviation = N₂O +gas-oxygen-abbreviation = O₂ +gas-plasma-abbreviation = P +gas-tritium-abbreviation = T +gas-water-vapor-abbreviation = H₂O +gas-unknown-abbreviation = X diff --git a/Resources/Locale/en-US/components/atmos-monitoring-component.ftl b/Resources/Locale/en-US/components/atmos-monitoring-component.ftl new file mode 100644 index 0000000000..eab6f50c60 --- /dev/null +++ b/Resources/Locale/en-US/components/atmos-monitoring-component.ftl @@ -0,0 +1,14 @@ +atmos-monitoring-window-title = Atmospheric Network Monitor +atmos-monitoring-window-station-name = [color=white][font size=14]{$stationName}[/font][/color] +atmos-monitoring-window-unknown-location = Unknown location +atmos-monitoring-window-label-gas-opening = Network opening +atmos-monitoring-window-label-gas-scrubber = Air scrubber +atmos-monitoring-window-label-gas-flow-regulator = Flow regulator +atmos-monitoring-window-label-thermoregulator = Thermoregulator +atmos-monitoring-window-tab-networks = Atmospheric networks +atmos-monitoring-window-toggle-overlays = Toggle map overlays +atmos-monitoring-window-show-pipe-network = Pipe network +atmos-monitoring-window-show-gas-pipe-sensors = Gas pipe sensors +atmos-monitoring-window-label-gases = Present gases +atmos-monitoring-window-flavor-left = Contact an atmospheric technician for assistance +atmos-monitoring-window-flavor-right = v1.1 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index 54616724fb..26f2881ae8 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -26,6 +26,15 @@ components: - type: ComputerBoard prototype: ComputerAlert + +- type: entity + parent: BaseComputerCircuitboard + id: AtmosMonitoringComputerCircuitboard + name: atmospheric network monitor board + description: A computer printed circuit board for an atmospheric network monitor. + components: + - type: ComputerBoard + prototype: ComputerAtmosMonitoring - type: entity parent: BaseComputerCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 4cd596e9b4..8167229ae5 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -49,6 +49,39 @@ enum.WiresUiKey.Key: type: WiresBoundUserInterface +- type: entity + parent: BaseComputerAiAccess + id: ComputerAtmosMonitoring + name: atmospheric network monitor + description: Used to monitor the station's atmospheric networks. + components: + - type: Computer + board: AtmosMonitoringComputerCircuitboard + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: tank + - map: ["computerLayerKeys"] + state: atmos_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: AtmosMonitoringConsole + navMapTileColor: "#1a1a1a" + navMapWallColor: "#404040" + - type: ActivatableUI + singleUser: true + key: enum.AtmosMonitoringConsoleUiKey.Key + - type: UserInterface + interfaces: + enum.AtmosMonitoringConsoleUiKey.Key: + type: AtmosMonitoringConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface + - type: entity parent: BaseComputer id: ComputerEmergencyShuttle diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/nav_map_blips.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/nav_map_blips.yml new file mode 100644 index 0000000000..bc51557186 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/nav_map_blips.yml @@ -0,0 +1,56 @@ +# All consoles +- type: navMapBlip + id: NavMapConsole + blinks: true + color: Cyan + texturePaths: + - "/Textures/Interface/NavMap/beveled_circle.png" + +# Atmos monitoring console +- type: navMapBlip + id: GasPipeSensor + selectable: true + color: "#ffcd00" + texturePaths: + - "/Textures/Interface/NavMap/beveled_star.png" + +- type: navMapBlip + id: GasVentOpening + scale: 0.6667 + color: LightGray + texturePaths: + - "/Textures/Interface/NavMap/beveled_square.png" + +- type: navMapBlip + id: GasVentScrubber + scale: 0.6667 + color: LightGray + texturePaths: + - "/Textures/Interface/NavMap/beveled_circle.png" + +- type: navMapBlip + id: GasFlowRegulator + scale: 0.75 + color: LightGray + texturePaths: + - "/Textures/Interface/NavMap/beveled_arrow_south.png" + - "/Textures/Interface/NavMap/beveled_arrow_east.png" + - "/Textures/Interface/NavMap/beveled_arrow_north.png" + - "/Textures/Interface/NavMap/beveled_arrow_west.png" + +- type: navMapBlip + id: GasValve + scale: 0.6667 + color: LightGray + texturePaths: + - "/Textures/Interface/NavMap/beveled_diamond_north_south.png" + - "/Textures/Interface/NavMap/beveled_diamond_east_west.png" + - "/Textures/Interface/NavMap/beveled_diamond_north_south.png" + - "/Textures/Interface/NavMap/beveled_diamond_east_west.png" + +- type: navMapBlip + id: Thermoregulator + scale: 0.6667 + color: LightGray + texturePaths: + - "/Textures/Interface/NavMap/beveled_hexagon.png" \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml index ed5137c28f..3bc00fb1b6 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml @@ -79,6 +79,8 @@ !type:PortablePipeNode nodeGroupID: Pipe pipeDirection: South + - type: AtmosMonitoringConsoleDevice + navMapBlip: Thermoregulator - type: ItemSlots slots: beakerSlot: diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml index 90e48d8be6..8327937ba8 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml @@ -73,7 +73,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_pump.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasFlowRegulator + - type: entity parent: GasBinaryBase id: GasVolumePump @@ -130,7 +132,9 @@ examinableAddress: true prefix: device-address-prefix-volume-pump - type: WiredNetworkConnection - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasFlowRegulator + - type: entity parent: GasBinaryBase id: GasPassiveGate @@ -159,7 +163,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_hiss.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasValve + - type: entity parent: GasBinaryBase id: GasValve @@ -207,7 +213,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_hiss.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasValve + - type: entity parent: GasBinaryBase id: SignalControlledValve @@ -266,7 +274,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_hiss.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasValve + - type: entity parent: GasBinaryBase id: GasPort @@ -295,7 +305,9 @@ - type: Construction graph: GasBinary node: port - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity parent: GasVentPump id: GasDualPortVentPump @@ -351,7 +363,9 @@ pipeDirection: South - type: AmbientSound enabled: true - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity parent: [ BaseMachine, ConstructibleMachine ] id: GasRecycler @@ -413,7 +427,9 @@ acts: ["Destruction"] - type: Machine board: GasRecyclerMachineCircuitboard - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasValve + - type: entity parent: GasBinaryBase id: HeatExchanger @@ -453,3 +469,5 @@ - type: Construction graph: GasBinary node: radiator + - type: AtmosMonitoringConsoleDevice + navMapBlip: Thermoregulator diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml index 08015abe7d..22b56908ea 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml @@ -27,6 +27,9 @@ True: { state: lights } - type: AtmosMonitor monitorsPipeNet: true + - type: GasPipeSensor + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasPipeSensor - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: Construction diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml index 4fe5463bff..ef436b4299 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml @@ -54,6 +54,7 @@ - type: PipeRestrictOverlap - type: AtmosUnsafeUnanchor - type: AtmosPipeColor + - type: AtmosMonitoringConsoleDevice - type: Tag tags: - Pipe diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml index e8025556aa..bde7136850 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml @@ -70,7 +70,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_hiss.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasFlowRegulator + - type: entity parent: GasFilter id: GasFilterFlipped @@ -158,7 +160,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_hiss.ogg - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasFlowRegulator + - type: entity parent: GasMixer id: GasMixerFlipped @@ -257,3 +261,5 @@ - type: Construction graph: GasTrinary node: pneumaticvalve + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasFlowRegulator \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml index d0ec74dd40..5da85544fc 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -68,7 +68,9 @@ sound: path: /Audio/Ambience/Objects/gas_vent.ogg - type: Weldable - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity parent: GasUnaryBase id: GasPassiveVent @@ -92,7 +94,9 @@ - type: Construction graph: GasUnary node: passivevent - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity parent: [GasUnaryBase, AirSensorBase] id: GasVentScrubber @@ -141,7 +145,9 @@ sound: path: /Audio/Ambience/Objects/gas_vent.ogg - type: Weldable - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentScrubber + - type: entity parent: GasUnaryBase id: GasOutletInjector @@ -180,7 +186,9 @@ visibleLayers: - enum.SubfloorLayers.FirstLayer - enum.LightLayers.Unshaded - + - type: AtmosMonitoringConsoleDevice + navMapBlip: GasVentOpening + - type: entity parent: [ BaseMachinePowered, ConstructibleMachine ] id: BaseGasThermoMachine @@ -224,7 +232,9 @@ examinableAddress: true - type: WiredNetworkConnection - type: PowerSwitch - + - type: AtmosMonitoringConsoleDevice + navMapBlip: Thermoregulator + - type: entity parent: BaseGasThermoMachine id: GasThermoMachineFreezer @@ -429,3 +439,5 @@ - type: ExaminableSolution solution: tank - type: PowerSwitch + - type: AtmosMonitoringConsoleDevice + navMapBlip: Thermoregulator diff --git a/Resources/Textures/Interface/NavMap/attributions.yml b/Resources/Textures/Interface/NavMap/attributions.yml new file mode 100644 index 0000000000..f624c0f448 --- /dev/null +++ b/Resources/Textures/Interface/NavMap/attributions.yml @@ -0,0 +1,59 @@ +- files: ["beveled_arrow_east.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_arrow_north.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_arrow_south.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_arrow_west.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_circle.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_diamond.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_diamond_east_west.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_diamond_north_south.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_hexagon.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_square.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_star.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" + +- files: ["beveled_triangle.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by chromiumboy" + source: "https://github.com/chromiumboy" diff --git a/Resources/Textures/Interface/NavMap/beveled_arrow_east.png b/Resources/Textures/Interface/NavMap/beveled_arrow_east.png new file mode 100644 index 0000000000000000000000000000000000000000..156685fe146b4c9262d335dd30565fa4895522b6 GIT binary patch literal 1135 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/NavMap/beveled_diamond.png.yml b/Resources/Textures/Interface/NavMap/beveled_diamond.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/NavMap/beveled_diamond.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/NavMap/beveled_diamond_east_west.png b/Resources/Textures/Interface/NavMap/beveled_diamond_east_west.png new file mode 100644 index 0000000000000000000000000000000000000000..9c88e7c51d2fd1f57febc161c521d36e5366d48d GIT binary patch literal 1779 zcmVY`0e=R#BpL5>^4b{GY7FY5vtmNqAX3Vur^X#G+3m;hPJ^6Uc?6^`Ul*9 zz$Ey93KYRMu|Xv^Bnl!eja)a2B1oqSC9ObB>qcw*{ubM@<74}r!-vLJwlyJX<1`uP z_tAQM&U0VBulu?0$AE^0hK7cQhK7cQhK7cQ#{V1aX}pw(&H?!Gp+kp04*<7s-;M$J z84gC?vUa!ey;6+bZ6HKKtvn>CxCDC_xFEuU|`@YcDvp1B+ty{a@FbS>3_`3%=`hs`v6izr0gmI zRs(MZaKh{Le%a2?PS~CX>m(0=P*;%TGlBA~FMb2Ed7vCr^H-udlDyVzF@8 z0ZOHkGCMmvcjd~J->zoET_Rf95dnzE2w*>eFCRH_xfnWIOKKFjkw!ybj_dFJ!^o&|7by)_&Cvc+n(D(}U>Wm!h0Qb8t@K_Zcm0Tdrc zfcJyJ;3-iQUl0UAC(ANq`Jo;h$3d^xgX1`G90$f2{@0Y(EEGjSwOU1`QbDm;M5$E5 z^71mW*(??p7v;Nm?@p}F5L*@?S1cBPa^b>-|8#eE|EROGv(;cQfaiHwEEbr}X7D@@ zqtOV1!2q332ae-*G;mp#AxRQSr4kB-0+yDRkjZ3_PNxwLhnEV4!p|9FzXp(7?>Xxp z=D}bP!^6XQS(b05QmLyC9y~BelGFo0uP6#sRfR0eP}Pr*>dnrE`g zYh;AUWP-t9XxL*rg-}(sk?!Sk8OzJd$mjFOX0u4A(}=}lay%ZNQWWJpfE$}_i?_7H z)yc0Lz=_t@)*pzX=xb|hV=XN$uv)DRTbN8H7>!2gbh>TH2t`p)tJP30mr*Ph8|j`- zr;$u1)o?gGFGsOd^p;mdoWY==FL_y-3z= zQMX1t_{R}JRaMk#HAs?#LZN_cHj7j$g=jR2Xf%pYD3prDV&@e_`6*-UDu9Ki4MUH} z1|5LU0T?hC3@>(cbe#2gJZ8Jy4x7yev)TNqLb+L6)O}v9R3_A}i^1 z`VxTm089gj6VYQG+1qg;VgS$y;Hx&9?KM#pkGfngogfIXTCK2HET6K)dP3BFUQhQ= z`aF?H$gx=L!&W0NF;KoOns;X}S_%jg|nz7HO_pe0M31G}-v%T*1 zdcWv&I=Qv=fiZ?cq0k6Ckw_@fX!PH;TJ22$eqvWjSwRM2te=ZM{^H9rU__hXlQ6?XlQ6?XlQ6?XlOK<{{qsv VG{K?_#%%xq002ovPDHLkV1l^oWqkku literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/NavMap/beveled_diamond_east_west.png.yml b/Resources/Textures/Interface/NavMap/beveled_diamond_east_west.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/NavMap/beveled_diamond_east_west.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/NavMap/beveled_diamond_north_south.png b/Resources/Textures/Interface/NavMap/beveled_diamond_north_south.png new file mode 100644 index 0000000000000000000000000000000000000000..af27998af8740ef9211b92fb9c5487f75b9b86cf GIT binary patch literal 1928 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 Date: Tue, 17 Dec 2024 03:54:23 +0000 Subject: [PATCH 101/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index dd4ae12655..1c7403f13b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: JIPDawg - changes: - - message: Gas miners are now indestructible, can be pulled and only anchored. - type: Tweak - id: 7220 - time: '2024-08-27T00:48:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31370 - author: SaphireLattice changes: - message: Safety Moth poster graphics for hardhats and pipes are no longer swapped @@ -3928,3 +3921,11 @@ id: 7719 time: '2024-12-16T19:23:32.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33889 +- author: chromiumboy + changes: + - message: Added the atmospheric network monitor. Use these consoles to monitor + the network of pipes that supply the crew with a breathable atmosphere + type: Add + id: 7720 + time: '2024-12-17T03:53:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32294 From d90f6ce086a34080539bcf194c7951abe51bcc68 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:43:55 -0500 Subject: [PATCH 102/263] Amber station updates (#33899) * Fixed various issued identified during playtests. * Fixed a firelock stuck closed * Added more cameras and moved others * Fixed an issue with disposals * Modified the map a bit after watching some matches and listening to feedback * Reworked sec some more. Moved perma out into its own separate ship (another design from Frontier) Also performed various improvements to the station. * Added final touches, ready to PR * Added some more loot rooms throughout the map * Changed up some areas in maints that I didn't like * Removed footprints outside detective's room and wrenched down the logic gates in the ship building airlock * I totally didn't forget to add the lights --- Resources/Maps/amber.yml | 5917 ++++++++++++++++++++------------------ 1 file changed, 3197 insertions(+), 2720 deletions(-) diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index 6e0492e16f..21442a60b0 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -74,59 +74,59 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: CQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAADDwAAAAAADwAAAAAADwAAAAABDwAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAACDwAAAAAADwAAAAABDwAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADDwAAAAABDwAAAAAADwAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACDgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABGgAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADwAAAAABDwAAAAACDwAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAAAGgAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDwAAAAACDwAAAAADDwAAAAABDwAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADDwAAAAAADwAAAAABDwAAAAAADwAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDwAAAAABDwAAAAABDwAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADGgAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADDwAAAAAADwAAAAACDwAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABGgAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: CQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAADCQAAAAABCQAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAABCQAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAACCQAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: IwAAAAACIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADIwAAAAABIwAAAAAAIwAAAAABIwAAAAACIwAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAHAAAAAABHAAAAAACIwAAAAACIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAIwAAAAABIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGgAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAABIwAAAAABIwAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACHAAAAAADIwAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAABIwAAAAACHAAAAAADHAAAAAABDgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAADIwAAAAAAAAAAAAABAAAAAAAAIwAAAAABIwAAAAAAHAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABHAAAAAADIwAAAAABIwAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAABHAAAAAACKQAAAAAAKwAAAAABKwAAAAADKwAAAAADDgAAAAAACQAAAAADHAAAAAABDgAAAAAAHAAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAABIwAAAAAAHAAAAAAADgAAAAAAKwAAAAABKwAAAAAAKwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAACCQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAD + tiles: IwAAAAACIwAAAAABIwAAAAADIwAAAAACIwAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAACIwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAACDgAAAAAAHAAAAAADHAAAAAACIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADIwAAAAADIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGgAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAABIwAAAAADIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAACIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAABIwAAAAACIwAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABIwAAAAABIwAAAAABAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAACIwAAAAABAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAADHAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABHAAAAAACIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAACHAAAAAADKQAAAAAAKwAAAAABKwAAAAABKwAAAAABDgAAAAAACQAAAAAAHAAAAAAADgAAAAAAHAAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADHAAAAAADDgAAAAAAKwAAAAACKwAAAAADKwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAD version: 6 -1,-4: ind: -1,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAAIwAAAAABIwAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAAIwAAAAADIwAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAACIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAB + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAIwAAAAADIwAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABIwAAAAADIwAAAAADDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAACIwAAAAACIwAAAAACIwAAAAACIwAAAAADIwAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAC version: 6 -1,-5: ind: -1,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: CQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACHAAAAAAAHAAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACHAAAAAADHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAAACQAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAADLwAAAAABLwAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAACLwAAAAACLwAAAAADLwAAAAADLwAAAAABLwAAAAABLwAAAAAALwAAAAADLwAAAAADLwAAAAACLwAAAAACAAAAAAAALwAAAAADLwAAAAACLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAAAAAAAAAALwAAAAABLwAAAAABLwAAAAADAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAALwAAAAAALwAAAAACLwAAAAAAAAAAAAAAAAAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAAAAAAAALwAAAAAALwAAAAADLwAAAAADAAAAAAAAAAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMAAAAAAAMAAAAAAKMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAADHAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAACHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACLwAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAACAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABAAAAAAAKLwAAAAADLwAAAAACLwAAAAABAAAAAAAAAAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAALwAAAAADLwAAAAACLwAAAAABAAAAAAAAAAAAAAAEDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAAAAAAAALwAAAAACLwAAAAABLwAAAAAAAAAAAAAAAAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAALwAAAAACLwAAAAADLwAAAAACAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABAAAAAAAMLwAAAAADLwAAAAABLwAAAAAAAAAAAAAAAAAAAAAMDgAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAAAHAAAAAADCQAAAAABCQAAAAABDgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMQAAAAADMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AAAAAAAALwAAAAACLwAAAAAALwAAAAADAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADAAAAAAAILwAAAAAALwAAAAABLwAAAAABAAAAAAAAAAAAAAAHDgAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAMQAAAAADMQAAAAADMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABCQAAAAADCQAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: LAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADLgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAABLgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAACLgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAALAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAACQAAAAADCQAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABCQAAAAACCQAAAAACCQAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAADDgAAAAAACQAAAAAACQAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACCQAAAAAC + tiles: LAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABLgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADLgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAADLgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAALAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAACCQAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABCQAAAAAD version: 6 -2,-2: ind: -2,-2 - tiles: MwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAANwAAAAACNwAAAAABNwAAAAABNwAAAAAACQAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAAAMwAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAANwAAAAABNwAAAAACNwAAAAAANwAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACOAAAAAABDgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAAAOAAAAAACDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACOAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAADOAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAADLAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAAC + tiles: MwAAAAADMwAAAAACMwAAAAABMwAAAAACMwAAAAACMwAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAADMwAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAANwAAAAACNwAAAAAANwAAAAABNwAAAAAACQAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAACDgAAAAAANwAAAAABNwAAAAAANwAAAAADNwAAAAACDgAAAAAADgAAAAAAMwAAAAABDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAACOAAAAAADDgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAOAAAAAACOAAAAAACOAAAAAACOAAAAAACOAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADOAAAAAADOAAAAAABOAAAAAABOAAAAAACOAAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAAOAAAAAADOAAAAAADOAAAAAADOAAAAAADOAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAB version: 6 -2,-3: ind: -2,-3 - tiles: DgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAABIwAAAAABIwAAAAADIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABDgAAAAAAHAAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACDgAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABHAAAAAADHAAAAAABHAAAAAABDgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAACHAAAAAACHAAAAAAAHAAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAAHAAAAAAACQAAAAABHAAAAAADHAAAAAACHAAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAAD + tiles: DgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAABIwAAAAABIwAAAAACIwAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAAIwAAAAADIwAAAAADIwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAAHAAAAAABIwAAAAACIwAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAABDgAAAAAAHAAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAACMwAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAABHAAAAAACHAAAAAABHAAAAAACMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACCQAAAAACHAAAAAABHAAAAAACHAAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAAC version: 6 -2,-4: ind: -2,-4 - tiles: CQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAABOQAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAAOQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAACIwAAAAADDgAAAAAAHAAAAAABHAAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAACIwAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAIwAAAAAAIwAAAAAB + tiles: CQAAAAABCQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAACCQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAABOQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAAOQAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAHAAAAAACHAAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAADIwAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAACIwAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADDgAAAAAAIwAAAAABIwAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: DgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAABMwAAAAACMwAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAADHAAAAAADIwAAAAADIwAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAACDgAAAAAAIwAAAAADIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAABDgAAAAAADgAAAAAAMwAAAAAAMwAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAIwAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAAAAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAA + tiles: DgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABIwAAAAACIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAABHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAALwAAAAABDgAAAAAADgAAAAAAMwAAAAAAMwAAAAACHAAAAAABHAAAAAACHAAAAAAAHAAAAAACDgAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAAAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAADMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAALDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAMDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAA version: 6 -2,2: ind: -2,2 @@ -134,19 +134,19 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAAHAAAAAACLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAABCQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAAAHAAAAAACLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAADCQAAAAABCQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: CQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAAAMwAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAAAMwAAAAADMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAACLgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACDgAAAAAAHAAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAAHAAAAAACLgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAAADgAAAAAAHAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAACDgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAACLgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACMwAAAAABMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAADMwAAAAABLgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACDgAAAAAAHAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACDgAAAAAAHAAAAAACLgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAADDgAAAAAAHAAAAAADLgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACDgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAADLgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAACLAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: LgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAABMwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAAAMwAAAAADMwAAAAACDgAAAAAAMwAAAAABMwAAAAADAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADMwAAAAAAMwAAAAADDgAAAAAAMQAAAAABMQAAAAADMQAAAAABLgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAAMwAAAAACMwAAAAACMwAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAACLgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAAMwAAAAAAMwAAAAADMwAAAAACDgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAAMwAAAAADMwAAAAACMwAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAAMwAAAAACMwAAAAAAMwAAAAACDgAAAAAAMwAAAAABMwAAAAADMwAAAAADLgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAADgAAAAAAMwAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAACMwAAAAABMwAAAAAADgAAAAAAMwAAAAACMwAAAAACAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMwAAAAACMwAAAAACDgAAAAAAMQAAAAACMQAAAAAAMQAAAAACLgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAAMwAAAAABMwAAAAADMwAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABLgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAACMwAAAAABMwAAAAADLgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAMwAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAADDgAAAAAAMwAAAAACMwAAAAAAMwAAAAADLgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAAMwAAAAACMwAAAAAAMwAAAAACDgAAAAAAMwAAAAADMwAAAAACMwAAAAACLgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAMwAAAAACMwAAAAAAMwAAAAADDgAAAAAAMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAAMwAAAAAADgAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAADGgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAAAGgAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-5: ind: -3,-5 @@ -154,11 +154,11 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAMQAAAAACMQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAAD + tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAACDgAAAAAACQAAAAABDgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAAAMQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 -3,2: ind: -3,2 @@ -166,15 +166,15 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: HAAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HAAAAAADDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAADMwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADCQAAAAACDgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAABMwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABCQAAAAACDgAAAAAA version: 6 -4,-4: ind: -4,-4 @@ -182,7 +182,7 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAADOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAADOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -198,31 +198,31 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAADgAAAAAAPAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAGPAAAAAAEIwAAAAAAPAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAMAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAAAAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAABPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAADPQAAAAAB + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAEDgAAAAAAPAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAGPAAAAAACIwAAAAAAPAAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAAHAAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAMAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAAAAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAALDgAAAAAAHAAAAAADPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAADPQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: IQAAAAACIQAAAAACDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDwAAAAABDwAAAAAADwAAAAADCQAAAAACHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAABCQAAAAADCQAAAAADDwAAAAACMgAAAAAADwAAAAAACQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDwAAAAACDwAAAAABDwAAAAAACQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: IQAAAAACIQAAAAABDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADwAAAAACDwAAAAACDwAAAAADCQAAAAACHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAABCQAAAAACDwAAAAABMgAAAAAADwAAAAABCQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDwAAAAACDwAAAAACDwAAAAADCQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: CQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADAAAAAAAJAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACAAAAAAAADgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAAIwAAAAABIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAABIQAAAAADIQAAAAADDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADIQAAAAADIQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAA + tiles: CQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAACDgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACAAAAAAAEAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABAAAAAAAADgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAADIQAAAAADIQAAAAADDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAACDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAABIQAAAAABIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAB version: 6 0,-4: ind: 0,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAAMQAAAAABMQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAAMQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADDgAAAAAAMQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAAB + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAMQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAAD version: 6 0,-5: ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAA version: 6 0,0: ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAACMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABPQAAAAABLAAAAAAAMAAAAAAHLAAAAAAALAAAAAAALAAAAAAAMAAAAAAJMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAAAOwAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAAAOwAAAAAAOwAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABPQAAAAADLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAADQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAADLwAAAAACLwAAAAACLwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAADCQAAAAAALwAAAAAALwAAAAAALwAAAAAADgAAAAAALwAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAADDgAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAFMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABPQAAAAADLAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAKMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACOwAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAAAOwAAAAAAOwAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAHMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABPQAAAAADLgAAAAAALAAAAAAALAAAAAAAMAAAAAAJDgAAAAAADgAAAAAAMAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAACQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAADLwAAAAADLwAAAAADLwAAAAABLwAAAAACLwAAAAACLwAAAAABLwAAAAABLwAAAAADLwAAAAABLwAAAAAACQAAAAACLwAAAAACLwAAAAABLwAAAAACDgAAAAAALwAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAA version: 6 0,1: ind: 0,1 - tiles: CQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: CQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 0,2: ind: 0,2 @@ -230,19 +230,19 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAADMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACAAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADAAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABHAAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACHAAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADHAAAAAABDgAAAAAALAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAADCQAAAAABHAAAAAACDgAAAAAACQAAAAAC + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABAAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABAAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAABHAAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACHAAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAACHAAAAAADDgAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAACCQAAAAACHAAAAAAADgAAAAAACQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: CQAAAAACCQAAAAACDgAAAAAAHAAAAAADHAAAAAACHAAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAACDgAAAAAAHAAAAAABCQAAAAABDwAAAAABCQAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADCQAAAAADDwAAAAACCQAAAAAACQAAAAADHAAAAAABHAAAAAADHAAAAAACHAAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADHAAAAAACDgAAAAAAHAAAAAADCQAAAAAACQAAAAAACQAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAAC + tiles: CQAAAAADCQAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAAHAAAAAADDgAAAAAAHAAAAAABCQAAAAADDwAAAAADCQAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABCQAAAAACDwAAAAABCQAAAAAACQAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACHAAAAAABDgAAAAAAHAAAAAADCQAAAAADCQAAAAADCQAAAAADHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAB version: 6 1,-3: ind: 1,-3 - tiles: DgAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAAMQAAAAADMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADIwAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAACIwAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAACIwAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAABIwAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAA + tiles: DgAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABIwAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAACIwAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACDgAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAAAIwAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAADIwAAAAABIwAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAAQQAAAAABQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAMwAAAAAAMwAAAAADDgAAAAAAQQAAAAAAQQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAADMQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALAAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAAMwAAAAACMwAAAAABDgAAAAAAQQAAAAAAQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAAMwAAAAAAMwAAAAACDgAAAAAAQQAAAAABQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAADMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALAAAAAAA version: 6 1,-5: ind: 1,-5 @@ -250,71 +250,71 @@ entities: version: 6 1,0: ind: 1,0 - tiles: DgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAADCQAAAAAAHAAAAAACDgAAAAAACQAAAAACDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAACCQAAAAAAHAAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAACQAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAABHAAAAAABHAAAAAABDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACQAAAAAACDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABLwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAMMAAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAD + tiles: DgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAADHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAACQAAAAADCQAAAAACHAAAAAADDgAAAAAACQAAAAACDgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAACQAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAABHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABQAAAAAACDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACLwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAB version: 6 1,1: ind: 1,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAJDgAAAAAACQAAAAABDgAAAAAALgAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAAMAAAAAAADgAAAAAAMAAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAADCQAAAAADCQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAB + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAABQwAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAD version: 6 1,2: ind: 1,2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: CQAAAAACDgAAAAAAQAAAAAAAQAAAAAADDwAAAAAAQAAAAAADQAAAAAACQAAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAADDgAAAAAAQAAAAAACQAAAAAABDwAAAAACQAAAAAABQAAAAAAADgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAQAAAAAAAQAAAAAAADwAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAQAAAAAACQAAAAAADQAAAAAADQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAABIwAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAABIwAAAAABIwAAAAADIwAAAAABIwAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAACCQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAQwAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAADDgAAAAAAQAAAAAACQAAAAAAADwAAAAADQAAAAAADQAAAAAABQAAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACDgAAAAAAQAAAAAAAQAAAAAAADwAAAAABQAAAAAAAQAAAAAACDgAAAAAAQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAQAAAAAACQAAAAAABDwAAAAABQAAAAAACQAAAAAADQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAQAAAAAADQAAAAAACQAAAAAABQAAAAAABQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAACIwAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADIwAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: CQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAAOQAAAAABOQAAAAACOQAAAAADOQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAADOQAAAAABOQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABOQAAAAABOQAAAAABOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAACHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACGgAAAAADLwAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACGgAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAADGgAAAAABLwAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAADGgAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADGgAAAAADLwAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABGgAAAAABDgAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADGgAAAAAALwAAAAADCQAAAAABDgAAAAAAQAAAAAACQAAAAAABQAAAAAAAQAAAAAACQAAAAAABQAAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAAQAAAAAAAQAAAAAACDwAAAAAAQAAAAAABQAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAD + tiles: CQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAAOQAAAAADOQAAAAADOQAAAAAAOQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAACOQAAAAAAOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADOQAAAAADOQAAAAADOQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAAGgAAAAACLwAAAAADDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACGgAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABGgAAAAAALwAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACGgAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAACGgAAAAACLwAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABGgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAABQAAAAAADQAAAAAADQAAAAAABQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABGgAAAAADLwAAAAADCQAAAAACDgAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAAQAAAAAABQAAAAAABDwAAAAAAQAAAAAADQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAB version: 6 2,-3: ind: 2,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAAHAAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACIQAAAAACIQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACDgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAAHAAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAABIQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABRwAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAARwAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAA version: 6 2,0: ind: 2,0 - tiles: QwAAAAAACQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAQwAAAAABCQAAAAAACQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAABCQAAAAACDgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAAQwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAAIwAAAAADDgAAAAAADgAAAAAAQwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACCQAAAAACDgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAADCQAAAAADDgAAAAAAMAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAQwAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAAMAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: QwAAAAABCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAQwAAAAACCQAAAAAACQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAAQwAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAAIwAAAAACDgAAAAAAIwAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAABDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAADCQAAAAABDgAAAAAAMAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAQwAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAMAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA version: 6 2,1: ind: 2,1 - tiles: QwAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAQwAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAQwAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,2: ind: 2,2 - tiles: CQAAAAACCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAABCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: CQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAACLwAAAAADGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAAALwAAAAADLwAAAAABLwAAAAADGgAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABGgAAAAACCQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAADGgAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAALDgAAAAAAGgAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAABGgAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAACGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAACGgAAAAACCQAAAAACCQAAAAADCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABGgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAADGgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAAAGgAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAASAAAAAADSAAAAAABSAAAAAACDgAAAAAAHAAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADLAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAABSAAAAAABSAAAAAAASAAAAAADHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADSQAAAAADSQAAAAACLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAASAAAAAADSAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAACMQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAASAAAAAADSAAAAAACSAAAAAACDgAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAAASAAAAAADSAAAAAAASAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACSQAAAAABSQAAAAABLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAABSAAAAAAASAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAACMQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAACDgAAAAAARgAAAAABRgAAAAACDgAAAAAARgAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAAMwAAAAAADgAAAAAAMwAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAABDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAADDgAAAAAARgAAAAABRgAAAAADDgAAAAAARgAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAARwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 3,0: ind: 3,0 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,1: ind: 3,1 @@ -326,7 +326,7 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAAQAAAAAACQAAAAAACQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAAAQAAAAAAAQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAAMwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAADQAAAAAADDgAAAAAAQAAAAAADQAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAADQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAABDgAAAAAAQAAAAAADQAAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAAHAAAAAABRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAAMwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAAADgAAAAAAQAAAAAABQAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADLAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 4,0: ind: 4,0 @@ -338,7 +338,7 @@ entities: version: 6 6,-2: ind: 6,-2 - tiles: QAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,-6: ind: 1,-6 @@ -346,11 +346,11 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAADLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAABRwAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAAHAAAAAADDgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAADMwAAAAACRwAAAAAAMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAABMwAAAAABMwAAAAACMwAAAAACMwAAAAADDgAAAAAAMwAAAAAAMwAAAAACDgAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAADLAAAAAAALAAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAADDgAAAAAAMwAAAAACMwAAAAACMwAAAAACLAAAAAAASQAAAAACHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAACHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAACLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAACRwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADLgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAACDgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAADMwAAAAADRwAAAAAAMwAAAAADDgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACDgAAAAAAMwAAAAADMwAAAAADDgAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAADLAAAAAAALAAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADDgAAAAAAMwAAAAACMwAAAAADMwAAAAAALAAAAAAASQAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAADSQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAAASQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -378,7 +378,7 @@ entities: version: 6 6,-3: ind: 6,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,1: ind: -4,1 @@ -386,7 +386,7 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAADDgAAAAAAQAAAAAAADgAAAAAAQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAA + tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAPQAAAAABDgAAAAAAQAAAAAACDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAADDgAAAAAADgAAAAAAQAAAAAABDgAAAAAA version: 6 -5,-5: ind: -5,-5 @@ -394,23 +394,23 @@ entities: version: 6 3,-6: ind: 3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAAASgAAAAADSgAAAAABSgAAAAABSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAAASQAAAAABHAAAAAABHAAAAAABSgAAAAACSgAAAAADSgAAAAACSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACSQAAAAADSQAAAAAASQAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAACSgAAAAAASgAAAAADSgAAAAABSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAACSQAAAAACHAAAAAACHAAAAAABSgAAAAADSgAAAAABSgAAAAACSgAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADSQAAAAACSQAAAAABSQAAAAACHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: PAAAAAAEIwAAAAABDgAAAAAALAAAAAAAPAAAAAAFDgAAAAAAIwAAAAACIwAAAAAAIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAARwAAAAABLAAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAAAPAAAAAADIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACPAAAAAACPAAAAAAGDgAAAAAADgAAAAAADgAAAAAAPAAAAAAEIwAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAEPAAAAAAFIwAAAAACRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAACPAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAAASgAAAAACDgAAAAAADgAAAAAASgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAALAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAACSgAAAAABDgAAAAAASgAAAAADSgAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: PAAAAAADIwAAAAABDgAAAAAALAAAAAAAPAAAAAAGDgAAAAAAIwAAAAABIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAARwAAAAAALAAAAAAADgAAAAAAIwAAAAADDgAAAAAAIwAAAAADPAAAAAAFIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACPAAAAAAFPAAAAAAGDgAAAAAADgAAAAAADgAAAAAAPAAAAAAFIwAAAAAAIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAACPAAAAAAEIwAAAAADRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAAAPAAAAAAEDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAADSgAAAAABDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAALAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACSgAAAAACDgAAAAAASgAAAAAASgAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-6: ind: 4,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADDgAAAAAAPAAAAAAGIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAFIwAAAAADDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAADgAAAAAADgAAAAAAIwAAAAACPAAAAAACDgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADDgAAAAAAPAAAAAAGIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAACIwAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAEDgAAAAAADgAAAAAAIwAAAAAAPAAAAAAEDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAARwAAAAACDgAAAAAARwAAAAABDgAAAAAARwAAAAACHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAACDgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-4: ind: 5,-4 @@ -649,12 +649,18 @@ entities: id: BrickTileDarkInnerNe decals: 1449: -7,-42 + 14878: 12,-10 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: 4123: -6,-41 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 14877: 14,-10 - node: zIndex: 1 color: '#FFFFFFFF' @@ -673,6 +679,7 @@ entities: 1441: -7,-41 1442: -7,-40 1443: -7,-39 + 14874: 12,-9 - node: zIndex: 1 color: '#FFFFFFFF' @@ -691,6 +698,7 @@ entities: 1445: -10,-38 1446: -9,-38 1447: -8,-38 + 14875: 13,-10 - node: zIndex: 1 color: '#FFFFFFFF' @@ -741,6 +749,7 @@ entities: 1422: -12,-41 1427: -9,-43 10356: -9,-44 + 14876: 14,-9 - node: zIndex: 1 color: '#FFFFFFFF' @@ -784,6 +793,11 @@ entities: id: BrickTileWhiteBox decals: 9418: -31,3 + - node: + color: '#FF000093' + id: BrickTileWhiteBox + decals: + 14879: 13,-9 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe @@ -796,6 +810,18 @@ entities: decals: 12370: -20,-47 14860: -24,-16 + - node: + zIndex: 1 + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 14936: -38,18 + - node: + zIndex: 1 + color: '#606C5B93' + id: BrickTileWhiteCornerNe + decals: + 14941: -34,17 - node: color: '#D381C996' id: BrickTileWhiteCornerNe @@ -819,6 +845,12 @@ entities: id: BrickTileWhiteCornerNw decals: 11357: -25,-45 + - node: + zIndex: 1 + color: '#606C5B93' + id: BrickTileWhiteCornerNw + decals: + 14940: -35,17 - node: color: '#D381C996' id: BrickTileWhiteCornerNw @@ -863,6 +895,11 @@ entities: 11053: -1,-16 11940: -1,-22 11941: -4,-22 + - node: + color: '#FF000093' + id: BrickTileWhiteCornerSe + decals: + 14881: 14,-10 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -874,6 +911,12 @@ entities: id: BrickTileWhiteCornerSw decals: 14858: -25,-17 + - node: + zIndex: 1 + color: '#606C5B93' + id: BrickTileWhiteCornerSw + decals: + 14939: -35,16 - node: color: '#D381C996' id: BrickTileWhiteCornerSw @@ -894,6 +937,11 @@ entities: id: BrickTileWhiteCornerSw decals: 2226: -14,-16 + - node: + color: '#FF000093' + id: BrickTileWhiteCornerSw + decals: + 14880: 12,-10 - node: zIndex: 1 color: '#D381C996' @@ -1041,6 +1089,11 @@ entities: 14243: -8,-21 14244: -8,-20 14245: -8,-19 + - node: + color: '#FF000093' + id: BrickTileWhiteLineE + decals: + 14884: 14,-9 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1175,6 +1228,11 @@ entities: 2264: -13,-11 2265: -12,-11 2266: -11,-11 + - node: + color: '#FF000093' + id: BrickTileWhiteLineS + decals: + 14882: 13,-10 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1192,6 +1250,12 @@ entities: decals: 14263: 29,-33 14264: 29,-37 + - node: + zIndex: 1 + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 14937: -39,17 - node: zIndex: 1 color: '#9FED5896' @@ -1241,6 +1305,11 @@ entities: 2249: -14,-15 2253: -10,-13 2254: -10,-12 + - node: + color: '#FF000093' + id: BrickTileWhiteLineW + decals: + 14883: 12,-9 - node: color: '#FFFFFFFF' id: BushAOne @@ -1893,15 +1962,6 @@ entities: 10329: -1,-32 10330: -1,-33 10331: 0,-33 - - node: - cleanable: True - color: '#FFFFFF7F' - id: Dirt - decals: - 14400: 15,-53 - 14401: 13,-52 - 14429: 11,-12 - 14430: 10,-12 - node: cleanable: True zIndex: 5 @@ -1985,17 +2045,17 @@ entities: 14327: -6,-32 14328: -4,-32 14395: -10,-48 + 14400: 15,-53 + 14401: 13,-52 + 14429: 11,-12 + 14430: 10,-12 14435: -18,-52 14467: 34,-23 14468: 48,-27 + 14503: 33,-5 + 14514: 34,15 14527: -28,4 14539: -25,2 - - node: - cleanable: True - zIndex: 5 - color: '#FFFFFF7F' - id: Dirt - decals: 14620: -29,-6 14621: -43,-4 14622: -42,-4 @@ -2016,156 +2076,13 @@ entities: 14817: 21,12 14818: 21,1 14862: -25,-17 - - node: - cleanable: True - zIndex: 6 - color: '#FFFFFF7F' - id: Dirt - decals: - 14503: 33,-5 - 14514: 34,15 - - node: - cleanable: True - color: '#FFFFFF7F' - id: DirtHeavy - decals: - 14402: 15,-55 - 14403: 14,-57 - 14404: 13,-56 - 14406: 11,-54 - 14407: 11,-55 - 14408: 13,-54 - 14409: 14,-52 - 14410: 13,-52 - 14411: 13,-51 - 14412: 14,-51 - - node: - cleanable: True - zIndex: 5 - color: '#FFFFFF7F' - id: DirtHeavy - decals: - 14626: -41,3 - 14627: -40,4 - 14628: -40,5 - 14629: -39,4 - 14630: -39,3 - 14631: -40,3 - 14632: -40,2 - 14633: -39,2 - 14634: -39,1 - 14635: -40,1 - 14636: -41,1 - 14637: -40,-3 - 14638: -40,-4 - 14639: -39,-4 - 14640: -38,-4 - 14641: -37,-4 - 14642: -36,-4 - 14643: -35,-4 - 14644: -35,-5 - 14645: -36,-5 - 14646: -38,-5 - 14647: -41,-5 - 14648: -42,-4 - 14649: -42,-6 - 14650: -43,-6 - 14651: -40,-6 - 14652: -38,-6 - 14653: -33,-5 - 14654: -32,-5 - 14655: -30,-5 - 14656: -31,-6 - 14657: -30,-6 - 14658: -30,-9 - 14659: -28,-10 - 14660: -29,-10 - 14661: -30,-10 - 14662: -30,-11 - 14663: -29,-11 - 14664: -28,-12 - 14714: -41,2 - 14715: -41,-4 - 14716: -38,-3 - 14717: -36,-5 - 14718: -36,-6 - 14719: -40,-6 - 14720: -40,-5 - 14721: -41,-6 - 14722: -30,-6 - 14723: -31,-5 - 14724: -32,-5 - 14725: -33,-4 - 14726: -26,-5 - 14727: -25,-5 - 14728: -25,-6 - 14729: -23,-5 - 14730: -24,-8 - 14732: -26,-10 - 14734: -29,-12 - 14735: -30,-10 - 14736: -24,-12 - 14737: -27,-12 - 14738: -27,-11 - 14739: -27,-10 - 14740: -27,-9 - 14741: -27,-5 - 14742: -27,-3 - 14743: -28,-2 - 14744: -30,-1 - 14745: -30,0 - 14746: -34,5 - 14747: -34,7 - 14748: -34,8 - 14749: -34,9 - 14750: -36,9 - 14751: -37,9 - 14752: -35,9 - 14753: -34,4 - 14754: -34,4 - 14755: -34,3 - 14756: -27,4 - 14757: -27,5 - 14758: -28,5 - 14759: -28,7 - 14760: -27,9 - 14761: -26,15 - 14762: -25,15 - 14763: -23,16 - 14764: -23,17 - 14819: 27,2 - 14820: 27,1 - 14821: 28,2 - 14822: 25,5 - 14823: 26,6 - 14824: 16,10 - 14825: 3,13 - 14826: 2,13 - 14827: 1,16 - 14828: -29,-28 - 14829: -29,-27 - 14830: -28,-27 - 14831: -32,-27 - 14832: -33,-26 - 14833: -32,-26 - 14834: -33,-27 - 14835: -28,-28 - 14836: -28,-24 - 14837: -31,-22 - 14838: -30,-22 - 14839: -33,-22 - 14840: -35,-22 - 14841: -35,-23 - 14842: -36,-23 - 14843: -29,-50 - 14844: -30,-52 - 14845: -31,-52 - 14846: -31,-50 - 14847: -31,-53 - 14848: -31,-54 - 14849: -33,-50 - 14863: -25,-16 - 14864: -24,-16 + 14885: 13,-10 + 14886: 13,-12 + 14898: -34,19 + 14942: 40,11 + 14966: 39,5 + 14967: 37,9 + 14972: 33,2 - node: cleanable: True zIndex: 5 @@ -3653,7 +3570,6 @@ entities: 11847: 18,15 11868: -31,17 11869: -31,18 - 11870: -31,19 11871: -30,18 11872: -30,17 11873: -30,15 @@ -4074,6 +3990,16 @@ entities: 14392: -9,-49 14393: -10,-46 14394: -10,-45 + 14402: 15,-55 + 14403: 14,-57 + 14404: 13,-56 + 14406: 11,-54 + 14407: 11,-55 + 14408: 13,-54 + 14409: 14,-52 + 14410: 13,-52 + 14411: 13,-51 + 14412: 14,-51 14436: -19,-52 14445: -20,-55 14446: -20,-56 @@ -4085,6 +4011,14 @@ entities: 14462: 37,-26 14463: 32,-27 14469: 45,-16 + 14504: 32,-5 + 14505: 32,-6 + 14506: 31,-6 + 14507: 33,-6 + 14515: 34,12 + 14516: 33,19 + 14517: 29,-15 + 14518: 29,-14 14528: -28,3 14530: -28,6 14540: -26,4 @@ -4096,31 +4030,174 @@ entities: 14546: -27,2 14547: -27,6 14548: -27,7 - - node: - cleanable: True - zIndex: 6 - color: '#FFFFFF7F' - id: DirtHeavy - decals: - 14504: 32,-5 - 14505: 32,-6 - 14506: 31,-6 - 14507: 33,-6 - 14515: 34,12 - 14516: 33,19 - 14517: 29,-15 - 14518: 29,-14 - - node: - cleanable: True - color: '#FFFFFF7F' - id: DirtHeavyMonotile - decals: - 14413: 15,-52 - 14414: 15,-53 - 14415: 17,-53 - 14416: 17,-56 - 14417: 16,-56 - 14418: 15,-56 + 14626: -41,3 + 14627: -40,4 + 14628: -40,5 + 14629: -39,4 + 14630: -39,3 + 14631: -40,3 + 14632: -40,2 + 14633: -39,2 + 14634: -39,1 + 14635: -40,1 + 14636: -41,1 + 14637: -40,-3 + 14638: -40,-4 + 14639: -39,-4 + 14640: -38,-4 + 14641: -37,-4 + 14642: -36,-4 + 14643: -35,-4 + 14644: -35,-5 + 14645: -36,-5 + 14646: -38,-5 + 14647: -41,-5 + 14648: -42,-4 + 14649: -42,-6 + 14650: -43,-6 + 14651: -40,-6 + 14652: -38,-6 + 14653: -33,-5 + 14654: -32,-5 + 14655: -30,-5 + 14656: -31,-6 + 14657: -30,-6 + 14658: -30,-9 + 14659: -28,-10 + 14660: -29,-10 + 14661: -30,-10 + 14662: -30,-11 + 14663: -29,-11 + 14664: -28,-12 + 14714: -41,2 + 14715: -41,-4 + 14716: -38,-3 + 14717: -36,-5 + 14718: -36,-6 + 14719: -40,-6 + 14720: -40,-5 + 14721: -41,-6 + 14722: -30,-6 + 14723: -31,-5 + 14724: -32,-5 + 14725: -33,-4 + 14726: -26,-5 + 14727: -25,-5 + 14728: -25,-6 + 14729: -23,-5 + 14730: -24,-8 + 14732: -26,-10 + 14734: -29,-12 + 14735: -30,-10 + 14736: -24,-12 + 14737: -27,-12 + 14738: -27,-11 + 14739: -27,-10 + 14740: -27,-9 + 14741: -27,-5 + 14742: -27,-3 + 14743: -28,-2 + 14744: -30,-1 + 14745: -30,0 + 14746: -34,5 + 14747: -34,7 + 14748: -34,8 + 14749: -34,9 + 14750: -36,9 + 14751: -37,9 + 14752: -35,9 + 14753: -34,4 + 14754: -34,4 + 14755: -34,3 + 14756: -27,4 + 14757: -27,5 + 14758: -28,5 + 14759: -28,7 + 14760: -27,9 + 14761: -26,15 + 14762: -25,15 + 14763: -23,16 + 14764: -23,17 + 14819: 27,2 + 14820: 27,1 + 14821: 28,2 + 14822: 25,5 + 14823: 26,6 + 14824: 16,10 + 14825: 3,13 + 14826: 2,13 + 14827: 1,16 + 14828: -29,-28 + 14829: -29,-27 + 14830: -28,-27 + 14831: -32,-27 + 14832: -33,-26 + 14833: -32,-26 + 14834: -33,-27 + 14835: -28,-28 + 14836: -28,-24 + 14837: -31,-22 + 14838: -30,-22 + 14839: -33,-22 + 14840: -35,-22 + 14841: -35,-23 + 14842: -36,-23 + 14843: -29,-50 + 14844: -30,-52 + 14845: -31,-52 + 14846: -31,-50 + 14847: -31,-53 + 14848: -31,-54 + 14849: -33,-50 + 14863: -25,-16 + 14864: -24,-16 + 14887: 12,-10 + 14892: 13,-10 + 14893: 16,-16 + 14894: 8,-15 + 14895: 7,-15 + 14899: -33,19 + 14900: -34,18 + 14901: -33,18 + 14902: -32,19 + 14903: -33,20 + 14904: -34,20 + 14906: -34,15 + 14907: -33,16 + 14908: -34,15 + 14923: -39,17 + 14924: -39,18 + 14925: -38,18 + 14926: -37,18 + 14927: -37,17 + 14928: -34,17 + 14931: -33,16 + 14932: -33,17 + 14933: -33,18 + 14934: -34,18 + 14935: -35,18 + 14943: 42,8 + 14944: 41,8 + 14945: 41,6 + 14946: 37,8 + 14947: 38,8 + 14948: 38,9 + 14949: 37,9 + 14950: 35,9 + 14951: 35,8 + 14952: 35,7 + 14973: 33,1 + 14985: 37,9 + 14986: 37,11 + 14987: 37,12 + 14988: 36,12 + 14989: 40,11 + 14990: 41,9 + 14991: 36,6 + 14992: 41,6 + 14993: 42,1 + 14994: 41,2 + 14995: 45,-4 - node: cleanable: True zIndex: 5 @@ -4356,44 +4433,34 @@ entities: 12943: 15,-29 12948: 61,-80 12949: 61,-79 + 14413: 15,-52 + 14414: 15,-53 + 14415: 17,-53 + 14416: 17,-56 + 14417: 16,-56 + 14418: 15,-56 14456: 34,-32 14457: 35,-31 14464: 39,-28 - - node: - cleanable: True - zIndex: 5 - color: '#FFFFFF7F' - id: DirtHeavyMonotile - decals: + 14508: 32,-7 + 14509: 33,-3 + 14510: 31,8 + 14511: 34,13 14667: -30,-10 14668: -30,-11 14669: -26,-11 14670: -26,-10 14865: -25,-14 14866: -21,-16 - - node: - cleanable: True - zIndex: 6 - color: '#FFFFFF7F' - id: DirtHeavyMonotile - decals: - 14508: 32,-7 - 14509: 33,-3 - 14510: 31,8 - 14511: 34,13 - - node: - cleanable: True - color: '#FFFFFF7F' - id: DirtLight - decals: - 14419: 15,-56 - 14420: 16,-58 - 14421: 14,-58 - 14422: 15,-58 - 14423: 13,-56 - 14425: 11,-54 - 14426: 11,-55 - 14427: 13,-54 + 14912: -31,15 + 14913: -30,16 + 14914: -30,19 + 14915: -31,20 + 14916: -32,20 + 14917: -33,20 + 14918: -34,20 + 14919: -33,18 + 14920: -32,19 - node: cleanable: True zIndex: 5 @@ -5483,6 +5550,14 @@ entities: 14360: -3,-49 14361: 5,-49 14362: 6,-49 + 14419: 15,-56 + 14420: 16,-58 + 14421: 14,-58 + 14422: 15,-58 + 14423: 13,-56 + 14425: 11,-54 + 14426: 11,-55 + 14427: 13,-54 14437: -17,-52 14438: -16,-52 14439: -16,-53 @@ -5501,18 +5576,14 @@ entities: 14475: -29,-42 14476: -29,-41 14477: -22,-28 + 14512: 33,13 + 14513: 34,14 14531: -27,6 14532: -28,7 14533: -28,2 14536: -27,5 14537: -25,5 14538: -25,6 - - node: - cleanable: True - zIndex: 5 - color: '#FFFFFF7F' - id: DirtLight - decals: 14674: -27,-9 14675: -28,-11 14676: -28,-12 @@ -5553,14 +5624,18 @@ entities: 14711: -42,2 14712: -41,3 14713: -41,2 - - node: - cleanable: True - zIndex: 6 - color: '#FFFFFF7F' - id: DirtLight - decals: - 14512: 33,13 - 14513: 34,14 + 14953: 35,7 + 14954: 35,8 + 14955: 37,8 + 14956: 36,6 + 14957: 35,6 + 14958: 36,4 + 14959: 31,9 + 14960: 39,5 + 14961: 40,5 + 14962: 42,1 + 14963: 42,3 + 14964: 38,3 - node: cleanable: True zIndex: 5 @@ -6303,7 +6378,6 @@ entities: 12308: 57,-60 12309: 57,-61 12464: 34,-7 - 12465: 33,2 12466: 33,4 12467: 32,6 12468: 32,8 @@ -6339,7 +6413,6 @@ entities: 12498: 32,10 12499: 32,7 12500: 31,4 - 12501: 32,1 12502: 31,-1 12503: 32,-4 12505: 29,-4 @@ -6409,6 +6482,8 @@ entities: 14485: 20,-3 14486: 30,8 14487: 31,8 + 14519: 29,-12 + 14520: 29,-13 14521: 29,-11 14522: 29,-10 14523: 34,-8 @@ -6418,12 +6493,6 @@ entities: 14549: -27,5 14550: -27,4 14551: -26,4 - - node: - cleanable: True - zIndex: 5 - color: '#FFFFFF7F' - id: DirtMedium - decals: 14766: -28,17 14767: -24,17 14768: -24,16 @@ -6464,7 +6533,6 @@ entities: 14803: -20,18 14804: -27,17 14805: -26,19 - 14806: -31,19 14807: -31,18 14808: -30,16 14867: -26,-17 @@ -6474,14 +6542,21 @@ entities: 14871: -17,-3 14872: -8,-21 14873: -5,-22 - - node: - cleanable: True - zIndex: 6 - color: '#FFFFFF7F' - id: DirtMedium - decals: - 14519: 29,-12 - 14520: 29,-13 + 14888: 14,-10 + 14889: 14,-9 + 14890: 12,-9 + 14891: 13,-9 + 14974: 33,3 + 14975: 33,4 + 14976: 35,2 + 14977: 34,2 + 14978: 33,5 + 14979: 30,8 + 14980: 34,13 + 14981: 33,14 + 14982: 34,14 + 14983: 33,13 + 14984: 33,21 - node: color: '#FFFFFFFF' id: FlowersBRTwo @@ -7314,9 +7389,6 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 10304: 33,4 - 10305: 33,3 - 10306: 33,2 - 10307: 33,1 10308: 33,0 10309: 33,-1 14617: -25,-12 @@ -7329,6 +7401,10 @@ entities: decals: 9331: -27,11 12087: -28,10 + 14968: 33,3 + 14969: 33,2 + 14970: 33,1 + 14971: 33,5 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 @@ -9211,48 +9287,6 @@ entities: id: evac decals: 12394: 53.009716,-54.006245 - - node: - cleanable: True - zIndex: 5 - angle: -1.5707963267948966 rad - color: '#DE3A3A96' - id: footprint - decals: - 13792: 33.735916,2.0570765 - 13793: 34.548416,1.7547832 - - node: - cleanable: True - zIndex: 5 - angle: 0.5235987755982988 rad - color: '#DE3A3A96' - id: footprint - decals: - 13787: 32.794678,2.2477088 - 13788: 32.78426,2.7272086 - - node: - cleanable: True - zIndex: 5 - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: footprint - decals: - 13791: 33.09008,1.8504195 - - node: - cleanable: True - zIndex: 5 - angle: 2.0943951023931953 rad - color: '#DE3A3A96' - id: footprint - decals: - 13789: 32.78426,1.3512532 - - node: - cleanable: True - zIndex: 5 - angle: 2.2689280275926285 rad - color: '#DE3A3A96' - id: footprint - decals: - 13790: 32.69051,0.87175333 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9624,7 +9658,7 @@ entities: 0: 65437 -4,0: 0: 13243 - 3: 2048 + 1: 2048 -3,-4: 0: 65501 -3,-3: @@ -9635,7 +9669,7 @@ entities: 0: 53247 -3,0: 0: 15 - 3: 13056 + 1: 13056 2: 3072 -3,-5: 0: 36863 @@ -9695,23 +9729,23 @@ entities: 0: 56793 -2,-8: 0: 61495 - 1: 136 + 3: 136 -2,-7: 0: 8177 -2,-6: 0: 64988 -2,-9: 0: 13299 - 1: 32768 + 3: 32768 -1,-8: - 1: 51 + 3: 51 0: 63500 -1,-6: 0: 65535 -1,-5: 0: 4095 -1,-9: - 1: 12288 + 3: 12288 0: 35059 -1,-7: 0: 3822 @@ -9838,7 +9872,7 @@ entities: 0: 43688 -4,1: 0: 62259 - 3: 128 + 1: 128 -5,1: 0: 43690 -4,2: @@ -9852,7 +9886,7 @@ entities: -4,4: 0: 21759 -3,1: - 3: 513 + 1: 513 2: 8208 -3,2: 0: 65280 @@ -9872,7 +9906,7 @@ entities: 0: 13 2: 61696 -1,1: - 3: 1365 + 1: 1365 -1,2: 0: 65280 2: 10 @@ -9887,14 +9921,14 @@ entities: 0,0: 0: 15 2: 3328 - 3: 512 + 1: 512 0,1: 6: 273 - 3: 49356 + 1: 49356 0,2: 0: 65280 2: 6 - 3: 8 + 1: 8 0,3: 0: 19663 2: 256 @@ -9937,7 +9971,7 @@ entities: -8,-4: 2: 6553 -8,-5: - 3: 61440 + 1: 61440 0: 6 2: 256 -9,-4: @@ -9961,7 +9995,7 @@ entities: -8,0: 0: 26189 -7,-4: - 3: 273 + 1: 273 0: 3596 -7,-3: 0: 65535 @@ -9970,7 +10004,7 @@ entities: -7,-1: 0: 65518 -7,-5: - 3: 4096 + 1: 4096 0: 49343 -7,0: 0: 65359 @@ -10000,7 +10034,7 @@ entities: 0: 65535 -9,-5: 2: 1488 - 3: 61440 + 1: 61440 -8,-9: 0: 20479 -7,-8: @@ -10099,14 +10133,14 @@ entities: 2: 2 0: 61056 -9,2: - 0: 52476 + 0: 56572 -8,3: 0: 30492 -9,3: - 0: 36046 - 2: 4352 + 0: 19663 + 2: 256 -8,4: - 0: 63351 + 0: 63334 -7,1: 0: 65535 -7,2: @@ -10123,14 +10157,15 @@ entities: 0: 3822 -6,4: 0: 61567 + -9,4: + 0: 52974 -8,5: 0: 65327 + -9,5: + 0: 62988 -8,6: 0: 7 2: 1792 - -9,5: - 0: 62976 - 2: 6 -9,6: 2: 52288 -8,7: @@ -10140,8 +10175,7 @@ entities: -9,7: 2: 64716 -7,5: - 0: 111 - 2: 24576 + 0: 26159 -7,6: 2: 4368 -7,7: @@ -10190,30 +10224,30 @@ entities: 2: 50 -12,-4: 2: 3712 - 3: 57344 + 1: 57344 -13,-4: 0: 48896 - 3: 7 + 1: 7 2: 8 -12,-3: 0: 1 2: 62126 -13,-3: 0: 11 - 3: 59136 + 1: 59136 2: 6144 -12,-2: - 3: 59185 + 1: 59185 2: 2254 -13,-2: - 3: 140 + 1: 140 2: 2114 -12,-1: - 3: 140 + 1: 140 2: 34816 -11,-4: 2: 3889 - 3: 61440 + 1: 61440 -11,-3: 2: 61759 -11,-2: @@ -10228,7 +10262,7 @@ entities: 2: 8704 -10,-4: 2: 50517 - 3: 12834 + 1: 12834 -10,-3: 2: 63695 -10,-2: @@ -10239,7 +10273,7 @@ entities: 2: 32768 -10,-5: 2: 7936 - 3: 57344 + 1: 57344 -10,0: 0: 13105 2: 2048 @@ -10249,16 +10283,16 @@ entities: 0: 30711 -12,-6: 2: 256 - 3: 4096 + 1: 4096 0: 36044 -12,-5: - 3: 371 + 1: 371 2: 4736 -13,-6: 2: 61440 -13,-5: 2: 4680 - 3: 60544 + 1: 60544 -12,-9: 0: 52428 -12,-7: @@ -10313,7 +10347,7 @@ entities: -13,-14: 0: 224 2: 49409 - 3: 16 + 1: 16 -11,-14: 0: 52733 -10,-14: @@ -10329,19 +10363,19 @@ entities: -13,1: 2: 65392 -12,2: - 3: 3840 + 1: 3840 2: 61440 -13,2: - 3: 43008 + 1: 43008 2: 21026 -12,3: - 3: 3855 + 1: 3855 2: 61440 -13,3: - 3: 43016 + 1: 43016 2: 21026 -12,4: - 3: 3855 + 1: 3855 2: 61440 -11,1: 2: 63265 @@ -10353,38 +10387,39 @@ entities: -10,1: 0: 51 2: 47104 - 3: 16384 + 1: 16384 -10,3: 2: 7936 + 1: 16384 + 0: 8 -11,4: 2: 15 -10,4: - 2: 15 + 2: 8471 + 1: 3816 -10,2: 2: 546 0: 192 - -9,4: - 2: 16387 -13,4: - 3: 43016 + 1: 43016 2: 21026 -12,5: - 3: 8207 + 1: 8207 2: 53760 -13,5: - 3: 8200 + 1: 8200 2: 53794 -12,6: - 3: 21872 + 1: 21872 2: 8706 -12,7: - 3: 85 + 1: 85 2: 61986 -12,8: 2: 127 -13,7: 2: 61986 - 3: 85 + 1: 85 -11,5: 2: 61952 -11,7: @@ -10471,14 +10506,14 @@ entities: 2: 49137 -16,-13: 2: 4369 - 3: 43690 + 1: 43690 -17,-12: 2: 49137 -15,-12: 2: 63485 -15,-13: 2: 4369 - 3: 8738 + 1: 8738 -14,-12: 2: 13059 0: 2176 @@ -10496,35 +10531,35 @@ entities: 2: 34816 -16,-16: 2: 4607 - 3: 40960 + 1: 40960 -16,-17: 2: 45056 -17,-16: 2: 4607 - 3: 40960 + 1: 40960 -16,-15: 2: 273 - 3: 47786 + 1: 47786 -17,-15: - 3: 47786 + 1: 47786 2: 273 -16,-14: 2: 481 - 3: 45072 + 1: 45072 -17,-14: 2: 481 - 3: 45072 + 1: 45072 -17,-13: - 3: 43690 + 1: 43690 2: 4369 -15,-16: 2: 4607 - 3: 8192 + 1: 8192 -15,-15: 2: 273 - 3: 12834 + 1: 12834 -15,-14: - 3: 12304 + 1: 12304 2: 481 -15,-17: 2: 12288 @@ -10532,7 +10567,7 @@ entities: 2: 255 -14,-14: 2: 2425 - 3: 128 + 1: 128 -13,-16: 2: 13175 -13,-17: @@ -10589,16 +10624,16 @@ entities: 2: 52428 -18,-16: 2: 63 - 3: 32768 + 1: 32768 -18,-14: 2: 722 - 3: 32800 + 1: 32800 -18,-17: 2: 32768 -18,-15: - 3: 34952 + 1: 34952 -18,-13: - 3: 34952 + 1: 34952 -17,-17: 2: 45056 0,-4: @@ -10607,53 +10642,52 @@ entities: 0: 61166 1,-4: 0: 28927 - 3: 32768 + 1: 32768 1,-3: 0: 13104 - 2: 136 - 3: 2048 + 2: 2184 1,-2: 0: 12339 - 3: 32904 + 1: 32904 1,-1: 0: 13107 - 3: 136 + 1: 136 2: 32768 1,0: 0: 3 2: 264 - 3: 3712 + 1: 3712 1,-5: 0: 20206 2,-4: 0: 52383 - 3: 4096 + 1: 4096 2,-3: 2: 273 - 3: 17920 + 1: 17920 0: 12 2,-2: - 3: 4241 + 1: 4241 2: 17476 0: 34816 2,-1: - 3: 81 + 1: 81 2: 29700 2,0: 2: 1 - 3: 50 + 1: 50 0: 24576 3,-4: 0: 63263 3,-3: - 0: 30591 + 0: 30479 3,-1: - 3: 4369 + 1: 4369 0: 52428 3,-2: 0: 52960 3,0: - 3: 4353 + 1: 4353 0: 52428 4,-4: 0: 15279 @@ -10790,11 +10824,11 @@ entities: 4,-18: 2: 62960 1,1: - 3: 17 + 1: 17 2: 1028 1,2: 0: 65280 - 3: 4 + 1: 4 2: 8 1,3: 0: 14207 @@ -10854,15 +10888,15 @@ entities: 2: 32776 4,6: 0: 4147 - 3: 24576 + 1: 24576 4,7: 0: 1 2: 47752 - 3: 17510 + 1: 17510 3,8: 2: 136 4,8: - 3: 239 + 1: 239 2: 16 5,-4: 0: 49663 @@ -11019,7 +11053,7 @@ entities: 2: 51200 7,-20: 2: 65530 - 3: 4 + 1: 4 7,-19: 2: 17487 7,-18: @@ -11041,9 +11075,9 @@ entities: 6,2: 0: 64287 6,3: - 0: 313 + 0: 441 6,4: - 3: 769 + 1: 769 2: 25600 0: 2048 7,1: @@ -11051,36 +11085,35 @@ entities: 7,2: 0: 49039 7,3: - 0: 34955 - 3: 8960 + 0: 35003 + 1: 8192 7,4: - 3: 2 + 1: 2 0: 49032 8,0: 0: 49083 8,1: - 0: 48051 + 0: 48955 8,2: - 0: 29691 + 0: 29627 8,3: 0: 30583 4,4: - 2: 19520 - 3: 128 + 1: 640 5,5: 2: 64591 5,7: 2: 12288 - 5,8: - 3: 1 - 2: 50 5,4: - 2: 16896 - 3: 1024 + 1: 25600 + 5,8: + 1: 1 + 2: 50 6,5: 2: 3879 + 1: 128 7,5: - 2: 16 + 1: 32 0: 59528 7,6: 0: 61166 @@ -11246,7 +11279,7 @@ entities: 10,-14: 0: 57297 10,-17: - 3: 34816 + 1: 34816 2: 576 11,-16: 0: 65520 @@ -11257,7 +11290,7 @@ entities: 11,-13: 0: 127 11,-17: - 3: 62208 + 1: 62208 2: 3104 12,-16: 0: 56712 @@ -11269,9 +11302,9 @@ entities: 0: 47935 9,-19: 2: 62736 - 3: 2082 + 1: 2082 9,-20: - 3: 64 + 1: 64 9,-18: 2: 2126 10,-20: @@ -11279,39 +11312,40 @@ entities: 10,-18: 2: 25862 11,-20: - 3: 13056 + 1: 13056 2: 50304 11,-19: - 3: 30583 + 1: 30583 2: 8 11,-18: - 3: 375 + 1: 375 2: 17920 11,-21: 2: 6481 - 3: 140 + 1: 140 12,-20: - 3: 13104 + 1: 13104 12,-19: 2: 5633 - 3: 16418 + 1: 16418 12,-18: 2: 17425 - 3: 8192 + 1: 8192 9,1: - 0: 4081 + 0: 8083 9,2: - 0: 118 + 0: 45431 9,3: - 3: 8449 + 0: 11 + 1: 8448 10,1: - 0: 4914 + 0: 9010 2: 2176 10,2: - 0: 52479 + 0: 56575 10,3: + 0: 13 2: 1792 - 0: 12 11,0: 0: 32624 11,1: @@ -11327,7 +11361,7 @@ entities: 12,0: 2: 51393 0: 768 - 3: 1024 + 1: 1024 12,1: 2: 49665 12,2: @@ -11370,18 +11404,18 @@ entities: 14,-5: 0: 12336 14,-1: - 3: 43690 + 1: 43690 2: 17476 14,0: - 3: 1038 + 1: 1038 2: 19264 15,-2: 2: 20478 15,-1: - 3: 43690 + 1: 43690 2: 17476 15,0: - 3: 1038 + 1: 1038 2: 19264 16,-2: 2: 20478 @@ -11414,19 +11448,19 @@ entities: 0: 238 14,-11: 0: 4368 - 3: 19656 + 1: 19656 2: 32768 14,-10: 0: 17 - 3: 2188 + 1: 2188 2: 64 14,-13: 0: 58606 15,-11: - 3: 401 + 1: 401 2: 4710 15,-10: - 3: 48 + 1: 48 2: 3784 15,-12: 2: 8712 @@ -11434,13 +11468,13 @@ entities: 2: 52832 16,-12: 2: 8435 - 3: 35328 + 1: 35328 16,-11: - 3: 10937 + 1: 10937 2: 36864 0: 1024 16,-10: - 3: 383 + 1: 383 2: 2176 12,-17: 0: 34880 @@ -11455,7 +11489,7 @@ entities: 0: 48123 13,-17: 0: 4096 - 3: 16 + 1: 16 2: 230 14,-14: 0: 65535 @@ -11464,12 +11498,12 @@ entities: 0: 8192 14,-17: 2: 4096 - 3: 2 + 1: 2 14,-15: 0: 57890 15,-16: 2: 32775 - 3: 128 + 1: 128 15,-14: 0: 10016 15,-15: @@ -11477,17 +11511,17 @@ entities: 15,-17: 2: 34944 16,-16: - 3: 61104 + 1: 61104 2: 14 16,-15: - 3: 119 + 1: 119 16,-13: 2: 4096 12,-21: 2: 20480 - 3: 8977 + 1: 8977 13,-18: - 3: 8448 + 1: 8448 2: 4096 14,-19: 2: 14540 @@ -11496,23 +11530,23 @@ entities: 14,-20: 2: 60416 15,-20: - 3: 3686 + 1: 3686 15,-19: - 3: 52750 + 1: 52750 2: 8192 15,-18: - 3: 2 + 1: 2 2: 32780 16,-20: - 3: 63235 + 1: 63235 2: 2088 16,-19: - 3: 48031 + 1: 48031 16,-18: - 3: 139 + 1: 139 2: 31744 16,-17: - 3: 48942 + 1: 48942 2: 16384 13,0: 2: 20288 @@ -11520,36 +11554,36 @@ entities: 2: 65280 14,2: 2: 65348 - 3: 10 + 1: 10 14,1: - 3: 43694 + 1: 43694 2: 17472 14,3: 2: 14 15,2: 2: 65348 - 3: 10 + 1: 10 15,1: - 3: 43694 + 1: 43694 2: 17472 15,3: 2: 14 16,0: 2: 19264 - 3: 1038 + 1: 1038 16,2: 2: 65348 - 3: 10 + 1: 10 16,-1: - 3: 43690 + 1: 43690 2: 17476 17,-2: 2: 20478 17,-1: - 3: 43690 + 1: 43690 2: 17476 17,0: - 3: 1038 + 1: 1038 2: 19264 17,-3: 2: 32768 @@ -11569,7 +11603,7 @@ entities: 2: 4407 18,0: 2: 44456 - 3: 512 + 1: 512 19,0: 2: 13105 19,-2: @@ -11579,85 +11613,85 @@ entities: 20,-2: 2: 311 20,-7: - 3: 24576 + 1: 24576 19,-7: 2: 32768 20,-6: 2: 16912 - 3: 36078 + 1: 36078 19,-6: 2: 200 20,-5: 2: 784 - 3: 60552 + 1: 60552 20,-4: - 3: 70 + 1: 70 21,-6: - 3: 18367 + 1: 18367 2: 2048 21,-5: - 3: 55735 + 1: 55735 2: 8 21,-8: 2: 546 - 3: 34952 + 1: 34952 21,-7: - 3: 34958 + 1: 34958 2: 512 21,-4: - 3: 31612 + 1: 31612 21,-9: - 3: 36352 + 1: 36352 2: 231 22,-8: - 3: 57339 + 1: 57339 2: 4 22,-7: - 3: 4271 + 1: 4271 2: 57600 22,-6: - 3: 60493 + 1: 60493 2: 16 22,-5: 2: 1 - 3: 65534 + 1: 65534 22,-9: - 3: 40908 + 1: 40908 2: 16434 22,-4: - 3: 15031 + 1: 15031 2: 8 23,-8: - 3: 60943 + 1: 60943 23,-7: 2: 13056 - 3: 52462 + 1: 52462 23,-6: - 3: 1615 + 1: 1615 23,-5: - 3: 887 + 1: 887 2: 12288 23,-9: - 3: 60943 + 1: 60943 23,-4: - 3: 4 + 1: 4 2: 336 24,-8: - 3: 4353 + 1: 4353 24,-7: - 3: 4369 + 1: 4369 24,-6: - 3: 273 + 1: 273 16,1: - 3: 43694 + 1: 43694 2: 17472 16,3: 2: 14 17,2: 2: 65348 - 3: 10 + 1: 10 17,1: - 3: 43694 + 1: 43694 2: 17472 17,3: 2: 14 @@ -11674,7 +11708,7 @@ entities: 19,3: 2: 3 24,-9: - 3: 12545 + 1: 12545 4,-22: 2: 61440 4,-21: @@ -11684,48 +11718,48 @@ entities: 8,-21: 2: 4352 17,-12: - 3: 53248 + 1: 53248 2: 11980 17,-11: - 3: 40129 + 1: 40129 2: 24588 17,-10: 2: 199 17,-13: 2: 17476 18,-12: - 3: 61426 + 1: 61426 2: 4096 18,-11: - 3: 30591 + 1: 30591 18,-10: 2: 112 18,-13: 2: 51336 19,-12: - 3: 65520 + 1: 65520 19,-11: - 3: 32766 + 1: 32766 2: 32768 19,-13: 2: 4096 19,-10: - 3: 2 + 1: 2 20,-12: - 3: 4352 + 1: 4352 2: 8940 20,-11: - 3: 32784 + 1: 32784 2: 14790 11,-23: - 3: 49152 + 1: 49152 11,-22: - 3: 34956 + 1: 34956 2: 1088 12,-23: - 3: 4096 + 1: 4096 12,-22: - 3: 273 + 1: 273 -4,-22: 2: 28672 -5,-22: @@ -11754,7 +11788,7 @@ entities: 2: 127 -14,7: 2: 61986 - 3: 85 + 1: 85 -3,9: 2: 18 -16,2: @@ -11769,63 +11803,63 @@ entities: 2: 65315 -15,2: 2: 61713 - 3: 2048 + 1: 2048 -15,3: 2: 61713 - 3: 2056 + 1: 2056 -15,4: 2: 61713 - 3: 2056 + 1: 2056 -14,1: 2: 65280 -14,2: - 3: 36608 + 1: 36608 2: 28672 -14,3: - 3: 36623 + 1: 36623 2: 28672 -14,4: - 3: 36623 + 1: 36623 2: 28672 1,-22: 2: 28672 1,-21: 2: 3196 24,-10: - 3: 4096 + 1: 4096 23,-10: 2: 52851 - 3: 12288 + 1: 12288 -16,5: 2: 52364 -16,6: 2: 34956 -15,5: 2: 46353 - 3: 16392 + 1: 16392 -15,6: 2: 4373 -14,5: - 3: 8207 + 1: 8207 2: 53760 -14,6: - 3: 21872 + 1: 21872 2: 8706 -13,6: - 3: 21872 + 1: 21872 2: 8706 20,-13: 2: 12850 20,-10: 2: 35879 - 3: 8 + 1: 8 21,-12: 2: 52851 21,-11: 2: 264 - 3: 4096 + 1: 4096 21,-10: - 3: 1 + 1: 1 2: 29124 22,-12: 2: 4096 @@ -11836,32 +11870,32 @@ entities: 23,-11: 2: 4096 15,-21: - 3: 2048 + 1: 2048 16,-21: - 3: 48058 + 1: 48058 17,-16: 2: 1 - 3: 65534 + 1: 65534 17,-15: - 3: 34021 + 1: 34021 2: 25360 17,-17: - 3: 65505 + 1: 65505 17,-14: 2: 17612 18,-16: - 3: 30583 + 1: 30583 18,-15: - 3: 41968 + 1: 41968 2: 20480 18,-14: 2: 35226 18,-17: - 3: 30578 + 1: 30578 19,-16: 2: 4352 19,-15: - 3: 16 + 1: 16 0: 4096 2: 25088 19,-14: @@ -11869,39 +11903,39 @@ entities: 20,-14: 2: 12816 17,-20: - 3: 49037 + 1: 49037 17,-18: 2: 28464 - 3: 6 + 1: 6 17,-21: - 3: 54545 + 1: 54545 17,-19: - 3: 8418 + 1: 8418 2: 52736 18,-20: - 3: 30513 + 1: 30513 18,-19: - 3: 56784 + 1: 56784 18,-18: 2: 1999 - 3: 28672 + 1: 28672 19,-19: - 3: 4352 + 1: 4352 19,-18: 2: 4097 19,-17: 2: 256 16,-22: - 3: 32768 + 1: 32768 17,-22: - 3: 4096 + 1: 4096 20,-3: 2: 60544 21,-3: 2: 256 - 3: 14 + 1: 14 22,-3: - 3: 1 + 1: 1 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11919,10 +11953,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -11949,10 +11983,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 235 moles: - - 0 - - 0 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -12102,6 +12136,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 212 + - uid: 10092 + components: + - type: Transform + parent: 10091 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 10091 - uid: 14387 components: - type: Transform @@ -12185,6 +12226,26 @@ entities: - 1563 - 15143 - 17575 + - uid: 81 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 2074 + - 2146 + - 15394 + - 15393 + - uid: 409 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 14078 + - 14080 - uid: 708 components: - type: Transform @@ -12372,6 +12433,12 @@ entities: - 19001 - 14382 - 14368 + - uid: 9652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,7.5 + parent: 2 - uid: 12728 components: - type: Transform @@ -12685,7 +12752,7 @@ entities: devices: - 1800 - 2413 - - 13794 + - 2082 - 15397 - 15398 - 15395 @@ -12697,10 +12764,8 @@ entities: parent: 2 - type: DeviceList devices: - - 2074 - - 2146 - - 15394 - - 15393 + - 1556 + - 1139 - uid: 13796 components: - type: Transform @@ -12749,6 +12814,8 @@ entities: - type: DeviceList devices: - 13804 + - 1640 + - 1559 - uid: 13806 components: - type: Transform @@ -12854,15 +12921,6 @@ entities: devices: - 14057 - 14058 - - uid: 14082 - components: - - type: Transform - pos: 37.5,4.5 - parent: 2 - - type: DeviceList - devices: - - 14078 - - 14080 - uid: 14085 components: - type: Transform @@ -12941,8 +12999,6 @@ entities: devices: - 14709 - 14671 - - 15330 - - 15345 - uid: 14765 components: - type: Transform @@ -13167,7 +13223,6 @@ entities: parent: 2 - type: DeviceList devices: - - 15345 - 15325 - 15326 - 15327 @@ -13243,10 +13298,9 @@ entities: - 14710 - 14712 - 14711 - - 19004 + - 8854 - 19003 - 15574 - - 15330 - 15325 - 15326 - 15327 @@ -13387,7 +13441,7 @@ entities: - 19006 - 15672 - 15574 - - 19004 + - 8854 - 19003 - 15302 - 15323 @@ -13494,10 +13548,10 @@ entities: - type: Transform pos: 19.5,-8.5 parent: 2 - - uid: 8663 + - uid: 7239 components: - type: Transform - pos: 37.5,6.5 + pos: 35.5,7.5 parent: 2 - uid: 10702 components: @@ -13843,11 +13897,6 @@ entities: - type: Transform pos: 14.5,-20.5 parent: 2 - - uid: 628 - components: - - type: Transform - pos: 36.5,9.5 - parent: 2 - uid: 629 components: - type: Transform @@ -13928,6 +13977,11 @@ entities: - type: Transform pos: -19.5,14.5 parent: 2 + - uid: 16022 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 - uid: 17009 components: - type: Transform @@ -14032,6 +14086,12 @@ entities: linkedPorts: 9150: - DoorStatus: DoorBolt + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,12.5 + parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 1479 @@ -14658,11 +14718,11 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 17853 + - uid: 20672 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,12.5 + pos: -36.5,12.5 parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: @@ -15369,11 +15429,6 @@ entities: - type: Transform pos: 20.5,-43.5 parent: 2 - - uid: 8660 - components: - - type: Transform - pos: 34.5,9.5 - parent: 2 - uid: 9657 components: - type: Transform @@ -15414,12 +15469,17 @@ entities: - type: Transform pos: -19.5,24.5 parent: 2 -- proto: AirlockMaintDetectiveLocked - entities: - - uid: 7281 + - uid: 18979 components: - type: Transform - pos: 36.5,4.5 + pos: 34.5,6.5 + parent: 2 +- proto: AirlockMaintDetectiveLocked + entities: + - uid: 7373 + components: + - type: Transform + pos: 36.5,5.5 parent: 2 - proto: AirlockMaintEngiLocked entities: @@ -15435,11 +15495,11 @@ entities: parent: 2 - proto: AirlockMaintGlassLocked entities: - - uid: 8668 + - uid: 11447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,7.5 + rot: 1.5707963267948966 rad + pos: 41.5,7.5 parent: 2 - uid: 15572 components: @@ -16090,6 +16150,14 @@ entities: - type: DeviceNetwork deviceLists: - 708 + - uid: 2082 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 - uid: 2397 components: - type: Transform @@ -16398,14 +16466,6 @@ entities: - type: DeviceNetwork deviceLists: - 15422 - - uid: 13794 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - uid: 13797 components: - type: Transform @@ -17123,6 +17183,8 @@ entities: parent: 2 - uid: 8638 components: + - type: MetaData + name: Maints Bar APC - type: Transform rot: 3.141592653589793 rad pos: 44.5,7.5 @@ -17498,7 +17560,7 @@ entities: - uid: 5149 components: - type: Transform - pos: 12.437603,-10.637604 + pos: 11.251795,-11.754389 parent: 2 - uid: 16601 components: @@ -17588,6 +17650,11 @@ entities: occludes: True ents: - 5612 + - uid: 7372 + components: + - type: Transform + pos: 37.70018,2.7332516 + parent: 2 - uid: 8556 components: - type: Transform @@ -17617,36 +17684,11 @@ entities: parent: 2 - proto: AsteroidRock entities: - - uid: 371 - components: - - type: Transform - pos: 27.5,15.5 - parent: 2 - uid: 506 components: - type: Transform pos: 26.5,15.5 parent: 2 - - uid: 556 - components: - - type: Transform - pos: 27.5,14.5 - parent: 2 - - uid: 580 - components: - - type: Transform - pos: 38.5,11.5 - parent: 2 - - uid: 593 - components: - - type: Transform - pos: 38.5,12.5 - parent: 2 - - uid: 597 - components: - - type: Transform - pos: 37.5,12.5 - parent: 2 - uid: 651 components: - type: Transform @@ -17667,26 +17709,11 @@ entities: - type: Transform pos: 11.5,-0.5 parent: 2 - - uid: 762 - components: - - type: Transform - pos: 37.5,11.5 - parent: 2 - uid: 773 components: - type: Transform pos: 6.5,7.5 parent: 2 - - uid: 783 - components: - - type: Transform - pos: 36.5,11.5 - parent: 2 - - uid: 791 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 - uid: 830 components: - type: Transform @@ -17782,10 +17809,15 @@ entities: - type: Transform pos: 11.5,0.5 parent: 2 - - uid: 3866 + - uid: 2273 components: - type: Transform - pos: 21.5,17.5 + pos: 18.5,18.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 18.5,17.5 parent: 2 - uid: 3869 components: @@ -17797,11 +17829,6 @@ entities: - type: Transform pos: 28.5,16.5 parent: 2 - - uid: 5814 - components: - - type: Transform - pos: 23.5,16.5 - parent: 2 - uid: 5846 components: - type: Transform @@ -17817,11 +17844,6 @@ entities: - type: Transform pos: 27.5,16.5 parent: 2 - - uid: 5898 - components: - - type: Transform - pos: 25.5,16.5 - parent: 2 - uid: 7272 components: - type: Transform @@ -17837,11 +17859,6 @@ entities: - type: Transform pos: 24.5,17.5 parent: 2 - - uid: 7634 - components: - - type: Transform - pos: 36.5,15.5 - parent: 2 - uid: 7635 components: - type: Transform @@ -17852,56 +17869,11 @@ entities: - type: Transform pos: 38.5,14.5 parent: 2 - - uid: 7637 - components: - - type: Transform - pos: 38.5,13.5 - parent: 2 - - uid: 7638 - components: - - type: Transform - pos: 39.5,13.5 - parent: 2 - - uid: 7639 - components: - - type: Transform - pos: 40.5,13.5 - parent: 2 - - uid: 7640 - components: - - type: Transform - pos: 40.5,12.5 - parent: 2 - - uid: 7641 - components: - - type: Transform - pos: 39.5,12.5 - parent: 2 - - uid: 7642 - components: - - type: Transform - pos: 39.5,11.5 - parent: 2 - - uid: 7643 - components: - - type: Transform - pos: 40.5,11.5 - parent: 2 - - uid: 7644 - components: - - type: Transform - pos: 36.5,13.5 - parent: 2 - uid: 7645 components: - type: Transform pos: 28.5,15.5 parent: 2 - - uid: 7661 - components: - - type: Transform - pos: 29.5,21.5 - parent: 2 - uid: 17562 components: - type: Transform @@ -17917,8 +17889,88 @@ entities: - type: Transform pos: 23.5,17.5 parent: 2 + - uid: 18201 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 20637 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 20646 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 20647 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 20649 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 +- proto: AsteroidRockArtifactFragment + entities: + - uid: 334 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 +- proto: AsteroidRockMining + entities: + - uid: 105 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 20639 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 20644 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 20645 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 20648 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 - proto: AtmosDeviceFanDirectional entities: + - uid: 783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,12.5 + parent: 2 - uid: 1033 components: - type: Transform @@ -18045,12 +18097,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,45.5 parent: 2 - - uid: 20390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,12.5 - parent: 2 - uid: 20391 components: - type: Transform @@ -18149,6 +18195,11 @@ entities: - type: Transform pos: 12.5,-2.5 parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 - uid: 1171 components: - type: Transform @@ -18184,6 +18235,11 @@ entities: - type: Transform pos: 44.5,-72.5 parent: 2 + - uid: 2129 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 - uid: 2140 components: - type: Transform @@ -18464,11 +18520,6 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 7701 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 2 - uid: 7702 components: - type: Transform @@ -18624,16 +18675,6 @@ entities: - type: Transform pos: 24.5,16.5 parent: 2 - - uid: 7787 - components: - - type: Transform - pos: 28.5,14.5 - parent: 2 - - uid: 7788 - components: - - type: Transform - pos: 29.5,14.5 - parent: 2 - uid: 7789 components: - type: Transform @@ -18649,11 +18690,6 @@ entities: - type: Transform pos: 36.5,14.5 parent: 2 - - uid: 7795 - components: - - type: Transform - pos: 36.5,12.5 - parent: 2 - uid: 7803 components: - type: Transform @@ -19689,6 +19725,11 @@ entities: - type: Transform pos: 57.5,8.5 parent: 2 + - uid: 17651 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 - uid: 17717 components: - type: Transform @@ -19749,6 +19790,11 @@ entities: - type: Transform pos: 82.5,-24.5 parent: 2 + - uid: 17854 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 - uid: 17895 components: - type: Transform @@ -23084,6 +23130,51 @@ entities: - type: Transform pos: 89.5,-20.5 parent: 2 + - uid: 20638 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 20650 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 20651 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 20652 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 20686 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 20687 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - uid: 20690 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 20691 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 20692 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 7764 @@ -23216,10 +23307,10 @@ entities: parent: 2 - proto: BannerRevolution entities: - - uid: 15906 + - uid: 1127 components: - type: Transform - pos: 13.5,-9.5 + pos: 12.5,-9.5 parent: 2 - proto: BannerSyndicate entities: @@ -23247,11 +23338,6 @@ entities: - type: Transform pos: 42.5,-27.5 parent: 2 - - uid: 9119 - components: - - type: Transform - pos: 42.5,9.5 - parent: 2 - uid: 10056 components: - type: Transform @@ -23280,6 +23366,11 @@ entities: - type: Transform pos: 11.5,-14.5 parent: 2 + - uid: 20702 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 - proto: BarricadeDirectional entities: - uid: 12651 @@ -23351,7 +23442,7 @@ entities: - uid: 18977 components: - type: Transform - pos: -29.651485,18.051697 + pos: -25.650852,22.879078 parent: 2 - uid: 19019 components: @@ -23980,7 +24071,7 @@ entities: - uid: 7384 components: - type: Transform - pos: 45.601032,10.574418 + pos: 45.13355,10.602526 parent: 2 - proto: BorgCharger entities: @@ -24090,7 +24181,7 @@ entities: - uid: 6202 components: - type: Transform - pos: -32.94399,-57.333797 + pos: -33.211655,-57.315544 parent: 2 - uid: 17330 components: @@ -24126,7 +24217,7 @@ entities: - uid: 6937 components: - type: Transform - pos: 29.430147,11.68611 + pos: 28.624569,10.485644 parent: 2 - proto: BoxFolderBlue entities: @@ -24437,21 +24528,11 @@ entities: parent: 2 - proto: BriefcaseBrownFilled entities: - - uid: 3551 - components: - - type: Transform - pos: 29.38846,12.832739 - parent: 2 - uid: 6138 components: - type: Transform pos: 45.45511,-32.147636 parent: 2 - - uid: 6948 - components: - - type: Transform - pos: 29.628162,12.634685 - parent: 2 - uid: 10150 components: - type: Transform @@ -25439,11 +25520,6 @@ entities: - type: Transform pos: 37.5,-14.5 parent: 2 - - uid: 1094 - components: - - type: Transform - pos: -31.5,16.5 - parent: 2 - uid: 1172 components: - type: Transform @@ -25454,11 +25530,6 @@ entities: - type: Transform pos: -23.5,7.5 parent: 2 - - uid: 1215 - components: - - type: Transform - pos: -31.5,15.5 - parent: 2 - uid: 1238 components: - type: Transform @@ -25474,11 +25545,6 @@ entities: - type: Transform pos: -11.5,-55.5 parent: 2 - - uid: 1257 - components: - - type: Transform - pos: 40.5,5.5 - parent: 2 - uid: 1262 components: - type: Transform @@ -25489,21 +25555,11 @@ entities: - type: Transform pos: 43.5,2.5 parent: 2 - - uid: 1271 - components: - - type: Transform - pos: 41.5,4.5 - parent: 2 - uid: 1275 components: - type: Transform pos: 41.5,2.5 parent: 2 - - uid: 1279 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - uid: 1280 components: - type: Transform @@ -25862,7 +25918,7 @@ entities: - uid: 1820 components: - type: Transform - pos: -31.5,14.5 + pos: -33.5,17.5 parent: 2 - uid: 1822 components: @@ -25949,6 +26005,16 @@ entities: - type: Transform pos: -5.5,-50.5 parent: 2 + - uid: 2105 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 - uid: 2110 components: - type: Transform @@ -25974,6 +26040,11 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 2 + - uid: 2161 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 - uid: 2192 components: - type: Transform @@ -26694,11 +26765,6 @@ entities: - type: Transform pos: 28.5,-10.5 parent: 2 - - uid: 3084 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 2 - uid: 3104 components: - type: Transform @@ -26754,6 +26820,11 @@ entities: - type: Transform pos: -9.5,9.5 parent: 2 + - uid: 3551 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 - uid: 3594 components: - type: Transform @@ -27004,6 +27075,11 @@ entities: - type: Transform pos: -30.5,-21.5 parent: 2 + - uid: 5041 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 - uid: 5044 components: - type: Transform @@ -27039,6 +27115,11 @@ entities: - type: Transform pos: 8.5,-56.5 parent: 2 + - uid: 5278 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 - uid: 5320 components: - type: Transform @@ -27214,6 +27295,11 @@ entities: - type: Transform pos: 57.5,-50.5 parent: 2 + - uid: 5720 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 - uid: 5726 components: - type: Transform @@ -27259,11 +27345,6 @@ entities: - type: Transform pos: -6.5,22.5 parent: 2 - - uid: 6133 - components: - - type: Transform - pos: -31.5,19.5 - parent: 2 - uid: 6165 components: - type: Transform @@ -27299,6 +27380,21 @@ entities: - type: Transform pos: -34.5,9.5 parent: 2 + - uid: 6501 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 - uid: 6565 components: - type: Transform @@ -27419,16 +27515,6 @@ entities: - type: Transform pos: -51.5,-29.5 parent: 2 - - uid: 6688 - components: - - type: Transform - pos: -31.5,13.5 - parent: 2 - - uid: 6707 - components: - - type: Transform - pos: -31.5,18.5 - parent: 2 - uid: 6723 components: - type: Transform @@ -27449,6 +27535,11 @@ entities: - type: Transform pos: -6.5,23.5 parent: 2 + - uid: 6889 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 - uid: 6914 components: - type: Transform @@ -27464,16 +27555,6 @@ entities: - type: Transform pos: -30.5,24.5 parent: 2 - - uid: 6956 - components: - - type: Transform - pos: -31.5,17.5 - parent: 2 - - uid: 6975 - components: - - type: Transform - pos: 35.5,12.5 - parent: 2 - uid: 7029 components: - type: Transform @@ -27609,11 +27690,36 @@ entities: - type: Transform pos: 30.5,-64.5 parent: 2 + - uid: 7287 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 - uid: 7290 components: - type: Transform pos: 31.5,-60.5 parent: 2 + - uid: 7291 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 - uid: 7408 components: - type: Transform @@ -27639,6 +27745,11 @@ entities: - type: Transform pos: 14.5,-56.5 parent: 2 + - uid: 7625 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 - uid: 7628 components: - type: Transform @@ -28244,11 +28355,6 @@ entities: - type: Transform pos: 30.5,15.5 parent: 2 - - uid: 8591 - components: - - type: Transform - pos: 30.5,14.5 - parent: 2 - uid: 8592 components: - type: Transform @@ -28259,11 +28365,6 @@ entities: - type: Transform pos: 31.5,15.5 parent: 2 - - uid: 8594 - components: - - type: Transform - pos: 29.5,13.5 - parent: 2 - uid: 8595 components: - type: Transform @@ -28322,28 +28423,13 @@ entities: - uid: 8626 components: - type: Transform - pos: 35.5,9.5 + pos: 34.5,6.5 parent: 2 - uid: 8627 components: - type: Transform pos: 36.5,9.5 parent: 2 - - uid: 8628 - components: - - type: Transform - pos: 37.5,9.5 - parent: 2 - - uid: 8632 - components: - - type: Transform - pos: 33.5,9.5 - parent: 2 - - uid: 8633 - components: - - type: Transform - pos: 34.5,9.5 - parent: 2 - uid: 8634 components: - type: Transform @@ -28359,6 +28445,16 @@ entities: - type: Transform pos: -20.5,-14.5 parent: 2 + - uid: 8646 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 - uid: 8686 components: - type: Transform @@ -28384,6 +28480,11 @@ entities: - type: Transform pos: 35.5,31.5 parent: 2 + - uid: 8715 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 - uid: 8765 components: - type: Transform @@ -28394,6 +28495,11 @@ entities: - type: Transform pos: -30.5,-10.5 parent: 2 + - uid: 8855 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 - uid: 8885 components: - type: Transform @@ -28594,6 +28700,26 @@ entities: - type: Transform pos: -30.5,-11.5 parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 - uid: 9188 components: - type: Transform @@ -28639,11 +28765,6 @@ entities: - type: Transform pos: -20.5,-13.5 parent: 2 - - uid: 9563 - components: - - type: Transform - pos: 35.5,11.5 - parent: 2 - uid: 9574 components: - type: Transform @@ -32954,11 +33075,6 @@ entities: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 14423 - components: - - type: Transform - pos: -5.5,-52.5 - parent: 2 - uid: 14424 components: - type: Transform @@ -33159,11 +33275,6 @@ entities: - type: Transform pos: -41.5,-37.5 parent: 2 - - uid: 15336 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 2 - uid: 15350 components: - type: Transform @@ -35229,6 +35340,11 @@ entities: - type: Transform pos: 48.5,8.5 parent: 2 + - uid: 18090 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 - uid: 18193 components: - type: Transform @@ -35749,6 +35865,11 @@ entities: - type: Transform pos: 45.5,-52.5 parent: 2 + - uid: 19605 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 - uid: 19880 components: - type: Transform @@ -35834,6 +35955,16 @@ entities: - type: Transform pos: -7.5,13.5 parent: 2 + - uid: 20388 + components: + - type: Transform + pos: -6.5,-53.5 + parent: 2 + - uid: 20389 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 - uid: 20426 components: - type: Transform @@ -36159,6 +36290,11 @@ entities: - type: Transform pos: -39.5,5.5 parent: 2 + - uid: 20619 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 2 - uid: 20621 components: - type: Transform @@ -36179,6 +36315,106 @@ entities: - type: Transform pos: -36.5,9.5 parent: 2 + - uid: 20631 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 20632 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 20633 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 20640 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 20641 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 20642 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 20643 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 20668 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 20669 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 20683 + components: + - type: Transform + pos: -32.5,17.5 + parent: 2 + - uid: 20684 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 20693 + components: + - type: Transform + pos: -27.5,-57.5 + parent: 2 + - uid: 20694 + components: + - type: Transform + pos: -27.5,-58.5 + parent: 2 + - uid: 20695 + components: + - type: Transform + pos: -28.5,-58.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 + - uid: 20699 + components: + - type: Transform + pos: -45.5,-56.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 2 + - uid: 20701 + components: + - type: Transform + pos: -45.5,-55.5 + parent: 2 - proto: CableApcStack entities: - uid: 1898 @@ -36224,7 +36460,7 @@ entities: - uid: 18969 components: - type: Transform - pos: -33.357204,4.6052375 + pos: -33.466095,4.7338076 parent: 2 - proto: CableApcStack10 entities: @@ -36322,6 +36558,11 @@ entities: - type: Transform pos: -8.5,-22.5 parent: 2 + - uid: 324 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 - uid: 347 components: - type: Transform @@ -37852,6 +38093,16 @@ entities: - type: Transform pos: -8.5,-50.5 parent: 2 + - uid: 5200 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 - uid: 5358 components: - type: Transform @@ -37957,6 +38208,21 @@ entities: - type: Transform pos: -62.5,-59.5 parent: 2 + - uid: 6052 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 - uid: 6084 components: - type: Transform @@ -37972,6 +38238,11 @@ entities: - type: Transform pos: -3.5,-8.5 parent: 2 + - uid: 6107 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 - uid: 6113 components: - type: Transform @@ -38032,6 +38303,11 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 2 + - uid: 6504 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 - uid: 6548 components: - type: Transform @@ -38142,6 +38418,11 @@ entities: - type: Transform pos: -4.5,-9.5 parent: 2 + - uid: 6707 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 - uid: 6751 components: - type: Transform @@ -38437,11 +38718,31 @@ entities: - type: Transform pos: 63.5,4.5 parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 - uid: 8709 components: - type: Transform pos: -18.5,16.5 parent: 2 + - uid: 8712 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 - uid: 8781 components: - type: Transform @@ -38627,81 +38928,11 @@ entities: - type: Transform pos: 41.5,5.5 parent: 2 - - uid: 8850 - components: - - type: Transform - pos: 40.5,5.5 - parent: 2 - - uid: 8851 - components: - - type: Transform - pos: 39.5,5.5 - parent: 2 - - uid: 8852 - components: - - type: Transform - pos: 38.5,5.5 - parent: 2 - - uid: 8853 - components: - - type: Transform - pos: 37.5,5.5 - parent: 2 - - uid: 8854 - components: - - type: Transform - pos: 36.5,5.5 - parent: 2 - - uid: 8855 - components: - - type: Transform - pos: 35.5,5.5 - parent: 2 - - uid: 8856 - components: - - type: Transform - pos: 35.5,6.5 - parent: 2 - - uid: 8857 - components: - - type: Transform - pos: 35.5,7.5 - parent: 2 - - uid: 8858 - components: - - type: Transform - pos: 35.5,8.5 - parent: 2 - - uid: 8859 - components: - - type: Transform - pos: 35.5,9.5 - parent: 2 - uid: 8860 components: - type: Transform pos: 36.5,9.5 parent: 2 - - uid: 8861 - components: - - type: Transform - pos: 37.5,9.5 - parent: 2 - - uid: 8862 - components: - - type: Transform - pos: 38.5,9.5 - parent: 2 - - uid: 8863 - components: - - type: Transform - pos: 34.5,9.5 - parent: 2 - - uid: 8864 - components: - - type: Transform - pos: 33.5,9.5 - parent: 2 - uid: 8875 components: - type: Transform @@ -38957,6 +39188,11 @@ entities: - type: Transform pos: 65.5,-0.5 parent: 2 + - uid: 9121 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 - uid: 9161 components: - type: Transform @@ -39342,21 +39578,6 @@ entities: - type: Transform pos: -19.5,-57.5 parent: 2 - - uid: 10090 - components: - - type: Transform - pos: 32.5,9.5 - parent: 2 - - uid: 10091 - components: - - type: Transform - pos: 32.5,8.5 - parent: 2 - - uid: 10092 - components: - - type: Transform - pos: 32.5,7.5 - parent: 2 - uid: 10093 components: - type: Transform @@ -41391,6 +41612,16 @@ entities: - type: Transform pos: -25.5,14.5 parent: 2 + - uid: 681 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 - uid: 723 components: - type: Transform @@ -41461,6 +41692,11 @@ entities: - type: Transform pos: 39.5,-14.5 parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 - uid: 1240 components: - type: Transform @@ -41741,26 +41977,11 @@ entities: - type: Transform pos: -25.5,-22.5 parent: 2 - - uid: 2105 - components: - - type: Transform - pos: 41.5,3.5 - parent: 2 - - uid: 2106 - components: - - type: Transform - pos: 41.5,4.5 - parent: 2 - uid: 2116 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 2129 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - uid: 2144 components: - type: Transform @@ -42181,6 +42402,11 @@ entities: - type: Transform pos: -20.5,20.5 parent: 2 + - uid: 3340 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 - uid: 3357 components: - type: Transform @@ -42436,6 +42662,11 @@ entities: - type: Transform pos: -2.5,24.5 parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 - uid: 5914 components: - type: Transform @@ -42446,6 +42677,11 @@ entities: - type: Transform pos: 2.5,11.5 parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 - uid: 6183 components: - type: Transform @@ -42466,6 +42702,11 @@ entities: - type: Transform pos: 40.5,-31.5 parent: 2 + - uid: 6244 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 - uid: 6252 components: - type: Transform @@ -42491,16 +42732,6 @@ entities: - type: Transform pos: -18.5,16.5 parent: 2 - - uid: 6503 - components: - - type: Transform - pos: 38.5,9.5 - parent: 2 - - uid: 6504 - components: - - type: Transform - pos: 37.5,9.5 - parent: 2 - uid: 6560 components: - type: Transform @@ -42556,6 +42787,11 @@ entities: - type: Transform pos: 25.5,-12.5 parent: 2 + - uid: 6688 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 - uid: 6702 components: - type: Transform @@ -42571,6 +42807,16 @@ entities: - type: Transform pos: 35.5,-40.5 parent: 2 + - uid: 6990 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 - uid: 7031 components: - type: Transform @@ -42611,6 +42857,11 @@ entities: - type: Transform pos: -9.5,-16.5 parent: 2 + - uid: 7194 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 - uid: 7234 components: - type: Transform @@ -42676,26 +42927,16 @@ entities: - type: Transform pos: 27.5,-51.5 parent: 2 + - uid: 7502 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 - uid: 7826 components: - type: Transform pos: 36.5,9.5 parent: 2 - - uid: 7829 - components: - - type: Transform - pos: 35.5,9.5 - parent: 2 - - uid: 7830 - components: - - type: Transform - pos: 34.5,9.5 - parent: 2 - - uid: 7831 - components: - - type: Transform - pos: 33.5,9.5 - parent: 2 - uid: 7849 components: - type: Transform @@ -42906,16 +43147,6 @@ entities: - type: Transform pos: 3.5,11.5 parent: 2 - - uid: 8639 - components: - - type: Transform - pos: 41.5,9.5 - parent: 2 - - uid: 8640 - components: - - type: Transform - pos: 42.5,9.5 - parent: 2 - uid: 8642 components: - type: Transform @@ -42931,70 +43162,25 @@ entities: - type: Transform pos: 44.5,7.5 parent: 2 - - uid: 8645 - components: - - type: Transform - pos: 40.5,9.5 - parent: 2 - - uid: 8646 - components: - - type: Transform - pos: 40.5,8.5 - parent: 2 - - uid: 8647 - components: - - type: Transform - pos: 40.5,7.5 - parent: 2 - - uid: 8648 - components: - - type: Transform - pos: 40.5,6.5 - parent: 2 - - uid: 8649 - components: - - type: Transform - pos: 39.5,5.5 - parent: 2 - - uid: 8650 - components: - - type: Transform - pos: 40.5,5.5 - parent: 2 - - uid: 8651 - components: - - type: Transform - pos: 36.5,5.5 - parent: 2 - uid: 8653 components: - type: Transform - pos: 35.5,6.5 - parent: 2 - - uid: 8654 - components: - - type: Transform - pos: 35.5,7.5 + pos: 41.5,7.5 parent: 2 - uid: 8655 components: - type: Transform - pos: 35.5,8.5 + pos: 36.5,7.5 parent: 2 - - uid: 8664 + - uid: 8661 components: - type: Transform - pos: 35.5,5.5 + pos: 43.5,8.5 parent: 2 - - uid: 8665 + - uid: 8674 components: - type: Transform - pos: 37.5,5.5 - parent: 2 - - uid: 8666 - components: - - type: Transform - pos: 38.5,5.5 + pos: 36.5,10.5 parent: 2 - uid: 8683 components: @@ -43521,6 +43707,11 @@ entities: - type: Transform pos: 30.5,6.5 parent: 2 + - uid: 10142 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 - uid: 10183 components: - type: Transform @@ -44486,6 +44677,11 @@ entities: - type: Transform pos: -8.5,-35.5 parent: 2 + - uid: 11686 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 - uid: 11687 components: - type: Transform @@ -45946,6 +46142,11 @@ entities: - type: Transform pos: 38.5,-19.5 parent: 2 + - uid: 15692 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 - uid: 15880 components: - type: Transform @@ -46646,6 +46847,11 @@ entities: - type: Transform pos: -18.5,6.5 parent: 2 + - uid: 19973 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 - uid: 19992 components: - type: Transform @@ -47850,15 +48056,27 @@ entities: - type: Transform pos: 28.5,12.5 parent: 2 - - uid: 6169 + - uid: 7304 components: - type: Transform - pos: 28.5,11.5 + rot: 1.5707963267948966 rad + pos: 37.5,3.5 parent: 2 - - uid: 6244 + - uid: 7339 components: - type: Transform - pos: 29.5,11.5 + rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + pos: 29.5,13.5 parent: 2 - uid: 15859 components: @@ -48172,17 +48390,6 @@ entities: - type: Transform pos: 44.5,-30.5 parent: 2 - - uid: 294 - components: - - type: Transform - pos: 37.5,8.5 - parent: 2 - - uid: 397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,15.5 - parent: 2 - uid: 400 components: - type: Transform @@ -48195,12 +48402,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 - - uid: 409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,16.5 - parent: 2 - uid: 464 components: - type: Transform @@ -48609,6 +48810,11 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 + - uid: 1279 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 - uid: 1366 components: - type: Transform @@ -48663,12 +48869,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 - - uid: 1383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,18.5 - parent: 2 - uid: 1387 components: - type: Transform @@ -48679,7 +48879,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,19.5 + pos: 38.5,6.5 parent: 2 - uid: 1398 components: @@ -48693,12 +48893,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,22.5 parent: 2 - - uid: 1410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,17.5 - parent: 2 - uid: 1444 components: - type: Transform @@ -48743,6 +48937,12 @@ entities: - type: Transform pos: 0.5,-27.5 parent: 2 + - uid: 1732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,6.5 + parent: 2 - uid: 1733 components: - type: Transform @@ -49413,6 +49613,12 @@ entities: - type: Transform pos: 23.5,-43.5 parent: 2 + - uid: 4189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,6.5 + parent: 2 - uid: 4215 components: - type: Transform @@ -49507,6 +49713,12 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-33.5 parent: 2 + - uid: 4451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,7.5 + parent: 2 - uid: 4483 components: - type: Transform @@ -49567,11 +49779,23 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-36.5 parent: 2 + - uid: 4539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,11.5 + parent: 2 - uid: 4540 components: - type: Transform pos: 26.5,-14.5 parent: 2 + - uid: 4557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,9.5 + parent: 2 - uid: 4578 components: - type: Transform @@ -49610,6 +49834,12 @@ entities: - type: Transform pos: 31.5,-55.5 parent: 2 + - uid: 4918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,11.5 + parent: 2 - uid: 5043 components: - type: Transform @@ -49785,6 +50015,12 @@ entities: - type: Transform pos: 22.5,11.5 parent: 2 + - uid: 6133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,3.5 + parent: 2 - uid: 6151 components: - type: Transform @@ -49935,10 +50171,17 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,19.5 parent: 2 - - uid: 6995 + - uid: 6948 components: - type: Transform - pos: 13.5,-9.5 + rot: 3.141592653589793 rad + pos: 36.5,8.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,6.5 parent: 2 - uid: 7006 components: @@ -50004,11 +50247,23 @@ entities: - type: Transform pos: -18.5,15.5 parent: 2 + - uid: 7279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,6.5 + parent: 2 - uid: 7409 components: - type: Transform pos: 12.5,-71.5 parent: 2 + - uid: 7413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,5.5 + parent: 2 - uid: 7445 components: - type: Transform @@ -50371,48 +50626,6 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-52.5 parent: 2 - - uid: 8652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,6.5 - parent: 2 - - uid: 8661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,8.5 - parent: 2 - - uid: 8662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,7.5 - parent: 2 - - uid: 8670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,5.5 - parent: 2 - - uid: 8671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,5.5 - parent: 2 - - uid: 8672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,5.5 - parent: 2 - - uid: 8673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,5.5 - parent: 2 - uid: 8680 components: - type: Transform @@ -50445,16 +50658,6 @@ entities: - type: Transform pos: 42.5,2.5 parent: 2 - - uid: 8785 - components: - - type: Transform - pos: 41.5,2.5 - parent: 2 - - uid: 8786 - components: - - type: Transform - pos: 41.5,3.5 - parent: 2 - uid: 8788 components: - type: Transform @@ -51558,11 +51761,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,20.5 parent: 2 - - uid: 16022 - components: - - type: Transform - pos: 38.5,8.5 - parent: 2 - uid: 16107 components: - type: Transform @@ -51761,6 +51959,11 @@ entities: - type: Transform pos: -27.5,-16.5 parent: 2 + - uid: 16752 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 - uid: 17035 components: - type: Transform @@ -51831,6 +52034,11 @@ entities: - type: Transform pos: 0.5,2.5 parent: 2 + - uid: 17065 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 - uid: 17139 components: - type: Transform @@ -51888,6 +52096,11 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,2.5 parent: 2 + - uid: 17853 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 - uid: 17858 components: - type: Transform @@ -51912,11 +52125,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,9.5 parent: 2 - - uid: 17975 - components: - - type: Transform - pos: -31.5,14.5 - parent: 2 - uid: 18347 components: - type: Transform @@ -52207,6 +52415,21 @@ entities: - type: Transform pos: -32.5,-50.5 parent: 2 + - uid: 20657 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 20658 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 20659 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 - proto: CelloInstrument entities: - uid: 5831 @@ -52849,6 +53072,11 @@ entities: rot: -1.5707963267948966 rad pos: 32.62121,-76.3481 parent: 2 + - uid: 12531 + components: + - type: Transform + pos: -26.495022,23.598328 + parent: 2 - uid: 14245 components: - type: Transform @@ -52872,17 +53100,6 @@ entities: rot: 3.141592653589793 rad pos: 96.49125,-32.383053 parent: 2 - - uid: 18974 - components: - - type: Transform - pos: -30.325518,18.586231 - parent: 2 - - uid: 18975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.70738,17.747297 - parent: 2 - proto: ChairFoldingSpawnFolded entities: - uid: 18834 @@ -53051,12 +53268,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.543137,2.6380181 parent: 2 - - uid: 6907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.512018,11.710658 - parent: 2 - uid: 7532 components: - type: Transform @@ -53086,6 +53297,12 @@ entities: rot: -1.5707963267948966 rad pos: -51.489376,-41.355408 parent: 2 + - uid: 8675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.426058,10.683699 + parent: 2 - uid: 8763 components: - type: Transform @@ -53127,6 +53344,12 @@ entities: rot: 1.5707963267948966 rad pos: -15.224391,-52.759342 parent: 2 + - uid: 10090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.343678,11.580154 + parent: 2 - uid: 10193 components: - type: Transform @@ -53346,6 +53569,13 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-9.5 parent: 2 +- proto: Cigar + entities: + - uid: 18968 + components: + - type: Transform + pos: 37.63063,2.2633424 + parent: 2 - proto: CigaretteSpent entities: - uid: 707 @@ -53897,10 +54127,10 @@ entities: parent: 2 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 2248 + - uid: 1410 components: - type: Transform - pos: -25.5,21.5 + pos: 39.5,5.5 parent: 2 - uid: 2301 components: @@ -53917,16 +54147,29 @@ entities: - type: Transform pos: 42.5,-2.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 5671 components: - type: Transform pos: 31.5,-52.5 parent: 2 - - uid: 9652 - components: - - type: Transform - pos: 42.5,3.5 - parent: 2 - uid: 10707 components: - type: Transform @@ -53947,6 +54190,11 @@ entities: - type: Transform pos: 16.5,-8.5 parent: 2 + - uid: 15336 + components: + - type: Transform + pos: -26.5,19.5 + parent: 2 - uid: 18579 components: - type: Transform @@ -53998,10 +54246,10 @@ entities: - type: Transform pos: 17.5,-18.5 parent: 2 - - uid: 15851 + - uid: 9128 components: - type: Transform - pos: 38.5,8.5 + pos: 37.5,12.5 parent: 2 - uid: 17538 components: @@ -54164,6 +54412,13 @@ entities: - type: Transform pos: -34.898106,-53.323624 parent: 2 +- proto: ClothingEyesGlassesGar + entities: + - uid: 7787 + components: + - type: Transform + pos: 17.508947,18.511362 + parent: 2 - proto: ClothingEyesGlassesGarGiga entities: - uid: 1753 @@ -54242,6 +54497,13 @@ entities: - type: Transform pos: -52.470013,-41.035538 parent: 2 +- proto: ClothingHandsTacticalMaidGloves + entities: + - uid: 1108 + components: + - type: Transform + pos: 13.508534,-8.645821 + parent: 2 - proto: ClothingHeadBandBotany entities: - uid: 3798 @@ -54256,6 +54518,13 @@ entities: - type: Transform pos: -40.480824,-51.918766 parent: 2 +- proto: ClothingHeadFishCap + entities: + - uid: 1271 + components: + - type: Transform + pos: 17.569733,18.70626 + parent: 2 - proto: ClothingHeadHatAnimalCat entities: - uid: 6055 @@ -54507,6 +54776,13 @@ entities: - type: Transform pos: 47.35316,-9.274309 parent: 2 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 2059 + components: + - type: Transform + pos: 13.206302,-8.260137 + parent: 2 - proto: ClothingHeadHatWarden entities: - uid: 14570 @@ -54514,13 +54790,6 @@ entities: - type: Transform pos: -19.224272,-5.6646905 parent: 2 -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 18967 - components: - - type: Transform - pos: -33.540585,14.646874 - parent: 2 - proto: ClothingHeadHatWeldingMaskPainted entities: - uid: 8588 @@ -54845,12 +55114,17 @@ entities: - type: Transform pos: 29.480768,19.627275 parent: 2 + - uid: 20675 + components: + - type: Transform + pos: -35.53648,11.655997 + parent: 2 - proto: ClothingOuterWinterBar entities: - uid: 7386 components: - type: Transform - pos: 42.465187,11.620134 + pos: 40.502384,12.611003 parent: 2 - proto: ClothingOuterWinterChem entities: @@ -54899,6 +55173,13 @@ entities: - type: Transform pos: -3.4124844,-51.220387 parent: 2 +- proto: ClothingShoesHighheelBoots + entities: + - uid: 1257 + components: + - type: Transform + pos: 17.446417,18.37585 + parent: 2 - proto: ClothingShoeSlippersDuck entities: - uid: 11860 @@ -54934,6 +55215,13 @@ entities: - type: Transform pos: 6.623013,-41.324974 parent: 2 +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 18078 + components: + - type: Transform + pos: 13.758658,-8.364376 + parent: 2 - proto: ClothingUniformJumpskirtYellowTurtleneckDress entities: - uid: 13909 @@ -54964,12 +55252,29 @@ entities: parent: 2 - proto: Cobweb1 entities: + - uid: 7815 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 - uid: 15571 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-0.5 parent: 2 + - uid: 15851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 - uid: 17545 components: - type: Transform @@ -55180,6 +55485,12 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-46.5 parent: 2 + - uid: 8094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,7.5 + parent: 2 - uid: 8691 components: - type: Transform @@ -55360,6 +55671,11 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,-12.5 parent: 2 + - uid: 20680 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 4250 @@ -55420,11 +55736,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-54.5 parent: 2 - - uid: 7304 - components: - - type: Transform - pos: 38.5,3.5 - parent: 2 - uid: 7501 components: - type: Transform @@ -55437,6 +55748,12 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-35.5 parent: 2 + - uid: 13891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 2 - uid: 20606 components: - type: Transform @@ -55713,12 +56030,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-44.5 parent: 2 - - uid: 7303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,3.5 - parent: 2 - uid: 7593 components: - type: Transform @@ -55735,6 +56046,12 @@ entities: - type: Transform pos: 27.5,-27.5 parent: 2 + - uid: 17247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 - proto: ComputerTelevisionCircuitboard entities: - uid: 18914 @@ -56018,10 +56335,10 @@ entities: parent: 2 - proto: CrateEngineeringShuttle entities: - - uid: 3597 + - uid: 14822 components: - type: Transform - pos: -32.5,-55.5 + pos: -33.5,-55.5 parent: 2 - proto: CrateEngineeringSolar entities: @@ -56192,10 +56509,10 @@ entities: parent: 2 - proto: CrateServiceBoozeDispenser entities: - - uid: 7411 + - uid: 2764 components: - type: Transform - pos: 45.5,7.5 + pos: 39.5,11.5 parent: 2 - proto: CrateServiceBureaucracy entities: @@ -56290,6 +56607,24 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-9.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CrewMonitoringServer entities: - uid: 1255 @@ -56297,13 +56632,6 @@ entities: - type: Transform pos: 20.5,1.5 parent: 2 -- proto: Crowbar - entities: - - uid: 18079 - components: - - type: Transform - pos: 36.50174,6.5696793 - parent: 2 - proto: CrowbarYellow entities: - uid: 13864 @@ -56485,27 +56813,27 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,3.5 parent: 2 - - uid: 13469 - components: - - type: Transform - pos: 29.5,13.5 - parent: 2 - uid: 14818 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,12.5 parent: 2 - - uid: 17651 - components: - - type: Transform - pos: 28.5,13.5 - parent: 2 - uid: 17653 components: - type: Transform pos: 30.5,11.5 parent: 2 + - uid: 20654 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 20655 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 - proto: d20Dice entities: - uid: 16991 @@ -56843,7 +57171,7 @@ entities: pos: -32.5,-45.5 parent: 2 - type: NavMapBeacon - text: Psycologist + text: Psychologist - uid: 15758 components: - type: Transform @@ -57306,23 +57634,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-47.5 parent: 2 - - uid: 9134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 - parent: 2 - - uid: 9135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,5.5 - parent: 2 - - uid: 9136 - components: - - type: Transform - pos: 35.5,9.5 - parent: 2 - uid: 9892 components: - type: Transform @@ -57364,6 +57675,11 @@ entities: - type: Transform pos: 24.5,-43.5 parent: 2 + - uid: 11129 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 - uid: 11139 components: - type: Transform @@ -57633,11 +57949,6 @@ entities: - type: Transform pos: 46.5,-21.5 parent: 2 - - uid: 20336 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - uid: 20337 components: - type: Transform @@ -57775,6 +58086,11 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,11.5 parent: 2 + - uid: 11830 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 - uid: 12071 components: - type: Transform @@ -57833,12 +58149,6 @@ entities: - type: Transform pos: 45.5,-16.5 parent: 2 - - uid: 7050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,5.5 - parent: 2 - uid: 8090 components: - type: Transform @@ -57960,12 +58270,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-25.5 parent: 2 - - uid: 1732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,9.5 - parent: 2 - uid: 1928 components: - type: Transform @@ -59022,11 +59326,23 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 + - uid: 6907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 - uid: 6921 components: - type: Transform pos: 10.5,-53.5 parent: 2 + - uid: 6936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 2 - uid: 7175 components: - type: Transform @@ -59102,75 +59418,63 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-5.5 parent: 2 + - uid: 8628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 - uid: 8983 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-30.5 parent: 2 - - uid: 9121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 2 - - uid: 9122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,7.5 - parent: 2 - - uid: 9123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,6.5 - parent: 2 - - uid: 9124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,5.5 - parent: 2 - - uid: 9125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,5.5 - parent: 2 - - uid: 9126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 2 - - uid: 9127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,5.5 - parent: 2 - - uid: 9128 - components: - - type: Transform - pos: 35.5,6.5 - parent: 2 - - uid: 9129 - components: - - type: Transform - pos: 35.5,7.5 - parent: 2 - - uid: 9130 - components: - - type: Transform - pos: 35.5,8.5 - parent: 2 - - uid: 9131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,9.5 - parent: 2 - uid: 9145 components: - type: Transform @@ -60080,12 +60384,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,7.5 parent: 2 - - uid: 12255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,6.5 - parent: 2 - uid: 12256 components: - type: Transform @@ -62238,11 +62536,11 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 2 - - uid: 9120 + - uid: 8662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,8.5 + rot: 1.5707963267948966 rad + pos: 40.5,8.5 parent: 2 - uid: 9790 components: @@ -62440,11 +62738,6 @@ entities: - type: Transform pos: -1.5,16.5 parent: 2 - - uid: 3088 - components: - - type: Transform - pos: 42.5,8.5 - parent: 2 - uid: 3396 components: - type: Transform @@ -62520,6 +62813,11 @@ entities: - type: Transform pos: 18.5,-20.5 parent: 2 + - uid: 6377 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 - uid: 6474 components: - type: Transform @@ -62638,6 +62936,12 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-48.5 parent: 2 + - uid: 8660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 - uid: 12242 components: - type: Transform @@ -62650,12 +62954,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-1.5 parent: 2 - - uid: 14605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,9.5 - parent: 2 - uid: 14723 components: - type: Transform @@ -63067,7 +63365,7 @@ entities: - uid: 7297 components: - type: Transform - pos: 35.380833,1.7207147 + pos: 35.441143,3.7775984 parent: 2 - uid: 7805 components: @@ -63084,7 +63382,7 @@ entities: - uid: 7298 components: - type: Transform - pos: 35.69605,1.7648865 + pos: 35.67042,3.7359033 parent: 2 - proto: DungeonMasterCircuitBoard entities: @@ -63926,10 +64224,10 @@ entities: parent: 2 - type: FaxMachine name: Engineering - - uid: 6936 + - uid: 8716 components: - type: Transform - pos: 27.5,12.5 + pos: 27.5,13.5 parent: 2 - type: FaxMachine name: Lawyer @@ -63985,13 +64283,6 @@ entities: - type: Transform pos: -40.5,-51.5 parent: 2 -- proto: filingCabinetDrawer - entities: - - uid: 15839 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 2 - proto: filingCabinetDrawerRandom entities: - uid: 3740 @@ -64014,11 +64305,6 @@ entities: - type: Transform pos: 1.5,16.5 parent: 2 - - uid: 7287 - components: - - type: Transform - pos: 37.5,3.5 - parent: 2 - uid: 10151 components: - type: Transform @@ -64053,21 +64339,11 @@ entities: - type: Transform pos: 18.223299,13.545596 parent: 2 - - uid: 4539 - components: - - type: Transform - pos: 28.303581,12.59669 - parent: 2 - uid: 6753 components: - type: Transform pos: 18.74439,13.545596 parent: 2 - - uid: 6990 - components: - - type: Transform - pos: 28.772564,12.586266 - parent: 2 - uid: 8232 components: - type: Transform @@ -64078,6 +64354,20 @@ entities: - type: Transform pos: -42.80472,-45.390755 parent: 2 + - uid: 8664 + components: + - type: Transform + pos: 28.608572,13.505003 + parent: 2 + - type: Pullable + prevFixedRotation: True + - uid: 13259 + components: + - type: Transform + pos: 28.18472,13.505003 + parent: 2 + - type: Pullable + prevFixedRotation: True - proto: FireAlarm entities: - uid: 110 @@ -64383,20 +64673,10 @@ entities: - 15339 - 15333 - 14732 - - 15345 - 15325 - 15326 - 15327 - 15151 - - uid: 15389 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 2 - - type: DeviceList - devices: - - 15345 - - 15330 - uid: 15391 components: - type: Transform @@ -64409,7 +64689,7 @@ entities: - 15302 - 15323 - 15324 - - 19004 + - 8854 - 15574 - 15672 - 19006 @@ -64584,9 +64864,8 @@ entities: - 15326 - 15327 - 19003 - - 19004 + - 8854 - 15574 - - 15330 - proto: FireAxeCabinetFilled entities: - uid: 2521 @@ -64944,6 +65223,17 @@ entities: - type: Transform pos: 39.5,-62.5 parent: 2 + - uid: 8854 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15673 + - 19010 + - 15391 + - 17658 - uid: 9943 components: - type: Transform @@ -65959,18 +66249,6 @@ entities: - 15331 - 15388 - 19010 - - uid: 15330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15673 - - 14733 - - 15389 - - 19010 - uid: 15333 components: - type: Transform @@ -66058,18 +66336,6 @@ entities: - 2564 - 15384 - 14783 - - uid: 15345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14733 - - 15331 - - 15388 - - 15389 - uid: 15348 components: - type: Transform @@ -66152,7 +66418,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13795 + - 81 - 13796 - 3816 - uid: 15394 @@ -66163,7 +66429,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13795 + - 81 - 13796 - 3816 - uid: 15395 @@ -66403,21 +66669,6 @@ entities: - 17658 - 15673 - 19010 - - uid: 19004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 2 - - type: Door - secondsUntilStateChange: -54037.32 - state: Closing - - type: DeviceNetwork - deviceLists: - - 15391 - - 17658 - - 15673 - - 19010 - uid: 19006 components: - type: Transform @@ -66702,8 +66953,7 @@ entities: - uid: 7398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.640545,8.5968685 + pos: 39.33514,12.721781 parent: 2 - type: Stack count: 30 @@ -66722,8 +66972,7 @@ entities: - uid: 7397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.45295,8.648988 + pos: 39.61653,12.544575 parent: 2 - type: Stack count: 30 @@ -66758,11 +67007,6 @@ entities: - type: Transform pos: -10.482171,6.58344 parent: 2 - - uid: 19555 - components: - - type: Transform - pos: 28.488077,14.527548 - parent: 2 - proto: FloraRockSolid02 entities: - uid: 19549 @@ -66780,11 +67024,6 @@ entities: - type: Transform pos: 22.556618,18.605299 parent: 2 - - uid: 19973 - components: - - type: Transform - pos: 36.523605,12.614467 - parent: 2 - proto: FloraRockSolid03 entities: - uid: 19556 @@ -66797,6 +67036,11 @@ entities: - type: Transform pos: 9.461854,1.5700341 parent: 2 + - uid: 20653 + components: + - type: Transform + pos: 27.553556,21.553436 + parent: 2 - proto: FloraTree04 entities: - uid: 1550 @@ -66882,11 +67126,6 @@ entities: - type: Transform pos: -27.58403,0.63008094 parent: 2 - - uid: 3710 - components: - - type: Transform - pos: 29.66985,11.488055 - parent: 2 - uid: 3952 components: - type: Transform @@ -66907,6 +67146,11 @@ entities: - type: Transform pos: 26.394815,-37.93541 parent: 2 + - uid: 7282 + components: + - type: Transform + pos: 37.366684,2.5039263 + parent: 2 - uid: 7514 components: - type: Transform @@ -66922,6 +67166,11 @@ entities: - type: Transform pos: -15.2811,-48.58085 parent: 2 + - uid: 13895 + components: + - type: Transform + pos: 28.405712,10.798362 + parent: 2 - uid: 16030 components: - type: Transform @@ -67218,6 +67467,13 @@ entities: - type: Transform pos: 86.51489,-16.43149 parent: 2 +- proto: FoodTomato + entities: + - uid: 18586 + components: + - type: Transform + pos: 3.5404968,-19.16355 + parent: 2 - proto: GasAnalyzer entities: - uid: 2089 @@ -67235,13 +67491,6 @@ entities: - type: Transform pos: -6.3268914,-15.33333 parent: 2 -- proto: GasCanisterBrokenBase - entities: - - uid: 4352 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 2 - proto: GasFilter entities: - uid: 4998 @@ -67544,11 +67793,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 996 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 2 - uid: 1506 components: - type: Transform @@ -68641,6 +68885,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasPipeBroken + entities: + - uid: 1089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 2 - proto: GasPipeFourway entities: - uid: 676 @@ -68832,6 +69090,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' +- proto: GasPipeSensorDistribution + entities: + - uid: 1139 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13795 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13805 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 1559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13805 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeSensorWaste + entities: + - uid: 1556 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13795 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeStraight entities: - uid: 27 @@ -69007,12 +69315,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-10.5 - parent: 2 - uid: 1130 components: - type: Transform @@ -69021,26 +69323,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 2 - uid: 1518 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 2 - - uid: 1559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1566 components: - type: Transform @@ -69152,6 +69440,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 - uid: 1672 components: - type: Transform @@ -69726,13 +70020,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2147 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2150 components: - type: Transform @@ -70572,14 +70859,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4459 components: - type: Transform @@ -70991,14 +71270,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 6027 components: - type: Transform @@ -80934,12 +81205,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-11.5 - parent: 2 - uid: 1265 components: - type: Transform @@ -81045,12 +81310,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-12.5 - parent: 2 - uid: 2337 components: - type: Transform @@ -83326,7 +83585,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13795 + - 81 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2394 @@ -84110,7 +84369,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14082 + - 409 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14095 @@ -84686,12 +84945,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-12.5 parent: 2 - - uid: 1135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 2 - proto: GasVentScrubber entities: - uid: 131 @@ -84809,7 +85062,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13795 + - 81 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2542 @@ -85574,7 +85827,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14082 + - 409 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14136 @@ -86140,11 +86393,6 @@ entities: color: '#FF1212FF' - proto: GasVentScrubberVox entities: - - uid: 1108 - components: - - type: Transform - pos: 14.5,-9.5 - parent: 2 - uid: 1132 components: - type: Transform @@ -86161,7 +86409,7 @@ entities: - uid: 18976 components: - type: Transform - pos: -29.533365,18.306175 + pos: -25.504946,23.170948 parent: 2 - proto: Gauze1 entities: @@ -86277,6 +86525,11 @@ entities: - type: Transform pos: -34.5,-6.5 parent: 2 + - uid: 99 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 - uid: 118 components: - type: Transform @@ -86412,11 +86665,6 @@ entities: - type: Transform pos: -5.5,9.5 parent: 2 - - uid: 687 - components: - - type: Transform - pos: 35.5,12.5 - parent: 2 - uid: 691 components: - type: Transform @@ -86520,7 +86768,7 @@ entities: - uid: 841 components: - type: Transform - pos: 35.5,11.5 + pos: 28.5,14.5 parent: 2 - uid: 871 components: @@ -87812,11 +88060,6 @@ entities: - type: Transform pos: 75.5,-61.5 parent: 2 - - uid: 5723 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 2 - uid: 5772 components: - type: Transform @@ -88307,6 +88550,16 @@ entities: - type: Transform pos: -34.5,4.5 parent: 2 + - uid: 8670 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 - uid: 8697 components: - type: Transform @@ -88367,11 +88620,6 @@ entities: - type: Transform pos: 42.5,13.5 parent: 2 - - uid: 8712 - components: - - type: Transform - pos: 30.5,14.5 - parent: 2 - uid: 8713 components: - type: Transform @@ -88382,16 +88630,6 @@ entities: - type: Transform pos: 30.5,16.5 parent: 2 - - uid: 8715 - components: - - type: Transform - pos: 29.5,13.5 - parent: 2 - - uid: 8716 - components: - - type: Transform - pos: 28.5,13.5 - parent: 2 - uid: 8719 components: - type: Transform @@ -88567,6 +88805,11 @@ entities: - type: Transform pos: 45.5,4.5 parent: 2 + - uid: 9134 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 - uid: 9282 components: - type: Transform @@ -90532,6 +90775,11 @@ entities: - type: Transform pos: 57.5,-61.5 parent: 2 + - uid: 16777 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 - uid: 16780 components: - type: Transform @@ -93192,6 +93440,11 @@ entities: - type: Transform pos: -7.5,13.5 parent: 2 + - uid: 20390 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 - uid: 20504 components: - type: Transform @@ -93397,6 +93650,36 @@ entities: - type: Transform pos: -46.5,2.5 parent: 2 + - uid: 20663 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 20664 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 20667 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 20677 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 20678 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 20679 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 - proto: GrilleBroken entities: - uid: 656 @@ -94429,11 +94712,6 @@ entities: - type: Transform pos: -47.5,-31.5 parent: 2 - - uid: 681 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 2 - uid: 7812 components: - type: Transform @@ -94456,6 +94734,12 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-45.5 parent: 2 + - uid: 8786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-5.5 + parent: 2 - uid: 17569 components: - type: Transform @@ -95036,6 +95320,27 @@ entities: rot: -1.5707963267948966 rad pos: -31.523584,-45.52353 parent: 2 + - uid: 10091 + components: + - type: Transform + pos: 28.579645,11.62192 + parent: 2 + - type: HandheldLight + toggleActionEntity: 10092 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 10092 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 18616 components: - type: Transform @@ -95069,7 +95374,7 @@ entities: - uid: 1259 components: - type: Transform - pos: -29.39506,18.702875 + pos: -25.306932,23.640022 parent: 2 - type: HandheldLight toggleActionEntity: 7271 @@ -95572,10 +95877,6 @@ entities: - Pressed: Toggle 12076: - Pressed: Toggle - 20388: - - Pressed: Toggle - 20389: - - Pressed: Toggle - proto: LockableButtonResearch entities: - uid: 6273 @@ -95640,11 +95941,9 @@ entities: - Pressed: Toggle 11838: - Pressed: Toggle - 12127: + 2426: - Pressed: Toggle - 15663: - - Pressed: Toggle - 15665: + 2573: - Pressed: Toggle 12379: - Pressed: Toggle @@ -95718,10 +96017,10 @@ entities: parent: 2 - proto: LockerDetectiveFilled entities: - - uid: 7289 + - uid: 8665 components: - type: Transform - pos: 37.5,1.5 + pos: 35.5,4.5 parent: 2 - proto: LockerElectricalSuppliesFilled entities: @@ -95779,6 +96078,11 @@ entities: - type: Transform pos: -31.5,-3.5 parent: 2 + - uid: 9103 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 - uid: 9655 components: - type: Transform @@ -95789,16 +96093,16 @@ entities: - type: Transform pos: -26.5,-11.5 parent: 2 + - uid: 11591 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 - uid: 12649 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 13273 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 2 - proto: LockerFreezer entities: - uid: 7085 @@ -95986,10 +96290,10 @@ entities: - type: Transform pos: 9.5,-69.5 parent: 2 - - uid: 9882 + - uid: 15373 components: - type: Transform - pos: -26.5,21.5 + pos: -25.5,19.5 parent: 2 - uid: 20259 components: @@ -96036,6 +96340,7 @@ entities: - uid: 18575 components: - type: Transform + anchored: True rot: 1.5707963267948966 rad pos: -30.5,-67.5 parent: 2 @@ -96049,9 +96354,13 @@ entities: - Output: DoorBolt 10047: - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - uid: 18578 components: - type: Transform + anchored: True rot: 3.141592653589793 rad pos: -32.5,-68.5 parent: 2 @@ -96065,6 +96374,9 @@ entities: - Output: DoorBolt 6228: - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - proto: LogicGateXor entities: - uid: 233 @@ -96265,6 +96577,11 @@ entities: - type: Transform pos: -40.5,-50.5 parent: 2 + - uid: 20682 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 - proto: LootSpawnerIndustrial entities: - uid: 9651 @@ -96502,6 +96819,11 @@ entities: - type: Transform pos: 43.5,11.5 parent: 2 + - uid: 20662 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 - proto: MachineFrameDestroyed entities: - uid: 652 @@ -96509,11 +96831,21 @@ entities: - type: Transform pos: 44.5,-44.5 parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 - uid: 4354 components: - type: Transform pos: 13.5,-13.5 parent: 2 + - uid: 8672 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 - uid: 11547 components: - type: Transform @@ -96529,6 +96861,11 @@ entities: - type: Transform pos: 16.5,2.5 parent: 2 + - uid: 14605 + components: + - type: Transform + pos: 51.5,-48.5 + parent: 2 - uid: 17269 components: - type: Transform @@ -96851,11 +97188,6 @@ entities: - type: Transform pos: -15.5,-25.5 parent: 2 - - uid: 6377 - components: - - type: Transform - pos: 36.5,6.5 - parent: 2 - uid: 6582 components: - type: Transform @@ -96866,6 +97198,11 @@ entities: - type: Transform pos: 20.5,15.5 parent: 2 + - uid: 8856 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 - uid: 9347 components: - type: Transform @@ -96881,18 +97218,23 @@ entities: - type: Transform pos: -11.5,-24.5 parent: 2 + - uid: 20689 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 - proto: MaintenanceWeaponSpawner entities: + - uid: 1135 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 - uid: 2241 components: - type: Transform pos: 53.5,-41.5 parent: 2 - - uid: 2764 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 2 - uid: 13364 components: - type: Transform @@ -97339,6 +97681,11 @@ entities: parent: 2 - proto: MouseTimedSpawner entities: + - uid: 1131 + components: + - type: Transform + pos: 45.5,-51.5 + parent: 2 - uid: 2566 components: - type: Transform @@ -97349,20 +97696,20 @@ entities: - type: Transform pos: 0.5,-36.5 parent: 2 + - uid: 9136 + components: + - type: Transform + pos: 24.5,-53.5 + parent: 2 - uid: 11284 components: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 13390 + - uid: 20634 components: - type: Transform - pos: 26.5,-51.5 - parent: 2 - - uid: 20619 - components: - - type: Transform - pos: -33.5,14.5 + pos: -22.5,19.5 parent: 2 - proto: Multitool entities: @@ -97417,6 +97764,11 @@ entities: - type: Transform pos: 12.5,-8.5 parent: 2 + - uid: 399 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 - uid: 1455 components: - type: Transform @@ -97467,11 +97819,6 @@ entities: - type: Transform pos: -9.5,-71.5 parent: 2 - - uid: 8675 - components: - - type: Transform - pos: 39.5,6.5 - parent: 2 - uid: 10703 components: - type: Transform @@ -97691,6 +98038,11 @@ entities: - type: Transform pos: 18.5,8.5 parent: 2 + - uid: 6975 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 - uid: 7580 components: - type: Transform @@ -97701,11 +98053,6 @@ entities: - type: Transform pos: 10.5,-71.5 parent: 2 - - uid: 8674 - components: - - type: Transform - pos: 38.5,6.5 - parent: 2 - uid: 10701 components: - type: Transform @@ -97854,11 +98201,21 @@ entities: allowedDepartments: - Security severity: Syndicate + - uid: 7345 + components: + - type: Transform + pos: 37.68882,1.831463 + parent: 2 - uid: 7938 components: - type: Transform pos: 13.3942175,-51.459084 parent: 2 + - uid: 8850 + components: + - type: Transform + pos: 37.417854,1.6229848 + parent: 2 - uid: 9318 components: - type: Transform @@ -98090,13 +98447,6 @@ entities: - type: Transform pos: 72.56781,-43.388092 parent: 2 -- proto: PartRodMetal10 - entities: - - uid: 6997 - components: - - type: Transform - pos: 13.453983,-10.742063 - parent: 2 - proto: PeaSeeds entities: - uid: 6178 @@ -98506,11 +98856,6 @@ entities: - type: Transform pos: 14.5,-17.5 parent: 2 - - uid: 18567 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - uid: 18582 components: - type: Transform @@ -98521,10 +98866,20 @@ entities: - type: Transform pos: 81.5,-15.5 parent: 2 - - uid: 19282 + - uid: 20635 components: - type: Transform - pos: 53.5,-52.5 + pos: 53.5,-56.5 + parent: 2 + - uid: 20636 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 2 + - uid: 20685 + components: + - type: Transform + pos: -33.5,20.5 parent: 2 - proto: PortableGeneratorPacman entities: @@ -98572,13 +98927,6 @@ entities: - type: Transform pos: 29.5,-9.5 parent: 2 -- proto: PosterBroken - entities: - - uid: 6604 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 2 - proto: PosterContrabandGreyTide entities: - uid: 9075 @@ -98603,10 +98951,10 @@ entities: parent: 2 - proto: PosterContrabandRevolt entities: - - uid: 2763 + - uid: 2147 components: - type: Transform - pos: 11.5,-9.5 + pos: 14.5,-10.5 parent: 2 - proto: PosterContrabandTools entities: @@ -99043,6 +99391,18 @@ entities: parent: 2 - proto: PoweredDimSmallLight entities: + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,12.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,16.5 + parent: 2 - uid: 3008 components: - type: Transform @@ -99099,23 +99459,23 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,13.5 parent: 2 - - uid: 8018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,1.5 - parent: 2 - uid: 8285 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-9.5 parent: 2 - - uid: 8679 + - uid: 8950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,11.5 + rot: -1.5707963267948966 rad + pos: 3.5,-40.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,1.5 parent: 2 - uid: 9993 components: @@ -99129,11 +99489,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-42.5 parent: 2 - - uid: 11275 - components: - - type: Transform - pos: 38.5,6.5 - parent: 2 - uid: 11288 components: - type: Transform @@ -99182,16 +99537,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,5.5 parent: 2 - - uid: 12127 - components: - - type: MetaData - name: Stage Light - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-39.5 - parent: 2 - - type: PoweredLight - on: False - uid: 12282 components: - type: Transform @@ -99260,17 +99605,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-41.5 parent: 2 - - uid: 15692 - components: - - type: Transform - pos: 38.5,3.5 - parent: 2 - - uid: 17120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 2 - uid: 17122 components: - type: Transform @@ -99374,30 +99708,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-36.5 parent: 2 - - uid: 17543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 17655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,0.5 - parent: 2 - - uid: 18077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,12.5 - parent: 2 - - uid: 18078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 2 - uid: 18095 components: - type: Transform @@ -99427,6 +99737,12 @@ entities: - type: Transform pos: 56.5,-52.5 parent: 2 + - uid: 19601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,12.5 + parent: 2 - uid: 20123 components: - type: Transform @@ -99699,6 +100015,12 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,12.5 parent: 2 + - uid: 8863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,13.5 + parent: 2 - uid: 9138 components: - type: Transform @@ -100312,12 +100634,6 @@ entities: - type: Transform pos: -54.5,-11.5 parent: 2 - - uid: 17323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,14.5 - parent: 2 - uid: 17324 components: - type: Transform @@ -100649,6 +100965,12 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-58.5 parent: 2 + - uid: 2319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 - uid: 2944 components: - type: Transform @@ -100662,6 +100984,12 @@ entities: parent: 2 - type: PointLight color: '#FFA54FFF' + - uid: 3362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,1.5 + parent: 2 - uid: 3702 components: - type: Transform @@ -100762,12 +101090,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,28.5 parent: 2 - - uid: 5720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,8.5 - parent: 2 - uid: 5801 components: - type: Transform @@ -100845,6 +101167,30 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-36.5 parent: 2 + - uid: 8851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,10.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,0.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,8.5 + parent: 2 - uid: 9270 components: - type: Transform @@ -101108,11 +101454,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-49.5 parent: 2 - - uid: 13259 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - uid: 13414 components: - type: Transform @@ -101137,12 +101478,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 - - uid: 13891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,8.5 - parent: 2 - uid: 13892 components: - type: Transform @@ -101154,12 +101489,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,13.5 parent: 2 - - uid: 13895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 2 - uid: 13896 components: - type: Transform @@ -101236,34 +101565,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-16.5 parent: 2 - - uid: 15663 - components: - - type: MetaData - name: Stage Light - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-38.5 - parent: 2 - - type: PointLight - softness: 1.5 - energy: 0.2 - color: '#D5908BFF' - - type: PoweredLight - on: False - - uid: 15665 - components: - - type: MetaData - name: Stage Light - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-39.5 - parent: 2 - - type: PointLight - softness: 1.5 - energy: 0.2 - color: '#D5908BFF' - - type: PoweredLight - on: False - uid: 15680 components: - type: Transform @@ -101427,6 +101728,12 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 2 + - uid: 17543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 2 - uid: 17649 components: - type: Transform @@ -101449,6 +101756,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-53.5 parent: 2 + - uid: 18514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 - uid: 18906 components: - type: Transform @@ -101483,13 +101796,18 @@ entities: - type: Transform pos: 50.5,-51.5 parent: 2 -- proto: PoweredSmallLightEmpty - entities: - - uid: 11447 + - uid: 20705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,8.5 + rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 8858 + components: + - type: Transform + pos: 38.5,3.5 parent: 2 - uid: 11452 components: @@ -101497,6 +101815,30 @@ entities: rot: 3.141592653589793 rad pos: 48.5,8.5 parent: 2 +- proto: PoweredStrobeLightEpsilon + entities: + - uid: 2340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,11.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-39.5 + parent: 2 + - type: PoweredLight + on: True + - uid: 2573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-39.5 + parent: 2 + - type: PoweredLight + on: True - proto: PrefilledSyringe entities: - uid: 6049 @@ -101742,38 +102084,45 @@ entities: - type: Transform pos: -32.5,-46.5 parent: 2 -- proto: PuddleWatermelon +- proto: PuddleTomato entities: - - uid: 5173 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 2 - - uid: 5183 + - uid: 1113 components: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 5247 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 2 - - uid: 5278 + - uid: 2682 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 10696 + - uid: 2757 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 18077 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 11205 + - uid: 18269 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 18303 components: - type: Transform pos: 3.5,-16.5 parent: 2 +- proto: PuddleWatermelon + entities: - uid: 14649 components: - type: Transform @@ -101797,6 +102146,11 @@ entities: - type: Transform pos: 46.5,-36.5 parent: 2 + - uid: 294 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 - uid: 469 components: - type: Transform @@ -101906,6 +102260,12 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-17.5 parent: 2 + - uid: 2862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 - uid: 2912 components: - type: Transform @@ -102011,12 +102371,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-42.5 parent: 2 - - uid: 4557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 2 - uid: 4579 components: - type: Transform @@ -102164,15 +102518,16 @@ entities: - type: Transform pos: 48.5,8.5 parent: 2 - - uid: 7352 + - uid: 7342 components: - type: Transform - pos: 43.5,8.5 + rot: -1.5707963267948966 rad + pos: 40.5,12.5 parent: 2 - - uid: 7370 + - uid: 7411 components: - type: Transform - pos: 42.5,11.5 + pos: 40.5,5.5 parent: 2 - uid: 7424 components: @@ -102216,12 +102571,6 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 - - uid: 8669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,6.5 - parent: 2 - uid: 8677 components: - type: Transform @@ -102496,11 +102845,6 @@ entities: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 18970 - components: - - type: Transform - pos: -33.5,14.5 - parent: 2 - uid: 19278 components: - type: Transform @@ -102532,6 +102876,17 @@ entities: - type: Transform pos: 44.5,-50.5 parent: 2 + - uid: 20674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,11.5 + parent: 2 + - uid: 20688 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 - proto: RadioHandheld entities: - uid: 3964 @@ -102966,11 +103321,6 @@ entities: - type: Transform pos: 40.5,-44.5 parent: 2 - - uid: 7646 - components: - - type: Transform - pos: 24.5,16.5 - parent: 2 - proto: RandomArtifactSpawner20 entities: - uid: 5755 @@ -102978,6 +103328,11 @@ entities: - type: Transform pos: 38.5,-46.5 parent: 2 + - uid: 9123 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 - uid: 17456 components: - type: Transform @@ -103139,15 +103494,15 @@ entities: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 11830 + - uid: 7795 components: - type: Transform - pos: 42.5,1.5 + pos: 42.5,3.5 parent: 2 - - uid: 18979 + - uid: 20703 components: - type: Transform - pos: -30.5,17.5 + pos: -29.5,16.5 parent: 2 - proto: RandomPainting entities: @@ -103193,6 +103548,11 @@ entities: parent: 2 - proto: RandomPosterAny entities: + - uid: 593 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 - uid: 6015 components: - type: Transform @@ -103324,11 +103684,6 @@ entities: - type: Transform pos: 50.5,8.5 parent: 2 - - uid: 16162 - components: - - type: Transform - pos: 40.5,10.5 - parent: 2 - uid: 16163 components: - type: Transform @@ -103359,6 +103714,11 @@ entities: - type: Transform pos: 18.5,-30.5 parent: 2 + - uid: 17246 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 - uid: 17587 components: - type: Transform @@ -103504,10 +103864,10 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 8950 + - uid: 9563 components: - type: Transform - pos: 34.5,5.5 + pos: 34.5,9.5 parent: 2 - uid: 11961 components: @@ -103744,11 +104104,6 @@ entities: parent: 2 - proto: RandomSpawner entities: - - uid: 105 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 2 - uid: 208 components: - type: Transform @@ -104280,6 +104635,11 @@ entities: - type: Transform pos: 75.5,-43.5 parent: 2 + - uid: 20676 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 - proto: ReinforcedPlasmaWindow entities: - uid: 114 @@ -104564,6 +104924,11 @@ entities: - type: Transform pos: 33.5,-33.5 parent: 2 + - uid: 597 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 - uid: 604 components: - type: Transform @@ -105104,6 +105469,11 @@ entities: - type: Transform pos: -21.5,29.5 parent: 2 + - uid: 3929 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 - uid: 3959 components: - type: Transform @@ -105274,11 +105644,6 @@ entities: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 4918 - components: - - type: Transform - pos: 29.5,13.5 - parent: 2 - uid: 4919 components: - type: Transform @@ -105949,11 +106314,6 @@ entities: - type: Transform pos: -7.5,-23.5 parent: 2 - - uid: 6889 - components: - - type: Transform - pos: 35.5,12.5 - parent: 2 - uid: 6926 components: - type: Transform @@ -106129,11 +106489,6 @@ entities: - type: Transform pos: 43.5,13.5 parent: 2 - - uid: 7339 - components: - - type: Transform - pos: 28.5,13.5 - parent: 2 - uid: 7350 components: - type: Transform @@ -106219,11 +106574,6 @@ entities: - type: Transform pos: -16.5,-45.5 parent: 2 - - uid: 7625 - components: - - type: Transform - pos: 30.5,14.5 - parent: 2 - uid: 7626 components: - type: Transform @@ -106234,6 +106584,11 @@ entities: - type: Transform pos: 30.5,16.5 parent: 2 + - uid: 7646 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 - uid: 7678 components: - type: Transform @@ -106264,6 +106619,16 @@ entities: - type: Transform pos: -53.5,-33.5 parent: 2 + - uid: 7828 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 - uid: 7833 components: - type: Transform @@ -106464,6 +106829,11 @@ entities: - type: Transform pos: 55.5,-25.5 parent: 2 + - uid: 8671 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 - uid: 8682 components: - type: Transform @@ -106519,6 +106889,11 @@ entities: - type: Transform pos: 45.5,4.5 parent: 2 + - uid: 8857 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 - uid: 8890 components: - type: Transform @@ -106559,6 +106934,11 @@ entities: - type: Transform pos: 68.5,-45.5 parent: 2 + - uid: 9125 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 - uid: 9254 components: - type: Transform @@ -106614,6 +106994,11 @@ entities: - type: Transform pos: 49.5,-60.5 parent: 2 + - uid: 9421 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 - uid: 9540 components: - type: Transform @@ -106659,11 +107044,6 @@ entities: - type: Transform pos: 62.5,-82.5 parent: 2 - - uid: 10142 - components: - - type: Transform - pos: 35.5,11.5 - parent: 2 - uid: 10182 components: - type: Transform @@ -106909,6 +107289,11 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 2 + - uid: 13273 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 - uid: 13767 components: - type: Transform @@ -106999,11 +107384,6 @@ entities: - type: Transform pos: -21.5,-6.5 parent: 2 - - uid: 15373 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 2 - uid: 15675 components: - type: Transform @@ -107249,6 +107629,11 @@ entities: - type: Transform pos: 78.5,-47.5 parent: 2 + - uid: 20410 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 4210 @@ -107509,6 +107894,13 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-50.5 parent: 2 +- proto: Screwdriver + entities: + - uid: 19555 + components: + - type: Transform + pos: -33.476517,4.525329 + parent: 2 - proto: SecurityTechFab entities: - uid: 19546 @@ -107619,16 +108011,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.56429,-82.79552 parent: 2 - - uid: 13015 - components: - - type: Transform - pos: 3.5630455,-19.383734 - parent: 2 - - uid: 15466 - components: - - type: Transform - pos: 14.370008,-10.190743 - parent: 2 - uid: 15911 components: - type: Transform @@ -107897,18 +108279,8 @@ entities: - type: Transform pos: -60.99963,-11.384789 parent: 2 - - uid: 18090 - components: - - type: Transform - pos: 49.743286,12.455435 - parent: 2 - proto: SheetSteel1 entities: - - uid: 1139 - components: - - type: Transform - pos: 14.644554,-10.731582 - parent: 2 - uid: 2342 components: - type: Transform @@ -107926,6 +108298,11 @@ entities: - type: Transform pos: 68.531136,-77.49754 parent: 2 + - uid: 18975 + components: + - type: Transform + pos: 44.497368,9.486668 + parent: 2 - proto: SheetUranium entities: - uid: 13030 @@ -108272,16 +108649,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-35.5 parent: 2 - - uid: 20388 - components: - - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 20389 - components: - - type: Transform - pos: -7.5,13.5 - parent: 2 - proto: ShuttersWindowOpen entities: - uid: 15630 @@ -108334,16 +108701,6 @@ entities: parent: 2 - proto: SignalButton entities: - - uid: 399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-6.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 11686: - - Pressed: DoorBolt - uid: 1297 components: - type: MetaData @@ -108368,6 +108725,16 @@ entities: linkedPorts: 16113: - Pressed: Toggle + - uid: 2351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2340: + - Pressed: Toggle - uid: 3255 components: - type: Transform @@ -108512,6 +108879,16 @@ entities: linkedPorts: 16102: - Pressed: Toggle + - uid: 19282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12881: + - Pressed: Toggle - proto: SignAnomaly entities: - uid: 4573 @@ -108827,11 +109204,11 @@ entities: parent: 2 - proto: SignDirectionalSolar entities: - - uid: 9103 + - uid: 9126 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,8.5 + pos: 34.5,5.5 parent: 2 - uid: 20235 components: @@ -108861,6 +109238,12 @@ entities: parent: 2 - proto: SignElectricalMed entities: + - uid: 628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2 - uid: 4292 components: - type: Transform @@ -108903,12 +109286,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,12.5 parent: 2 - - uid: 17065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,8.5 - parent: 2 - uid: 17066 components: - type: Transform @@ -111184,11 +111561,11 @@ entities: parent: 2 - proto: SpawnMobReindeerDoe entities: - - uid: 6052 + - uid: 8861 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,13.5 + pos: -10.5,16.5 parent: 2 - proto: SpawnMobShiva entities: @@ -111454,15 +111831,15 @@ entities: parent: 2 - proto: SpawnPointLawyer entities: - - uid: 17246 + - uid: 7280 components: - type: Transform - pos: 28.5,11.5 + pos: 27.5,12.5 parent: 2 - - uid: 17247 + - uid: 7281 components: - type: Transform - pos: 27.5,11.5 + pos: 28.5,12.5 parent: 2 - proto: SpawnPointLibrarian entities: @@ -112216,20 +112593,6 @@ entities: - type: Transform pos: 50.5,10.5 parent: 2 -- proto: StairWood - entities: - - uid: 7372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,9.5 - parent: 2 - - uid: 7373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 2 - proto: StasisBed entities: - uid: 4943 @@ -112431,18 +112794,18 @@ entities: rot: 3.141592653589793 rad pos: 12.439132,-61.18458 parent: 2 - - uid: 8678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.487167,8.7023735 - parent: 2 - uid: 8882 components: - type: Transform rot: 3.141592653589793 rad pos: 47.478497,-12.295409 parent: 2 + - uid: 9131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.502296,11.696904 + parent: 2 - uid: 10651 components: - type: Transform @@ -112496,6 +112859,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-29.5 parent: 2 + - uid: 7050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,9.5 + parent: 2 - uid: 7381 components: - type: Transform @@ -112607,12 +112976,12 @@ entities: - uid: 18971 components: - type: Transform - pos: -29.616833,18.72174 + pos: -25.650852,23.504513 parent: 2 - uid: 18972 components: - type: Transform - pos: -29.325022,18.523687 + pos: -25.723806,23.681719 parent: 2 - proto: SubstationBasic entities: @@ -112644,6 +113013,13 @@ entities: - type: Transform pos: 41.5,-32.5 parent: 2 + - uid: 2248 + components: + - type: MetaData + name: North East Substation + - type: Transform + pos: 36.5,12.5 + parent: 2 - uid: 2347 components: - type: MetaData @@ -112686,13 +113062,6 @@ entities: - type: Transform pos: 24.5,3.5 parent: 2 - - uid: 6501 - components: - - type: MetaData - name: North East Substation - - type: Transform - pos: 38.5,9.5 - parent: 2 - uid: 6645 components: - type: MetaData @@ -112758,6 +113127,11 @@ entities: - type: Transform pos: -61.353973,-11.489028 parent: 2 + - uid: 20661 + components: + - type: Transform + pos: -34.526165,17.347694 + parent: 2 - proto: SuitStorageCaptain entities: - uid: 15645 @@ -113112,6 +113486,13 @@ entities: parent: 2 - type: SurveillanceCamera id: Solars - North West + - uid: 8669 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - type: SurveillanceCamera + id: Shuttle Building Storage - uid: 10462 components: - type: Transform @@ -113200,6 +113581,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Disposals + - uid: 7831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Hall - Outside Detective's Office - uid: 7978 components: - type: Transform @@ -113506,14 +113895,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Hall - Outside North Airlock - - uid: 20410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,7.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Between Lawyers and Detective - proto: SurveillanceCameraMedical entities: - uid: 8422 @@ -113732,21 +114113,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Perma Hydro - - uid: 2963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,3.5 - parent: 2 - - type: SurveillanceCamera - id: Detective's Office - - uid: 2968 - components: - - type: Transform - pos: 29.5,10.5 - parent: 2 - - type: SurveillanceCamera - id: Lawyer's Office - uid: 3281 components: - type: Transform @@ -113769,6 +114135,13 @@ entities: parent: 2 - type: SurveillanceCamera id: Perma Entrance + - uid: 7830 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - type: SurveillanceCamera + id: Detective's Office - uid: 12576 components: - type: Transform @@ -114001,7 +114374,7 @@ entities: - uid: 18973 components: - type: Transform - pos: -29.474314,17.697285 + pos: -25.494524,22.56636 parent: 2 - proto: Table entities: @@ -114386,11 +114759,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-29.5 parent: 2 - - uid: 4451 - components: - - type: Transform - pos: 27.5,12.5 - parent: 2 - uid: 4460 components: - type: Transform @@ -114660,6 +115028,18 @@ entities: - type: Transform pos: 20.5,-17.5 parent: 2 + - uid: 8852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,22.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,23.5 + parent: 2 - uid: 9140 components: - type: Transform @@ -114823,11 +115203,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 - - uid: 15996 - components: - - type: Transform - pos: -29.5,18.5 - parent: 2 - uid: 16409 components: - type: Transform @@ -114880,11 +115255,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-75.5 parent: 2 - - uid: 17544 - components: - - type: Transform - pos: -29.5,17.5 - parent: 2 - uid: 17699 components: - type: Transform @@ -114960,6 +115330,11 @@ entities: - type: Transform pos: -40.5,-2.5 parent: 2 + - uid: 20681 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 - proto: TableCarpet entities: - uid: 26 @@ -115372,12 +115747,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-12.5 parent: 2 - - uid: 4060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 2 - uid: 4345 components: - type: Transform @@ -115674,6 +116043,18 @@ entities: parent: 2 - proto: TableWood entities: + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - uid: 556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 - uid: 1011 components: - type: Transform @@ -115720,6 +116101,12 @@ entities: - type: Transform pos: -9.5,-25.5 parent: 2 + - uid: 2968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 - uid: 3047 components: - type: Transform @@ -115881,12 +116268,6 @@ entities: - type: Transform pos: 19.5,-46.5 parent: 2 - - uid: 6070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,3.5 - parent: 2 - uid: 6153 components: - type: Transform @@ -115917,23 +116298,17 @@ entities: - type: Transform pos: 29.5,23.5 parent: 2 - - uid: 7239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,11.5 - parent: 2 - - uid: 7291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,1.5 - parent: 2 - uid: 7322 components: - type: Transform pos: 44.5,12.5 parent: 2 + - uid: 7327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 - uid: 7525 components: - type: Transform @@ -115979,6 +116354,12 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,41.5 parent: 2 + - uid: 9120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,11.5 + parent: 2 - uid: 9389 components: - type: Transform @@ -116085,6 +116466,12 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,10.5 parent: 2 + - uid: 15330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 2 - uid: 18065 components: - type: Transform @@ -116110,6 +116497,12 @@ entities: - type: Transform pos: 96.5,-35.5 parent: 2 + - uid: 19004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 2 - proto: TargetClown entities: - uid: 18803 @@ -116215,13 +116608,6 @@ entities: - type: Transform pos: 22.5,-0.5 parent: 2 -- proto: ThrusterMachineCircuitboard - entities: - - uid: 8094 - components: - - type: Transform - pos: -34.812855,-53.52421 - parent: 2 - proto: ThrusterUnanchored entities: - uid: 4617 @@ -116230,10 +116616,11 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-28.5 parent: 2 - - uid: 7194 + - uid: 7644 components: - type: Transform - pos: -33.5,-55.5 + rot: 3.141592653589793 rad + pos: -30.5,-69.5 parent: 2 - uid: 8081 components: @@ -116251,6 +116638,12 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-71.5 parent: 2 + - uid: 20704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-69.5 + parent: 2 - proto: TintedWindow entities: - uid: 1177 @@ -116505,6 +116898,11 @@ entities: - type: Transform pos: 27.534405,-53.358227 parent: 2 + - uid: 8122 + components: + - type: Transform + pos: 40.515865,5.6471686 + parent: 2 - uid: 13143 components: - type: Transform @@ -117245,10 +117643,10 @@ entities: parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 6991 + - uid: 8666 components: - type: Transform - pos: 27.5,10.5 + pos: 29.5,13.5 parent: 2 - proto: VendingMachineMedical entities: @@ -117504,11 +117902,6 @@ entities: - type: Transform pos: 13.5,4.5 parent: 2 - - uid: 81 - components: - - type: Transform - pos: 16.5,26.5 - parent: 2 - uid: 89 components: - type: Transform @@ -117529,11 +117922,6 @@ entities: - type: Transform pos: 1.5,27.5 parent: 2 - - uid: 99 - components: - - type: Transform - pos: 10.5,26.5 - parent: 2 - uid: 101 components: - type: Transform @@ -117594,21 +117982,11 @@ entities: - type: Transform pos: -3.5,23.5 parent: 2 - - uid: 141 - components: - - type: Transform - pos: -10.5,9.5 - parent: 2 - uid: 143 components: - type: Transform pos: 1.5,13.5 parent: 2 - - uid: 144 - components: - - type: Transform - pos: 1.5,15.5 - parent: 2 - uid: 152 components: - type: Transform @@ -117644,16 +118022,6 @@ entities: - type: Transform pos: 0.5,-15.5 parent: 2 - - uid: 179 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 206 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 2 - uid: 207 components: - type: Transform @@ -117664,11 +118032,6 @@ entities: - type: Transform pos: -23.5,1.5 parent: 2 - - uid: 218 - components: - - type: Transform - pos: -37.5,4.5 - parent: 2 - uid: 222 components: - type: Transform @@ -117734,21 +118097,11 @@ entities: - type: Transform pos: 13.5,26.5 parent: 2 - - uid: 324 - components: - - type: Transform - pos: -26.5,22.5 - parent: 2 - uid: 327 components: - type: Transform pos: 56.5,-46.5 parent: 2 - - uid: 334 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 2 - uid: 352 components: - type: Transform @@ -117934,6 +118287,11 @@ entities: - type: Transform pos: 7.5,6.5 parent: 2 + - uid: 580 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 - uid: 581 components: - type: Transform @@ -118039,6 +118397,11 @@ entities: - type: Transform pos: 49.5,-14.5 parent: 2 + - uid: 762 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 - uid: 764 components: - type: Transform @@ -118047,7 +118410,7 @@ entities: - uid: 765 components: - type: Transform - pos: -21.5,7.5 + pos: 37.5,13.5 parent: 2 - uid: 789 components: @@ -118107,7 +118470,7 @@ entities: - uid: 882 components: - type: Transform - pos: 8.5,15.5 + pos: 27.5,14.5 parent: 2 - uid: 892 components: @@ -118179,6 +118542,11 @@ entities: - type: Transform pos: -0.5,13.5 parent: 2 + - uid: 996 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 - uid: 998 components: - type: Transform @@ -118254,15 +118622,10 @@ entities: - type: Transform pos: -70.5,-13.5 parent: 2 - - uid: 1089 + - uid: 1094 components: - type: Transform - pos: -32.5,18.5 - parent: 2 - - uid: 1095 - components: - - type: Transform - pos: -5.5,19.5 + pos: 35.5,12.5 parent: 2 - uid: 1102 components: @@ -118299,11 +118662,6 @@ entities: - type: Transform pos: 16.5,19.5 parent: 2 - - uid: 1113 - components: - - type: Transform - pos: 16.5,20.5 - parent: 2 - uid: 1114 components: - type: Transform @@ -118439,6 +118797,11 @@ entities: - type: Transform pos: 11.5,29.5 parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 - uid: 1419 components: - type: Transform @@ -118654,11 +119017,6 @@ entities: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 1640 - components: - - type: Transform - pos: 23.5,15.5 - parent: 2 - uid: 1644 components: - type: Transform @@ -118674,11 +119032,6 @@ entities: - type: Transform pos: -36.5,8.5 parent: 2 - - uid: 1660 - components: - - type: Transform - pos: -36.5,10.5 - parent: 2 - uid: 1661 components: - type: Transform @@ -118754,11 +119107,6 @@ entities: - type: Transform pos: 25.5,15.5 parent: 2 - - uid: 1765 - components: - - type: Transform - pos: -24.5,22.5 - parent: 2 - uid: 1780 components: - type: Transform @@ -118864,16 +119212,6 @@ entities: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 2059 - components: - - type: Transform - pos: -17.5,1.5 - parent: 2 - - uid: 2067 - components: - - type: Transform - pos: -3.5,19.5 - parent: 2 - uid: 2069 components: - type: Transform @@ -119004,11 +119342,6 @@ entities: - type: Transform pos: 37.5,-63.5 parent: 2 - - uid: 2351 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 2 - uid: 2353 components: - type: Transform @@ -119074,11 +119407,6 @@ entities: - type: Transform pos: -3.5,-26.5 parent: 2 - - uid: 2573 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 2 - uid: 2574 components: - type: Transform @@ -119094,11 +119422,6 @@ entities: - type: Transform pos: 9.5,-16.5 parent: 2 - - uid: 2603 - components: - - type: Transform - pos: -19.5,11.5 - parent: 2 - uid: 2609 components: - type: Transform @@ -119139,11 +119462,6 @@ entities: - type: Transform pos: -21.5,-12.5 parent: 2 - - uid: 2682 - components: - - type: Transform - pos: -34.5,13.5 - parent: 2 - uid: 2685 components: - type: Transform @@ -119219,21 +119537,11 @@ entities: - type: Transform pos: 40.5,-51.5 parent: 2 - - uid: 2830 - components: - - type: Transform - pos: -17.5,9.5 - parent: 2 - uid: 2834 components: - type: Transform pos: -19.5,10.5 parent: 2 - - uid: 2862 - components: - - type: Transform - pos: -20.5,0.5 - parent: 2 - uid: 2879 components: - type: Transform @@ -119289,10 +119597,10 @@ entities: - type: Transform pos: 11.5,-7.5 parent: 2 - - uid: 2961 + - uid: 2963 components: - type: Transform - pos: 17.5,-5.5 + pos: 30.5,14.5 parent: 2 - uid: 2989 components: @@ -119324,11 +119632,6 @@ entities: - type: Transform pos: -2.5,13.5 parent: 2 - - uid: 3058 - components: - - type: Transform - pos: -1.5,-33.5 - parent: 2 - uid: 3070 components: - type: Transform @@ -119364,11 +119667,6 @@ entities: - type: Transform pos: -10.5,-47.5 parent: 2 - - uid: 3099 - components: - - type: Transform - pos: -19.5,15.5 - parent: 2 - uid: 3100 components: - type: Transform @@ -119479,11 +119777,6 @@ entities: - type: Transform pos: -32.5,-59.5 parent: 2 - - uid: 3190 - components: - - type: Transform - pos: -5.5,23.5 - parent: 2 - uid: 3199 components: - type: Transform @@ -119499,11 +119792,6 @@ entities: - type: Transform pos: -18.5,-13.5 parent: 2 - - uid: 3209 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 2 - uid: 3210 components: - type: Transform @@ -119514,11 +119802,6 @@ entities: - type: Transform pos: -4.5,-33.5 parent: 2 - - uid: 3212 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 2 - uid: 3214 components: - type: Transform @@ -119529,11 +119812,6 @@ entities: - type: Transform pos: -21.5,32.5 parent: 2 - - uid: 3218 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 2 - uid: 3223 components: - type: Transform @@ -119659,6 +119937,11 @@ entities: - type: Transform pos: 58.5,-78.5 parent: 2 + - uid: 3710 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 - uid: 3797 components: - type: Transform @@ -119729,11 +120012,6 @@ entities: - type: Transform pos: 75.5,-64.5 parent: 2 - - uid: 4189 - components: - - type: Transform - pos: -25.5,22.5 - parent: 2 - uid: 4195 components: - type: Transform @@ -120124,11 +120402,6 @@ entities: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 4974 - components: - - type: Transform - pos: -17.5,6.5 - parent: 2 - uid: 4989 components: - type: Transform @@ -120144,11 +120417,6 @@ entities: - type: Transform pos: -8.5,24.5 parent: 2 - - uid: 5041 - components: - - type: Transform - pos: 27.5,13.5 - parent: 2 - uid: 5065 components: - type: Transform @@ -120259,21 +120527,6 @@ entities: - type: Transform pos: -64.5,-7.5 parent: 2 - - uid: 5200 - components: - - type: Transform - pos: 39.5,7.5 - parent: 2 - - uid: 5201 - components: - - type: Transform - pos: 39.5,8.5 - parent: 2 - - uid: 5206 - components: - - type: Transform - pos: 36.5,8.5 - parent: 2 - uid: 5212 components: - type: Transform @@ -120324,11 +120577,6 @@ entities: - type: Transform pos: -31.5,21.5 parent: 2 - - uid: 5319 - components: - - type: Transform - pos: -32.5,20.5 - parent: 2 - uid: 5324 components: - type: Transform @@ -120339,11 +120587,6 @@ entities: - type: Transform pos: 4.5,28.5 parent: 2 - - uid: 5331 - components: - - type: Transform - pos: -34.5,24.5 - parent: 2 - uid: 5334 components: - type: Transform @@ -120379,16 +120622,6 @@ entities: - type: Transform pos: -35.5,21.5 parent: 2 - - uid: 5344 - components: - - type: Transform - pos: -32.5,22.5 - parent: 2 - - uid: 5346 - components: - - type: Transform - pos: -35.5,24.5 - parent: 2 - uid: 5349 components: - type: Transform @@ -120494,16 +120727,6 @@ entities: - type: Transform pos: -56.5,-13.5 parent: 2 - - uid: 5512 - components: - - type: Transform - pos: -17.5,5.5 - parent: 2 - - uid: 5513 - components: - - type: Transform - pos: -9.5,14.5 - parent: 2 - uid: 5515 components: - type: Transform @@ -120839,11 +121062,6 @@ entities: - type: Transform pos: 36.5,26.5 parent: 2 - - uid: 5886 - components: - - type: Transform - pos: 36.5,10.5 - parent: 2 - uid: 5896 components: - type: Transform @@ -120874,11 +121092,6 @@ entities: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 5913 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 2 - uid: 5922 components: - type: Transform @@ -120924,11 +121137,6 @@ entities: - type: Transform pos: 44.5,-79.5 parent: 2 - - uid: 6056 - components: - - type: Transform - pos: -32.5,16.5 - parent: 2 - uid: 6059 components: - type: Transform @@ -120944,11 +121152,6 @@ entities: - type: Transform pos: 30.5,40.5 parent: 2 - - uid: 6107 - components: - - type: Transform - pos: -32.5,17.5 - parent: 2 - uid: 6122 components: - type: Transform @@ -121534,16 +121737,6 @@ entities: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 6502 - components: - - type: Transform - pos: 39.5,9.5 - parent: 2 - - uid: 6505 - components: - - type: Transform - pos: 37.5,7.5 - parent: 2 - uid: 6506 components: - type: Transform @@ -121999,11 +122192,6 @@ entities: - type: Transform pos: -32.5,-65.5 parent: 2 - - uid: 7327 - components: - - type: Transform - pos: 41.5,12.5 - parent: 2 - uid: 7334 components: - type: Transform @@ -122019,16 +122207,6 @@ entities: - type: Transform pos: 53.5,-60.5 parent: 2 - - uid: 7342 - components: - - type: Transform - pos: 40.5,10.5 - parent: 2 - - uid: 7345 - components: - - type: Transform - pos: 39.5,10.5 - parent: 2 - uid: 7347 components: - type: Transform @@ -122104,11 +122282,6 @@ entities: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 7502 - components: - - type: Transform - pos: -22.5,7.5 - parent: 2 - uid: 7505 components: - type: Transform @@ -122254,26 +122427,11 @@ entities: - type: Transform pos: -45.5,-49.5 parent: 2 - - uid: 7814 - components: - - type: Transform - pos: -2.5,-50.5 - parent: 2 - uid: 7819 components: - type: Transform pos: -52.5,-34.5 parent: 2 - - uid: 7828 - components: - - type: Transform - pos: 9.5,-50.5 - parent: 2 - - uid: 7838 - components: - - type: Transform - pos: 5.5,-50.5 - parent: 2 - uid: 7839 components: - type: Transform @@ -122304,11 +122462,6 @@ entities: - type: Transform pos: -33.5,-70.5 parent: 2 - - uid: 7856 - components: - - type: Transform - pos: -6.5,-50.5 - parent: 2 - uid: 7947 components: - type: Transform @@ -122459,11 +122612,6 @@ entities: - type: Transform pos: -48.5,-41.5 parent: 2 - - uid: 8175 - components: - - type: Transform - pos: -20.5,18.5 - parent: 2 - uid: 8254 components: - type: Transform @@ -122519,16 +122667,6 @@ entities: - type: Transform pos: 26.5,12.5 parent: 2 - - uid: 8446 - components: - - type: Transform - pos: -32.5,19.5 - parent: 2 - - uid: 8461 - components: - - type: Transform - pos: -16.5,23.5 - parent: 2 - uid: 8467 components: - type: Transform @@ -122564,6 +122702,11 @@ entities: - type: Transform pos: -68.5,-17.5 parent: 2 + - uid: 8594 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 - uid: 8600 components: - type: Transform @@ -122674,6 +122817,11 @@ entities: - type: Transform pos: 43.5,1.5 parent: 2 + - uid: 8785 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 - uid: 8796 components: - type: Transform @@ -122689,6 +122837,11 @@ entities: - type: Transform pos: 43.5,3.5 parent: 2 + - uid: 8864 + components: + - type: Transform + pos: -35.5,19.5 + parent: 2 - uid: 8884 components: - type: Transform @@ -122709,11 +122862,6 @@ entities: - type: Transform pos: 43.5,-0.5 parent: 2 - - uid: 8964 - components: - - type: Transform - pos: -9.5,15.5 - parent: 2 - uid: 8969 components: - type: Transform @@ -122724,11 +122872,6 @@ entities: - type: Transform pos: 45.5,-43.5 parent: 2 - - uid: 9001 - components: - - type: Transform - pos: -27.5,23.5 - parent: 2 - uid: 9011 components: - type: Transform @@ -122819,11 +122962,6 @@ entities: - type: Transform pos: 43.5,-73.5 parent: 2 - - uid: 9557 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 2 - uid: 9566 components: - type: Transform @@ -122929,21 +123067,11 @@ entities: - type: Transform pos: 22.5,12.5 parent: 2 - - uid: 9799 - components: - - type: Transform - pos: -9.5,23.5 - parent: 2 - uid: 9839 components: - type: Transform pos: -12.5,23.5 parent: 2 - - uid: 9841 - components: - - type: Transform - pos: -10.5,23.5 - parent: 2 - uid: 9846 components: - type: Transform @@ -123084,11 +123212,6 @@ entities: - type: Transform pos: -17.5,3.5 parent: 2 - - uid: 10175 - components: - - type: Transform - pos: -17.5,17.5 - parent: 2 - uid: 10384 components: - type: Transform @@ -123144,16 +123267,6 @@ entities: - type: Transform pos: -10.5,32.5 parent: 2 - - uid: 10715 - components: - - type: Transform - pos: 12.5,29.5 - parent: 2 - - uid: 10777 - components: - - type: Transform - pos: -10.5,28.5 - parent: 2 - uid: 10778 components: - type: Transform @@ -123279,11 +123392,6 @@ entities: - type: Transform pos: 66.5,-84.5 parent: 2 - - uid: 10978 - components: - - type: Transform - pos: -2.5,16.5 - parent: 2 - uid: 10985 components: - type: Transform @@ -123299,11 +123407,6 @@ entities: - type: Transform pos: 74.5,-59.5 parent: 2 - - uid: 11129 - components: - - type: Transform - pos: -33.5,15.5 - parent: 2 - uid: 11130 components: - type: Transform @@ -123319,11 +123422,6 @@ entities: - type: Transform pos: -23.5,-65.5 parent: 2 - - uid: 11165 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - uid: 11209 components: - type: Transform @@ -123379,11 +123477,6 @@ entities: - type: Transform pos: 26.5,-32.5 parent: 2 - - uid: 11386 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 2 - uid: 11389 components: - type: Transform @@ -123509,11 +123602,6 @@ entities: - type: Transform pos: 52.5,-30.5 parent: 2 - - uid: 12555 - components: - - type: Transform - pos: -19.5,12.5 - parent: 2 - uid: 12670 components: - type: Transform @@ -123534,11 +123622,6 @@ entities: - type: Transform pos: -46.5,-34.5 parent: 2 - - uid: 12722 - components: - - type: Transform - pos: -17.5,18.5 - parent: 2 - uid: 12981 components: - type: Transform @@ -123569,10 +123652,10 @@ entities: - type: Transform pos: -20.5,15.5 parent: 2 - - uid: 13389 + - uid: 13469 components: - type: Transform - pos: 28.5,-13.5 + pos: -37.5,19.5 parent: 2 - uid: 13540 components: @@ -123619,11 +123702,6 @@ entities: - type: Transform pos: -43.5,-38.5 parent: 2 - - uid: 14209 - components: - - type: Transform - pos: -17.5,23.5 - parent: 2 - uid: 14211 components: - type: Transform @@ -123634,11 +123712,6 @@ entities: - type: Transform pos: -30.5,-7.5 parent: 2 - - uid: 14247 - components: - - type: Transform - pos: -20.5,17.5 - parent: 2 - uid: 14263 components: - type: Transform @@ -123689,6 +123762,11 @@ entities: - type: Transform pos: -30.5,-1.5 parent: 2 + - uid: 14423 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 - uid: 14456 components: - type: Transform @@ -123699,11 +123777,6 @@ entities: - type: Transform pos: 45.5,-42.5 parent: 2 - - uid: 14509 - components: - - type: Transform - pos: -35.5,10.5 - parent: 2 - uid: 14510 components: - type: Transform @@ -123819,21 +123892,11 @@ entities: - type: Transform pos: -34.5,10.5 parent: 2 - - uid: 15144 - components: - - type: Transform - pos: -34.5,6.5 - parent: 2 - uid: 15195 components: - type: Transform pos: -42.5,-25.5 parent: 2 - - uid: 15283 - components: - - type: Transform - pos: 16.5,16.5 - parent: 2 - uid: 15286 components: - type: Transform @@ -123859,21 +123922,11 @@ entities: - type: Transform pos: -45.5,-26.5 parent: 2 - - uid: 15309 - components: - - type: Transform - pos: -35.5,8.5 - parent: 2 - uid: 15328 components: - type: Transform pos: -10.5,34.5 parent: 2 - - uid: 15352 - components: - - type: Transform - pos: -21.5,13.5 - parent: 2 - uid: 15361 components: - type: Transform @@ -123889,10 +123942,10 @@ entities: - type: Transform pos: -23.5,9.5 parent: 2 - - uid: 15462 + - uid: 15389 components: - type: Transform - pos: -17.5,14.5 + pos: -26.5,24.5 parent: 2 - uid: 15467 components: @@ -123949,11 +124002,6 @@ entities: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 15732 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - uid: 15734 components: - type: Transform @@ -124219,6 +124267,11 @@ entities: - type: Transform pos: 25.5,-45.5 parent: 2 + - uid: 15996 + components: + - type: Transform + pos: -35.5,16.5 + parent: 2 - uid: 15999 components: - type: Transform @@ -124244,11 +124297,6 @@ entities: - type: Transform pos: -13.5,-55.5 parent: 2 - - uid: 16060 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 16080 components: - type: Transform @@ -124519,20 +124567,15 @@ entities: - type: Transform pos: 51.5,-72.5 parent: 2 - - uid: 17275 - components: - - type: Transform - pos: -28.5,31.5 - parent: 2 - uid: 17283 components: - type: Transform pos: -30.5,-8.5 parent: 2 - - uid: 17284 + - uid: 17655 components: - type: Transform - pos: -28.5,28.5 + pos: -35.5,18.5 parent: 2 - uid: 17714 components: @@ -124604,11 +124647,6 @@ entities: - type: Transform pos: 89.5,-11.5 parent: 2 - - uid: 17854 - components: - - type: Transform - pos: -34.5,15.5 - parent: 2 - uid: 17855 components: - type: Transform @@ -124659,11 +124697,6 @@ entities: - type: Transform pos: 95.5,-20.5 parent: 2 - - uid: 18201 - components: - - type: Transform - pos: -26.5,37.5 - parent: 2 - uid: 18208 components: - type: Transform @@ -124729,21 +124762,11 @@ entities: - type: Transform pos: -27.5,36.5 parent: 2 - - uid: 18269 - components: - - type: Transform - pos: -20.5,40.5 - parent: 2 - uid: 18270 components: - type: Transform pos: -10.5,35.5 parent: 2 - - uid: 18303 - components: - - type: Transform - pos: -12.5,37.5 - parent: 2 - uid: 18423 components: - type: Transform @@ -124784,11 +124807,6 @@ entities: - type: Transform pos: 97.5,-29.5 parent: 2 - - uid: 18514 - components: - - type: Transform - pos: -33.5,16.5 - parent: 2 - uid: 18519 components: - type: Transform @@ -124969,16 +124987,6 @@ entities: - type: Transform pos: -19.5,4.5 parent: 2 - - uid: 19601 - components: - - type: Transform - pos: -19.5,3.5 - parent: 2 - - uid: 19605 - components: - - type: Transform - pos: -19.5,2.5 - parent: 2 - uid: 19626 components: - type: Transform @@ -125069,8 +125077,38 @@ entities: - type: Transform pos: 36.5,-49.5 parent: 2 + - uid: 20665 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 20666 + components: + - type: Transform + pos: -34.5,19.5 + parent: 2 + - uid: 20670 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 20671 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 - proto: WallReinforcedRust entities: + - uid: 141 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 - uid: 249 components: - type: Transform @@ -125156,6 +125194,11 @@ entities: - type: Transform pos: -59.5,-9.5 parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 - uid: 1079 components: - type: Transform @@ -125226,15 +125269,55 @@ entities: - type: Transform pos: -68.5,-6.5 parent: 2 + - uid: 3190 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 - uid: 3401 components: - type: Transform pos: 57.5,-77.5 parent: 2 - - uid: 3525 + - uid: 3714 components: - type: Transform - pos: 17.5,-6.5 + pos: 16.5,20.5 parent: 2 - uid: 3719 components: @@ -125251,11 +125334,31 @@ entities: - type: Transform pos: 5.5,9.5 parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 - uid: 4144 components: - type: Transform pos: 75.5,-66.5 parent: 2 + - uid: 4352 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 - uid: 4696 components: - type: Transform @@ -125271,11 +125374,36 @@ entities: - type: Transform pos: -43.5,-36.5 parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 - uid: 5146 components: - type: Transform pos: -68.5,-15.5 parent: 2 + - uid: 5165 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 - uid: 5192 components: - type: Transform @@ -125291,16 +125419,46 @@ entities: - type: Transform pos: -65.5,-7.5 parent: 2 + - uid: 5221 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 - uid: 5274 components: - type: Transform pos: -64.5,-8.5 parent: 2 + - uid: 5331 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 - uid: 5378 components: - type: Transform pos: 76.5,-47.5 parent: 2 + - uid: 5512 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 - uid: 5522 components: - type: Transform @@ -125371,6 +125529,11 @@ entities: - type: Transform pos: -23.5,8.5 parent: 2 + - uid: 5814 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 - uid: 5848 components: - type: Transform @@ -125386,6 +125549,16 @@ entities: - type: Transform pos: -25.5,18.5 parent: 2 + - uid: 5881 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 - uid: 5947 components: - type: Transform @@ -125471,6 +125644,11 @@ entities: - type: Transform pos: 65.5,-37.5 parent: 2 + - uid: 6604 + components: + - type: Transform + pos: -32.5,22.5 + parent: 2 - uid: 6619 components: - type: Transform @@ -125611,6 +125789,16 @@ entities: - type: Transform pos: 80.5,-43.5 parent: 2 + - uid: 6995 + components: + - type: Transform + pos: -35.5,24.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 - uid: 7026 components: - type: Transform @@ -125696,11 +125884,21 @@ entities: - type: Transform pos: -32.5,-19.5 parent: 2 + - uid: 7352 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 - uid: 7363 components: - type: Transform pos: -28.5,-70.5 parent: 2 + - uid: 7370 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 - uid: 7389 components: - type: Transform @@ -125711,16 +125909,6 @@ entities: - type: Transform pos: 30.5,17.5 parent: 2 - - uid: 7403 - components: - - type: Transform - pos: 37.5,10.5 - parent: 2 - - uid: 7413 - components: - - type: Transform - pos: 38.5,7.5 - parent: 2 - uid: 7417 components: - type: Transform @@ -125794,17 +125982,57 @@ entities: - uid: 7572 components: - type: Transform - pos: 41.5,11.5 + pos: -16.5,23.5 parent: 2 - uid: 7605 components: - type: Transform pos: 26.5,-29.5 parent: 2 - - uid: 7618 + - uid: 7634 components: - type: Transform - pos: 13.5,-7.5 + pos: -27.5,23.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: -19.5,12.5 parent: 2 - uid: 7662 components: @@ -125816,6 +126044,11 @@ entities: - type: Transform pos: 34.5,40.5 parent: 2 + - uid: 7701 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 - uid: 7717 components: - type: Transform @@ -125871,11 +126104,6 @@ entities: - type: Transform pos: -32.5,-66.5 parent: 2 - - uid: 7815 - components: - - type: Transform - pos: 36.5,7.5 - parent: 2 - uid: 7820 components: - type: Transform @@ -125961,11 +126189,6 @@ entities: - type: Transform pos: 41.5,13.5 parent: 2 - - uid: 8122 - components: - - type: Transform - pos: 41.5,10.5 - parent: 2 - uid: 8144 components: - type: Transform @@ -125976,6 +126199,11 @@ entities: - type: Transform pos: -53.5,-26.5 parent: 2 + - uid: 8175 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 - uid: 8201 components: - type: Transform @@ -126006,6 +126234,11 @@ entities: - type: Transform pos: 49.5,8.5 parent: 2 + - uid: 8257 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 - uid: 8262 components: - type: Transform @@ -126091,6 +126324,16 @@ entities: - type: Transform pos: -49.5,-34.5 parent: 2 + - uid: 8446 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 - uid: 8470 components: - type: Transform @@ -126126,6 +126369,11 @@ entities: - type: Transform pos: 5.5,-16.5 parent: 2 + - uid: 8679 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 - uid: 8746 components: - type: Transform @@ -126166,6 +126414,11 @@ entities: - type: Transform pos: -49.5,-47.5 parent: 2 + - uid: 9001 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 - uid: 9031 components: - type: Transform @@ -126276,11 +126529,21 @@ entities: - type: Transform pos: 26.5,13.5 parent: 2 + - uid: 9562 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 - uid: 9569 components: - type: Transform pos: 0.5,-13.5 parent: 2 + - uid: 9571 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 - uid: 9617 components: - type: Transform @@ -126306,6 +126569,16 @@ entities: - type: Transform pos: 20.5,-10.5 parent: 2 + - uid: 9799 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 - uid: 9856 components: - type: Transform @@ -126326,6 +126599,11 @@ entities: - type: Transform pos: 25.5,-13.5 parent: 2 + - uid: 9939 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 - uid: 10002 components: - type: Transform @@ -126346,6 +126624,11 @@ entities: - type: Transform pos: -13.5,-5.5 parent: 2 + - uid: 10175 + components: + - type: Transform + pos: -28.5,31.5 + parent: 2 - uid: 10198 components: - type: Transform @@ -126396,11 +126679,26 @@ entities: - type: Transform pos: 40.5,-25.5 parent: 2 + - uid: 10715 + components: + - type: Transform + pos: -28.5,28.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + pos: -26.5,37.5 + parent: 2 - uid: 10885 components: - type: Transform pos: 84.5,-38.5 parent: 2 + - uid: 10978 + components: + - type: Transform + pos: -20.5,40.5 + parent: 2 - uid: 10993 components: - type: Transform @@ -126476,6 +126774,11 @@ entities: - type: Transform pos: 0.5,-14.5 parent: 2 + - uid: 11165 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 - uid: 11875 components: - type: Transform @@ -126541,6 +126844,11 @@ entities: - type: Transform pos: 32.5,-50.5 parent: 2 + - uid: 12127 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 - uid: 12133 components: - type: Transform @@ -126576,6 +126884,11 @@ entities: - type: Transform pos: 50.5,-75.5 parent: 2 + - uid: 12504 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 - uid: 12601 components: - type: Transform @@ -126936,6 +127249,11 @@ entities: - type: Transform pos: 66.5,-37.5 parent: 2 + - uid: 17975 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 - uid: 18196 components: - type: Transform @@ -127011,6 +127329,16 @@ entities: - type: Transform pos: 39.5,-78.5 parent: 2 + - uid: 20656 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 20673 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 - proto: WallSolid entities: - uid: 4 @@ -127038,11 +127366,6 @@ entities: - type: Transform pos: -22.5,-6.5 parent: 2 - - uid: 165 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - uid: 205 components: - type: Transform @@ -127098,11 +127421,6 @@ entities: - type: Transform pos: 18.5,11.5 parent: 2 - - uid: 406 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 2 - uid: 459 components: - type: Transform @@ -127178,16 +127496,6 @@ entities: - type: Transform pos: 14.5,14.5 parent: 2 - - uid: 1053 - components: - - type: Transform - pos: -12.5,21.5 - parent: 2 - - uid: 1070 - components: - - type: Transform - pos: -11.5,21.5 - parent: 2 - uid: 1088 components: - type: Transform @@ -127233,11 +127541,6 @@ entities: - type: Transform pos: -10.5,-0.5 parent: 2 - - uid: 1556 - components: - - type: Transform - pos: -19.5,21.5 - parent: 2 - uid: 1574 components: - type: Transform @@ -127338,11 +127641,6 @@ entities: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 2082 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 2 - uid: 2094 components: - type: Transform @@ -127363,16 +127661,6 @@ entities: - type: Transform pos: 13.5,17.5 parent: 2 - - uid: 2148 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 2 - - uid: 2161 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 2 - uid: 2179 components: - type: Transform @@ -127398,11 +127686,6 @@ entities: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 2273 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 2 - uid: 2284 components: - type: Transform @@ -127423,11 +127706,6 @@ entities: - type: Transform pos: -14.5,21.5 parent: 2 - - uid: 2340 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 2 - uid: 2344 components: - type: Transform @@ -127453,11 +127731,6 @@ entities: - type: Transform pos: -20.5,21.5 parent: 2 - - uid: 2426 - components: - - type: Transform - pos: -18.5,21.5 - parent: 2 - uid: 2431 components: - type: Transform @@ -127543,11 +127816,6 @@ entities: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 2757 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 2 - uid: 2856 components: - type: Transform @@ -127573,6 +127841,11 @@ entities: - type: Transform pos: -12.5,-16.5 parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 - uid: 2983 components: - type: Transform @@ -127583,6 +127856,11 @@ entities: - type: Transform pos: -44.5,-44.5 parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 - uid: 3067 components: - type: Transform @@ -127613,6 +127891,11 @@ entities: - type: Transform pos: -18.5,-49.5 parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 - uid: 3160 components: - type: Transform @@ -127643,16 +127926,6 @@ entities: - type: Transform pos: 2.5,-31.5 parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 2 - - uid: 3219 - components: - - type: Transform - pos: 2.5,-29.5 - parent: 2 - uid: 3220 components: - type: Transform @@ -127758,21 +128031,6 @@ entities: - type: Transform pos: -16.5,-26.5 parent: 2 - - uid: 3339 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 2 - - uid: 3340 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 2 - - uid: 3341 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 2 - uid: 3342 components: - type: Transform @@ -127788,11 +128046,6 @@ entities: - type: Transform pos: -20.5,-21.5 parent: 2 - - uid: 3362 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - uid: 3376 components: - type: Transform @@ -127908,10 +128161,10 @@ entities: - type: Transform pos: 20.5,9.5 parent: 2 - - uid: 3586 + - uid: 3597 components: - type: Transform - pos: 17.5,-7.5 + pos: 38.5,7.5 parent: 2 - uid: 3634 components: @@ -128083,11 +128336,6 @@ entities: - type: Transform pos: -26.5,-37.5 parent: 2 - - uid: 3929 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 2 - uid: 3947 components: - type: Transform @@ -128458,11 +128706,6 @@ entities: - type: Transform pos: 49.5,-38.5 parent: 2 - - uid: 4954 - components: - - type: Transform - pos: 13.5,21.5 - parent: 2 - uid: 4967 components: - type: Transform @@ -128493,16 +128736,16 @@ entities: - type: Transform pos: 7.5,-32.5 parent: 2 - - uid: 5221 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 2 - uid: 5304 components: - type: Transform pos: 7.5,-37.5 parent: 2 + - uid: 5319 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 - uid: 5351 components: - type: Transform @@ -128523,6 +128766,11 @@ entities: - type: Transform pos: -26.5,-38.5 parent: 2 + - uid: 5513 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 - uid: 5542 components: - type: Transform @@ -128578,6 +128826,11 @@ entities: - type: Transform pos: -26.5,-39.5 parent: 2 + - uid: 5723 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 - uid: 5733 components: - type: Transform @@ -128718,6 +128971,11 @@ entities: - type: Transform pos: 6.5,-29.5 parent: 2 + - uid: 5913 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 - uid: 5915 components: - type: Transform @@ -128993,6 +129251,11 @@ entities: - type: Transform pos: -18.5,-48.5 parent: 2 + - uid: 6505 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 - uid: 6507 components: - type: Transform @@ -129188,21 +129451,6 @@ entities: - type: Transform pos: 38.5,1.5 parent: 2 - - uid: 7279 - components: - - type: Transform - pos: 38.5,4.5 - parent: 2 - - uid: 7280 - components: - - type: Transform - pos: 37.5,4.5 - parent: 2 - - uid: 7282 - components: - - type: Transform - pos: 35.5,4.5 - parent: 2 - uid: 7283 components: - type: Transform @@ -129243,11 +129491,6 @@ entities: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 7302 - components: - - type: Transform - pos: 39.5,4.5 - parent: 2 - uid: 7319 components: - type: Transform @@ -129258,6 +129501,11 @@ entities: - type: Transform pos: 34.5,5.5 parent: 2 + - uid: 7403 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 - uid: 7439 components: - type: Transform @@ -129293,6 +129541,11 @@ entities: - type: Transform pos: 12.5,-50.5 parent: 2 + - uid: 7618 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 - uid: 7666 components: - type: Transform @@ -129308,11 +129561,31 @@ entities: - type: Transform pos: 38.5,-33.5 parent: 2 + - uid: 7788 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 - uid: 7843 components: - type: Transform pos: -31.5,-52.5 parent: 2 + - uid: 7856 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 2 - uid: 8013 components: - type: Transform @@ -129323,6 +129596,11 @@ entities: - type: Transform pos: -38.5,-44.5 parent: 2 + - uid: 8018 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 - uid: 8021 components: - type: Transform @@ -129383,11 +129661,6 @@ entities: - type: Transform pos: -36.5,-55.5 parent: 2 - - uid: 8257 - components: - - type: Transform - pos: -36.5,-52.5 - parent: 2 - uid: 8259 components: - type: Transform @@ -129463,6 +129736,16 @@ entities: - type: Transform pos: 44.5,-27.5 parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 - uid: 8767 components: - type: Transform @@ -129473,6 +129756,11 @@ entities: - type: Transform pos: -11.5,18.5 parent: 2 + - uid: 8853 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 - uid: 8886 components: - type: Transform @@ -129488,6 +129776,11 @@ entities: - type: Transform pos: 49.5,-26.5 parent: 2 + - uid: 8964 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 - uid: 8984 components: - type: Transform @@ -129583,11 +129876,6 @@ entities: - type: Transform pos: 23.5,-58.5 parent: 2 - - uid: 9421 - components: - - type: Transform - pos: 30.5,5.5 - parent: 2 - uid: 9422 components: - type: Transform @@ -129653,16 +129941,6 @@ entities: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 9562 - components: - - type: Transform - pos: 17.5,9.5 - parent: 2 - - uid: 9571 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 2 - uid: 9587 components: - type: Transform @@ -129778,11 +130056,6 @@ entities: - type: Transform pos: -34.5,-42.5 parent: 2 - - uid: 9939 - components: - - type: Transform - pos: -14.5,19.5 - parent: 2 - uid: 9995 components: - type: Transform @@ -129848,6 +130121,11 @@ entities: - type: Transform pos: -6.5,12.5 parent: 2 + - uid: 10696 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 - uid: 10799 components: - type: Transform @@ -129948,6 +130226,11 @@ entities: - type: Transform pos: 12.5,-56.5 parent: 2 + - uid: 11205 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 - uid: 11306 components: - type: Transform @@ -130013,20 +130296,10 @@ entities: - type: Transform pos: 49.5,-58.5 parent: 2 - - uid: 12504 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 - uid: 12505 components: - type: Transform - pos: 17.5,13.5 - parent: 2 - - uid: 12531 - components: - - type: Transform - pos: -14.5,-26.5 + pos: 13.5,21.5 parent: 2 - uid: 12564 components: @@ -130053,6 +130326,11 @@ entities: - type: Transform pos: 41.5,-61.5 parent: 2 + - uid: 13015 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 - uid: 13144 components: - type: Transform @@ -130106,7 +130384,7 @@ entities: - uid: 13262 components: - type: Transform - pos: 14.5,-14.5 + pos: 12.5,-27.5 parent: 2 - uid: 13304 components: @@ -130118,6 +130396,11 @@ entities: - type: Transform pos: 41.5,-58.5 parent: 2 + - uid: 13389 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 - uid: 13808 components: - type: Transform @@ -130198,11 +130481,6 @@ entities: - type: Transform pos: -28.5,3.5 parent: 2 - - uid: 14822 - components: - - type: Transform - pos: 41.5,7.5 - parent: 2 - uid: 14824 components: - type: Transform @@ -130221,7 +130499,7 @@ entities: - uid: 14842 components: - type: Transform - pos: 11.5,-16.5 + pos: -6.5,-51.5 parent: 2 - uid: 14845 components: @@ -130283,6 +130561,11 @@ entities: - type: Transform pos: 15.5,-20.5 parent: 2 + - uid: 15345 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 - uid: 15353 components: - type: Transform @@ -130293,26 +130576,11 @@ entities: - type: Transform pos: 19.5,-17.5 parent: 2 - - uid: 15406 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 2 - uid: 15468 components: - type: Transform pos: 10.5,-14.5 parent: 2 - - uid: 15473 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 2 - - uid: 15486 - components: - - type: Transform - pos: -29.5,-2.5 - parent: 2 - uid: 15704 components: - type: Transform @@ -130341,7 +130609,7 @@ entities: - uid: 15903 components: - type: Transform - pos: 18.5,-12.5 + pos: 7.5,21.5 parent: 2 - uid: 15939 components: @@ -130353,11 +130621,6 @@ entities: - type: Transform pos: 0.5,21.5 parent: 2 - - uid: 15957 - components: - - type: Transform - pos: 2.5,-33.5 - parent: 2 - uid: 16209 components: - type: Transform @@ -130383,16 +130646,6 @@ entities: - type: Transform pos: 1.5,21.5 parent: 2 - - uid: 16752 - components: - - type: Transform - pos: 34.5,6.5 - parent: 2 - - uid: 16777 - components: - - type: Transform - pos: 7.5,21.5 - parent: 2 - uid: 16880 components: - type: Transform @@ -130408,6 +130661,16 @@ entities: - type: Transform pos: -42.5,-4.5 parent: 2 + - uid: 17323 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 17544 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 - uid: 17563 components: - type: Transform @@ -130428,6 +130691,11 @@ entities: - type: Transform pos: 83.5,-15.5 parent: 2 + - uid: 18079 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 - uid: 18094 components: - type: Transform @@ -130518,18 +130786,28 @@ entities: - type: Transform pos: -28.5,-6.5 parent: 2 - - uid: 18586 + - uid: 18567 components: - type: Transform - pos: -27.5,-6.5 + pos: 41.5,10.5 parent: 2 - uid: 18863 components: - type: Transform pos: 46.5,-13.5 parent: 2 + - uid: 18970 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 - proto: WallSolidRust entities: + - uid: 206 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 - uid: 856 components: - type: Transform @@ -130545,6 +130823,21 @@ entities: - type: Transform pos: 66.5,-40.5 parent: 2 + - uid: 3084 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 - uid: 4867 components: - type: Transform @@ -130595,6 +130888,11 @@ entities: - type: Transform pos: 12.5,-52.5 parent: 2 + - uid: 9557 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 - uid: 9708 components: - type: Transform @@ -130800,11 +131098,21 @@ entities: - type: Transform pos: 4.5,-40.5 parent: 2 + - uid: 11275 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 - uid: 11368 components: - type: Transform pos: 62.5,-76.5 parent: 2 + - uid: 11386 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 - uid: 11523 components: - type: Transform @@ -131065,16 +131373,51 @@ entities: - type: Transform pos: 49.5,-56.5 parent: 2 + - uid: 12555 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 - uid: 12603 components: - type: Transform pos: 41.5,-52.5 parent: 2 + - uid: 12722 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 2 - uid: 13221 components: - type: Transform pos: 50.5,-50.5 parent: 2 + - uid: 13390 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 - uid: 14479 components: - type: Transform @@ -131085,16 +131428,111 @@ entities: - type: Transform pos: 46.5,-38.5 parent: 2 + - uid: 14509 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 - uid: 14517 components: - type: Transform pos: 45.5,-40.5 parent: 2 + - uid: 15144 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 15283 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: -36.5,-52.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 15957 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 16060 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 16162 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 2 - uid: 16210 components: - type: Transform pos: 68.5,-74.5 parent: 2 + - uid: 17120 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 - uid: 17166 components: - type: Transform @@ -131105,6 +131543,16 @@ entities: - type: Transform pos: 46.5,-59.5 parent: 2 + - uid: 17275 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 - uid: 17625 components: - type: Transform @@ -131165,6 +131613,16 @@ entities: - type: Transform pos: 89.5,-28.5 parent: 2 + - uid: 18967 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 18974 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 - uid: 19348 components: - type: Transform @@ -131238,6 +131696,11 @@ entities: parent: 2 - proto: WardrobePrisonFilled entities: + - uid: 179 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 - uid: 254 components: - type: Transform @@ -131369,10 +131832,10 @@ entities: - type: Transform pos: -31.5,-44.5 parent: 2 - - uid: 11591 + - uid: 14082 components: - type: Transform - pos: 35.5,3.5 + pos: 35.5,1.5 parent: 2 - uid: 16665 components: @@ -131386,6 +131849,11 @@ entities: - type: Transform pos: 19.5,-10.5 parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 - uid: 3447 components: - type: Transform @@ -131401,6 +131869,11 @@ entities: - type: Transform pos: 23.5,6.5 parent: 2 + - uid: 12255 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 - uid: 12373 components: - type: Transform @@ -131411,11 +131884,6 @@ entities: - type: Transform pos: -7.5,12.5 parent: 2 - - uid: 13812 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 2 - uid: 17165 components: - type: Transform @@ -131463,6 +131931,18 @@ entities: - type: Transform pos: -21.319635,10.6595335 parent: 2 +- proto: WeaponWaterPistol + entities: + - uid: 1138 + components: + - type: Transform + pos: 43.581413,6.3853054 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 43.341713,6.625055 + parent: 2 - proto: WeedSpray entities: - uid: 12882 @@ -131501,6 +131981,11 @@ entities: - type: Transform pos: 19.5,-11.5 parent: 2 + - uid: 3088 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 - uid: 5802 components: - type: Transform @@ -131586,12 +132071,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-51.5 parent: 2 - - uid: 11686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-5.5 - parent: 2 - uid: 13081 components: - type: Transform @@ -131654,12 +132133,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-23.5 parent: 2 - - uid: 3714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 2 - uid: 4225 components: - type: Transform @@ -132471,12 +132944,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-25.5 parent: 2 - - uid: 5165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-10.5 - parent: 2 - uid: 5187 components: - type: Transform @@ -132867,13 +133334,18 @@ entities: - type: Transform pos: 14.701017,-2.216905 parent: 2 - - uid: 18968 + - uid: 20660 components: - type: Transform - pos: -33.523952,4.761596 + pos: -33.619465,18.650682 parent: 2 - proto: WoodDoor entities: + - uid: 5206 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 - uid: 6103 components: - type: Transform @@ -132899,6 +133371,11 @@ entities: - type: Transform pos: 39.5,-13.5 parent: 2 + - uid: 20336 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 - proto: WoodenBench entities: - uid: 1319 From a77fcdec762c806db1c39d5a5861c0a1eca511c7 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:06:33 +0300 Subject: [PATCH 103/263] Gate map (#32032) * import * remove perma asteroid * remove cyrillic * ok * Remove Chromite island, Move AI, add cameras * remove mapped garbage * add station anchors * admeme teleporter * remove wapr points, add nav beacons * telecomm, camera servers, some atmos fix * crew server * remove white plating, fix MANY pipestacking * playtest bugs fixing * big update * bunch minor fixes * Update gate.yml * out of rotation --- .../Tests/PostMapInitTest.cs | 1 + Resources/Maps/gate.yml | 209625 +++++++++++++++ .../Objects/Devices/hand_teleporter.yml | 16 + .../Structures/Wallmounts/Signs/signs.yml | 9 + Resources/Prototypes/Maps/Pools/default.yml | 1 + Resources/Prototypes/Maps/gate.yml | 65 + .../Structures/Wallmounts/signs.rsi/bath.png | Bin 0 -> 458 bytes .../Structures/Wallmounts/signs.rsi/meta.json | 3 + 8 files changed, 209720 insertions(+) create mode 100644 Resources/Maps/gate.yml create mode 100644 Resources/Prototypes/Maps/gate.yml create mode 100644 Resources/Textures/Structures/Wallmounts/signs.rsi/bath.png diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 49a5146f69..7ac8ea0e4d 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -62,6 +62,7 @@ namespace Content.IntegrationTests.Tests "Train", "Oasis", "Cog", + "Gate", "Amber" }; diff --git a/Resources/Maps/gate.yml b/Resources/Maps/gate.yml new file mode 100644 index 0000000000..b4689490a7 --- /dev/null +++ b/Resources/Maps/gate.yml @@ -0,0 +1,209625 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 4: FloorAsphalt + 7: FloorAsteroidSand + 8: FloorAsteroidSandDug + 10: FloorAsteroidSandUnvariantized + 11: FloorAsteroidTile + 12: FloorAstroGrass + 6: FloorAstroIce + 5: FloorAstroSnow + 14: FloorBar + 15: FloorBasalt + 17: FloorBlueCircuit + 19: FloorBrokenWood + 20: FloorCarpetClown + 22: FloorCave + 23: FloorCaveDrought + 24: FloorChromite + 25: FloorClown + 26: FloorConcrete + 27: FloorConcreteMono + 28: FloorConcreteSmooth + 29: FloorDark + 30: FloorDarkDiagonal + 31: FloorDarkDiagonalMini + 32: FloorDarkHerringbone + 33: FloorDarkMini + 34: FloorDarkMono + 35: FloorDarkOffset + 36: FloorDarkPavement + 1: FloorDarkPavementVertical + 38: FloorDarkPlastic + 44: FloorFreezer + 45: FloorGlass + 46: FloorGold + 47: FloorGrass + 51: FloorGrayConcrete + 52: FloorGrayConcreteMono + 53: FloorGrayConcreteSmooth + 54: FloorGreenCircuit + 55: FloorGym + 57: FloorHullReinforced + 58: FloorHydro + 59: FloorIce + 60: FloorKitchen + 62: FloorLino + 64: FloorMetalDiamond + 65: FloorMime + 69: FloorMono + 70: FloorOldConcrete + 71: FloorOldConcreteMono + 72: FloorOldConcreteSmooth + 74: FloorPlanetGrass + 75: FloorPlastic + 76: FloorRGlass + 77: FloorReinforced + 78: FloorReinforcedHardened + 79: FloorRockVault + 80: FloorShowroom + 85: FloorShuttleWhite + 87: FloorSnow + 89: FloorSteel + 92: FloorSteelCheckerLight + 94: FloorSteelDiagonal + 95: FloorSteelDiagonalMini + 96: FloorSteelDirty + 97: FloorSteelHerringbone + 99: FloorSteelMini + 100: FloorSteelMono + 3: FloorSteelPavement + 103: FloorSteelPavementVertical + 104: FloorTechMaint + 105: FloorTechMaint2 + 106: FloorTechMaint3 + 108: FloorWhite + 109: FloorWhiteDiagonal + 111: FloorWhiteHerringbone + 112: FloorWhiteMini + 113: FloorWhiteMono + 114: FloorWhiteOffset + 117: FloorWhitePlastic + 118: FloorWood + 119: FloorWoodTile + 120: Lattice + 121: Plating + 122: PlatingAsteroid + 2: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: Parallax + parallax: AspidParallax + - uid: 2 + components: + - type: MetaData + name: Gate station + - type: Transform + pos: 38.852333,-88.573135 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: dwAAAAADdwAAAAABdwAAAAADdwAAAAABdwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAdwAAAAADdwAAAAAALgAAAAAAdwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAdwAAAAABdwAAAAADLgAAAAAAdwAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: WQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADdwAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACZAAAAAACZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAZAAAAAADZAAAAAADWQAAAAACWQAAAAAAWQAAAAABZAAAAAAAZAAAAAACZAAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAZAAAAAADZAAAAAABWQAAAAABWQAAAAABWQAAAAABZAAAAAACZAAAAAABZAAAAAAAZAAAAAADWQAAAAADWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAZAAAAAACZAAAAAABWQAAAAADWQAAAAADWQAAAAABZAAAAAACZAAAAAADZAAAAAABZAAAAAABZAAAAAABWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAdwAAAAACZAAAAAABZAAAAAAAWQAAAAACWQAAAAADWQAAAAABZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAZAAAAAACZAAAAAACWQAAAAADWQAAAAACWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAADZAAAAAAAZAAAAAADWQAAAAAAdwAAAAACdwAAAAADdwAAAAACdwAAAAABdwAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: IgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALgAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAALgAAAAAALgAAAAAALgAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAWQAAAAAALgAAAAAALgAAAAAALgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABIQAAAAABWQAAAAADWQAAAAABLgAAAAAALgAAAAAALgAAAAAAWQAAAAAAWQAAAAABWQAAAAAAZAAAAAADZAAAAAADZAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAZAAAAAABIQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABZAAAAAABZAAAAAAAZAAAAAAAWQAAAAADWQAAAAADWQAAAAADZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACZAAAAAADZAAAAAADWQAAAAACWQAAAAACWQAAAAADZAAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAZAAAAAADZAAAAAAAZAAAAAAAWQAAAAADWQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAWQAAAAABWQAAAAACZAAAAAACZAAAAAACZAAAAAACWQAAAAACZAAAAAADWQAAAAACZAAAAAAAZAAAAAADZAAAAAACWQAAAAACWQAAAAACWQAAAAAAZAAAAAAD + version: 6 + -2,0: + ind: -2,0 + tiles: WQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdQAAAAADcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAcAAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: BwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHeQAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAALQAAAAAATAAAAAACTAAAAAADTAAAAAACLQAAAAACBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJeQAAAAAALQAAAAAATAAAAAACTAAAAAADTAAAAAADLQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAeQAAAAAALQAAAAACTAAAAAACTAAAAAACTAAAAAABLQAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAeQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAIgAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAACZAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAIgAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACZAAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAABZAAAAAACZAAAAAACZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAABTAAAAAAAZAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAACaAAAAAAAeQAAAAAATAAAAAAATAAAAAADZAAAAAABWQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAYwAAAAADYwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAADWQAAAAACWQAAAAADYwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAACNQAAAAADNQAAAAAAeQAAAAAAYwAAAAADWQAAAAACWQAAAAAAYwAAAAACeQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAANQAAAAACOQAAAAAANQAAAAABNQAAAAAAYwAAAAAAWQAAAAABWQAAAAABYwAAAAADeQAAAAAAIQAAAAACIgAAAAABIgAAAAABIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAANQAAAAAANQAAAAABNQAAAAADeQAAAAAAYwAAAAACWQAAAAADWQAAAAABYwAAAAAAeQAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAADWQAAAAACWQAAAAAAYwAAAAADeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYwAAAAADWQAAAAADWQAAAAACYwAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABBwAAAAACBwAAAAALeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAADWQAAAAABWQAAAAACYwAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAC + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAJBwAAAAAKBwAAAAAJBwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAIgAAAAADaAAAAAAAIgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAIgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAVQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAKBwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAWQAAAAACWQAAAAADBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAACZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAACZAAAAAACYAAAAAAAeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGeQAAAAAAWQAAAAADZAAAAAABYAAAAAAAWQAAAAABZAAAAAADZAAAAAADYAAAAAAAeQAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAABZAAAAAADeQAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAADeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAADZAAAAAACZAAAAAABWQAAAAABYAAAAAAAZAAAAAABBwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAYAAAAAAAZAAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAACwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAMBwAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAABwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAALeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAIBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -5,1: + ind: -5,1 + tiles: AAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAeQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,14: + ind: -1,14 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + -6,-1: + ind: -6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAVQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -6,0: + ind: -6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,14: + ind: 0,14 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAACFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAABFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAFeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAGeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAEFgAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABFgAAAAAEeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAFFgAAAAABeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAFgAAAAAEFgAAAAAEFgAAAAAEeQAAAAAAWQAAAAACeQAAAAAAYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAACFgAAAAAFeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAGFgAAAAAGFgAAAAABeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAGFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAADFgAAAAABFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAABFgAAAAABFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: YAAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAABFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAABFgAAAAAGFgAAAAABFgAAAAABFgAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAFFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAACeQAAAAAAFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAADFgAAAAABFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAABFgAAAAABFgAAAAABeQAAAAAAFgAAAAACFgAAAAABFgAAAAADeQAAAAAAFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAAFgAAAAAEFgAAAAACFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAADeQAAAAAAFgAAAAADFgAAAAABBwAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAGFgAAAAADFgAAAAADFgAAAAAEeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAGFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIFgAAAAAFeQAAAAAAFgAAAAAGFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAGeQAAAAAAFgAAAAACFgAAAAABFgAAAAAGFgAAAAACFgAAAAAFFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAABeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAFgAAAAACFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAGFgAAAAAGFgAAAAAEFgAAAAADeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAGFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAKeQAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAEFgAAAAACFgAAAAAGFgAAAAABFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAKBwAAAAAIBwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAEBwAAAAAABwAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAADFgAAAAABFgAAAAAEFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAFFgAAAAADFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWQAAAAADYAAAAAAAeQAAAAAAWQAAAAADFgAAAAAAFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAEFgAAAAADFgAAAAACFgAAAAAGFgAAAAADFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWQAAAAADeQAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAGFgAAAAADFgAAAAAEFgAAAAAAFgAAAAAEFgAAAAABFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAFgAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAHdgAAAAADdgAAAAADdgAAAAADdgAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFHQAAAAACHQAAAAAAAQAAAAAAeQAAAAAAIgAAAAABHQAAAAAAIgAAAAADHQAAAAAAAQAAAAAAHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAAAJAAAAAADIAAAAAACHQAAAAABAQAAAAACHQAAAAAAIgAAAAAAHQAAAAABIAAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAACHQAAAAACAQAAAAACHQAAAAAAAQAAAAABHQAAAAADIgAAAAABHQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAGBwAAAAADBwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAAeQAAAAAARwAAAAACeQAAAAAARwAAAAACRgAAAAAARwAAAAABeQAAAAAARwAAAAADeQAAAAAAegAAAAAABwAAAAAAagAAAAABRgAAAAACRgAAAAAABwAAAAAABwAAAAAAeQAAAAAARgAAAAABeQAAAAAAeQAAAAAAeQAAAAAARgAAAAADQAAAAAAARgAAAAACQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAAeQAAAAAARwAAAAABeQAAAAAARwAAAAABRgAAAAAARwAAAAAAeQAAAAAARwAAAAACeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAJBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAAAHAAAAAADHAAAAAAD + version: 6 + 3,2: + ind: 3,2 + tiles: eQAAAAAABwAAAAAABwAAAAAHeQAAAAAANAAAAAABNAAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAMBwAAAAABBwAAAAAABwAAAAAFBwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADBwAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACBwAAAAAKBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIQAAAAABeQAAAAAAIgAAAAACeQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAAATwAAAAAAIQAAAAABIQAAAAADeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: HAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAABTwAAAAAAHwAAAAACIQAAAAABeQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAAAHwAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAACTwAAAAAAHwAAAAABIQAAAAABeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAJgAAAAACJgAAAAABJgAAAAAAeQAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAATwAAAAAAHwAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAACTwAAAAAAHwAAAAABIQAAAAAAIQAAAAABIgAAAAACeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAACHwAAAAACHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAAATwAAAAAAHwAAAAABIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAADeQAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAABTwAAAAAAHwAAAAABIQAAAAAAIgAAAAABIQAAAAABIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACHwAAAAAAHwAAAAADHwAAAAAAIQAAAAAAIgAAAAABIQAAAAABIQAAAAABeQAAAAAAJgAAAAABJgAAAAABJgAAAAACHwAAAAADIgAAAAACIgAAAAAAeQAAAAAAIQAAAAACHwAAAAADHwAAAAACHwAAAAABIQAAAAADIgAAAAABIQAAAAACIQAAAAAAeQAAAAAAJgAAAAADJgAAAAABJgAAAAACeQAAAAAAHwAAAAACIgAAAAABeQAAAAAAIQAAAAADHwAAAAABHwAAAAACHwAAAAACIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAABIgAAAAABeQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAACYwAAAAAAYwAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADIgAAAAACHQAAAAACHQAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAADJgAAAAAAIgAAAAADHQAAAAABYwAAAAAAYwAAAAAAYwAAAAAASwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAIgAAAAACIgAAAAABIgAAAAAAIgAAAAADIgAAAAACYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAAAYwAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAYwAAAAACYwAAAAAAYwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: LQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAACTAAAAAADTAAAAAADTAAAAAAALQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAALQAAAAABTAAAAAACTAAAAAAATAAAAAABLQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAALQAAAAACTAAAAAADTAAAAAADTAAAAAABLQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAAAHQAAAAAAIgAAAAABIgAAAAACIgAAAAAAIgAAAAADLQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAIgAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADTAAAAAACTAAAAAABTAAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHwAAAAABHwAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAHwAAAAACHwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAJgAAAAACHwAAAAAAHwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAABJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABHwAAAAADHwAAAAABeQAAAAAAJgAAAAACJgAAAAAAJgAAAAABJgAAAAADJgAAAAADeQAAAAAAHwAAAAABHwAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABHwAAAAAAHwAAAAACeQAAAAAAJgAAAAACHwAAAAAAHwAAAAAAHwAAAAACJgAAAAAAeQAAAAAAHwAAAAACHwAAAAACJgAAAAACeQAAAAAAHwAAAAABeQAAAAAAeQAAAAAAHwAAAAADHwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAABHwAAAAACeQAAAAAAeQAAAAAAHwAAAAADIgAAAAADIgAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABeQAAAAAAHwAAAAACHwAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAADIgAAAAACIgAAAAADIgAAAAABIgAAAAABIgAAAAADHwAAAAADHwAAAAACeQAAAAAAeQAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: AAAAAAAABwAAAAAJBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABTQAAAAAATQAAAAAATQAAAAAAWQAAAAADeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADCgAAAAAACgAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABTQAAAAAATQAAAAAATQAAAAAAWQAAAAACCgAAAAAACgAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAACwAAAAAAegAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAADBwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAARwAAAAACagAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAWQAAAAADWQAAAAABWQAAAAADQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAARgAAAAADRwAAAAACBwAAAAAABwAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAgAAAAAAeQAAAAAAegAAAAAAagAAAAABagAAAAACRwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAKegAAAAAABwAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: HwAAAAAAHwAAAAADIgAAAAACIgAAAAADIgAAAAACIgAAAAACIgAAAAADIgAAAAACIgAAAAAAIgAAAAABIgAAAAAAIgAAAAAAIgAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAABIgAAAAACIgAAAAAAIgAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAIgAAAAADIgAAAAACIgAAAAAAHwAAAAABeQAAAAAAHwAAAAACIgAAAAABIgAAAAADHwAAAAADHwAAAAACeQAAAAAAeQAAAAAAHwAAAAABeQAAAAAAeQAAAAAAHwAAAAADHwAAAAADIgAAAAAAIgAAAAAAHwAAAAAAeQAAAAAAHwAAAAACIgAAAAACIgAAAAAAHwAAAAACeQAAAAAAeQAAAAAAHwAAAAADIgAAAAADHwAAAAAAeQAAAAAAeQAAAAAAHwAAAAADIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAIgAAAAAAIgAAAAACHwAAAAABeQAAAAAAHwAAAAACIgAAAAAAIgAAAAAAIgAAAAACHwAAAAABeQAAAAAAHwAAAAAAIgAAAAABIgAAAAAAHwAAAAACeQAAAAAAHwAAAAADIgAAAAAAIgAAAAACHwAAAAADeQAAAAAAHwAAAAAAIgAAAAADIgAAAAACIgAAAAACHwAAAAABeQAAAAAAHwAAAAABIgAAAAADIgAAAAABHwAAAAAAeQAAAAAAHwAAAAACIgAAAAADIgAAAAABHwAAAAABeQAAAAAAHwAAAAADIgAAAAABIgAAAAACIgAAAAAAHwAAAAAAeQAAAAAAHwAAAAADIgAAAAACIgAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAACeQAAAAAAHwAAAAAAIgAAAAABIgAAAAABIgAAAAAAHwAAAAAAeQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAACHwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAJgAAAAAAJgAAAAADJgAAAAACHwAAAAACIgAAAAAAIgAAAAAAIgAAAAACIgAAAAAAIgAAAAADHwAAAAABHwAAAAADHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAACeQAAAAAAJgAAAAAAJgAAAAACeQAAAAAAHwAAAAABIgAAAAAALQAAAAABLQAAAAAALQAAAAACIgAAAAABHwAAAAADeQAAAAAAHQAAAAADHwAAAAABHwAAAAAAHQAAAAABeQAAAAAAHwAAAAADHwAAAAACeQAAAAAAHwAAAAADIgAAAAACLQAAAAABTAAAAAAALQAAAAADIgAAAAACHwAAAAADeQAAAAAAHQAAAAAAHwAAAAACHwAAAAABHQAAAAADHQAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAIgAAAAADLQAAAAABLQAAAAADLQAAAAACIgAAAAAAHwAAAAABeQAAAAAAHQAAAAAAHwAAAAACHwAAAAADHQAAAAAAHQAAAAABHwAAAAABHwAAAAAAeQAAAAAAHwAAAAAAIgAAAAACIgAAAAAAIgAAAAAAIgAAAAADIgAAAAACHwAAAAABeQAAAAAAHQAAAAACHwAAAAADHwAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAB + version: 6 + 2,3: + ind: 2,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAABHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAALBwAAAAAAeQAAAAAAHAAAAAABHAAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAAAHAAAAAABHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAeQAAAAAAHAAAAAADHAAAAAAAIQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAAAHAAAAAABHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHAAAAAADHAAAAAADHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAeQAAAAAAIgAAAAADIgAAAAABIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAeQAAAAAAIgAAAAABHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFeQAAAAAAIgAAAAABHwAAAAADHwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAADIgAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAABIgAAAAACIgAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: BwAAAAAABwAAAAACBwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAACwAAAAAACwAAAAAABwAAAAALeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAACwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAACwAAAAAAeQAAAAAAeQAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGeQAAAAAAeQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAIBwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAALAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAABegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAARgAAAAACRwAAAAADRwAAAAAAagAAAAABeQAAAAAAeQAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAABYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,4: + ind: 4,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAABIgAAAAABIgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAABeQAAAAAAdgAAAAACYwAAAAAAYwAAAAAASwAAAAACSwAAAAAASwAAAAAAZAAAAAADTAAAAAAATAAAAAACTAAAAAABZAAAAAAASwAAAAAASwAAAAACSwAAAAAAYwAAAAAASwAAAAABdwAAAAAAeQAAAAAAYwAAAAAASwAAAAAASwAAAAADSwAAAAAASwAAAAACTAAAAAADZAAAAAAATAAAAAAASwAAAAADSwAAAAACSwAAAAADSwAAAAADYwAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAYwAAAAACSwAAAAABSwAAAAAASwAAAAAAZAAAAAADTAAAAAADTAAAAAADTAAAAAACZAAAAAACSwAAAAACSwAAAAAASwAAAAACYwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAABYwAAAAABYwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,4: + ind: 5,4 + tiles: eQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,3: + ind: 5,3 + tiles: JgAAAAAAJgAAAAABJgAAAAACeQAAAAAAIgAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAABJgAAAAACJgAAAAACeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAABJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHwAAAAADHwAAAAABHwAAAAADJgAAAAABJgAAAAABJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHwAAAAACIgAAAAAAIgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACSwAAAAABHwAAAAACIgAAAAAAIgAAAAABIgAAAAAAJgAAAAACJgAAAAAAJgAAAAACeQAAAAAAeQAAAAAAIQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHwAAAAABIgAAAAACIgAAAAACIgAAAAADJgAAAAACJgAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAIgAAAAADHQAAAAABeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIQAAAAABIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAASwAAAAADSwAAAAADSwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAASwAAAAADSwAAAAAASwAAAAAAeQAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAALBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABeQAAAAAAHwAAAAACeQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABIgAAAAACeQAAAAAAHwAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHCAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADIgAAAAADeQAAAAAAHwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABIgAAAAADeQAAAAAAHwAAAAABeQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAHwAAAAACHwAAAAADHwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAABwAAAAAIBwAAAAACBwAAAAAGIgAAAAABeQAAAAAAHwAAAAADIgAAAAABIgAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHwAAAAAAHwAAAAACHwAAAAACeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAB + version: 6 + 6,3: + ind: 6,3 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAADTAAAAAADZAAAAAAATAAAAAADZAAAAAAATAAAAAAAZAAAAAAATAAAAAACZAAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAASwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAACHwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIgAAAAAAIgAAAAABHwAAAAACHwAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADIgAAAAACIgAAAAABHwAAAAAAIgAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADIgAAAAABHwAAAAAAHwAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAASwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAABZAAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAATAAAAAAAZAAAAAADZAAAAAABTAAAAAAAZAAAAAACZAAAAAACZAAAAAACTAAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAALwAAAAAALwAAAAAAZAAAAAAALwAAAAAALwAAAAAALwAAAAAAZAAAAAADLwAAAAAACAAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADTAAAAAADZAAAAAABZAAAAAACTAAAAAAAZAAAAAAAZAAAAAACZAAAAAADTAAAAAACZAAAAAADBwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAABdQAAAAADeQAAAAAAeQAAAAAA + version: 6 + 6,2: + ind: 6,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAEBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAACAAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAJBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAACTAAAAAADZAAAAAACTAAAAAACZAAAAAABTAAAAAAAZAAAAAACTAAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAAC + version: 6 + 6,4: + ind: 6,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,2: + ind: 7,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,3: + ind: 7,3 + tiles: TAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABTAAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAZAAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACTAAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,4: + ind: 7,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,1: + ind: 6,1 + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + 6,0: + ind: 6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAABLQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACeQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAADLQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACeQAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAACLQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAFgAAAAABFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAACeQAAAAAAJgAAAAABeQAAAAAAGQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAFgAAAAADFgAAAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAFgAAAAABFgAAAAAEFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAACFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: PAAAAAAAPAAAAAAAdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAdQAAAAADeQAAAAAAdQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAABPAAAAAAAPAAAAAAAdQAAAAABdQAAAAACdQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAAAPAAAAAAAPAAAAAAAdQAAAAADdQAAAAADdQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAADPAAAAAAAPAAAAAAAdQAAAAAAdQAAAAAAdQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAABdQAAAAACPAAAAAAAdQAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAABdQAAAAABdQAAAAAAdQAAAAABdQAAAAACdQAAAAADdQAAAAACdQAAAAADeQAAAAAAWQAAAAAAPAAAAAAAPAAAAAAAdQAAAAACeQAAAAAAeQAAAAAAdQAAAAADdQAAAAACdQAAAAADdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAABdQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAASgAAAAABSgAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAVQAAAAACVQAAAAACVQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAVQAAAAACVQAAAAACVQAAAAACdwAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAACWQAAAAABeQAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAdwAAAAAAdgAAAAACdgAAAAADdgAAAAABWQAAAAADeQAAAAAAIgAAAAAAJgAAAAAAJgAAAAACJgAAAAADIgAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABdwAAAAACdgAAAAACdgAAAAAAdgAAAAADWQAAAAABeQAAAAAAIgAAAAABJgAAAAACTQAAAAAAJgAAAAACIgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAAAWQAAAAAAeQAAAAAAIgAAAAAAJgAAAAAATQAAAAAAJgAAAAACIgAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,5: + ind: 0,5 + tiles: LAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFFgAAAAAEFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAABFgAAAAADFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAFgAAAAACFgAAAAAEFgAAAAAFFgAAAAADFgAAAAAGFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAADFgAAAAAFFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,4: + ind: -2,4 + tiles: JgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAJgAAAAACJgAAAAACJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdQAAAAABPAAAAAAAPAAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAAAJgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAACdQAAAAACPAAAAAAAPAAAAAAAdgAAAAACdgAAAAABBAAAAAAGJgAAAAADJgAAAAAAJgAAAAAAJgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdQAAAAAAdQAAAAADPAAAAAAAPAAAAAAAdgAAAAADdgAAAAADdgAAAAABJgAAAAACJgAAAAAAJgAAAAAAJgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAdQAAAAABdQAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAdgAAAAACdgAAAAABJgAAAAABJgAAAAAAJgAAAAAAJgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdQAAAAACdQAAAAABPAAAAAAAPAAAAAAAdgAAAAADdgAAAAAAdgAAAAADJgAAAAABJgAAAAAAJgAAAAAAJgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdQAAAAACdQAAAAADPAAAAAAAPAAAAAAAdgAAAAABdgAAAAAAdgAAAAABJgAAAAABJgAAAAACJgAAAAADJgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdQAAAAADdQAAAAACdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAALQAAAAADLQAAAAACLQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAASgAAAAAASgAAAAADWQAAAAAATAAAAAABTAAAAAABLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAASgAAAAAASgAAAAAAWQAAAAAATAAAAAADTAAAAAABLQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATAAAAAABTAAAAAADLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAALQAAAAACLQAAAAABLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAA + version: 6 + -1,5: + ind: -1,5 + tiles: eQAAAAAAeQAAAAAAIgAAAAADJgAAAAACTQAAAAAAJgAAAAACIgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIQAAAAAAeQAAAAAAIgAAAAADJgAAAAADTQAAAAAAJgAAAAADIgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAJgAAAAAAJgAAAAADIgAAAAAAJgAAAAACTQAAAAAAJgAAAAACIgAAAAAAcAAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJgAAAAABeQAAAAAAIgAAAAAAJgAAAAABJgAAAAACJgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAABeQAAAAAAIgAAAAACIgAAAAADIgAAAAADIgAAAAABIgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdwAAAAABdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAJgAAAAABJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,5: + ind: -2,5 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAADIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABIQAAAAACIQAAAAACJgAAAAADJgAAAAADJgAAAAACJgAAAAABLQAAAAACLQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAJgAAAAADJgAAAAADJgAAAAAAJgAAAAADJgAAAAADTAAAAAACTAAAAAABLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAIQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAABTAAAAAAATAAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACTAAAAAADTAAAAAAALQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABLQAAAAADLQAAAAABLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAFgAAAAAEFgAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAACFgAAAAAEFgAAAAAEFgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABFgAAAAAAFgAAAAADFgAAAAABFgAAAAAEFgAAAAABFgAAAAABFgAAAAAFFgAAAAAFFgAAAAADFgAAAAADFgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAA + version: 6 + -1,6: + ind: -1,6 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,6: + ind: -2,6 + tiles: IQAAAAAAeQAAAAAAeQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAIQAAAAACeQAAAAAAIQAAAAACIQAAAAAAJgAAAAAAJgAAAAAAJgAAAAABIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAIQAAAAABeQAAAAAAIQAAAAADIQAAAAACJgAAAAAAJgAAAAABJgAAAAABIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACJgAAAAADJgAAAAAAJgAAAAADJgAAAAAAIQAAAAAAeQAAAAAAIQAAAAABIQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAASgAAAAAAIQAAAAADJgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAIQAAAAACeQAAAAAAeQAAAAAAIQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAASgAAAAAASgAAAAABJgAAAAADJgAAAAADJgAAAAACJgAAAAADJgAAAAABIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAASgAAAAACSgAAAAABJgAAAAAAJgAAAAADJgAAAAAAIQAAAAADIQAAAAADeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAFeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABIQAAAAABIQAAAAACeQAAAAAAeQAAAAAAFgAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAJgAAAAABJgAAAAAAJgAAAAACIQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAFgAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAEFgAAAAACFgAAAAAEFgAAAAABFgAAAAACFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAGeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAACSgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAABSgAAAAACdQAAAAABdQAAAAABdQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAADSgAAAAABPAAAAAAAPAAAAAAAdQAAAAABdQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAADSgAAAAAC + version: 6 + -2,3: + ind: -2,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAeQAAAAAAcQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADeQAAAAAAcQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdQAAAAADdQAAAAADdQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdQAAAAACcQAAAAAAdQAAAAABdQAAAAABdQAAAAACdQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdQAAAAABdQAAAAADdQAAAAADdQAAAAADPAAAAAAAPAAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAAGFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAACFgAAAAAFFgAAAAAEFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAABFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAEAAAAAAAAFgAAAAAEFgAAAAADFgAAAAACFgAAAAAGFgAAAAAGFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAACFgAAAAAGFgAAAAACFgAAAAAFAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAABFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAADFgAAAAAGFgAAAAACFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAABAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAABFgAAAAACFgAAAAAGFgAAAAAEFgAAAAACFgAAAAAEFgAAAAACFgAAAAACFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAAGFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAAFgAAAAABeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAdgAAAAADdgAAAAABFgAAAAABFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABFgAAAAAFFgAAAAAAFgAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAAALQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAABTAAAAAACTAAAAAABTAAAAAACLQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdwAAAAAAdwAAAAADdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAACTAAAAAACTAAAAAADTAAAAAABLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAATAAAAAABTAAAAAABTAAAAAACLQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAdgAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACDAAAAAACDAAAAAADDAAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAALQAAAAACLQAAAAACLQAAAAADSwAAAAABWQAAAAACWQAAAAAAWQAAAAABDAAAAAABDAAAAAAADAAAAAADDAAAAAADDAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABSwAAAAABLQAAAAADTAAAAAADLQAAAAABSwAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAADIQAAAAAAIQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAASwAAAAACLQAAAAAATAAAAAADLQAAAAABSwAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAACJgAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADSwAAAAABLQAAAAACTAAAAAAALQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAIQAAAAAAJgAAAAAAIQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAALQAAAAABLQAAAAAC + version: 6 + -4,3: + ind: -4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAFFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAAEFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAEFgAAAAADFgAAAAADFgAAAAAGFgAAAAACFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAAFFgAAAAABFgAAAAADFgAAAAAFFgAAAAADFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAAaAAAAAAAeQAAAAAAFgAAAAACAAAAAAAAFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAGFgAAAAAAFgAAAAABFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAGaAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAABFgAAAAADFgAAAAAAFgAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + version: 6 + -3,5: + ind: -3,5 + tiles: eQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAAAJgAAAAADIQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAcAAAAAADWQAAAAADWQAAAAAAWQAAAAADJgAAAAABIQAAAAACJgAAAAABIQAAAAABJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAACcAAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAIQAAAAAAJgAAAAACIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAIQAAAAAAJgAAAAABIQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAALQAAAAACLQAAAAAALQAAAAABSwAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAIQAAAAADJgAAAAACIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADSwAAAAACLQAAAAACTAAAAAADLQAAAAADSwAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAIQAAAAACJgAAAAABIQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADSwAAAAABLQAAAAAATAAAAAAALQAAAAABSwAAAAACWQAAAAACWQAAAAAAWQAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAADWQAAAAAAWQAAAAAAWQAAAAAASwAAAAAALQAAAAAATAAAAAAALQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAADAAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAALQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACDAAAAAACDAAAAAADDAAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADIgAAAAADIgAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAFFgAAAAADFgAAAAAFRQAAAAAARQAAAAAARQAAAAAAeQAAAAAAFgAAAAACeQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAFgAAAAAEeQAAAAAAIQAAAAAAIQAAAAADIQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAFFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -4,4: + ind: -4,4 + tiles: eQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAANQAAAAAANQAAAAACNQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAANQAAAAACNQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAANQAAAAADNQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAANQAAAAACNQAAAAABNQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACSwAAAAADeQAAAAAAaAAAAAAAeQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALQAAAAAATAAAAAABTAAAAAADTAAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAATAAAAAABTAAAAAABTAAAAAACdgAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAABTAAAAAAATAAAAAADTAAAAAACdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAA + version: 6 + -4,5: + ind: -4,5 + tiles: dgAAAAABdgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALQAAAAAATAAAAAACTAAAAAADTAAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAADTAAAAAABTAAAAAADTAAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAALQAAAAABTAAAAAACTAAAAAAATAAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAASwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABCgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAASwAAAAAASwAAAAACSwAAAAADeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAGFgAAAAAEFgAAAAADeQAAAAAARQAAAAAACgAAAAAACgAAAAAACgAAAAAAQQAAAAAASwAAAAACSwAAAAABSwAAAAADeQAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABeQAAAAAARQAAAAAACgAAAAAADAAAAAAADAAAAAAAeQAAAAAASwAAAAADSwAAAAADSwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAARQAAAAAA + version: 6 + -5,4: + ind: -5,4 + tiles: eQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAACeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAZAAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAACZAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAACeQAAAAAAagAAAAABagAAAAADeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAADAAAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAACZAAAAAACagAAAAACeQAAAAAAagAAAAADagAAAAABagAAAAADeQAAAAAAagAAAAADagAAAAABagAAAAAAagAAAAADagAAAAADagAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAagAAAAABagAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAABagAAAAABagAAAAABagAAAAADagAAAAABagAAAAADeQAAAAAADAAAAAAAWQAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAIQAAAAADSwAAAAABSwAAAAACSwAAAAADSwAAAAAASwAAAAAAIQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAASwAAAAABSwAAAAABSwAAAAAASwAAAAABSwAAAAADJgAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAIQAAAAABSwAAAAACSwAAAAADSwAAAAACSwAAAAACSwAAAAADIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAA + version: 6 + -5,5: + ind: -5,5 + tiles: eQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAdwAAAAACdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAACdwAAAAADeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAABeQAAAAAAdwAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdwAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdwAAAAADdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdwAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAdwAAAAADdwAAAAAAdwAAAAABeQAAAAAAdwAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAdwAAAAADdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAACdwAAAAAAeQAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAABdwAAAAABdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAASwAAAAAAdwAAAAACdwAAAAACdwAAAAABSwAAAAABagAAAAACagAAAAACagAAAAAAeQAAAAAAagAAAAABagAAAAABagAAAAACeQAAAAAAagAAAAABagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADAAAAAAADAAAAAAACgAAAAAAWQAAAAAAeQAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAABeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADAAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAdwAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdwAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADAAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAdwAAAAACdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAdwAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAADdwAAAAABdwAAAAACdwAAAAACdwAAAAADeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAdwAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA + version: 6 + -6,4: + ind: -6,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAagAAAAABagAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAIQAAAAAAeQAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAAAeQAAAAAAagAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAIQAAAAAAeQAAAAAAagAAAAABagAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAADJgAAAAABJgAAAAABHQAAAAABIQAAAAABIQAAAAACeQAAAAAAeQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAA + version: 6 + -6,5: + ind: -6,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAADeQAAAAAAagAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAAADgAAAAABDgAAAAACaQAAAAAAagAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAABDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEwAAAAAEdgAAAAAAEwAAAAAFdgAAAAACdgAAAAADdgAAAAADdgAAAAACPgAAAAAAagAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAFgAAAAAGeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAADEwAAAAAAdgAAAAACPgAAAAAAagAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAADEwAAAAAGdgAAAAACdgAAAAADdgAAAAAAPgAAAAAAagAAAAADFgAAAAACAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAGFgAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAABdgAAAAADEwAAAAAAdgAAAAADPgAAAAAAagAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAACFgAAAAAGFgAAAAAGeQAAAAAAEwAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAPgAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAACEwAAAAABPgAAAAAAeQAAAAAAFgAAAAADFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAFFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAEFgAAAAABFgAAAAABFgAAAAAAFgAAAAAEFgAAAAAAFgAAAAAEFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAEFgAAAAAGFgAAAAADFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAADFgAAAAABFgAAAAAEeQAAAAAAeQAAAAAAagAAAAADagAAAAAB + version: 6 + -3,6: + ind: -3,6 + tiles: RQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACIQAAAAACIQAAAAABIQAAAAADIQAAAAABeQAAAAAAIQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAIQAAAAADJgAAAAABJgAAAAAAJgAAAAADIQAAAAAAeQAAAAAAIQAAAAACJgAAAAACJgAAAAABJgAAAAADIQAAAAACeQAAAAAAIQAAAAADJgAAAAABIQAAAAACeQAAAAAAIQAAAAADJgAAAAABJgAAAAACJgAAAAADIQAAAAACIQAAAAAAIQAAAAACJgAAAAADIgAAAAAAJgAAAAADIQAAAAABIQAAAAACIQAAAAABJgAAAAACIQAAAAACeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAADIQAAAAAAeQAAAAAAIQAAAAADJgAAAAADJgAAAAABJgAAAAADIQAAAAADeQAAAAAAIQAAAAADJgAAAAABIQAAAAACeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAACIQAAAAADIQAAAAACeQAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAABIQAAAAACeQAAAAAAIQAAAAAAIQAAAAACIQAAAAACeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADIQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASgAAAAACIQAAAAACeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAJgAAAAACIQAAAAADIQAAAAADIQAAAAACIQAAAAAAeQAAAAAAeQAAAAAAIQAAAAABIQAAAAABIQAAAAAAeQAAAAAAIQAAAAACJgAAAAADJgAAAAAAJgAAAAACJgAAAAADJgAAAAACJgAAAAACJgAAAAABJgAAAAACJgAAAAAAIQAAAAACIQAAAAACJgAAAAADJgAAAAACIQAAAAAAeQAAAAAAIQAAAAADJgAAAAABJgAAAAABJgAAAAACJgAAAAAAJgAAAAAAJgAAAAADJgAAAAAAJgAAAAADJgAAAAACIQAAAAACeQAAAAAAIQAAAAABIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAACWQAAAAACWQAAAAADWQAAAAADJgAAAAADJgAAAAADJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAJgAAAAAAJgAAAAADJgAAAAAAWQAAAAACWQAAAAACWQAAAAADJgAAAAADJgAAAAABJgAAAAADIQAAAAACeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFeQAAAAAAIQAAAAABIQAAAAAAJgAAAAABJgAAAAACJgAAAAADJgAAAAAAJgAAAAACJgAAAAADJgAAAAACIQAAAAABIQAAAAACeQAAAAAAFgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAIQAAAAABDAAAAAAADAAAAAAADAAAAAAAIQAAAAAAIQAAAAACIQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,6: + ind: -4,6 + tiles: DAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAARQAAAAAADAAAAAAACgAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADCgAAAAAACgAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAACCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAADCgAAAAAAeQAAAAAASwAAAAAASwAAAAABSwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAACgAAAAAASwAAAAADSwAAAAAASwAAAAADSwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADAAAAAAAeQAAAAAASwAAAAAASwAAAAABSwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAACDAAAAAAADAAAAAAAeQAAAAAASwAAAAADSwAAAAADSwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAACDAAAAAAADAAAAAAASwAAAAABSwAAAAABSwAAAAAASwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADAAAAAAAFwAAAAAHeQAAAAAASwAAAAADSwAAAAADSwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdwAAAAABdwAAAAAAdgAAAAAAeQAAAAAAFgAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdwAAAAADdwAAAAADdgAAAAABeQAAAAAAFgAAAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,6: + ind: -5,6 + tiles: eQAAAAAAdwAAAAABdgAAAAACdgAAAAACdwAAAAACdwAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAABeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAYQAAAAABYQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAADYQAAAAAAeQAAAAAASwAAAAADSwAAAAACSwAAAAACeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAACeQAAAAAASwAAAAADSwAAAAACSwAAAAADSwAAAAABDAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAYQAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAACeQAAAAAASwAAAAACSwAAAAACSwAAAAADeQAAAAAADAAAAAAADAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAbwAAAAADbwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAdwAAAAADdwAAAAADdgAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAABdwAAAAADeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdwAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAADeQAAAAAADAAAAAAADAAAAAAAdgAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACdgAAAAADdwAAAAACdwAAAAACeQAAAAAAeQAAAAAASwAAAAABSwAAAAACSwAAAAACSwAAAAAADAAAAAAADAAAAAAAdwAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAABdwAAAAABdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACSwAAAAACSwAAAAAAeQAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAACdgAAAAADFgAAAAAGFgAAAAAEFgAAAAAAeQAAAAAAcAAAAAACbQAAAAABbQAAAAADbQAAAAABeQAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAACdwAAAAACdwAAAAADdgAAAAACFgAAAAAGFgAAAAADFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAbQAAAAABbQAAAAADbQAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAABdgAAAAAA + version: 6 + -6,6: + ind: -6,6 + tiles: FgAAAAAGFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAACFgAAAAAFFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAABFgAAAAABFgAAAAABFgAAAAAGFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAGeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJeQAAAAAAYQAAAAAAYQAAAAACFgAAAAADFgAAAAAFFgAAAAAGFgAAAAABFgAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAAEeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAHYQAAAAAAYQAAAAACYQAAAAACFgAAAAABFgAAAAADFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAAEeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAYQAAAAADYQAAAAABFgAAAAAGFgAAAAABFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAABFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAFFgAAAAAEFgAAAAAEAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAABFgAAAAAEFgAAAAADFgAAAAABeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAFgAAAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAGeQAAAAAAeQAAAAAAdwAAAAABdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAFeQAAAAAAeQAAAAAAdwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAdwAAAAACdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAEFgAAAAAA + version: 6 + -4,7: + ind: -4,7 + tiles: dgAAAAAAdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdwAAAAAAdwAAAAACdgAAAAACeQAAAAAAFgAAAAAEFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAAEFgAAAAAFFgAAAAABFgAAAAABFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAADFgAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAAFFgAAAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAGFgAAAAADFgAAAAADFgAAAAAFFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAEFgAAAAABFgAAAAACFgAAAAAFFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAEFgAAAAAGeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,3: + ind: -5,3 + tiles: WQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABFgAAAAABeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAFFgAAAAADFgAAAAAEFgAAAAADeQAAAAAAdwAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAAFFgAAAAADFgAAAAAFeQAAAAAAdgAAAAAC + version: 6 + -6,3: + ind: -6,3 + tiles: IAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAADwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + version: 6 + -7,4: + ind: -7,4 + tiles: eQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAEFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAGFgAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAG + version: 6 + -9,1: + ind: -9,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAA + version: 6 + -6,2: + ind: -6,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAIQAAAAADIQAAAAACIQAAAAABIQAAAAADIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAIQAAAAABJgAAAAACJgAAAAACJgAAAAADIQAAAAADJgAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABDwAAAAAAIQAAAAACJgAAAAAAJgAAAAADJgAAAAABIQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADDwAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAADIQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAAeQAAAAAAWQAAAAAAYQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACLQAAAAACTAAAAAACTAAAAAABTAAAAAADLQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAALQAAAAADTAAAAAADTAAAAAABTAAAAAABLQAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAALQAAAAADTAAAAAADTAAAAAACTAAAAAADLQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABIAAAAAADHwAAAAABHwAAAAAAHwAAAAADIAAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACDwAAAAAAIAAAAAACHwAAAAADHwAAAAACHwAAAAABIAAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAADwAAAAAA + version: 6 + -6,1: + ind: -6,1 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA + version: 6 + -5,7: + ind: -5,7 + tiles: FgAAAAAFFgAAAAAAFgAAAAABeQAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADeQAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAADdwAAAAACdwAAAAACdgAAAAAAFgAAAAABFgAAAAAFFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdgAAAAAAFgAAAAADFgAAAAADFgAAAAAEFgAAAAADFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAAFeQAAAAAAeQAAAAAAdgAAAAADAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAABFgAAAAACFgAAAAABFgAAAAAFFgAAAAADFgAAAAAGFgAAAAAEFgAAAAABFgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAEFgAAAAAGFgAAAAAEFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAACFgAAAAAGFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAEFgAAAAABFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAACFgAAAAADFgAAAAAFFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAACFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA + version: 6 + -6,7: + ind: -6,7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,6: + ind: -7,6 + tiles: MwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAACNQAAAAACeQAAAAAAMwAAAAABMwAAAAABMwAAAAABeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFNQAAAAAANQAAAAADeQAAAAAANAAAAAACNQAAAAACNQAAAAACNAAAAAACNQAAAAABNQAAAAABNAAAAAAANQAAAAABNQAAAAAANAAAAAABeQAAAAAANQAAAAACFgAAAAAGNQAAAAADNQAAAAAANAAAAAAAeQAAAAAANAAAAAACNQAAAAADNQAAAAACNQAAAAADNQAAAAACNQAAAAAANQAAAAACNAAAAAABNQAAAAABNQAAAAABNQAAAAAAFgAAAAAENAAAAAACNQAAAAACNQAAAAAANQAAAAAANQAAAAABNQAAAAACNQAAAAABNQAAAAADeQAAAAAANAAAAAACNQAAAAACNQAAAAACNQAAAAADeQAAAAAANQAAAAAAFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADNQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAABNQAAAAADNQAAAAABNAAAAAACNQAAAAABeQAAAAAAFgAAAAADFgAAAAAEFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAABNAAAAAAANAAAAAACNQAAAAACNQAAAAABeQAAAAAAFgAAAAAFFgAAAAABFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAFFgAAAAADFgAAAAAGFgAAAAACFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,5: + ind: -7,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAFgAAAAADFgAAAAACFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAAEeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAADFgAAAAABeQAAAAAAMwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAACeQAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAABFgAAAAAGFgAAAAABMwAAAAACMwAAAAABNQAAAAACeQAAAAAAMwAAAAABeQAAAAAAMwAAAAABeQAAAAAAMwAAAAACMwAAAAABeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAFNQAAAAADeQAAAAAAMwAAAAAAMwAAAAACNQAAAAABNQAAAAABMwAAAAABeQAAAAAAeQAAAAAANQAAAAABeQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAAFFgAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAAANQAAAAACNQAAAAAAMwAAAAACMwAAAAADMwAAAAACNQAAAAADMwAAAAADeQAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAAC + version: 6 + -2,2: + ind: -2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,3: + ind: -7,3 + tiles: eQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAADHwAAAAAAYQAAAAABYQAAAAADYQAAAAADYQAAAAAAYQAAAAABHwAAAAABIAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAADHwAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAABYQAAAAACHwAAAAAAIAAAAAACeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACIAAAAAACeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAADeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -6,8: + ind: -6,8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACDwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -5,8: + ind: -5,8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAADwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeAAAAAAA + version: 6 + -5,9: + ind: -5,9 + tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAADAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAADAAAAAADeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAJgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAADAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACJgAAAAADeQAAAAAAJgAAAAADIgAAAAABJgAAAAACJgAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAIgAAAAACJgAAAAADJgAAAAABWQAAAAACWQAAAAAADAAAAAADDAAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAJgAAAAAAIgAAAAADJgAAAAABJgAAAAACWQAAAAACWQAAAAAADAAAAAAADAAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAJgAAAAADJgAAAAACJgAAAAAAeQAAAAAAWQAAAAABWQAAAAAADAAAAAAADAAAAAABWQAAAAAAWQAAAAABeQAAAAAALQAAAAAALQAAAAAALQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAABWQAAAAADLQAAAAACTAAAAAACTAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADLQAAAAACTAAAAAADTAAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAALQAAAAAATAAAAAAATAAAAAACZAAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAALQAAAAAALQAAAAADLQAAAAAD + version: 6 + -6,9: + ind: -6,9 + tiles: eQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADDAAAAAACeQAAAAAAJgAAAAADJgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACJgAAAAABDAAAAAAADAAAAAACDAAAAAAAJgAAAAAAeQAAAAAAJgAAAAABJgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABDAAAAAAADAAAAAACDAAAAAABIgAAAAAAJgAAAAAAeQAAAAAAJgAAAAABJgAAAAAAeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAJgAAAAACJgAAAAABeQAAAAAAJgAAAAAADAAAAAACDAAAAAACDAAAAAABIgAAAAABJgAAAAACJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABJgAAAAABJgAAAAAAJgAAAAACDAAAAAACDAAAAAAADAAAAAADJgAAAAACJgAAAAADDAAAAAADIgAAAAADJgAAAAABJgAAAAAAIgAAAAACeQAAAAAAIgAAAAABDAAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAAADAAAAAADIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAIgAAAAAADAAAAAADDAAAAAACeQAAAAAAeQAAAAAADAAAAAABDAAAAAADDAAAAAABJgAAAAABJgAAAAABJgAAAAABeQAAAAAAeQAAAAAAJgAAAAADJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAACeQAAAAAAJgAAAAADJgAAAAAAeQAAAAAAJgAAAAACeQAAAAAADwAAAAAAJgAAAAAAJgAAAAADJgAAAAADJgAAAAADJgAAAAAAJgAAAAACJgAAAAAAIgAAAAAAJgAAAAACJgAAAAAAJgAAAAADJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAJgAAAAABIgAAAAAAJgAAAAAAeQAAAAAAJgAAAAADJgAAAAABeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAACIgAAAAABJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAADwAAAAAADwAAAAAAJgAAAAACJgAAAAADJgAAAAAAJgAAAAACJgAAAAACIgAAAAACJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAADwAAAAAADwAAAAAAJgAAAAACIgAAAAACIgAAAAADIgAAAAACIgAAAAADIgAAAAADIgAAAAABIgAAAAABIgAAAAADJgAAAAAAJgAAAAACWQAAAAACWQAAAAAC + version: 6 + -4,9: + ind: -4,9 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADAAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAALQAAAAADLQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAATAAAAAADLQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAATAAAAAADLQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAATAAAAAADLQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACAAAAAAAALQAAAAADLQAAAAACeQAAAAAADAAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA + version: 6 + -4,10: + ind: -4,10 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADAAAAAAAeQAAAAAAeQAAAAAASAAAAAAARgAAAAACeQAAAAAASAAAAAABRgAAAAAAeQAAAAAASAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAAJgAAAAABeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA + version: 6 + -5,10: + ind: -5,10 + tiles: WQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAADAAAAAADDAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADeQAAAAAAJgAAAAADJgAAAAABeQAAAAAAWQAAAAABWQAAAAAADAAAAAAADAAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAACJgAAAAACeQAAAAAAJgAAAAABJgAAAAAAeQAAAAAAWQAAAAADWQAAAAAADAAAAAAADAAAAAADWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAASgAAAAADIgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAABeQAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAACJgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACJgAAAAABeQAAAAAAJgAAAAADJgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAAJgAAAAACJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAADJgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADAAAAAABJgAAAAAAJgAAAAABJgAAAAAADAAAAAADDAAAAAABeQAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADAAAAAAATAAAAAAATAAAAAACJgAAAAADDAAAAAADDAAAAAAAeQAAAAAAJgAAAAABIgAAAAABIgAAAAAAIgAAAAAAJgAAAAADDAAAAAABeQAAAAAAaAAAAAAADAAAAAADDAAAAAADLQAAAAABLQAAAAABTAAAAAABJgAAAAABIgAAAAABeQAAAAAAJgAAAAACIgAAAAACIgAAAAADIgAAAAACDAAAAAABDAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALQAAAAADLQAAAAADTAAAAAAAJgAAAAAAWQAAAAAAJgAAAAAAIgAAAAADIgAAAAAAIgAAAAABDAAAAAAADAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAADTAAAAAABJgAAAAADWQAAAAAAJgAAAAACIgAAAAAAIgAAAAACIgAAAAADDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAALQAAAAABTAAAAAADJgAAAAABWQAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAADJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAALQAAAAACLQAAAAADTAAAAAADJgAAAAABIgAAAAACeQAAAAAAeQAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAACeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAATAAAAAAATAAAAAAAJgAAAAACDAAAAAABDAAAAAACeQAAAAAAJgAAAAABIgAAAAAAIgAAAAABIgAAAAACIgAAAAACJgAAAAACeQAAAAAAJgAAAAABeQAAAAAAeQAAAAAAJgAAAAABJgAAAAACIgAAAAABDAAAAAADDAAAAAABeQAAAAAADAAAAAAAIgAAAAAAIgAAAAAAIgAAAAADIgAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -7,9: + ind: -7,9 + tiles: AAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAADAAAAAADDAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAJgAAAAADDAAAAAABDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABIgAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAJgAAAAABIgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAACJgAAAAADeQAAAAAAIgAAAAABeQAAAAAA + version: 6 + -6,10: + ind: -6,10 + tiles: eQAAAAAADwAAAAAADwAAAAAAJgAAAAAAJgAAAAAAJgAAAAADJgAAAAADJgAAAAAAJgAAAAAAJgAAAAADJgAAAAAAJgAAAAABJgAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAADeQAAAAAAJgAAAAAAeQAAAAAADwAAAAAAeQAAAAAAJgAAAAACIgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAADIgAAAAADIgAAAAABIgAAAAACIgAAAAADJgAAAAACJgAAAAADJgAAAAACDwAAAAAADwAAAAAAeQAAAAAAJgAAAAACIgAAAAADIgAAAAADIgAAAAACIgAAAAACIgAAAAACIgAAAAAAIgAAAAAAIgAAAAABIgAAAAADJgAAAAACJgAAAAAAJgAAAAACDwAAAAAADwAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAACJgAAAAACJgAAAAABJgAAAAABJgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAADeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADJgAAAAAAJgAAAAABJgAAAAADJgAAAAABIgAAAAADIgAAAAADIgAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABeQAAAAAADAAAAAABDAAAAAABDAAAAAAAJgAAAAABIgAAAAAAIgAAAAACIgAAAAACIgAAAAACIgAAAAABIgAAAAACIgAAAAAAIgAAAAABIgAAAAAAJgAAAAAAJgAAAAABeQAAAAAADAAAAAABDAAAAAACJgAAAAAATAAAAAAAIgAAAAAAIgAAAAACIgAAAAADIgAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAJgAAAAAAeQAAAAAADAAAAAAAJgAAAAABTAAAAAADLQAAAAABJgAAAAACJgAAAAADJgAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAADIgAAAAABIgAAAAADHQAAAAAAJgAAAAADDAAAAAADJgAAAAADTAAAAAADLQAAAAABLQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACJgAAAAAAIgAAAAABIgAAAAABHQAAAAAAJgAAAAABJgAAAAABJgAAAAADTAAAAAABLQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAJgAAAAABJgAAAAADeQAAAAAAJgAAAAAAJgAAAAACIgAAAAABIgAAAAADHQAAAAACJgAAAAABJgAAAAABJgAAAAADTAAAAAABLQAAAAACLQAAAAABeQAAAAAAeQAAAAAAJgAAAAACJgAAAAACeQAAAAAASgAAAAACJgAAAAABIgAAAAAAIgAAAAABHQAAAAAAJgAAAAAAeQAAAAAAIgAAAAABJgAAAAADTAAAAAADLQAAAAACeQAAAAAAeQAAAAAAJgAAAAACJgAAAAAAeQAAAAAASgAAAAACIgAAAAACIgAAAAABIgAAAAABJgAAAAADJgAAAAAAeQAAAAAADAAAAAACDAAAAAADJgAAAAADTAAAAAADJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAACSgAAAAAAJgAAAAACJgAAAAABJgAAAAACJgAAAAAAJgAAAAADJgAAAAABeQAAAAAADAAAAAAADAAAAAACIgAAAAADJgAAAAAB + version: 6 + -5,11: + ind: -5,11 + tiles: JgAAAAACJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADIgAAAAAAIgAAAAAAIgAAAAACIgAAAAADJgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAAJgAAAAAAJgAAAAABJgAAAAAAJgAAAAADDAAAAAACeQAAAAAADAAAAAADIgAAAAABIgAAAAAAIgAAAAADIgAAAAABJgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADwAAAAAAIgAAAAAAIgAAAAABIgAAAAABIgAAAAABJgAAAAADeQAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAACJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAATAAAAAADTAAAAAACTAAAAAACIgAAAAABJgAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAACJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAIgAAAAADIgAAAAABIgAAAAABIgAAAAACJgAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAIgAAAAACIgAAAAACIgAAAAABIgAAAAAAJgAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAADeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAATAAAAAABTAAAAAACTAAAAAACIgAAAAADJgAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAIgAAAAADIgAAAAACTAAAAAAAIgAAAAADJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAIgAAAAACIgAAAAAATAAAAAADJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABTAAAAAADTAAAAAACJgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAACJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,11: + ind: -6,11 + tiles: JgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAASgAAAAAASgAAAAABdwAAAAAAdwAAAAADEwAAAAADDAAAAAADeQAAAAAAJgAAAAAAJgAAAAACJgAAAAAAJgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAASgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAJgAAAAAAIgAAAAAAIgAAAAACIgAAAAACAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAJgAAAAABIgAAAAAATAAAAAACTAAAAAABAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAJgAAAAAAIgAAAAACIgAAAAABIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEwAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAJgAAAAACIgAAAAACIgAAAAAAIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAADeQAAAAAAJgAAAAABIgAAAAACTAAAAAABTAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACIgAAAAACTAAAAAABIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAADTAAAAAACIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAABTAAAAAADTAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAADJgAAAAACAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -7,10: + ind: -7,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAIgAAAAACJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAACJgAAAAACJgAAAAACIgAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABJgAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAACIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADJgAAAAADJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAABJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -7,11: + ind: -7,11 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,8: + ind: -7,8 + tiles: eAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -8,8: + ind: -8,8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,11: + ind: -3,11 + tiles: eQAAAAAASAAAAAACRgAAAAACSAAAAAABeQAAAAAARgAAAAACRgAAAAAASAAAAAABeQAAAAAASAAAAAABeQAAAAAAeQAAAAAASAAAAAACeQAAAAAAeAAAAAAAFgAAAAACSAAAAAABeQAAAAAAeQAAAAAASAAAAAACeQAAAAAASAAAAAAAeQAAAAAASAAAAAAASAAAAAADeQAAAAAASAAAAAAAeQAAAAAASAAAAAAAeQAAAAAAFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASAAAAAACeQAAAAAAeQAAAAAAFgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAASAAAAAACSAAAAAACeQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAGFgAAAAACFgAAAAACFgAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAEFgAAAAAEFgAAAAABFgAAAAACFgAAAAAFFgAAAAAEeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAADFgAAAAAGFgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAABFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAAFFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAAFgAAAAAEFgAAAAABFgAAAAAEeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAA + version: 6 + -4,11: + ind: -4,11 + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,7: + ind: -7,7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -8,7: + ind: -8,7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + -8,5: + ind: -8,5 + tiles: FgAAAAAEFgAAAAACFgAAAAACFgAAAAAFFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAEFgAAAAAFFgAAAAACFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAABFgAAAAAFFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAAEeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAFFgAAAAADFgAAAAABFgAAAAACFgAAAAACFgAAAAABFgAAAAAFFgAAAAAEAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAGFgAAAAACFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAEFgAAAAAGFgAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAABeQAAAAAAFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAFFgAAAAADFgAAAAAGFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAGgAAAAACGgAAAAAAGwAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEFgAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAABeQAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAAFFgAAAAABFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAANQAAAAACeQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAABeQAAAAAARwAAAAADRwAAAAADSAAAAAAASAAAAAACRwAAAAADSAAAAAAAeQAAAAAAeQAAAAAANQAAAAACHAAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAACeQAAAAAASAAAAAABSAAAAAAASAAAAAABSAAAAAADSAAAAAACSAAAAAADeQAAAAAAeQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASAAAAAACSAAAAAADRwAAAAADRwAAAAAASAAAAAADRwAAAAADeQAAAAAAMwAAAAADNQAAAAABeQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAeQAAAAAARwAAAAADSAAAAAAASAAAAAACSAAAAAABSAAAAAABSAAAAAABeQAAAAAAMwAAAAAANQAAAAACeQAAAAAAGwAAAAAAGgAAAAACGgAAAAADGgAAAAADGwAAAAABeQAAAAAASAAAAAABSAAAAAACSAAAAAACSAAAAAAASAAAAAABRwAAAAACeQAAAAAAMwAAAAAC + version: 6 + -8,6: + ind: -8,6 + tiles: NAAAAAAAeQAAAAAAGwAAAAAAGgAAAAABGgAAAAACGgAAAAACGwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASAAAAAABeQAAAAAAeQAAAAAANQAAAAABeQAAAAAAGwAAAAABGgAAAAACGgAAAAADGgAAAAAAGwAAAAADeQAAAAAANQAAAAABNAAAAAAANAAAAAACNAAAAAABeQAAAAAANQAAAAACeQAAAAAAeQAAAAAANQAAAAAAeQAAAAAAGwAAAAADGgAAAAABGgAAAAACGgAAAAABGwAAAAACeQAAAAAANQAAAAABNQAAAAADNQAAAAAANQAAAAAANAAAAAADNQAAAAABeQAAAAAANAAAAAAANQAAAAAAeQAAAAAAGwAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGwAAAAACeQAAAAAANAAAAAABNQAAAAACNAAAAAACNQAAAAACNQAAAAAANQAAAAAANAAAAAACNQAAAAACNQAAAAABeQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAABeQAAAAAANQAAAAABNQAAAAACNQAAAAAANQAAAAADNQAAAAACNAAAAAADeQAAAAAANAAAAAADNQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHAAAAAABeQAAAAAAeQAAAAAANQAAAAADNAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADHAAAAAAANQAAAAAANQAAAAABNQAAAAADNQAAAAABNAAAAAACNAAAAAAANQAAAAACeQAAAAAAeQAAAAAAGgAAAAADGgAAAAACGgAAAAADeQAAAAAAFgAAAAAENQAAAAAAeQAAAAAANQAAAAAANAAAAAABNQAAAAAANQAAAAABNQAAAAADNQAAAAADNQAAAAADeQAAAAAANQAAAAACGgAAAAAAGgAAAAAAGgAAAAAAeQAAAAAAFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFeQAAAAAANQAAAAACNQAAAAACNQAAAAACeQAAAAAANQAAAAABNQAAAAABNQAAAAABNQAAAAABNQAAAAACeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAGeQAAAAAANQAAAAAANQAAAAABNAAAAAACeQAAAAAAeQAAAAAAeQAAAAAANAAAAAACNQAAAAABNQAAAAAAeQAAAAAAFgAAAAAEFgAAAAABFgAAAAAFFgAAAAABAAAAAAAAeQAAAAAANAAAAAAANAAAAAADNQAAAAACeQAAAAAANQAAAAACNQAAAAACNQAAAAACeQAAAAAAeQAAAAAANQAAAAACFgAAAAAGFgAAAAAAFgAAAAABFgAAAAACAAAAAAAAeQAAAAAANAAAAAADNQAAAAABNQAAAAABeQAAAAAANQAAAAADeQAAAAAANQAAAAACNQAAAAAANQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAAGAAAAAAAAeQAAAAAANQAAAAAANQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAABFgAAAAAEAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAADFgAAAAAEFgAAAAACFgAAAAAFeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAEeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + -9,5: + ind: -9,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAAFeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAFFgAAAAADFgAAAAABFgAAAAADFgAAAAAGFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABFgAAAAAGeQAAAAAAeQAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAABFgAAAAAAFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAAGFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABFgAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEFgAAAAAEFgAAAAAAFgAAAAACFgAAAAAGFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAEFgAAAAACeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAACFgAAAAAFFgAAAAACFgAAAAAAFgAAAAAFFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAGFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAEeQAAAAAAGwAAAAADGwAAAAADeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAADFgAAAAAGFgAAAAAGeQAAAAAAGwAAAAABGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAEFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAGFgAAAAAFeQAAAAAAGwAAAAABGwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAANQAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANQAAAAADNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANQAAAAADNQAAAAAC + version: 6 + -9,6: + ind: -9,6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANQAAAAABNQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANAAAAAADNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANQAAAAACNQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAANQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAANAAAAAACNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAANQAAAAADNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAABNQAAAAACNAAAAAADNQAAAAABNQAAAAABNQAAAAADNQAAAAABNQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAABeQAAAAAAeQAAAAAANQAAAAABeQAAAAAAeAAAAAAAeQAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADeQAAAAAAeQAAAAAAeQAAAAAANQAAAAABNQAAAAACCgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAADeQAAAAAANQAAAAADNQAAAAABNQAAAAACNQAAAAACNAAAAAADCgAAAAAACgAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANQAAAAABNAAAAAACNQAAAAACNAAAAAAANQAAAAACNQAAAAABNQAAAAADNQAAAAAANQAAAAABCgAAAAAACgAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -10,6: + ind: -10,6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAegAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA + version: 6 + -8,3: + ind: -8,3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAJAAAAAADJAAAAAABJAAAAAABJAAAAAABJAAAAAADJAAAAAABJAAAAAACOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAJAAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAADOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAJAAAAAADJAAAAAADJAAAAAACOQAAAAAAOQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAADIAAAAAABeQAAAAAAeQAAAAAAJAAAAAADJAAAAAACIAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACeQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADeQAAAAAADwAAAAAAHQAAAAACHQAAAAAAeQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABeQAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAABeQAAAAAAeQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAAAIAAAAAACHQAAAAACHQAAAAABHQAAAAABIAAAAAACeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAAAIAAAAAACHQAAAAADHQAAAAACHQAAAAAAIAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAAAIAAAAAACHQAAAAACHQAAAAAAHQAAAAADIAAAAAACeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -8,4: + ind: -8,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -9,3: + ind: -9,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAGBAAAAAACBAAAAAAABAAAAAAIBAAAAAAJBAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAJBAAAAAACBAAAAAAHBAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAAIBAAAAAAABAAAAAAFBAAAAAAFBAAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAGBAAAAAAABAAAAAABBAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAEBAAAAAAJBAAAAAAABAAAAAAHBAAAAAADBAAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAHBAAAAAAFBAAAAAADBAAAAAAGBAAAAAAEBAAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAA + version: 6 + -9,4: + ind: -9,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAABFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAC + version: 6 + -2,11: + ind: -2,11 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAACBQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAAEBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAKaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAABQAAAAAABQAAAAAEeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAABQAAAAAABQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAbAAAAAAB + version: 6 + -2,12: + ind: -2,12 + tiles: YAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAbAAAAAAAbAAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAIeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAbAAAAAABbAAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAHBQAAAAAEBQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAACRwAAAAABRgAAAAABRgAAAAACRwAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAABQAAAAALeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARwAAAAADRgAAAAABRgAAAAADRwAAAAABeQAAAAAAbAAAAAADcQAAAAAAcQAAAAACbAAAAAACbAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAJRwAAAAACRwAAAAAARgAAAAAARwAAAAADeQAAAAAAbAAAAAABcQAAAAAAcQAAAAADbAAAAAAAeQAAAAAABQAAAAAMBQAAAAAABQAAAAAFBQAAAAAABQAAAAAABQAAAAALRwAAAAABRwAAAAAARwAAAAAARwAAAAACRgAAAAABbAAAAAABcQAAAAACcQAAAAABbAAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAARgAAAAADRgAAAAABRgAAAAADRgAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABeQAAAAAABQAAAAABBQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAABRgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABRwAAAAACeQAAAAAARgAAAAABRgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAbAAAAAAAbAAAAAACRgAAAAAARwAAAAADRgAAAAACRgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADbAAAAAABbAAAAAADbAAAAAACRgAAAAAAeQAAAAAARgAAAAAARgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAC + version: 6 + -3,12: + ind: -3,12 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAGFgAAAAACFgAAAAAFFgAAAAABFgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAEFgAAAAAEFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAAEFgAAAAAFFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADFgAAAAADFgAAAAAGFgAAAAABFgAAAAABFgAAAAABFgAAAAABFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAADFgAAAAADFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAGFgAAAAACFgAAAAADFgAAAAAFFgAAAAAGFgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAAGeQAAAAAAeQAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAACFgAAAAAAeQAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAAEeQAAAAAARgAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAABFgAAAAABFgAAAAAAeQAAAAAARgAAAAADRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAFFgAAAAACFgAAAAAFFgAAAAAFeQAAAAAARgAAAAADRgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAAEFgAAAAABeQAAAAAARgAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAEFgAAAAAEeQAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAGFgAAAAADeQAAAAAARwAAAAACRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -2,10: + ind: -2,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAFgAAAAAAFgAAAAAEFgAAAAACFgAAAAADFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAAEFgAAAAAAFgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAFFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAA + version: 6 + -1,10: + ind: -1,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAALQAAAAADTAAAAAAATAAAAAABTAAAAAAALQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAATAAAAAAATAAAAAAATAAAAAABLQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAABbAAAAAADeQAAAAAALQAAAAAATAAAAAADTAAAAAACTAAAAAADLQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAACeQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAABLQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACeQAAAAAAeQAAAAAAaQAAAAAAbAAAAAADbAAAAAADbAAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAFBQAAAAAABQAAAAAABQAAAAAABQAAAAAGBQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAAaQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAALBQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAABQAAAAAAeQAAAAAA + version: 6 + -3,10: + ind: -3,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACSAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAARgAAAAABRgAAAAAARgAAAAADRgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAARgAAAAACRwAAAAADRwAAAAACRgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAASAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAARgAAAAACRgAAAAADRgAAAAABRgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAFgAAAAAB + version: 6 + 0,10: + ind: 0,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,11: + ind: 0,11 + tiles: BQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAMeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAMBQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAABaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAABQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAABeQAAAAAAbAAAAAACcQAAAAABcQAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADeQAAAAAADAAAAAABDAAAAAACBQAAAAAAeQAAAAAAbAAAAAABcQAAAAACcQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAADAAAAAABDAAAAAACBQAAAAAAeQAAAAAAbAAAAAAAcQAAAAACcQAAAAACbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAACBQAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADDAAAAAADBQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAADFwAAAAAEFwAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAADFwAAAAADFwAAAAACDAAAAAADDAAAAAADDAAAAAAABQAAAAAHBQAAAAAABQAAAAAMeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACDAAAAAACFwAAAAACFwAAAAAGFwAAAAAHDAAAAAABDAAAAAAADAAAAAABBQAAAAABBQAAAAAABQAAAAAAeQAAAAAAHgAAAAADHgAAAAAAaQAAAAAAeQAAAAAADAAAAAADFwAAAAADFwAAAAAAFwAAAAAEDAAAAAABDAAAAAABeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAHHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACFwAAAAAFFwAAAAACFwAAAAAAFwAAAAAHFwAAAAABFwAAAAAEFwAAAAAHbAAAAAAB + version: 6 + 1,11: + ind: 1,11 + tiles: eQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAEFgAAAAAFFgAAAAABFgAAAAACFgAAAAADAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAEAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAADFgAAAAAEFgAAAAAFAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAACFgAAAAADFgAAAAAFFgAAAAABFgAAAAAFFgAAAAAGAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAADFgAAAAABFgAAAAAFFgAAAAAAFgAAAAADAAAAAAAAAAAAAAAADAAAAAACDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAACFgAAAAADFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAADAAAAAADDAAAAAABDAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAGAAAAAAAAAAAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAFFgAAAAAEFgAAAAACAAAAAAAAAAAAAAAADAAAAAADDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAABFgAAAAACFgAAAAADFgAAAAAFAAAAAAAADAAAAAACDAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAACFgAAAAAFFgAAAAAEFgAAAAABDAAAAAABDAAAAAACbAAAAAABbAAAAAABcQAAAAABbAAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAADFgAAAAAFFgAAAAAFbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAcQAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADFgAAAAABFgAAAAAFFgAAAAADFgAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAADcQAAAAAAbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAACFgAAAAAGFgAAAAAEFgAAAAAB + version: 6 + 0,12: + ind: 0,12 + tiles: BQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADFwAAAAAHFwAAAAAGFwAAAAAEFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAAbAAAAAABBQAAAAAABQAAAAAABQAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAeQAAAAAADAAAAAADDAAAAAACDAAAAAABFwAAAAAHFwAAAAAGDAAAAAADeQAAAAAAeQAAAAAABQAAAAAABQAAAAACBQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAADDAAAAAADDAAAAAAADAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAJeQAAAAAASgAAAAADFwAAAAAFFwAAAAAFFwAAAAAHFwAAAAAGDAAAAAADDAAAAAABeQAAAAAAcQAAAAABcQAAAAABbAAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAFwAAAAABFwAAAAABFwAAAAAGFwAAAAAEFwAAAAABFwAAAAADDAAAAAACDAAAAAABcQAAAAABcQAAAAAAbAAAAAABeQAAAAAAVwAAAAACVwAAAAALVwAAAAAAeQAAAAAAeQAAAAAADAAAAAADFwAAAAABFwAAAAACFwAAAAACFwAAAAAFDAAAAAAADAAAAAADcQAAAAAAcQAAAAACbAAAAAADeQAAAAAAVwAAAAAKVwAAAAAAVwAAAAAAVwAAAAADeQAAAAAAeQAAAAAADAAAAAABFwAAAAAHFwAAAAACDAAAAAAADAAAAAADDAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAADbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAVwAAAAAIVwAAAAAAVwAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAcQAAAAAAcQAAAAADbAAAAAADeQAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAcQAAAAADcQAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAAFgAAAAACFgAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAACFgAAAAAFFgAAAAAFFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAAEFgAAAAAFFgAAAAAFeQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAEFgAAAAACFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAD + version: 6 + 1,12: + ind: 1,12 + tiles: bAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAAGFgAAAAADFgAAAAAEbAAAAAAAbAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAACFgAAAAADFgAAAAAFbAAAAAAAbAAAAAADbQAAAAABbQAAAAADbQAAAAAAbQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAACFgAAAAAFFgAAAAACFgAAAAAFFgAAAAAFbAAAAAADbAAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAFFgAAAAABFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAGFgAAAAAAFgAAAAABFgAAAAACFgAAAAAEDAAAAAACDAAAAAACDAAAAAAADAAAAAABeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAACFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAEDAAAAAACDAAAAAADDAAAAAAADAAAAAACaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAADFgAAAAACFgAAAAADFgAAAAAFDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAFwAAAAAHeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAFwAAAAACeQAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAABFgAAAAAGAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAFwAAAAAHFwAAAAAEeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAACFgAAAAAGFgAAAAABAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAFwAAAAAHFwAAAAAEFwAAAAAGeQAAAAAAFgAAAAACFgAAAAACFgAAAAAGFgAAAAACFgAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAEAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAADFgAAAAABFgAAAAADFgAAAAABFgAAAAAGFgAAAAAGFgAAAAACFgAAAAACFgAAAAACFgAAAAABFgAAAAAGAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAGFgAAAAAGFgAAAAADFgAAAAADFgAAAAADFgAAAAAEFgAAAAAGFgAAAAAGFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAACFgAAAAADFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAFFgAAAAAGFgAAAAAGFgAAAAACFgAAAAAGFgAAAAAGAAAAAAAA + version: 6 + -1,12: + ind: -1,12 + tiles: cQAAAAADcQAAAAABcQAAAAADcQAAAAAAbAAAAAACbAAAAAAAbAAAAAADcQAAAAAAcQAAAAADcQAAAAADbAAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAHcQAAAAABcQAAAAADcQAAAAAAcQAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAAAeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAADBQAAAAAABQAAAAAAeQAAAAAABQAAAAAABQAAAAAGeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAABQAAAAABBQAAAAAAeQAAAAAAbAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAHeQAAAAAAbAAAAAABBQAAAAAABQAAAAAABQAAAAAFBQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAABQAAAAAIeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAMBQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAFBQAAAAAABQAAAAAABQAAAAAABQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAKBQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAABBQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACeQAAAAAATwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAATwAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + 0,13: + ind: 0,13 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADFgAAAAAFFgAAAAACFgAAAAABFgAAAAAFFgAAAAABFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAFgAAAAACFgAAAAAGFgAAAAABFgAAAAAGFgAAAAADFgAAAAABFgAAAAACFgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAAAFgAAAAABFgAAAAABFgAAAAAFYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAEFgAAAAACAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAABAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEFgAAAAADFgAAAAAFFgAAAAACFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAGAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAQAAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAFFgAAAAAEFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAGFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAATwAAAAAATwAAAAAATwAAAAAAFgAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAAFTwAAAAAAeQAAAAAATwAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAABTwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,13: + ind: -1,13 + tiles: eQAAAAAAeQAAAAAAeQAAAAAATwAAAAAALAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAALAAAAAAATwAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAATwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAACFgAAAAAFFgAAAAAEFgAAAAADFgAAAAADFgAAAAAAFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAACFgAAAAADFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAATwAAAAAATwAAAAAATwAAAAAAFgAAAAACFgAAAAABFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAeQAAAAAATwAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAFgAAAAADFgAAAAAAFgAAAAAEFgAAAAAEeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAACFgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -2,13: + ind: -2,13 + tiles: eQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,11: + ind: -1,11 + tiles: BQAAAAAABQAAAAAABQAAAAAFBQAAAAAABQAAAAADBQAAAAAABQAAAAAKBQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAJBQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAABQAAAAAABQAAAAAFBQAAAAAIBQAAAAAABQAAAAALBQAAAAAABQAAAAAGBQAAAAAABQAAAAAABQAAAAAJBQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAIBQAAAAAABQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAADBQAAAAAHBQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAMBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAFeQAAAAAABQAAAAAGBQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAIBQAAAAAABQAAAAAABQAAAAAKBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAABQAAAAAFBQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAAMBQAAAAAABQAAAAAJbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAJBQAAAAAAcQAAAAAAcQAAAAABcQAAAAAAcQAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAABeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAFbAAAAAADeQAAAAAAbAAAAAACeQAAAAAAbAAAAAABeQAAAAAAbAAAAAAAcQAAAAABcQAAAAADcQAAAAAAbAAAAAABeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAGbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAADeQAAAAAABQAAAAAABQAAAAAABQAAAAAJBQAAAAAA + version: 6 + 1,10: + ind: 1,10 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAAGFgAAAAACFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAGFgAAAAAAFgAAAAADFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAFFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAFFgAAAAAEAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAADFgAAAAACFgAAAAAEFgAAAAAEFgAAAAABFgAAAAABFgAAAAAGFgAAAAACAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAFgAAAAAEFgAAAAAEFgAAAAAAFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAACAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAFgAAAAADFgAAAAAEFgAAAAABFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAACFgAAAAAGFgAAAAABFgAAAAAGFgAAAAACAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAFAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADFgAAAAADFgAAAAAAFgAAAAACFgAAAAAFAAAAAAAA + version: 6 + 2,11: + ind: 2,11 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,12: + ind: 2,12 + tiles: FgAAAAAEFgAAAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -10,5: + ind: -10,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,13: + ind: 1,13 + tiles: FgAAAAAFFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAAGFgAAAAADFgAAAAACFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAADFgAAAAACFgAAAAAFFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAABFgAAAAACFgAAAAACFgAAAAAFFgAAAAADFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -9,2: + ind: -9,2 + tiles: AAAAAAAAAAAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAHBAAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAFBAAAAAAJBAAAAAAABAAAAAADBAAAAAAGBAAAAAAABAAAAAAJBAAAAAAGBAAAAAAJeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAJBAAAAAADBAAAAAADBAAAAAACBAAAAAAIBAAAAAADBAAAAAADBAAAAAAHBAAAAAAHeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAIBAAAAAAFBAAAAAAGBAAAAAAFBAAAAAAGBAAAAAAEBAAAAAADDwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAJBAAAAAAHBAAAAAAIBAAAAAACBAAAAAAGBAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAIBAAAAAAABAAAAAAJBAAAAAABBAAAAAABBAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAABAAAAAAEBAAAAAABBAAAAAABBAAAAAAJBAAAAAAIeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAJBAAAAAAFBAAAAAAIBAAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAABAAAAAAABAAAAAAGBAAAAAAABAAAAAADBAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAADBAAAAAABBAAAAAAJBAAAAAACBAAAAAADBAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAABBAAAAAAGBAAAAAAEBAAAAAAFBAAAAAAHBAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,13: + ind: -3,13 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + -8,2: + ind: -8,2 + tiles: eQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAASwAAAAADSwAAAAABeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWQAAAAABSwAAAAACSwAAAAACDwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWQAAAAACSwAAAAABSwAAAAACDwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACSwAAAAACDwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAJAAAAAAAJAAAAAADJAAAAAADOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAJAAAAAAAJAAAAAACJAAAAAAAJAAAAAABJAAAAAADOQAAAAAAOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAJAAAAAADJAAAAAAAJAAAAAADJAAAAAADJAAAAAADJAAAAAAAJAAAAAABOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAOQAAAAAAJAAAAAAAJAAAAAABJAAAAAACJAAAAAACJAAAAAABJAAAAAACJAAAAAACOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAJAAAAAABJAAAAAADJAAAAAAAJAAAAAAAJAAAAAABJAAAAAADJAAAAAACOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAJAAAAAACJAAAAAABJAAAAAAAJAAAAAACJAAAAAAAJAAAAAADJAAAAAABOQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABOQAAAAAAJAAAAAAAJAAAAAAAJAAAAAACJAAAAAADJAAAAAABJAAAAAACJAAAAAACOQAAAAAA + version: 6 + -7,2: + ind: -7,2 + tiles: SwAAAAADUAAAAAAASwAAAAAASwAAAAAASwAAAAABeQAAAAAAJgAAAAACIgAAAAACIgAAAAACJgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAJAAAAAABJAAAAAACJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABIgAAAAAAIgAAAAACJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAUAAAAAAASwAAAAABSwAAAAADSwAAAAACWQAAAAACJgAAAAABIgAAAAAAIgAAAAADJgAAAAACeQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACeQAAAAAASwAAAAAAUAAAAAAASwAAAAACSwAAAAABSwAAAAACWQAAAAACJgAAAAAAIgAAAAADIgAAAAADIgAAAAABWQAAAAAAIAAAAAACHwAAAAADHwAAAAABIAAAAAABIQAAAAAASwAAAAACUAAAAAAASwAAAAACSwAAAAABSwAAAAABeQAAAAAAJgAAAAABIgAAAAABIgAAAAAAIgAAAAADWQAAAAABIAAAAAABHwAAAAADHwAAAAACIAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAAAJgAAAAACeQAAAAAAIAAAAAADIAAAAAADHwAAAAABIAAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAACHwAAAAADIAAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAADHwAAAAACIAAAAAADIAAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAADHwAAAAAAHwAAAAACIAAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAABHwAAAAABHwAAAAACIAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAABHwAAAAAAHwAAAAAAIAAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAAAHwAAAAAAIAAAAAACIAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAYQAAAAACYQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAABHwAAAAADIAAAAAACeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAABHwAAAAAAIAAAAAACeQAAAAAAWQAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAYQAAAAAAIAAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAAAIAAAAAADWQAAAAACWQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAYQAAAAACIAAAAAAAHwAAAAAAYQAAAAACYQAAAAABYQAAAAACYQAAAAADYQAAAAABHwAAAAABIAAAAAACWQAAAAAD + version: 6 + -7,1: + ind: -7,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAASwAAAAADUAAAAAAASwAAAAADSwAAAAAASwAAAAACeQAAAAAAJgAAAAADIgAAAAABIgAAAAACJgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAASwAAAAACUAAAAAAASwAAAAAASwAAAAADSwAAAAADeQAAAAAAJgAAAAADIgAAAAADIgAAAAABJgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA + version: 6 + -5,2: + ind: -5,2 + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAWQAAAAACYwAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -8,1: + ind: -8,1 + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAASwAAAAADSwAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAASwAAAAADSwAAAAAD + version: 6 + -10,1: + ind: -10,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -10,0: + ind: -10,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAA + version: 6 + -9,0: + ind: -9,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA + version: 6 + -8,0: + ind: -8,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -7,0: + ind: -7,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAABSgAAAAACeQAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAADSgAAAAADeQAAAAAAFgAAAAAEFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAACSgAAAAAAeQAAAAAAFgAAAAABFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -8,9: + ind: -8,9 + tiles: eAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,15: + ind: 0,15 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,15: + ind: -1,15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -9,9: + ind: -9,9 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -9,8: + ind: -9,8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + -10,7: + ind: -10,7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,8: + ind: -4,8 + tiles: eQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -10,2: + ind: -10,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#0080FFFF' + id: 0 + decals: + 5520: -105,16 + 5521: -108,16 + - node: + cleanable: True + color: '#FF0000FF' + id: 0 + decals: + 5518: -113,16 + 5519: -110,16 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1721: -109,96 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 239: -7,-3 + 544: 60,62 + 545: 61,62 + 546: 62,62 + 600: 59,62 + 1722: -112,96 + 2051: -72.51597,179.2289 + 3294: 71,54 + 3806: -104,95 + 3807: -103,95 + 3808: -107,95 + 3809: -106,95 + 3810: -110,95 + 3811: -109,95 + 3812: -113,95 + 3813: -112,95 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Arrows + decals: + 4335: -72.49484,178.08356 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 13: -27,2 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 226: -38,-1 + 227: -37,-1 + - node: + color: '#D0A59EFF' + id: Basalt1 + decals: + 880: 88,33 + 881: 89,31 + 882: 91,37 + 883: 81,25 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 1553: 4,81 + 1558: 10,73 + 1559: -38.220192,53.207275 + 2298: -57,161 + 2323: -35.0538,92.88373 + 2324: -37,94 + 3076: -38,192 + 3077: -38,203 + 3110: 27,168 + 3111: 27,175 + 3112: 34,192 + 3113: 31,198 + 3114: 30,204 + 3115: 20,206 + 3116: 15,206 + 3117: 12,214 + 3118: 5,213 + 3119: 6,219 + 3120: -6,218 + 3500: -81,47 + 3503: -80.31293,34.993168 + 3657: -130,102 + 3658: -114,108 + 4109: -65.012024,60.111717 + 4136: -47.923622,107.9973 + 4139: -33.907692,108.01743 + 4229: -53.8859,92.958725 + 4280: -89.44641,49.742626 + 4294: -131.98892,57.605907 + 4307: -76.242294,114.44826 + 4346: -109.11102,144.05151 + 4448: 4.8926125,215.42917 + 4469: 34.46177,7.5391693 + 4475: 20.776154,21.618591 + 4478: 22.452492,16.51725 + 4483: 24.718506,23.103539 + 4491: 38.45147,12.766838 + 4504: 63.795,19.851028 + 4530: 24.308311,9.449371 + 4689: -128.0066,11.103729 + 5352: -145.49336,110.37204 + 5407: -90.67151,98.13673 + 5413: -83.99106,96.10919 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt1 + decals: + 4374: -30.142406,173.9985 + 4519: -61.900948,58.07885 + 4527: -3.9893913,219.0611 + - node: + color: '#D0A59EFF' + id: Basalt2 + decals: + 886: 84,28 + 891: 93,42 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 1566: -53,54 + 1567: -39,47 + 3100: -10,215 + 3101: -3,219 + 3102: 9,215 + 3103: 11,205 + 3104: 19,210 + 3105: 29,200 + 3106: 32,194 + 3107: 30,188 + 3108: 30,176 + 4141: -32.72015,106.70493 + 4276: -81.02801,35.837433 + 4282: -86.11336,48.9145 + 4285: -90.10515,54.68588 + 4313: -97.27326,92.26778 + 4319: 29.171394,175.06067 + 4342: -101.93271,152.99905 + 4453: 8.243168,212.81326 + 4471: 33.619423,7.557518 + 4488: 32.993584,22.978539 + 4489: 39.496727,15.35273 + 4690: -123.169975,12.228165 + 4691: -131.13354,10.440315 + 5356: -146.85274,111.40329 + 5386: -113.05004,101.87442 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt2 + decals: + 4525: -57.10768,58.031975 + - node: + color: '#D0A59EFF' + id: Basalt3 + decals: + 884: 79,27 + 885: 89,36 + 893: 100,43 + 894: 101,44 + 895: 96,41 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 1568: -34,43 + 1569: -31,41 + 2300: -54,171 + 2303: -54,176 + 2304: -66,181 + 2305: -68,182 + 2306: -63,183 + 2325: -36,94 + 2326: -31,93 + 3086: -42,192 + 3087: 26,168 + 3088: 20,168 + 3089: 26,178 + 3090: 29,186 + 3091: 32,191 + 3092: 30,197 + 3093: 30,203 + 3094: 22,209 + 3095: 17,206 + 3096: 11,213 + 3097: 3,219 + 3098: -3,215 + 3099: -11,215 + 3506: -80.24158,35.180668 + 3664: -88,102 + 3665: -88,92 + 3799: -82,112 + 3800: -66,117 + 3801: -60,118 + 3802: -58,115 + 3803: -88,103 + 3804: -91,102 + 4115: -39.288223,47.366005 + 4134: 10.561943,73.97253 + 4137: -49.065826,106.9348 + 4281: -87.45711,49.023876 + 4289: -82.48503,29.36211 + 4290: -81.51628,28.89336 + 4292: -133.20767,57.86623 + 4306: -76.992294,114.01076 + 4325: 23.107151,170.255 + 4339: -106.87953,151.02698 + 4344: -100.935005,154.0051 + 4450: 4.3457375,216.55417 + 4486: 31.26867,23.103539 + 4495: 37.85772,9.224251 + 4496: 36.824875,8.349251 + 4497: 61.911568,20.021622 + 4692: -134.14801,9.394585 + 4693: -133.63062,12.565498 + 5170: 81.301765,20.441437 + 5355: -143.05586,108.575165 + 5379: -123.799446,111.090324 + 5383: -113.007866,103.52385 + 5405: -90.51526,97.71485 + - node: + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: Basalt3 + decals: + 4231: -51.064262,93.1931 + - node: + color: '#D0A59EFF' + id: Basalt4 + decals: + 887: 85,32 + - node: + color: '#FFFFFFFF' + id: Basalt4 + decals: + 3508: -79.9458,47.210823 + 4111: -62.909153,59.033592 + 5359: -145.66934,109.668915 + - node: + color: '#D0A59EFF' + id: Basalt5 + decals: + 888: 89,26 + 889: 87,28 + 890: 93,39 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 1556: 10,81 + 1557: 12,76 + 1561: -43,50 + 1570: -34,50 + 1571: -64,59 + 1611: -21,102 + 2297: -58,159 + 3121: -8,215 + 3122: 0,218 + 3123: 7,213 + 3124: 12,205 + 3125: 25,209 + 3126: 32,196 + 3127: 29,187 + 3128: 30,179 + 3129: 30,173 + 3130: 25,167 + 3659: -129,103 + 3662: -93,90 + 3663: -89,100 + 3805: -90,102 + 4110: -65.34015,60.049217 + 4113: -44.615543,49.78258 + 4116: -38.99135,46.53788 + 4117: -31.107416,41.383377 + 4118: -34.37304,43.25985 + 4135: -47.923622,108.012924 + 4138: -34.188942,107.981674 + 4230: -54.314262,92.97435 + 4283: -88.40202,48.977 + 4287: -90.1364,54.24838 + 4295: -132.52966,57.193047 + 4298: -123.218834,14.55835 + 4311: -97.17951,91.4084 + 4312: -96.66389,91.79903 + 4318: 28.24952,175.24817 + 4347: -109.70477,143.70776 + 4348: -108.73602,143.48851 + 4449: 4.1582375,215.89792 + 4470: 33.77427,7.1485443 + 4472: 40.455048,17.784966 + 4477: 20.104279,21.39354 + 4485: 29.574913,23.931664 + 4487: 31.034294,23.494164 + 4493: 37.935844,12.327644 + 4494: 37.42022,8.943001 + 4873: -78.374344,68.0348 + 4938: -66.93477,93.75588 + 4974: -62.131523,94.923256 + 5169: 79.19239,18.925812 + 5350: -145,108 + 5354: -147.00899,108.012665 + 5358: -146.57559,109.637665 + 5380: -114.52193,107.83921 + 5387: -113.08129,102.06192 + 5414: -84.36162,96.01544 + 5417: -92.572105,96.45294 + 5418: -94.58773,97.26544 + 5419: -97.63617,98.54075 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt5 + decals: + 4371: -32,175 + 4373: -29.535868,172.60788 + 4515: -59.94278,57.2351 + 4522: -57.849083,58.031975 + 4526: -4.8331413,218.60797 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 1562: -46,55 + 3505: -80.11658,35.258793 + 4114: -44.47492,49.77002 + 4232: -50.986137,92.646225 + 4275: -81.05926,34.931183 + 4277: -81.23113,35.962433 + 4278: -80.23114,36.040558 + 4284: -90.27702,50.742626 + 4286: -90.08952,54.482754 + 4293: -132.44205,58.09526 + 4297: -123.51571,14.12085 + 4300: -122.50657,14.62085 + 4301: -122.69407,14.511475 + 4309: -77.32042,114.22951 + 4314: -94.76573,92.17702 + 4320: 22.263401,170.78625 + 4321: 23.763401,170.38 + 4322: 24.029026,169.41125 + 4323: 22.654026,170.09875 + 4324: 25.669655,170.98938 + 4343: -101.93271,152.82184 + 4345: -100.98188,154.0051 + 4349: -109.29758,144.49352 + 4451: 5.0488625,216.36667 + 4474: 40.93582,17.261253 + 4480: 22.655617,16.876625 + 4503: 64.02491,19.554153 + 4533: 25.77655,7.6837463 + 4874: -78.82747,68.1598 + 4875: -76.92658,66.78138 + 4939: -66.62227,93.796364 + 4941: -68.85413,98.030975 + 4943: -66.69668,90.759705 + 4976: -61.756523,94.923256 + 4977: -61.756523,94.923256 + 4978: -61.885414,92.67579 + 4979: -61.885414,92.67579 + 5165: 79.4756,20.00264 + 5166: 79.31935,19.643265 + 5171: 81.114265,20.003937 + 5172: 80.72364,20.144562 + 5173: 80.1895,19.716698 + 5175: 79.39243,24.151878 + 5176: 80.25181,23.698753 + 5351: -144.89961,108.05954 + 5381: -114.32146,107.16525 + 5384: -113.08599,103.5551 + 5385: -112.86254,101.890045 + 5388: -112.64749,101.6353 + 5389: -113.28812,102.6978 + 5390: -112.25806,102.120224 + 5391: -112.05493,101.588974 + 5392: -112.36743,101.88585 + 5393: -114.8297,107.27737 + 5394: -114.8922,108.21487 + 5395: -113.9547,108.35549 + 5409: -90.36396,97.32423 + 5410: -91.33271,98.02735 + 5412: -96.19178,96.80278 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4518: -59.21421,57.188225 + 4520: -62.69577,58.188225 + 4521: -59.243614,57.031975 + 4523: -57.645958,58.125725 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4350: -108.59445,144.11852 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4315: -98.71886,90.45827 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4316: -97.59674,93.826965 + - node: + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 4317: 28.827644,175.56067 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 1564: -55,60 + 1565: -50,53 + 3078: -39,195 + 3079: -40,188 + 3084: -41,195 + 3085: -39,193 + 3504: -80.27283,35.430668 + 3507: -80.1333,45.929573 + 3666: -95,90 + 3667: -90,89 + 3668: -88,104 + 3795: -70,114 + 3796: -71,117 + 3797: -76,113 + 3798: -79,114 + 4140: -33.048275,106.90806 + 4279: -89.69641,49.086376 + 4291: -81.57878,29.48711 + 4296: -135.83014,54.162716 + 4299: -122.75657,14.198975 + 4308: -76.25792,113.69826 + 4310: -97.447975,91.7524 + 4452: 9.040043,212.55173 + 4473: 40.61998,17.355003 + 4476: 21.088654,20.931091 + 4479: 22.171242,16.736 + 4482: 26.98462,23.881744 + 4484: 24.009369,22.978539 + 4490: 39.279594,15.594963 + 4492: 38.779594,11.890144 + 4498: 61.364693,20.0905 + 4505: 63.97896,19.491653 + 4531: 25.464561,7.8556213 + 4694: -135.70023,11.15995 + 4940: -68.86976,97.9841 + 4975: -61.70965,94.985756 + 5168: 81.551765,17.675812 + 5174: 79.93931,23.728859 + 5353: -147.64961,108.96579 + 5382: -113.26562,103.80588 + 5406: -90.98401,97.73048 + 5411: -95.957405,96.52153 + 5415: -91.23266,94.01544 + 5416: -87.95205,95.67169 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt7 + decals: + 4372: -30.751534,173.26413 + 4516: -59.88028,57.64135 + 4524: -57.58736,58.0476 + 4528: -3.8487663,218.34235 + 4529: -4.8175163,218.98297 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 1554: 7,82 + 1560: -38.10771,55.028862 + 1563: -47,57 + 2296: -57,157 + 2301: -57,176 + 2302: -53,177 + 2307: -64,184 + 2308: -60,186 + 2327: -28,93 + 2328: -25,94 + 3080: -39,192 + 3081: -39,202 + 3131: 28,177 + 3132: 29,200 + 3133: 23,209 + 3134: 15,205 + 3135: 6,218 + 3136: 7,216 + 3137: -8,216 + 3502: -80,47 + 3661: -128,108 + 4112: -44.34992,49.516956 + 4326: 25.200905,170.13 + 4340: -105.53578,150.99573 + 4454: 9.102543,213.34451 + 4481: 27.418594,23.944244 + 4499: 62.077744,20.582672 + 4942: -66.7738,91.21283 + 5357: -147.83711,110.356415 + 5408: -90.79651,97.83985 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt8 + decals: + 4517: -59.39399,57.64135 + - node: + color: '#D0A59EFF' + id: Basalt9 + decals: + 892: 96,43 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 1555: 11,79 + 2299: -53,168 + 3082: -38,206 + 3083: -38,188 + 3501: -80,46 + 3660: -128,103 + 4341: -103.55141,151.96448 + - node: + cleanable: True + color: '#FF434BFF' + id: Blasto + decals: + 952: 98.77898,19.506672 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 10: -29,2 + 11: -28,2 + 241: -10,-4 + 242: -10,-3 + 243: -10,-2 + 244: -8,-4 + 245: -8,-3 + 246: -8,-2 + 251: -17,-4 + 252: -15,-2 + 253: -15,-3 + 254: -15,-4 + 255: -15,-5 + 256: -17,-5 + 344: -17,-3 + 345: -17,-2 + 346: -10,-5 + 347: -8,-5 + 542: 61,58 + 599: 60,58 + 603: 62,58 + 688: 94,49 + 689: 95,49 + 690: 96,49 + 691: 94,57 + 692: 95,57 + 693: 96,57 + 998: -20,79 + 999: -19,79 + 1000: -18,79 + 2425: -16,189 + 2426: -14,189 + 3220: -95,41 + 3221: -95,42 + 3222: 59,60 + 3223: 59,61 + 3265: 76,35 + 3272: 79,35 + 3499: -95,43 + 4147: 59,58 + 4221: 76,34 + 4222: 79,34 + 4270: -72,165 + 4271: -71,165 + 4272: -70,165 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 1884: -83,177 + 1885: -82,177 + 1886: -78,177 + 1887: -77,177 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bot + decals: + 5651: 58,58 + - node: + color: '#334E6DC8' + id: BotGreyscale + decals: + 1501: -41,106 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 448: 69,48 + 449: 70,48 + 450: 71,48 + 451: 72,48 + 452: 73,48 + 4651: 68,48 + 4652: 74,48 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 12: -27,2 + 3263: 87,59 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotLeft + decals: + 1888: -76,180 + 1889: -76,179 + 1890: -76,178 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 541: 73,46 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 540: 69,46 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 3262: 88,59 + 3266: 74,36 + 3267: 74,35 + 3268: 74,34 + 3269: 81,36 + 3270: 81,35 + 3271: 81,34 + 4219: 74,33 + 4220: 81,33 + 4810: 57,67 + 5139: -109,149 + 5140: -109,147 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Box + decals: + 4332: -72.52609,180.60231 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 4653: 67,49 + 4654: 66,49 + 4655: 75,49 + 4656: 76,49 + - node: + color: '#52B4E996' + id: BrickTileDarkCornerNe + decals: + 5609: -32,206 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 3274: 72,61 + 5530: -43,-4 + - node: + color: '#52B4E996' + id: BrickTileDarkCornerNw + decals: + 5606: -34,206 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 3273: 70,61 + 5531: -45,-4 + - node: + color: '#52B4E996' + id: BrickTileDarkCornerSe + decals: + 5610: -32,204 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 3276: 72,59 + 5528: -43,-6 + - node: + color: '#52B4E996' + id: BrickTileDarkCornerSw + decals: + 5608: -34,204 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 3280: 70,59 + 5529: -45,-6 + - node: + color: '#52B4E996' + id: BrickTileDarkLineE + decals: + 5611: -32,205 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 3277: 72,60 + 5526: -43,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 3275: 71,61 + 5527: -44,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 3279: 71,59 + 5525: -44,-6 + - node: + color: '#52B4E996' + id: BrickTileDarkLineW + decals: + 5612: -34,205 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 3278: 70,60 + 5524: -45,-5 + - node: + color: '#32CD32FF' + id: BrickTileSteelInnerSe + decals: + 357: 29,18 + - node: + zIndex: 6 + angle: 6.283185307179586 rad + color: '#B48357FF' + id: BrickTileSteelLineE + decals: + 3901: -26,66 + 3902: -26,65 + 3903: -26,67 + 3904: -26,68 + 3905: -26,69 + 3906: -26,70 + 3907: -26,70 + 3908: -26,71 + - node: + color: '#CB8B5563' + id: BrickTileSteelLineE + decals: + 4698: -29.983158,66.96614 + - node: + color: '#CB8B556F' + id: BrickTileSteelLineE + decals: + 4697: -30.230614,66.97363 + - node: + color: '#CB8B55BE' + id: BrickTileSteelLineE + decals: + 4696: -30.463074,66.97363 + - node: + color: '#CB8B55FF' + id: BrickTileSteelLineE + decals: + 4695: -30.725527,66.98863 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 978: -16,84 + 1005: -11,83 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 643: 98,55 + 644: 99,54 + 3282: 72,55 + 5099: 38,63 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 4071: -119,108 + - node: + color: '#FFC364FF' + id: BrickTileWhiteCornerNe + decals: + 15: -26,0 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 397: 31,20 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 976: -21,84 + 1004: -13,83 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 645: 92,55 + 3281: 70,55 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 4070: -123,108 + - node: + color: '#FFC364FF' + id: BrickTileWhiteCornerNw + decals: + 16: -30,0 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 977: -16,81 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 602: 62,58 + 646: 99,52 + 647: 98,51 + 3286: 72,52 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 4072: -119,105 + - node: + color: '#FFC364FF' + id: BrickTileWhiteCornerSe + decals: + 17: -26,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 398: 31,18 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 979: -21,81 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 648: 92,51 + 3287: 70,52 + 5102: 35,59 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 4073: -123,105 + - node: + color: '#FFC364FF' + id: BrickTileWhiteCornerSw + decals: + 18: -30,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 379: 26,11 + 405: 26,14 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndE + decals: + 805: 100,53 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndS + decals: + 3293: 71,51 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 1034: -13,77 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 807: 99,53 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 1033: -11,77 + - node: + angle: 3.141592653589793 rad + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 806: 99,53 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 1032: -13,83 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 3292: 71,52 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 399: 29,18 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 1031: -11,83 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 3291: 71,52 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 980: -16,82 + 981: -16,83 + 1006: -11,82 + 1007: -11,81 + 1008: -11,80 + 1009: -11,79 + 1010: -11,78 + 1011: -11,77 + 1026: -13,78 + 1027: -13,79 + 1028: -13,80 + 1029: -13,81 + 1030: -13,82 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 3284: 72,54 + 3285: 72,53 + 5106: 38,62 + 5107: 38,60 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 4079: -119,106 + 4080: -119,107 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 372: 33,15 + 395: 31,19 + 400: 29,16 + 401: 29,15 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 982: -20,84 + 983: -19,84 + 984: -18,84 + 985: -17,84 + 1024: -12,83 + 1025: -12,77 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 654: 97,55 + 655: 93,55 + 3283: 71,55 + 5100: 37,63 + 5101: 36,63 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 4081: -122,108 + 4082: -121,108 + 4083: -120,108 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 373: 32,16 + 380: 27,12 + 381: 28,12 + 392: 30,20 + 393: 28,20 + 394: 27,20 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 986: -20,81 + 987: -19,81 + 988: -18,81 + 989: -17,81 + 1023: -12,83 + - node: + color: '#7C521DF0' + id: BrickTileWhiteLineS + decals: + 3916: -29.995827,67.92475 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 652: 93,51 + 653: 97,51 + 5109: 36,59 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 4074: -122,105 + 4075: -121,105 + 4076: -120,105 + - node: + color: '#FFC364FF' + id: BrickTileWhiteLineS + decals: + 19: -27,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 375: 32,13 + 376: 32,11 + 377: 29,11 + 378: 28,11 + 396: 30,18 + 402: 28,14 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 990: -21,82 + 991: -21,83 + 1012: -13,82 + 1013: -13,81 + 1014: -13,80 + 1015: -13,79 + 1016: -13,78 + 1017: -13,77 + 1018: -11,78 + 1019: -11,79 + 1020: -11,80 + 1021: -11,81 + 1022: -11,82 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 649: 92,52 + 650: 92,54 + 651: 92,53 + 3288: 70,53 + 3289: 70,54 + 5103: 35,60 + 5104: 35,61 + 5105: 35,62 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 4077: -123,106 + 4078: -123,107 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 374: 31,14 + 403: 26,16 + 404: 26,18 + - node: + color: '#FFFFFFFF' + id: BushAOne + decals: + 1699: -96,153 + 1700: -97,147 + 1971: -91,168 + 2227: -60,174 + 2228: -60,172 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushAOne + decals: + 1805: -77,174 + - node: + color: '#FFFFFFFF' + id: BushAThree + decals: + 1686: -90,151 + 1687: -91,151 + 1793: -81,155 + 1794: -89,154 + 1970: -90,167 + 1974: -91,173 + 1978: -90,175 + 1979: -89,174 + 1980: -86,170 + 2169: -70,170 + 2229: -59,173 + 2952: 11,195 + 4262: -71,155 + 4263: -72,154 + 4932: -70.62138,66.85323 + 4933: -70.62138,66.85323 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushAThree + decals: + 1800: -84,168 + 1809: -76,168 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 1685: -91,152 + 3676: -65,89 + 3790: -64,107 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 1090: -10,73 + 1695: -82,150 + 1973: -90,173 + 2267: -65,162 + 2330: -58,153 + 2331: -59,153 + 2954: 12,200 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushCOne + decals: + 1808: -76,167 + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 1688: -96,149 + 1692: -81,151 + 2962: 13,188 + 2963: 17,189 + 4202: -90,152 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 1684: -96,147 + 1972: -91,172 + 1986: -90,168 + 2265: -61,159 + 2266: -60,163 + 2329: -60,153 + 2948: 8,193 + 2956: 8,188 + 2964: 17,188 + 2966: 14,184 + 2967: 12,187 + 3670: -66,106 + 3671: -70,100 + 3672: -64,97 + 3673: -65,98 + 3674: -68,92 + 3950: -42,109 + 4264: -72,153 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushCTwo + decals: + 1806: -76,175 + 1807: -77,167 + - node: + color: '#FFFFFFFF' + id: BushDOne + decals: + 4155: -32.197315,101.97789 + - node: + color: '#FFFFFFFF' + id: BushDTwo + decals: + 4156: -30.96294,100.29039 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 1696: -86,151 + 1697: -89,151 + 1984: -94,175 + 2135: -74,175 + 2958: 8,189 + 2975: 8,191 + 2976: 14,191 + 3791: -64,106 + 4265: -71,153 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 1682: -86,150 + 1690: -99,149 + 2271: -67,168 + 2272: -63,169 + 2950: 9,195 + 2951: 10,195 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Busha2 + decals: + 1803: -77,175 + - node: + color: '#FFFFFFFF' + id: Busha3 + decals: + 2968: 13,189 + 2969: 13,193 + 2970: 11,193 + 2971: 12,196 + 3786: -63,106 + 5496: -42,88 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Busha3 + decals: + 1801: -84,170 + 1802: -83,174 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 1683: -81,150 + 1975: -91,174 + 2136: -74,177 + 2224: -60,171 + 2226: -59,174 + 2269: -65,166 + 2270: -66,168 + 2321: -98,155 + 2991: 11,184 + 3669: -64,104 + 4259: -72,156 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushb1 + decals: + 1799: -84,167 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 1694: -85,151 + 2167: -69,172 + 2268: -65,165 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 1698: -95,152 + 1791: -80,154 + 1967: -91,167 + 1982: -86,168 + 1983: -93,175 + 2166: -69,168 + 2225: -59,172 + 2949: 8,194 + 2957: 9,188 + 5494: -39,75 + 5495: -42,87 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 1689: -98,150 + 1693: -80,152 + 1792: -81,154 + 1968: -93,167 + 1969: -89,167 + 1981: -86,169 + 1985: -93,173 + 2168: -70,171 + 2273: -65,168 + 2274: -62,168 + 2947: 10,194 + 2959: 14,187 + 2960: 15,188 + 2961: 13,190 + 2972: 9,190 + 2973: 12,189 + 2974: 13,197 + 3787: -63,105 + 3788: -64,105 + 3789: -65,107 + 3953: -42,110 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushc1 + decals: + 1804: -76,174 + - node: + color: '#FFFFFFFF' + id: Bushc2 + decals: + 1691: -83,150 + 2275: -67,167 + 2276: -60,162 + 2946: 12,194 + 2953: 15,197 + 2992: 12,184 + 3675: -67,90 + 3951: -40,110 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 1976: -90,174 + 1977: -91,175 + 2955: 15,200 + 2965: 18,186 + 3952: -40,109 + 4260: -72,155 + 4261: -71,156 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 4357: -31.097195,101.354744 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 4356: -33.05032,102.05787 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 4931: -66.90263,71.07198 + 4937: -65.01435,71.22823 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushk3 + decals: + 4468: -46.96315,172.26266 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 601: 60.50598,58.82719 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Caution + decals: + 4366: -125,66 + - node: + color: '#FFFFFFFF' + id: CheckerNESW + decals: + 180: -29,-5 + 181: -28,-5 + 182: -27,-5 + 183: -27,-6 + 184: -28,-6 + 185: -29,-6 + 186: -29,-7 + 187: -28,-7 + 188: -27,-7 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 1891: -92,164 + 1892: -92,163 + 1893: -91,163 + 1894: -91,164 + 1895: -90,164 + 1896: -90,163 + 1897: -89,163 + 1898: -89,164 + 1899: -88,163 + 1900: -88,164 + 1901: -87,163 + 1902: -87,164 + 1903: -86,164 + 1904: -86,163 + 1905: -85,163 + 1906: -85,164 + 1907: -84,164 + 1908: -84,163 + - node: + color: '#DE3A3A96' + id: ConcreteTrimCornerNw + decals: + 5126: 35,63 + - node: + color: '#2D7230FF' + id: Damaged + decals: + 801: 55,43 + 802: 53,40 + 803: 55,39 + 804: 51,38 + - node: + color: '#5E7C16FF' + id: Damaged + decals: + 358: 32,16 + 359: 33,15 + 360: 29,15 + 361: 29,19 + 362: 28,18 + 382: 28,12 + 383: 32,11 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 53: -27,0 + 102: -32.993034,-17.985094 + 247: -10,-1 + 248: -8,-1 + 249: -15,-1 + 250: -17,-1 + 1001: -17,79 + 3290: 71,53 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 5517: -114,24 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 453: 71,46 + - node: + color: '#B0B1B160' + id: Dirt + decals: + 4952: -63,90 + 4953: -60,89 + 4954: -62,89 + 4955: -61,90 + 4956: -61,91 + - node: + cleanable: True + color: '#D4D4D43C' + id: Dirt + decals: + 5158: 80,22 + 5162: 79,22 + 5163: 80,19 + - node: + cleanable: True + color: '#FFFFFF28' + id: Dirt + decals: + 4963: -63,90 + 4964: -62,91 + 4965: -62,91 + 4966: -61,89 + 4967: -65,90 + 4968: -65,91 + 4969: -64,89 + - node: + cleanable: True + color: '#FFFFFF30' + id: Dirt + decals: + 4957: -64,90 + - node: + cleanable: True + color: '#FFFFFF41' + id: Dirt + decals: + 4970: -62,90 + 4971: -62,90 + 4972: -63,91 + 4973: -61,89 + - node: + cleanable: True + color: '#FFFFFF56' + id: Dirt + decals: + 4958: -62,90 + 4959: -62,89 + 4960: -61,91 + - node: + cleanable: True + color: '#FFFFFF92' + id: Dirt + decals: + 4961: -64,90 + 4962: -61,90 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 3917: -126,88 + 3936: -138,89 + 3938: -139,89 + 3987: -49,-1 + 3988: -50,-1 + 3989: -51,-1 + 3990: -53,-1 + 3991: -52,-1 + 3992: -52,-2 + 3993: -49,-2 + 3994: -47,-2 + 3995: -48,-1 + 3996: -50,-2 + 3997: -51,-2 + 3998: -51,-3 + 3999: -52,-3 + 4000: -53,-3 + 4001: -53,-4 + 4002: -55,-5 + 4003: -55,-6 + 4004: -54,-5 + 4005: -55,-3 + 4006: -52,1 + 4007: -52,0 + 4008: -53,2 + 4009: -52,4 + 4010: -52,3 + 4011: -51,4 + 4012: -51,5 + 4013: -50,6 + 4014: -51,6 + 4015: -50,7 + 4016: -52,2 + 4017: -52,5 + 4018: -49,8 + 4019: -51,8 + 4020: -52,9 + 4021: -51,7 + 4022: -52,7 + 4023: -48,9 + 4024: -50,8 + 4025: -49,9 + 4026: -47,9 + 4027: -45,9 + 4028: -46,9 + 4029: -46,10 + 4030: -47,10 + 4031: -44,10 + 4032: -42,10 + 4410: -10,180 + 4411: -10,178 + 4412: -11,179 + 4413: -11,180 + 4414: -12,181 + 4415: -11,175 + 4416: -11,176 + 4417: -12,175 + 4418: -10,177 + 4457: 9,219 + 4458: 7,217 + 4459: 9,218 + 4461: -7,219 + 4462: -7,218 + 4573: 51,49 + 4574: 48,49 + 4575: 49,50 + 4576: 50,48 + 4577: 49,48 + 4578: 51,48 + 4579: 51,52 + 4580: 50,52 + 4581: 49,53 + 4582: 48,53 + 4583: 47,52 + 4584: 45,53 + 4585: 50,49 + 4586: 49,49 + 4587: 49,49 + 4588: 46,50 + 4589: 45,50 + 4590: 45,49 + 4591: 46,49 + 4592: 46,48 + 4593: 52,53 + 4594: 51,53 + 4595: 52,47 + 4596: 52,49 + 4597: 51,51 + 4598: 48,51 + 4599: 51,52 + 5360: -146,110 + 5361: -146,108 + 5362: -147,106 + 5363: -144,107 + 5364: -142,108 + 5365: -141,110 + 5366: -139,108 + 5367: -139,107 + 5368: -140,105 + 5369: -142,105 + 5370: -142,106 + 5371: -144,106 + 5372: -148,105 + 5373: -150,104 + 5374: -151,105 + 5375: -145,107 + 5376: -140,109 + 5377: -134,107 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 87: -34.024284,-17.96947 + 88: -33.961784,-19.96947 + 89: -36.03991,-20.016344 + 351: 28,15 + 352: 30,19 + 363: 26,18 + 389: 31,18 + 390: 33,16 + 636: 66,66 + 797: 52,43 + 1504: -56,91 + 1579: -48,72 + 1580: -48,73 + 1581: -49,73 + 1582: -54,73 + 1583: -54,79 + 1584: -51,81 + 1585: -50,81 + 1586: -54,85 + 1587: -54,86 + 1588: -52,70 + 1589: -52,69 + 1590: -51,63 + 1591: -51,62 + 1592: -49,61 + 1593: -47,61 + 1594: -48,61 + 1595: -51,60 + 1596: -42,62 + 1597: -42,62 + 1598: -43,62 + 1599: -36,63 + 1600: -36,62 + 1601: -37,62 + 1602: -42,58 + 1603: -41,57 + 1604: -42,59 + 2034: -93,174 + 2035: -93,172 + 2036: -96,175 + 2037: -97,176 + 2038: -97,175 + 2039: -97,175 + 2040: -98,174 + 2382: 0,184 + 2383: -1,184 + 2384: 0,185 + 2385: -2,184 + 2386: -4,185 + 2387: -5,185 + 2388: -8,184 + 2389: -7,184 + 2390: -7,185 + 2391: -6,185 + 2392: -1,184 + 2393: -3,185 + 2394: -10,183 + 2395: -9,183 + 2396: -10,182 + 2397: -9,182 + 2398: -9,174 + 2399: -10,175 + 2400: -9,177 + 2401: -9,179 + 2402: -10,179 + 2403: -9,176 + 2404: -9,175 + 2405: -9,175 + 2406: -10,179 + 2407: -11,181 + 2408: -10,181 + 2509: -11,182 + 2510: -12,183 + 2511: -12,184 + 2512: -13,184 + 2513: -12,184 + 2514: -13,182 + 2515: -14,182 + 2516: -15,182 + 2517: -16,183 + 2518: -17,183 + 2519: -18,184 + 2520: -19,184 + 2521: -16,182 + 2522: -18,183 + 2523: -20,184 + 2524: -21,186 + 2525: -22,186 + 2526: -23,187 + 2527: -24,188 + 2528: -24,189 + 2529: -23,188 + 2530: -23,189 + 2531: -22,187 + 2532: -23,188 + 2533: -21,185 + 2534: -19,183 + 2535: -22,186 + 2536: -18,183 + 2537: -20,187 + 2538: -20,188 + 2539: -19,189 + 2540: -12,182 + 2541: -13,183 + 2542: -14,183 + 2543: -11,183 + 2544: -15,183 + 2545: -13,183 + 2546: -13,184 + 2547: -11,182 + 2548: -15,183 + 2549: -10,174 + 2550: -10,176 + 2551: -9,178 + 2552: -9,180 + 2553: -9,181 + 2554: -17,182 + 2555: -20,183 + 2556: -21,182 + 2557: -21,181 + 2558: -20,182 + 2559: -20,181 + 2560: -24,187 + 2561: -23,186 + 2562: -22,185 + 2563: -21,184 + 2564: -8,183 + 2565: -7,183 + 2566: -8,182 + 2567: -6,184 + 2568: -5,184 + 2569: -4,184 + 2570: -3,184 + 2571: -2,185 + 2572: -1,185 + 2573: -4,184 + 2574: -5,184 + 2575: -8,183 + 2576: -9,182 + 2577: -10,182 + 2578: -19,183 + 2579: -20,184 + 2580: -20,185 + 2581: -21,185 + 2582: -9,176 + 2583: -2,186 + 2584: -3,186 + 2585: -2,187 + 2586: -1,189 + 2724: -3,203 + 2725: -3,204 + 2726: -4,203 + 2727: -4,204 + 2728: -5,203 + 2729: -6,202 + 2730: -6,203 + 2731: -7,202 + 2732: -7,203 + 2733: -8,202 + 2734: -8,203 + 2735: -9,202 + 2736: -9,203 + 2737: -13,204 + 2738: -12,204 + 2739: -13,205 + 2740: -11,204 + 2741: -10,204 + 2742: -10,205 + 2743: -9,205 + 2744: -9,204 + 2745: -10,203 + 2746: -11,203 + 2747: -12,203 + 2748: -11,202 + 2749: -11,201 + 2750: -12,202 + 2751: -12,201 + 2752: -13,200 + 2753: -12,200 + 2754: -13,199 + 2755: -12,199 + 2756: -14,200 + 2757: -15,200 + 2758: -17,200 + 2759: -13,204 + 2760: -12,204 + 2761: -12,202 + 2762: -12,201 + 2763: -13,199 + 2764: -12,199 + 2765: -12,200 + 2766: -10,205 + 2767: -10,204 + 2768: -11,203 + 2769: -9,203 + 2770: -8,203 + 2771: -6,203 + 2772: -11,204 + 2773: -12,203 + 2774: -13,205 + 2775: -12,204 + 2776: -12,199 + 2806: -22,199 + 2807: -21,199 + 2808: -21,200 + 2809: -20,200 + 2810: -22,200 + 2811: -19,200 + 2812: -18,200 + 2813: -22,199 + 2814: -21,200 + 2815: -20,200 + 2816: -18,200 + 3520: -71,92 + 3521: -73,75 + 3522: -76,74 + 3523: -76,75 + 3524: -76,75 + 3525: -76,75 + 3526: -76,75 + 3527: -76,75 + 3528: -76,75 + 3529: -76,75 + 3530: -76,75 + 3531: -76,75 + 3532: -76,75 + 3533: -76,75 + 3534: -76,75 + 3605: -42,60 + 3606: -42,60 + 3607: -42,60 + 3608: -42,60 + 3609: -42,60 + 3610: -42,60 + 3611: -42,60 + 3612: -42,60 + 3613: -42,60 + 3614: -42,60 + 3615: -42,60 + 3616: -42,60 + 3618: -42,60 + 3619: -42,60 + 3620: -41,58 + 3621: -40,58 + 3622: -39,58 + 3623: -38,58 + 3624: -40,58 + 3625: -40,58 + 3626: -41,58 + 3627: -41,58 + 3628: -40,58 + 3629: -40,58 + 3630: -41,59 + 3631: -40,59 + 3632: -40,59 + 3633: -40,59 + 3634: -41,59 + 3635: -39,58 + 3636: -39,58 + 3637: -37,58 + 3638: -36,58 + 3639: -36,57 + 3640: -36,59 + 3641: -37,59 + 3642: -37,60 + 3643: -37,60 + 3644: -36,60 + 3645: -38,59 + 3646: -42,57 + 3647: -43,57 + 3648: -43,59 + 3649: -44,59 + 3777: -22,60 + 3778: -22,61 + 3779: -20,60 + 3780: -21,61 + 3781: -21,62 + 3782: -21,61 + 3783: -22,60 + 3784: -20,60 + 4244: -99,53 + 4246: -89,58 + 4247: -88,59 + 4363: -119,66 + 4364: -125,65 + 4365: -120,63 + 5007: -30,189 + 5010: -27,205 + 5013: -19,209 + 5014: -19,209 + 5017: -10,212 + 5018: -5,211 + 5020: -2,211 + 5021: 1,214 + 5024: 3,208 + 5028: 11,202 + 5032: 22,201 + 5033: 23,197 + 5034: 23,197 + 5036: 24,192 + 5037: 23,186 + 5042: 19,182 + 5044: 21,179 + 5045: 22,176 + 5051: 13,181 + 5055: 3,169 + 5058: 3,174 + 5059: -30,177 + 5060: -30,177 + 5066: -32,178 + 5067: -35,180 + 5068: -41,176 + 5069: -41,176 + 5070: -48,177 + 5071: -40,173 + 5072: -38,174 + 5073: -52,172 + 5074: -56,169 + 5079: -80,144 + 5080: -85,144 + 5082: -87,143 + 5084: -89,145 + 5085: -89,145 + 5090: -101,149 + 5092: -109,149 + 5093: -131,25 + 5095: -130,31 + 5124: 31,59 + 5125: 31,61 + 5142: -104,149 + 5152: 81,18 + 5154: 80,23 + 5155: 80,18 + 5180: 85,45 + 5184: 87,61 + 5199: -130,105 + 5200: -132,108 + 5201: -134,109 + 5202: -135,105 + 5203: -136,109 + 5204: -129,108 + 5205: -131,108 + 5206: -135,105 + 5207: -134,107 + 5212: -133,109 + 5213: -131,109 + 5216: -132,106 + 5224: -124,102 + 5225: -121,102 + 5226: -121,103 + 5227: -116,100 + 5228: -118,99 + 5229: -119,97 + 5230: -117,98 + 5231: -115,100 + 5232: -119,101 + 5234: -119,103 + 5235: -119,102 + 5236: -117,103 + 5237: -115,102 + 5247: -103,100 + 5248: -101,100 + 5249: -102,99 + 5250: -105,98 + 5251: -107,100 + 5252: -105,99 + 5253: -110,99 + 5254: -111,100 + 5255: -112,98 + 5256: -108,98 + 5257: -108,99 + 5258: -107,100 + 5259: -110,100 + 5260: -103,98 + 5263: -112,98 + 5264: -110,99 + 5265: -113,99 + 5266: -109,100 + 5267: -105,98 + 5268: -100,100 + 5269: -100,98 + 5270: -105,98 + 5271: -107,99 + 5274: -104,103 + 5275: -101,102 + 5276: -104,102 + 5277: -118,94 + 5278: -115,92 + 5279: -120,91 + 5280: -120,94 + 5281: -115,95 + 5286: -119,94 + 5287: -120,95 + 5288: -116,92 + 5289: -120,92 + 5290: -119,93 + 5291: -116,94 + 5292: -117,93 + 5293: -117,92 + 5294: -118,93 + 5295: -117,93 + 5296: -115,91 + 5297: -126,107 + 5298: -127,108 + 5299: -127,107 + 5300: -127,109 + 5301: -125,108 + 5302: -126,106 + 5303: -125,105 + 5305: -127,108 + 5310: -122,107 + 5311: -121,107 + 5312: -119,106 + 5313: -123,105 + 5314: -119,105 + 5315: -119,106 + 5316: -130,105 + 5317: -136,107 + 5318: -136,108 + 5319: -136,107 + 5320: -136,106 + 5321: -137,107 + 5322: -133,106 + 5323: -133,107 + 5324: -131,107 + 5325: -130,106 + 5326: -129,105 + 5327: -124,97 + 5328: -126,95 + 5329: -123,98 + 5330: -125,99 + 5331: -122,95 + 5337: -126,92 + 5338: -124,91 + 5339: -123,92 + 5340: -122,91 + 5344: -129,98 + 5345: -128,98 + 5346: -128,101 + 5347: -129,102 + 5348: -128,91 + 5396: -123,93 + 5397: -123,94 + 5399: -144,90 + 5401: -98,98 + 5404: -100,98 + 5420: -98,99 + 5421: -98,100 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5019: -5,212 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3922: -129,89 + 3923: -126,88 + 3935: -140,88 + 3937: -139,89 + 4460: 9,218 + 4464: -7,217 + 4512: 59,39 + 4514: 59,43 + 5116: 38,59 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 0: -31,7 + 1: -33,8 + 41: -34,-1 + 42: -33,0 + 48: -28,-7 + 49: -29,-2 + 51: -30,0 + 52: -30,-8 + 54: -29,-5 + 69: -36,-4 + 112: -31.977407,-20.016344 + 231: -23,3 + 232: -11,3 + 258: -20,-3 + 259: -18,-6 + 260: -14,-6 + 261: -14,-3 + 262: -12,-1 + 263: -9,-1 + 365: 32,15 + 387: 28,20 + 428: 61,54 + 441: 76,46 + 442: 78,50 + 443: 76,51 + 519: 81,57 + 637: 65,66 + 638: 73,65 + 639: 77,67 + 694: 97,54 + 702: 97,47 + 706: 104,61 + 707: 110,57 + 714: 113,46 + 800: 53,43 + 859: 49,61 + 870: 53,66 + 920: 68,22 + 1059: -21,82 + 1060: -17,84 + 1061: -16,82 + 1605: -57,76 + 1606: -59,77 + 2017: -94,168 + 2025: -86,162 + 2031: -80,175 + 2032: -76,171 + 2041: -96,175 + 2042: -97,176 + 2146: -70,178 + 2147: -70,180 + 2148: -74,178 + 3514: -41,92 + 3515: -41,94 + 3516: -42,108 + 3518: -74,96 + 3519: -73,97 + 3723: -45,88 + 3724: -45,80 + 3725: -37,78 + 3726: -38,73 + 3727: -42,72 + 3728: -54,90 + 3729: -58,89 + 3730: -57,81 + 3731: -58,73 + 3732: -66,74 + 3733: -71,73 + 3752: -24,73 + 3753: -11,71 + 3754: -7,75 + 3755: -7,81 + 3756: -6,71 + 3757: -11,67 + 3758: -7,66 + 3759: -7,68 + 3764: -11,62 + 3765: -9,62 + 3766: -12,63 + 3767: -18,64 + 3768: -22,61 + 3769: -20,62 + 3770: -21,63 + 3771: -21,62 + 3772: -22,63 + 3942: -4,60 + 3943: -3,62 + 4237: -94,73 + 4239: -108,67 + 4243: -98,53 + 4248: -86,59 + 4252: -76,64 + 4274: -139,39 + 4329: -26,208 + 4352: -1,163 + 4369: -125,66 + 4442: -25,166 + 4447: 5,166 + 5008: -31,188 + 5022: 0,212 + 5025: 6,209 + 5029: 19,200 + 5043: 17,180 + 5046: 20,175 + 5047: 20,175 + 5056: 0,169 + 5077: -79,145 + 5081: -84,140 + 5141: -105,148 + 5153: 80,23 + 5183: 90,61 + 5208: -134,109 + 5220: -125,103 + 5238: -117,102 + 5239: -113,98 + 5272: -105,102 + 5282: -116,91 + 5304: -127,107 + 5309: -121,106 + 5332: -125,95 + 5333: -123,99 + 5349: -120,91 + 5400: -144,90 + 5402: -98,98 + 5422: -98,99 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5222: -122,102 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3920: -128,88 + 3932: -140,89 + 5117: 38,63 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2: -35,7 + 3: -32,9 + 4: -30,4 + 43: -35,-2 + 44: -28,-1 + 70: -39,-15 + 90: -49,-12 + 91: -46,-10 + 113: -34.993034,-18.016344 + 117: -40,-5 + 118: -40,-6 + 119: -61,-4 + 264: -24,-5 + 265: -15,-3 + 266: -12,-3 + 267: -6,-3 + 283: -1,0 + 369: 30,18 + 386: 27,14 + 388: 31,19 + 391: 33,13 + 429: 62,51 + 430: 60,51 + 431: 61,48 + 640: 67,68 + 641: 73,68 + 695: 93,52 + 696: 98,51 + 700: 97,59 + 701: 93,48 + 708: 113,58 + 710: 116,58 + 711: 103,64 + 799: 52,42 + 860: 42,60 + 861: 44,61 + 862: 57,67 + 877: 63,66 + 926: 70,40 + 927: 70,35 + 928: 77,39 + 929: 82,38 + 930: 80,42 + 931: 87,45 + 932: 90,49 + 933: 88,52 + 934: 90,55 + 935: 93,59 + 936: 102,57 + 937: 115,58 + 1062: -13,78 + 1063: -11,77 + 1572: -41,78 + 1573: -41,84 + 1574: -41,81 + 1578: -8,71 + 1607: -62,66 + 1608: -58,66 + 1609: -58,69 + 2018: -88,168 + 2022: -90,171 + 2023: -92,165 + 2024: -93,162 + 2142: -70,174 + 2143: -72,176 + 2144: -70,176 + 2145: -73,174 + 3026: -30,175 + 3413: 72,54 + 3517: -72,94 + 3535: -82,101 + 3655: -84,33 + 3734: -69,73 + 3735: -58,78 + 3736: -50,89 + 3737: -39,92 + 3738: -33,90 + 3739: -37,83 + 3740: -37,72 + 3760: -5,65 + 3761: -10,66 + 3762: -11,63 + 3763: -10,61 + 4236: -98,72 + 4249: -82,61 + 4328: -27,209 + 4331: -30,212 + 5009: -30,193 + 5015: -17,210 + 5040: 21,185 + 5050: 23,175 + 5054: 1,172 + 5064: -19,174 + 5065: -19,174 + 5075: -40,173 + 5078: -77,149 + 5087: -93,143 + 5088: -93,143 + 5097: -132,28 + 5156: 81,19 + 5211: -136,109 + 5221: -116,98 + 5241: -112,100 + 5245: -106,98 + 5273: -101,102 + 5306: -127,108 + 5334: -124,97 + 5336: -122,94 + 5342: -129,92 + 5343: -129,100 + 5398: -123,93 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 3919: -128,88 + 3924: -126,88 + 3926: -130,87 + 3927: -140,89 + 3928: -140,89 + 3929: -140,89 + 3930: -140,89 + 3931: -139,88 + 4455: 8,217 + 4463: -7,219 + 4465: -9,219 + 4466: -9,217 + 5118: 37,61 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 5: -27,4 + 6: -34,1 + 45: -27,-1 + 46: -27,-5 + 67: -33,-5 + 96: -47,-11 + 97: -47,-14 + 98: -48,-8 + 99: -48,-6 + 100: -49,-5 + 101: -47,-5 + 111: -35.00866,-21.03197 + 116: -40,0 + 233: -18,3 + 234: -14,3 + 235: -8,3 + 268: -7,-3 + 269: -7,-2 + 270: -11,-2 + 271: -22,-5 + 272: -20,-6 + 282: 2,2 + 350: 29,19 + 367: 28,15 + 368: 26,17 + 432: 62,48 + 433: 61,52 + 436: 65,52 + 437: 65,46 + 438: 68,47 + 445: 77,56 + 446: 74,59 + 447: 72,58 + 574: 63,61 + 578: 69,44 + 642: 76,66 + 697: 99,52 + 698: 92,54 + 699: 94,58 + 703: 99,48 + 704: 91,48 + 712: 103,48 + 713: 109,46 + 798: 51,42 + 863: 63,67 + 864: 53,59 + 865: 40,61 + 878: 62,66 + 879: 74,66 + 938: 112,59 + 939: 95,58 + 940: 89,56 + 941: 87,55 + 942: 89,50 + 943: 89,47 + 944: 87,46 + 945: 90,42 + 946: 90,47 + 947: 88,44 + 948: 85,38 + 949: 84,40 + 950: 80,39 + 1064: -11,81 + 1065: -12,83 + 1575: -25,86 + 1576: -23,84 + 1610: -58,70 + 2026: -85,164 + 2033: -79,167 + 2043: -98,174 + 2044: -98,174 + 3025: -26,173 + 3251: 106,58 + 3652: -85,33 + 3741: -29,91 + 3742: -23,88 + 3743: -19,92 + 3744: -19,99 + 3773: -22,60 + 3774: -20,60 + 3775: -22,63 + 3776: -20,62 + 3944: -5,62 + 3945: -5,63 + 3946: -7,62 + 4234: -103,68 + 4238: -91,74 + 4240: -94,55 + 4241: -91,57 + 4250: -83,62 + 4327: -30,208 + 4330: -28,210 + 4368: -123,64 + 4370: -125,64 + 4440: -21,162 + 4443: -20,165 + 4444: 17,205 + 5012: -22,209 + 5016: -15,212 + 5023: 3,210 + 5027: 5,205 + 5030: 21,199 + 5031: 21,199 + 5041: 22,184 + 5049: 23,181 + 5053: 4,175 + 5063: -23,173 + 5083: -85,145 + 5089: -99,145 + 5096: -133,33 + 5098: -131,25 + 5157: 80,21 + 5182: 84,54 + 5209: -129,108 + 5214: -132,106 + 5218: -118,99 + 5242: -108,99 + 5244: -103,100 + 5261: -103,98 + 5284: -115,94 + 5285: -119,91 + 5307: -126,107 + 5335: -126,100 + 5341: -129,92 + 5403: -100,98 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 5223: -121,102 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3918: -129,89 + 3921: -129,89 + 3925: -130,87 + 3933: -139,89 + 3934: -139,88 + 4456: 7,218 + 4511: 57,42 + 4513: 57,38 + 5119: 32,59 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 7: -31,3 + 8: -29,3 + 47: -29,-6 + 50: -26,-1 + 68: -35,-5 + 92: -48,-12 + 93: -49,-9 + 94: -45,-8 + 95: -50,-13 + 110: -34.993034,-20.00072 + 120: -51,0 + 121: -53,1 + 122: -51,2 + 123: -50,-1 + 124: -52,-3 + 125: -47,-2 + 126: -45,-1 + 127: -44,0 + 128: -43,0 + 129: -53,4 + 130: -51,5 + 131: -48,7 + 132: -52,-1 + 133: -48,8 + 134: -46,12 + 135: -50,10 + 136: -45,10 + 137: -42,12 + 138: -41,11 + 139: -46,14 + 236: -23,4 + 237: -16,3 + 238: -12,4 + 273: -11,-3 + 274: -7,-1 + 275: -15,0 + 276: -22,0 + 277: -12,0 + 278: -16,-4 + 279: -3,-1 + 280: 1,1 + 281: 4,-1 + 349: 26.966436,17.025229 + 364: 27,11 + 366: 30,11 + 384: 27,11 + 385: 27,16 + 434: 60,49 + 435: 65,54 + 439: 69,47 + 440: 71,46 + 444: 77,53 + 575: 66,49 + 576: 71,44 + 577: 73,43 + 715: 114,49 + 716: 103,47 + 867: 42,64 + 924: 65,20 + 925: 66,39 + 1577: -25,73 + 2019: -89,170 + 2020: -88,172 + 2021: -87,175 + 2027: -87,163 + 2028: -83,164 + 2029: -84,172 + 2030: -82,174 + 3250: 110,60 + 3414: 70,52 + 3551: -33,57 + 3552: -34,57 + 3553: -34,60 + 3554: -33,60 + 3555: -33,60 + 3556: -33,60 + 3557: -33,60 + 3558: -33,60 + 3561: -33,60 + 3563: -33,60 + 3564: -33,60 + 3566: -33,60 + 3568: -33,60 + 3577: -43,57 + 3578: -43,57 + 3579: -43,57 + 3580: -43,60 + 3581: -42,60 + 3582: -42,60 + 3583: -42,60 + 3584: -43,60 + 3585: -43,60 + 3586: -43,60 + 3587: -43,60 + 3588: -42,60 + 3589: -42,60 + 3590: -42,60 + 3591: -42,60 + 3592: -42,60 + 3593: -42,60 + 3594: -42,60 + 3595: -42,60 + 3596: -42,60 + 3598: -42,60 + 3599: -42,60 + 3601: -42,60 + 3602: -42,60 + 3604: -42,60 + 3653: -84,33 + 3654: -85,33 + 3745: -18,98 + 3746: -17,93 + 3747: -19,90 + 3748: -24,82 + 3749: -25,75 + 3750: -20,77 + 3751: -15,74 + 4235: -101,70 + 4242: -93,56 + 4245: -88,58 + 4251: -81,63 + 4253: -78,63 + 4351: 1,162 + 4367: -121,65 + 4441: -19,161 + 4445: 16,205 + 4446: 16,205 + 4897: -82,83 + 5006: -31,183 + 5011: -24,205 + 5026: 7,203 + 5035: 23,193 + 5038: 23,189 + 5039: 23,189 + 5048: 23,179 + 5052: 10,180 + 5057: 0,174 + 5061: -24,174 + 5062: -24,174 + 5076: -39,173 + 5086: -92,144 + 5091: -109,147 + 5094: -129,28 + 5143: -111,147 + 5181: 85,48 + 5210: -135,105 + 5215: -132,106 + 5217: -120,97 + 5219: -120,99 + 5233: -119,101 + 5240: -113,100 + 5243: -109,98 + 5246: -101,99 + 5262: -112,98 + 5283: -115,93 + 5308: -125,106 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 3230: 105,60 + - node: + cleanable: True + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 1101: -18,76 + - node: + cleanable: True + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 1100: -19,75 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 3229: 104,60 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 1091: -9,73 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 4203: -96,148 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 3227: 112,60 + 4199: -97,148 + 4200: -98,149 + 4201: -94,152 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 3228: 111,60 + 4204: -99,150 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 3224: 107,60 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 3225: 108,60 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 3226: 109,60 + - node: + color: '#14253AC6' + id: FullTileOverlayGreyscale + decals: + 1035: -14,82 + 1036: -14,83 + 1037: -14,84 + 1038: -13,84 + 1039: -12,84 + 1040: -11,84 + 1041: -10,84 + 1042: -10,83 + 1043: -10,82 + 1044: -10,81 + 1045: -10,80 + 1046: -10,79 + 1047: -10,78 + 1048: -10,77 + 1049: -14,77 + 1050: -14,78 + 1051: -14,79 + 1052: -14,80 + 1053: -14,81 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 1219: -35,84 + 1220: -35,85 + 1221: -35,86 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 1216: -42,70 + 1217: -41,70 + 1218: -40,70 + 1359: -36,5 + 1360: -35,5 + 1361: -34,5 + - node: + color: '#B0B1B160' + id: FullTileOverlayGreyscale + decals: + 4944: -63,89 + 4945: -61,89 + 4946: -63,90 + 4947: -62,91 + 4948: -64,91 + 4949: -63,90 + 4950: -63,91 + 4951: -65,90 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 1211: -47,84 + 1212: -47,85 + 1213: -47,86 + 2084: -68,156 + 2085: -68,157 + 2086: -68,158 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 1214: -35,76 + 1215: -35,77 + 1417: 69,35 + 1418: 69,34 + 1419: 69,33 + 1420: -35,78 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 3170: -88,42 + 3171: -88,41 + 3172: -88,40 + 4353: -47,77 + 4354: -47,78 + 4355: -47,76 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 2138: -73,176 + 2277: -67,166 + 2278: -60,165 + 2286: -61,167 + 3685: -70,99 + 3686: -69,100 + 3687: -66,98 + 4129: -1.2747536,60.71662 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 2281: -66,162 + 2282: -65,161 + 2988: 9,186 + 2989: 11,185 + 5487: -43,87 + 5488: -41,88 + 5489: -39,87 + 5490: -40,74 + 5491: -39,76 + 5492: -43,75 + 5493: -40,75 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 2234: -65,171 + 2283: -62,161 + 3680: -65,105 + 4127: 0.6537819,59.959724 + 4267: -70,161 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 2231: -58,171 + 2981: 12,199 + 4125: 0.61068726,61.074062 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 2232: -58,172 + 2233: -58,174 + 2290: -61,158 + 3681: -66,104 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassa5 + decals: + 1098: -19,76 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 2118: -91,171 + 2279: -60,164 + 2280: -61,162 + 2284: -67,165 + 2294: -65,164 + 2333: -61,153 + 2334: -70,156 + 2978: 13,191 + 3677: -66,90 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 2111: -82,168 + 2113: -92,168 + 2171: -70,168 + 2174: -73,167 + 2230: -61,171 + 2287: -60,166 + 2288: -67,172 + 2289: -60,159 + 2332: -57,153 + 2993: 12,183 + 3678: -64,95 + 3679: -63,97 + 4268: -69,161 + 4909: -71.068665,65.61056 + 4919: -68.80304,68.00118 + 4920: -68.80304,68.00118 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb2 + decals: + 1099: -18,75 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 2122: -82,168 + 2123: -77,173 + 2322: -98,156 + 2335: -73,157 + 2979: 10,187 + 4266: -73,154 + 4910: -70.474915,64.89181 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 2170: -70,169 + 2291: -61,157 + 2292: -63,166 + 2293: -63,165 + 2977: 9,191 + 3682: -64,102 + 3683: -67,102 + 3954: -43,109 + 4123: -1.0299377,62.839687 + 4916: -68.89679,66.11056 + 4917: -68.89679,66.09493 + 4934: -65.13701,71.18136 + 4983: -67.859055,90.60883 + 4984: -67.859055,90.59321 + 4985: -66.265305,105.00909 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 2119: -93,174 + 2120: -89,173 + 2121: -86,171 + 2124: -78,175 + 2140: -73,175 + 2141: -69,173 + 2172: -70,172 + 2173: -71,171 + 2285: -61,168 + 2295: -64,166 + 2980: 8,197 + 2990: 10,185 + 3684: -69,99 + 3955: -39,109 + 4124: -0.061187744,61.933437 + 4130: -0.9622536,60.09162 + 4269: -72,159 + 4911: -69.099915,65.20431 + 4918: -70.61554,66.26681 + 4935: -64.9206,70.82198 + 4936: -64.9206,70.82198 + 4980: -63.92388,95.910164 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 4126: -0.2524681,60.995605 + 4912: -69.756165,65.89181 + 4913: -69.756165,65.89181 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 4122: -0.99868774,62.355312 + 4131: -1.7278786,60.263496 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 4128: -0.2524681,60.044746 + 4132: -1.5418396,61.884384 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 4120: -0.18618774,62.683437 + 4914: -69.95929,66.70431 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 4915: -69.24054,67.46993 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 4121: 0.81381226,62.245937 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerNe + decals: + 5185: -129,109 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerSw + decals: + 5196: -137,105 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNe + decals: + 5190: -129,107 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNw + decals: + 5197: -137,109 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSe + decals: + 5195: -133,105 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineE + decals: + 5191: -129,106 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 5186: -130,109 + 5187: -131,109 + 5188: -132,109 + 5189: -133,109 + 5198: -135,109 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineS + decals: + 5192: -131,105 + 5193: -132,105 + 5194: -134,105 + - node: + color: '#8932B878' + id: HalfTileOverlayGreyscale + decals: + 1080: -3,82 + 1081: -2,82 + 1082: -1,82 + - node: + color: '#966E50FF' + id: HalfTileOverlayGreyscale + decals: + 166: -62,-2 + 167: -61,-2 + 168: -60,-2 + 177: -58,-7 + 178: -57,-7 + 179: -56,-7 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 522: 70,41 + 523: 71,41 + 524: 72,41 + 527: 68,40 + 528: 65,40 + 529: 64,40 + 530: 66,40 + 531: 67,40 + 532: 74,40 + 533: 75,40 + 534: 76,40 + 535: 77,40 + 536: 78,40 + 662: 91,49 + 663: 92,49 + 664: 93,49 + 665: 94,49 + 666: 95,49 + 667: 96,49 + 668: 97,49 + 669: 98,49 + 670: 99,49 + 5599: 71,30 + - node: + color: '#6B84BAFF' + id: HalfTileOverlayGreyscale180 + decals: + 407: 60,54 + 408: 61,54 + 409: 62,54 + - node: + color: '#6BA487FF' + id: HalfTileOverlayGreyscale180 + decals: + 418: 60,51 + 419: 61,51 + 420: 62,51 + - node: + color: '#8932B878' + id: HalfTileOverlayGreyscale180 + decals: + 1083: -3,80 + 1084: -2,80 + 1085: -1,80 + - node: + color: '#966E50FF' + id: HalfTileOverlayGreyscale180 + decals: + 160: -66,-10 + 161: -65,-10 + 162: -64,-10 + 163: -62,-10 + 164: -61,-10 + 165: -60,-10 + 174: -56,-1 + 175: -57,-1 + 176: -58,-1 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 1112: -43,71 + 1113: -42,71 + 1114: -41,71 + 1326: -40,71 + 3720: -39,71 + - node: + color: '#A77E7DFF' + id: HalfTileOverlayGreyscale180 + decals: + 421: 60,48 + 422: 61,48 + 423: 62,48 + - node: + color: '#B2B4BE93' + id: HalfTileOverlayGreyscale180 + decals: + 4829: 81,51 + - node: + color: '#D1CA4493' + id: HalfTileOverlayGreyscale180 + decals: + 4834: 81,48 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 4823: 81,54 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 671: 91,57 + 672: 92,57 + 673: 93,57 + 674: 94,57 + 675: 95,57 + 676: 96,57 + 677: 97,57 + 678: 98,57 + 5600: 71,26 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 4407: -11,170 + 4408: -11,169 + 4409: -11,168 + - node: + color: '#6B84BAFF' + id: HalfTileOverlayGreyscale270 + decals: + 410: 60,54 + 411: 60,55 + - node: + color: '#6BA487FF' + id: HalfTileOverlayGreyscale270 + decals: + 416: 60,52 + 417: 60,51 + - node: + color: '#8932B878' + id: HalfTileOverlayGreyscale270 + decals: + 1079: -4,81 + - node: + color: '#966E50FF' + id: HalfTileOverlayGreyscale270 + decals: + 151: -62,-10 + 152: -62,-9 + 153: -62,-8 + 154: -62,-7 + 155: -62,-6 + 156: -62,-5 + 157: -62,-4 + 158: -62,-3 + 159: -62,-2 + 169: -55,-2 + 170: -55,-3 + 171: -55,-4 + 172: -55,-5 + 173: -55,-6 + - node: + color: '#A77E7DFF' + id: HalfTileOverlayGreyscale270 + decals: + 424: 60,48 + 425: 60,49 + - node: + color: '#B2B4BE93' + id: HalfTileOverlayGreyscale270 + decals: + 4830: 80,52 + - node: + color: '#D1CA4493' + id: HalfTileOverlayGreyscale270 + decals: + 4833: 80,49 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 1108: -46,87 + 1109: -46,86 + 1110: -46,84 + 1111: -46,83 + 1321: -46,85 + 4824: 80,55 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 539: 79,41 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 1115: -46,78 + 1116: -46,79 + 3717: -46,77 + 3718: -46,76 + 3719: -46,75 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 1104: -36,83 + 1105: -36,84 + 1106: -36,86 + 1107: -36,87 + 3722: -36,85 + - node: + color: '#6B84BAFF' + id: HalfTileOverlayGreyscale90 + decals: + 412: 62,54 + 413: 62,55 + - node: + color: '#6BA487FF' + id: HalfTileOverlayGreyscale90 + decals: + 414: 62,52 + 415: 62,51 + - node: + color: '#8932B878' + id: HalfTileOverlayGreyscale90 + decals: + 1078: 0,81 + - node: + color: '#966E50FF' + id: HalfTileOverlayGreyscale90 + decals: + 140: -60,-2 + 141: -60,-3 + 142: -60,-4 + 143: -60,-5 + 144: -60,-6 + 145: -60,-7 + 146: -60,-8 + 147: -60,-9 + 148: -60,-10 + 149: -64,-10 + 150: -64,-9 + - node: + color: '#A77E7DFF' + id: HalfTileOverlayGreyscale90 + decals: + 426: 62,48 + 427: 62,49 + - node: + color: '#B2B4BE93' + id: HalfTileOverlayGreyscale90 + decals: + 4831: 82,52 + - node: + color: '#D1CA4493' + id: HalfTileOverlayGreyscale90 + decals: + 4832: 82,49 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 2112: -69,155 + 2114: -69,156 + 2115: -69,157 + 2116: -69,158 + 2117: -69,159 + 4822: 82,55 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 538: 63,41 + 679: 90,56 + 680: 90,55 + 681: 90,54 + 682: 90,53 + 683: 90,52 + 684: 90,51 + 685: 90,50 + 1102: -36,77 + 1103: -36,79 + 1296: -36,75 + 1422: -36,78 + 3721: -36,76 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 3173: -89,39 + 3174: -89,40 + 3175: -89,41 + 3176: -89,42 + 3177: -89,43 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 543: 62,59 + 1002: -16,79 + 4148: 59,59 + 4273: -73,165 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 3498: -96,40 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 240: -11,-3 + 1003: -21,79 + - node: + color: '#D381C996' + id: MiniTileDarkCornerNe + decals: + 2068: -63,159 + - node: + color: '#D381C996' + id: MiniTileDarkCornerNw + decals: + 2069: -67,159 + - node: + color: '#D381C996' + id: MiniTileDarkCornerSe + decals: + 2076: -63,155 + - node: + color: '#D381C996' + id: MiniTileDarkCornerSw + decals: + 2077: -67,155 + - node: + color: '#D381C996' + id: MiniTileDarkLineE + decals: + 2073: -63,156 + 2074: -63,157 + 2075: -63,158 + - node: + color: '#D381C996' + id: MiniTileDarkLineN + decals: + 2070: -66,159 + 2071: -64,159 + 2072: -65,159 + - node: + color: '#D381C996' + id: MiniTileDarkLineS + decals: + 2078: -64,155 + 2079: -65,155 + 2080: -66,155 + - node: + color: '#D4D4D496' + id: MiniTileDarkLineW + decals: + 1067: -7,84 + 1068: -7,85 + 1069: -7,86 + 1070: -7,86 + 1071: -7,85 + 1072: -7,84 + 1073: -8,85 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayN + decals: + 5561: -124,55 + 5562: -123,55 + 5563: -122,55 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayS + decals: + 5558: -123,53 + 5559: -124,53 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayW + decals: + 5560: -125,54 + - node: + color: '#D4D4D496' + id: MiniTileOverlay + decals: + 1066: -8,85 + 1074: -8,84 + 1075: -8,86 + - node: + color: '#334E6DC8' + id: MiniTileSteelCornerNe + decals: + 1498: -40,107 + - node: + color: '#52B4E996' + id: MiniTileSteelCornerNe + decals: + 1263: -30,87 + 2450: -19,194 + 4405: -12,171 + - node: + color: '#A4610696' + id: MiniTileSteelCornerNe + decals: + 1264: -39,69 + 1337: -33,10 + - node: + color: '#D381C996' + id: MiniTileSteelCornerNe + decals: + 1209: -48,87 + 2087: -69,180 + 2088: -70,181 + - node: + color: '#DE3A3A96' + id: MiniTileSteelCornerNe + decals: + 1173: -30,79 + 1407: 68,36 + - node: + color: '#EFB34196' + id: MiniTileSteelCornerNe + decals: + 1120: -48,79 + 3144: -83,43 + - node: + color: '#FFC364FF' + id: MiniTileSteelCornerNe + decals: + 84: -45,-8 + 208: -36,-13 + 215: -40,-11 + - node: + color: '#334E6DC8' + id: MiniTileSteelCornerNw + decals: + 1497: -42,107 + - node: + color: '#52B4E996' + id: MiniTileSteelCornerNw + decals: + 1260: -34,87 + 2443: -25,194 + 4402: -16,171 + - node: + color: '#A4610696' + id: MiniTileSteelCornerNw + decals: + 1265: -43,69 + 1336: -37,10 + - node: + color: '#D381C996' + id: MiniTileSteelCornerNw + decals: + 1206: -52,87 + - node: + color: '#D4D4D496' + id: MiniTileSteelCornerNw + decals: + 1076: -8,86 + - node: + color: '#DE3A3A96' + id: MiniTileSteelCornerNw + decals: + 1176: -34,79 + 1401: 64,36 + - node: + color: '#EFB34196' + id: MiniTileSteelCornerNw + decals: + 896: 66,21 + 897: 67,23 + 898: 69,24 + 1117: -52,79 + 3141: -87,43 + - node: + color: '#FFC364FF' + id: MiniTileSteelCornerNw + decals: + 82: -50,-8 + 195: -38,-13 + 197: -43,-15 + - node: + color: '#334E6DC8' + id: MiniTileSteelCornerSe + decals: + 1496: -40,106 + - node: + color: '#52B4E996' + id: MiniTileSteelCornerSe + decals: + 1261: -30,83 + 2444: -19,191 + 4403: -12,167 + - node: + color: '#A4610696' + id: MiniTileSteelCornerSe + decals: + 1266: -39,65 + 1338: -33,6 + - node: + color: '#D381C996' + id: MiniTileSteelCornerSe + decals: + 1208: -48,83 + 2097: -69,167 + - node: + color: '#DE3A3A96' + id: MiniTileSteelCornerSe + decals: + 1174: -30,75 + 1402: 68,32 + - node: + color: '#EFB34196' + id: MiniTileSteelCornerSe + decals: + 1118: -48,75 + 3142: -83,39 + - node: + color: '#FFC364FF' + id: MiniTileSteelCornerSe + decals: + 207: -36,-16 + 209: -40,-13 + - node: + color: '#334E6DC8' + id: MiniTileSteelCornerSw + decals: + 1500: -42,106 + - node: + color: '#52B4E996' + id: MiniTileSteelCornerSw + decals: + 1262: -34,83 + 4404: -16,167 + - node: + color: '#A4610696' + id: MiniTileSteelCornerSw + decals: + 1267: -43,65 + 1339: -37,6 + - node: + color: '#D381C996' + id: MiniTileSteelCornerSw + decals: + 1207: -52,83 + - node: + color: '#D4D4D496' + id: MiniTileSteelCornerSw + decals: + 1077: -8,84 + - node: + color: '#DE3A3A96' + id: MiniTileSteelCornerSw + decals: + 1175: -34,75 + 1403: 64,32 + - node: + color: '#EFB34196' + id: MiniTileSteelCornerSw + decals: + 1119: -52,75 + 3143: -87,39 + - node: + color: '#FFC364FF' + id: MiniTileSteelCornerSw + decals: + 83: -50,-13 + 196: -43,-16 + - node: + color: '#D381C996' + id: MiniTileSteelInnerNe + decals: + 2089: -70,180 + - node: + color: '#FFC364FF' + id: MiniTileSteelInnerNe + decals: + 216: -45,-11 + - node: + color: '#EFB34196' + id: MiniTileSteelInnerNw + decals: + 916: 67,21 + 919: 69,23 + - node: + color: '#FFC364FF' + id: MiniTileSteelInnerNw + decals: + 203: -38,-15 + - node: + color: '#52B4E996' + id: MiniTileSteelLineE + decals: + 1257: -30,86 + 1258: -30,85 + 1259: -30,84 + 2701: -6,209 + 2702: -6,208 + 2703: -6,207 + 4393: -12,168 + 4394: -12,169 + 4395: -12,170 + - node: + color: '#A4610696' + id: MiniTileSteelLineE + decals: + 1274: -39,66 + 1275: -39,67 + 1276: -39,68 + 1333: -33,9 + 1334: -33,8 + 1335: -33,7 + - node: + color: '#D381C996' + id: MiniTileSteelLineE + decals: + 2090: -69,179 + 2091: -69,178 + 2092: -69,177 + 2093: -69,176 + 2094: -69,175 + 2095: -69,174 + 2096: -69,173 + - node: + color: '#DE3A3A96' + id: MiniTileSteelLineE + decals: + 1167: -30,76 + 1168: -30,77 + 1169: -30,78 + - node: + color: '#EFB34196' + id: MiniTileSteelLineE + decals: + 3151: -83,40 + 3152: -83,41 + 3153: -83,42 + - node: + color: '#FFC364FF' + id: MiniTileSteelLineE + decals: + 71: -45,-9 + 72: -45,-10 + 205: -36,-14 + 206: -36,-15 + 214: -40,-12 + - node: + color: '#334E6DC8' + id: MiniTileSteelLineN + decals: + 1499: -41,107 + - node: + color: '#52B4E996' + id: MiniTileSteelLineN + decals: + 1254: -33,87 + 1255: -32,87 + 1256: -31,87 + 2445: -24,194 + 2446: -23,194 + 2447: -22,194 + 2448: -21,194 + 2449: -20,194 + 2695: -12,210 + 2696: -11,210 + 2697: -10,210 + 2698: -9,210 + 2699: -8,210 + 2700: -7,210 + 4396: -15,171 + 4397: -14,171 + 4398: -13,171 + - node: + color: '#A4610696' + id: MiniTileSteelLineN + decals: + 1330: -36,10 + 1331: -35,10 + 1332: -34,10 + - node: + color: '#D381C996' + id: MiniTileSteelLineN + decals: + 1197: -51,87 + 1198: -50,87 + 1199: -49,87 + - node: + color: '#DE3A3A96' + id: MiniTileSteelLineN + decals: + 1170: -33,79 + 1171: -32,79 + 1172: -31,79 + 1404: 65,36 + 1405: 66,36 + 1406: 67,36 + - node: + color: '#EFB34196' + id: MiniTileSteelLineN + decals: + 908: 68,23 + 1127: -51,79 + 1128: -50,79 + 1129: -49,79 + 3145: -86,43 + 3146: -85,43 + 3147: -84,43 + - node: + color: '#FFC364FF' + id: MiniTileSteelLineN + decals: + 73: -46,-8 + 74: -47,-8 + 75: -48,-8 + 76: -49,-8 + 198: -42,-15 + 199: -41,-15 + 200: -40,-15 + 201: -39,-15 + 204: -37,-13 + 210: -41,-11 + 211: -42,-11 + 212: -44,-11 + 213: -43,-11 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineN + decals: + 3707: -82,100 + 3708: -81,100 + 3709: -80,100 + 3710: -79,100 + 3711: -78,100 + 3712: -77,100 + 3713: -76,100 + - node: + color: '#52B4E996' + id: MiniTileSteelLineS + decals: + 1251: -33,83 + 1252: -32,83 + 1253: -31,83 + 2451: -22,191 + 2452: -21,191 + 2453: -20,191 + 4390: -15,167 + 4391: -14,167 + 4392: -13,167 + - node: + color: '#A4610696' + id: MiniTileSteelLineS + decals: + 1268: -42,65 + 1269: -41,65 + 1270: -40,65 + - node: + color: '#D381C996' + id: MiniTileSteelLineS + decals: + 1200: -51,83 + 1201: -50,83 + 1202: -49,83 + 2098: -70,167 + 2099: -71,167 + 2100: -72,167 + 2101: -73,167 + 2102: -74,167 + - node: + color: '#DE3A3A96' + id: MiniTileSteelLineS + decals: + 1164: -33,75 + 1165: -32,75 + 1166: -31,75 + 1411: 65,32 + 1412: 66,32 + 1413: 67,32 + - node: + color: '#EFB34196' + id: MiniTileSteelLineS + decals: + 1124: -51,75 + 1125: -50,75 + 1126: -49,75 + 3148: -86,39 + 3149: -85,39 + 3150: -84,39 + - node: + color: '#FFC364FF' + id: MiniTileSteelLineS + decals: + 77: -48,-13 + 189: -42,-16 + 190: -41,-16 + 191: -40,-16 + 192: -39,-16 + 193: -38,-16 + 194: -37,-16 + 217: -41,-13 + 218: -42,-13 + 219: -43,-13 + 220: -44,-13 + 221: -45,-13 + 222: -46,-13 + - node: + color: '#52B4E996' + id: MiniTileSteelLineW + decals: + 2454: -25,192 + 2455: -25,193 + 2704: -13,209 + 2705: -13,208 + 2706: -13,207 + 4399: -16,168 + 4400: -16,169 + 4401: -16,170 + - node: + color: '#A4610696' + id: MiniTileSteelLineW + decals: + 1271: -43,66 + 1272: -43,67 + 1273: -43,68 + 1327: -37,7 + 1328: -37,8 + 1329: -37,9 + - node: + color: '#D381C996' + id: MiniTileSteelLineW + decals: + 1203: -52,84 + 1204: -52,85 + 1205: -52,86 + 2103: -74,168 + 2104: -74,169 + 2105: -74,173 + 2106: -74,178 + - node: + color: '#DE3A3A96' + id: MiniTileSteelLineW + decals: + 1408: 64,35 + 1409: 64,34 + 1410: 64,33 + - node: + color: '#EFB34196' + id: MiniTileSteelLineW + decals: + 911: 66,20 + 917: 67,22 + 1121: -52,78 + 1122: -52,77 + 1123: -52,76 + - node: + color: '#FFC364FF' + id: MiniTileSteelLineW + decals: + 78: -50,-12 + 79: -50,-11 + 80: -50,-10 + 81: -50,-9 + 202: -38,-14 + - node: + color: '#00BEBE88' + id: MiniTileWhiteCornerNe + decals: + 3483: -103,37 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 1476: -39,101 + 1515: -69,79 + 1628: -46,96 + 1647: -45,101 + 1651: -48,105 + 3445: -108,36 + 3471: -112,36 + 3972: -36,108 + 3973: -37,109 + 4167: -25,101 + 4168: -26,102 + 4169: -27,103 + 4170: -28,104 + 4171: -29,105 + 4184: -36,105 + 4190: -35,101 + 5579: -112,32 + 5580: -108,32 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerNe + decals: + 2357: 5,186 + 2414: -12,189 + 2430: -12,194 + 2461: -6,194 + 2480: -12,197 + 2506: -6,199 + 2671: -15,207 + 2684: -7,209 + 2795: -24,202 + 2879: 2,205 + 2880: 2,200 + 3054: 3,167 + 3055: -2,171 + 3056: -3,172 + 4847: 82,46 + - node: + color: '#6BA698FF' + id: MiniTileWhiteCornerNe + decals: + 3827: -122,100 + 3864: -115,100 + 3876: -115,103 + 3879: -122,92 + - node: + color: '#80C71FFF' + id: MiniTileWhiteCornerNe + decals: + 2918: 21,192 + 2925: 17,195 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNe + decals: + 3688: 1,69 + 4926: -65,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteCornerNe + decals: + 3705: -20,63 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNe + decals: + 4649: -38,0 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNe + decals: + 1656: -80,152 + 1662: -92,148 + 1741: -84,160 + 1742: -84,156 + 1781: -80,155 + 1931: -83,165 + 1948: -86,175 + 4043: -79,165 + 4224: -76,165 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteCornerNe + decals: + 1859: -78,186 + 1860: -77,185 + 1861: -76,183 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerNe + decals: + 474: 68,50 + 496: 67,55 + 548: 77,44 + 583: 74,63 + 618: 77,68 + 619: 76,69 + 1315: -40,85 + 2347: -76,155 + 3205: -92,37 + 4033: 80,36 + 4044: -101,103 + 4571: 52,53 + 4613: 49,58 + 4619: 55,57 + 4852: 79,63 + 4853: 80,60 + 4854: 82,58 + 4987: 63,62 + 4993: 66,58 + 4994: 66,62 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNe + decals: + 1615: -86,79 + 1616: -84,77 + 3206: -92,48 + 3241: -115,56 + 3242: -121,55 + 3299: -98,51 + 3340: -97,43 + 3354: -113,49 + 3355: -114,50 + 3356: -115,51 + - node: + color: '#FF6464FF' + id: MiniTileWhiteCornerNe + decals: + 58: -32,-4 + - node: + color: '#FFC364FF' + id: MiniTileWhiteCornerNe + decals: + 287: -20,0 + 288: -14,0 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerNe + decals: + 1442: -14,71 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNw + decals: + 1475: -43,101 + 1626: -49,96 + 1639: -49,101 + 1650: -49,105 + 3446: -114,36 + 3470: -110,36 + 3968: -46,108 + 3969: -46,105 + 3974: -45,109 + 4175: -34,105 + 4189: -37,101 + 5581: -114,32 + 5582: -110,32 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerNw + decals: + 2358: 2,186 + 2413: -17,189 + 2429: -17,194 + 2460: -10,194 + 2477: -20,197 + 2500: -10,199 + 2670: -18,207 + 2682: -12,209 + 2792: -27,202 + 2873: -1,205 + 2874: -1,200 + 3053: -6,167 + 3057: -6,171 + 3058: -5,172 + 4848: 79,46 + - node: + color: '#6BA698FF' + id: MiniTileWhiteCornerNw + decals: + 3842: -126,103 + 3873: -117,103 + 3880: -126,92 + - node: + color: '#80C71FFF' + id: MiniTileWhiteCornerNw + decals: + 2926: 16,195 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNw + decals: + 3023: -1,69 + 4925: -67,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteCornerNw + decals: + 3706: -22,63 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNw + decals: + 4648: -41,0 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerNw + decals: + 1658: -99,153 + 1659: -93,148 + 1746: -85,156 + 1797: -92,160 + 1930: -93,165 + 1935: -99,169 + 1936: -98,170 + 3027: 8,185 + 4042: -81,165 + 5536: -77,165 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteCornerNw + decals: + 1856: -83,185 + 1857: -82,186 + 1858: -84,183 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerNw + decals: + 473: 74,50 + 491: 64,55 + 552: 65,44 + 596: 57,62 + 620: 65,68 + 621: 66,69 + 842: 40,62 + 844: 52,65 + 846: 53,66 + 847: 54,67 + 1314: -42,85 + 2344: -78,155 + 3202: -96,37 + 4045: -105,103 + 4212: 75,36 + 4552: 45,53 + 4610: 45,58 + 4615: 51,57 + 4849: 76,63 + 4992: 65,58 + 4995: 65,62 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNw + decals: + 1614: -89,79 + 3207: -96,48 + 3240: -119,56 + 3298: -106,51 + 3326: -101,37 + 3371: -121,49 + 3372: -120,50 + 3373: -119,51 + 5565: -125,55 + - node: + color: '#FF6464FF' + id: MiniTileWhiteCornerNw + decals: + 57: -36,-4 + - node: + color: '#FFC364FF' + id: MiniTileWhiteCornerNw + decals: + 33: -30,-4 + 284: -24,0 + 285: -18,0 + 286: -12,0 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerNw + decals: + 1437: -19,71 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 1467: -39,97 + 1468: -48,103 + 1514: -69,77 + 1625: -46,93 + 1644: -45,98 + 3448: -108,30 + 3465: -112,30 + 3966: -37,103 + 3967: -36,107 + 4166: -25,97 + 4183: -36,104 + 4187: -35,97 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerSe + decals: + 2348: 5,182 + 2427: -12,191 + 2458: -6,188 + 2478: -12,196 + 2501: -6,196 + 2668: -15,203 + 2681: -7,207 + 2793: -24,198 + 2875: 2,196 + 2876: 2,202 + 3013: -23,190 + 3051: 3,165 + 3059: -2,169 + 4845: 82,43 + - node: + color: '#6BA698FF' + id: MiniTileWhiteCornerSe + decals: + 3839: -122,94 + 3862: -117,97 + 3863: -115,98 + 3877: -115,102 + 3878: -122,91 + - node: + color: '#80C71FFF' + id: MiniTileWhiteCornerSe + decals: + 2914: 21,188 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSe + decals: + 3024: 1,65 + 4930: -65,65 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerSe + decals: + 4645: -38,-8 + 4646: -40,-9 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSe + decals: + 1657: -92,147 + 1725: -87,154 + 1743: -84,154 + 1744: -84,158 + 1932: -83,162 + 1951: -86,167 + 3030: 12,183 + 4041: -79,162 + 4225: -76,161 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerSe + decals: + 511: 77,47 + 549: 77,42 + 571: 63,59 + 850: 55,64 + 1092: 74,57 + 1304: -40,77 + 2345: -76,151 + 3203: -92,34 + 4046: -101,102 + 4209: 80,33 + 4565: 52,47 + 4611: 49,55 + 4626: 55,47 + 4850: 82,57 + 4990: 66,57 + 4996: 66,60 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSe + decals: + 1612: -84,75 + 3208: -92,45 + 3244: -121,52 + 3333: -98,34 + 3341: -97,39 + 3357: -113,42 + 3358: -114,41 + 3359: -115,40 + 3949: -115,53 + - node: + color: '#FF6464FF' + id: MiniTileWhiteCornerSe + decals: + 55: -32,-6 + - node: + color: '#FFC364FF' + id: MiniTileWhiteCornerSe + decals: + 31: -26,-8 + 301: -20,-6 + 302: -14,-6 + 324: -6,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerSe + decals: + 1451: -14,62 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSw + decals: + 1469: -43,97 + 1513: -79,77 + 1627: -49,93 + 1640: -49,98 + 1648: -49,103 + 3450: -114,30 + 3466: -110,30 + 3970: -46,104 + 3971: -46,107 + 4172: -34,103 + 4173: -30,97 + 4174: -29,96 + 4188: -37,97 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerSw + decals: + 2349: 2,182 + 2422: -17,187 + 2428: -17,191 + 2459: -10,188 + 2479: -20,196 + 2502: -10,196 + 2669: -18,203 + 2683: -12,207 + 2794: -27,198 + 2877: -1,196 + 2878: -1,202 + 3014: -25,190 + 3052: -6,165 + 3060: -6,169 + 4846: 79,43 + - node: + color: '#6BA698FF' + id: MiniTileWhiteCornerSw + decals: + 3840: -126,94 + 3841: -126,102 + 3869: -120,97 + 3872: -117,102 + 3881: -126,91 + - node: + color: '#80C71FFF' + id: MiniTileWhiteCornerSw + decals: + 2913: 19,188 + 2930: 16,191 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSw + decals: + 3690: -1,65 + 4924: -67,65 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerSw + decals: + 4647: -41,-9 + - node: + color: '#D381C996' + id: MiniTileWhiteCornerSw + decals: + 1660: -99,147 + 1661: -93,147 + 1724: -89,154 + 1745: -85,154 + 1782: -82,154 + 1796: -92,158 + 1933: -93,162 + 1934: -99,167 + 4040: -81,162 + 5532: -77,161 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteCornerSw + decals: + 1865: -84,177 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerSw + decals: + 479: 65,47 + 550: 65,42 + 589: 68,57 + 832: 40,60 + 1306: -42,77 + 2346: -78,151 + 3204: -96,34 + 4047: -105,102 + 4142: 58,58 + 4143: 57,59 + 4208: 75,33 + 4558: 45,47 + 4612: 45,55 + 4851: 76,57 + 4991: 65,57 + 4997: 65,60 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSw + decals: + 1613: -89,75 + 3209: -96,45 + 3239: -119,53 + 3243: -122,52 + 3312: -106,45 + 3329: -101,34 + 3362: -119,40 + 3363: -120,41 + 3364: -121,42 + 5564: -125,53 + - node: + color: '#FF6464FF' + id: MiniTileWhiteCornerSw + decals: + 56: -36,-6 + - node: + color: '#FFC364FF' + id: MiniTileWhiteCornerSw + decals: + 32: -30,-8 + 303: -18,-6 + 325: -12,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerSw + decals: + 1456: -19,62 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteEndE + decals: + 4813: 79,51 + 4814: 79,54 + 4815: 79,48 + - node: + color: '#9FED58E6' + id: MiniTileWhiteEndS + decals: + 3700: -22,60 + 3701: -20,60 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteEndW + decals: + 484: 63,48 + 485: 63,51 + 486: 63,54 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNe + decals: + 1533: -73,79 + 3985: -37,108 + 4176: -29,104 + 4177: -28,103 + 4178: -27,102 + 4179: -26,101 + 4185: -37,105 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerNe + decals: + 1250: -34,83 + 3068: -3,171 + 4406: -16,167 + - node: + color: '#6BA698FF' + id: MiniTileWhiteInnerNe + decals: + 3871: -119,100 + - node: + color: '#80C71FFF' + id: MiniTileWhiteInnerNe + decals: + 2924: 17,192 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerNe + decals: + 1292: -43,65 + 1357: -37,6 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerNe + decals: + 1195: -52,83 + 2065: -67,155 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteInnerNe + decals: + 1862: -77,183 + 1876: -78,185 + 1877: -82,182 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNe + decals: + 477: 67,50 + 855: 53.25877,58.263847 + 856: 53.493145,58.498222 + 857: 53.743145,58.763847 + 858: 54,59 + 1149: -34,75 + 1400: 64,32 + 4060: -106,100 + 4657: 68,49 + 4816: 78,48 + 4817: 78,51 + 4818: 78,54 + 4855: 79,60 + 4856: 80,58 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNe + decals: + 1148: -52,75 + 1624: -86,77 + 3169: -87,39 + 3343: -98,43 + 3377: -115,50 + 3378: -114,49 + 3433: -105,46 + - node: + color: '#FFC364FF' + id: MiniTileWhiteInnerNe + decals: + 328: -14,-1 + 341: -20,-1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNw + decals: + 3983: -45,105 + 3986: -45,108 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerNw + decals: + 1249: -30,83 + 3067: -5,171 + 4387: -12,167 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerNw + decals: + 1291: -39,65 + 1358: -33,6 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerNw + decals: + 1210: -48,83 + 1960: -91,170 + 2066: -63,155 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteInnerNw + decals: + 1863: -83,183 + 1864: -82,185 + 1878: -78,182 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNw + decals: + 475: 74,49 + 476: 75,50 + 494: 64,51 + 495: 64,54 + 848: 53,65 + 866: 52,62 + 868: 52,59 + 871: 52.243145,58.761017 + 872: 52.493145,58.52664 + 1150: -30,75 + 1399: 68,32 + 3819: 54,66 + 4059: -100,100 + 4812: 64,48 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNw + decals: + 1147: -48,75 + 3168: -83,39 + 3330: -100,37 + 3379: -119,50 + 3380: -120,49 + 3434: -99,46 + - node: + color: '#FFC364FF' + id: MiniTileWhiteInnerNw + decals: + 329: -12,-1 + 342: -18,-1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerSe + decals: + 1495: -48,97 + 3982: -37,107 + 4186: -37,104 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerSe + decals: + 1248: -34,87 + 2694: -8,207 + 3016: -23,191 + 4388: -16,171 + - node: + color: '#9FED58D3' + id: MiniTileWhiteInnerSe + decals: + 1462: -12,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteInnerSe + decals: + 3704: -22,61 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerSe + decals: + 1290: -43,69 + 1355: -37,10 + 4650: -40,-8 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerSe + decals: + 1196: -52,87 + 1753: -87,158 + 2067: -67,159 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteInnerSe + decals: + 1879: -82,185 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerSe + decals: + 512: 76,47 + 513: 77,48 + 572: 62,59 + 851: 54.52013,64.24274 + 869: 52,59 + 1151: -34,79 + 1398: 64,36 + 3820: 54.763725,64.49484 + 4819: 78,54 + 4820: 78,51 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerSe + decals: + 1146: -52,79 + 3167: -87,43 + 3342: -98,39 + 3383: -114,42 + 3384: -115,41 + 3431: -105,50 + - node: + color: '#FF0000FF' + id: MiniTileWhiteInnerSe + decals: + 406: 67,56 + - node: + color: '#FFC364FF' + id: MiniTileWhiteInnerSe + decals: + 327: -14,-5 + 339: -20,-5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerSw + decals: + 3981: -45,107 + 3984: -45,104 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerSw + decals: + 1247: -30,87 + 2424: -13,187 + 2680: -21,205 + 2693: -11,207 + 4389: -12,171 + - node: + color: '#6BA698FF' + id: MiniTileWhiteInnerSw + decals: + 3870: -120,102 + - node: + color: '#80C71FFF' + id: MiniTileWhiteInnerSw + decals: + 2935: 19,191 + - node: + color: '#9FED58E6' + id: MiniTileWhiteInnerSw + decals: + 3703: -20,61 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerSw + decals: + 1289: -39,69 + 1356: -33,10 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerSw + decals: + 1194: -48,87 + 1754: -89,158 + 2064: -63,159 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteInnerSw + decals: + 1880: -78,185 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerSw + decals: + 478: 75,56 + 481: 66,47 + 483: 65,48 + 492: 64,51 + 493: 64,54 + 1152: -30,79 + 1397: 68,36 + 4146: 58,59 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerSw + decals: + 1145: -48,79 + 3166: -83,43 + 3318: -100,45 + 3381: -120,42 + 3382: -119,41 + 3432: -99,50 + 5566: -122,53 + - node: + color: '#FFC364FF' + id: MiniTileWhiteInnerSw + decals: + 326: -12,-5 + 340: -18,-5 + - node: + color: '#00BEBE88' + id: MiniTileWhiteLineE + decals: + 3484: -103,36 + 3485: -103,35 + 3486: -103,34 + 3487: -103,33 + 3488: -103,32 + 3489: -103,31 + 3490: -103,30 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 1470: -48,104 + 1471: -45,99 + 1472: -39,99 + 1473: -39,100 + 1474: -39,98 + 1516: -69,78 + 1520: -73,80 + 1634: -46,94 + 1635: -46,95 + 3441: -108,34 + 3442: -108,35 + 3473: -112,34 + 3474: -112,35 + 3714: -74,73 + 3715: -74,74 + 3716: -74,75 + 3980: -37,106 + 4157: -25,98 + 4158: -25,99 + 4159: -25,100 + 4195: -35,98 + 4196: -35,99 + 4197: -35,100 + 5577: -112,31 + 5578: -108,31 + - node: + color: '#37363BFF' + id: MiniTileWhiteLineE + decals: + 371: 28,13 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineE + decals: + 1241: -34,84 + 1242: -34,85 + 1243: -34,86 + 2354: 5,183 + 2355: 5,184 + 2356: 5,185 + 2415: -12,188 + 2416: -12,187 + 2417: -12,186 + 2431: -12,193 + 2432: -12,192 + 2462: -6,193 + 2463: -6,192 + 2464: -6,191 + 2465: -6,190 + 2466: -6,189 + 2507: -6,198 + 2508: -6,197 + 2672: -15,206 + 2673: -15,205 + 2674: -15,204 + 2685: -8,206 + 2686: -7,208 + 2796: -24,201 + 2797: -24,200 + 2798: -24,199 + 2881: 2,199 + 2882: 2,198 + 2883: 2,197 + 2884: 2,204 + 2885: 2,203 + 3050: 3,166 + 3064: -2,170 + 4384: -16,168 + 4385: -16,169 + 4386: -16,170 + 4843: 82,44 + 4844: 82,45 + - node: + color: '#6BA698FF' + id: MiniTileWhiteLineE + decals: + 3822: -122,99 + 3823: -122,98 + 3824: -122,97 + 3825: -122,96 + 3826: -122,95 + 3860: -119,101 + 3861: -115,99 + 3888: -128,103 + 3889: -128,102 + 3890: -128,101 + 3891: -128,100 + 3892: -128,99 + 3893: -128,98 + 3894: -128,97 + 3895: -128,96 + 3896: -128,95 + 3897: -128,94 + 3898: -128,93 + 3899: -128,92 + 3900: -128,91 + - node: + color: '#80C71FFF' + id: MiniTileWhiteLineE + decals: + 2915: 21,189 + 2916: 21,190 + 2917: 21,191 + 2922: 17,193 + 2923: 17,194 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineE + decals: + 3017: 1,66 + 3018: 1,68 + 3689: 1,67 + 4927: -65,68 + 4928: -65,67 + 4929: -65,66 + - node: + color: '#9FED58D3' + id: MiniTileWhiteLineE + decals: + 1459: -12,66 + 1460: -12,65 + 1461: -12,68 + - node: + color: '#9FED58E6' + id: MiniTileWhiteLineE + decals: + 3694: -12,67 + 3695: -20,61 + 3696: -20,62 + - node: + color: '#A4610696' + id: MiniTileWhiteLineE + decals: + 1286: -43,66 + 1287: -43,67 + 1288: -43,68 + 1352: -37,7 + 1353: -37,8 + 1354: -37,9 + 3964: -46,107 + 3965: -46,108 + 4638: -38,-1 + 4639: -38,-2 + 4640: -38,-3 + 4641: -38,-4 + 4642: -38,-5 + 4643: -38,-6 + 4644: -38,-7 + - node: + color: '#D381C996' + id: MiniTileWhiteLineE + decals: + 1191: -52,84 + 1192: -52,85 + 1193: -52,86 + 1680: -95,148 + 1681: -95,149 + 1739: -84,159 + 1740: -84,155 + 1750: -87,155 + 1751: -87,156 + 1752: -87,157 + 1928: -83,163 + 1929: -83,164 + 1949: -86,174 + 1950: -86,173 + 1952: -86,168 + 2052: -67,156 + 2053: -67,157 + 2054: -67,158 + 4038: -79,163 + 4039: -79,164 + 4226: -76,162 + 4227: -76,163 + 4228: -76,164 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteLineE + decals: + 1822: -76,169 + 1823: -76,173 + 1841: -76,182 + 1842: -76,181 + 1843: -76,180 + 1844: -76,179 + 1845: -76,178 + 1846: -77,184 + 1874: -82,183 + 1875: -82,184 + - node: + color: '#DE3A3A95' + id: MiniTileWhiteLineE + decals: + 875: 53,58 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineE + decals: + 470: 67,51 + 510: 76,46 + 514: 78,49 + 515: 78,50 + 516: 78,52 + 517: 78,53 + 518: 78,55 + 547: 77,43 + 553: 67,43 + 563: 67,42 + 564: 67,44 + 584: 74,62 + 585: 74,61 + 586: 74,60 + 587: 74,59 + 588: 74,58 + 605: 77,67 + 615: 77,65 + 817: 63,67 + 818: 63,65 + 852: 54,63 + 853: 54,60 + 874: 54,62 + 1153: -34,76 + 1154: -34,77 + 1297: -40,78 + 1298: -40,79 + 1299: -40,80 + 1300: -40,81 + 1301: -40,82 + 1302: -40,83 + 1303: -40,84 + 1394: 64,33 + 1395: 64,34 + 1396: 64,35 + 1421: -34,78 + 2336: -76,152 + 2337: -76,153 + 2338: -76,154 + 3192: -92,35 + 3193: -92,36 + 4150: 54,61 + 4217: 80,35 + 4218: 80,34 + 4566: 52,48 + 4567: 52,49 + 4568: 52,50 + 4569: 52,51 + 4570: 52,52 + 4600: 49,56 + 4601: 49,57 + 4620: 55,56 + 4621: 55,55 + 4622: 55,54 + 4623: 55,53 + 4624: 55,52 + 4625: 55,50 + 4862: 79,62 + 4863: 79,61 + 4864: 80,59 + 4988: 63,61 + 4989: 63,60 + 4998: 66,61 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineE + decals: + 1139: -52,78 + 1140: -52,77 + 1141: -52,76 + 1620: -84,76 + 1621: -86,78 + 3163: -87,40 + 3164: -87,41 + 3165: -87,42 + 3218: -92,46 + 3219: -92,47 + 3233: -115,55 + 3246: -121,54 + 3247: -121,53 + 3295: -98,48 + 3296: -98,49 + 3297: -98,50 + 3334: -98,35 + 3335: -98,36 + 3336: -98,37 + 3337: -98,38 + 3338: -97,41 + 3339: -97,42 + 3344: -98,44 + 3345: -98,45 + 3346: -98,46 + 3347: -98,47 + 3348: -113,48 + 3349: -113,47 + 3350: -113,46 + 3351: -113,45 + 3352: -113,44 + 3353: -113,43 + 3423: -105,49 + 3424: -105,48 + 3425: -105,47 + 3948: -115,54 + 3962: -46,104 + 3963: -46,105 + - node: + color: '#FF6464FF' + id: MiniTileWhiteLineE + decals: + 66: -32,-5 + - node: + color: '#FFC364FF' + id: MiniTileWhiteLineE + decals: + 34: -26,-7 + 308: -6,-2 + 309: -6,-3 + 310: -6,-4 + 311: -6,-5 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineE + decals: + 1443: -14,70 + 1444: -14,69 + 1445: -14,68 + 1446: -14,67 + 1447: -14,66 + 1448: -14,65 + 1449: -14,64 + 1450: -14,63 + - node: + color: '#00BEBE88' + id: MiniTileWhiteLineN + decals: + 3493: -105,37 + 3494: -104,37 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineN + decals: + 992: -21,79 + 993: -20,79 + 994: -19,79 + 995: -18,79 + 996: -17,79 + 997: -16,79 + 1477: -48,101 + 1478: -42,101 + 1479: -41,101 + 1480: -40,101 + 1517: -70,79 + 1518: -71,79 + 1519: -72,79 + 1629: -48,96 + 1630: -47,96 + 1645: -47,101 + 1646: -46,101 + 3439: -113,36 + 3440: -109,36 + 3975: -44,109 + 3976: -43,109 + 3977: -39,109 + 3978: -38,109 + 4162: -30,105 + 4163: -31,105 + 4164: -32,105 + 4165: -33,105 + 4191: -36,101 + 5573: -113,32 + 5574: -109,32 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineN + decals: + 1235: -33,83 + 1236: -32,83 + 1237: -31,83 + 2350: 3,186 + 2351: 4,186 + 2409: -16,189 + 2410: -15,189 + 2411: -14,189 + 2412: -13,189 + 2437: -16,194 + 2438: -15,194 + 2439: -14,194 + 2440: -13,194 + 2474: -9,194 + 2475: -8,194 + 2476: -7,194 + 2481: -13,197 + 2482: -14,197 + 2483: -15,197 + 2484: -16,197 + 2485: -17,197 + 2486: -18,197 + 2487: -19,197 + 2495: -9,199 + 2496: -8,199 + 2497: -7,199 + 2689: -11,209 + 2690: -10,209 + 2691: -9,209 + 2692: -8,209 + 2804: -26,202 + 2805: -25,202 + 2895: 0,205 + 2896: 1,205 + 2897: 0,200 + 2898: 1,200 + 3042: -5,167 + 3043: -4,167 + 3044: -3,167 + 3045: -2,167 + 3046: -1,167 + 3047: 0,167 + 3048: 1,167 + 3049: 2,167 + 3066: -4,172 + 4381: -15,167 + 4382: -14,167 + 4383: -13,167 + 4841: 80,46 + 4842: 81,46 + - node: + color: '#6BA698FF' + id: MiniTileWhiteLineN + decals: + 3828: -123,100 + 3829: -124,100 + 3830: -125,100 + 3851: -125,103 + 3852: -124,103 + 3853: -123,103 + 3854: -122,103 + 3855: -121,103 + 3856: -120,103 + 3857: -118,100 + 3858: -117,100 + 3859: -116,100 + 3875: -116,103 + 3885: -125,92 + 3886: -124,92 + 3887: -123,92 + - node: + color: '#80C71FFF' + id: MiniTileWhiteLineN + decals: + 2919: 20,192 + 2920: 19,192 + 2921: 18,192 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineN + decals: + 3022: 0,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteLineN + decals: + 3697: -21,63 + - node: + color: '#A4610696' + id: MiniTileWhiteLineN + decals: + 1283: -42,65 + 1284: -41,65 + 1285: -40,65 + 1349: -36,6 + 1350: -35,6 + 1351: -34,6 + 4636: -40,0 + 4637: -39,0 + - node: + color: '#D381C996' + id: MiniTileWhiteLineN + decals: + 1182: -51,83 + 1183: -50,83 + 1184: -49,83 + 1652: -86,152 + 1653: -87,152 + 1654: -83,152 + 1655: -82,152 + 1675: -97,153 + 1676: -98,153 + 1732: -91,160 + 1733: -90,160 + 1734: -89,160 + 1735: -88,160 + 1736: -87,160 + 1737: -86,160 + 1738: -85,160 + 1920: -92,165 + 1921: -91,165 + 1922: -89,165 + 1923: -90,165 + 1924: -88,165 + 1925: -87,165 + 1926: -86,165 + 1927: -85,165 + 1938: -97,170 + 1939: -96,170 + 1940: -95,170 + 1941: -94,170 + 1942: -92,170 + 1945: -91,175 + 1946: -90,175 + 1947: -87,175 + 2058: -64,155 + 2059: -65,155 + 2060: -66,155 + 3028: 9,185 + 3029: 10,185 + 4035: -80,165 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteLineN + decals: + 1824: -82,175 + 1825: -78,175 + 1866: -81,182 + 1867: -80,182 + 1868: -79,182 + 1881: -81,186 + 1882: -80,186 + 1883: -79,186 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineN + decals: + 471: 69,49 + 472: 73,49 + 567: 62,62 + 568: 61,62 + 569: 60,62 + 570: 59,62 + 580: 68,63 + 581: 69,63 + 582: 73,63 + 597: 58,62 + 622: 67,69 + 623: 68,69 + 624: 69,69 + 625: 70,69 + 626: 71,69 + 627: 72,69 + 628: 73,69 + 629: 74,69 + 630: 75,69 + 811: 56,67 + 812: 57,67 + 813: 58,67 + 814: 60,67 + 815: 61,67 + 816: 62,67 + 820: 63,67 + 833: 42,62 + 834: 43,62 + 835: 44,62 + 836: 46,62 + 837: 47,62 + 838: 48,62 + 839: 49,62 + 840: 50,62 + 841: 51,62 + 843: 55,67 + 1155: -33,75 + 1156: -32,75 + 1157: -31,75 + 1316: -41,85 + 1391: 65,32 + 1392: 66,32 + 1393: 67,32 + 2343: -77,155 + 3199: -95,37 + 3200: -94,37 + 3201: -93,37 + 3785: 41,62 + 4051: -104,103 + 4052: -103,103 + 4053: -102,103 + 4054: -105,100 + 4055: -104,100 + 4056: -103,100 + 4057: -102,100 + 4058: -101,100 + 4213: 76,36 + 4214: 78,36 + 4215: 77,36 + 4216: 79,36 + 4546: 46,53 + 4547: 47,53 + 4548: 48,53 + 4549: 49,53 + 4550: 50,53 + 4551: 51,53 + 4572: 51,53 + 4607: 46,58 + 4608: 47,58 + 4609: 48,58 + 4616: 52,57 + 4617: 53,57 + 4618: 54,57 + 4811: 45,62 + 4865: 81,58 + 4866: 78,63 + 4867: 77,63 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineN + decals: + 1142: -51,75 + 1143: -50,75 + 1144: -49,75 + 1623: -85,77 + 3160: -86,39 + 3161: -85,39 + 3162: -84,39 + 3215: -95,48 + 3216: -94,48 + 3217: -93,48 + 3234: -116,56 + 3235: -117,56 + 3236: -118,56 + 3300: -99,51 + 3301: -100,51 + 3302: -101,51 + 3303: -102,51 + 3304: -103,51 + 3305: -104,51 + 3306: -105,51 + 3374: -118,51 + 3375: -117,51 + 3376: -116,51 + 3386: -129,51 + 3387: -128,51 + 3388: -127,51 + 3389: -130,51 + 3390: -126,51 + 3426: -104,46 + 3427: -103,46 + 3428: -102,46 + 3429: -101,46 + 3430: -100,46 + - node: + color: '#FF6464FF' + id: MiniTileWhiteLineN + decals: + 63: -35,-4 + 64: -34,-4 + 65: -33,-4 + - node: + color: '#FFC364FF' + id: MiniTileWhiteLineN + decals: + 40: -27,-4 + 289: -8,0 + 290: -7,0 + 300: -26,-4 + 312: -13,-1 + 313: -19,-1 + 323: -6,0 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineN + decals: + 1438: -18,71 + 1439: -17,71 + 1440: -16,71 + 1441: -15,71 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineS + decals: + 1484: -46,97 + 1485: -47,97 + 1486: -42,97 + 1487: -41,97 + 1488: -40,97 + 1489: -43,103 + 1490: -42,103 + 1491: -41,103 + 1492: -40,103 + 1493: -39,103 + 1494: -38,103 + 1524: -78,77 + 1525: -77,77 + 1526: -76,77 + 1527: -75,77 + 1528: -74,77 + 1529: -73,77 + 1530: -72,77 + 1531: -71,77 + 1532: -70,77 + 1631: -48,93 + 1632: -47,93 + 1641: -48,98 + 1642: -47,98 + 1643: -46,98 + 3451: -113,30 + 3452: -109,30 + 4160: -27,96 + 4161: -28,96 + 4198: -36,97 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineS + decals: + 1238: -33,87 + 1239: -32,87 + 1240: -31,87 + 2352: 3,182 + 2353: 4,182 + 2419: -14,187 + 2420: -15,187 + 2421: -16,187 + 2433: -13,191 + 2434: -14,191 + 2435: -15,191 + 2436: -16,191 + 2471: -9,188 + 2472: -8,188 + 2473: -7,188 + 2488: -19,196 + 2489: -18,196 + 2490: -17,196 + 2491: -16,196 + 2492: -15,196 + 2493: -14,196 + 2494: -13,196 + 2503: -9,196 + 2504: -8,196 + 2505: -7,196 + 2678: -17,203 + 2679: -16,203 + 2799: -25,198 + 2800: -26,198 + 2886: 1,196 + 2887: 0,196 + 2888: 1,202 + 2889: 0,202 + 3015: -24,190 + 3033: -5,165 + 3034: -4,165 + 3035: -1,165 + 3036: -3,165 + 3037: 0,165 + 3038: 1,165 + 3039: -2,165 + 3040: 2,165 + 3061: -5,169 + 3062: -4,169 + 3063: -3,169 + 4375: -15,171 + 4376: -14,171 + 4377: -13,171 + 4837: 80,43 + 4838: 81,43 + - node: + color: '#6BA698FF' + id: MiniTileWhiteLineS + decals: + 3836: -125,94 + 3837: -124,94 + 3838: -123,94 + 3843: -125,102 + 3844: -124,102 + 3845: -123,102 + 3846: -122,102 + 3847: -121,102 + 3848: -119,97 + 3849: -118,97 + 3850: -116,98 + 3874: -116,102 + 3882: -125,91 + 3883: -124,91 + 3884: -123,91 + - node: + color: '#80C71FFF' + id: MiniTileWhiteLineS + decals: + 2931: 17,191 + 2932: 18,191 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineS + decals: + 3691: 0,65 + 3958: -38,109 + 3959: -37,109 + 4923: -66,65 + - node: + color: '#9FED58D3' + id: MiniTileWhiteLineS + decals: + 1463: -11,69 + 1464: -10,69 + 1465: -7,69 + 1466: -6,69 + - node: + color: '#9FED58E6' + id: MiniTileWhiteLineS + decals: + 3692: -9,69 + 3693: -8,69 + 3702: -21,61 + 3939: -5,69 + 3940: -4,69 + 3941: -3,69 + - node: + color: '#A4610696' + id: MiniTileWhiteLineS + decals: + 1280: -42,69 + 1281: -41,69 + 1282: -40,69 + 1346: -34,10 + 1347: -35,10 + 1348: -36,10 + 4635: -39,-8 + - node: + color: '#D381C996' + id: MiniTileWhiteLineS + decals: + 1185: -51,87 + 1186: -50,87 + 1187: -49,87 + 1663: -82,150 + 1664: -83,150 + 1665: -84,150 + 1666: -85,150 + 1667: -87,150 + 1668: -88,150 + 1669: -89,150 + 1670: -90,150 + 1671: -91,150 + 1672: -93,150 + 1673: -94,150 + 1674: -98,147 + 1726: -88,154 + 1727: -91,158 + 1728: -90,158 + 1729: -86,158 + 1730: -85,158 + 1911: -92,162 + 1912: -91,162 + 1913: -90,162 + 1914: -89,162 + 1915: -88,162 + 1916: -87,162 + 1917: -86,162 + 1918: -85,162 + 1919: -84,162 + 1953: -87,167 + 1954: -93,167 + 1955: -94,167 + 1956: -95,167 + 1957: -96,167 + 1958: -97,167 + 1959: -98,167 + 2061: -66,159 + 2062: -64,159 + 2063: -65,159 + 3031: 11,183 + 3032: 10,183 + 3960: -45,109 + 3961: -44,109 + 4034: -80,162 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteLineS + decals: + 1821: -78,167 + 1853: -83,177 + 1854: -82,177 + 1855: -78,177 + 1871: -79,185 + 1872: -80,185 + 1873: -81,185 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineS + decals: + 468: 73,57 + 469: 69,57 + 482: 64,48 + 504: 68,46 + 505: 69,46 + 506: 70,46 + 507: 72,46 + 508: 73,46 + 509: 74,46 + 598: 60,58 + 606: 76,65 + 607: 75,65 + 608: 74,65 + 609: 73,65 + 610: 68,65 + 611: 67,65 + 612: 66,65 + 613: 65,65 + 614: 77,65 + 808: 63,65 + 809: 58,65 + 810: 57,65 + 821: 51,60 + 822: 50,60 + 823: 49,60 + 824: 48,60 + 825: 47,60 + 826: 46,60 + 827: 45,60 + 828: 44,60 + 829: 43,60 + 830: 42,60 + 831: 41,60 + 1158: -33,79 + 1159: -32,79 + 1160: -31,79 + 1305: -41,77 + 1385: 65,36 + 1386: 66,36 + 1387: 67,36 + 2342: -77,151 + 3196: -95,34 + 3197: -94,34 + 3198: -93,34 + 3821: 56,65 + 4048: -104,102 + 4049: -103,102 + 4050: -102,102 + 4144: 59,58 + 4151: 59,65 + 4152: 60,65 + 4153: 61,65 + 4154: 62,65 + 4205: 76,33 + 4206: 77,33 + 4207: 79,33 + 4223: 78,33 + 4559: 46,47 + 4560: 47,47 + 4561: 48,47 + 4562: 49,47 + 4563: 50,47 + 4564: 51,47 + 4604: 46,55 + 4605: 47,55 + 4606: 48,55 + 4821: 78,48 + 4868: 77,57 + 4869: 78,57 + 4870: 79,57 + 4871: 80,57 + 4872: 81,57 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineS + decals: + 1136: -49,79 + 1137: -50,79 + 1138: -51,79 + 1617: -85,75 + 1618: -86,75 + 1619: -87,75 + 3157: -84,43 + 3158: -85,43 + 3159: -86,43 + 3212: -95,45 + 3213: -94,45 + 3214: -93,45 + 3231: -118,53 + 3232: -117,53 + 3313: -105,45 + 3314: -104,45 + 3315: -103,45 + 3316: -102,45 + 3317: -101,45 + 3331: -100,34 + 3332: -99,34 + 3360: -116,40 + 3361: -118,40 + 3385: -117,40 + 3415: -104,50 + 3416: -103,50 + 3417: -102,50 + 3418: -101,50 + 3419: -100,50 + 3947: -116,53 + - node: + color: '#FF6464FF' + id: MiniTileWhiteLineS + decals: + 60: -35,-6 + 61: -34,-6 + 62: -33,-6 + - node: + color: '#FFC364FF' + id: MiniTileWhiteLineS + decals: + 37: -29,-8 + 38: -28,-8 + 39: -27,-8 + 293: -21,-6 + 304: -17,-6 + 305: -16,-6 + 306: -15,-6 + 307: -9,-6 + 314: -19,-5 + 315: -13,-5 + 343: -24,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineS + decals: + 1452: -15,62 + 1453: -16,62 + 1454: -17,62 + 1455: -18,62 + - node: + color: '#00BEBE88' + id: MiniTileWhiteLineW + decals: + 3477: -106,32 + 3478: -106,33 + 3479: -106,34 + 3480: -106,35 + 3481: -106,36 + 3482: -106,37 + 3491: -106,31 + 3492: -106,30 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 1481: -43,100 + 1482: -43,99 + 1483: -43,98 + 1521: -79,80 + 1522: -79,79 + 1523: -79,78 + 1534: -78,73 + 1535: -78,74 + 1536: -78,75 + 1633: -49,94 + 1636: -49,95 + 1637: -49,99 + 1638: -49,100 + 1649: -49,104 + 3435: -114,34 + 3436: -114,35 + 3475: -110,34 + 3476: -110,35 + 3979: -45,106 + 4180: -30,98 + 4181: -30,99 + 4182: -34,104 + 4192: -37,100 + 4193: -37,99 + 4194: -37,98 + 5575: -114,31 + 5576: -110,31 + - node: + color: '#37363BFF' + id: MiniTileWhiteLineW + decals: + 370: 28,13 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineW + decals: + 1244: -30,84 + 1245: -30,85 + 1246: -30,86 + 2359: 2,183 + 2360: 2,184 + 2361: 2,185 + 2418: -13,186 + 2423: -17,188 + 2467: -10,189 + 2468: -10,190 + 2469: -10,192 + 2470: -10,193 + 2498: -10,198 + 2499: -10,197 + 2675: -18,206 + 2676: -18,205 + 2677: -18,204 + 2687: -11,206 + 2688: -12,208 + 2801: -27,199 + 2802: -27,200 + 2803: -27,201 + 2890: -1,197 + 2891: -1,198 + 2892: -1,199 + 2893: -1,203 + 2894: -1,204 + 3012: -25,191 + 3041: -6,166 + 3065: -6,170 + 4378: -12,170 + 4379: -12,169 + 4380: -12,168 + 4839: 79,44 + 4840: 79,45 + - node: + color: '#6BA698FF' + id: MiniTileWhiteLineW + decals: + 3831: -126,99 + 3832: -126,98 + 3833: -126,97 + 3834: -126,96 + 3835: -126,95 + 3865: -120,101 + 3866: -120,100 + 3867: -120,99 + 3868: -120,98 + - node: + color: '#80C71FFF' + id: MiniTileWhiteLineW + decals: + 2927: 16,194 + 2928: 16,193 + 2929: 16,192 + 2933: 19,190 + 2934: 19,189 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineW + decals: + 3019: -1,66 + 3020: -1,67 + 3021: -1,68 + 4921: -67,68 + 4922: -67,67 + - node: + color: '#9FED58E6' + id: MiniTileWhiteLineW + decals: + 3698: -22,62 + 3699: -22,61 + - node: + color: '#A4610696' + id: MiniTileWhiteLineW + decals: + 1277: -39,66 + 1278: -39,67 + 1279: -39,68 + 1343: -33,7 + 1344: -33,8 + 1345: -33,9 + 4627: -41,-8 + 4628: -41,-7 + 4629: -41,-6 + 4630: -41,-5 + 4631: -41,-4 + 4632: -41,-3 + 4633: -41,-2 + 4634: -41,-1 + - node: + color: '#D381C996' + id: MiniTileWhiteLineW + decals: + 1188: -48,86 + 1189: -48,85 + 1190: -48,84 + 1677: -99,152 + 1678: -99,149 + 1679: -99,148 + 1731: -85,155 + 1747: -89,155 + 1748: -89,156 + 1749: -89,157 + 1795: -92,159 + 1909: -93,163 + 1910: -93,164 + 1937: -99,168 + 1943: -91,171 + 1944: -91,172 + 2055: -63,157 + 2056: -63,158 + 2057: -63,156 + 4036: -81,163 + 4037: -81,164 + 5533: -77,162 + 5534: -77,163 + 5535: -77,164 + - node: + cleanable: True + color: '#D381C996' + id: MiniTileWhiteLineW + decals: + 1820: -84,173 + 1847: -84,182 + 1848: -84,181 + 1849: -84,180 + 1850: -84,179 + 1851: -84,178 + 1852: -83,184 + 1869: -78,184 + 1870: -78,183 + - node: + color: '#DE3A3A95' + id: MiniTileWhiteLineW + decals: + 876: 53,58 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineW + decals: + 466: 75,51 + 467: 75,55 + 480: 66,46 + 487: 64,49 + 488: 64,50 + 489: 64,52 + 490: 64,53 + 551: 65,43 + 554: 75,43 + 565: 75,42 + 566: 75,44 + 590: 68,58 + 591: 68,59 + 595: 57,61 + 616: 65,65 + 617: 65,67 + 845: 52,63 + 849: 52,64 + 1161: -30,78 + 1162: -30,77 + 1163: -30,76 + 1307: -42,78 + 1308: -42,79 + 1309: -42,80 + 1310: -42,81 + 1311: -42,82 + 1312: -42,83 + 1313: -42,84 + 1388: 68,35 + 1389: 68,34 + 1390: 68,33 + 2339: -78,152 + 2340: -78,153 + 2341: -78,154 + 3194: -96,35 + 3195: -96,36 + 3956: -36,107 + 3957: -36,108 + 4145: 57,60 + 4210: 75,34 + 4211: 75,35 + 4553: 45,52 + 4554: 45,51 + 4555: 45,50 + 4556: 45,49 + 4557: 45,48 + 4602: 45,56 + 4603: 45,57 + 4614: 51,56 + 4857: 76,58 + 4858: 76,59 + 4859: 76,60 + 4860: 76,61 + 4861: 76,62 + 4999: 65,61 + 5001: 68,60 + 5002: 68,61 + 5003: 68,62 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineW + decals: + 1133: -48,77 + 1134: -48,78 + 1135: -48,76 + 1622: -89,77 + 3154: -83,40 + 3155: -83,41 + 3156: -83,42 + 3210: -96,46 + 3211: -96,47 + 3237: -119,55 + 3238: -119,54 + 3307: -106,50 + 3308: -106,49 + 3309: -106,48 + 3310: -106,47 + 3311: -106,46 + 3319: -100,44 + 3320: -100,43 + 3321: -100,42 + 3322: -100,41 + 3323: -100,40 + 3324: -100,39 + 3325: -100,38 + 3327: -101,36 + 3328: -101,35 + 3365: -121,43 + 3366: -121,44 + 3367: -121,45 + 3368: -121,46 + 3369: -121,47 + 3370: -121,48 + 3420: -99,49 + 3421: -99,48 + 3422: -99,47 + - node: + color: '#FF6464FF' + id: MiniTileWhiteLineW + decals: + 59: -36,-5 + - node: + color: '#FFC364FF' + id: MiniTileWhiteLineW + decals: + 35: -30,-7 + 36: -30,-6 + 291: -24,-2 + 292: -24,-3 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineW + decals: + 1432: -19,66 + 1433: -19,67 + 1434: -19,68 + 1435: -19,69 + 1436: -19,70 + 1457: -19,63 + 1458: -19,64 + - node: + color: '#FFFFFFFF' + id: OriginStationSign10 + decals: + 1097: -40,91 + - node: + color: '#FFFFFFFF' + id: OriginStationSign11 + decals: + 1093: -42,89 + - node: + color: '#FFFFFFFF' + id: OriginStationSign12 + decals: + 1094: -41,89 + - node: + color: '#FFFFFFFF' + id: OriginStationSign13 + decals: + 1095: -40,89 + - node: + color: '#FFFFFFFF' + id: OriginStationSign8 + decals: + 1096: -42,91 + - node: + color: '#FFFFFFFF' + id: OriginStationSign9 + decals: + 3513: -41,91 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 1226: -46,82 + 2175: -74,165 + 2176: -73,165 + 2177: -72,165 + 2178: -71,165 + 2179: -70,165 + 2180: -69,165 + 2181: -82,160 + 2182: -81,160 + 2183: -80,160 + 2184: -79,160 + 2185: -82,159 + 2186: -82,158 + 2187: -82,157 + 2188: -74,164 + 2189: -74,163 + 2190: -74,162 + 2191: -74,161 + 2192: -74,160 + 2193: -74,159 + 2194: -75,159 + 2195: -76,159 + 2196: -77,159 + 2197: -78,159 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 525: 69,40 + 3264: 79,40 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 1229: -46,74 + 3180: -95,41 + 3181: -95,42 + 3182: -95,43 + 3183: -94,43 + 3184: -93,43 + 3185: -92,43 + 3186: -91,43 + 3187: -90,43 + 3188: -90,44 + 3189: -90,45 + 3190: -90,46 + 3191: -90,47 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale + decals: + 736: 115,59 + 737: 116,59 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 1222: -36,88 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 1230: -44,71 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 2139: -69,160 + 2198: -79,160 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 686: 90,57 + 1225: -36,80 + 5597: 72,27 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 3178: -89,44 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale180 + decals: + 733: 114,62 + 734: 114,61 + 735: 114,60 + 738: 116,59 + 739: 116,58 + 740: 116,57 + 741: 115,57 + 742: 114,57 + 743: 113,57 + 744: 112,57 + 745: 111,57 + 746: 110,57 + 747: 109,57 + 748: 108,57 + 749: 107,57 + 750: 106,57 + 751: 105,57 + 752: 104,57 + 753: 103,57 + 754: 102,57 + 755: 101,57 + 3817: 116,47 + 3818: 115,47 + 4508: 100,57 + 4509: 99,57 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 1231: -38,71 + 1362: -30,2 + 1363: -26,2 + 1364: -31,2 + 1369: -24,2 + 1370: -23,2 + 1371: -22,2 + 1372: -21,2 + 1373: -20,2 + 1374: -19,2 + 1375: -18,2 + 1376: -17,2 + 1377: -16,2 + 1378: -15,2 + 1379: -14,2 + 1380: -13,2 + 1381: -12,2 + 1382: -11,2 + 1383: -10,2 + 1384: -8,2 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 1227: -46,88 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 4510: 99,57 + 5598: 70,27 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 1228: -46,80 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale270 + decals: + 775: 114,45 + 776: 113,45 + 777: 112,45 + 778: 111,45 + 781: 109,43 + 782: 110,43 + 783: 108,43 + 784: 107,43 + 785: 107,44 + 786: 107,45 + 787: 106,45 + 788: 105,45 + 789: 104,45 + 790: 103,45 + 791: 103,46 + 792: 103,47 + 793: 102,47 + 794: 101,47 + 795: 100,47 + 796: 99,47 + 3252: 104.00407,62.76564 + 3253: 104.98844,62.750015 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 1223: -36,82 + 3069: -8,171 + 3070: -8,170 + 3071: -8,169 + 3072: -8,168 + 3073: -8,167 + 3074: -8,166 + 3075: -8,165 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 1365: -32,1 + 1366: -32,0 + 1367: -32,-2 + 1368: -32,-1 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 2137: -69,154 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 526: 73,40 + 537: 63,40 + 687: 90,49 + 1224: -36,74 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 3179: -89,38 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale90 + decals: + 756: 99,49 + 757: 100,49 + 758: 101,49 + 759: 102,49 + 760: 103,49 + 761: 104,49 + 762: 105,49 + 763: 106,49 + 764: 107,49 + 765: 108,49 + 766: 109,49 + 767: 110,49 + 768: 111,49 + 769: 112,49 + 770: 113,49 + 771: 114,49 + 772: 114,47 + 773: 114,46 + 774: 114,45 + 779: 110,44 + 780: 110,43 + 3815: 115,49 + 3816: 116,49 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale90 + decals: + 717: 114,62 + 718: 113,62 + 719: 112,62 + 720: 111,62 + 721: 110,62 + 722: 106,62 + 723: 103,62 + 724: 102,62 + 725: 107,63 + 726: 108,63 + 727: 109,63 + 728: 107,62 + 729: 102,61 + 730: 102,60 + 731: 102,59 + 732: 101,59 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 348: -3.3238854,-3.8811738 + 2199: -61.178123,176.36215 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Remains + decals: + 1798: -81,148 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 1502: -68,101 + 4908: -71.162415,64.86056 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 1701: -97,153 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 4982: -64.59343,92.29767 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 4981: -65.83321,96.8207 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 1702: -99,151 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 223: -25,-16 + 3792: -74,115 + 3793: -66,116 + 3794: -63,118 + 4087: -119,89 + 4088: -121,83 + 4089: -126,82 + 4119: -32.732414,42.217537 + 4133: 11.436943,74.22253 + 4507: 65.81558,17.196243 + 4532: 25.886436,7.3399963 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 224: -25,-19 + 225: -26,-18 + 1503: -65,101 + 4090: -122,81 + 4091: -120,86 + 4092: -130,81 + 4093: -132,83 + 4094: -134,85 + 5378: -123.47132,110.934074 + - node: + color: '#95FF5EFF' + id: Rust + decals: + 1703: -95,149 + 1704: -93,150 + 1705: -94,150 + 1706: -93,150 + 1707: -92,152 + 1708: -88,151 + 1709: -87,151 + 1710: -88,150 + 1711: -88,151 + 1712: -88,152 + 1713: -83,151 + 1714: -83,152 + 1715: -81,152 + 1716: -99,147 + 1717: -99,152 + 1718: -98,153 + 1719: -99,153 + 1720: -99,153 + 1723: -93,148 + - node: + color: '#9FED5896' + id: Rust + decals: + 1755: -88,154 + 1756: -87,154 + 1757: -87,155 + 1758: -87,154 + 1759: -91,154 + 1760: -92,154 + 1761: -93,154 + 1762: -93,154 + 1763: -92,154 + 1764: -93,155 + 1765: -89,154 + 1766: -89,155 + 1767: -88,154 + 1768: -89,154 + 1769: -88,154 + 1783: -80,154 + 1784: -81,154 + 1785: -81,155 + 1786: -81,154 + 1787: -82,154 + 1788: -81,154 + 1789: -81,154 + 1790: -80,154 + 1987: -88,167 + 1988: -89,168 + 1989: -89,167 + 1990: -92,168 + 1991: -91,170 + 1992: -91,171 + 1993: -90,172 + 1994: -89,173 + 1995: -88,174 + 1996: -89,175 + 1997: -89,172 + 1998: -88,173 + 1999: -89,173 + 2000: -90,172 + 2001: -91,171 + 2002: -93,168 + 2003: -95,167 + 2004: -96,167 + 2005: -95,167 + 2006: -94,167 + 2007: -93,167 + 2008: -94,167 + 2009: -92,170 + 2010: -93,170 + 2011: -92,170 + 2012: -86,171 + 2013: -86,172 + 2014: -86,171 + 2015: -86,170 + 2016: -86,169 + 2125: -73,176 + 2126: -73,176 + 2127: -70,173 + 2128: -69,173 + 2129: -70,172 + 2130: -69,174 + 2131: -69,173 + 2132: -70,172 + 2133: -71,172 + 2134: -71,171 + 2156: -71,169 + 2157: -72,169 + 2158: -71,168 + 2159: -73,167 + 2160: -74,167 + 2161: -72,170 + 2162: -71,169 + 2163: -71,170 + 2164: -71,171 + 2165: -71,170 + 2200: -62,171 + 2201: -61,172 + 2202: -61,171 + 2203: -61,171 + 2204: -60,172 + 2205: -58,172 + 2206: -58,172 + 2207: -58,171 + 2208: -58,173 + 2209: -58,173 + 2210: -59,173 + 2211: -59,173 + 2212: -59,174 + 2213: -59,173 + 2214: -60,173 + 2215: -63,171 + 2216: -64,171 + 2217: -64,174 + 2218: -64,174 + 2219: -65,174 + 2220: -65,174 + 2221: -65,173 + 2222: -65,173 + 2223: -63,172 + 2235: -60,158 + 2236: -61,158 + 2237: -60,159 + 2238: -60,158 + 2239: -60,156 + 2240: -62,161 + 2241: -63,161 + 2242: -63,161 + 2243: -63,161 + 2244: -64,161 + 2245: -60,166 + 2246: -60,167 + 2247: -60,166 + 2248: -60,165 + 2249: -65,169 + 2250: -64,169 + 2251: -65,169 + 2252: -65,169 + 2253: -66,169 + 2254: -67,170 + 2255: -67,171 + 2256: -67,170 + 2257: -67,172 + 2258: -67,166 + 2259: -67,166 + 2260: -67,165 + 2261: -66,161 + 2262: -66,161 + 2263: -67,161 + 2264: -66,162 + 2309: -98,155 + 2310: -98,155 + 2311: -98,155 + 2312: -98,156 + 2313: -98,156 + 2314: -98,158 + 2315: -98,157 + 2316: -99,158 + 2317: -99,159 + 2318: -99,158 + 2319: -99,158 + 2320: -97,158 + 2982: 10,185 + 2983: 9,185 + 2984: 10,185 + 2985: 11,184 + 2986: 10,185 + 2987: 9,185 + - node: + cleanable: True + color: '#9FED5896' + id: Rust + decals: + 1810: -81,167 + 1811: -80,167 + 1812: -81,167 + 1813: -81,168 + 1814: -83,169 + 1815: -83,169 + 1816: -84,170 + 1817: -84,171 + 1818: -76,169 + 1819: -82,174 + 1835: -84,173 + 1836: -79,175 + 1837: -78,175 + 1838: -78,174 + 1839: -78,175 + 1840: -76,172 + - node: + color: '#FFFFFFFF' + id: Rust + decals: + 108: -32.024284,-19.016344 + 109: -37.024284,-18.00072 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 1058: -44,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 1057: -43,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 1056: -42,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 3656: -41,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 1054: -40,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 1055: -39,90 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 1323: -38,90 + - node: + color: '#FFFFFFFF' + id: StairsMS + decals: + 5652: -44,-5 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 9: -34,1 + 106: -49,-13 + 107: -47,-13 + 228: -22,4 + 229: -16,4 + 230: -10,4 + 257: -9,-6 + 1320: -41,72 + - node: + cleanable: True + color: '#FFFFFFFF' + id: StandClear + decals: + 4333: -72.52609,179.6773 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1319: -45,77 + 1322: -45,85 + 3497: -95,40 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1317: -37,77 + 1318: -37,85 + - node: + color: '#FFFFFFFF' + id: StandClearGreyscale + decals: + 1966: -93,170 + - node: + color: '#8932B878' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1087: -4,82 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 520: 69,41 + 5593: 70,30 + - node: + color: '#8932B878' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1088: 0,80 + - node: + color: '#B2B4BE93' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 4827: 82,51 + - node: + color: '#D1CA4493' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 4835: 82,48 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 4826: 82,54 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 5595: 72,26 + - node: + color: '#8932B878' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1089: -4,80 + - node: + color: '#B2B4BE93' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 4828: 80,51 + - node: + color: '#D1CA4493' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 4836: 80,48 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 4825: 80,54 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 5596: 70,26 + - node: + color: '#8932B878' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1086: 0,82 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 521: 73,41 + 5594: 72,30 + - node: + color: '#00BEBEFF' + id: WarnCornerGreyscaleNE + decals: + 5004: -104,28 + - node: + color: '#80C71FFF' + id: WarnCornerGreyscaleNE + decals: + 2942: 21,195 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleNE + decals: + 5127: 63,46 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleNE + decals: + 3409: -127,55 + - node: + color: '#00BEBE87' + id: WarnCornerGreyscaleNW + decals: + 3542: -110,28 + - node: + color: '#80C71FFF' + id: WarnCornerGreyscaleNW + decals: + 2943: 18,195 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleNW + decals: + 5128: 60,46 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleNW + decals: + 3412: -129,55 + - node: + color: '#00BEBE87' + id: WarnCornerGreyscaleSE + decals: + 3575: -105,18 + 3576: -104,20 + - node: + color: '#80C71FFF' + id: WarnCornerGreyscaleSE + decals: + 2944: 21,193 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSE + decals: + 5129: 63,43 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleSE + decals: + 3410: -127,53 + - node: + color: '#00BEBE87' + id: WarnCornerGreyscaleSW + decals: + 3573: -114,20 + 3574: -113,18 + - node: + color: '#80C71FFF' + id: WarnCornerGreyscaleSW + decals: + 2945: 18,193 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSW + decals: + 5130: 60,43 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleSW + decals: + 3411: -129,53 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 2900: 5,193 + 2901: 6,192 + 3404: -127,49 + 5537: 76,20 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 2899: 4,193 + 3403: -129,49 + 5538: 74,20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 2902: 6,191 + 2903: 5,190 + 3402: -127,44 + 5539: 76,18 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 2904: 4,190 + 3401: -129,44 + 5540: 74,18 + - node: + color: '#D381C996' + id: WarnCornerSmallGreyscaleNE + decals: + 2155: -72,168 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleNE + decals: + 5112: 32,59 + 5603: 72,28 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleNW + decals: + 5602: 70,28 + - node: + color: '#00BEBE87' + id: WarnCornerSmallGreyscaleSE + decals: + 3617: -105,20 + - node: + color: '#D381C996' + id: WarnCornerSmallGreyscaleSE + decals: + 2154: -72,172 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleSE + decals: + 5111: 32,61 + - node: + color: '#00BEBE87' + id: WarnCornerSmallGreyscaleSW + decals: + 3650: -113,20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 2908: 2,190 + 2912: 5,192 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 2050: -70,178 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 2907: 2,193 + 2911: 5,191 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnEndN + decals: + 5120: 31,61 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnEndS + decals: + 5121: 31,59 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 2905: 2,191 + 2906: 2,192 + 3396: -127,45 + 3397: -127,46 + 3398: -127,47 + 3399: -127,48 + 5541: 76,19 + 5554: 22,171 + 5555: 22,172 + 5556: 22,173 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineE + decals: + 5122: 31,60 + - node: + color: '#00BEBE87' + id: WarnLineGreyscaleE + decals: + 3543: -104,27 + 3544: -104,26 + 3545: -104,25 + 3546: -104,24 + 3547: -104,23 + 3548: -104,22 + 3549: -104,21 + 3550: -105,19 + - node: + color: '#25548C93' + id: WarnLineGreyscaleE + decals: + 2456: -19,192 + 2457: -19,193 + - node: + color: '#80C71FFF' + id: WarnLineGreyscaleE + decals: + 2941: 21,194 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 1179: -48,84 + 1180: -48,85 + 1181: -48,86 + 1963: -86,171 + 1964: -86,172 + 2149: -72,169 + 2150: -72,170 + 2151: -72,171 + - node: + cleanable: True + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 1832: -76,170 + 1833: -76,171 + 1834: -76,172 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 457: 67,54 + 458: 67,53 + 459: 67,52 + 503: 78,56 + 604: 58,61 + 632: 77,66 + 819: 63,66 + 1414: 68,33 + 1415: 68,34 + 1416: 68,35 + 4149: 58,60 + 5108: 38,61 + 5113: 32,60 + 5131: 63,44 + 5132: 63,45 + 5604: 72,29 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleE + decals: + 1130: -48,76 + 1131: -48,77 + 1132: -48,78 + 3405: -127,54 + - node: + color: '#FFC364FF' + id: WarnLineGreyscaleE + decals: + 26: -26,-1 + 30: -26,-5 + 298: -26,-6 + 299: -26,-4 + 321: -6,-1 + 322: -6,0 + - node: + color: '#00BEBE87' + id: WarnLineGreyscaleN + decals: + 3536: -109,28 + 3537: -108,28 + 3538: -107,28 + 3539: -106,28 + 3571: -113,25 + 3572: -112,25 + - node: + color: '#00BEBEFF' + id: WarnLineGreyscaleN + decals: + 5005: -105,28 + - node: + color: '#80C71FFF' + id: WarnLineGreyscaleN + decals: + 2939: 19,195 + 2940: 20,195 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleN + decals: + 4906: -66,69 + 4907: -66,69 + - node: + color: '#A4610696' + id: WarnLineGreyscaleN + decals: + 1293: -42,69 + 1294: -41,69 + 1295: -40,69 + - node: + color: '#D381C996' + id: WarnLineGreyscaleN + decals: + 1961: -89,175 + 1962: -88,175 + 1965: -93,170 + 2152: -71,168 + - node: + cleanable: True + color: '#D381C996' + id: WarnLineGreyscaleN + decals: + 1826: -81,175 + 1827: -80,175 + 1828: -79,175 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 454: 72,49 + 455: 71,49 + 456: 70,49 + 497: 65,55 + 498: 66,55 + 555: 66,44 + 556: 67,44 + 557: 75,44 + 558: 76,44 + 592: 70,63 + 593: 71,63 + 594: 72,63 + 659: 94,55 + 660: 95,55 + 661: 96,55 + 873: 59,67 + 5114: 33,59 + 5115: 33,59 + 5137: 61,46 + 5138: 62,46 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleN + decals: + 3408: -128,55 + - node: + color: '#FFC364FF' + id: WarnLineGreyscaleN + decals: + 23: -29,0 + 24: -28,0 + 25: -27,0 + 27: -29,-4 + 28: -28,-4 + 330: -11,0 + 331: -10,0 + 332: -9,0 + 333: -15,0 + 334: -16,0 + 335: -17,0 + 336: -21,0 + 337: -22,0 + 338: -23,0 + - node: + color: '#00BEBE87' + id: WarnLineGreyscaleS + decals: + 3509: -105,30 + 3510: -104,30 + 3511: -106,30 + 3512: -103,30 + 3559: -106,18 + 3560: -107,18 + 3562: -108,18 + 3565: -109,18 + 3567: -110,18 + 3569: -111,18 + 3570: -112,18 + - node: + color: '#80C71FFF' + id: WarnLineGreyscaleS + decals: + 2937: 19,193 + 2938: 20,193 + - node: + color: '#A4610696' + id: WarnLineGreyscaleS + decals: + 1340: -36,6 + 1341: -35,6 + 1342: -34,6 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 2153: -71,172 + - node: + cleanable: True + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 1831: -79,167 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 463: 70,57 + 464: 71,57 + 465: 72,57 + 499: 66,46 + 500: 67,46 + 501: 75,46 + 502: 76,46 + 559: 66,42 + 560: 67,42 + 561: 75,42 + 562: 76,42 + 633: 70,65 + 634: 71,65 + 635: 72,65 + 656: 94,51 + 657: 95,51 + 658: 96,51 + 854: 53,59 + 5110: 33,61 + 5135: 61,43 + 5136: 62,43 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleS + decals: + 3407: -128,53 + - node: + color: '#FFC364FF' + id: WarnLineGreyscaleS + decals: + 21: -29,-2 + 22: -28,-2 + 85: -49,-13 + 86: -47,-13 + 294: -23,-6 + 295: -22,-6 + 317: -10,-6 + 318: -11,-6 + 319: -8,-6 + 320: -7,-6 + - node: + color: '#00BEBE87' + id: WarnLineGreyscaleW + decals: + 3540: -110,27 + 3541: -110,26 + 3597: -114,23 + 3600: -114,22 + 3603: -114,21 + 3651: -113,19 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 1232: -34,84 + 1233: -34,85 + 1234: -34,86 + 2441: -17,192 + 2442: -17,193 + - node: + color: '#80C71FFF' + id: WarnLineGreyscaleW + decals: + 2936: 18,194 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleW + decals: + 4905: -67,66 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 2081: -67,156 + 2082: -67,158 + 2083: -67,157 + 2107: -74,170 + 2108: -74,171 + 2109: -74,172 + - node: + cleanable: True + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 1829: -84,171 + 1830: -84,172 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 460: 75,52 + 461: 75,53 + 462: 75,54 + 573: 63,61 + 579: 68,63 + 631: 65,66 + 1177: -34,76 + 1178: -34,77 + 1423: -34,78 + 5000: 63,60 + 5133: 60,44 + 5134: 60,45 + 5601: 70,29 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleW + decals: + 3138: -87,40 + 3139: -87,41 + 3140: -87,42 + 3406: -129,54 + - node: + color: '#FFC364FF' + id: WarnLineGreyscaleW + decals: + 20: -30,-1 + 29: -30,-5 + 296: -24,-5 + 297: -24,-4 + 316: -24,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 103: -49,-13 + 104: -48,-13 + 105: -47,-13 + 3395: -128,44 + 3496: -96,40 + 5542: 75,18 + 5548: -86,71 + 5549: -85,71 + 5550: -84,71 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineN + decals: + 5615: 8.962517,70.28028 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 2048: -70,179 + 2049: -70,180 + 2110: -70,181 + 2909: 4,191 + 2910: 4,192 + 3391: -129,48 + 3392: -129,47 + 3393: -129,46 + 3394: -129,45 + 5543: 74,19 + 5551: 20,171 + 5552: 20,172 + 5553: 20,173 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineS + decals: + 5123: 31,60 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 2045: -74,178 + 2046: -72,178 + 2047: -71,178 + 3400: -128,49 + 3495: -96,40 + 5544: 75,20 + 5545: -86,73 + 5546: -85,73 + 5547: -84,73 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineW + decals: + 4334: -73,178 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 4358: -65,62 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 1426: -4,75 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 1427: -4,76 + 1428: -4,77 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 1429: -3,77 + 1430: -1,77 + 1431: 0,77 + - node: + zIndex: 6 + color: '#D4D0DCFF' + id: WoodTrimThinLineS + decals: + 3910: -32,67 + - node: + zIndex: 6 + angle: 1.5707963267948966 rad + color: '#D4D0DCFF' + id: WoodTrimThinLineS + decals: + 3911: -30,68 + 3912: -30,69 + 3913: -30,69 + 3914: -30,70 + 3915: -30,71 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 1424: -1,77 + 1425: 0,77 + 5589: 50,24 + 5590: 49,24 + 5591: 48,24 + - node: + zIndex: 1 + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 3909: -32,67 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 5586: 52,23 + 5587: 52,22 + 5588: 52,21 + - node: + color: '#FFFFFFFF' + id: amyjon + decals: + 14: -35.9595,-8.013108 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#FF434BFF' + id: body + decals: + 951: 98.219505,19.126734 + - node: + color: '#FFFFFFFF' + id: bushsnowa1 + decals: + 2600: -6.546962,185.9682 + - node: + color: '#FFFFFFFF' + id: bushsnowa2 + decals: + 2664: -3.996482,193.076 + - node: + color: '#FFFFFFFF' + id: bushsnowb1 + decals: + 2872: -17,201 + - node: + color: '#FFFFFFFF' + id: bushsnowb2 + decals: + 2598: -8,186 + 2599: -7.8517294,184.98994 + - node: + cleanable: True + color: '#D381C996' + id: carp + decals: + 4233: -103.02707,63.924225 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#79150096' + id: clawprint + decals: + 4303: -44.048668,53.062798 + 4304: -43.783043,52.781548 + 4305: -44.095543,52.203423 + - node: + cleanable: True + color: '#9FED5896' + id: clown + decals: + 4256: -82.63508,61.869827 + - node: + color: '#9D80FF44' + id: corgi + decals: + 968: -20.896149,87.042656 + - node: + color: '#FF808944' + id: corgi + decals: + 967: -20.941143,86.96394 + - node: + color: '#FFFFFF46' + id: corgi + decals: + 966: -20.907398,87.00893 + - node: + color: '#FFFFFFFF' + id: cyka + decals: + 3814: -104.52734,92.377655 + - node: + color: '#00000013' + id: cyr_d + decals: + 1325: -40.981544,89.189835 + - node: + color: '#00000017' + id: cyr_eh + decals: + 1324: -41.37693,89.20982 + - node: + color: '#FF004193' + id: danger + decals: + 4084: -130,82 + 4085: -131,81 + 4086: -129,83 + - node: + cleanable: True + color: '#D4D4D496' + id: face + decals: + 5145: 79.75583,21.841293 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#EFB34196' + id: fireaxe + decals: + 4255: -81.99445,61.760452 + - node: + cleanable: True + color: '#EFB34196' + id: ghost + decals: + 4254: -106.91884,66.03075 + - node: + color: '#FFFFFFFF' + id: grasssnow + decals: + 1507: -86.07398,99.993645 + 1508: -86.16396,97.81223 + 1509: -85.30912,97.50489 + 1510: -85.28662,100.40594 + 1511: -83.80939,100.17355 + 1512: -83.7344,97.49739 + 2587: -8,185 + 2588: -9,186 + 2589: -10,186 + 2590: -10,185 + 2591: -8,186 + 2592: -7,186 + 2593: -9,185 + 2613: -2,176 + 2614: -1,177 + 2615: 2,179 + 2616: 3,180 + 2617: 2,180 + 2618: 0,180 + 2628: -15,185 + 2629: -16,185 + 2630: -17,185 + 2631: -15,184 + 2632: -19,186 + 2641: -3,193 + 2642: -2,193 + 2643: 0,193 + 2644: -1,194 + 2645: -2,194 + 2646: -4,194 + 2647: -4,195 + 2648: -3,195 + 2649: -3,194 + 2650: 2,193 + 2663: -4,193 + 2665: 2,189 + 2707: -4,196 + 2708: -3,196 + 2709: -3,197 + 2710: -4,197 + 2711: -3,198 + 2712: -4,198 + 2713: -3,199 + 2714: -4,199 + 2718: -3,201 + 2719: -4,201 + 2781: -6,205 + 2786: -12,205 + 2817: -22,202 + 2818: -21,202 + 2819: -20,202 + 2820: -22,201 + 2821: -21,201 + 2826: -18,199 + 2836: -4,208 + 2837: -3,207 + 2838: -4,207 + 2839: -3,206 + 2845: -23,196 + 2846: -22,196 + 2847: -25,196 + 2848: -24,196 + 2849: -26,196 + 2850: -27,196 + 2851: -27,195 + 2852: -27,194 + 2853: -27,193 + 3455: -3.0550146,190.83821 + 4422: -17,175 + 4423: -16,175 + 4424: -15,175 + - node: + color: '#FFFFFFFF' + id: grasssnow01 + decals: + 2594: -6,186 + 3459: -3.8987646,189.79134 + 3460: -1.9612646,191.58821 + 4067: -21.084127,182.9265 + 4068: -21.18536,183.45499 + - node: + color: '#FFFFFFFF' + id: grasssnow02 + decals: + 2372: -5,184 + 2595: -9,184 + 2596: -10,184 + 2782: -6,204 + 2865: -14,201 + 4069: -21.893982,184.87178 + - node: + color: '#FFFFFFFF' + id: grasssnow03 + decals: + 2370: -3,184 + 2371: -4,188 + 2597: -5,186 + 3456: -2.2893896,189.15071 + 3457: -0.3518896,190.46321 + 3458: -3.9143896,191.93196 + 4428: -13,177 + 4429: -15,180 + - node: + color: '#FFFFFFFF' + id: grasssnow04 + decals: + 2835: -15,199 + 4430: -14,177 + - node: + color: '#FFFFFFFF' + id: grasssnow05 + decals: + 2607: -8,176 + 2619: 0,179 + 2620: -1,181 + 2621: -1,180 + 2635: -19,187 + 2636: -22,188 + 2637: -26,188 + 2638: -21,182 + 2722: -6,201 + 4420: -16,177 + - node: + color: '#FFFFFFFF' + id: grasssnow06 + decals: + 2373: 0,187 + 2374: 1,188 + 2655: 2,191 + 2656: 1,193 + 2723: -5,202 + 2834: -18,201 + 2866: -15,201 + 2867: -17,201 + - node: + color: '#FFFFFFFF' + id: grasssnow07 + decals: + 1505: -84.09434,99.813736 + 2608: -8,180 + 2609: -6,183 + 2610: -3,183 + 2654: 0,192 + 4438: -15,181 + - node: + color: '#FFFFFFFF' + id: grasssnow08 + decals: + 2633: -18,185 + 2634: -19,187 + 2657: 0,194 + 2791: -7,201 + 4061: -24.93094,179.96924 + - node: + color: '#FFFFFFFF' + id: grasssnow09 + decals: + 2362: 0,186 + 2363: -1,182 + 2364: -4,183 + 2365: -3,186 + 2606: -8,178 + 2779: -4,205 + 2780: -7,204 + 2864: -13,202 + 4062: -23.063774,180.07043 + 4063: -27.934155,180.98123 + 4064: -26.955578,181.12741 + 4065: -27.180538,180.23909 + 4425: -15,176 + 4426: -14,175 + 4431: -15,178 + - node: + color: '#FFFFFFFF' + id: grasssnow10 + decals: + 1506: -84.32679,98.232025 + 2366: 0,183 + 2367: -1,186 + 2368: -5,187 + 2369: -2,187 + 2603: -11,174 + 2604: -8,175 + 2605: -8,177 + 2611: -2,179 + 2612: 1,178 + 2651: -1,193 + 2652: -3,194 + 2653: 1,192 + 2666: 1,189 + 2720: -4,202 + 2721: -5,201 + 2777: -7,205 + 2778: -5,205 + 2822: -20,201 + 2823: -22,198 + 2824: -19,199 + 2825: -17,199 + 2840: -4,206 + 2868: -17,201 + 4066: -25.189644,179.8343 + 4419: -16,176 + 4437: -16,181 + - node: + color: '#FFFFFFFF' + id: grasssnow11 + decals: + 2667: 2,190 + 2785: -11,205 + 4421: -16,178 + 4427: -13,175 + - node: + color: '#FFFFFFFF' + id: grasssnow12 + decals: + 2790: -10,202 + - node: + color: '#FFFFFFFF' + id: grasssnow13 + decals: + 2832: -22,200 + 2833: -19,201 + - node: + color: '#FFFFFFFF' + id: grasssnowa1 + decals: + 2375: 1,180 + 2376: -1,178 + 2622: 2,179 + 2858: -25,196 + 2863: -22,197 + - node: + color: '#FFFFFFFF' + id: grasssnowa2 + decals: + 2602: -13,174 + 2640: -21,189 + 2869: -13,202 + - node: + color: '#FFFFFFFF' + id: grasssnowa3 + decals: + 2377: -2,177 + 2715: -4,197 + 2831: -22,201 + 2841: -4,208 + 4435: -13,176 + - node: + color: '#FFFFFFFF' + id: grasssnowb1 + decals: + 2623: 3,180 + 2626: -8,173 + 2627: -16,184 + 2660: -2,194 + 2661: -4,195 + 2783: -6,205 + 2784: -10,201 + 2829: -20,202 + 2830: -21,202 + 2842: -3,207 + 2859: -22,196 + 2860: -22,198 + 2861: -27,192 + 2862: -27,190 + 2870: -19,201 + 4436: -16,180 + 4439: -12,178 + - node: + color: '#FFFFFFFF' + id: grasssnowb2 + decals: + 2662: 0,193 + 2789: -9,201 + 2843: -3,206 + 2844: -4,207 + 3464: -1.6800146,190.83821 + - node: + color: '#FFFFFFFF' + id: grasssnowb3 + decals: + 2639: -19,186 + 3462: -1.9300146,190.22884 + 3463: -2.6018896,191.38509 + 4433: -17,175 + - node: + color: '#FFFFFFFF' + id: grasssnowc1 + decals: + 2378: 0,177 + 2379: 0,181 + 2380: -4,183 + 2381: 1,188 + 2624: -2,179 + 2625: -8,180 + 2659: -4,194 + 2716: -3,198 + 2717: -4,199 + 2787: -12,205 + 2788: -8,201 + 2827: -18,199 + 2871: -18,201 + - node: + color: '#FFFFFFFF' + id: grasssnowc2 + decals: + 2854: -27,194 + 2855: -26,196 + 2856: -27,196 + 2857: -23,196 + 4434: -16,176 + - node: + color: '#FFFFFFFF' + id: grasssnowc3 + decals: + 2601: -12,174 + 2658: -3,193 + 2828: -22,202 + 3461: 1.1481104,190.55696 + 4432: -16,175 + - node: + color: '#FFFFFFFF' + id: i + decals: + 953: -20.423735,87.1551 + 954: -20.288757,87.16634 + 955: -20.120039,87.132614 + 956: -19.940071,87.14386 + 957: -21.267334,85.85075 + 958: -21.109861,85.88448 + 959: -20.952389,85.83951 + 960: -20.772423,85.88448 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: i + decals: + 961: -21.166101,85.81702 + 962: -20.83991,85.77204 + 963: -20.322502,87.188835 + 964: -19.962566,87.12137 + - node: + cleanable: True + color: '#D4D4D496' + id: like + decals: + 5144: 80.333954,21.763168 + - node: + cleanable: True + color: '#9FED5896' + id: o + decals: + 4257: -82.54133,61.463577 + - node: + cleanable: True + color: '#FFFFFFFF' + id: prolizard + decals: + 5523: -102,20 + - node: + cleanable: True + color: '#D4D4D496' + id: questionmark + decals: + 5148: 80.427704,18.950668 + 5149: 80.03708,19.075668 + 5150: 79.708954,18.856918 + - node: + color: '#FFFFFF46' + id: questionmark + decals: + 965: -19.748856,85.80578 + - node: + cleanable: True + color: '#FFFFFFFF' + id: safe + decals: + 5423: -110.65491,24.910793 + - node: + cleanable: True + angle: 1.9373154697137058 rad + color: '#79150096' + id: shortline + decals: + 5620: -31.128754,200.42957 + 5621: -31.321384,200.20941 + 5622: -31.018679,200.26445 + 5623: -31.238829,199.90671 + 5624: -31.156273,200.29196 + 5625: -31.45898,200.07181 + 5626: -31.45898,200.07181 + 5627: -31.376423,199.90671 + 5628: -31.45898,199.90671 + 5629: -31.514017,199.90671 + 5630: -31.816725,200.01678 + 5631: -31.816725,200.01678 + 5632: -31.761688,199.85165 + 5633: -31.9268,199.79663 + 5634: -32.064392,199.71408 + 5635: -32.284546,199.604 + 5636: -32.532215,199.54895 + 5637: -30.99116,200.15437 + 5638: -30.908604,199.98926 + 5639: -30.715971,200.0443 + 5640: -30.936123,200.01678 + 5641: -31.211311,199.98926 + 5642: -31.376423,199.93422 + 5643: -31.871761,199.87918 + 5644: -31.073715,200.34702 + 5645: -30.963642,200.37451 + 5646: -30.715971,200.18188 + 5647: -30.908604,200.0443 + 5648: -31.238829,200.07181 + - node: + zIndex: 1 + color: '#000000FF' + id: shotgun + decals: + 5614: 5.084179,70.683784 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#DE3A3A96' + id: shotgun + decals: + 4258: -83.13508,61.182327 + - node: + cleanable: True + color: '#FFFFFFFF' + id: snake + decals: + 5522: -114,27 + - node: + color: '#2D7230FF' + id: splatter + decals: + 356: 27,19 + - node: + color: '#3128305D' + id: splatter + decals: + 4095: 64.87597,56.083145 + - node: + color: '#3D8C40FF' + id: splatter + decals: + 353: 30,19 + 354: 26,15 + 355: 32,14 + - node: + cleanable: True + color: '#3E0000FF' + id: splatter + decals: + 1543: -40.520287,58.69102 + 1544: -40.115356,59.005867 + - node: + color: '#461000D3' + id: splatter + decals: + 972: -21.593525,85.60338 + 975: -20.300007,86.71657 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#55001252' + id: splatter + decals: + 4098: -40.88162,61.563427 + 4099: -41.241554,61.552185 + 4100: -40.476692,61.563427 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#55001299' + id: splatter + decals: + 4101: -41.027843,61.36103 + 4102: -41.16282,60.416504 + 4103: -40.76914,60.382767 + 4104: -40.971603,59.449486 + - node: + color: '#5E7500FF' + id: splatter + decals: + 114: -36.046883,-20.035028 + 115: -34.062508,-18.347528 + - node: + color: '#611000D3' + id: splatter + decals: + 973: -20.210022,86.784035 + 974: -20.17628,86.53666 + - node: + cleanable: True + color: '#650000FF' + id: splatter + decals: + 1537: -39.744175,59.11831 + 1538: -39.98038,58.612312 + 1539: -40.194096,59.09582 + 1540: -40.295326,58.67978 + 1541: -39.66544,58.612312 + 1542: -40.48654,58.37618 + - node: + color: '#79150096' + id: splatter + decals: + 4302: -43.954918,53.797173 + - node: + cleanable: True + color: '#79150096' + id: splatter + decals: + 5618: -32.642292,204.52988 + 5619: -30.660934,200.48459 + - node: + cleanable: True + angle: 1.9373154697137058 rad + color: '#79150096' + id: splatter + decals: + 5649: -30.74349,200.37451 + 5650: -31.128754,200.12686 + - node: + color: '#801000D3' + id: splatter + decals: + 969: -20.61495,86.71657 + 970: -21.368565,85.64835 + 971: -21.57103,85.85075 + - node: + cleanable: True + color: '#9517108A' + id: splatter + decals: + 4359: -3.052929,72.808846 + 4360: -2.756054,73.08301 + 4361: -3.099804,73.08301 + 4362: -3.209179,73.02051 + - node: + cleanable: True + color: '#A461064E' + id: splatter + decals: + 4336: -71.33859,181.50168 + 4337: -73.82297,180.4548 + 4338: -71.29172,179.42355 + - node: + cleanable: True + color: '#A7FF72FF' + id: splatter + decals: + 4986: -115.35729,52.941154 + - node: + cleanable: True + color: '#B02E26FF' + id: star + decals: + 4467: -46.96315,171.95016 + - node: + cleanable: True + color: '#D4D4D496' + id: stickman + decals: + 5147: 80.06833,18.341293 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#55001252' + id: thinline + decals: + 4097: -39.687008,62.046936 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#55001293' + id: thinline + decals: + 4096: -40.474365,61.765827 + - node: + cleanable: True + angle: 1.6057029118347832 rad + color: '#65000063' + id: thinline + decals: + 1550: -42.83737,58.882175 + - node: + cleanable: True + angle: 1.6057029118347832 rad + color: '#6500007E' + id: thinline + decals: + 1547: -42.747387,59.084576 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#65000082' + id: thinline + decals: + 1552: -41.96003,58.58982 + - node: + cleanable: True + angle: 1.6057029118347832 rad + color: '#6500009D' + id: thinline + decals: + 1549: -41.937534,58.949642 + - node: + cleanable: True + angle: 1.6057029118347832 rad + color: '#650000B6' + id: thinline + decals: + 1546: -41.8363,59.129555 + - node: + cleanable: True + angle: 1.3962634015954636 rad + color: '#650000BC' + id: thinline + decals: + 1551: -41.026447,58.511112 + - node: + cleanable: True + angle: 1.6057029118347832 rad + color: '#650000C9' + id: thinline + decals: + 1548: -40.981453,59.01711 + - node: + cleanable: True + angle: 1.6057029118347832 rad + color: '#650000FF' + id: thinline + decals: + 1545: -40.925213,59.185776 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 4095 + 0,-1: + 0: 65520 + -1,0: + 0: 143 + 1: 25088 + 0,1: + 1: 3315 + -1,1: + 1: 140 + 1,0: + 0: 49 + 1: 57344 + 1,1: + 1: 59160 + 1,-1: + 0: 4352 + 1: 35018 + 2,0: + 1: 4096 + 2,1: + 1: 6375 + 1,2: + 1: 8 + 2,2: + 1: 2279 + 3,1: + 1: 61200 + 3,2: + 1: 53040 + 4,1: + 1: 12288 + 4,2: + 1: 6351 + 0,-2: + 1: 61455 + -1,-2: + 1: 58447 + 0: 4096 + -1,-1: + 0: 63511 + 1,-2: + 1: 39055 + 1,-3: + 1: 34944 + 2,-2: + 1: 3 + -4,0: + 0: 65335 + -4,-1: + 0: 65535 + -5,0: + 0: 65421 + -4,1: + 0: 4383 + -5,1: + 0: 15 + 1: 1792 + -3,0: + 0: 65519 + -3,1: + 0: 43695 + -3,-1: + 0: 65535 + -2,0: + 0: 64783 + -2,1: + 0: 13 + -2,-1: + 0: 63351 + -4,-2: + 0: 63247 + -5,-2: + 0: 64777 + -5,-1: + 0: 65535 + -4,-3: + 0: 32768 + -3,-2: + 0: 65350 + -3,-3: + 0: 16384 + -2,-3: + 0: 4096 + -2,-2: + 0: 30483 + 1: 8 + -1,-3: + 1: 16384 + -8,-4: + 0: 60943 + -9,-4: + 0: 56797 + -8,-3: + 0: 3854 + -9,-3: + 0: 8188 + -8,-2: + 0: 64975 + -9,-2: + 0: 65295 + -8,-1: + 0: 64909 + -9,-1: + 0: 65439 + -8,0: + 0: 65437 + -8,-5: + 0: 49425 + -7,-4: + 0: 64783 + -7,-3: + 0: 4045 + -7,-2: + 0: 65399 + -7,-1: + 0: 63263 + -7,-5: + 0: 56558 + -7,0: + 0: 63255 + -6,-4: + 0: 63247 + -6,-3: + 0: 65535 + -6,-2: + 0: 65391 + -6,-1: + 0: 65535 + -6,-5: + 0: 30515 + -6,0: + 0: 65519 + -5,-3: + 0: 54545 + -9,0: + 0: 65535 + -8,1: + 0: 24687 + -9,1: + 0: 65407 + -8,2: + 0: 4130 + -9,2: + 0: 4095 + -7,1: + 0: 7 + -6,1: + 0: 17487 + -12,0: + 0: 31547 + -12,-1: + 0: 64313 + -13,0: + 0: 65535 + -12,1: + 0: 14335 + -13,1: + 0: 65535 + -12,2: + 0: 65527 + -13,2: + 0: 65535 + -12,3: + 0: 65167 + -13,3: + 0: 32847 + -12,4: + 0: 1 + -11,0: + 0: 65291 + -11,2: + 0: 65520 + -11,3: + 0: 1023 + -11,-1: + 0: 64395 + -10,0: + 0: 47879 + -10,1: + 0: 47658 + -10,2: + 0: 31675 + -10,3: + 0: 63 + -10,-1: + 0: 63351 + -9,3: + 0: 1 + -12,-5: + 1: 61986 + -12,-4: + 0: 61986 + 1: 136 + -13,-4: + 0: 55432 + 1: 34 + -12,-3: + 0: 65535 + -13,-3: + 0: 56780 + -12,-2: + 0: 47903 + -13,-2: + 0: 43020 + -13,-1: + 0: 65523 + -11,-4: + 0: 63726 + -11,-3: + 0: 33023 + -11,-2: + 0: 64392 + -10,-4: + 0: 56575 + -10,-3: + 0: 24017 + -10,-2: + 0: 30583 + -9,-5: + 0: 20479 + -8,-7: + 0: 16128 + -9,-7: + 0: 64512 + -8,-6: + 0: 4113 + -9,-6: + 0: 61695 + -7,-7: + 0: 256 + -7,-6: + 0: 51200 + -6,-6: + 0: 4096 + -12,-6: + 1: 12064 + -13,-6: + 1: 36480 + -13,-5: + 1: 59528 + -11,-6: + 1: 1868 + 0: 51328 + -11,-7: + 1: 52416 + -10,-7: + 1: 4368 + 0: 49152 + -10,-6: + 0: 33791 + -10,-5: + 0: 2184 + -16,-3: + 0: 64768 + -17,-3: + 0: 65319 + -16,-2: + 0: 56797 + -17,-2: + 0: 65535 + -16,-1: + 0: 7644 + -17,-1: + 0: 3312 + -16,0: + 0: 34954 + -16,-4: + 1: 68 + 0: 2176 + -15,-4: + 0: 28932 + 1: 128 + -15,-3: + 0: 4367 + -15,-2: + 0: 53713 + -15,-1: + 0: 53727 + -15,0: + 0: 6621 + -15,-5: + 0: 17408 + 1: 2560 + -14,-3: + 0: 1 + -14,-1: + 0: 65263 + -14,-2: + 0: 24576 + -14,0: + 0: 65535 + -13,4: + 0: 63 + -16,4: + 0: 48 + -15,4: + 0: 3584 + -15,3: + 2: 52224 + 0: 28 + -14,4: + 0: 2032 + -14,3: + 2: 26112 + 1: 1 + 0: 6 + -16,1: + 1: 13056 + 0: 32904 + -17,1: + 1: 49152 + -17,2: + 1: 33086 + -16,2: + 1: 768 + 0: 14472 + -16,3: + 0: 19 + -17,3: + 0: 51336 + 1: 374 + -15,1: + 0: 61713 + -15,2: + 0: 53023 + -14,1: + 0: 24831 + -14,2: + 0: 30479 + -20,4: + 1: 33078 + -21,4: + 1: 27776 + -20,5: + 1: 382 + -21,5: + 1: 51219 + -20,7: + 0: 4096 + -21,7: + 0: 36070 + -20,3: + 1: 51200 + -19,4: + 1: 6120 + -19,3: + 1: 5100 + -18,4: + 1: 3 + -18,3: + 1: 31873 + -17,4: + 0: 4 + -18,2: + 1: 32384 + -20,-4: + 1: 20720 + -21,-4: + 1: 16624 + -20,-3: + 1: 65501 + -21,-3: + 1: 64972 + -20,-2: + 1: 24031 + -21,-2: + 1: 19661 + -20,-1: + 1: 240 + -21,-1: + 1: 240 + -19,-4: + 1: 4336 + -19,-3: + 1: 30481 + 0: 32768 + -19,-2: + 1: 4375 + -19,-1: + 1: 240 + -18,-4: + 1: 112 + 0: 25344 + -18,-3: + 0: 63234 + -18,-2: + 0: 7 + 1: 16384 + -18,-1: + 1: 54 + 0: 192 + -17,-4: + 0: 30496 + 1: 2 + -2,56: + 1: 53721 + -2,55: + 1: 53521 + 0: 8 + -2,57: + 1: 53721 + -2,58: + 1: 53721 + -2,59: + 1: 4569 + -2,60: + 1: 31 + -1,56: + 1: 63743 + -1,57: + 1: 63743 + -1,58: + 1: 63743 + -1,59: + 1: 33023 + -1,55: + 1: 63616 + 0: 99 + 0,56: + 1: 62463 + 0,57: + 1: 62463 + 0,58: + 1: 62463 + 0,59: + 1: 12799 + -1,60: + 1: 143 + -22,-4: + 1: 35016 + -22,-3: + 1: 52360 + -22,-2: + 1: 34956 + -22,-1: + 1: 2248 + -24,2: + 1: 4368 + -25,2: + 1: 240 + -24,3: + 1: 4369 + -25,3: + 1: 52464 + 2: 4096 + -24,4: + 1: 53239 + 0: 12288 + 0,55: + 1: 62256 + 0: 9 + 0,60: + 1: 63 + 1,56: + 1: 28787 + 1,57: + 1: 28787 + 1,58: + 1: 28787 + 1,59: + 1: 115 + 1,55: + 1: 28672 + 2,56: + 1: 4369 + 2,55: + 1: 4369 + 2,57: + 1: 4369 + 2,58: + 1: 4369 + 2,59: + 1: 4369 + 2,60: + 1: 19 + 4,3: + 1: 2279 + 5,2: + 1: 1808 + 0: 59392 + 5,3: + 1: 26384 + 0: 32776 + 5,4: + 0: 25804 + 1: 512 + 6,2: + 0: 49462 + 6,1: + 0: 57344 + 6,3: + 0: 52236 + 6,4: + 0: 52428 + 7,2: + 0: 61440 + 7,3: + 0: 64403 + 7,4: + 0: 65339 + 8,2: + 0: 61454 + 8,3: + 0: 13104 + 5,5: + 0: 36726 + 6,5: + 0: 61452 + 7,5: + 0: 32783 + 6,6: + 0: 8 + 7,6: + 0: 143 + 8,4: + 0: 3 + 8,5: + 0: 61440 + 8,6: + 0: 52991 + 9,5: + 0: 12544 + 9,6: + 0: 65527 + 9,7: + 0: 35022 + 9,3: + 0: 52462 + 9,4: + 0: 136 + 10,4: + 0: 1023 + 10,5: + 0: 61424 + 10,6: + 0: 4100 + 10,7: + 0: 65395 + 10,3: + 0: 62224 + 10,8: + 0: 61439 + 11,4: + 0: 52423 + 11,5: + 0: 30583 + 11,6: + 0: 26183 + 11,7: + 0: 4110 + 11,3: + 0: 4096 + 11,8: + 0: 63347 + 12,4: + 0: 33040 + 12,5: + 0: 65520 + 12,6: + 0: 4087 + 12,7: + 0: 15019 + 8,1: + 0: 61440 + 9,1: + 0: 4096 + 9,2: + 0: 63091 + 12,8: + 0: 3142 + 13,4: + 0: 61696 + 13,5: + 0: 65520 + 13,6: + 0: 8191 + 13,7: + 0: 8191 + 13,8: + 0: 32643 + 14,6: + 0: 2995 + 14,7: + 0: 35578 + 14,8: + 0: 2047 + 14,5: + 0: 2252 + 14,4: + 0: 32768 + 15,4: + 0: 63488 + 1: 68 + 15,5: + 0: 9087 + 15,6: + 0: 65399 + 15,7: + 0: 5119 + 15,8: + 0: 1 + 15,3: + 1: 17476 + 16,4: + 0: 6142 + 16,5: + 0: 52429 + 16,6: + 0: 45056 + 16,7: + 0: 4095 + 10,9: + 0: 50926 + 10,11: + 0: 60620 + 10,12: + 0: 61166 + 10,10: + 0: 52428 + 11,9: + 0: 61459 + 11,10: + 0: 65535 + 11,11: + 0: 57599 + 11,12: + 0: 28390 + 12,10: + 0: 48057 + 12,11: + 0: 61683 + 12,12: + 0: 65535 + 12,9: + 0: 34816 + 13,9: + 0: 65286 + 13,10: + 0: 65535 + 13,11: + 0: 61684 + 13,12: + 0: 65535 + 14,11: + 0: 26230 + 14,9: + 0: 61166 + 14,10: + 0: 25314 + 14,12: + 0: 30310 + 15,9: + 0: 61184 + 15,10: + 0: 61646 + 15,11: + 0: 4095 + 15,12: + 0: 61567 + 16,8: + 0: 65535 + 16,9: + 0: 65295 + 16,10: + 0: 61135 + 16,11: + 0: 61390 + 12,13: + 0: 47359 + 11,13: + 0: 57582 + 12,14: + 0: 955 + 11,14: + 0: 36590 + 12,15: + 0: 4095 + 11,15: + 0: 4095 + 12,16: + 1: 7 + 13,13: + 0: 65535 + 13,14: + 0: 29439 + 13,15: + 0: 30583 + 13,16: + 0: 52991 + 14,13: + 0: 30576 + 14,14: + 0: 60416 + 14,15: + 0: 3822 + 15,13: + 0: 32519 + 15,14: + 0: 63232 + 15,15: + 0: 4095 + 16,12: + 0: 65535 + 16,13: + 0: 65535 + 8,15: + 0: 63931 + 7,16: + 1: 8 + 9,15: + 0: 30711 + 9,16: + 1: 8 + 10,16: + 0: 17493 + 10,15: + 0: 20479 + 11,16: + 1: 15 + 17,8: + 0: 65533 + 17,9: + 0: 65485 + 17,10: + 0: 59631 + 17,11: + 0: 65422 + 17,12: + 0: 51711 + 17,7: + 0: 36349 + 18,8: + 0: 56785 + 18,9: + 0: 65309 + 18,10: + 0: 47295 + 18,11: + 0: 65419 + 18,12: + 0: 40191 + 18,7: + 0: 36349 + 19,8: + 0: 65520 + 19,9: + 0: 65295 + 19,10: + 0: 48031 + 19,11: + 0: 16283 + 19,7: + 0: 32767 + 19,12: + 0: 63359 + 20,8: + 0: 48056 + 20,9: + 0: 65435 + 20,10: + 0: 28799 + 20,11: + 0: 2039 + 16,3: + 0: 32768 + 1: 254 + 17,5: + 0: 65535 + 17,6: + 0: 56460 + 17,3: + 0: 61440 + 1: 3839 + 17,4: + 0: 20196 + 18,5: + 0: 4350 + 18,6: + 0: 53505 + 18,3: + 0: 12288 + 1: 255 + 18,4: + 0: 61152 + 19,4: + 0: 13104 + 19,5: + 0: 3831 + 19,6: + 0: 65024 + 19,3: + 1: 17492 + 20,4: + 0: 13056 + 20,5: + 0: 33043 + 20,6: + 0: 65529 + 20,7: + 0: 53247 + 16,1: + 1: 61455 + 15,1: + 1: 17486 + 16,2: + 1: 61694 + 17,1: + 1: 62703 + 17,2: + 1: 65279 + 17,0: + 1: 57344 + 18,1: + 1: 61455 + 18,2: + 1: 61695 + 19,1: + 1: 21583 + 19,2: + 1: 21588 + 19,0: + 1: 16384 + 16,14: + 0: 3814 + 16,15: + 0: 1638 + 17,14: + 0: 65528 + 17,15: + 0: 65535 + 17,13: + 0: 61166 + 17,16: + 0: 65532 + 18,13: + 0: 48059 + 18,14: + 0: 32752 + 18,15: + 0: 30583 + 18,16: + 0: 65521 + 19,13: + 0: 32631 + 19,14: + 0: 65523 + 19,15: + 0: 65535 + 20,12: + 0: 28791 + 20,13: + 0: 30471 + 20,14: + 0: 6000 + 20,15: + 0: 60941 + 8,14: + 0: 45056 + 7,14: + 1: 2048 + 9,14: + 0: 30848 + 10,14: + 0: 439 + 10,13: + 0: 32767 + 21,5: + 0: 47372 + 21,6: + 0: 65339 + 21,7: + 0: 65535 + 21,4: + 0: 61152 + 21,8: + 0: 36079 + 21,3: + 2: 25600 + 22,4: + 0: 65521 + 22,5: + 0: 45847 + 22,6: + 0: 65435 + 22,7: + 0: 65535 + 22,3: + 0: 4352 + 2: 50176 + 1: 8 + 22,8: + 0: 65535 + 23,5: + 0: 65506 + 23,6: + 0: 4407 + 23,7: + 0: 4401 + 23,8: + 0: 4369 + 23,4: + 1: 192 + 24,4: + 1: 273 + 0: 51328 + 24,5: + 0: 8287 + 14,16: + 0: 65520 + 15,16: + 0: 65520 + 16,16: + 0: 61408 + 16,17: + 0: 206 + 1: 256 + 17,17: + 0: 255 + 18,17: + 0: 255 + 19,16: + 0: 49072 + 19,17: + 0: 19 + 1: 1024 + 20,16: + 0: 65524 + 21,16: + 0: 14334 + 21,15: + 0: 58593 + 22,16: + 0: 1 + 22,15: + 0: 4336 + 21,12: + 0: 64411 + 21,13: + 0: 48043 + 21,14: + 0: 48011 + 21,11: + 0: 48057 + 22,12: + 0: 30719 + 22,13: + 0: 30711 + 22,14: + 0: 65527 + 22,11: + 0: 63351 + 23,12: + 0: 60671 + 23,13: + 0: 61439 + 23,14: + 0: 65532 + 23,15: + 0: 51440 + 23,11: + 0: 61440 + 24,12: + 0: 13311 + 24,13: + 0: 16383 + 24,14: + 0: 65523 + 24,15: + 0: 880 + 21,9: + 0: 65288 + 21,10: + 0: 48031 + 22,9: + 0: 14799 + 22,10: + 0: 30583 + 23,9: + 0: 13105 + 23,10: + 0: 3831 + 24,10: + 0: 63248 + 24,11: + 0: 61448 + 25,12: + 0: 255 + 1: 61440 + 25,13: + 0: 16 + 1: 61986 + 25,14: + 0: 65520 + 25,11: + 0: 63619 + 25,15: + 0: 36044 + 25,16: + 0: 2186 + 26,12: + 0: 127 + 1: 61440 + 26,13: + 1: 63624 + 26,14: + 0: 65520 + 26,15: + 0: 45044 + 26,11: + 0: 65530 + 26,16: + 0: 546 + 1: 2048 + 27,12: + 0: 255 + 1: 61440 + 27,13: + 1: 61440 + 27,14: + 0: 65520 + 27,15: + 0: 49140 + 27,11: + 0: 65527 + 28,12: + 0: 239 + 1: 61440 + 28,13: + 1: 61986 + 28,14: + 0: 65520 + 28,15: + 0: 10102 + 27,16: + 0: 2184 + 1: 784 + 25,10: + 0: 4096 + 26,10: + 0: 41506 + 27,10: + 0: 28672 + 28,10: + 0: 4369 + 28,11: + 0: 63345 + 29,11: + 0: 4096 + 29,12: + 0: 31 + 1: 13312 + 28,16: + 0: 546 + 29,13: + 1: 12288 + 29,14: + 0: 7952 + 1: 4 + 20,3: + 0: 1024 + 20,2: + 0: 2048 + 21,2: + 0: 4096 + 1: 224 + 22,2: + 1: 4592 + 23,2: + 1: 50736 + 23,3: + 1: 8 + 24,3: + 1: 4369 + 15,0: + 1: 16384 + 15,2: + 1: 17476 + 0,16: + 0: 48056 + 0,15: + 0: 15291 + -1,16: + 0: 48115 + 0,17: + 0: 62139 + -1,17: + 0: 61627 + 0,18: + 0: 39864 + 0,19: + 0: 52701 + -1,18: + 0: 63344 + -1,19: + 0: 4095 + 0,20: + 0: 19933 + 1,16: + 0: 65535 + 1,17: + 0: 65279 + 1,18: + 0: 65248 + 1,19: + 0: 24814 + 1,20: + 0: 24679 + 2,16: + 0: 13072 + 2,17: + 0: 13107 + 2,18: + 0: 40400 + 2,19: + 0: 51217 + 2,20: + 0: 19711 + 3,18: + 0: 4352 + 3,19: + 0: 275 + -4,16: + 0: 65399 + -4,15: + 0: 63232 + 1: 7 + -5,16: + 0: 65516 + -4,17: + 0: 30591 + -5,17: + 0: 61439 + -4,18: + 0: 65521 + -5,18: + 0: 65528 + -4,19: + 0: 56785 + -5,19: + 0: 65535 + -4,20: + 0: 57308 + -3,16: + 0: 65520 + -3,17: + 0: 65279 + -3,18: + 0: 65535 + -3,19: + 0: 30576 + -3,15: + 3: 65520 + -3,20: + 0: 32631 + -2,16: + 0: 65534 + -2,17: + 0: 61951 + -2,18: + 0: 30583 + -2,19: + 0: 30711 + -2,20: + 0: 10231 + -2,15: + 0: 61166 + -1,15: + 0: 65535 + -1,20: + 0: 4095 + 0,21: + 0: 17749 + -1,21: + 0: 4095 + 0,22: + 0: 15 + -1,22: + 0: 15 + 1,21: + 0: 4215 + 1: 16384 + 1,22: + 0: 3 + 1: 92 + 2,21: + 0: 4 + -8,16: + 0: 65529 + -8,15: + 0: 65473 + -9,16: + 0: 28256 + -8,17: + 0: 65535 + -9,17: + 0: 25588 + -8,18: + 0: 28912 + -9,18: + 0: 53716 + -8,19: + 0: 30583 + -9,19: + 0: 57343 + -7,16: + 0: 65535 + -7,17: + 0: 65535 + -7,18: + 0: 48048 + -7,19: + 0: 48047 + -7,15: + 0: 65520 + -7,20: + 0: 48059 + -6,16: + 0: 65528 + -6,17: + 0: 65535 + -6,18: + 0: 65527 + -6,19: + 0: 48127 + -6,15: + 0: 65492 + -6,20: + 0: 49075 + -5,15: + 0: 65297 + 1: 12 + -5,20: + 0: 65528 + -4,21: + 0: 57101 + -5,21: + 0: 56719 + -4,22: + 0: 116 + 1: 4096 + -5,22: + 0: 30704 + -4,23: + 1: 4096 + -3,21: + 0: 30471 + -3,22: + 0: 15 + -2,21: + 0: 12287 + -2,22: + 0: 15 + -8,20: + 0: 28912 + -9,20: + 0: 53745 + -8,21: + 0: 30583 + -9,21: + 0: 57343 + -8,22: + 0: 65520 + -9,22: + 0: 65521 + -8,23: + 0: 240 + -9,23: + 0: 5104 + -8,24: + 0: 52697 + -7,21: + 0: 48057 + -7,22: + 0: 65529 + -7,23: + 0: 3568 + -7,24: + 0: 65527 + -6,21: + 0: 47931 + -6,22: + 0: 65523 + -6,23: + 0: 59184 + -5,23: + 0: 30711 + -5,24: + 0: 65527 + -4,24: + 0: 61680 + -4,25: + 0: 9280 + -9,24: + 0: 15352 + -8,25: + 0: 65534 + -9,25: + 0: 51251 + -8,26: + 0: 255 + -9,26: + 0: 37087 + -7,25: + 0: 14335 + -7,26: + 0: 9 + -6,25: + 0: 5702 + 1: 16384 + -6,26: + 1: 7 + -6,24: + 0: 26112 + -5,25: + 0: 30583 + -5,26: + 0: 546 + -3,14: + 0: 64640 + -2,14: + 0: 57584 + -1,14: + 0: 12400 + 0,14: + 0: 256 + -8,14: + 0: 4352 + -9,14: + 0: 56784 + -9,15: + 0: 57229 + -6,14: + 0: 16384 + -5,14: + 0: 4096 + -12,14: + 0: 30591 + -13,13: + 0: 63328 + -13,14: + 0: 8879 + -12,15: + 0: 48112 + -13,15: + 0: 26342 + -12,16: + 0: 65291 + -12,12: + 0: 44160 + -12,13: + 0: 51200 + -11,12: + 0: 30718 + -11,13: + 0: 39219 + -11,14: + 0: 65504 + -11,15: + 0: 65294 + -11,11: + 0: 32768 + -10,12: + 0: 3 + -10,13: + 0: 65526 + -10,14: + 0: 65520 + -10,15: + 0: 48911 + -10,11: + 0: 65152 + -10,16: + 0: 48056 + -9,12: + 0: 25668 + -9,13: + 0: 546 + -12,17: + 0: 14127 + -12,18: + 0: 56537 + -13,18: + 0: 61682 + -12,19: + 0: 57343 + -13,19: + 0: 65535 + -12,20: + 0: 56572 + -11,17: + 0: 64750 + -11,18: + 0: 65535 + -11,19: + 0: 56659 + -11,16: + 0: 61152 + -11,20: + 0: 55801 + -10,17: + 0: 29115 + -10,18: + 0: 65535 + -10,19: + 0: 56798 + -10,20: + 0: 56572 + -16,14: + 0: 15872 + -16,15: + 0: 61160 + -17,15: + 0: 41089 + -16,16: + 0: 61166 + -15,14: + 0: 36656 + -15,15: + 0: 65523 + -15,16: + 0: 65535 + -14,14: + 0: 65535 + -14,15: + 0: 61408 + -14,13: + 0: 60416 + -14,16: + 0: 28206 + -13,16: + 0: 30566 + -13,20: + 0: 61680 + -12,21: + 0: 57343 + -13,21: + 0: 65535 + -12,22: + 0: 65532 + -13,22: + 0: 65520 + -12,23: + 0: 30576 + -13,23: + 0: 35504 + -12,24: + 0: 65287 + -11,21: + 0: 62429 + -11,22: + 0: 65535 + -11,23: + 0: 56719 + -10,21: + 0: 65245 + -10,22: + 0: 65535 + -10,23: + 0: 56583 + -11,24: + 0: 65256 + -17,16: + 0: 61408 + -16,17: + 0: 61166 + -17,17: + 0: 58606 + -16,18: + 0: 65528 + -17,18: + 0: 65534 + -16,19: + 0: 65520 + -17,19: + 0: 61152 + -16,20: + 0: 65533 + -15,17: + 0: 65535 + -15,18: + 0: 65523 + -15,19: + 0: 61166 + -15,20: + 0: 65534 + -14,17: + 0: 26230 + -14,18: + 0: 30432 + -14,19: + 0: 21606 + -14,20: + 0: 25813 + -13,17: + 0: 30577 + -17,20: + 0: 61422 + -16,21: + 0: 65533 + -17,21: + 0: 65262 + -16,22: + 0: 65520 + -17,22: + 0: 65216 + -16,23: + 0: 32624 + -17,23: + 0: 65535 + -16,24: + 0: 40883 + -15,22: + 0: 65534 + -15,23: + 0: 30576 + -15,21: + 0: 61166 + -14,22: + 0: 65524 + -14,23: + 0: 480 + -14,21: + 0: 26214 + -13,24: + 0: 34824 + -20,15: + 0: 28928 + -20,16: + 0: 32910 + -20,17: + 0: 65286 + -21,17: + 0: 55296 + -21,18: + 0: 56541 + -20,18: + 0: 61152 + -21,19: + 0: 56829 + -20,19: + 0: 61408 + -20,20: + 0: 61166 + -19,16: + 0: 52465 + -19,17: + 0: 65356 + -19,18: + 0: 65520 + -19,19: + 0: 65520 + -19,20: + 0: 65535 + -19,15: + 0: 32768 + -18,17: + 0: 65294 + -18,18: + 0: 61412 + -18,19: + 0: 65524 + -18,15: + 0: 5760 + -18,16: + 0: 61152 + -21,20: + 0: 64440 + -20,21: + 0: 3822 + -21,21: + 0: 48043 + -20,22: + 0: 57583 + -21,22: + 0: 48127 + -20,23: + 0: 61166 + -21,23: + 0: 63944 + -20,24: + 0: 65486 + -19,21: + 0: 4095 + -19,22: + 0: 28799 + -19,23: + 0: 65399 + -19,24: + 0: 56591 + -18,22: + 0: 63271 + -18,23: + 0: 62215 + -18,20: + 0: 61152 + -18,21: + 0: 58592 + -18,24: + 0: 63883 + -17,24: + 0: 65399 + -24,18: + 0: 3315 + -25,17: + 0: 62208 + 1: 2 + -25,18: + 0: 12 + -24,17: + 1: 36040 + -24,16: + 1: 32768 + -23,16: + 1: 4918 + -23,17: + 1: 1 + -23,18: + 0: 62208 + -23,19: + 1: 4368 + 0: 34952 + -23,20: + 1: 21841 + -23,15: + 1: 27840 + -22,18: + 0: 63692 + 1: 17 + -22,19: + 0: 30719 + -22,17: + 0: 49152 + 1: 204 + -22,16: + 1: 34816 + -21,16: + 1: 4403 + -21,15: + 0: 36465 + -24,22: + 0: 49040 + -25,22: + 0: 65504 + 1: 4 + -24,23: + 0: 61065 + -25,23: + 0: 46 + -24,24: + 0: 57343 + -24,21: + 1: 3072 + -23,21: + 1: 4885 + 0: 43008 + -23,22: + 0: 35771 + -23,23: + 0: 63264 + -23,24: + 0: 65407 + -22,20: + 0: 65520 + -22,21: + 0: 65519 + -22,22: + 0: 65535 + -22,23: + 0: 65280 + -22,24: + 0: 5135 + 3: 51200 + -21,24: + 0: 60685 + 3: 4096 + -12,25: + 0: 37375 + -13,25: + 0: 32908 + -12,26: + 0: 51421 + -13,26: + 0: 32904 + -12,27: + 0: 141 + -11,25: + 0: 64750 + -11,26: + 0: 65535 + -11,27: + 0: 3327 + -10,24: + 0: 64432 + -10,25: + 0: 61883 + -10,26: + 0: 65535 + -10,27: + 0: 511 + -9,27: + 0: 5 + -16,25: + 0: 57297 + -17,25: + 0: 52991 + -16,26: + 0: 40881 + -17,26: + 0: 40924 + -16,27: + 0: 62449 + -17,27: + 0: 65528 + -16,28: + 0: 1011 + -15,24: + 0: 13104 + -15,25: + 0: 4368 + -15,26: + 0: 13104 + -15,28: + 0: 17476 + -20,25: + 0: 64719 + -21,25: + 0: 49165 + -20,26: + 0: 65535 + -21,26: + 0: 36044 + -19,25: + 0: 61453 + -19,26: + 0: 32767 + -19,27: + 0: 52992 + -19,28: + 0: 62223 + -18,25: + 0: 13 + -18,27: + 0: 65248 + -18,26: + 0: 52416 + -18,28: + 0: 64526 + -17,28: + 0: 14799 + -25,24: + 0: 64896 + -25,25: + 0: 13 + -24,26: + 0: 2 + -24,25: + 0: 32780 + -23,25: + 0: 141 + -22,25: + 0: 21 + 3: 8 + -22,26: + 0: 2241 + -21,27: + 0: 16 + -21,28: + 0: 140 + -16,29: + 0: 61297 + -17,29: + 0: 65535 + -16,30: + 0: 36046 + -17,30: + 0: 65535 + -16,31: + 0: 12041 + -17,31: + 0: 61199 + -16,32: + 0: 65534 + -15,29: + 0: 13092 + -15,30: + 0: 13107 + -15,31: + 0: 1811 + 1: 12 + -15,32: + 0: 32631 + -14,31: + 1: 34320 + -14,32: + 0: 13107 + 1: 34952 + -20,12: + 0: 31 + -20,11: + 0: 16383 + -21,12: + 0: 35036 + -21,13: + 0: 8 + -19,12: + 0: 7 + -17,14: + 0: 8192 + -24,12: + 0: 48015 + -24,11: + 0: 65532 + -24,13: + 0: 61945 + -25,13: + 0: 36593 + -24,14: + 0: 142 + 1: 13056 + -25,14: + 1: 192 + 0: 48 + -24,15: + 1: 17 + -25,15: + 1: 52360 + -23,12: + 0: 24001 + -23,13: + 0: 21521 + -23,14: + 0: 36465 + -23,11: + 0: 56796 + -22,12: + 0: 112 + -22,14: + 0: 28928 + -22,11: + 0: 65520 + -22,15: + 0: 142 + -21,11: + 0: 65528 + -28,16: + 0: 1662 + -29,16: + 0: 61680 + -28,15: + 0: 61135 + -27,16: + 0: 62237 + -27,15: + 0: 61697 + -27,17: + 0: 12 + 1: 32768 + -26,16: + 0: 3 + -26,17: + 0: 3315 + -27,18: + 1: 34952 + -27,19: + 1: 8 + -26,15: + 0: 14062 + -25,16: + 1: 13158 + -9,11: + 0: 35123 + -9,10: + 0: 27776 + -8,10: + 0: 8755 + -8,11: + 0: 17 + -36,4: + 0: 51440 + 1: 1792 + -36,3: + 0: 4096 + -37,4: + 0: 228 + 1: 34816 + -36,5: + 1: 36744 + -37,5: + 1: 36744 + 0: 4096 + -36,6: + 0: 8224 + 1: 35976 + -37,6: + 0: 2080 + 1: 776 + -36,7: + 0: 51201 + 1: 1928 + -37,7: + 1: 36480 + -36,8: + 0: 12 + -35,4: + 0: 65520 + -35,5: + 0: 61183 + 1: 256 + -35,6: + 1: 256 + 0: 61166 + -35,7: + 0: 65535 + -35,8: + 0: 52991 + -34,4: + 0: 61696 + -34,5: + 0: 23839 + -34,6: + 0: 21845 + -34,7: + 0: 7509 + -34,8: + 0: 511 + -33,4: + 0: 28872 + -33,5: + 0: 52687 + -33,6: + 0: 65535 + -33,7: + 0: 52687 + -33,8: + 0: 127 + -33,3: + 0: 52479 + -32,4: + 0: 61439 + -32,6: + 0: 65533 + -32,7: + 0: 36045 + -24,8: + 0: 65392 + -24,9: + 0: 58111 + -25,8: + 0: 63232 + -25,9: + 0: 63351 + -24,10: + 0: 61438 + -25,10: + 0: 65535 + -25,11: + 0: 65399 + -23,8: + 0: 61696 + -23,9: + 0: 64733 + -23,10: + 0: 65535 + -23,7: + 0: 61439 + -22,8: + 0: 62114 + -22,9: + 0: 57599 + -22,10: + 0: 61439 + -22,7: + 0: 9079 + -21,8: + 0: 64720 + -21,9: + 0: 47359 + -21,10: + 0: 48059 + -20,8: + 0: 16144 + -20,9: + 0: 16383 + -20,10: + 0: 16191 + -25,4: + 1: 3276 + 0: 49152 + 2: 273 + -24,5: + 0: 65535 + -25,5: + 0: 65535 + -24,6: + 0: 65535 + -25,6: + 0: 65535 + -24,7: + 0: 4095 + -25,7: + 0: 239 + -23,4: + 1: 65328 + -23,5: + 0: 32625 + 1: 142 + -23,6: + 0: 65527 + -22,4: + 1: 12288 + -22,5: + 1: 3839 + -22,6: + 0: 12544 + -21,6: + 1: 54 + -20,28: + 0: 53104 + -20,29: + 0: 8 + -19,29: + 0: 207 + -18,29: + 0: 61439 + -18,30: + 0: 2188 + -18,31: + 1: 17536 + -23,31: + 0: 34816 + -23,32: + 0: 8 + -22,31: + 0: 4096 + -22,32: + 0: 10611 + -28,24: + 0: 65295 + -28,23: + 0: 65535 + -29,24: + 0: 64298 + -28,25: + 0: 271 + -29,25: + 0: 47883 + -27,24: + 0: 65343 + -27,25: + 0: 43567 + -27,23: + 0: 65535 + -27,26: + 0: 2 + -26,24: + 0: 65287 + -26,25: + 0: 65311 + -26,23: + 0: 30583 + -26,26: + 0: 96 + -25,26: + 0: 128 + -28,21: + 1: 63761 + -28,22: + 1: 249 + 0: 61440 + -29,21: + 1: 49152 + -29,22: + 1: 192 + 0: 12288 + -29,23: + 0: 48059 + -27,21: + 1: 62528 + -27,22: + 1: 244 + 0: 61440 + -26,21: + 1: 29218 + -26,22: + 1: 2290 + 0: 12288 + -26,20: + 1: 8192 + -25,21: + 1: 17408 + -8,9: + 0: 8192 + -28,11: + 0: 65518 + -28,12: + 0: 65262 + -29,12: + 0: 14335 + -28,13: + 0: 65535 + -29,13: + 0: 48057 + -28,14: + 0: 65535 + -29,14: + 0: 65419 + -29,15: + 0: 65535 + -27,12: + 0: 56797 + -27,13: + 0: 65393 + -27,14: + 0: 65535 + -27,11: + 0: 65497 + -26,12: + 0: 65535 + -26,14: + 0: 50645 + -26,11: + 0: 65521 + -26,13: + 0: 50368 + -25,12: + 0: 30583 + -24,35: + 0: 49400 + -24,36: + 0: 45279 + -23,35: + 0: 61459 + -23,36: + 0: 4351 + 1: 49152 + -22,35: + 0: 61166 + -22,36: + 0: 28911 + -22,33: + 0: 35938 + -22,34: + 0: 3072 + -21,32: + 0: 12288 + -21,33: + 0: 6342 + -21,34: + 0: 4081 + -21,35: + 0: 15291 + -21,36: + 0: 61691 + -20,33: + 0: 64256 + -20,34: + 0: 53247 + -20,35: + 0: 24021 + -20,36: + 0: 56575 + -19,33: + 0: 65472 + -19,34: + 0: 16383 + -19,36: + 2: 1542 + -18,33: + 0: 63347 + -18,34: + 0: 65535 + -18,35: + 0: 142 + -18,36: + 0: 61439 + -18,32: + 1: 2 + 0: 34944 + -17,32: + 0: 65520 + -17,33: + 0: 4064 + -17,34: + 0: 65535 + -17,35: + 0: 26495 + 1: 34944 + -16,33: + 0: 3886 + -16,34: + 0: 279 + 1: 128 + -17,36: + 1: 51336 + 0: 4368 + -20,37: + 0: 53709 + -21,37: + 0: 65295 + -20,38: + 0: 56781 + -21,38: + 0: 56719 + -20,39: + 0: 65528 + -21,39: + 0: 64969 + -20,40: + 0: 64435 + -19,37: + 0: 55535 + -19,38: + 0: 56797 + -19,39: + 0: 65532 + -19,40: + 0: 56796 + -18,37: + 0: 61679 + -18,38: + 0: 65535 + -18,39: + 0: 65535 + -18,40: + 0: 65535 + -17,37: + 0: 61457 + 1: 200 + -17,38: + 0: 57599 + -17,39: + 0: 61439 + -16,37: + 1: 112 + 0: 61440 + -16,38: + 0: 45311 + -16,39: + 0: 48059 + -25,36: + 0: 57599 + -24,37: + 0: 65339 + -25,37: + 0: 61167 + -24,38: + 0: 60943 + -25,38: + 0: 17646 + -24,39: + 0: 26126 + -25,39: + 0: 65092 + -24,40: + 0: 43558 + -23,37: + 0: 65297 + 1: 12 + -23,38: + 0: 64271 + -23,39: + 0: 65419 + -23,40: + 0: 65311 + -22,37: + 0: 65351 + -22,38: + 0: 64271 + -22,39: + 0: 65339 + -22,40: + 0: 65295 + -21,40: + 0: 64397 + -15,37: + 0: 61712 + 1: 192 + -15,38: + 0: 53503 + -15,39: + 0: 56797 + -16,40: + 0: 36856 + -15,40: + 0: 21980 + -14,37: + 1: 240 + 0: 61440 + -14,38: + 0: 61183 + -14,39: + 0: 61166 + -14,40: + 0: 4174 + -13,37: + 1: 560 + -13,38: + 0: 7 + 1: 8704 + -13,39: + 0: 1792 + 1: 2 + -13,40: + 1: 802 + -17,40: + 0: 45024 + -16,41: + 0: 57275 + -17,41: + 0: 10986 + -16,42: + 0: 61695 + -17,42: + 0: 41710 + -16,43: + 0: 4095 + -17,43: + 0: 10923 + -16,44: + 0: 20478 + -15,41: + 0: 6557 + -15,42: + 0: 29425 + -15,43: + 0: 1911 + -15,44: + 0: 31 + 1: 32768 + -14,41: + 0: 12561 + -14,42: + 0: 15088 + -14,43: + 0: 15 + 1: 2048 + -14,44: + 0: 2279 + 1: 61440 + -13,42: + 0: 880 + 1: 2184 + -13,43: + 0: 15 + 1: 18176 + -13,44: + 1: 29764 + 0: 272 + -12,43: + 0: 4915 + 1: 128 + -20,41: + 0: 62399 + -21,41: + 0: 63679 + -20,42: + 0: 52991 + -21,42: + 0: 32767 + -20,43: + 0: 65534 + -21,43: + 0: 65535 + -20,44: + 0: 65523 + -19,41: + 0: 53469 + -19,42: + 0: 65501 + -19,43: + 0: 56607 + -19,44: + 0: 56796 + -18,41: + 0: 63487 + -18,42: + 0: 65535 + -18,43: + 0: 65343 + -18,44: + 0: 65535 + -17,44: + 0: 10786 + -28,36: + 0: 45260 + -28,37: + 0: 191 + -29,37: + 0: 8 + 1: 13175 + -28,35: + 0: 52430 + -27,36: + 0: 61441 + -27,37: + 0: 57599 + -27,35: + 0: 4232 + -26,36: + 0: 56552 + -26,37: + 0: 4319 + -26,38: + 0: 2115 + -26,39: + 0: 49152 + -25,40: + 0: 20222 + -24,41: + 0: 61611 + -24,42: + 0: 36863 + -25,41: + 0: 58436 + 1: 17 + -25,42: + 0: 3310 + -24,43: + 1: 1 + 0: 64972 + -25,43: + 1: 4414 + 0: 52224 + -24,44: + 0: 61281 + -23,41: + 0: 63743 + -23,42: + 0: 61439 + -23,43: + 0: 61166 + -22,41: + 0: 29183 + -22,42: + 0: 65399 + -22,43: + 0: 30591 + -23,44: + 0: 61160 + -22,44: + 0: 30577 + -21,44: + 0: 65528 + -20,45: + 0: 65535 + -21,45: + 0: 65535 + -20,46: + 0: 2047 + -21,46: + 0: 3310 + 1: 4096 + -20,47: + 1: 61727 + -21,47: + 1: 61454 + -19,45: + 0: 7645 + -19,46: + 1: 7712 + -19,47: + 1: 61440 + -18,45: + 0: 895 + -18,46: + 1: 3857 + -17,45: + 0: 53230 + -17,46: + 1: 3840 + -16,45: + 0: 13073 + -25,44: + 0: 2060 + 1: 1585 + -24,46: + 1: 57344 + -24,45: + 0: 8 + -23,46: + 1: 63628 + -23,45: + 0: 2254 + -22,45: + 0: 1911 + -22,46: + 1: 14471 + -22,47: + 1: 57344 + -26,43: + 1: 57856 + -26,44: + 1: 8738 + -26,40: + 0: 192 + 1: 32768 + -26,41: + 1: 8 + -26,45: + 1: 546 + -28,32: + 1: 13241 + -28,31: + 1: 40134 + -29,32: + 1: 8 + -28,33: + 0: 4096 + 1: 3174 + -29,33: + 0: 35008 + -28,34: + 0: 26211 + -27,32: + 1: 13073 + -27,31: + 1: 4096 + -27,33: + 1: 36038 + -26,33: + 1: 4096 + -26,35: + 0: 272 + -26,34: + 0: 2112 + -25,34: + 0: 8448 + -25,35: + 0: 4 + -32,35: + 1: 47791 + -33,35: + 1: 39327 + -32,36: + 1: 64443 + -31,35: + 1: 47791 + -31,36: + 1: 64443 + -30,35: + 1: 47791 + -30,36: + 1: 64443 + -29,35: + 1: 12847 + -29,36: + 1: 29491 + -29,31: + 1: 36038 + -12,44: + 0: 255 + 1: 8192 + -12,45: + 1: 255 + -13,45: + 1: 61455 + -12,46: + 1: 255 + -13,46: + 1: 15 + -11,44: + 0: 255 + 1: 36864 + -11,45: + 1: 3833 + -11,46: + 1: 3825 + -10,44: + 0: 35071 + 1: 8192 + -10,45: + 1: 818 + 0: 1032 + -10,46: + 1: 16 + 0: 62208 + -11,47: + 0: 34944 + -10,47: + 0: 65535 + -11,48: + 0: 52428 + -10,43: + 0: 6007 + -10,48: + 0: 65535 + -9,44: + 0: 345 + 1: 4 + -9,45: + 0: 15 + -9,47: + 0: 57361 + -9,48: + 0: 13071 + -9,43: + 1: 17648 + 0: 34816 + -8,44: + 0: 14304 + -8,45: + 0: 13107 + -8,46: + 0: 8755 + -16,46: + 0: 3303 + -15,46: + 0: 46402 + -15,45: + 1: 36448 + -15,47: + 0: 12 + -14,45: + 1: 65280 + -14,47: + 0: 1 + -28,29: + 1: 4368 + -29,29: + 1: 47517 + -28,30: + 1: 25395 + -30,28: + 1: 52967 + -30,27: + 1: 16384 + 0: 3 + -30,29: + 1: 2184 + -29,28: + 1: 52326 + -29,30: + 1: 26163 + -29,27: + 1: 25600 + 0: 102 + -32,20: + 0: 3996 + -33,20: + 0: 65504 + -32,21: + 0: 28672 + -32,22: + 0: 53367 + -33,21: + 0: 49171 + -33,22: + 0: 35020 + 1: 12288 + -32,23: + 0: 56607 + -33,23: + 0: 34956 + 1: 8755 + -32,24: + 0: 56797 + -31,20: + 0: 61297 + -31,22: + 0: 28680 + -31,23: + 0: 30503 + -31,21: + 0: 52430 + -31,24: + 0: 30583 + -30,20: + 1: 20288 + 0: 4096 + -30,21: + 0: 29489 + 1: 1092 + -30,22: + 0: 61559 + -30,23: + 0: 65535 + -29,20: + 1: 768 + -33,24: + 0: 34952 + 1: 8738 + -32,25: + 0: 57117 + -33,25: + 0: 35976 + 1: 13106 + -33,26: + 0: 65528 + -32,26: + 0: 61152 + -32,27: + 0: 33006 + -33,27: + 0: 255 + -31,25: + 0: 65319 + -31,26: + 0: 65252 + -31,27: + 0: 31758 + -30,24: + 0: 65520 + -30,25: + 0: 64319 + -30,26: + 0: 29488 + -29,26: + 0: 26312 + -36,22: + 1: 7 + 0: 392 + -37,22: + 1: 4127 + -36,21: + 0: 34952 + -35,20: + 0: 16 + -35,19: + 1: 60616 + -34,21: + 0: 65260 + -34,22: + 0: 78 + 1: 49152 + -34,19: + 0: 17408 + 1: 137 + -34,20: + 0: 32768 + -34,23: + 1: 12 + -33,19: + 0: 32768 + 1: 17 + -36,26: + 0: 22514 + 1: 8192 + -37,26: + 0: 50864 + 1: 10496 + -37,27: + 0: 12 + -36,27: + 0: 2060 + 1: 192 + -35,26: + 0: 43953 + -35,27: + 0: 187 + 1: 256 + -34,26: + 0: 65520 + -34,27: + 0: 255 + -34,25: + 1: 52224 + -38,26: + 0: 172 + 1: 64 + -38,24: + 1: 2048 + -37,24: + 1: 4881 + -38,25: + 1: 128 + -37,25: + 1: 4401 + -37,23: + 1: 12563 + -32,12: + 0: 30583 + -32,11: + 0: 63351 + -33,12: + 0: 52428 + -32,13: + 0: 48049 + -33,13: + 0: 35200 + -32,14: + 0: 52371 + -33,14: + 0: 12569 + -32,15: + 0: 12 + -31,12: + 0: 5048 + -31,13: + 0: 65532 + -31,14: + 0: 65524 + -31,15: + 0: 57359 + -32,16: + 0: 34952 + 1: 12800 + -31,11: + 0: 47291 + -31,16: + 0: 3823 + -30,12: + 0: 61439 + -30,13: + 0: 61168 + -30,15: + 0: 28910 + -30,11: + 0: 65535 + -30,14: + 0: 60942 + -30,16: + 0: 2039 + -29,11: + 0: 65535 + -32,17: + 1: 3871 + -33,17: + 1: 27785 + -31,17: + 1: 20295 + 0: 8 + -31,18: + 1: 17484 + -30,17: + 0: 1791 + 1: 16384 + -30,18: + 1: 79 + -29,17: + 0: 23 + 1: 17472 + -29,18: + 1: 1103 + -35,12: + 0: 52942 + -35,13: + 0: 36078 + -35,11: + 0: 52968 + -34,12: + 0: 65535 + -34,13: + 0: 65535 + -34,11: + 0: 65535 + -34,14: + 0: 36079 + -33,15: + 0: 8739 + -33,16: + 0: 3 + 1: 4976 + -33,11: + 0: 52428 + -35,18: + 1: 34816 + -34,18: + 1: 37174 + -34,17: + 1: 26312 + -34,16: + 1: 32768 + -33,18: + 1: 13158 + -8,43: + 0: 32766 + 1: 1 + -8,47: + 0: 28258 + -8,48: + 0: 26215 + -7,44: + 0: 248 + -7,45: + 0: 65534 + -7,46: + 0: 61439 + -7,47: + 0: 47934 + -7,48: + 0: 10939 + -7,43: + 0: 34945 + -6,44: + 0: 34961 + -6,45: + 0: 65467 + -6,46: + 0: 65535 + -6,47: + 0: 62367 + -6,43: + 0: 8176 + -6,48: + 0: 4095 + -5,44: + 0: 30576 + -5,45: + 0: 65286 + -5,46: + 0: 46079 + -5,47: + 0: 45243 + -5,48: + 0: 12287 + -5,43: + 0: 33780 + -4,44: + 0: 65535 + -4,45: + 0: 65535 + -4,46: + 0: 63675 + -4,47: + 0: 62975 + -8,49: + 0: 65350 + -9,49: + 0: 51201 + -8,50: + 0: 53247 + -9,50: + 0: 3276 + -8,51: + 0: 3581 + -9,51: + 0: 3276 + -8,52: + 0: 17662 + 1: 4096 + -7,50: + 0: 61182 + -7,51: + 0: 36592 + -7,49: + 0: 60942 + -7,52: + 0: 4607 + 1: 49152 + -6,49: + 0: 62791 + -6,50: + 0: 7645 + -6,51: + 0: 7644 + -6,52: + 0: 247 + 1: 28672 + -5,49: + 0: 61695 + -5,50: + 0: 49663 + -5,51: + 0: 52733 + -4,48: + 0: 8191 + -4,49: + 0: 47359 + -4,50: + 0: 14591 + -4,51: + 0: 46079 + -11,49: + 0: 34952 + -10,49: + 0: 1919 + -10,51: + 0: 35906 + -8,42: + 1: 57344 + -7,42: + 1: 61986 + -7,41: + 0: 3584 + -6,41: + 0: 61422 + -6,40: + 1: 768 + 0: 34952 + -6,42: + 0: 59616 + -5,41: + 0: 30719 + -5,42: + 0: 30310 + -5,40: + 0: 8738 + 1: 2048 + -4,40: + 1: 3840 + -4,41: + 0: 61695 + -4,42: + 0: 65535 + -4,43: + 0: 61440 + -3,40: + 1: 3840 + -3,41: + 0: 56575 + -3,42: + 0: 57343 + -3,43: + 0: 65512 + -3,44: + 0: 65535 + -2,40: + 1: 50944 + -2,41: + 0: 57297 + -2,42: + 0: 57297 + -2,43: + 0: 53532 + -2,44: + 0: 56785 + -1,40: + 1: 12288 + 0: 34944 + -1,41: + 0: 65528 + -1,42: + 0: 30577 + -1,43: + 0: 23559 + -1,44: + 0: 56788 + 0,41: + 0: 65522 + 0,42: + 0: 46068 + 0,43: + 0: 3883 + -11,43: + 1: 48 + 0: 2184 + 0,40: + 0: 8736 + 1: 32768 + 1,40: + 1: 12288 + 1,41: + 0: 3840 + 1: 6 + 1,42: + 0: 61440 + 1,43: + 0: 65327 + 1,44: + 0: 50415 + 2,42: + 0: 61440 + 2,43: + 0: 60943 + 2,44: + 0: 4334 + 2: 3072 + 3,42: + 0: 61440 + 3,43: + 0: 65311 + 3,44: + 0: 255 + 1: 256 + 2: 1536 + 4,42: + 0: 28896 + 4,43: + 0: 26223 + 0,44: + 0: 29456 + 0,45: + 0: 56607 + -1,45: + 0: 64735 + 0,46: + 0: 24029 + -1,46: + 0: 65535 + 0,47: + 0: 63359 + -1,47: + 0: 65535 + 0,48: + 0: 1919 + 1,45: + 0: 13056 + 1,46: + 0: 819 + 1,47: + 0: 63239 + 1,48: + 0: 127 + 2,45: + 0: 61695 + 2,46: + 0: 64255 + 2,47: + 0: 65535 + 2,48: + 0: 65535 + 3,45: + 0: 53503 + 3,46: + 0: 64733 + 3,47: + 0: 62463 + 3,48: + 0: 30527 + 4,45: + 0: 36471 + 4,46: + 0: 16243 + 4,47: + 0: 63675 + 4,44: + 0: 9838 + 4,48: + 0: 65535 + 5,44: + 0: 65535 + 5,45: + 0: 29151 + 5,46: + 0: 36071 + 5,47: + 0: 48059 + 5,43: + 0: 61559 + 5,48: + 0: 48059 + 6,46: + 0: 7616 + 6,47: + 0: 54545 + 6,44: + 0: 61166 + 6,45: + 0: 2 + 6,48: + 0: 4445 + 6,43: + 0: 49152 + 7,44: + 0: 30583 + 7,45: + 0: 35 + 7,46: + 0: 25395 + 7,43: + 0: 30564 + 7,47: + 0: 36046 + 8,47: + 0: 29456 + -1,48: + 0: 16383 + 0,49: + 0: 30583 + -1,49: + 0: 48059 + 0,50: + 0: 30519 + -1,50: + 0: 63803 + 0,51: + 0: 119 + -1,51: + 0: 13215 + 0,52: + 0: 32732 + 1,49: + 0: 29555 + 1,50: + 0: 33203 + 1,51: + 0: 25836 + 1,52: + 0: 33655 + 2,49: + 0: 52991 + 2,50: + 0: 65392 + 2,51: + 0: 16065 + 2,52: + 0: 62225 + 3,49: + 0: 65527 + 3,50: + 0: 65295 + 3,51: + 0: 51056 + 4,49: + 0: 16368 + 4,50: + 0: 16360 + 4,51: + 0: 63921 + 4,52: + 0: 16367 + 5,49: + 0: 61408 + 5,50: + 0: 3823 + 5,51: + 0: 61696 + 5,52: + 0: 4095 + 6,49: + 0: 37137 + 6,50: + 0: 273 + 6,51: + 0: 4096 + 6,52: + 0: 127 + 7,49: + 0: 65518 + 7,50: + 0: 26231 + 7,51: + 0: 30916 + 7,52: + 0: 1 + 7,48: + 0: 51200 + 8,48: + 0: 4919 + 8,49: + 0: 17 + -3,48: + 0: 36319 + -3,49: + 0: 56831 + -3,50: + 0: 65521 + -3,51: + 0: 65279 + -4,52: + 0: 28808 + -3,47: + 0: 56799 + -3,52: + 0: 4095 + -2,48: + 0: 6007 + -2,49: + 0: 30583 + -2,50: + 0: 65520 + -2,51: + 0: 29183 + -2,47: + 0: 30583 + -2,52: + 0: 33655 + -1,52: + 0: 57105 + 0,53: + 0: 30577 + -1,53: + 0: 56529 + 0,54: + 0: 47895 + -1,54: + 0: 47901 + 1,53: + 0: 65535 + 1,54: + 0: 65535 + 2,53: + 0: 65535 + 2,54: + 0: 14079 + 3,53: + 0: 4919 + 3,52: + 0: 51200 + -5,52: + 0: 53040 + -4,53: + 0: 32911 + -3,53: + 0: 61695 + -3,54: + 0: 35023 + -2,53: + 0: 61695 + -2,54: + 0: 65279 + -9,52: + 1: 32768 + -8,53: + 0: 4 + -7,53: + 0: 1 + -6,53: + 1: 8 + -5,53: + 1: 1 + -3,45: + 0: 65535 + -3,46: + 0: 7645 + -2,45: + 0: 61917 + -2,46: + 0: 4095 + 5,42: + 0: 28691 + -38,22: + 1: 526 + 0: 1024 + -38,23: + 1: 32776 + -35,9: + 0: 52960 + -35,10: + 0: 52942 + -34,9: + 0: 65280 + -34,10: + 0: 65535 + -33,9: + 0: 65420 + -33,10: + 0: 49167 + -32,9: + 0: 65535 + -32,10: + 0: 28687 + -32,8: + 0: 60616 + -31,8: + 0: 65535 + -31,9: + 0: 65535 + -31,10: + 0: 47655 + -31,7: + 0: 65535 + -30,8: + 0: 65535 + -30,9: + 0: 36313 + -30,10: + 0: 65534 + -30,7: + 0: 65535 + -29,8: + 0: 56605 + -29,9: + 0: 36124 + -29,10: + 0: 65395 + -29,7: + 0: 56607 + -28,8: + 0: 65327 + -28,9: + 0: 65327 + -28,10: + 0: 61167 + -28,7: + 0: 65295 + -27,8: + 0: 56781 + -27,9: + 0: 61901 + -27,10: + 0: 65535 + -27,7: + 0: 56719 + -26,8: + 0: 64307 + -26,9: + 0: 4287 + -26,10: + 0: 14195 + -26,7: + 0: 13073 + -28,4: + 2: 7 + 0: 65280 + -28,3: + 2: 28672 + 1: 241 + -29,4: + 2: 8 + 0: 34816 + 1: 4898 + -28,5: + 0: 65535 + -29,5: + 0: 52940 + 1: 4369 + -28,6: + 0: 56575 + -29,6: + 0: 49356 + 1: 17 + -27,4: + 2: 15 + 0: 65280 + -27,5: + 0: 65535 + -27,6: + 0: 65535 + -27,3: + 2: 61440 + 1: 240 + -26,5: + 0: 56797 + -26,6: + 0: 56799 + -26,4: + 2: 3822 + -26,3: + 2: 57344 + 1: 242 + -19,8: + 0: 1792 + -19,10: + 0: 1799 + -19,9: + 1: 2 + -19,11: + 1: 512 + -32,3: + 0: 65535 + -32,5: + 0: 52974 + -31,4: + 0: 33291 + -31,6: + 0: 65392 + -31,3: + 0: 65535 + -31,5: + 0: 61152 + -30,4: + 0: 1587 + 1: 49288 + -30,5: + 0: 4880 + 1: 52428 + -30,6: + 0: 63232 + 1: 8 + -30,3: + 0: 13105 + 1: 34944 + -29,3: + 1: 13024 + 2: 32768 + -38,5: + 1: 1672 + -38,6: + 1: 35976 + -38,4: + 1: 32768 + -37,3: + 0: 35938 + -38,1: + 0: 61184 + -38,2: + 0: 2244 + -37,1: + 0: 62208 + -37,2: + 0: 4364 + -36,1: + 0: 12288 + -36,2: + 0: 2287 + -35,2: + 0: 61439 + -35,3: + 0: 8 + -34,2: + 0: 65393 + 1: 14 + -34,3: + 0: 3311 + -34,1: + 1: 57344 + -33,1: + 1: 61440 + -33,2: + 1: 2207 + 0: 63232 + -32,1: + 1: 61440 + -32,2: + 1: 1103 + 0: 61440 + -31,1: + 1: 61440 + -31,2: + 1: 559 + 0: 12288 + -30,1: + 1: 61440 + -30,2: + 1: 4383 + -29,2: + 1: 61440 + -28,2: + 1: 61440 + -27,2: + 1: 28896 + -26,2: + 1: 8944 + 1,15: + 0: 272 + -33,36: + 1: 47513 + -32,37: + 1: 48127 + -33,37: + 1: 39359 + -32,38: + 1: 43707 + -33,38: + 1: 39321 + -32,39: + 1: 15 + -33,39: + 1: 31 + -31,37: + 1: 48127 + -31,38: + 1: 43707 + -31,39: + 1: 15 + -30,37: + 1: 48127 + -30,38: + 1: 43707 + -30,39: + 1: 15 + -29,38: + 1: 8755 + -29,39: + 1: 15 + 1,60: + 1: 15 + -3,60: + 1: 8 + -34,36: + 1: 32768 + -34,37: + 1: 136 + -34,39: + 1: 8 + -34,35: + 1: 8 + -33,34: + 1: 4096 + -15,33: + 0: 5895 + -15,34: + 0: 1 + 1: 60 + -14,33: + 0: 3 + 1: 5768 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking457717: !type:WeldJoint + bodyB: 37842 + bodyA: 2 + id: docking457717 + localAnchorB: -3,-1.5 + localAnchorA: -8.5,8 + referenceAngle: 1.5707964 + damping: 753.6405 + stiffness: 6764.662 + docking457716: !type:WeldJoint + bodyB: 37842 + bodyA: 2 + id: docking457716 + localAnchorB: -3,0.5 + localAnchorA: -10.5,8 + referenceAngle: 1.5707964 + damping: 753.6405 + stiffness: 6764.662 + docking168406: !type:WeldJoint + bodyB: 21114 + bodyA: 2 + id: docking168406 + localAnchorB: 6,1.5 + localAnchorA: -50,100.5 + damping: 433.78143 + stiffness: 3893.6135 + docking51973: !type:WeldJoint + bodyB: 30902 + bodyA: 2 + id: docking51973 + localAnchorB: 2.5,-4 + localAnchorA: -0.5,161 + referenceAngle: 3.1415927 + damping: 621.39355 + stiffness: 5577.616 + docking51974: !type:WeldJoint + bodyB: 30902 + bodyA: 2 + id: docking51974 + localAnchorB: 0.49999997,-4 + localAnchorA: 1.5,161 + referenceAngle: 3.1415927 + damping: 621.39355 + stiffness: 5577.616 + docking15994: !type:WeldJoint + bodyB: 13386 + bodyA: 2 + id: docking15994 + localAnchorB: 5,0.49999997 + localAnchorA: 42.5,68 + referenceAngle: 4.712389 + damping: 922.5239 + stiffness: 8280.555 + - type: BecomesStation + id: Gate + - type: FTLDestination + - type: NavMap + - uid: 13386 + components: + - type: MetaData + name: SEC "Patrule-2" + - type: Transform + rot: 4.71238898038469 rad + pos: 80.81577,-15.422404 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: HwAAAAAAHwAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAHwAAAAAAHwAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 0: -1,-1 + 1: 1,1 + 2: -2,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3: 0,-2 + 4: 3,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 5: -3,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 6: -2,3 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerNe + decals: + 7: 1,3 + 8: 3,1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerNw + decals: + 9: -4,1 + 10: 0,3 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerSe + decals: + 11: 1,-2 + 12: 2,-1 + 13: 3,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteCornerSw + decals: + 14: -2,-2 + 15: -3,-1 + 16: -4,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNe + decals: + 17: 1,1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNw + decals: + 18: 0,1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerSe + decals: + 19: 1,-1 + 20: 2,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerSw + decals: + 21: -2,-1 + 22: -3,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineE + decals: + 23: 1,2 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineN + decals: + 24: -1,1 + 25: -3,1 + 28: 2,1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineS + decals: + 26: -1,-2 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineW + decals: + 27: 0,2 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleN + decals: + 31: -2,5 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleS + decals: + 32: -2,3 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 33: -2,4 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 29: -2,1 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 30: 0,-2 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 34: -2,4 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 7 + 1,0: + 0: 273 + 0,-2: + 0: 30576 + 1,-1: + 0: 4096 + -2,-1: + 0: 32768 + -1,-2: + 0: 61152 + -2,0: + 0: 34952 + -2,1: + 0: 2184 + -1,1: + 0: 3838 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking15994: !type:WeldJoint + bodyB: 13386 + bodyA: 2 + id: docking15994 + localAnchorB: 5,0.49999997 + localAnchorA: 42.5,68 + referenceAngle: 4.712389 + damping: 922.8537 + stiffness: 8283.516 + - uid: 21114 + components: + - type: MetaData + name: CMD "Rainy day" + - type: Transform + pos: -17.420502,10.4385195 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eQAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAJgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 6: 3,4 + 7: 4,2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNw + decals: + 2: 1,2 + 3: 2,4 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 0: 4,0 + 4: 3,-1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSw + decals: + 1: 1,0 + 5: 2,-1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNe + decals: + 14: 3,2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNw + decals: + 15: 2,2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerSe + decals: + 12: 3,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerSw + decals: + 13: 2,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 9: 4,1 + 10: 3,3 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 8: 2,3 + 11: 1,1 + - node: + color: '#FFFFFFFF' + id: StandClearGreyscale + decals: + 16: 2.5143104,1.9497223 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 1,0: + 0: 13107 + 0,1: + 0: 239 + 1,1: + 0: 19 + 0,-1: + 0: 65504 + 1,-1: + 0: 13072 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking168406: !type:WeldJoint + bodyB: 21114 + bodyA: 2 + id: docking168406 + localAnchorB: 6,1.5 + localAnchorA: -50,100.5 + damping: 433.85437 + stiffness: 3894.268 + - uid: 30902 + components: + - type: MetaData + name: MED "First aid" + - type: Transform + rot: 3.141592653589793 rad + pos: 40.83828,68.43776 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: dQAAAAAALAAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAALAAAAAAAdQAAAAAAdQAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#3747FEFF' + id: BrickTileWhiteBox + decals: + 1: 4,-2 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSe + decals: + 22: 2,-3 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSw + decals: + 23: 0,-3 + - node: + color: '#3747FEFF' + id: BrickTileWhiteInnerSw + decals: + 0: 0,-2 + - node: + color: '#52B4E9FF' + id: MiniTileSteelCornerNe + decals: + 4: 2,4 + - node: + color: '#52B4E9FF' + id: MiniTileSteelCornerNw + decals: + 5: 0,4 + - node: + color: '#52B4E9FF' + id: MiniTileSteelCornerSe + decals: + 6: 2,3 + - node: + color: '#52B4E9FF' + id: MiniTileSteelCornerSw + decals: + 7: 0,3 + - node: + color: '#52B4E9FF' + id: MiniTileSteelLineN + decals: + 3: 1,4 + - node: + color: '#52B4E9FF' + id: MiniTileSteelLineS + decals: + 2: 1,3 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNe + decals: + 8: 3,1 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNw + decals: + 9: -1,1 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSe + decals: + 10: 3,-2 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSw + decals: + 11: -1,-2 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSe + decals: + 18: 2,-2 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSw + decals: + 19: 0,-2 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineE + decals: + 12: 3,-1 + 13: 3,0 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineN + decals: + 14: 2,1 + 15: 0,1 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineW + decals: + 16: -1,-1 + 17: -1,0 + - node: + color: '#52B4E9FF' + id: WarnLineGreyscaleN + decals: + 20: 1,1 + - node: + color: '#52B4E9FF' + id: WarnLineGreyscaleS + decals: + 21: 1,-3 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 127 + 1: 128 + 1,0: + 0: 275 + -1,0: + 0: 36046 + -1,1: + 0: 8 + 1: 128 + 0,-1: + 0: 65535 + 1,-1: + 0: 13105 + -1,-1: + 0: 61164 + 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: RadiationGridResistance + - type: Joint + joints: + docking51973: !type:WeldJoint + bodyB: 30902 + bodyA: 2 + id: docking51973 + localAnchorB: 2.5,-4 + localAnchorA: -0.5,161 + referenceAngle: 3.1415927 + damping: 621.5432 + stiffness: 5578.9595 + docking51974: !type:WeldJoint + bodyB: 30902 + bodyA: 2 + id: docking51974 + localAnchorB: 0.49999997,-4 + localAnchorA: 1.5,161 + referenceAngle: 3.1415927 + damping: 621.5432 + stiffness: 5578.9595 + - uid: 36996 + components: + - type: MetaData + name: ??? + - type: Transform + rot: 1.7453292519943295 rad + pos: -98.10943,8.592921 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: UAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAUAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAUAAAAAAALAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAUAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 18: 0,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 4: 0,1 + 5: 2,-1 + 6: -1,-4 + 7: 1,-3 + 8: -2,-1 + 10: 0,-2 + 15: 0,-4 + 16: -1,-2 + 17: 0,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 9: -1,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 14: 0,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 13: 0,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 11: 2,-2 + 12: 0,0 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineE + decals: + 0: 2,-2 + 1: 2,-1 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineW + decals: + 2: -2,-2 + 3: -2,-1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 819 + 1: 31948 + -1,0: + 0: 2184 + 1: 50791 + 1,0: + 1: 1 + -2,-1: + 1: 34816 + -1,-1: + 1: 65516 + -1,-2: + 1: 49152 + 0,-2: + 1: 28672 + 0,-1: + 1: 65527 + 1,-1: + 1: 13056 + 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: RadiationGridResistance + - uid: 37842 + components: + - type: MetaData + name: SUP "Based taxi" + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.874403,-77.32722 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: IgAAAAAAHgAAAAAAHgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNe + decals: + 6: 1,1 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNw + decals: + 5: -1,1 + - node: + color: '#A4610696' + id: MiniTileWhiteEndE + decals: + 1: 2,0 + - node: + color: '#A4610696' + id: MiniTileWhiteEndW + decals: + 0: -2,0 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerNe + decals: + 8: 1,0 + - node: + color: '#A4610696' + id: MiniTileWhiteInnerNw + decals: + 9: -1,0 + - node: + color: '#A4610696' + id: MiniTileWhiteLineN + decals: + 7: 0,1 + - node: + color: '#A4610696' + id: MiniTileWhiteLineS + decals: + 2: -1,0 + 3: 0,0 + 4: 1,0 + - node: + angle: 1.5707963267948966 rad + color: '#00000023' + id: line + decals: + 10: -1.9145966,-2.4307117 + 11: -0.9847641,-2.4057236 + 12: -0.03492737,-2.395729 + 13: 0.9348984,-2.370741 + 14: -1.9995804,-2.4906807 + 15: -1.0147552,-2.5206661 + 16: -0.06492615,-2.4856834 + 17: 0.954895,-2.4856834 + 18: -1.9545898,-2.5706406 + 19: -1.0397491,-2.5306606 + 20: -0.03492737,-2.5506516 + 21: 1.0348816,-2.560646 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 32735 + 1: 32 + -1,0: + 0: 52974 + -1,-1: + 0: 61166 + 0,-1: + 0: 65535 + -1,-2: + 0: 61166 + -1,-3: + 0: 49152 + 0,-3: + 0: 28672 + 0,-2: + 0: 65535 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking457716: !type:WeldJoint + bodyB: 37842 + bodyA: 2 + id: docking457716 + localAnchorB: -3,0.5 + localAnchorA: -10.5,8 + referenceAngle: 1.5707964 + damping: 753.86066 + stiffness: 6766.638 + docking457717: !type:WeldJoint + bodyB: 37842 + bodyA: 2 + id: docking457717 + localAnchorB: -3,-1.5 + localAnchorA: -8.5,8 + referenceAngle: 1.5707964 + damping: 753.86066 + stiffness: 6766.638 +- proto: AcousticGuitarInstrument + entities: + - uid: 14069 + components: + - type: Transform + pos: -67.53158,101.24338 + parent: 2 + - uid: 43179 + components: + - type: Transform + pos: 0.4563446,-2.5673122 + parent: 37842 +- proto: ActionToggleInternals + entities: + - uid: 1760 + components: + - type: Transform + parent: 28888 + - type: InstantAction + container: 28888 + - uid: 1780 + components: + - type: Transform + parent: 11597 + - type: InstantAction + container: 11597 +- proto: ActionToggleJetpack + entities: + - uid: 1739 + components: + - type: Transform + parent: 28888 + - type: InstantAction + container: 28888 + - uid: 1770 + components: + - type: Transform + parent: 11597 + - type: InstantAction + container: 11597 +- proto: AirAlarm + entities: + - uid: 942 + components: + - type: Transform + pos: 81.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 22402 + - 36588 + - 4458 + - 10998 + - 4454 + - 4456 + - uid: 4212 + components: + - type: Transform + pos: 72.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 21086 + - 4460 + - 21177 + - 4469 + - 4468 + - 6749 + - uid: 4465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 5135 + - 4225 + - 20345 + - 20347 + - 20348 + - 20349 + - 30093 + - 20056 + - 20076 + - 20174 + - 20055 + - 20098 + - 4466 + - 11991 + - uid: 4467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 22504 + - 36568 + - 22503 + - 4807 + - 4811 + - 4812 + - 6824 + - 6827 + - uid: 4816 + components: + - type: Transform + pos: 98.5,55.5 + parent: 2 + - type: DeviceList + devices: + - 5097 + - 19961 + - 19960 + - 6846 + - 6847 + - 6848 + - 6839 + - 6840 + - 6841 + - 6850 + - 6849 + - 6842 + - uid: 4822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 2240 + - 6551 + - 7145 + - 706 + - 3165 + - uid: 5099 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 23509 + - 23514 + - 6722 + - 6723 + - 6724 + - 12874 + - 36580 + - 36581 + - uid: 5103 + components: + - type: Transform + pos: 101.5,50.5 + parent: 2 + - type: DeviceList + devices: + - 5319 + - 36579 + - 19945 + - 5096 + - 5095 + - 5094 + - 6848 + - 6849 + - 6847 + - 6846 + - uid: 5105 + components: + - type: Transform + pos: 101.5,60.5 + parent: 2 + - type: DeviceList + devices: + - 5104 + - 20204 + - 20206 + - 20203 + - 5102 + - 5101 + - 5100 + - 6842 + - 6840 + - 6841 + - 6839 + - uid: 5336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 42968 + - 42890 + - 42891 + - 6877 + - 42971 + - uid: 5483 + components: + - type: Transform + pos: 80.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 22515 + - 36599 + - 22527 + - 4815 + - 6827 + - 4817 + - uid: 6821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 26482 + - 33233 + - 19243 + - 19516 + - 33270 + - 33271 + - 36545 + - 17934 + - 19801 + - 33317 + - uid: 8594 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + pos: -1.5,173.5 + parent: 2 + - uid: 10319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,166.5 + parent: 2 + - type: DeviceList + devices: + - 17800 + - 18917 + - 18947 + - 21005 + - 21004 + - 21003 + - 21000 + - 21001 + - 21002 + - 21011 + - 21010 + - 21009 + - 12526 + - 32547 + - 31305 + - 32548 + - uid: 10320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,168.5 + parent: 2 + - type: DeviceList + devices: + - 36414 + - 21005 + - 21004 + - 21003 + - 22405 + - 20997 + - 18682 + - 36408 + - 36409 + - 36410 + - 36411 + - uid: 12241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,175.5 + parent: 2 + - type: DeviceList + devices: + - 32656 + - 32657 + - 36415 + - 22405 + - 20997 + - uid: 13241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 15213 + - 26478 + - 5999 + - 29674 + - 27980 + - 26476 + - 29675 + - 26475 + - 19509 + - 19508 + - 19512 + - 28924 + - 28923 + - 19514 + - 19515 + - uid: 13378 + components: + - type: Transform + pos: 77.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 6721 + - 7042 + - 6715 + - 6722 + - 6723 + - 6724 + - 3896 + - 3894 + - 271 + - 36572 + - 4464 + - 4463 + - 4469 + - 4461 + - 4462 + - uid: 13428 + components: + - type: Transform + pos: -21.5,92.5 + parent: 2 + - type: DeviceList + devices: + - 16550 + - 16549 + - 16548 + - 33864 + - 33882 + - 36889 + - 3656 + - 3934 + - 4165 + - 1269 + - uid: 15539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 2470 + - 11305 + - 5484 + - 860 + - 4648 + - 53 + - 863 + - 864 + - 866 + - 36151 + - 14818 + - 962 + - 961 + - 960 + - uid: 16900 + components: + - type: Transform + pos: -77.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 18190 + - 33153 + - 33152 + - 29686 + - 29687 + - 29688 + - 29681 + - 29683 + - 29684 + - uid: 17781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 25403 + - 4251 + - 16755 + - 4404 + - 4250 + - 19607 + - uid: 17960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 29860 + - 19101 + - 23260 + - 15354 + - uid: 19130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,156.5 + parent: 2 + - type: DeviceList + devices: + - 32516 + - 36431 + - 21028 + - 7796 + - 22370 + - 7888 + - 14250 + - 15084 + - 1298 + - uid: 19131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,177.5 + parent: 2 + - type: DeviceList + devices: + - 32628 + - 32629 + - 18366 + - 21002 + - 21001 + - 21000 + - uid: 25813 + components: + - type: Transform + pos: -10.5,166.5 + parent: 2 + - type: DeviceList + devices: + - 23219 + - 17533 + - 36374 + - 25777 + - 39423 + - 39424 + - 36372 + - 4326 + - 18728 + - uid: 26418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 6400 + - 26492 + - 26494 + - 34801 + - 488 + - 36072 + - uid: 26485 + components: + - type: Transform + pos: 78.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 36583 + - 4164 + - 6333 + - 4040 + - 5171 + - 4025 + - 4034 + - 20174 + - 20055 + - 20098 + - 20076 + - 20056 + - 4456 + - 4454 + - uid: 29484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,23.5 + parent: 2 + - uid: 34449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,178.5 + parent: 2 + - type: DeviceList + devices: + - 32070 + - 34329 + - 34334 + - uid: 35948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,66.5 + parent: 2 + - type: DeviceList + devices: + - 11048 + - 35995 + - 10950 + - 35987 + - 35972 + - 35990 + - 35989 + - 35991 + - 35998 + - 35985 + - 35949 + - 35976 + - 35986 + - 10108 + - 35994 + - 32435 + - 35944 + - 14851 + - 35945 + - 11753 + - 35935 + - 11605 + - 34142 + - 17498 + - 16679 + - 11608 + - 11706 + - 36185 + - 10860 + - uid: 36299 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 866 + - 36125 + - 3222 + - 1900 + - 1901 + - 1902 + - 1903 + - 1904 + - 1905 + - 1906 + - 1907 + - 1908 + - 36298 + - uid: 36303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 1606 + - 963 + - 1607 + - 1713 + - 1712 + - 1711 + - 1710 + - 1709 + - 1708 + - 1707 + - 1906 + - 1907 + - 1908 + - 959 + - 16470 + - 36300 + - uid: 36304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 1711 + - 1710 + - 1709 + - 1708 + - 1707 + - 1706 + - 1705 + - 1704 + - 1703 + - 1702 + - 1903 + - 1904 + - 1905 + - 36301 + - uid: 36305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 1706 + - 1705 + - 1704 + - 1703 + - 1702 + - 1900 + - 1901 + - 1902 + - 1717 + - 1715 + - 36302 + - uid: 36307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 36308 + - 1713 + - 1712 + - 36309 + - uid: 36310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 6399 + - 955 + - 956 + - 964 + - 1606 + - 963 + - 1607 + - uid: 36312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 36311 + - 36316 + - 958 + - 956 + - 955 + - 960 + - 961 + - 962 + - 959 + - uid: 36319 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 3117 + - 36317 + - 35606 + - uid: 36342 + components: + - type: Transform + pos: -14.5,198.5 + parent: 2 + - type: DeviceList + devices: + - 34384 + - 34391 + - 36337 + - 36341 + - 36340 + - 36333 + - uid: 36343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,196.5 + parent: 2 + - type: DeviceList + devices: + - 36338 + - 34380 + - 30979 + - 36332 + - 36331 + - 36340 + - 36341 + - uid: 36345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,191.5 + parent: 2 + - type: DeviceList + devices: + - 36336 + - 36332 + - 36331 + - 36334 + - uid: 36346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,187.5 + parent: 2 + - type: DeviceList + devices: + - 36335 + - 34341 + - 36327 + - 36328 + - 36329 + - 36333 + - uid: 36347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,193.5 + parent: 2 + - type: DeviceList + devices: + - 31800 + - 36327 + - 36328 + - 36329 + - 36330 + - 38478 + - uid: 36349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,199.5 + parent: 2 + - type: DeviceList + devices: + - 32186 + - 32187 + - 36322 + - 34427 + - uid: 36351 + components: + - type: Transform + pos: -14.5,208.5 + parent: 2 + - type: DeviceList + devices: + - 36350 + - 31427 + - 36339 + - 31367 + - 31381 + - uid: 36356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,202.5 + parent: 2 + - type: DeviceList + devices: + - 19132 + - 31718 + - 31707 + - 36355 + - uid: 36358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,183.5 + parent: 2 + - type: DeviceList + devices: + - 36357 + - 34401 + - 34413 + - uid: 36360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,176.5 + parent: 2 + - type: DeviceList + devices: + - 36359 + - 34324 + - 34317 + - uid: 36377 + components: + - type: Transform + pos: -0.5,168.5 + parent: 2 + - type: DeviceList + devices: + - 36373 + - 36400 + - 36395 + - 36370 + - 36372 + - 36401 + - uid: 36404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,189.5 + parent: 2 + - type: DeviceList + devices: + - 36402 + - 31777 + - 31770 + - 36403 + - uid: 36407 + components: + - type: Transform + pos: -61.5,154.5 + parent: 2 + - type: DeviceList + devices: + - 36405 + - 32500 + - 32501 + - 1295 + - 9455 + - 14245 + - uid: 36413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,160.5 + parent: 2 + - type: DeviceList + devices: + - 36406 + - 22036 + - 22037 + - 22038 + - 1295 + - 9455 + - 14245 + - 36412 + - 36408 + - 36409 + - 36410 + - 36411 + - 15084 + - 14250 + - 1298 + - 14168 + - uid: 36418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,179.5 + parent: 2 + - type: DeviceList + devices: + - 32615 + - 32614 + - 36416 + - 21018 + - 21017 + - uid: 36420 + components: + - type: Transform + pos: -91.5,171.5 + parent: 2 + - type: DeviceList + devices: + - 36417 + - 21017 + - 21018 + - 21011 + - 21010 + - 21009 + - 21020 + - 21021 + - 21022 + - 21024 + - 38392 + - uid: 36430 + components: + - type: Transform + pos: -84.5,166.5 + parent: 2 + - type: DeviceList + devices: + - 36427 + - 32566 + - 36429 + - 36428 + - 21022 + - 21021 + - uid: 36433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,157.5 + parent: 2 + - type: DeviceList + devices: + - 32583 + - 21028 + - 32584 + - 36432 + - 21029 + - uid: 36532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 26477 + - 33149 + - 29688 + - 29687 + - 29686 + - 28097 + - 28099 + - 28100 + - 29681 + - 29683 + - 29684 + - 29675 + - 26475 + - 26474 + - 29679 + - 26473 + - 18086 + - uid: 36534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 31377 + - 6254 + - 19101 + - 23260 + - 27980 + - 29674 + - 5999 + - 31385 + - 31384 + - 36530 + - 36531 + - uid: 36539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -130.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 33231 + - 33234 + - 36544 + - uid: 36543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 19243 + - 19516 + - 28924 + - 28923 + - 19011 + - 19008 + - uid: 36575 + components: + - type: Transform + pos: 85.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 36574 + - 6721 + - 6715 + - 5106 + - 5107 + - 5108 + - 5109 + - 3391 + - uid: 36578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 36576 + - 36577 + - 5102 + - 5101 + - 5100 + - 5094 + - 5095 + - 5096 + - uid: 36584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 20345 + - 20347 + - 20348 + - 20349 + - 30093 + - 20056 + - 20076 + - 20174 + - 20055 + - 20098 + - 36582 + - 4223 + - 4224 + - uid: 36592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 36591 + - 4458 + - 10998 + - 4812 + - 4811 + - 4807 + - 3576 + - uid: 36593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 36591 + - 4458 + - 10998 + - 4812 + - 4811 + - 4807 + - 3576 + - uid: 36595 + components: + - type: Transform + pos: 69.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 4458 + - 10998 + - 4812 + - 4811 + - 4807 + - 3576 + - 11991 + - 22402 + - 36588 + - 22372 + - 21437 + - 14494 + - 4801 + - uid: 36598 + components: + - type: Transform + pos: 60.5,63.5 + parent: 2 + - type: DeviceList + devices: + - 22488 + - 36597 + - 22474 + - uid: 36601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,63.5 + parent: 2 + - type: DeviceList + devices: + - 27371 + - 36600 + - 6873 + - 6874 + - 3348 + - 6877 + - 6824 + - uid: 36605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 36604 + - 23134 + - 23131 + - 5192 + - 6873 + - 6874 + - 3348 + - 19638 + - uid: 36864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,71.5 + parent: 2 + - type: DeviceList + devices: + - 21207 + - 11577 + - 11567 + - 11562 + - 4597 + - 1632 + - 1633 + - 5061 + - 8636 + - 4439 + - 11656 + - 11655 + - 11654 + - 11649 + - 11650 + - 11651 + - uid: 36867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,82.5 + parent: 2 + - type: DeviceList + devices: + - 36866 + - 34230 + - 34234 + - 9554 + - 17389 + - uid: 36873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,88.5 + parent: 2 + - type: DeviceList + devices: + - 36869 + - 33757 + - 36870 + - 10353 + - 10110 + - 10085 + - 11651 + - 11650 + - 11649 + - 11654 + - 11655 + - 11656 + - 36481 + - 36480 + - 36479 + - 16550 + - 16549 + - 16548 + - 36871 + - 36872 + - 16556 + - 16555 + - 16554 + - 36876 + - uid: 36883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,97.5 + parent: 2 + - type: DeviceList + devices: + - 36874 + - 36875 + - 36882 + - 17365 + - 36881 + - 36877 + - 36878 + - 36880 + - 36879 + - 36876 + - 11247 + - 10131 + - 22061 + - uid: 36886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,103.5 + parent: 2 + - type: DeviceList + devices: + - 18678 + - 36884 + - 18722 + - 36878 + - 36879 + - 36880 + - 36885 + - uid: 36888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,101.5 + parent: 2 + - type: DeviceList + devices: + - 36887 + - 13465 + - 13638 + - 36885 + - uid: 36897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,84.5 + parent: 2 + - type: DeviceList + devices: + - 36896 + - 33984 + - 33985 + - 33993 + - 33992 + - 10716 + - 10722 + - 10718 + - 10719 + - 10720 + - 14392 + - 34038 + - 34039 + - uid: 36900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,77.5 + parent: 2 + - type: DeviceList + devices: + - 36898 + - 13118 + - 13117 + - 13116 + - 36899 + - 4165 + - 3934 + - 3656 + - 10724 + - 10725 + - 10715 + - 10716 + - 27256 + - 26867 + - uid: 36908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,77.5 + parent: 2 + - type: DeviceList + devices: + - 10764 + - 11072 + - 36902 + - 36901 + - 10718 + - 10719 + - 10720 + - 10724 + - 10725 + - 10715 + - 17498 + - 16679 + - 11608 + - 11706 + - 10727 + - uid: 36909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,74.5 + parent: 2 + - type: DeviceList + devices: + - 36907 + - 34120 + - 34121 + - 11072 + - uid: 36910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,83.5 + parent: 2 + - type: DeviceList + devices: + - 10107 + - 17314 + - 36906 + - 36905 + - 34172 + - 34173 + - 10764 + - 2986 + - 10723 + - uid: 36913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,65.5 + parent: 2 + - type: DeviceList + devices: + - 36911 + - 35935 + - 11605 + - 34142 + - 10766 + - 10778 + - 36912 + - 12951 + - uid: 36918 + components: + - type: Transform + pos: -28.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 36914 + - 36912 + - 13116 + - 13117 + - 13118 + - 36916 + - 36915 + - 12941 + - 12939 + - 12942 + - 12943 + - 12944 + - 12945 + - 36917 + - uid: 36922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,61.5 + parent: 2 + - type: DeviceList + devices: + - 36920 + - 13120 + - 34080 + - 36919 + - 35702 + - 12945 + - 12944 + - 12943 + - 12942 + - 12939 + - 12941 + - 36921 + - uid: 36924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,87.5 + parent: 2 + - type: DeviceList + devices: + - 36923 + - 16558 + - 16557 + - 16560 + - 21078 + - 24210 + - 24211 + - 16556 + - 16555 + - 16554 + - 17535 + - 17536 + - 24213 + - 20231 + - uid: 36925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,110.5 + parent: 2 + - type: DeviceList + devices: + - 36926 + - 17419 + - 17417 + - 17535 + - 17536 + - uid: 36929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,93.5 + parent: 2 + - type: DeviceList + devices: + - 36927 + - 33727 + - 33725 + - 36928 + - 24213 + - uid: 36932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,79.5 + parent: 2 + - type: DeviceList + devices: + - 36930 + - 36931 + - 21078 + - 24210 + - 24211 + - 24212 + - uid: 36935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,65.5 + parent: 2 + - type: DeviceList + devices: + - 33557 + - 36944 + - 33546 + - 36943 + - 33526 + - 36936 + - 36934 + - 21077 + - uid: 36937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 36933 + - 18957 + - 19717 + - 19718 + - 36934 + - 36936 + - uid: 36942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 36939 + - 36938 + - 19718 + - 19717 + - 18957 + - 19607 + - 14896 + - 20815 + - 16560 + - 16558 + - 16557 + - 36941 + - 36940 + - uid: 36947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,64.5 + parent: 2 + - uid: 36949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 17353 + - 36948 + - 33513 + - 36941 + - uid: 36952 + components: + - type: Transform + pos: -71.5,80.5 + parent: 2 + - type: DeviceList + devices: + - 36950 + - 33598 + - 33597 + - 36951 +- proto: AirAlarmElectronics + entities: + - uid: 29708 + components: + - type: Transform + pos: -111.49457,35.45368 + parent: 2 +- proto: AirCanister + entities: + - uid: 9054 + components: + - type: Transform + pos: -88.5,143.5 + parent: 2 + - uid: 11278 + components: + - type: Transform + pos: -132.5,45.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + pos: -23.5,207.5 + parent: 2 + - uid: 16784 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 13386 + - uid: 31931 + components: + - type: Transform + pos: 85.5,17.5 + parent: 2 + - uid: 37695 + components: + - type: Transform + pos: -107.5,55.5 + parent: 2 + - uid: 37843 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 37842 +- proto: Airlock + entities: + - uid: 911 + components: + - type: Transform + pos: -20.5,64.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: -62.5,102.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -70.5,99.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + pos: -61.5,106.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: -60.5,94.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: -71.5,111.5 + parent: 2 + - uid: 17424 + components: + - type: Transform + pos: -74.5,110.5 + parent: 2 + - uid: 18347 + components: + - type: Transform + pos: -19.5,171.5 + parent: 2 + - uid: 34451 + components: + - type: Transform + pos: -21.5,171.5 + parent: 2 + - uid: 34637 + components: + - type: Transform + pos: -74.5,112.5 + parent: 2 + - uid: 34812 + components: + - type: Transform + pos: -21.5,169.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 4836 + components: + - type: Transform + pos: 71.5,56.5 + parent: 2 +- proto: AirlockAssembly + entities: + - uid: 16163 + components: + - type: Transform + pos: -80.5,156.5 + parent: 2 + - uid: 23624 + components: + - type: Transform + pos: 11.5,186.5 + parent: 2 + - uid: 27974 + components: + - type: Transform + pos: -126.5,92.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,29.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: -58.5,10.5 + parent: 2 + - uid: 8987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,29.5 + parent: 2 + - uid: 18184 + components: + - type: Transform + pos: -101.5,35.5 + parent: 2 + - uid: 18991 + components: + - type: Transform + pos: -101.5,36.5 + parent: 2 + - uid: 19248 + components: + - type: Transform + pos: 12.5,173.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 21026 + components: + - type: Transform + pos: -71.5,148.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 10959 + components: + - type: Transform + pos: -32.5,61.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,31.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8506: + - DoorStatus: DoorBolt + 8505: + - DoorStatus: DoorBolt + - uid: 1301 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,45.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: 66.5,45.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: 67.5,45.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: 75.5,45.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: 78.5,46.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 258 + components: + - type: Transform + pos: 34.5,63.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: 32.5,62.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 +- proto: AirlockCaptainGlassLocked + entities: + - uid: 1677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,99.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 10777 + components: + - type: Transform + pos: -33.5,97.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 924 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 2 + - uid: 37844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 37842 +- proto: AirlockCargoLocked + entities: + - uid: 160 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 12108 + components: + - type: Transform + pos: -54.5,65.5 + parent: 2 + - uid: 12131 + components: + - type: Transform + pos: -55.5,69.5 + parent: 2 + - uid: 12132 + components: + - type: Transform + pos: -55.5,62.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 10767 + components: + - type: Transform + pos: -23.5,189.5 + parent: 2 + - uid: 22404 + components: + - type: Transform + pos: -18.5,195.5 + parent: 2 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 8483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,33.5 + parent: 2 + - uid: 18465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -128.5,90.5 + parent: 2 + - uid: 27136 + components: + - type: Transform + pos: -115.5,52.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 25197 + components: + - type: Transform + pos: -121.5,56.5 + parent: 2 + - uid: 27135 + components: + - type: Transform + pos: -119.5,53.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 22840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,205.5 + parent: 2 + - uid: 22841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,204.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 23299 + components: + - type: Transform + pos: -18.5,205.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 1219 + components: + - type: Transform + pos: -41.5,102.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: -40.5,102.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: -39.5,102.5 + parent: 2 + - uid: 11681 + components: + - type: Transform + pos: -40.5,93.5 + parent: 2 + - uid: 11682 + components: + - type: Transform + pos: -40.5,96.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,99.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,102.5 + parent: 2 + - uid: 33808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,104.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 7609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,130.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,135.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,125.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,127.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,133.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,149.5 + parent: 2 + - uid: 37708 + components: + - type: Transform + pos: -8.5,82.5 + parent: 2 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 1383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,77.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 4616 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 27299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,52.5 + parent: 2 + - uid: 27755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,46.5 + parent: 2 + - uid: 27765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,47.5 + parent: 2 + - uid: 28234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,44.5 + parent: 2 + - uid: 28235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,44.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 208 + components: + - type: Transform + pos: 72.5,21.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: -124.5,47.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,74.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: 19.5,172.5 + parent: 2 + - uid: 12128 + components: + - type: Transform + pos: -46.5,69.5 + parent: 2 + - uid: 12130 + components: + - type: Transform + pos: -83.5,78.5 + parent: 2 + - uid: 17311 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 17703 + components: + - type: Transform + pos: 83.5,60.5 + parent: 2 + - uid: 23164 + components: + - type: Transform + pos: -123.5,107.5 + parent: 2 + - uid: 25686 + components: + - type: Transform + pos: -108.5,61.5 + parent: 2 + - uid: 25726 + components: + - type: Transform + pos: -121.5,104.5 + parent: 2 + - uid: 26445 + components: + - type: Transform + pos: -109.5,61.5 + parent: 2 + - uid: 27793 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 28926 + components: + - type: Transform + pos: -111.5,47.5 + parent: 2 + - uid: 28927 + components: + - type: Transform + pos: -111.5,46.5 + parent: 2 + - uid: 30610 + components: + - type: Transform + pos: -95.5,52.5 + parent: 2 + - uid: 34838 + components: + - type: Transform + pos: 0.5,212.5 + parent: 2 + - uid: 35051 + components: + - type: Transform + pos: -102.5,148.5 + parent: 2 +- proto: AirlockExternal + entities: + - uid: 385 + components: + - type: Transform + pos: 50.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28344: + - DoorStatus: DoorBolt + - uid: 21041 + components: + - type: Transform + pos: -82.5,95.5 + parent: 2 + - uid: 21262 + components: + - type: Transform + pos: -98.5,99.5 + parent: 2 + - uid: 28344 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 385: + - DoorStatus: DoorBolt +- proto: AirlockExternalCargoLocked + entities: + - uid: 1091 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1143: + - DoorStatus: DoorBolt + - uid: 1143 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1091: + - DoorStatus: DoorBolt +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 573 + components: + - type: Transform + pos: -109.5,148.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17384: + - DoorStatus: DoorBolt + - uid: 1200 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1201: + - DoorStatus: DoorBolt + - uid: 1201 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1200: + - DoorStatus: DoorBolt + - uid: 1502 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1501: + - DoorStatus: DoorBolt + - uid: 1503 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1176: + - DoorStatus: DoorBolt + - uid: 4288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,25.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8506: + - DoorStatus: DoorBolt + 8505: + - DoorStatus: DoorBolt + - uid: 17384 + components: + - type: Transform + pos: -112.5,148.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 573: + - DoorStatus: DoorBolt + - uid: 34836 + components: + - type: Transform + pos: 0.5,220.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 34837: + - DoorStatus: DoorBolt + - uid: 34837 + components: + - type: Transform + pos: 0.5,217.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 34836: + - DoorStatus: DoorBolt + - uid: 35462 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 35463: + - DoorStatus: DoorBolt + - uid: 35463 + components: + - type: Transform + pos: 70.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 35462: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 114 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 112.5,44.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3471: + - DoorStatus: DoorBolt + - uid: 1599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,44.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1566: + - DoorStatus: DoorBolt + - uid: 4907 + components: + - type: Transform + pos: 103.5,63.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: 105.5,63.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: 111.5,63.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: 113.5,63.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: 117.5,58.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,163.5 + parent: 2 + - uid: 14706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,163.5 + parent: 2 + - uid: 17984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,159.5 + parent: 2 + - uid: 18652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,161.5 + parent: 2 + - uid: 20572 + components: + - type: Transform + pos: -51.5,152.5 + parent: 2 + - uid: 21015 + components: + - type: Transform + pos: -51.5,158.5 + parent: 2 + - uid: 25137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,166.5 + parent: 2 + - uid: 28206 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 37837 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 487 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3027: + - DoorStatus: DoorBolt + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 31786: + - DoorStatus: DoorBolt + - uid: 3027 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 487: + - DoorStatus: DoorBolt + - uid: 3493 + components: + - type: Transform + pos: -114.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29832: + - DoorStatus: DoorBolt + - uid: 28757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,22.5 + parent: 2 + - uid: 28766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,24.5 + parent: 2 + - uid: 29832 + components: + - type: Transform + pos: -110.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3493: + - DoorStatus: DoorBolt + - uid: 31786 + components: + - type: Transform + pos: 88.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 670: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1130: + - DoorStatus: DoorBolt + - uid: 1128 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1129: + - DoorStatus: DoorBolt + - uid: 1129 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1128: + - DoorStatus: DoorBolt + - uid: 1130 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1127: + - DoorStatus: DoorBolt + - uid: 1328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1327: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 28512 + components: + - type: Transform + pos: -116.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28747: + - DoorStatus: DoorBolt + - uid: 28747 + components: + - type: Transform + pos: -116.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28512: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 708 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,34.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,48.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: 5.5,88.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4288: + - DoorStatus: DoorBolt + 626: + - DoorStatus: DoorBolt + - uid: 8506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4288: + - DoorStatus: DoorBolt + 626: + - DoorStatus: DoorBolt + - uid: 11092 + components: + - type: Transform + pos: -15.5,99.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + pos: -15.5,97.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,40.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + pos: 3.5,88.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,42.5 + parent: 2 + - uid: 13350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,50.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,92.5 + parent: 2 + - uid: 13419 + components: + - type: Transform + pos: -18.5,104.5 + parent: 2 + - uid: 16347 + components: + - type: Transform + pos: -98.5,57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28509: + - DoorStatus: DoorBolt + - uid: 23992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,210.5 + parent: 2 + - uid: 23993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,210.5 + parent: 2 + - uid: 26871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,102.5 + parent: 2 + - uid: 28205 + components: + - type: Transform + pos: -86.5,31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28207: + - DoorStatus: DoorBolt + - uid: 28207 + components: + - type: Transform + pos: -86.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28205: + - DoorStatus: DoorBolt + - uid: 28509 + components: + - type: Transform + pos: -100.5,57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16347: + - DoorStatus: DoorBolt + - uid: 37371 + components: + - type: Transform + pos: -21.5,101.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 4847 + components: + - type: Transform + pos: 112.5,40.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: 105.5,40.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 111.5,66.5 + parent: 2 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,66.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,66.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,66.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 1701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,209.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,161.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,93.5 + parent: 2 + - uid: 25128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,48.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 3 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,7.5 + parent: 2 + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 2 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking457716 + dockedWith: 38066 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 2513 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 119.5,48.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 119.5,58.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,97.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,159.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,99.5 + parent: 2 + - uid: 10918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,106.5 + parent: 2 + - uid: 20749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,161.5 + parent: 2 + - uid: 36994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 2 + - uid: 37079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 2 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking457717 + dockedWith: 38069 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True +- proto: AirlockExternalLocked + entities: + - uid: 879 + components: + - type: Transform + pos: -31.5,192.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -72.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1503: + - DoorStatus: DoorBolt + - uid: 1501 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1502: + - DoorStatus: DoorBolt + - uid: 3035 + components: + - type: Transform + pos: -77.5,140.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18351: + - DoorStatus: DoorBolt + - uid: 3382 + components: + - type: Transform + pos: -92.5,91.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3647: + - DoorStatus: DoorBolt + - uid: 3647 + components: + - type: Transform + pos: -92.5,93.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3382: + - DoorStatus: DoorBolt + - uid: 3742 + components: + - type: Transform + pos: 117.5,48.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: -106.5,104.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4318: + - DoorStatus: DoorBolt + - uid: 4318 + components: + - type: Transform + pos: -106.5,101.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4278: + - DoorStatus: DoorBolt + - uid: 4740 + components: + - type: Transform + pos: 92.5,61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4741: + - DoorStatus: DoorBolt + - uid: 4741 + components: + - type: Transform + pos: 88.5,61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4740: + - DoorStatus: DoorBolt + - uid: 4871 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5057: + - DoorStatus: DoorBolt + - uid: 5057 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4871: + - DoorStatus: DoorBolt + - uid: 5477 + components: + - type: Transform + pos: -53.5,169.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 37330: + - DoorStatus: DoorBolt + - uid: 15779 + components: + - type: Transform + pos: -50.5,57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15780: + - DoorStatus: DoorBolt + - uid: 15780 + components: + - type: Transform + pos: -50.5,59.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15779: + - DoorStatus: DoorBolt + - uid: 17352 + components: + - type: Transform + pos: -66.5,179.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21023: + - DoorStatus: DoorBolt + - uid: 18351 + components: + - type: Transform + pos: -77.5,143.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3035: + - DoorStatus: DoorBolt + - uid: 21023 + components: + - type: Transform + pos: -66.5,175.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17352: + - DoorStatus: DoorBolt + - uid: 26192 + components: + - type: Transform + pos: -35.5,192.5 + parent: 2 + - uid: 26822 + components: + - type: Transform + pos: 16.5,206.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26823: + - DoorStatus: DoorBolt + - uid: 26823 + components: + - type: Transform + pos: 16.5,204.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26822: + - DoorStatus: DoorBolt + - uid: 36982 + components: + - type: Transform + pos: -124.5,67.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 37364: + - DoorStatus: DoorBolt + - uid: 37330 + components: + - type: Transform + pos: -49.5,169.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5477: + - DoorStatus: DoorBolt + - uid: 37364 + components: + - type: Transform + pos: -123.5,64.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 36982: + - DoorStatus: DoorBolt +- proto: AirlockFreezer + entities: + - uid: 10969 + components: + - type: Transform + pos: -12.5,63.5 + parent: 2 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 34625 + components: + - type: Transform + pos: -12.5,66.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,95.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,106.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: -82.5,99.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + pos: -63.5,108.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + pos: -64.5,108.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,97.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,97.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,101.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,101.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,82.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,83.5 + parent: 2 + - uid: 14565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,81.5 + parent: 2 + - uid: 15211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,76.5 + parent: 2 + - uid: 27767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,44.5 + parent: 2 + - uid: 27768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,44.5 + parent: 2 + - uid: 29380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 33068 + components: + - type: Transform + pos: -60.5,72.5 + parent: 2 + - uid: 33069 + components: + - type: Transform + pos: -59.5,72.5 + parent: 2 + - uid: 33070 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,166.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,158.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,52.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 1.5,161.5 + parent: 2 + - type: Door + secondsUntilStateChange: -11685.902 + changeAirtight: False + state: Opening + - type: Docking + dockJointId: docking51974 + dockedWith: 36495 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + DockStatus: True + - uid: 1145 + components: + - type: Transform + pos: -0.5,161.5 + parent: 2 + - type: Door + secondsUntilStateChange: -11683.868 + changeAirtight: False + state: Opening + - type: Docking + dockJointId: docking51973 + dockedWith: 36496 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + DockStatus: True + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,100.5 + parent: 2 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking168406 + dockedWith: 36727 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 2492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,67.5 + parent: 2 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking15994 + dockedWith: 13390 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 10772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,166.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + pos: -19.5,59.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + pos: -21.5,59.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 13386 + - uid: 13390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 13386 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking15994 + dockedWith: 2492 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 13480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,212.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,34.5 + parent: 2 + - uid: 17999 + components: + - type: Transform + pos: -18.5,160.5 + parent: 2 + - uid: 18258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,40.5 + parent: 2 + - uid: 18279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,212.5 + parent: 2 + - uid: 18281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,42.5 + parent: 2 + - uid: 21040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,152.5 + parent: 2 + - uid: 28760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,40.5 + parent: 2 + - uid: 29343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,48.5 + parent: 2 + - uid: 29350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,50.5 + parent: 2 + - uid: 36495 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 30902 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking51974 + dockedWith: 1144 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 36496 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 30902 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking51973 + dockedWith: 1145 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 36727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 21114 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking168406 + dockedWith: 1323 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 36728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 21114 + - uid: 38066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 37842 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking457716 + dockedWith: 123 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 38067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 37842 + - uid: 38068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 37842 + - uid: 38069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 37842 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking457717 + dockedWith: 37079 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 39414 + components: + - type: Transform + pos: -20.5,160.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 10535 + components: + - type: Transform + pos: -16.5,85.5 + parent: 2 + - uid: 10536 + components: + - type: Transform + pos: -14.5,82.5 + parent: 2 + - uid: 10537 + components: + - type: Transform + pos: -21.5,82.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 1504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,66.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 4688 + components: + - type: Transform + pos: 82.5,64.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: 86.5,62.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 11134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,70.5 + parent: 2 + - uid: 11230 + components: + - type: Transform + pos: -10.5,70.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 13264 + components: + - type: Transform + pos: -1.5,65.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 5503 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 10769 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + pos: -15.5,72.5 + parent: 2 +- proto: AirlockLawyerLocked + entities: + - uid: 386 + components: + - type: Transform + pos: -71.5,74.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 26813 + components: + - type: Transform + pos: -34.5,62.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 1006 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 12192 + components: + - type: Transform + pos: -52.5,66.5 + parent: 2 +- proto: AirlockMaintCommonLocked + entities: + - uid: 17714 + components: + - type: Transform + pos: -106.5,97.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: -107.5,97.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 1477 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: -128.5,104.5 + parent: 2 + - uid: 25335 + components: + - type: Transform + pos: -126.5,102.5 + parent: 2 + - uid: 25337 + components: + - type: Transform + pos: -122.5,101.5 + parent: 2 + - uid: 26498 + components: + - type: Transform + pos: -114.5,97.5 + parent: 2 + - uid: 26861 + components: + - type: Transform + pos: -117.5,103.5 + parent: 2 + - uid: 26865 + components: + - type: Transform + pos: -113.5,99.5 + parent: 2 +- proto: AirlockMaintHOPLocked + entities: + - uid: 15775 + components: + - type: Transform + pos: -14.5,86.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 11677 + components: + - type: Transform + pos: 1.5,70.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 1013 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: -17.5,172.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: -107.5,65.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: -89.5,75.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: 84.5,41.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -27.5,88.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: -26.5,77.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -67.5,87.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -55.5,75.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -94.5,144.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: -81.5,145.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: -75.5,148.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: -116.5,65.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: -2.5,210.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 7.5,201.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: 20.5,200.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: -27.5,205.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: 24.5,196.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: -81.5,83.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: -16.5,89.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: 19.5,176.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + pos: 20.5,181.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + pos: 6.5,178.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: 17.5,179.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: -81.5,88.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: -87.5,144.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: -82.5,85.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: -28.5,78.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -30.5,82.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + pos: -52.5,78.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: -50.5,82.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -39.5,64.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,173.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + pos: -58.5,170.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + pos: -46.5,81.5 + parent: 2 + - uid: 11487 + components: + - type: Transform + pos: -20.5,209.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: -54.5,170.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: 6.5,206.5 + parent: 2 + - uid: 14046 + components: + - type: Transform + pos: -25.5,76.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + pos: -0.5,174.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + pos: -69.5,72.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + pos: -73.5,69.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + pos: 4.5,75.5 + parent: 2 + - uid: 16346 + components: + - type: Transform + pos: -106.5,63.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + pos: -29.5,197.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: 86.5,51.5 + parent: 2 + - uid: 18070 + components: + - type: Transform + pos: -79.5,78.5 + parent: 2 + - uid: 20176 + components: + - type: Transform + pos: -34.5,81.5 + parent: 2 + - uid: 24278 + components: + - type: Transform + pos: -28.5,190.5 + parent: 2 + - uid: 24385 + components: + - type: Transform + pos: -50.5,72.5 + parent: 2 + - uid: 24797 + components: + - type: Transform + pos: -53.5,88.5 + parent: 2 + - uid: 24814 + components: + - type: Transform + pos: -82.5,77.5 + parent: 2 + - uid: 25442 + components: + - type: Transform + pos: -60.5,160.5 + parent: 2 + - uid: 26402 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 26413 + components: + - type: Transform + pos: -67.5,162.5 + parent: 2 + - uid: 26495 + components: + - type: Transform + pos: -111.5,65.5 + parent: 2 + - uid: 27102 + components: + - type: Transform + pos: -92.5,49.5 + parent: 2 + - uid: 28145 + components: + - type: Transform + pos: -72.5,150.5 + parent: 2 + - uid: 36760 + components: + - type: Transform + pos: -94.5,53.5 + parent: 2 + - uid: 36792 + components: + - type: Transform + pos: -79.5,88.5 + parent: 2 + - uid: 36852 + components: + - type: Transform + pos: -101.5,54.5 + parent: 2 + - uid: 37143 + components: + - type: Transform + pos: -47.5,175.5 + parent: 2 + - uid: 37217 + components: + - type: Transform + pos: -39.5,175.5 + parent: 2 + - uid: 37218 + components: + - type: Transform + pos: -32.5,180.5 + parent: 2 + - uid: 37347 + components: + - type: Transform + pos: -74.5,65.5 + parent: 2 + - uid: 39165 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 4835 + components: + - type: Transform + pos: -3.5,209.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: 83.5,45.5 + parent: 2 + - uid: 11084 + components: + - type: Transform + pos: 20.5,198.5 + parent: 2 + - uid: 17973 + components: + - type: Transform + pos: 2.5,168.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 11205 + components: + - type: Transform + pos: -67.5,172.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + pos: -99.5,148.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 38526 + components: + - type: Transform + pos: 56.5,51.5 + parent: 2 +- proto: AirlockMaintTheatreLocked + entities: + - uid: 10793 + components: + - type: Transform + pos: -32.5,69.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + pos: -33.5,68.5 + parent: 2 +- proto: AirlockMedicalGlass + entities: + - uid: 4001 + components: + - type: Transform + pos: -8.5,172.5 + parent: 2 + - uid: 22442 + components: + - type: Transform + pos: -11.5,185.5 + parent: 2 + - uid: 22443 + components: + - type: Transform + pos: -12.5,185.5 + parent: 2 + - uid: 22657 + components: + - type: Transform + pos: -10.5,188.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,201.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,192.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: -22.5,199.5 + parent: 2 + - uid: 22409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,201.5 + parent: 2 + - uid: 22412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,201.5 + parent: 2 + - uid: 22619 + components: + - type: Transform + pos: -6.5,170.5 + parent: 2 + - uid: 22752 + components: + - type: Transform + pos: -11.5,190.5 + parent: 2 + - uid: 23024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,197.5 + parent: 2 + - uid: 23025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,196.5 + parent: 2 + - uid: 23377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,204.5 + parent: 2 + - uid: 23378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,203.5 + parent: 2 + - uid: 23722 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - uid: 25098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,166.5 + parent: 2 + - uid: 25099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,164.5 + parent: 2 + - uid: 25100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,164.5 + parent: 2 + - uid: 25101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,166.5 + parent: 2 + - uid: 30903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 30902 +- proto: AirlockMedicalLocked + entities: + - uid: 3951 + components: + - type: Transform + pos: 79.5,42.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,205.5 + parent: 2 + - uid: 22858 + components: + - type: Transform + pos: -15.5,195.5 + parent: 2 + - uid: 22903 + components: + - type: Transform + pos: -8.5,195.5 + parent: 2 + - uid: 22904 + components: + - type: Transform + pos: -7.5,195.5 + parent: 2 + - uid: 22905 + components: + - type: Transform + pos: -12.5,198.5 + parent: 2 + - uid: 22906 + components: + - type: Transform + pos: -11.5,198.5 + parent: 2 + - uid: 36326 + components: + - type: Transform + pos: 2.5,187.5 + parent: 2 + - uid: 38247 + components: + - type: Transform + pos: -20.5,180.5 + parent: 2 +- proto: AirlockMedicalScienceGlassLocked + entities: + - uid: 2849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 2 +- proto: AirlockMedicalScienceLocked + entities: + - uid: 2847 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2848: + - DoorStatus: DoorBolt + - uid: 2848 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2847: + - DoorStatus: DoorBolt +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 1718 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 1256 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 19767 + components: + - type: Transform + pos: -89.5,155.5 + parent: 2 + - uid: 19782 + components: + - type: Transform + pos: -91.5,161.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 4452 + components: + - type: Transform + pos: -82.5,159.5 + parent: 2 + - uid: 18357 + components: + - type: Transform + pos: -85.5,155.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 2545 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 1018 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1328: + - DoorStatus: DoorBolt +- proto: AirlockScienceGlassLocked + entities: + - uid: 4975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,163.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,157.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,170.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,164.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,171.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,166.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,166.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,166.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,172.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,176.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,176.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,176.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,170.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,171.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,172.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,163.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,166.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,166.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,171.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,161.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,161.5 + parent: 2 + - uid: 17596 + components: + - type: Transform + pos: -70.5,173.5 + parent: 2 + - uid: 17621 + components: + - type: Transform + pos: -71.5,173.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + pos: -91.5,149.5 + parent: 2 + - uid: 18079 + components: + - type: Transform + pos: -85.5,149.5 + parent: 2 + - uid: 20058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,161.5 + parent: 2 + - uid: 20995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,163.5 + parent: 2 + - uid: 25095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,164.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 7617 + components: + - type: Transform + pos: -97.5,154.5 + parent: 2 + - uid: 18144 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - uid: 20514 + components: + - type: Transform + pos: -88.5,176.5 + parent: 2 + - uid: 20515 + components: + - type: Transform + pos: -87.5,176.5 + parent: 2 + - uid: 20516 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,180.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -42.5,81.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: -38.5,81.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 53.5,58.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: 91.5,53.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: 97.5,50.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,63.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: 72.5,64.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: 67.5,57.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 67.5,58.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: 70.5,64.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + pos: 75.5,57.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: 97.5,56.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + pos: 75.5,58.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 16076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 13386 + - uid: 16085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 13386 + - uid: 16164 + components: + - type: Transform + pos: 47.5,59.5 + parent: 2 + - uid: 18840 + components: + - type: Transform + pos: -103.5,101.5 + parent: 2 + - uid: 22133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,156.5 + parent: 2 + - uid: 25175 + components: + - type: Transform + pos: -96.5,35.5 + parent: 2 + - uid: 27506 + components: + - type: Transform + pos: -90.5,35.5 + parent: 2 + - uid: 31448 + components: + - type: Transform + pos: 80.5,37.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 1245 + components: + - type: Transform + pos: 77.5,56.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: 39.5,61.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 76.5,56.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: 64.5,66.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: 65.5,56.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: 71.5,45.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: 66.5,56.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 +- proto: AirlockServiceGlassLocked + entities: + - uid: 4413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,66.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,83.5 + parent: 2 + - uid: 11082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,70.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 314 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: -6.5,87.5 + parent: 2 + - uid: 14490 + components: + - type: Transform + pos: -67.5,82.5 + parent: 2 +- proto: AirlockShuttle + entities: + - uid: 37044 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 36996 +- proto: AirlockShuttleAssembly + entities: + - uid: 2089 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 1550 + components: + - type: Transform + pos: -70.5,89.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: -61.5,98.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: -68.5,91.5 + parent: 2 + - uid: 11002 + components: + - type: Transform + pos: -32.5,66.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 3116 + components: + - type: Transform + pos: 3.5,191.5 + parent: 2 + - uid: 22589 + components: + - type: Transform + pos: 7.5,192.5 + parent: 2 + - uid: 22700 + components: + - type: Transform + pos: 7.5,191.5 + parent: 2 + - uid: 23238 + components: + - type: Transform + pos: 3.5,192.5 + parent: 2 + - uid: 23634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,192.5 + parent: 2 + - uid: 23635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,191.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 706 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: -18.5,98.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,44.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: 98.5,53.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: 108.5,58.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,168.5 + parent: 2 + - uid: 14392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,83.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,3.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + pos: -122.5,57.5 + parent: 2 + - uid: 18190 + components: + - type: Transform + pos: -79.5,41.5 + parent: 2 + - uid: 18366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,181.5 + parent: 2 + - uid: 19132 + components: + - type: Transform + pos: 1.5,203.5 + parent: 2 + - uid: 21207 + components: + - type: Transform + pos: -40.5,73.5 + parent: 2 + - uid: 21437 + components: + - type: Transform + pos: 73.5,62.5 + parent: 2 + - uid: 25403 + components: + - type: Transform + pos: -65.5,66.5 + parent: 2 + - uid: 26477 + components: + - type: Transform + pos: -89.5,41.5 + parent: 2 + - uid: 26478 + components: + - type: Transform + pos: -97.5,41.5 + parent: 2 + - uid: 26480 + components: + - type: Transform + pos: -101.5,48.5 + parent: 2 + - uid: 26482 + components: + - type: Transform + pos: -116.5,46.5 + parent: 2 + - uid: 27371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,66.5 + parent: 2 + - uid: 31305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,174.5 + parent: 2 + - uid: 31800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,193.5 + parent: 2 + - uid: 32070 + components: + - type: Transform + pos: -18.5,180.5 + parent: 2 + - uid: 36298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - uid: 36300 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 36301 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 36302 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 36308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 + - uid: 36311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + - uid: 36317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - uid: 36318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 2 + - uid: 36322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,201.5 + parent: 2 + - uid: 36335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,188.5 + parent: 2 + - uid: 36336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,192.5 + parent: 2 + - uid: 36337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,196.5 + parent: 2 + - uid: 36338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,196.5 + parent: 2 + - uid: 36339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,204.5 + parent: 2 + - uid: 36350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,204.5 + parent: 2 + - uid: 36355 + components: + - type: Transform + pos: 0.5,197.5 + parent: 2 + - uid: 36357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,183.5 + parent: 2 + - uid: 36359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,179.5 + parent: 2 + - uid: 36373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,166.5 + parent: 2 + - uid: 36374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,168.5 + parent: 2 + - uid: 36375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,170.5 + parent: 2 + - uid: 36402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,191.5 + parent: 2 + - uid: 36403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,194.5 + parent: 2 + - uid: 36405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,152.5 + parent: 2 + - uid: 36406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,158.5 + parent: 2 + - uid: 36414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,170.5 + parent: 2 + - uid: 36415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,176.5 + parent: 2 + - uid: 36416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,178.5 + parent: 2 + - uid: 36417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,170.5 + parent: 2 + - uid: 36427 + components: + - type: Transform + pos: -87.5,164.5 + parent: 2 + - uid: 36431 + components: + - type: Transform + pos: -80.5,159.5 + parent: 2 + - uid: 36432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,157.5 + parent: 2 + - uid: 36530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,36.5 + parent: 2 + - uid: 36531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,32.5 + parent: 2 + - uid: 36536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,34.5 + parent: 2 + - uid: 36537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,31.5 + parent: 2 + - uid: 36544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,45.5 + parent: 2 + - uid: 36545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,53.5 + parent: 2 + - uid: 36568 + components: + - type: Transform + pos: 71.5,67.5 + parent: 2 + - uid: 36572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,39.5 + parent: 2 + - uid: 36574 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - uid: 36576 + components: + - type: Transform + pos: 89.5,48.5 + parent: 2 + - uid: 36577 + components: + - type: Transform + pos: 89.5,58.5 + parent: 2 + - uid: 36579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,47.5 + parent: 2 + - uid: 36580 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 36581 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 36582 + components: + - type: Transform + pos: 66.5,53.5 + parent: 2 + - uid: 36583 + components: + - type: Transform + pos: 76.5,53.5 + parent: 2 + - uid: 36588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,58.5 + parent: 2 + - uid: 36591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,60.5 + parent: 2 + - uid: 36594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,54.5 + parent: 2 + - uid: 36597 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - uid: 36599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,65.5 + parent: 2 + - uid: 36600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,61.5 + parent: 2 + - uid: 36604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,61.5 + parent: 2 + - uid: 36866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,79.5 + parent: 2 + - uid: 36868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,85.5 + parent: 2 + - uid: 36869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,89.5 + parent: 2 + - uid: 36870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,89.5 + parent: 2 + - uid: 36874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,95.5 + parent: 2 + - uid: 36875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,99.5 + parent: 2 + - uid: 36877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,100.5 + parent: 2 + - uid: 36881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,101.5 + parent: 2 + - uid: 36882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,98.5 + parent: 2 + - uid: 36884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,108.5 + parent: 2 + - uid: 36887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,103.5 + parent: 2 + - uid: 36889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,83.5 + parent: 2 + - uid: 36896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,82.5 + parent: 2 + - uid: 36898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,75.5 + parent: 2 + - uid: 36901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,74.5 + parent: 2 + - uid: 36902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,80.5 + parent: 2 + - uid: 36905 + components: + - type: Transform + pos: -4.5,85.5 + parent: 2 + - uid: 36906 + components: + - type: Transform + pos: -0.5,82.5 + parent: 2 + - uid: 36907 + components: + - type: Transform + pos: -3.5,76.5 + parent: 2 + - uid: 36911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,68.5 + parent: 2 + - uid: 36914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,68.5 + parent: 2 + - uid: 36919 + components: + - type: Transform + pos: -26.5,62.5 + parent: 2 + - uid: 36920 + components: + - type: Transform + pos: -32.5,58.5 + parent: 2 + - uid: 36923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,90.5 + parent: 2 + - uid: 36926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,110.5 + parent: 2 + - uid: 36927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,95.5 + parent: 2 + - uid: 36928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,99.5 + parent: 2 + - uid: 36930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,79.5 + parent: 2 + - uid: 36931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,84.5 + parent: 2 + - uid: 36933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,69.5 + parent: 2 + - uid: 36938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,75.5 + parent: 2 + - uid: 36939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,74.5 + parent: 2 + - uid: 36943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,67.5 + parent: 2 + - uid: 36944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,63.5 + parent: 2 + - uid: 36948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,74.5 + parent: 2 + - uid: 36950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,77.5 + parent: 2 + - uid: 36951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,85.5 + parent: 2 + - uid: 42968 + components: + - type: Transform + pos: 53.5,55.5 + parent: 2 +- proto: AltarBananium + entities: + - uid: 24243 + components: + - type: Transform + pos: 7.5,75.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 7524 + components: + - type: Transform + pos: -59.5,63.5 + parent: 2 +- proto: AlwaysPoweredLightSodium + entities: + - uid: 7755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,129.5 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 20225 + components: + - type: Transform + pos: -75.37528,181.6992 + parent: 2 + - uid: 20229 + components: + - type: Transform + pos: -75.52151,181.63173 + parent: 2 +- proto: APCBasic + entities: + - uid: 304 + components: + - type: Transform + pos: -131.5,41.5 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,176.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -123.5,101.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 1287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,52.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,69.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,45.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: 70.5,56.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + pos: -83.5,85.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,64.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,53.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,64.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,62.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,62.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,183.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,37.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: 106.5,63.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 106.5,44.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,100.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,133.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,194.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,198.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,52.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,97.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: -5.5,173.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,146.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: -16.5,166.5 + parent: 2 + - uid: 11592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,73.5 + parent: 2 + - uid: 11826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,71.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,64.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + pos: -127.5,90.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 12988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,68.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + pos: -26.5,72.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,61.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + pos: -52.5,74.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,98.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,87.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,163.5 + parent: 2 + - uid: 14960 + components: + - type: Transform + pos: -79.5,101.5 + parent: 2 + - uid: 15011 + components: + - type: Transform + pos: -55.5,92.5 + parent: 2 + - uid: 15161 + components: + - type: Transform + pos: -70.5,76.5 + parent: 2 + - uid: 15428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,66.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,33.5 + parent: 2 + - uid: 15965 + components: + - type: Transform + pos: -28.5,74.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,79.5 + parent: 2 + - uid: 16045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,87.5 + parent: 2 + - uid: 16130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,73.5 + parent: 2 + - uid: 16562 + components: + - type: Transform + pos: -45.5,102.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,106.5 + parent: 2 + - uid: 16710 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 13386 + - uid: 16991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,86.5 + parent: 2 + - uid: 17040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,86.5 + parent: 2 + - uid: 17175 + components: + - type: Transform + pos: -84.5,78.5 + parent: 2 + - uid: 17774 + components: + - type: Transform + pos: -126.5,110.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 17798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,174.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,95.5 + parent: 2 + - uid: 19297 + components: + - type: Transform + pos: -117.5,67.5 + parent: 2 + - uid: 19464 + components: + - type: Transform + pos: -62.5,154.5 + parent: 2 + - uid: 20332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,80.5 + parent: 2 + - uid: 21192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 21114 + - uid: 21441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,162.5 + parent: 2 + - uid: 21545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,151.5 + parent: 2 + - uid: 21622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,156.5 + parent: 2 + - uid: 21654 + components: + - type: Transform + pos: -91.5,166.5 + parent: 2 + - uid: 21673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,172.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,160.5 + parent: 2 + - uid: 21735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,176.5 + parent: 2 + - uid: 21750 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - uid: 21792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,176.5 + parent: 2 + - uid: 21863 + components: + - type: Transform + pos: -61.5,170.5 + parent: 2 + - uid: 22885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,80.5 + parent: 2 + - uid: 24406 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 24407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,190.5 + parent: 2 + - uid: 24430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,198.5 + parent: 2 + - uid: 24451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,193.5 + parent: 2 + - uid: 24502 + components: + - type: Transform + pos: 1.5,206.5 + parent: 2 + - uid: 24528 + components: + - type: Transform + pos: -10.5,211.5 + parent: 2 + - uid: 24541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,206.5 + parent: 2 + - uid: 24554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,185.5 + parent: 2 + - uid: 24568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,174.5 + parent: 2 + - uid: 24585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,200.5 + parent: 2 + - uid: 24597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,204.5 + parent: 2 + - uid: 24620 + components: + - type: Transform + pos: -25.5,210.5 + parent: 2 + - uid: 24661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,209.5 + parent: 2 + - uid: 24971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,192.5 + parent: 2 + - uid: 25048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,182.5 + parent: 2 + - uid: 25508 + components: + - type: Transform + pos: 15.5,178.5 + parent: 2 + - uid: 25556 + components: + - type: Transform + pos: 8.5,173.5 + parent: 2 + - uid: 25711 + components: + - type: Transform + pos: -122.5,109.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 26163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,32.5 + parent: 2 + - uid: 26565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,101.5 + parent: 2 + - uid: 28640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,45.5 + parent: 2 + - uid: 28970 + components: + - type: Transform + pos: -126.5,52.5 + parent: 2 + - uid: 29075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,57.5 + parent: 2 + - uid: 29547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,29.5 + parent: 2 + - uid: 29703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,99.5 + parent: 2 + - uid: 29934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,33.5 + parent: 2 + - uid: 30030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,45.5 + parent: 2 + - uid: 30056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,44.5 + parent: 2 + - uid: 30300 + components: + - type: Transform + pos: -19.5,180.5 + parent: 2 + - uid: 30347 + components: + - type: Transform + pos: -126.5,28.5 + parent: 2 + - uid: 30905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 30902 + - uid: 31260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,147.5 + parent: 2 + - uid: 32322 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 32708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 2 + - uid: 34466 + components: + - type: Transform + pos: -114.5,104.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 34467 + components: + - type: Transform + pos: -115.5,96.5 + parent: 2 + - type: Battery + startingCharge: 0 + - uid: 34844 + components: + - type: Transform + pos: 1.5,217.5 + parent: 2 + - uid: 37733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,80.5 + parent: 2 + - uid: 37849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 37842 + - uid: 39258 + components: + - type: Transform + pos: -72.5,113.5 + parent: 2 + - uid: 40450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,56.5 + parent: 2 + - uid: 43351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -128.5,18.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 35792 + components: + - type: Transform + pos: -100.53125,103.60723 + parent: 2 +- proto: APCFrame + entities: + - uid: 39259 + components: + - type: Transform + pos: -102.5,104.5 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 16571 + components: + - type: Transform + pos: -35.5,102.5 + parent: 2 + - uid: 22891 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 23360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,98.5 + parent: 2 + - uid: 30190 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - uid: 37648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,62.5 + parent: 2 +- proto: AppleSeeds + entities: + - uid: 15611 + components: + - type: Transform + pos: -80.65188,141.51364 + parent: 2 +- proto: AppraisalTool + entities: + - uid: 1683 + components: + - type: Transform + pos: -27.228924,-5.825143 + parent: 2 +- proto: ArrowRegular + entities: + - uid: 4607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.4305077,62.312107 + parent: 2 + - uid: 5460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.655468,62.480774 + parent: 2 + - uid: 12747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5542374,62.72815 + parent: 2 +- proto: ArtifactFragment1 + entities: + - uid: 20483 + components: + - type: Transform + pos: -97.31306,169.99557 + parent: 2 +- proto: ArtistCircuitBoard + entities: + - uid: 2732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.614197,129.53622 + parent: 2 +- proto: Ash + entities: + - uid: 27510 + components: + - type: Transform + pos: -117.08677,97.579926 + parent: 2 + - uid: 27514 + components: + - type: Transform + pos: -116.74933,97.759834 + parent: 2 + - uid: 27544 + components: + - type: Transform + pos: -116.63685,97.6249 + parent: 2 + - uid: 27597 + components: + - type: Transform + pos: -119.532265,97.61274 + parent: 2 + - uid: 27843 + components: + - type: Transform + pos: -86.6036,140.40831 + parent: 2 + - uid: 27886 + components: + - type: Transform + pos: -86.23508,141.92976 + parent: 2 + - uid: 28098 + components: + - type: Transform + pos: -85.00351,141.409 + parent: 2 + - uid: 28181 + components: + - type: Transform + pos: -115.54088,102.528366 + parent: 2 + - uid: 28201 + components: + - type: Transform + pos: -115.31592,102.68579 + parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 8361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.60099,131.74103 + parent: 2 +- proto: AsteroidRock + entities: + - uid: 9108 + components: + - type: Transform + pos: -65.5,107.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + pos: -62.5,107.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + pos: -63.5,92.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + pos: -64.5,97.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: -66.5,103.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: -67.5,102.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: -68.5,102.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: -68.5,101.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: -69.5,101.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + pos: -69.5,103.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: -68.5,103.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: -69.5,102.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: -67.5,103.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + pos: -68.5,94.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -69.5,98.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + pos: -62.5,99.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + pos: -67.5,89.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + pos: -66.5,89.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: -67.5,90.5 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: -64.5,96.5 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 1147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,191.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,180.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,199.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: -59.5,125.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,135.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,187.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,180.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: -12.5,185.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: -11.5,185.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: -23.5,189.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,198.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,198.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,97.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,209.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,106.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,63.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,7.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 119.5,48.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,99.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: -0.5,161.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,204.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: -21.5,59.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,205.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,203.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,204.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,192.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,172.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,190.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: -3.5,209.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: -19.5,59.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,22.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-3.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,212.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: 1.5,161.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,152.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,212.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,159.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 119.5,58.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: 112.5,40.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + pos: 105.5,40.5 + parent: 2 + - uid: 8724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,158.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,166.5 + parent: 2 + - uid: 8752 + components: + - type: Transform + pos: -18.5,160.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: -20.5,160.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,166.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,161.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,67.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,161.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,100.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,92.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,102.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,24.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,93.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,66.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 111.5,66.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,66.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,66.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 13386 + - uid: 8936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 13386 + - uid: 8937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 21114 + - uid: 8938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 21114 + - uid: 8939 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 30902 + - uid: 8940 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 30902 + - uid: 8941 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 36996 + - uid: 8942 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 36996 + - uid: 8943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 37842 + - uid: 8945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 37842 + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 37842 + - uid: 8947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 37842 +- proto: AtmosDeviceFanTiny + entities: + - uid: 4501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,42.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 112.5,44.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,44.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,101.5 + parent: 2 + - uid: 18254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,40.5 + parent: 2 + - uid: 26499 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 30650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,48.5 + parent: 2 + - uid: 30679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,34.5 + parent: 2 + - uid: 30681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,52.5 + parent: 2 + - uid: 34448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,174.5 + parent: 2 + - uid: 34614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,101.5 + parent: 2 + - uid: 37564 + components: + - type: Transform + pos: -82.5,99.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 4184 + components: + - type: Transform + pos: -74.5,146.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -73.5,146.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -73.5,144.5 + parent: 2 + - uid: 11938 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,16.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,16.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,16.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,15.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,15.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,15.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,15.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,16.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,12.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,178.5 + parent: 2 + - uid: 13797 + components: + - type: Transform + pos: 11.5,178.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + pos: 86.5,15.5 + parent: 2 + - uid: 17895 + components: + - type: Transform + pos: 14.5,178.5 + parent: 2 + - uid: 17896 + components: + - type: Transform + pos: 10.5,178.5 + parent: 2 + - uid: 21016 + components: + - type: Transform + pos: 85.5,15.5 + parent: 2 + - uid: 21470 + components: + - type: Transform + pos: 86.5,14.5 + parent: 2 + - uid: 36035 + components: + - type: Transform + pos: -112.5,15.5 + parent: 2 + - uid: 36036 + components: + - type: Transform + pos: -112.5,16.5 + parent: 2 + - uid: 36037 + components: + - type: Transform + pos: -110.5,16.5 + parent: 2 + - uid: 36038 + components: + - type: Transform + pos: -110.5,15.5 + parent: 2 + - uid: 36042 + components: + - type: Transform + pos: -106.5,16.5 + parent: 2 + - uid: 36043 + components: + - type: Transform + pos: -106.5,15.5 + parent: 2 + - uid: 36045 + components: + - type: Transform + pos: -104.5,16.5 + parent: 2 + - uid: 36046 + components: + - type: Transform + pos: -104.5,15.5 + parent: 2 + - uid: 36047 + components: + - type: Transform + pos: -102.5,15.5 + parent: 2 + - uid: 36048 + components: + - type: Transform + pos: -102.5,16.5 + parent: 2 + - uid: 36049 + components: + - type: Transform + pos: -102.5,17.5 + parent: 2 + - uid: 36050 + components: + - type: Transform + pos: -102.5,18.5 + parent: 2 + - uid: 36051 + components: + - type: Transform + pos: -101.5,15.5 + parent: 2 + - uid: 36052 + components: + - type: Transform + pos: -101.5,16.5 + parent: 2 + - uid: 36053 + components: + - type: Transform + pos: -101.5,17.5 + parent: 2 + - uid: 36054 + components: + - type: Transform + pos: -101.5,18.5 + parent: 2 + - uid: 36055 + components: + - type: Transform + pos: -100.5,15.5 + parent: 2 + - uid: 36056 + components: + - type: Transform + pos: -100.5,16.5 + parent: 2 + - uid: 36057 + components: + - type: Transform + pos: -100.5,17.5 + parent: 2 + - uid: 36058 + components: + - type: Transform + pos: -100.5,18.5 + parent: 2 + - uid: 36059 + components: + - type: Transform + pos: -99.5,15.5 + parent: 2 + - uid: 36060 + components: + - type: Transform + pos: -99.5,16.5 + parent: 2 + - uid: 36061 + components: + - type: Transform + pos: -99.5,17.5 + parent: 2 + - uid: 36062 + components: + - type: Transform + pos: -99.5,18.5 + parent: 2 + - uid: 36123 + components: + - type: Transform + pos: -74.5,144.5 + parent: 2 + - uid: 36127 + components: + - type: Transform + pos: 13.5,178.5 + parent: 2 + - uid: 36133 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - uid: 36134 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 + - uid: 36135 + components: + - type: Transform + pos: -57.5,14.5 + parent: 2 + - uid: 36147 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 36148 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 36149 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 + - uid: 36150 + components: + - type: Transform + pos: -53.5,14.5 + parent: 2 + - uid: 36160 + components: + - type: Transform + pos: 90.5,14.5 + parent: 2 + - uid: 36161 + components: + - type: Transform + pos: 90.5,15.5 + parent: 2 + - uid: 36162 + components: + - type: Transform + pos: 91.5,15.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 33029 + components: + - type: Transform + pos: -10.5,62.5 + parent: 2 + - uid: 33046 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 + - uid: 33048 + components: + - type: Transform + pos: -9.5,63.5 + parent: 2 + - uid: 33049 + components: + - type: Transform + pos: -9.5,61.5 + parent: 2 + - uid: 33050 + components: + - type: Transform + pos: -8.5,62.5 + parent: 2 + - uid: 33051 + components: + - type: Transform + pos: -10.5,63.5 + parent: 2 + - uid: 33052 + components: + - type: Transform + pos: -11.5,62.5 + parent: 2 + - uid: 33053 + components: + - type: Transform + pos: -10.5,61.5 + parent: 2 + - uid: 33054 + components: + - type: Transform + pos: -8.5,61.5 + parent: 2 + - uid: 33055 + components: + - type: Transform + pos: -8.5,63.5 + parent: 2 + - uid: 33056 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 33057 + components: + - type: Transform + pos: -11.5,61.5 + parent: 2 + - uid: 37558 + components: + - type: Transform + pos: -85.5,99.5 + parent: 2 + - uid: 37559 + components: + - type: Transform + pos: -84.5,99.5 + parent: 2 + - uid: 37560 + components: + - type: Transform + pos: -84.5,100.5 + parent: 2 + - uid: 37561 + components: + - type: Transform + pos: -84.5,98.5 + parent: 2 + - uid: 37562 + components: + - type: Transform + pos: -83.5,99.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 8565 + components: + - type: Transform + pos: -120.5,42.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + pos: -127.5,97.5 + parent: 2 + - uid: 20977 + components: + - type: Transform + pos: -70.5,170.5 + parent: 2 +- proto: AutolatheMachineCircuitboard + entities: + - uid: 4779 + components: + - type: Transform + pos: -109.3481,35.692173 + parent: 2 +- proto: BackgammonBoard + entities: + - uid: 1685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.277527,4.5693884 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: 107.51384,53.42115 + parent: 2 +- proto: BalloonCorgi + entities: + - uid: 10468 + components: + - type: Transform + pos: -19.574574,87.34614 + parent: 2 +- proto: BananaPhoneInstrument + entities: + - uid: 24241 + components: + - type: Transform + pos: -69.592896,92.75132 + parent: 2 +- proto: BannerCargo + entities: + - uid: 1615 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 11445 + components: + - type: Transform + pos: -42.5,69.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + pos: -38.5,69.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 12009 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 +- proto: BannerEngineering + entities: + - uid: 11447 + components: + - type: Transform + pos: -47.5,75.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + pos: -47.5,79.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: -99.5,39.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: -99.5,43.5 + parent: 2 + - uid: 27741 + components: + - type: Transform + pos: -86.5,39.5 + parent: 2 + - uid: 27742 + components: + - type: Transform + pos: -86.5,43.5 + parent: 2 + - uid: 28771 + components: + - type: Transform + pos: -113.5,50.5 + parent: 2 + - uid: 28773 + components: + - type: Transform + pos: -119.5,50.5 + parent: 2 + - uid: 28774 + components: + - type: Transform + pos: -120.5,49.5 + parent: 2 + - uid: 28812 + components: + - type: Transform + pos: -112.5,49.5 + parent: 2 +- proto: BannerMedical + entities: + - uid: 11449 + components: + - type: Transform + pos: -33.5,83.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + pos: -33.5,87.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: -11.5,171.5 + parent: 2 + - uid: 22996 + components: + - type: Transform + pos: -9.498609,184.50021 + parent: 2 + - uid: 22997 + components: + - type: Transform + pos: -14.5,184.5 + parent: 2 + - uid: 25094 + components: + - type: Transform + pos: -5.5,167.5 + parent: 2 + - uid: 25097 + components: + - type: Transform + pos: -5.5,165.5 + parent: 2 + - uid: 25801 + components: + - type: Transform + pos: -11.5,167.5 + parent: 2 +- proto: BannerScience + entities: + - uid: 11451 + components: + - type: Transform + pos: -47.5,83.5 + parent: 2 + - uid: 11452 + components: + - type: Transform + pos: -47.5,87.5 + parent: 2 + - uid: 20344 + components: + - type: Transform + pos: -66.5,159.5 + parent: 2 + - uid: 20948 + components: + - type: Transform + pos: -66.5,155.5 + parent: 2 +- proto: BannerSecurity + entities: + - uid: 3174 + components: + - type: Transform + pos: 68.5,36.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: 73.5,41.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 69.5,41.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: 68.5,32.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: 75.5,55.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: 77.5,68.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: 65.5,68.5 + parent: 2 + - uid: 11443 + components: + - type: Transform + pos: -33.5,79.5 + parent: 2 + - uid: 11444 + components: + - type: Transform + pos: -33.5,75.5 + parent: 2 +- proto: Barricade + entities: + - uid: 1178 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,98.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,100.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + pos: -79.5,143.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 84.5,22.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,211.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,208.5 + parent: 2 + - uid: 13432 + components: + - type: Transform + pos: -20.5,95.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: 5.5,75.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + pos: 80.5,24.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,210.5 + parent: 2 + - uid: 22396 + components: + - type: Transform + pos: 77.5,46.5 + parent: 2 + - uid: 24255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,96.5 + parent: 2 + - uid: 36206 + components: + - type: Transform + pos: -57.5,176.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 2635 + components: + - type: Transform + pos: -128.5,90.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: -113.5,99.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,45.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: 79.5,42.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: 78.5,46.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,156.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,153.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: 4.5,75.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: -81.5,88.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,108.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,83.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + pos: -83.5,149.5 + parent: 2 + - uid: 20652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,104.5 + parent: 2 + - uid: 22737 + components: + - type: Transform + pos: -97.5,154.5 + parent: 2 + - uid: 22817 + components: + - type: Transform + pos: -79.5,149.5 + parent: 2 + - uid: 24215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.5,104.5 + parent: 2 + - uid: 26817 + components: + - type: Transform + pos: -97.5,157.5 + parent: 2 + - uid: 27682 + components: + - type: Transform + pos: -92.5,149.5 + parent: 2 + - uid: 39172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 3052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,99.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,107.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,108.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: 79.5,43.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,95.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,106.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + pos: -79.5,154.5 + parent: 2 + - uid: 22897 + components: + - type: Transform + pos: -80.5,154.5 + parent: 2 + - uid: 24163 + components: + - type: Transform + pos: -128.5,91.5 + parent: 2 +- proto: BarSign + entities: + - uid: 3340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,74.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: -86.5,92.5 + parent: 2 + - uid: 27896 + components: + - type: Transform + pos: -16.5,60.5 + parent: 2 +- proto: BasaltRandom + entities: + - uid: 3798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,34.5 + parent: 2 + - uid: 11073 + components: + - type: Transform + pos: -115.5,63.5 + parent: 2 + - uid: 21359 + components: + - type: Transform + pos: -132.5,57.5 + parent: 2 + - uid: 21360 + components: + - type: Transform + pos: -130.5,60.5 + parent: 2 + - uid: 27326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,31.5 + parent: 2 + - uid: 27327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,30.5 + parent: 2 + - uid: 28379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,55.5 + parent: 2 + - uid: 28484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,57.5 + parent: 2 + - uid: 28536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,40.5 + parent: 2 + - uid: 28539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,37.5 + parent: 2 + - uid: 28650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,56.5 + parent: 2 + - uid: 28651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,56.5 + parent: 2 + - uid: 28653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,56.5 + parent: 2 + - uid: 28654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,57.5 + parent: 2 + - uid: 28655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,58.5 + parent: 2 + - uid: 28658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,54.5 + parent: 2 + - uid: 28659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,54.5 + parent: 2 + - uid: 28664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,62.5 + parent: 2 + - uid: 28666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,50.5 + parent: 2 + - uid: 28667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,48.5 + parent: 2 + - uid: 28668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,46.5 + parent: 2 + - uid: 28669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,46.5 + parent: 2 + - uid: 28670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,45.5 + parent: 2 + - uid: 28671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,41.5 + parent: 2 + - uid: 28672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,38.5 + parent: 2 + - uid: 28673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,39.5 + parent: 2 + - uid: 28674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,38.5 + parent: 2 + - uid: 28928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,35.5 + parent: 2 + - uid: 29078 + components: + - type: Transform + pos: -122.5,44.5 + parent: 2 + - uid: 29079 + components: + - type: Transform + pos: -123.5,45.5 + parent: 2 + - uid: 29080 + components: + - type: Transform + pos: -123.5,51.5 + parent: 2 + - uid: 29084 + components: + - type: Transform + pos: -114.5,68.5 + parent: 2 + - uid: 29085 + components: + - type: Transform + pos: -116.5,69.5 + parent: 2 + - uid: 29087 + components: + - type: Transform + pos: -118.5,68.5 + parent: 2 + - uid: 29088 + components: + - type: Transform + pos: -119.5,68.5 + parent: 2 + - uid: 29302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,41.5 + parent: 2 + - uid: 29310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,35.5 + parent: 2 + - uid: 29311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,34.5 + parent: 2 + - uid: 29312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,30.5 + parent: 2 + - uid: 29313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,31.5 + parent: 2 + - uid: 29314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,26.5 + parent: 2 + - uid: 29315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,24.5 + parent: 2 + - uid: 29316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,22.5 + parent: 2 + - uid: 29317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,20.5 + parent: 2 + - uid: 29319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,26.5 + parent: 2 + - uid: 29322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,24.5 + parent: 2 + - uid: 29323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,22.5 + parent: 2 + - uid: 29324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,24.5 + parent: 2 + - uid: 30689 + components: + - type: Transform + pos: -128.5,16.5 + parent: 2 + - uid: 30690 + components: + - type: Transform + pos: -128.5,17.5 + parent: 2 + - uid: 30727 + components: + - type: Transform + pos: -130.5,13.5 + parent: 2 + - uid: 30728 + components: + - type: Transform + pos: -136.5,11.5 + parent: 2 + - uid: 30729 + components: + - type: Transform + pos: -135.5,12.5 + parent: 2 + - uid: 30730 + components: + - type: Transform + pos: -140.5,9.5 + parent: 2 + - uid: 30731 + components: + - type: Transform + pos: -144.5,14.5 + parent: 2 + - uid: 30732 + components: + - type: Transform + pos: -148.5,10.5 + parent: 2 + - uid: 30733 + components: + - type: Transform + pos: -150.5,7.5 + parent: 2 + - uid: 30734 + components: + - type: Transform + pos: -147.5,7.5 + parent: 2 + - uid: 30735 + components: + - type: Transform + pos: -145.5,8.5 + parent: 2 + - uid: 30736 + components: + - type: Transform + pos: -144.5,8.5 + parent: 2 + - uid: 30738 + components: + - type: Transform + pos: -121.5,14.5 + parent: 2 + - uid: 30739 + components: + - type: Transform + pos: -119.5,17.5 + parent: 2 + - uid: 30868 + components: + - type: Transform + pos: -93.5,30.5 + parent: 2 + - uid: 30871 + components: + - type: Transform + pos: -96.5,23.5 + parent: 2 + - uid: 30872 + components: + - type: Transform + pos: -96.5,20.5 + parent: 2 + - uid: 30876 + components: + - type: Transform + pos: -96.5,29.5 + parent: 2 + - uid: 30877 + components: + - type: Transform + pos: -85.5,29.5 + parent: 2 + - uid: 30878 + components: + - type: Transform + pos: -82.5,28.5 + parent: 2 + - uid: 30879 + components: + - type: Transform + pos: -80.5,31.5 + parent: 2 + - uid: 30880 + components: + - type: Transform + pos: -89.5,31.5 + parent: 2 + - uid: 30881 + components: + - type: Transform + pos: -90.5,21.5 + parent: 2 + - uid: 30882 + components: + - type: Transform + pos: -91.5,20.5 + parent: 2 + - uid: 43439 + components: + - type: Transform + pos: -128.5,15.5 + parent: 2 + - uid: 43441 + components: + - type: Transform + pos: -132.5,12.5 + parent: 2 + - uid: 43443 + components: + - type: Transform + pos: -124.5,11.5 + parent: 2 + - uid: 43445 + components: + - type: Transform + pos: -121.5,12.5 + parent: 2 +- proto: BaseGasCondenser + entities: + - uid: 12315 + components: + - type: Transform + anchored: False + pos: -113.5,24.5 + parent: 2 + - type: Physics + bodyType: Dynamic +- proto: Beaker + entities: + - uid: 2768 + components: + - type: Transform + pos: 26.425478,16.610603 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 26.636415,16.680916 + parent: 2 + - uid: 24221 + components: + - type: Transform + pos: -9.300873,191.60722 + parent: 2 + - uid: 24222 + components: + - type: Transform + pos: -9.537081,191.70842 + parent: 2 +- proto: Bed + entities: + - uid: 218 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 62.5,55.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 62.5,52.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: 62.5,49.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: 83.5,62.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: 80.5,52.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: -121.5,52.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 80.5,49.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + pos: 80.5,55.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: -52.5,61.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: -58.5,107.5 + parent: 2 + - uid: 8704 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 + - uid: 11933 + components: + - type: Transform + pos: -31.5,60.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: -58.5,99.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + pos: -69.5,90.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + pos: -57.5,93.5 + parent: 2 + - uid: 13975 + components: + - type: Transform + pos: -60.5,101.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + pos: -71.5,100.5 + parent: 2 + - uid: 14516 + components: + - type: Transform + pos: -68.5,81.5 + parent: 2 + - uid: 16664 + components: + - type: Transform + pos: -31.5,96.5 + parent: 2 + - uid: 19784 + components: + - type: Transform + pos: -83.5,154.5 + parent: 2 + - uid: 22702 + components: + - type: Transform + pos: 19.5,195.5 + parent: 2 + - uid: 22703 + components: + - type: Transform + pos: 19.5,193.5 + parent: 2 + - uid: 22704 + components: + - type: Transform + pos: 21.5,193.5 + parent: 2 + - uid: 22728 + components: + - type: Transform + pos: 4.5,182.5 + parent: 2 + - uid: 23240 + components: + - type: Transform + pos: 21.5,195.5 + parent: 2 + - uid: 23311 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 + - uid: 23479 + components: + - type: Transform + pos: -23.5,200.5 + parent: 2 +- proto: BedsheetBlack + entities: + - uid: 5243 + components: + - type: Transform + pos: -52.5,61.5 + parent: 2 +- proto: BedsheetBrigmedic + entities: + - uid: 37113 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 10954 + components: + - type: Transform + pos: -31.5,60.5 + parent: 2 + - uid: 14520 + components: + - type: Transform + pos: -68.5,81.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 19486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,96.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 5467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,52.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 3920 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: -69.5,90.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 23313 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 23610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,195.5 + parent: 2 + - uid: 23611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,195.5 + parent: 2 + - uid: 23612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,193.5 + parent: 2 + - uid: 23613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,193.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 36964 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 4696 + components: + - type: Transform + pos: 83.5,62.5 + parent: 2 + - uid: 23358 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 3790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,194.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,193.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,194.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,190.5 + parent: 2 + - uid: 23480 + components: + - type: Transform + pos: -23.5,200.5 + parent: 2 + - uid: 28082 + components: + - type: Transform + pos: -5.5,191.5 + parent: 2 + - uid: 28395 + components: + - type: Transform + pos: -5.5,193.5 + parent: 2 + - uid: 30908 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 30909 + components: + - type: Transform + pos: -0.5,0.5 + parent: 30902 +- proto: BedsheetMime + entities: + - uid: 13970 + components: + - type: Transform + pos: -58.5,99.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 1734 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 11765 + components: + - type: Transform + pos: -83.5,154.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 4127 + components: + - type: Transform + pos: 80.5,55.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 62.5,49.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 62.5,52.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 62.5,55.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: -58.5,107.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: 80.5,49.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: 80.5,52.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + pos: -71.5,100.5 + parent: 2 + - uid: 13982 + components: + - type: Transform + pos: -60.5,101.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + pos: -57.5,93.5 + parent: 2 +- proto: Bible + entities: + - uid: 12187 + components: + - type: Transform + pos: -52.500626,62.46312 + parent: 2 +- proto: BlastDoor + entities: + - uid: 195 + components: + - type: Transform + pos: 31.5,60.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 31.5,61.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 31.5,59.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -137.5,107.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: -137.5,106.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: 67.5,61.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: -121.5,47.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: -98.5,176.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: -98.5,175.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: -98.5,174.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: -137.5,108.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,176.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: -12.5,76.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: -10.5,76.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + pos: -11.5,76.5 + parent: 2 + - uid: 18028 + components: + - type: Transform + pos: -82.5,149.5 + parent: 2 + - uid: 18423 + components: + - type: Transform + pos: -81.5,149.5 + parent: 2 + - uid: 19393 + components: + - type: Transform + pos: -80.5,149.5 + parent: 2 +- proto: BlastDoorBridgeOpen + entities: + - uid: 4380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,110.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,110.5 + parent: 2 + - uid: 18170 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 18300 + components: + - type: Transform + pos: -34.5,109.5 + parent: 2 + - uid: 18309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,111.5 + parent: 2 + - uid: 18310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,111.5 + parent: 2 + - uid: 18311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,110.5 + parent: 2 + - uid: 18320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,110.5 + parent: 2 + - uid: 18327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,110.5 + parent: 2 + - uid: 18330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,110.5 + parent: 2 + - uid: 18332 + components: + - type: Transform + pos: -46.5,109.5 + parent: 2 + - uid: 18335 + components: + - type: Transform + pos: -46.5,108.5 + parent: 2 + - uid: 18338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,110.5 + parent: 2 + - uid: 18342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,110.5 + parent: 2 + - uid: 18344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,111.5 + parent: 2 + - uid: 18346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,111.5 + parent: 2 + - uid: 18362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,109.5 + parent: 2 + - uid: 18364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,109.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 1203 + components: + - type: Transform + pos: -94.5,175.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,80.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,80.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: 92.5,49.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: 92.5,48.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: 92.5,47.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: 98.5,49.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: 98.5,48.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: 98.5,47.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 98.5,57.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: 98.5,58.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: 98.5,59.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: 92.5,57.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: 92.5,58.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: 92.5,59.5 + parent: 2 + - uid: 21273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,148.5 + parent: 2 + - uid: 26313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,57.5 + parent: 2 + - uid: 28827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,52.5 + parent: 2 + - uid: 28918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,52.5 + parent: 2 + - uid: 29455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,22.5 + parent: 2 + - uid: 32470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,147.5 + parent: 2 + - uid: 36845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,80.5 + parent: 2 + - uid: 38292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,161.5 + parent: 2 + - uid: 38293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,161.5 + parent: 2 + - uid: 38294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,161.5 + parent: 2 + - uid: 38295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,161.5 + parent: 2 + - uid: 38296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,161.5 + parent: 2 + - uid: 38297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,161.5 + parent: 2 + - uid: 38298 + components: + - type: Transform + pos: -92.5,160.5 + parent: 2 + - uid: 38299 + components: + - type: Transform + pos: -92.5,159.5 + parent: 2 + - uid: 38300 + components: + - type: Transform + pos: -92.5,158.5 + parent: 2 + - uid: 38302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,80.5 + parent: 2 + - uid: 38310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 2 + - uid: 38311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-9.5 + parent: 2 + - uid: 38312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 2 + - uid: 38313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-11.5 + parent: 2 + - uid: 38314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 2 + - uid: 38315 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 38316 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 38317 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 38318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 2 + - uid: 38319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + - uid: 38320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 38321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 2 + - uid: 38322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 2 + - uid: 38325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 2 + - uid: 38326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - uid: 38327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,69.5 + parent: 2 + - uid: 38328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,69.5 + parent: 2 + - uid: 38329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,70.5 + parent: 2 + - uid: 38330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,70.5 + parent: 2 + - uid: 38331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,70.5 + parent: 2 + - uid: 38332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,70.5 + parent: 2 + - uid: 38333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,70.5 + parent: 2 + - uid: 38334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,70.5 + parent: 2 + - uid: 38336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,70.5 + parent: 2 + - uid: 38337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,70.5 + parent: 2 + - uid: 38338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,70.5 + parent: 2 + - uid: 38339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,70.5 + parent: 2 + - uid: 38340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,70.5 + parent: 2 + - uid: 38341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,70.5 + parent: 2 + - uid: 38342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,69.5 + parent: 2 + - uid: 38343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,69.5 + parent: 2 + - uid: 38345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,68.5 + parent: 2 + - uid: 38347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,68.5 + parent: 2 + - uid: 38348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,68.5 + parent: 2 + - uid: 38349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,68.5 + parent: 2 + - uid: 38350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,68.5 + parent: 2 + - uid: 38351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,68.5 + parent: 2 + - uid: 38352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,67.5 + parent: 2 + - uid: 38353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,67.5 + parent: 2 + - uid: 38354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,66.5 + parent: 2 + - uid: 38355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,66.5 + parent: 2 + - uid: 38356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,65.5 + parent: 2 + - uid: 38357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,65.5 + parent: 2 + - uid: 38358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,57.5 + parent: 2 + - uid: 38360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,57.5 + parent: 2 + - uid: 38361 + components: + - type: Transform + pos: -113.5,56.5 + parent: 2 + - uid: 38362 + components: + - type: Transform + pos: -113.5,55.5 + parent: 2 + - uid: 38371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 38372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,202.5 + parent: 2 + - uid: 38373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,202.5 + parent: 2 + - uid: 38374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,202.5 + parent: 2 + - uid: 38375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,202.5 + parent: 2 +- proto: BlastDoorWindows + entities: + - uid: 26 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 64 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 68 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 920 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 +- proto: BlockGameArcadeComputerCircuitboard + entities: + - uid: 17155 + components: + - type: Transform + pos: -83.4139,75.74097 + parent: 2 +- proto: Bonfire + entities: + - uid: 13920 + components: + - type: Transform + pos: -65.5,100.5 + parent: 2 +- proto: BookAtmosAirAlarms + entities: + - uid: 29890 + components: + - type: Transform + pos: -97.7931,34.477806 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 29891 + components: + - type: Transform + pos: -97.5431,34.75762 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 29889 + components: + - type: Transform + pos: -97.9806,34.74343 + parent: 2 +- proto: BookAtmosWaste + entities: + - uid: 29892 + components: + - type: Transform + pos: -97.34898,34.49378 + parent: 2 +- proto: BookBartendersManual + entities: + - uid: 5324 + components: + - type: Transform + pos: -31.541836,59.604336 + parent: 2 +- proto: BookBase + entities: + - uid: 26605 + components: + - type: Transform + pos: -68.81447,83.5403 + parent: 2 +- proto: BookChemicalCompendium + entities: + - uid: 14252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.430767,191.42603 + parent: 2 + - uid: 22854 + components: + - type: Transform + pos: -70.58099,82.61638 + parent: 2 +- proto: BookEngineersHandbook + entities: + - uid: 14537 + components: + - type: Transform + pos: -70.352486,82.507904 + parent: 2 +- proto: BookMorgue + entities: + - uid: 1246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.454327,-3.3405151 + parent: 2 +- proto: BookRandom + entities: + - uid: 14489 + components: + - type: Transform + pos: -60.29707,79.550514 + parent: 2 + - uid: 14513 + components: + - type: Transform + pos: -66.25387,87.57807 + parent: 2 + - uid: 14544 + components: + - type: Transform + pos: -60.330814,77.4928 + parent: 2 + - uid: 14545 + components: + - type: Transform + pos: -61.099213,79.42159 + parent: 2 + - uid: 14546 + components: + - type: Transform + pos: -65.691475,83.20401 + parent: 2 + - uid: 14547 + components: + - type: Transform + pos: -65.364624,79.660774 + parent: 2 + - uid: 19631 + components: + - type: Transform + pos: -102.475845,86.501526 + parent: 2 + - uid: 28375 + components: + - type: Transform + pos: 100.46572,49.55293 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 4970 + components: + - type: Transform + pos: -60.240967,78.918625 + parent: 2 + - uid: 8120 + components: + - type: Transform + pos: -124.451744,53.6946 + parent: 2 + - uid: 11749 + components: + - type: Transform + pos: -79.310356,151.33778 + parent: 2 + - uid: 14444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.556984,77.37814 + parent: 2 + - uid: 14539 + components: + - type: Transform + pos: -70.36373,82.069374 + parent: 2 + - uid: 14573 + components: + - type: Transform + pos: -61.908905,87.50834 + parent: 2 +- proto: BookSecurity + entities: + - uid: 35787 + components: + - type: Transform + pos: -102.41319,102.532074 + parent: 2 +- proto: Bookshelf + entities: + - uid: 14739 + components: + - type: Transform + pos: -78.5,73.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 1836 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: -64.5,77.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: -60.5,84.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: -118.5,40.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: -60.5,80.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + pos: -29.5,96.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + pos: -24.5,96.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + pos: -61.5,84.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: 0.5,86.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + pos: -1.5,86.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + pos: -0.5,86.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + pos: -62.5,77.5 + parent: 2 + - uid: 13910 + components: + - type: Transform + pos: -63.5,77.5 + parent: 2 + - uid: 13911 + components: + - type: Transform + pos: -61.5,80.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + pos: -62.5,79.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + pos: -62.5,78.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + pos: -65.5,77.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: -78.5,96.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + pos: -65.5,80.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: -66.5,77.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + pos: -65.5,87.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + pos: -65.5,85.5 + parent: 2 + - uid: 14497 + components: + - type: Transform + pos: -65.5,84.5 + parent: 2 + - uid: 14517 + components: + - type: Transform + pos: -66.5,84.5 + parent: 2 + - uid: 16586 + components: + - type: Transform + pos: -26.5,96.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: -90.5,179.5 + parent: 2 + - uid: 20562 + components: + - type: Transform + pos: -90.5,178.5 + parent: 2 + - uid: 20563 + components: + - type: Transform + pos: -90.5,177.5 + parent: 2 + - uid: 27304 + components: + - type: Transform + pos: -119.5,41.5 + parent: 2 + - uid: 27306 + components: + - type: Transform + pos: -115.5,40.5 + parent: 2 + - uid: 28389 + components: + - type: Transform + pos: -113.5,41.5 + parent: 2 + - uid: 29091 + components: + - type: Transform + pos: -117.5,40.5 + parent: 2 + - uid: 29183 + components: + - type: Transform + pos: -114.5,40.5 + parent: 2 + - uid: 32467 + components: + - type: Transform + pos: -27.5,96.5 + parent: 2 + - uid: 33714 + components: + - type: Transform + pos: -72.5,94.5 + parent: 2 + - uid: 33803 + components: + - type: Transform + pos: -28.5,96.5 + parent: 2 + - uid: 33809 + components: + - type: Transform + pos: -25.5,96.5 + parent: 2 + - uid: 37931 + components: + - type: Transform + pos: -73.5,91.5 + parent: 2 + - uid: 39178 + components: + - type: Transform + pos: -70.5,94.5 + parent: 2 + - uid: 39179 + components: + - type: Transform + pos: -71.5,94.5 + parent: 2 +- proto: BookSun + entities: + - uid: 19250 + components: + - type: Transform + pos: -79.58147,150.79973 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 8888 + components: + - type: Transform + pos: -84.5,81.5 + parent: 2 + - uid: 10995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,61.5 + parent: 2 +- proto: BoozeDispenserMachineCircuitboard + entities: + - uid: 1536 + components: + - type: Transform + pos: -59.396473,-11.486157 + parent: 2 +- proto: BorgCharger + entities: + - uid: 7798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,134.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,126.5 + parent: 2 + - uid: 17387 + components: + - type: Transform + pos: -80.5,41.5 + parent: 2 + - uid: 20902 + components: + - type: Transform + pos: -73.5,178.5 + parent: 2 + - uid: 28834 + components: + - type: Transform + pos: -105.5,48.5 + parent: 2 + - uid: 29101 + components: + - type: Transform + pos: 88.5,59.5 + parent: 2 +- proto: BorgModuleClowning + entities: + - uid: 11641 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: -76.35535,167.38187 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 21218 + components: + - type: Transform + parent: 22881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22318 + components: + - type: Transform + parent: 23370 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22849 + components: + - type: Transform + pos: -24.345762,191.5903 + parent: 2 + - uid: 23642 + components: + - type: Transform + pos: -0.7508354,199.84177 + parent: 2 +- proto: BoxBeanbag + entities: + - uid: 15358 + components: + - type: Transform + pos: 57.402885,60.641674 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 11146 + components: + - type: Transform + pos: -3.4669113,73.563354 + parent: 2 + - uid: 23214 + components: + - type: Transform + pos: -26.617878,199.17981 + parent: 2 + - uid: 23412 + components: + - type: Transform + pos: -9.367075,210.53947 + parent: 2 +- proto: BoxCardboard + entities: + - uid: 5036 + components: + - type: Transform + pos: 99.59243,54.537125 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: 99.326805,54.724625 + parent: 2 +- proto: BoxDonkSoftBox + entities: + - uid: 2434 + components: + - type: Transform + pos: 6.552574,70.62181 + parent: 2 + - uid: 8344 + components: + - type: Transform + pos: 6.83445,70.68221 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: 6.8747215,70.62181 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: 6.5485077,70.68411 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 22355 + components: + - type: Transform + pos: 80.607414,60.629074 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 4191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.688354,65.49275 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: 67.24002,67.66026 + parent: 2 + - uid: 10502 + components: + - type: Transform + pos: -17.306055,84.71016 + parent: 2 + - uid: 14665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.50675,85.526566 + parent: 2 + - uid: 14755 + components: + - type: Transform + pos: -74.53432,74.75082 + parent: 2 + - uid: 19677 + components: + - type: Transform + pos: -79.64161,151.62685 + parent: 2 + - uid: 20189 + components: + - type: Transform + pos: -81.13405,180.54584 + parent: 2 + - uid: 21410 + components: + - type: Transform + pos: -60.636093,156.50987 + parent: 2 + - uid: 24228 + components: + - type: Transform + pos: -42.731445,103.57777 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 979 + components: + - type: Transform + pos: -31.805882,-5.298889 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: 26.425478,20.524664 + parent: 2 + - uid: 4192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.45398,65.60213 + parent: 2 + - uid: 10500 + components: + - type: Transform + pos: -17.812214,84.71016 + parent: 2 + - uid: 14664 + components: + - type: Transform + pos: -74.06702,83.48009 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: -74.6468,75.02068 + parent: 2 + - uid: 17594 + components: + - type: Transform + pos: -1.5766506,76.468956 + parent: 2 + - uid: 23067 + components: + - type: Transform + pos: -19.525314,177.57477 + parent: 2 + - uid: 23081 + components: + - type: Transform + pos: -19.255362,177.7097 + parent: 2 + - uid: 24227 + components: + - type: Transform + pos: -43.170116,103.67897 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 2776 + components: + - type: Transform + pos: 26.706728,20.665289 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 975 + components: + - type: Transform + pos: -31.903364,-5.59124 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 62.473038,44.62198 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: 70.68317,43.51524 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: 68.46231,67.62535 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: 95.609985,53.669777 + parent: 2 + - uid: 14648 + components: + - type: Transform + pos: -77.00274,83.513824 + parent: 2 + - uid: 14756 + components: + - type: Transform + pos: -74.66929,74.52593 + parent: 2 + - uid: 18693 + components: + - type: Transform + pos: -1.2617064,76.468956 + parent: 2 + - uid: 28727 + components: + - type: Transform + pos: 70.3138,51.689976 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 10501 + components: + - type: Transform + pos: -17.576008,84.69892 + parent: 2 + - uid: 10690 + components: + - type: Transform + pos: -5.123244,86.64313 + parent: 2 + - uid: 20376 + components: + - type: Transform + pos: -83.844,165.52818 + parent: 2 + - uid: 23082 + components: + - type: Transform + pos: -18.670467,177.57477 + parent: 2 + - uid: 24229 + components: + - type: Transform + pos: -42.32652,103.6115 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 14754 + components: + - type: Transform + pos: -74.51182,75.279305 + parent: 2 + - uid: 28155 + components: + - type: Transform + pos: 70.39192,51.5181 + parent: 2 +- proto: BoxForensicPad + entities: + - uid: 11410 + components: + - type: Transform + pos: -39.308556,79.729256 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 12237 + components: + - type: Transform + pos: -39.25631,79.632744 + parent: 2 + - uid: 15366 + components: + - type: Transform + pos: 80.607414,60.3312 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: 96.67853,53.629684 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 19138 + components: + - type: Transform + pos: 21.280502,189.63757 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 12807 + components: + - type: Transform + pos: 57.41851,60.141674 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: 57.434135,59.891674 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 18967 + components: + - type: Transform + pos: -99.47205,41.195827 + parent: 2 + - uid: 25425 + components: + - type: Transform + pos: -91.77394,48.41505 + parent: 2 + - uid: 29373 + components: + - type: Transform + pos: -107.46044,36.48916 + parent: 2 +- proto: BoxMagazinePistolSubMachineGunPractice + entities: + - uid: 40158 + components: + - type: Transform + pos: 51.87152,57.657894 + parent: 2 +- proto: BoxMagazineRiflePractice + entities: + - uid: 39924 + components: + - type: Transform + pos: 51.452972,57.648796 + parent: 2 +- proto: BoxMousetrap + entities: + - uid: 10681 + components: + - type: Transform + pos: -13.420446,71.08243 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 34454 + components: + - type: Transform + pos: 20.395084,188.5535 + parent: 2 +- proto: BoxMRE + entities: + - uid: 30910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.47930908,-1.4950333 + parent: 30902 +- proto: BoxPillCanister + entities: + - uid: 15788 + components: + - type: Transform + pos: -0.7508354,199.58334 + parent: 2 + - uid: 21180 + components: + - type: Transform + parent: 22881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21256 + components: + - type: Transform + parent: 23370 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23451 + components: + - type: Transform + pos: -13.6020355,194.5705 + parent: 2 +- proto: BoxShotgunFlare + entities: + - uid: 15053 + components: + - type: Transform + pos: -47.475525,98.407745 + parent: 2 +- proto: BoxShotgunPractice + entities: + - uid: 5198 + components: + - type: Transform + pos: 51.51615,57.097054 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: 51.537422,57.011948 + parent: 2 +- proto: BoxShotgunSlug + entities: + - uid: 672 + components: + - type: Transform + pos: 57.481346,59.406624 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 23411 + components: + - type: Transform + pos: -9.614531,210.67441 + parent: 2 + - uid: 23646 + components: + - type: Transform + pos: 21.65917,189.63034 + parent: 2 +- proto: BoxSurvivalSecurity + entities: + - uid: 13916 + components: + - type: Transform + parent: 1589 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxSyringe + entities: + - uid: 2813 + components: + - type: Transform + pos: 26.687153,14.836928 + parent: 2 + - uid: 21181 + components: + - type: Transform + parent: 22881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22317 + components: + - type: Transform + parent: 23370 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22874 + components: + - type: Transform + pos: -13.738506,194.59178 + parent: 2 + - uid: 22892 + components: + - type: Transform + pos: -0.7508354,199.39645 + parent: 2 + - uid: 23644 + components: + - type: Transform + pos: 20.939299,188.55087 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 5951 + components: + - type: Transform + pos: 80.16061,60.607796 + parent: 2 +- proto: BrbSign + entities: + - uid: 10443 + components: + - type: Transform + pos: -16.281975,80.476295 + parent: 2 + - uid: 22787 + components: + - type: Transform + pos: -15.348286,190.62274 + parent: 2 +- proto: BriefcaseBrown + entities: + - uid: 14536 + components: + - type: Transform + pos: -68.41783,83.57612 + parent: 2 +- proto: BriefcaseSyndie + entities: + - uid: 1791 + components: + - type: Transform + pos: -21.603554,-12.219504 + parent: 2 +- proto: BrigTimer + entities: + - uid: 3905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 41925: + - Start: Close + - Timer: AutoClose + - Timer: Open + 41915: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 3906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 41974: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 3907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,55.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,55.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5160: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 5063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6744: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 6606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5153: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 34594 + components: + - type: Transform + pos: -15.5,85.5 + parent: 2 +- proto: BrokenBottle + entities: + - uid: 34611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.92957,88.11097 + parent: 2 +- proto: Brutepack + entities: + - uid: 13427 + components: + - type: Transform + pos: -0.5920167,200.32387 + parent: 2 + - uid: 25353 + components: + - type: Transform + parent: 25348 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Brutepack1 + entities: + - uid: 24237 + components: + - type: Transform + pos: -70.90021,92.537224 + parent: 2 + - uid: 24238 + components: + - type: Transform + pos: -70.90021,92.537224 + parent: 2 + - uid: 24239 + components: + - type: Transform + pos: -70.90021,92.537224 + parent: 2 + - uid: 24240 + components: + - type: Transform + pos: -70.91146,92.503494 + parent: 2 + - uid: 26379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.899906,188.3211 + parent: 2 + - uid: 26380 + components: + - type: Transform + pos: -39.014526,191.36833 + parent: 2 +- proto: Bucket + entities: + - uid: 2835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.709835,18.930252 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -1.284872,80.65447 + parent: 2 + - uid: 14230 + components: + - type: Transform + pos: 0.7562828,65.55507 + parent: 2 + - uid: 14297 + components: + - type: Transform + pos: -73.20858,106.61154 + parent: 2 + - uid: 14323 + components: + - type: Transform + pos: -73.39605,106.81394 + parent: 2 + - uid: 19692 + components: + - type: Transform + pos: -68.56223,96.6696 + parent: 2 + - uid: 24037 + components: + - type: Transform + pos: -25.669641,206.7646 + parent: 2 + - uid: 30894 + components: + - type: Transform + pos: -114.77805,93.67533 + parent: 2 + - uid: 31574 + components: + - type: Transform + pos: 0.6312828,65.39882 + parent: 2 + - uid: 31576 + components: + - type: Transform + pos: 0.8656578,65.695694 + parent: 2 + - uid: 33430 + components: + - type: Transform + pos: -66.75926,68.866104 + parent: 2 + - uid: 38385 + components: + - type: Transform + parent: 38381 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ButchCleaver + entities: + - uid: 12993 + components: + - type: Transform + pos: -11.520315,62.39587 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 197 + components: + - type: Transform + pos: -36.5,72.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -17.5,64.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -33.5,81.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 65.5,57.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: 65.5,58.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: 65.5,55.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 65.5,56.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -107.5,23.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 6.5,71.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -92.5,94.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -92.5,93.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 57.5,54.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: 67.5,35.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 68.5,35.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 68.5,33.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: 69.5,35.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -42.5,57.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 70.5,35.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 69.5,33.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 70.5,33.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 71.5,33.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 65.5,35.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 65.5,33.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 67.5,33.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 66.5,33.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 72.5,33.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: 72.5,34.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: 56.5,52.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 83.5,37.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: -60.5,99.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 56.5,54.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 70.5,21.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 70.5,22.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: -59.5,151.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -40.5,73.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -123.5,57.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -122.5,57.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -121.5,57.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -120.5,57.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -119.5,57.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 74.5,20.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: -127.5,87.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: -115.5,20.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -18.5,103.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: -2.5,179.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: -64.5,-8.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: -69.5,-8.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: -72.5,-8.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: -66.5,-13.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: -123.5,95.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: -5.5,173.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: -40.5,76.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: -40.5,74.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: -40.5,75.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: -109.5,61.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: -31.5,205.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: -43.5,57.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: -84.5,89.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: -122.5,109.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: -122.5,105.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: 72.5,35.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: 72.5,37.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: -18.5,94.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: 105.5,45.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 116.5,48.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: -87.5,87.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: -80.5,92.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: 66.5,60.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: 3.5,88.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: -101.5,26.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: -106.5,25.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: -120.5,65.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: -92.5,92.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: -38.5,81.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: -39.5,81.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: 64.5,35.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 72.5,36.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: 70.5,37.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: -41.5,81.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: -42.5,81.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: 70.5,36.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: -35.5,73.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: -122.5,106.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: -122.5,52.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: 80.5,39.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: -106.5,100.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: -103.5,26.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: 84.5,65.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: -126.5,52.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: -127.5,52.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: -127.5,48.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: -127.5,49.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: -127.5,50.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: -127.5,47.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: -127.5,46.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: -127.5,45.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: -83.5,81.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: -134.5,49.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: -134.5,46.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: -133.5,41.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: -86.5,83.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: 71.5,28.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -106.5,26.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -87.5,83.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: -105.5,26.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: -85.5,83.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: -134.5,43.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: -134.5,45.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: 73.5,20.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -137.5,50.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: -82.5,81.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: -83.5,82.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: -136.5,40.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: -29.5,206.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: -8.5,165.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: -133.5,49.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: 65.5,69.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: 66.5,69.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: 84.5,42.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: 91.5,61.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: -134.5,47.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -88.5,86.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -87.5,89.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: -122.5,108.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 0.5,174.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: -86.5,89.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: -85.5,89.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: -77.5,74.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -83.5,83.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -82.5,83.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: 7.5,65.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: -143.5,107.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: 89.5,52.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: -135.5,49.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: -17.5,167.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: -119.5,53.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: -127.5,43.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: 6.5,80.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: 112.5,45.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: 111.5,62.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: 18.5,172.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: -60.5,103.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: -58.5,92.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: -15.5,99.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: 46.5,56.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: -134.5,48.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: -58.5,93.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: -132.5,39.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: -133.5,39.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: -59.5,95.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: -134.5,41.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: -59.5,96.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: -134.5,42.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: -18.5,102.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: -63.5,63.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: -134.5,39.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: 5.5,173.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: 5.5,172.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: 113.5,60.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: 112.5,61.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: 112.5,47.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 71.5,57.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 19.5,172.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: -60.5,101.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: -29.5,205.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: -127.5,44.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: -60.5,104.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: -94.5,53.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: 20.5,172.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: 8.5,70.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: 7.5,71.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: -118.5,65.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: 73.5,23.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: 72.5,23.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: 71.5,23.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 71.5,24.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: 70.5,23.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: 67.5,22.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: 67.5,21.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: 67.5,20.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: 71.5,26.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: 71.5,27.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: 25.5,198.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: -132.5,107.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + pos: -130.5,107.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -92.5,53.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: -131.5,107.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -128.5,98.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: -133.5,107.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: 71.5,65.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + pos: 71.5,59.5 + parent: 2 + - uid: 6045 + components: + - type: Transform + pos: 84.5,53.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: 85.5,53.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: 84.5,64.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: 85.5,51.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: 84.5,51.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: 84.5,50.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: 84.5,48.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: 84.5,47.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: 84.5,46.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: 85.5,54.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: 85.5,55.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: 85.5,56.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: 84.5,56.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: 84.5,57.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: 84.5,58.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: 84.5,59.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: 84.5,60.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: 83.5,60.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: 85.5,60.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: 85.5,61.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: 86.5,61.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: 84.5,66.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: 83.5,66.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: 82.5,66.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: 81.5,66.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: 80.5,66.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: 79.5,66.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + pos: 85.5,65.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: 86.5,65.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: 86.5,64.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + pos: 87.5,64.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: 87.5,63.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 82.5,65.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: 82.5,64.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: 82.5,63.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: 112.5,46.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: 68.5,64.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: 68.5,65.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: 68.5,66.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 67.5,66.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: 66.5,66.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: 69.5,66.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: 70.5,66.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: 71.5,66.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: 72.5,66.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: 73.5,66.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: 74.5,66.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: 75.5,66.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: 76.5,66.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: 76.5,67.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: 76.5,68.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: 75.5,68.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: 74.5,68.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: 73.5,68.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: 72.5,68.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: 71.5,68.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: 70.5,68.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: 69.5,68.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: 68.5,68.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + pos: 67.5,68.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: 66.5,68.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: 66.5,67.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: 71.5,63.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: 71.5,62.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: 71.5,61.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: 71.5,60.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: 70.5,60.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + pos: 69.5,60.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 71.5,58.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: 72.5,58.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: 73.5,58.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 74.5,58.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: 75.5,58.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: 76.5,58.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 77.5,58.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: -88.5,150.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: 77.5,59.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + pos: 77.5,60.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + pos: 77.5,61.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + pos: 77.5,62.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + pos: 70.5,58.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: 69.5,58.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: 72.5,60.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + pos: 73.5,60.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: 70.5,62.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: 69.5,62.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 72.5,62.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: 73.5,62.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: 63.5,62.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: -127.5,51.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: 62.5,62.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: 61.5,62.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: 60.5,62.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + pos: 59.5,62.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + pos: 58.5,62.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: 58.5,61.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 58.5,60.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: 58.5,59.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 59.5,59.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: 60.5,59.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 62.5,59.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: 63.5,59.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: 63.5,60.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 63.5,61.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: 64.5,61.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 65.5,61.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + pos: 66.5,61.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: 42.5,60.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: 66.5,64.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: 42.5,62.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: 42.5,63.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: 42.5,64.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: 42.5,65.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 55.5,62.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: 54.5,62.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: 54.5,63.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 54.5,64.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 54.5,65.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 54.5,66.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 55.5,66.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 56.5,66.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 57.5,66.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 58.5,66.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: 59.5,66.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: 60.5,66.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: 61.5,66.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: 62.5,66.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 53.5,62.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 82.5,63.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: 53.5,61.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: 52.5,61.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 51.5,61.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 50.5,61.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 49.5,61.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 48.5,61.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: 47.5,61.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: 46.5,61.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: 45.5,61.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: 44.5,61.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: 43.5,61.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: 42.5,61.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: 41.5,61.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: 42.5,66.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: 48.5,56.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: 47.5,56.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: 21.5,172.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: 45.5,62.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: 75.5,20.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: 87.5,61.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + pos: 79.5,33.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: 79.5,34.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + pos: 80.5,34.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: 80.5,35.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: 79.5,36.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: 78.5,36.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: 77.5,36.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: 76.5,36.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + pos: 75.5,36.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: 75.5,35.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + pos: 75.5,34.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: 76.5,34.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 77.5,34.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: 73.5,44.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + pos: 69.5,43.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: 78.5,34.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: 80.5,36.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: 3.5,73.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: 3.5,71.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: -134.5,40.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: 71.5,44.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: 72.5,44.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: 73.5,43.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: 118.5,48.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: 69.5,47.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: 68.5,47.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: 117.5,48.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: 72.5,47.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: 73.5,47.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: 74.5,47.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: 75.5,47.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: 75.5,46.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: 75.5,45.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: 75.5,44.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: 75.5,43.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: 75.5,42.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: 67.5,45.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: 67.5,43.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: 67.5,42.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: 70.5,48.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: 70.5,49.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: 69.5,49.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: 68.5,49.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: 67.5,49.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: 66.5,49.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: 66.5,50.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: 66.5,51.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: 66.5,52.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: 66.5,53.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: 103.5,62.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: 103.5,63.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: 103.5,64.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: 103.5,65.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: 66.5,54.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: 105.5,62.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: 105.5,63.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: 105.5,64.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: 105.5,65.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: 65.5,54.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: 64.5,54.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: 63.5,54.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: 62.5,54.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: 64.5,51.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: 113.5,62.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: 111.5,64.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: 111.5,65.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: 111.5,63.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: 113.5,63.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: 113.5,64.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: 113.5,65.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: 62.5,51.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: 66.5,48.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: 65.5,48.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: 64.5,48.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: 116.5,58.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: 117.5,58.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: 118.5,58.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: 63.5,48.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 61.5,48.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: 72.5,49.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: 73.5,49.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: 74.5,49.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: 75.5,49.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: 76.5,49.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: 77.5,49.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: 77.5,51.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: 77.5,52.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 77.5,54.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 77.5,57.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: 109.5,59.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 77.5,56.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + pos: 70.5,56.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + pos: 70.5,55.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + pos: 70.5,54.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: 70.5,53.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: 70.5,52.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: 71.5,52.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + pos: 72.5,52.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 72.5,53.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: 72.5,54.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: 72.5,55.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + pos: 92.5,49.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + pos: 92.5,48.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: 93.5,48.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + pos: 94.5,48.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + pos: 95.5,48.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + pos: 96.5,48.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: 97.5,48.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: 97.5,55.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: 97.5,54.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: 99.5,53.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: 101.5,48.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: 102.5,48.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: 103.5,48.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: 104.5,48.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: 105.5,48.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: 106.5,48.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: 107.5,48.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: 108.5,48.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: 109.5,48.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: 110.5,48.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: 111.5,48.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: 112.5,48.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: 113.5,48.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: 114.5,48.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: 115.5,48.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: 105.5,47.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: 105.5,46.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: 108.5,47.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: 108.5,46.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: 108.5,45.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: 108.5,44.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: 109.5,44.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: 97.5,49.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: 97.5,50.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: 97.5,51.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: 97.5,52.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: 97.5,53.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: 96.5,53.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: 95.5,53.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: 94.5,53.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: 93.5,53.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: 92.5,53.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: 98.5,53.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: 93.5,54.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: 112.5,44.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: 112.5,42.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: 112.5,43.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: 112.5,41.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: 93.5,52.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: 96.5,51.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: 95.5,51.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + pos: 105.5,44.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: 105.5,43.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: 105.5,42.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: 105.5,41.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: 94.5,51.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: 96.5,55.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + pos: 91.5,53.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + pos: 95.5,55.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: 90.5,53.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: 94.5,55.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + pos: 89.5,53.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: 89.5,54.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: 89.5,55.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: 89.5,56.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: 90.5,53.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: 89.5,51.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: 88.5,50.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 89.5,50.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: 88.5,56.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: 105.5,61.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: 106.5,63.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: 106.5,61.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: 107.5,61.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: 108.5,61.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: 109.5,61.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: 110.5,61.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: 111.5,61.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: 113.5,59.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: 113.5,61.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: 104.5,61.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: 103.5,61.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: 113.5,58.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: 114.5,58.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: 115.5,58.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: 112.5,58.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: 111.5,58.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: 110.5,58.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: 109.5,58.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 108.5,58.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 107.5,58.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 106.5,58.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 105.5,58.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: 104.5,58.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: 103.5,58.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: 103.5,59.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + pos: 103.5,60.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: 103.5,61.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: 113.5,57.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 89.5,57.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: 89.5,58.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: 109.5,57.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: 90.5,58.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: 91.5,58.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: 92.5,58.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: 93.5,58.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: 94.5,58.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: 95.5,58.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: 96.5,58.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: 103.5,57.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: 102.5,58.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: 101.5,58.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: 100.5,58.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: 99.5,58.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: 98.5,58.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: 69.5,37.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: 71.5,37.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: 72.5,38.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: 89.5,49.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: 89.5,48.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: 89.5,47.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: 89.5,46.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: 89.5,45.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: 89.5,44.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 89.5,43.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: 89.5,42.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + pos: 72.5,39.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: 73.5,39.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + pos: 74.5,39.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 75.5,39.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: 76.5,39.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + pos: 77.5,39.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: 79.5,39.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: 81.5,39.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + pos: 82.5,39.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: 86.5,39.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: 87.5,39.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: 88.5,42.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: 88.5,45.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: 79.5,41.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 7063 + components: + - type: Transform + pos: 68.5,39.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: 67.5,39.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: 63.5,40.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: 62.5,38.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: 57.5,39.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: 57.5,43.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: 52.5,45.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + pos: 51.5,45.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + pos: 52.5,39.5 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 + - uid: 7127 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + pos: 52.5,42.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: 58.5,51.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: 75.5,19.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: 6.5,174.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -76.5,157.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + pos: 76.5,20.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -76.5,155.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: -76.5,156.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: 77.5,20.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: -76.5,154.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -76.5,152.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: -76.5,153.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + pos: 78.5,20.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + pos: -77.5,153.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: -124.5,57.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: -110.5,61.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: 78.5,21.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: 106.5,44.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: -75.5,153.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -76.5,151.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: -75.5,151.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 88.5,61.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: -77.5,151.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: -109.5,61.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -86.5,81.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: 4.5,67.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: -60.5,105.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: -17.5,62.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: -14.5,97.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: -13.5,99.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: -85.5,81.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 83.5,35.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 83.5,34.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: 83.5,32.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: 83.5,31.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 83.5,30.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 84.5,29.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: 85.5,29.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: 87.5,29.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: 88.5,29.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 88.5,28.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: 88.5,26.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: 88.5,25.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: 88.5,24.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: 88.5,23.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + pos: 88.5,22.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: 88.5,21.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 80.5,29.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: 77.5,29.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: 76.5,29.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: 75.5,29.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: 73.5,29.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: 68.5,29.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: 71.5,30.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: 6.5,68.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: -70.5,102.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: -60.5,100.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: 8.5,71.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: -61.5,133.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: -61.5,132.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: -61.5,131.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: 89.5,61.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + pos: -61.5,130.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + pos: -61.5,134.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: -61.5,129.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + pos: -61.5,128.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + pos: -61.5,127.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: -61.5,126.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: -60.5,126.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: -59.5,126.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + pos: -59.5,125.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: -60.5,134.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: -59.5,134.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: -59.5,135.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: -60.5,130.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: -59.5,130.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -58.5,130.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: -57.5,130.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: -62.5,130.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: -63.5,130.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: -64.5,130.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: -65.5,130.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: -66.5,130.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: -67.5,128.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: -67.5,129.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: -67.5,130.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: -67.5,131.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: -67.5,132.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + pos: -68.5,129.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + pos: -69.5,129.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: -70.5,129.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: -68.5,131.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + pos: -69.5,131.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: -70.5,131.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: 8.5,69.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + pos: -62.5,126.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: -63.5,126.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: -64.5,126.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + pos: -65.5,126.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: -67.5,126.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + pos: -66.5,126.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: -62.5,134.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: -63.5,134.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: -65.5,134.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: -66.5,134.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: -67.5,134.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: -64.5,134.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: -58.5,134.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: -57.5,134.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: -58.5,126.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: -57.5,126.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + pos: -101.5,96.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: -102.5,96.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + pos: 6.5,194.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: -103.5,96.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: -107.5,66.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -70.5,99.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: -59.5,150.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: -59.5,149.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: -102.5,146.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + pos: -122.5,107.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + pos: -98.5,148.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: -92.5,155.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + pos: -93.5,155.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + pos: -94.5,155.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: -83.5,85.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: 8.5,67.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: -84.5,87.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: 8.5,68.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: 4.5,68.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: 8.5,65.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + pos: 8.5,66.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: 4.5,65.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: -83.5,86.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + pos: -86.5,87.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + pos: 6.5,65.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: -83.5,84.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: -84.5,81.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: -84.5,83.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: 5.5,65.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 4.5,66.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: 5.5,71.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: -85.5,87.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: -82.5,87.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: -83.5,87.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: 76.5,43.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: 77.5,43.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: 82.5,58.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 81.5,58.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + pos: -87.5,81.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: -83.5,89.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: -82.5,89.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 79.5,58.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: 80.5,58.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: 78.5,58.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: -108.5,23.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 8730 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: -104.5,26.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: 53.5,26.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: 53.5,25.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: -104.5,97.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: -104.5,96.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 9011 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: -64.5,113.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -42.5,-21.5 + parent: 2 + - uid: 9061 + components: + - type: Transform + pos: -44.5,-21.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: -48.5,-21.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: 23.5,183.5 + parent: 2 + - uid: 9126 + components: + - type: Transform + pos: -63.5,113.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + pos: -104.5,95.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: -110.5,23.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: -61.5,113.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + pos: -62.5,113.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: -62.5,109.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: -61.5,109.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + pos: -128.5,96.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: -58.5,106.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: -59.5,106.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + pos: -66.5,105.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: -128.5,95.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: -60.5,106.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + pos: -66.5,110.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + pos: -66.5,111.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: -66.5,112.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: -64.5,109.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + pos: -69.5,106.5 + parent: 2 + - uid: 10586 + components: + - type: Transform + pos: -70.5,106.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + pos: -70.5,105.5 + parent: 2 + - uid: 10597 + components: + - type: Transform + pos: -138.5,40.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: -137.5,38.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: -134.5,44.5 + parent: 2 + - uid: 10606 + components: + - type: Transform + pos: -14.5,99.5 + parent: 2 + - uid: 10607 + components: + - type: Transform + pos: -17.5,97.5 + parent: 2 + - uid: 10608 + components: + - type: Transform + pos: -13.5,97.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + pos: -16.5,97.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + pos: -119.5,63.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + pos: -120.5,63.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + pos: -17.5,170.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: -35.5,98.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: -70.5,104.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + pos: -102.5,148.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + pos: -120.5,105.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + pos: -18.5,101.5 + parent: 2 + - uid: 10812 + components: + - type: Transform + pos: -15.5,97.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + pos: -137.5,40.5 + parent: 2 + - uid: 10828 + components: + - type: Transform + pos: -18.5,97.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + pos: -79.5,70.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + pos: -18.5,99.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + pos: -121.5,105.5 + parent: 2 + - uid: 10849 + components: + - type: Transform + pos: -138.5,107.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + pos: -18.5,104.5 + parent: 2 + - uid: 10868 + components: + - type: Transform + pos: -137.5,39.5 + parent: 2 + - uid: 10870 + components: + - type: Transform + pos: -17.5,99.5 + parent: 2 + - uid: 10897 + components: + - type: Transform + pos: -18.5,98.5 + parent: 2 + - uid: 10898 + components: + - type: Transform + pos: -18.5,90.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + pos: -18.5,91.5 + parent: 2 + - uid: 10900 + components: + - type: Transform + pos: -18.5,92.5 + parent: 2 + - uid: 10901 + components: + - type: Transform + pos: -18.5,95.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: -70.5,100.5 + parent: 2 + - uid: 10911 + components: + - type: Transform + pos: -18.5,93.5 + parent: 2 + - uid: 10913 + components: + - type: Transform + pos: -18.5,96.5 + parent: 2 + - uid: 10920 + components: + - type: Transform + pos: -70.5,103.5 + parent: 2 + - uid: 10921 + components: + - type: Transform + pos: -58.5,91.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: 8.5,73.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + pos: -12.5,65.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + pos: -59.5,90.5 + parent: 2 + - uid: 11046 + components: + - type: Transform + pos: -103.5,17.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + pos: -107.5,17.5 + parent: 2 + - uid: 11055 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 11075 + components: + - type: Transform + pos: -109.5,17.5 + parent: 2 + - uid: 11113 + components: + - type: Transform + pos: -70.5,98.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + pos: -111.5,17.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + pos: -23.5,98.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: -114.5,26.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: -126.5,106.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: -71.5,98.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: -33.5,98.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: 6.5,73.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 8.5,76.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: -105.5,88.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + pos: -105.5,89.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + pos: -126.5,107.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + pos: 8.5,77.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: -47.5,81.5 + parent: 2 + - uid: 11272 + components: + - type: Transform + pos: -138.5,50.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + pos: -114.5,25.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: -126.5,109.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + pos: -124.5,65.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 11489 + components: + - type: Transform + pos: -122.5,64.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + pos: -124.5,66.5 + parent: 2 + - uid: 11499 + components: + - type: Transform + pos: -124.5,64.5 + parent: 2 + - uid: 11500 + components: + - type: Transform + pos: -123.5,64.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + pos: -122.5,65.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + pos: -121.5,65.5 + parent: 2 + - uid: 11570 + components: + - type: Transform + pos: 66.5,35.5 + parent: 2 + - uid: 11614 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 11624 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 11657 + components: + - type: Transform + pos: -132.5,49.5 + parent: 2 + - uid: 11673 + components: + - type: Transform + pos: -114.5,24.5 + parent: 2 + - uid: 11674 + components: + - type: Transform + pos: -126.5,108.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: -69.5,98.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + pos: -59.5,97.5 + parent: 2 + - uid: 11729 + components: + - type: Transform + pos: -4.5,181.5 + parent: 2 + - uid: 11730 + components: + - type: Transform + pos: -5.5,181.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: -5.5,182.5 + parent: 2 + - uid: 11743 + components: + - type: Transform + pos: -66.5,107.5 + parent: 2 + - uid: 11744 + components: + - type: Transform + pos: -66.5,108.5 + parent: 2 + - uid: 11772 + components: + - type: Transform + pos: -114.5,20.5 + parent: 2 + - uid: 11782 + components: + - type: Transform + pos: -46.5,73.5 + parent: 2 + - uid: 11783 + components: + - type: Transform + pos: -45.5,73.5 + parent: 2 + - uid: 11784 + components: + - type: Transform + pos: -44.5,73.5 + parent: 2 + - uid: 11787 + components: + - type: Transform + pos: -41.5,73.5 + parent: 2 + - uid: 11788 + components: + - type: Transform + pos: -41.5,72.5 + parent: 2 + - uid: 11789 + components: + - type: Transform + pos: -41.5,71.5 + parent: 2 + - uid: 11790 + components: + - type: Transform + pos: -41.5,70.5 + parent: 2 + - uid: 11791 + components: + - type: Transform + pos: -41.5,69.5 + parent: 2 + - uid: 11792 + components: + - type: Transform + pos: -41.5,68.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: -41.5,67.5 + parent: 2 + - uid: 11794 + components: + - type: Transform + pos: -41.5,66.5 + parent: 2 + - uid: 11795 + components: + - type: Transform + pos: -41.5,65.5 + parent: 2 + - uid: 11796 + components: + - type: Transform + pos: -40.5,65.5 + parent: 2 + - uid: 11797 + components: + - type: Transform + pos: -39.5,65.5 + parent: 2 + - uid: 11798 + components: + - type: Transform + pos: -39.5,66.5 + parent: 2 + - uid: 11799 + components: + - type: Transform + pos: -39.5,67.5 + parent: 2 + - uid: 11800 + components: + - type: Transform + pos: -39.5,68.5 + parent: 2 + - uid: 11801 + components: + - type: Transform + pos: -39.5,69.5 + parent: 2 + - uid: 11802 + components: + - type: Transform + pos: -39.5,70.5 + parent: 2 + - uid: 11803 + components: + - type: Transform + pos: -39.5,71.5 + parent: 2 + - uid: 11804 + components: + - type: Transform + pos: -39.5,72.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: -39.5,73.5 + parent: 2 + - uid: 11806 + components: + - type: Transform + pos: -44.5,74.5 + parent: 2 + - uid: 11807 + components: + - type: Transform + pos: -44.5,75.5 + parent: 2 + - uid: 11808 + components: + - type: Transform + pos: -44.5,76.5 + parent: 2 + - uid: 11809 + components: + - type: Transform + pos: -44.5,77.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + pos: -44.5,78.5 + parent: 2 + - uid: 11811 + components: + - type: Transform + pos: -45.5,78.5 + parent: 2 + - uid: 11812 + components: + - type: Transform + pos: -46.5,78.5 + parent: 2 + - uid: 11813 + components: + - type: Transform + pos: -47.5,78.5 + parent: 2 + - uid: 11814 + components: + - type: Transform + pos: -48.5,78.5 + parent: 2 + - uid: 11815 + components: + - type: Transform + pos: -49.5,78.5 + parent: 2 + - uid: 11816 + components: + - type: Transform + pos: -50.5,78.5 + parent: 2 + - uid: 11817 + components: + - type: Transform + pos: -51.5,78.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + pos: -51.5,77.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + pos: -51.5,76.5 + parent: 2 + - uid: 11820 + components: + - type: Transform + pos: -50.5,76.5 + parent: 2 + - uid: 11821 + components: + - type: Transform + pos: -49.5,76.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + pos: -48.5,76.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + pos: -47.5,76.5 + parent: 2 + - uid: 11824 + components: + - type: Transform + pos: -46.5,76.5 + parent: 2 + - uid: 11825 + components: + - type: Transform + pos: -45.5,76.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + pos: -44.5,79.5 + parent: 2 + - uid: 11828 + components: + - type: Transform + pos: -44.5,80.5 + parent: 2 + - uid: 11829 + components: + - type: Transform + pos: -44.5,81.5 + parent: 2 + - uid: 11830 + components: + - type: Transform + pos: -44.5,82.5 + parent: 2 + - uid: 11831 + components: + - type: Transform + pos: -44.5,83.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + pos: -44.5,84.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + pos: -45.5,84.5 + parent: 2 + - uid: 11834 + components: + - type: Transform + pos: -46.5,84.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + pos: -47.5,84.5 + parent: 2 + - uid: 11836 + components: + - type: Transform + pos: -48.5,84.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: -49.5,84.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: -50.5,84.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + pos: -51.5,84.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: -51.5,85.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + pos: -51.5,86.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + pos: -50.5,86.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + pos: -49.5,86.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + pos: -48.5,86.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + pos: -47.5,86.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + pos: -46.5,86.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: -45.5,86.5 + parent: 2 + - uid: 11848 + components: + - type: Transform + pos: -44.5,86.5 + parent: 2 + - uid: 11849 + components: + - type: Transform + pos: -44.5,85.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + pos: -32.5,98.5 + parent: 2 + - uid: 11852 + components: + - type: Transform + pos: -36.5,73.5 + parent: 2 + - uid: 11853 + components: + - type: Transform + pos: -36.5,74.5 + parent: 2 + - uid: 11854 + components: + - type: Transform + pos: -36.5,75.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + pos: -36.5,76.5 + parent: 2 + - uid: 11856 + components: + - type: Transform + pos: -36.5,77.5 + parent: 2 + - uid: 11857 + components: + - type: Transform + pos: -36.5,78.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + pos: -36.5,79.5 + parent: 2 + - uid: 11859 + components: + - type: Transform + pos: -36.5,80.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + pos: -36.5,81.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: -36.5,82.5 + parent: 2 + - uid: 11862 + components: + - type: Transform + pos: -36.5,83.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: -36.5,84.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: -36.5,85.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + pos: -36.5,86.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: -35.5,76.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: -34.5,76.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + pos: -33.5,76.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + pos: -32.5,76.5 + parent: 2 + - uid: 11870 + components: + - type: Transform + pos: -31.5,76.5 + parent: 2 + - uid: 11871 + components: + - type: Transform + pos: -30.5,76.5 + parent: 2 + - uid: 11872 + components: + - type: Transform + pos: -29.5,76.5 + parent: 2 + - uid: 11873 + components: + - type: Transform + pos: -29.5,77.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + pos: -29.5,78.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + pos: -30.5,78.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + pos: -31.5,78.5 + parent: 2 + - uid: 11877 + components: + - type: Transform + pos: -32.5,78.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + pos: -33.5,78.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + pos: -34.5,78.5 + parent: 2 + - uid: 11880 + components: + - type: Transform + pos: -35.5,78.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + pos: -35.5,84.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + pos: -34.5,84.5 + parent: 2 + - uid: 11883 + components: + - type: Transform + pos: -33.5,84.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + pos: -32.5,84.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + pos: -31.5,84.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + pos: -30.5,84.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + pos: -29.5,84.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + pos: -29.5,85.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + pos: -29.5,86.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + pos: -30.5,86.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + pos: -31.5,86.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + pos: -32.5,86.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: -33.5,86.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + pos: -34.5,86.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + pos: -35.5,86.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + pos: -36.5,87.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + pos: -44.5,87.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + pos: -40.5,77.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + pos: -40.5,78.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + pos: -40.5,79.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: -40.5,80.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: -40.5,81.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + pos: -40.5,82.5 + parent: 2 + - uid: 11904 + components: + - type: Transform + pos: -40.5,83.5 + parent: 2 + - uid: 11905 + components: + - type: Transform + pos: -40.5,84.5 + parent: 2 + - uid: 11906 + components: + - type: Transform + pos: -40.5,85.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + pos: -114.5,23.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + pos: -16.5,99.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + pos: -18.5,105.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + pos: -18.5,100.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + pos: -18.5,64.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + pos: -105.5,90.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: -47.5,102.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + pos: -105.5,17.5 + parent: 2 + - uid: 12135 + components: + - type: Transform + pos: -26.5,65.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: -35.5,97.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + pos: -47.5,103.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + pos: 4.5,88.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + pos: 5.5,88.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + pos: -19.5,191.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + pos: -117.5,63.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + pos: -118.5,64.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + pos: -114.5,22.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: 6.5,77.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + pos: 6.5,75.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + pos: -114.5,21.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + pos: -114.5,19.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: -128.5,94.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + pos: 80.5,21.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: 79.5,21.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: -112.5,23.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + pos: -137.5,107.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: -134.5,107.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + pos: -139.5,107.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: 84.5,43.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: 84.5,44.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: -109.5,23.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + pos: -106.5,23.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: -111.5,23.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + pos: -113.5,23.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: -136.5,107.5 + parent: 2 + - uid: 12908 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + pos: -113.5,19.5 + parent: 2 + - uid: 12954 + components: + - type: Transform + pos: -113.5,18.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + pos: -103.5,18.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + pos: -26.5,72.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + pos: -26.5,71.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + pos: -26.5,70.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + pos: -26.5,69.5 + parent: 2 + - uid: 13001 + components: + - type: Transform + pos: -26.5,68.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + pos: -27.5,70.5 + parent: 2 + - uid: 13003 + components: + - type: Transform + pos: -28.5,70.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: -29.5,70.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + pos: -30.5,70.5 + parent: 2 + - uid: 13006 + components: + - type: Transform + pos: -30.5,69.5 + parent: 2 + - uid: 13007 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 13008 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + pos: -30.5,66.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + pos: -26.5,67.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: -26.5,66.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: -23.5,62.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: -28.5,69.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + pos: -25.5,70.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: -24.5,70.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + pos: -23.5,70.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + pos: -22.5,70.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + pos: -21.5,70.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: -24.5,69.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: -24.5,68.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: -24.5,67.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + pos: -24.5,66.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: -22.5,69.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: -22.5,68.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + pos: -22.5,67.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + pos: -22.5,66.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: -20.5,70.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + pos: -20.5,69.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + pos: -20.5,68.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + pos: -20.5,67.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + pos: -20.5,66.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + pos: -26.5,63.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + pos: -26.5,62.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + pos: -24.5,62.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + pos: -25.5,62.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: -26.5,62.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: -27.5,62.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + pos: -28.5,62.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + pos: -29.5,62.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + pos: -30.5,62.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + pos: -31.5,62.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + pos: -32.5,62.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + pos: -32.5,61.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + pos: -32.5,60.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + pos: -32.5,59.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: -32.5,58.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + pos: -32.5,57.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + pos: -30.5,65.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + pos: -28.5,65.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: -24.5,65.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + pos: -22.5,65.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + pos: -20.5,65.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + pos: -22.5,62.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: -21.5,62.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: -20.5,62.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + pos: -20.5,61.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + pos: -20.5,60.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + pos: -20.5,63.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + pos: -15.5,65.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + pos: -15.5,66.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + pos: -15.5,67.5 + parent: 2 + - uid: 13082 + components: + - type: Transform + pos: -15.5,68.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + pos: -15.5,70.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + pos: -14.5,70.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + pos: -16.5,70.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + pos: -17.5,70.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + pos: -18.5,70.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + pos: -15.5,64.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + pos: -15.5,63.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + pos: -14.5,63.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: -13.5,63.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + pos: -12.5,63.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + pos: -10.5,63.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: -10.5,62.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + pos: -16.5,63.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + pos: -17.5,63.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + pos: -14.5,66.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + pos: -13.5,66.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: -102.5,22.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: -103.5,19.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + pos: -103.5,15.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + pos: -13.5,70.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: -16.5,68.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + pos: -17.5,68.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + pos: -18.5,68.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: -18.5,66.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + pos: -16.5,66.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: -14.5,68.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + pos: -13.5,68.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + pos: -17.5,61.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + pos: -8.5,62.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + pos: -103.5,16.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + pos: -115.5,24.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + pos: -34.5,71.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + pos: -7.5,68.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + pos: -8.5,68.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + pos: -10.5,68.5 + parent: 2 + - uid: 13222 + components: + - type: Transform + pos: -9.5,69.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + pos: -10.5,67.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + pos: -10.5,66.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + pos: -9.5,66.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + pos: -2.5,66.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + pos: -1.5,66.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + pos: -0.5,66.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + pos: 0.5,66.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + pos: 0.5,67.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + pos: 0.5,68.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: 39.5,61.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: 38.5,61.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: 37.5,61.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: 36.5,61.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + pos: 36.5,60.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + pos: 36.5,59.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + pos: 36.5,62.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: 36.5,63.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: 35.5,63.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + pos: 34.5,63.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + pos: 33.5,63.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: 32.5,63.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: 32.5,62.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: 32.5,61.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + pos: -52.5,74.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + pos: 32.5,59.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + pos: -116.5,24.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + pos: -117.5,24.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: -119.5,24.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: -118.5,24.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + pos: -31.5,97.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: -47.5,100.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: -46.5,99.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + pos: -47.5,101.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: -47.5,99.5 + parent: 2 + - uid: 13564 + components: + - type: Transform + pos: -47.5,98.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + pos: -26.5,99.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + pos: -25.5,99.5 + parent: 2 + - uid: 13586 + components: + - type: Transform + pos: -27.5,99.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + pos: -32.5,104.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + pos: -32.5,107.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + pos: -29.5,101.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + pos: -29.5,99.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + pos: -29.5,104.5 + parent: 2 + - uid: 13654 + components: + - type: Transform + pos: -29.5,103.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + pos: -22.5,99.5 + parent: 2 + - uid: 13677 + components: + - type: Transform + pos: -21.5,99.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: -48.5,107.5 + parent: 2 + - uid: 13714 + components: + - type: Transform + pos: -6.5,182.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: -47.5,97.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: -29.5,100.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: 8.5,74.5 + parent: 2 + - uid: 13785 + components: + - type: Transform + pos: -63.5,109.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: -79.5,87.5 + parent: 2 + - uid: 13944 + components: + - type: Transform + pos: -70.5,101.5 + parent: 2 + - uid: 14038 + components: + - type: Transform + pos: -66.5,109.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + pos: -28.5,99.5 + parent: 2 + - uid: 14082 + components: + - type: Transform + pos: 8.5,75.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + pos: -16.5,164.5 + parent: 2 + - uid: 14160 + components: + - type: Transform + pos: -127.5,53.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: -127.5,54.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: 7.5,73.5 + parent: 2 + - uid: 14232 + components: + - type: Transform + pos: -71.5,164.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: -36.5,88.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + pos: -44.5,88.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + pos: -46.5,90.5 + parent: 2 + - uid: 14287 + components: + - type: Transform + pos: -75.5,105.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 14299 + components: + - type: Transform + pos: -112.5,26.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + pos: -113.5,26.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + pos: -62.5,110.5 + parent: 2 + - uid: 14584 + components: + - type: Transform + pos: -78.5,95.5 + parent: 2 + - uid: 14596 + components: + - type: Transform + pos: -62.5,63.5 + parent: 2 + - uid: 14707 + components: + - type: Transform + pos: -8.5,164.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + pos: -13.5,170.5 + parent: 2 + - uid: 14759 + components: + - type: Transform + pos: -121.5,107.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + pos: -35.5,90.5 + parent: 2 + - uid: 14961 + components: + - type: Transform + pos: -79.5,99.5 + parent: 2 + - uid: 14962 + components: + - type: Transform + pos: -80.5,99.5 + parent: 2 + - uid: 14963 + components: + - type: Transform + pos: -79.5,100.5 + parent: 2 + - uid: 14964 + components: + - type: Transform + pos: -79.5,101.5 + parent: 2 + - uid: 14965 + components: + - type: Transform + pos: -81.5,99.5 + parent: 2 + - uid: 14966 + components: + - type: Transform + pos: -82.5,99.5 + parent: 2 + - uid: 14967 + components: + - type: Transform + pos: -83.5,99.5 + parent: 2 + - uid: 14969 + components: + - type: Transform + pos: -78.5,99.5 + parent: 2 + - uid: 14970 + components: + - type: Transform + pos: -77.5,99.5 + parent: 2 + - uid: 14971 + components: + - type: Transform + pos: -76.5,99.5 + parent: 2 + - uid: 14972 + components: + - type: Transform + pos: -76.5,100.5 + parent: 2 + - uid: 14973 + components: + - type: Transform + pos: -76.5,101.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: -76.5,102.5 + parent: 2 + - uid: 14975 + components: + - type: Transform + pos: -76.5,103.5 + parent: 2 + - uid: 14976 + components: + - type: Transform + pos: -76.5,97.5 + parent: 2 + - uid: 14977 + components: + - type: Transform + pos: -76.5,105.5 + parent: 2 + - uid: 14978 + components: + - type: Transform + pos: -76.5,98.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + pos: -74.5,105.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: -73.5,105.5 + parent: 2 + - uid: 14981 + components: + - type: Transform + pos: -72.5,105.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + pos: -77.5,105.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + pos: -78.5,105.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + pos: -79.5,105.5 + parent: 2 + - uid: 14985 + components: + - type: Transform + pos: -80.5,105.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + pos: -78.5,104.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + pos: -80.5,104.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + pos: -74.5,104.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: -72.5,104.5 + parent: 2 + - uid: 14990 + components: + - type: Transform + pos: -74.5,106.5 + parent: 2 + - uid: 14991 + components: + - type: Transform + pos: -74.5,107.5 + parent: 2 + - uid: 14992 + components: + - type: Transform + pos: -78.5,106.5 + parent: 2 + - uid: 14993 + components: + - type: Transform + pos: -78.5,107.5 + parent: 2 + - uid: 14994 + components: + - type: Transform + pos: -76.5,96.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + pos: -77.5,95.5 + parent: 2 + - uid: 15002 + components: + - type: Transform + pos: -75.5,95.5 + parent: 2 + - uid: 15003 + components: + - type: Transform + pos: -74.5,95.5 + parent: 2 + - uid: 15004 + components: + - type: Transform + pos: -73.5,95.5 + parent: 2 + - uid: 15005 + components: + - type: Transform + pos: -72.5,95.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + pos: -71.5,95.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + pos: -70.5,95.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: -69.5,95.5 + parent: 2 + - uid: 15012 + components: + - type: Transform + pos: -55.5,92.5 + parent: 2 + - uid: 15014 + components: + - type: Transform + pos: -61.5,90.5 + parent: 2 + - uid: 15016 + components: + - type: Transform + pos: -57.5,94.5 + parent: 2 + - uid: 15017 + components: + - type: Transform + pos: -58.5,94.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + pos: -55.5,91.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + pos: -118.5,107.5 + parent: 2 + - uid: 15024 + components: + - type: Transform + pos: -58.5,98.5 + parent: 2 + - uid: 15025 + components: + - type: Transform + pos: -59.5,98.5 + parent: 2 + - uid: 15026 + components: + - type: Transform + pos: -60.5,98.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + pos: -59.5,102.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + pos: -60.5,102.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + pos: -61.5,102.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + pos: -65.5,109.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + pos: -68.5,107.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + pos: -68.5,106.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + pos: -67.5,106.5 + parent: 2 + - uid: 15071 + components: + - type: Transform + pos: -60.5,94.5 + parent: 2 + - uid: 15072 + components: + - type: Transform + pos: -59.5,94.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: -65.5,108.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + pos: -66.5,106.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + pos: -68.5,105.5 + parent: 2 + - uid: 15085 + components: + - type: Transform + pos: -71.5,99.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + pos: -72.5,99.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + pos: -70.5,94.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: -70.5,93.5 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: -70.5,92.5 + parent: 2 + - uid: 15090 + components: + - type: Transform + pos: -70.5,91.5 + parent: 2 + - uid: 15091 + components: + - type: Transform + pos: -69.5,91.5 + parent: 2 + - uid: 15092 + components: + - type: Transform + pos: -70.5,90.5 + parent: 2 + - uid: 15093 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 15094 + components: + - type: Transform + pos: -67.5,81.5 + parent: 2 + - uid: 15095 + components: + - type: Transform + pos: -67.5,82.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + pos: -68.5,82.5 + parent: 2 + - uid: 15097 + components: + - type: Transform + pos: -69.5,82.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: -66.5,81.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: -65.5,81.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: -64.5,81.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: -63.5,81.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: -62.5,81.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + pos: -61.5,81.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + pos: -60.5,81.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + pos: -60.5,82.5 + parent: 2 + - uid: 15106 + components: + - type: Transform + pos: -60.5,83.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + pos: -61.5,83.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: -62.5,83.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + pos: -63.5,83.5 + parent: 2 + - uid: 15110 + components: + - type: Transform + pos: -64.5,83.5 + parent: 2 + - uid: 15111 + components: + - type: Transform + pos: -65.5,86.5 + parent: 2 + - uid: 15112 + components: + - type: Transform + pos: -65.5,85.5 + parent: 2 + - uid: 15113 + components: + - type: Transform + pos: -65.5,84.5 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: -65.5,83.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + pos: -65.5,80.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + pos: -65.5,79.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + pos: -65.5,78.5 + parent: 2 + - uid: 15118 + components: + - type: Transform + pos: -64.5,78.5 + parent: 2 + - uid: 15119 + components: + - type: Transform + pos: -63.5,78.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + pos: -62.5,78.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + pos: -61.5,78.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + pos: -64.5,86.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + pos: -63.5,86.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + pos: -62.5,86.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + pos: -61.5,86.5 + parent: 2 + - uid: 15126 + components: + - type: Transform + pos: -59.5,81.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: -59.5,83.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + pos: -78.5,88.5 + parent: 2 + - uid: 15131 + components: + - type: Transform + pos: -77.5,88.5 + parent: 2 + - uid: 15132 + components: + - type: Transform + pos: -76.5,88.5 + parent: 2 + - uid: 15133 + components: + - type: Transform + pos: -75.5,88.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + pos: -74.5,88.5 + parent: 2 + - uid: 15135 + components: + - type: Transform + pos: -73.5,88.5 + parent: 2 + - uid: 15136 + components: + - type: Transform + pos: -72.5,88.5 + parent: 2 + - uid: 15137 + components: + - type: Transform + pos: -71.5,88.5 + parent: 2 + - uid: 15138 + components: + - type: Transform + pos: -70.5,88.5 + parent: 2 + - uid: 15139 + components: + - type: Transform + pos: -70.5,87.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: -69.5,87.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + pos: -69.5,86.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + pos: -68.5,87.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + pos: -69.5,85.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + pos: -74.5,89.5 + parent: 2 + - uid: 15145 + components: + - type: Transform + pos: -80.5,89.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + pos: -80.5,90.5 + parent: 2 + - uid: 15147 + components: + - type: Transform + pos: -80.5,91.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: -80.5,93.5 + parent: 2 + - uid: 15150 + components: + - type: Transform + pos: -80.5,94.5 + parent: 2 + - uid: 15151 + components: + - type: Transform + pos: -80.5,95.5 + parent: 2 + - uid: 15152 + components: + - type: Transform + pos: -81.5,95.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + pos: -82.5,95.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + pos: -83.5,95.5 + parent: 2 + - uid: 15155 + components: + - type: Transform + pos: -80.5,88.5 + parent: 2 + - uid: 15156 + components: + - type: Transform + pos: -80.5,87.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + pos: -80.5,86.5 + parent: 2 + - uid: 15158 + components: + - type: Transform + pos: -80.5,85.5 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: -80.5,84.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: -80.5,83.5 + parent: 2 + - uid: 15162 + components: + - type: Transform + pos: -70.5,76.5 + parent: 2 + - uid: 15163 + components: + - type: Transform + pos: -70.5,75.5 + parent: 2 + - uid: 15164 + components: + - type: Transform + pos: -70.5,74.5 + parent: 2 + - uid: 15165 + components: + - type: Transform + pos: -71.5,74.5 + parent: 2 + - uid: 15166 + components: + - type: Transform + pos: -72.5,74.5 + parent: 2 + - uid: 15167 + components: + - type: Transform + pos: -73.5,74.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: -74.5,74.5 + parent: 2 + - uid: 15169 + components: + - type: Transform + pos: -75.5,74.5 + parent: 2 + - uid: 15170 + components: + - type: Transform + pos: -76.5,74.5 + parent: 2 + - uid: 15172 + components: + - type: Transform + pos: -69.5,76.5 + parent: 2 + - uid: 15173 + components: + - type: Transform + pos: -69.5,77.5 + parent: 2 + - uid: 15174 + components: + - type: Transform + pos: -69.5,78.5 + parent: 2 + - uid: 15175 + components: + - type: Transform + pos: -70.5,78.5 + parent: 2 + - uid: 15176 + components: + - type: Transform + pos: -71.5,78.5 + parent: 2 + - uid: 15177 + components: + - type: Transform + pos: -72.5,78.5 + parent: 2 + - uid: 15178 + components: + - type: Transform + pos: -73.5,78.5 + parent: 2 + - uid: 15179 + components: + - type: Transform + pos: -74.5,78.5 + parent: 2 + - uid: 15180 + components: + - type: Transform + pos: -75.5,78.5 + parent: 2 + - uid: 15181 + components: + - type: Transform + pos: -76.5,78.5 + parent: 2 + - uid: 15182 + components: + - type: Transform + pos: -77.5,78.5 + parent: 2 + - uid: 15183 + components: + - type: Transform + pos: -75.5,79.5 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: -75.5,80.5 + parent: 2 + - uid: 15185 + components: + - type: Transform + pos: -75.5,81.5 + parent: 2 + - uid: 15186 + components: + - type: Transform + pos: -75.5,82.5 + parent: 2 + - uid: 15187 + components: + - type: Transform + pos: -75.5,83.5 + parent: 2 + - uid: 15188 + components: + - type: Transform + pos: -75.5,84.5 + parent: 2 + - uid: 15189 + components: + - type: Transform + pos: -75.5,85.5 + parent: 2 + - uid: 15190 + components: + - type: Transform + pos: -75.5,86.5 + parent: 2 + - uid: 15191 + components: + - type: Transform + pos: -76.5,83.5 + parent: 2 + - uid: 15192 + components: + - type: Transform + pos: -77.5,83.5 + parent: 2 + - uid: 15193 + components: + - type: Transform + pos: -78.5,83.5 + parent: 2 + - uid: 15194 + components: + - type: Transform + pos: -74.5,83.5 + parent: 2 + - uid: 15195 + components: + - type: Transform + pos: -73.5,83.5 + parent: 2 + - uid: 15196 + components: + - type: Transform + pos: -72.5,83.5 + parent: 2 + - uid: 15197 + components: + - type: Transform + pos: -76.5,85.5 + parent: 2 + - uid: 15198 + components: + - type: Transform + pos: -77.5,85.5 + parent: 2 + - uid: 15199 + components: + - type: Transform + pos: -78.5,85.5 + parent: 2 + - uid: 15200 + components: + - type: Transform + pos: -74.5,85.5 + parent: 2 + - uid: 15201 + components: + - type: Transform + pos: -73.5,85.5 + parent: 2 + - uid: 15202 + components: + - type: Transform + pos: -72.5,85.5 + parent: 2 + - uid: 15203 + components: + - type: Transform + pos: -76.5,81.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + pos: -77.5,81.5 + parent: 2 + - uid: 15205 + components: + - type: Transform + pos: -78.5,81.5 + parent: 2 + - uid: 15206 + components: + - type: Transform + pos: -74.5,81.5 + parent: 2 + - uid: 15207 + components: + - type: Transform + pos: -73.5,81.5 + parent: 2 + - uid: 15208 + components: + - type: Transform + pos: -72.5,81.5 + parent: 2 + - uid: 15335 + components: + - type: Transform + pos: -17.5,169.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: -106.5,24.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + pos: -106.5,102.5 + parent: 2 + - uid: 15383 + components: + - type: Transform + pos: -59.5,80.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + pos: -9.5,168.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: -67.5,67.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + pos: -106.5,101.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + pos: -55.5,66.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: -54.5,66.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: -54.5,67.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + pos: -54.5,68.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + pos: -54.5,69.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + pos: -54.5,70.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + pos: -54.5,65.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + pos: -54.5,64.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: -54.5,63.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: -53.5,63.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: -56.5,66.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: -57.5,66.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: -58.5,66.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + pos: -59.5,66.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: -59.5,67.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: -59.5,68.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + pos: -59.5,69.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + pos: -59.5,70.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + pos: -59.5,71.5 + parent: 2 + - uid: 15448 + components: + - type: Transform + pos: -59.5,72.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + pos: -57.5,72.5 + parent: 2 + - uid: 15451 + components: + - type: Transform + pos: -60.5,72.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: -61.5,72.5 + parent: 2 + - uid: 15453 + components: + - type: Transform + pos: -59.5,65.5 + parent: 2 + - uid: 15454 + components: + - type: Transform + pos: -59.5,64.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: -59.5,63.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: -58.5,63.5 + parent: 2 + - uid: 15457 + components: + - type: Transform + pos: -57.5,63.5 + parent: 2 + - uid: 15458 + components: + - type: Transform + pos: -60.5,63.5 + parent: 2 + - uid: 15459 + components: + - type: Transform + pos: -61.5,63.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + pos: -59.5,62.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + pos: -60.5,62.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + pos: -61.5,62.5 + parent: 2 + - uid: 15463 + components: + - type: Transform + pos: -62.5,62.5 + parent: 2 + - uid: 15470 + components: + - type: Transform + pos: -40.5,61.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + pos: -31.5,66.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + pos: -32.5,66.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: -33.5,66.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + pos: -120.5,58.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: 2.5,174.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + pos: 7.5,174.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + pos: 3.5,174.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + pos: 1.5,174.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + pos: -128.5,47.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + pos: -106.5,103.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + pos: -79.5,143.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + pos: -119.5,107.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: -120.5,107.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: -118.5,105.5 + parent: 2 + - uid: 15634 + components: + - type: Transform + pos: -119.5,105.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + pos: -129.5,101.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + pos: -67.5,109.5 + parent: 2 + - uid: 15895 + components: + - type: Transform + pos: -53.5,74.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + pos: -52.5,73.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + pos: -51.5,73.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + pos: -50.5,73.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + pos: -49.5,73.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: -47.5,73.5 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: -47.5,71.5 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: -47.5,72.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: -46.5,70.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + pos: -46.5,69.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: -50.5,72.5 + parent: 2 + - uid: 15907 + components: + - type: Transform + pos: -50.5,71.5 + parent: 2 + - uid: 15908 + components: + - type: Transform + pos: -50.5,70.5 + parent: 2 + - uid: 15909 + components: + - type: Transform + pos: -51.5,70.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + pos: -51.5,69.5 + parent: 2 + - uid: 15911 + components: + - type: Transform + pos: -51.5,68.5 + parent: 2 + - uid: 15912 + components: + - type: Transform + pos: -51.5,67.5 + parent: 2 + - uid: 15913 + components: + - type: Transform + pos: -51.5,66.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + pos: -50.5,66.5 + parent: 2 + - uid: 15915 + components: + - type: Transform + pos: -50.5,65.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + pos: -50.5,64.5 + parent: 2 + - uid: 15917 + components: + - type: Transform + pos: -50.5,63.5 + parent: 2 + - uid: 15918 + components: + - type: Transform + pos: -50.5,62.5 + parent: 2 + - uid: 15919 + components: + - type: Transform + pos: -50.5,61.5 + parent: 2 + - uid: 15920 + components: + - type: Transform + pos: -50.5,60.5 + parent: 2 + - uid: 15921 + components: + - type: Transform + pos: -50.5,59.5 + parent: 2 + - uid: 15922 + components: + - type: Transform + pos: -50.5,58.5 + parent: 2 + - uid: 15923 + components: + - type: Transform + pos: -50.5,57.5 + parent: 2 + - uid: 15924 + components: + - type: Transform + pos: -50.5,56.5 + parent: 2 + - uid: 15925 + components: + - type: Transform + pos: -49.5,61.5 + parent: 2 + - uid: 15926 + components: + - type: Transform + pos: -48.5,61.5 + parent: 2 + - uid: 15927 + components: + - type: Transform + pos: -47.5,61.5 + parent: 2 + - uid: 15928 + components: + - type: Transform + pos: -46.5,61.5 + parent: 2 + - uid: 15929 + components: + - type: Transform + pos: -45.5,61.5 + parent: 2 + - uid: 15930 + components: + - type: Transform + pos: -45.5,60.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + pos: -44.5,61.5 + parent: 2 + - uid: 15936 + components: + - type: Transform + pos: -44.5,62.5 + parent: 2 + - uid: 15937 + components: + - type: Transform + pos: -43.5,62.5 + parent: 2 + - uid: 15938 + components: + - type: Transform + pos: -42.5,62.5 + parent: 2 + - uid: 15939 + components: + - type: Transform + pos: -41.5,62.5 + parent: 2 + - uid: 15940 + components: + - type: Transform + pos: -40.5,62.5 + parent: 2 + - uid: 15941 + components: + - type: Transform + pos: -39.5,62.5 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: -38.5,62.5 + parent: 2 + - uid: 15943 + components: + - type: Transform + pos: -37.5,62.5 + parent: 2 + - uid: 15944 + components: + - type: Transform + pos: -36.5,62.5 + parent: 2 + - uid: 15945 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 + - uid: 15946 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 15947 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 15948 + components: + - type: Transform + pos: -53.5,76.5 + parent: 2 + - uid: 15949 + components: + - type: Transform + pos: -53.5,77.5 + parent: 2 + - uid: 15950 + components: + - type: Transform + pos: -53.5,78.5 + parent: 2 + - uid: 15951 + components: + - type: Transform + pos: -53.5,79.5 + parent: 2 + - uid: 15952 + components: + - type: Transform + pos: -53.5,80.5 + parent: 2 + - uid: 15953 + components: + - type: Transform + pos: -53.5,81.5 + parent: 2 + - uid: 15954 + components: + - type: Transform + pos: -53.5,82.5 + parent: 2 + - uid: 15955 + components: + - type: Transform + pos: -53.5,83.5 + parent: 2 + - uid: 15956 + components: + - type: Transform + pos: -53.5,84.5 + parent: 2 + - uid: 15957 + components: + - type: Transform + pos: -53.5,85.5 + parent: 2 + - uid: 15958 + components: + - type: Transform + pos: -53.5,86.5 + parent: 2 + - uid: 15959 + components: + - type: Transform + pos: -53.5,87.5 + parent: 2 + - uid: 15960 + components: + - type: Transform + pos: -52.5,81.5 + parent: 2 + - uid: 15961 + components: + - type: Transform + pos: -51.5,81.5 + parent: 2 + - uid: 15962 + components: + - type: Transform + pos: -50.5,81.5 + parent: 2 + - uid: 15963 + components: + - type: Transform + pos: -49.5,81.5 + parent: 2 + - uid: 15964 + components: + - type: Transform + pos: -48.5,81.5 + parent: 2 + - uid: 15966 + components: + - type: Transform + pos: -28.5,74.5 + parent: 2 + - uid: 15967 + components: + - type: Transform + pos: -28.5,73.5 + parent: 2 + - uid: 15968 + components: + - type: Transform + pos: -29.5,73.5 + parent: 2 + - uid: 15969 + components: + - type: Transform + pos: -30.5,73.5 + parent: 2 + - uid: 15970 + components: + - type: Transform + pos: -31.5,73.5 + parent: 2 + - uid: 15971 + components: + - type: Transform + pos: -32.5,73.5 + parent: 2 + - uid: 15972 + components: + - type: Transform + pos: -33.5,73.5 + parent: 2 + - uid: 15973 + components: + - type: Transform + pos: -33.5,72.5 + parent: 2 + - uid: 15974 + components: + - type: Transform + pos: -33.5,71.5 + parent: 2 + - uid: 15975 + components: + - type: Transform + pos: -116.5,20.5 + parent: 2 + - uid: 15976 + components: + - type: Transform + pos: -33.5,69.5 + parent: 2 + - uid: 15977 + components: + - type: Transform + pos: -34.5,70.5 + parent: 2 + - uid: 15979 + components: + - type: Transform + pos: -35.5,69.5 + parent: 2 + - uid: 15980 + components: + - type: Transform + pos: -36.5,68.5 + parent: 2 + - uid: 15981 + components: + - type: Transform + pos: -36.5,69.5 + parent: 2 + - uid: 15982 + components: + - type: Transform + pos: -36.5,67.5 + parent: 2 + - uid: 15983 + components: + - type: Transform + pos: -27.5,74.5 + parent: 2 + - uid: 15984 + components: + - type: Transform + pos: -26.5,74.5 + parent: 2 + - uid: 15985 + components: + - type: Transform + pos: -26.5,75.5 + parent: 2 + - uid: 15986 + components: + - type: Transform + pos: -26.5,76.5 + parent: 2 + - uid: 15987 + components: + - type: Transform + pos: -26.5,77.5 + parent: 2 + - uid: 15988 + components: + - type: Transform + pos: -26.5,78.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + pos: -26.5,79.5 + parent: 2 + - uid: 15990 + components: + - type: Transform + pos: -26.5,80.5 + parent: 2 + - uid: 15991 + components: + - type: Transform + pos: -27.5,80.5 + parent: 2 + - uid: 15992 + components: + - type: Transform + pos: -27.5,81.5 + parent: 2 + - uid: 15993 + components: + - type: Transform + pos: -28.5,81.5 + parent: 2 + - uid: 15994 + components: + - type: Transform + pos: -29.5,81.5 + parent: 2 + - uid: 15995 + components: + - type: Transform + pos: -30.5,81.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + pos: -31.5,81.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + pos: -32.5,81.5 + parent: 2 + - uid: 15998 + components: + - type: Transform + pos: -27.5,82.5 + parent: 2 + - uid: 15999 + components: + - type: Transform + pos: -27.5,83.5 + parent: 2 + - uid: 16000 + components: + - type: Transform + pos: -27.5,84.5 + parent: 2 + - uid: 16001 + components: + - type: Transform + pos: -27.5,85.5 + parent: 2 + - uid: 16002 + components: + - type: Transform + pos: -27.5,86.5 + parent: 2 + - uid: 16003 + components: + - type: Transform + pos: -27.5,87.5 + parent: 2 + - uid: 16004 + components: + - type: Transform + pos: -0.5,82.5 + parent: 2 + - uid: 16005 + components: + - type: Transform + pos: -0.5,81.5 + parent: 2 + - uid: 16006 + components: + - type: Transform + pos: -0.5,80.5 + parent: 2 + - uid: 16007 + components: + - type: Transform + pos: -0.5,79.5 + parent: 2 + - uid: 16008 + components: + - type: Transform + pos: -0.5,78.5 + parent: 2 + - uid: 16009 + components: + - type: Transform + pos: -0.5,77.5 + parent: 2 + - uid: 16010 + components: + - type: Transform + pos: -0.5,76.5 + parent: 2 + - uid: 16011 + components: + - type: Transform + pos: -0.5,75.5 + parent: 2 + - uid: 16012 + components: + - type: Transform + pos: -0.5,74.5 + parent: 2 + - uid: 16013 + components: + - type: Transform + pos: -1.5,74.5 + parent: 2 + - uid: 16014 + components: + - type: Transform + pos: -2.5,74.5 + parent: 2 + - uid: 16015 + components: + - type: Transform + pos: -2.5,75.5 + parent: 2 + - uid: 16016 + components: + - type: Transform + pos: -2.5,76.5 + parent: 2 + - uid: 16017 + components: + - type: Transform + pos: -2.5,77.5 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: -2.5,78.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + pos: -2.5,79.5 + parent: 2 + - uid: 16020 + components: + - type: Transform + pos: -2.5,80.5 + parent: 2 + - uid: 16021 + components: + - type: Transform + pos: -2.5,81.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + pos: -1.5,81.5 + parent: 2 + - uid: 16023 + components: + - type: Transform + pos: -3.5,81.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + pos: -3.5,74.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + pos: -4.5,74.5 + parent: 2 + - uid: 16026 + components: + - type: Transform + pos: -5.5,74.5 + parent: 2 + - uid: 16027 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + pos: -5.5,81.5 + parent: 2 + - uid: 16030 + components: + - type: Transform + pos: -0.5,83.5 + parent: 2 + - uid: 16031 + components: + - type: Transform + pos: -0.5,84.5 + parent: 2 + - uid: 16032 + components: + - type: Transform + pos: -0.5,85.5 + parent: 2 + - uid: 16033 + components: + - type: Transform + pos: -1.5,85.5 + parent: 2 + - uid: 16034 + components: + - type: Transform + pos: -2.5,85.5 + parent: 2 + - uid: 16035 + components: + - type: Transform + pos: -3.5,85.5 + parent: 2 + - uid: 16036 + components: + - type: Transform + pos: -4.5,85.5 + parent: 2 + - uid: 16037 + components: + - type: Transform + pos: -5.5,85.5 + parent: 2 + - uid: 16038 + components: + - type: Transform + pos: -6.5,85.5 + parent: 2 + - uid: 16039 + components: + - type: Transform + pos: -6.5,84.5 + parent: 2 + - uid: 16040 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 16041 + components: + - type: Transform + pos: -6.5,82.5 + parent: 2 + - uid: 16042 + components: + - type: Transform + pos: -5.5,80.5 + parent: 2 + - uid: 16043 + components: + - type: Transform + pos: -5.5,79.5 + parent: 2 + - uid: 16044 + components: + - type: Transform + pos: -4.5,79.5 + parent: 2 + - uid: 16046 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - uid: 16047 + components: + - type: Transform + pos: -13.5,87.5 + parent: 2 + - uid: 16048 + components: + - type: Transform + pos: -13.5,88.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + pos: -12.5,88.5 + parent: 2 + - uid: 16054 + components: + - type: Transform + pos: -11.5,88.5 + parent: 2 + - uid: 16055 + components: + - type: Transform + pos: -10.5,88.5 + parent: 2 + - uid: 16056 + components: + - type: Transform + pos: -9.5,88.5 + parent: 2 + - uid: 16057 + components: + - type: Transform + pos: -8.5,88.5 + parent: 2 + - uid: 16058 + components: + - type: Transform + pos: -7.5,88.5 + parent: 2 + - uid: 16059 + components: + - type: Transform + pos: -6.5,88.5 + parent: 2 + - uid: 16060 + components: + - type: Transform + pos: -5.5,88.5 + parent: 2 + - uid: 16061 + components: + - type: Transform + pos: -4.5,88.5 + parent: 2 + - uid: 16062 + components: + - type: Transform + pos: -3.5,88.5 + parent: 2 + - uid: 16063 + components: + - type: Transform + pos: -2.5,88.5 + parent: 2 + - uid: 16065 + components: + - type: Transform + pos: -0.5,88.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + pos: 0.5,88.5 + parent: 2 + - uid: 16067 + components: + - type: Transform + pos: 4.5,73.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + pos: 3.5,72.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 16092 + components: + - type: Transform + pos: -15.5,87.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + pos: -16.5,86.5 + parent: 2 + - uid: 16095 + components: + - type: Transform + pos: -16.5,85.5 + parent: 2 + - uid: 16096 + components: + - type: Transform + pos: -16.5,84.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: -16.5,83.5 + parent: 2 + - uid: 16098 + components: + - type: Transform + pos: -16.5,82.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + pos: -16.5,81.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: -16.5,80.5 + parent: 2 + - uid: 16101 + components: + - type: Transform + pos: -16.5,79.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + pos: -16.5,78.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + pos: -17.5,78.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: -18.5,78.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + pos: -19.5,78.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + pos: -17.5,83.5 + parent: 2 + - uid: 16107 + components: + - type: Transform + pos: -18.5,83.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + pos: -19.5,83.5 + parent: 2 + - uid: 16109 + components: + - type: Transform + pos: -19.5,82.5 + parent: 2 + - uid: 16110 + components: + - type: Transform + pos: -20.5,82.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + pos: -15.5,82.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + pos: -14.5,82.5 + parent: 2 + - uid: 16113 + components: + - type: Transform + pos: -13.5,82.5 + parent: 2 + - uid: 16114 + components: + - type: Transform + pos: -12.5,82.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + pos: -12.5,81.5 + parent: 2 + - uid: 16116 + components: + - type: Transform + pos: -12.5,80.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: -12.5,79.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -12.5,78.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: -12.5,77.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: -11.5,77.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: -10.5,77.5 + parent: 2 + - uid: 16122 + components: + - type: Transform + pos: -10.5,78.5 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: -10.5,79.5 + parent: 2 + - uid: 16124 + components: + - type: Transform + pos: -10.5,80.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -10.5,81.5 + parent: 2 + - uid: 16126 + components: + - type: Transform + pos: -10.5,82.5 + parent: 2 + - uid: 16127 + components: + - type: Transform + pos: -10.5,83.5 + parent: 2 + - uid: 16128 + components: + - type: Transform + pos: -11.5,83.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + pos: -12.5,83.5 + parent: 2 + - uid: 16138 + components: + - type: Transform + pos: 2.5,71.5 + parent: 2 + - uid: 16139 + components: + - type: Transform + pos: 1.5,71.5 + parent: 2 + - uid: 16140 + components: + - type: Transform + pos: 0.5,71.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: -0.5,71.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: -1.5,71.5 + parent: 2 + - uid: 16143 + components: + - type: Transform + pos: -2.5,71.5 + parent: 2 + - uid: 16144 + components: + - type: Transform + pos: -3.5,71.5 + parent: 2 + - uid: 16145 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 16146 + components: + - type: Transform + pos: -5.5,71.5 + parent: 2 + - uid: 16147 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + pos: 2.5,74.5 + parent: 2 + - uid: 16149 + components: + - type: Transform + pos: 2.5,75.5 + parent: 2 + - uid: 16150 + components: + - type: Transform + pos: 2.5,76.5 + parent: 2 + - uid: 16151 + components: + - type: Transform + pos: 2.5,77.5 + parent: 2 + - uid: 16152 + components: + - type: Transform + pos: 2.5,78.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: 2.5,79.5 + parent: 2 + - uid: 16154 + components: + - type: Transform + pos: 2.5,80.5 + parent: 2 + - uid: 16155 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 16156 + components: + - type: Transform + pos: 2.5,82.5 + parent: 2 + - uid: 16157 + components: + - type: Transform + pos: 2.5,83.5 + parent: 2 + - uid: 16158 + components: + - type: Transform + pos: 2.5,84.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + pos: 2.5,85.5 + parent: 2 + - uid: 16160 + components: + - type: Transform + pos: 2.5,86.5 + parent: 2 + - uid: 16161 + components: + - type: Transform + pos: 2.5,87.5 + parent: 2 + - uid: 16162 + components: + - type: Transform + pos: 2.5,88.5 + parent: 2 + - uid: 16442 + components: + - type: Transform + pos: -40.5,60.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + pos: -41.5,59.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + pos: -40.5,59.5 + parent: 2 + - uid: 16445 + components: + - type: Transform + pos: -39.5,59.5 + parent: 2 + - uid: 16446 + components: + - type: Transform + pos: -38.5,59.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + pos: -37.5,59.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + pos: -36.5,59.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + pos: -36.5,58.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + pos: -42.5,59.5 + parent: 2 + - uid: 16451 + components: + - type: Transform + pos: -42.5,58.5 + parent: 2 + - uid: 16452 + components: + - type: Transform + pos: -39.5,58.5 + parent: 2 + - uid: 16473 + components: + - type: Transform + pos: -43.5,108.5 + parent: 2 + - uid: 16566 + components: + - type: Transform + pos: -45.5,102.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + pos: -45.5,101.5 + parent: 2 + - uid: 16568 + components: + - type: Transform + pos: -45.5,100.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + pos: -45.5,99.5 + parent: 2 + - uid: 16573 + components: + - type: Transform + pos: -35.5,100.5 + parent: 2 + - uid: 16590 + components: + - type: Transform + pos: -35.5,99.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: -36.5,99.5 + parent: 2 + - uid: 16592 + components: + - type: Transform + pos: -37.5,99.5 + parent: 2 + - uid: 16594 + components: + - type: Transform + pos: -42.5,99.5 + parent: 2 + - uid: 16595 + components: + - type: Transform + pos: -43.5,99.5 + parent: 2 + - uid: 16596 + components: + - type: Transform + pos: -44.5,99.5 + parent: 2 + - uid: 16597 + components: + - type: Transform + pos: -35.5,106.5 + parent: 2 + - uid: 16598 + components: + - type: Transform + pos: -36.5,106.5 + parent: 2 + - uid: 16599 + components: + - type: Transform + pos: -37.5,106.5 + parent: 2 + - uid: 16600 + components: + - type: Transform + pos: -38.5,106.5 + parent: 2 + - uid: 16601 + components: + - type: Transform + pos: -39.5,106.5 + parent: 2 + - uid: 16602 + components: + - type: Transform + pos: -40.5,106.5 + parent: 2 + - uid: 16603 + components: + - type: Transform + pos: -41.5,106.5 + parent: 2 + - uid: 16604 + components: + - type: Transform + pos: -42.5,106.5 + parent: 2 + - uid: 16605 + components: + - type: Transform + pos: -43.5,106.5 + parent: 2 + - uid: 16606 + components: + - type: Transform + pos: -43.5,105.5 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: -43.5,104.5 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: -42.5,104.5 + parent: 2 + - uid: 16609 + components: + - type: Transform + pos: -41.5,104.5 + parent: 2 + - uid: 16610 + components: + - type: Transform + pos: -40.5,104.5 + parent: 2 + - uid: 16611 + components: + - type: Transform + pos: -39.5,104.5 + parent: 2 + - uid: 16612 + components: + - type: Transform + pos: -38.5,104.5 + parent: 2 + - uid: 16613 + components: + - type: Transform + pos: -37.5,104.5 + parent: 2 + - uid: 16614 + components: + - type: Transform + pos: -43.5,107.5 + parent: 2 + - uid: 16615 + components: + - type: Transform + pos: -42.5,108.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + pos: -41.5,108.5 + parent: 2 + - uid: 16617 + components: + - type: Transform + pos: -40.5,108.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + pos: -39.5,108.5 + parent: 2 + - uid: 16619 + components: + - type: Transform + pos: -38.5,108.5 + parent: 2 + - uid: 16620 + components: + - type: Transform + pos: -37.5,108.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + pos: -44.5,105.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + pos: -44.5,107.5 + parent: 2 + - uid: 16624 + components: + - type: Transform + pos: -36.5,104.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + pos: -36.5,108.5 + parent: 2 + - uid: 16626 + components: + - type: Transform + pos: -40.5,103.5 + parent: 2 + - uid: 16627 + components: + - type: Transform + pos: -40.5,102.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + pos: -41.5,99.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + pos: -40.5,99.5 + parent: 2 + - uid: 16631 + components: + - type: Transform + pos: -40.5,98.5 + parent: 2 + - uid: 16632 + components: + - type: Transform + pos: -40.5,97.5 + parent: 2 + - uid: 16633 + components: + - type: Transform + pos: -40.5,96.5 + parent: 2 + - uid: 16634 + components: + - type: Transform + pos: -40.5,95.5 + parent: 2 + - uid: 16635 + components: + - type: Transform + pos: -40.5,94.5 + parent: 2 + - uid: 16636 + components: + - type: Transform + pos: -40.5,93.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + pos: -40.5,92.5 + parent: 2 + - uid: 16663 + components: + - type: Transform + pos: -29.5,102.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + pos: -45.5,107.5 + parent: 2 + - uid: 16683 + components: + - type: Transform + pos: -46.5,107.5 + parent: 2 + - uid: 16684 + components: + - type: Transform + pos: -47.5,107.5 + parent: 2 + - uid: 16687 + components: + - type: Transform + pos: -35.5,108.5 + parent: 2 + - uid: 16688 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + pos: -34.5,107.5 + parent: 2 + - uid: 16690 + components: + - type: Transform + pos: -33.5,107.5 + parent: 2 + - uid: 16877 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 13386 + - uid: 16878 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 13386 + - uid: 16879 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 13386 + - uid: 16881 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 13386 + - uid: 16882 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 13386 + - uid: 16883 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 13386 + - uid: 16885 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 13386 + - uid: 16886 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 13386 + - uid: 16887 + components: + - type: Transform + pos: -0.5,0.5 + parent: 13386 + - uid: 16888 + components: + - type: Transform + pos: -1.5,0.5 + parent: 13386 + - uid: 16889 + components: + - type: Transform + pos: -2.5,0.5 + parent: 13386 + - uid: 16890 + components: + - type: Transform + pos: -3.5,0.5 + parent: 13386 + - uid: 16894 + components: + - type: Transform + pos: 0.5,0.5 + parent: 13386 + - uid: 16896 + components: + - type: Transform + pos: 1.5,0.5 + parent: 13386 + - uid: 16897 + components: + - type: Transform + pos: 2.5,0.5 + parent: 13386 + - uid: 16898 + components: + - type: Transform + pos: 3.5,0.5 + parent: 13386 + - uid: 16899 + components: + - type: Transform + pos: -1.5,1.5 + parent: 13386 + - uid: 16901 + components: + - type: Transform + pos: -1.5,2.5 + parent: 13386 + - uid: 16902 + components: + - type: Transform + pos: -21.5,100.5 + parent: 2 + - uid: 16903 + components: + - type: Transform + pos: -1.5,3.5 + parent: 13386 + - uid: 16906 + components: + - type: Transform + pos: -1.5,4.5 + parent: 13386 + - uid: 16907 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 13386 + - uid: 16908 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 13386 + - uid: 16909 + components: + - type: Transform + pos: 1.5,1.5 + parent: 13386 + - uid: 16910 + components: + - type: Transform + pos: 1.5,2.5 + parent: 13386 + - uid: 16911 + components: + - type: Transform + pos: 1.5,3.5 + parent: 13386 + - uid: 16912 + components: + - type: Transform + pos: 2.5,3.5 + parent: 13386 + - uid: 16915 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 13386 + - uid: 16916 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 13386 + - uid: 16917 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 13386 + - uid: 16918 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 13386 + - uid: 16919 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 13386 + - uid: 16920 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 13386 + - uid: 16921 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 13386 + - uid: 16922 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 13386 + - uid: 16923 + components: + - type: Transform + pos: -38.5,92.5 + parent: 2 + - uid: 16924 + components: + - type: Transform + pos: -39.5,92.5 + parent: 2 + - uid: 16925 + components: + - type: Transform + pos: -42.5,92.5 + parent: 2 + - uid: 16926 + components: + - type: Transform + pos: -41.5,92.5 + parent: 2 + - uid: 16927 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 16928 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 13386 + - uid: 16929 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 13386 + - uid: 16930 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 13386 + - uid: 16932 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 13386 + - uid: 16933 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 13386 + - uid: 16934 + components: + - type: Transform + pos: 3.5,1.5 + parent: 13386 + - uid: 16935 + components: + - type: Transform + pos: 3.5,2.5 + parent: 13386 + - uid: 16936 + components: + - type: Transform + pos: 3.5,3.5 + parent: 13386 + - uid: 16937 + components: + - type: Transform + pos: -3.5,1.5 + parent: 13386 + - uid: 16938 + components: + - type: Transform + pos: -3.5,2.5 + parent: 13386 + - uid: 16939 + components: + - type: Transform + pos: -3.5,3.5 + parent: 13386 + - uid: 16963 + components: + - type: Transform + pos: -102.5,33.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + pos: -101.5,33.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + pos: -57.5,86.5 + parent: 2 + - uid: 16993 + components: + - type: Transform + pos: -55.5,86.5 + parent: 2 + - uid: 16994 + components: + - type: Transform + pos: -56.5,86.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + pos: -57.5,85.5 + parent: 2 + - uid: 16996 + components: + - type: Transform + pos: -57.5,84.5 + parent: 2 + - uid: 16997 + components: + - type: Transform + pos: -57.5,83.5 + parent: 2 + - uid: 16998 + components: + - type: Transform + pos: -57.5,82.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + pos: -57.5,81.5 + parent: 2 + - uid: 17000 + components: + - type: Transform + pos: -57.5,80.5 + parent: 2 + - uid: 17001 + components: + - type: Transform + pos: -57.5,79.5 + parent: 2 + - uid: 17002 + components: + - type: Transform + pos: -57.5,78.5 + parent: 2 + - uid: 17003 + components: + - type: Transform + pos: -57.5,77.5 + parent: 2 + - uid: 17004 + components: + - type: Transform + pos: -57.5,76.5 + parent: 2 + - uid: 17005 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 17006 + components: + - type: Transform + pos: -57.5,74.5 + parent: 2 + - uid: 17008 + components: + - type: Transform + pos: -58.5,74.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + pos: -59.5,74.5 + parent: 2 + - uid: 17010 + components: + - type: Transform + pos: -60.5,74.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + pos: -61.5,74.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + pos: -62.5,74.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + pos: -63.5,74.5 + parent: 2 + - uid: 17014 + components: + - type: Transform + pos: -64.5,74.5 + parent: 2 + - uid: 17015 + components: + - type: Transform + pos: -65.5,74.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + pos: -66.5,74.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 17018 + components: + - type: Transform + pos: -68.5,74.5 + parent: 2 + - uid: 17020 + components: + - type: Transform + pos: -57.5,88.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + pos: -57.5,89.5 + parent: 2 + - uid: 17022 + components: + - type: Transform + pos: -57.5,90.5 + parent: 2 + - uid: 17027 + components: + - type: Transform + pos: -56.5,90.5 + parent: 2 + - uid: 17028 + components: + - type: Transform + pos: -55.5,90.5 + parent: 2 + - uid: 17029 + components: + - type: Transform + pos: -54.5,90.5 + parent: 2 + - uid: 17030 + components: + - type: Transform + pos: -53.5,90.5 + parent: 2 + - uid: 17031 + components: + - type: Transform + pos: -52.5,90.5 + parent: 2 + - uid: 17032 + components: + - type: Transform + pos: -51.5,90.5 + parent: 2 + - uid: 17033 + components: + - type: Transform + pos: -50.5,90.5 + parent: 2 + - uid: 17034 + components: + - type: Transform + pos: -49.5,90.5 + parent: 2 + - uid: 17035 + components: + - type: Transform + pos: -48.5,90.5 + parent: 2 + - uid: 17036 + components: + - type: Transform + pos: -47.5,90.5 + parent: 2 + - uid: 17041 + components: + - type: Transform + pos: -25.5,86.5 + parent: 2 + - uid: 17042 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - uid: 17043 + components: + - type: Transform + pos: -23.5,86.5 + parent: 2 + - uid: 17044 + components: + - type: Transform + pos: -23.5,85.5 + parent: 2 + - uid: 17045 + components: + - type: Transform + pos: -23.5,84.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + pos: -23.5,83.5 + parent: 2 + - uid: 17047 + components: + - type: Transform + pos: -23.5,82.5 + parent: 2 + - uid: 17048 + components: + - type: Transform + pos: -23.5,81.5 + parent: 2 + - uid: 17049 + components: + - type: Transform + pos: -23.5,80.5 + parent: 2 + - uid: 17050 + components: + - type: Transform + pos: -23.5,79.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + pos: -23.5,78.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + pos: -23.5,77.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + pos: -23.5,87.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + pos: -23.5,88.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + pos: -23.5,89.5 + parent: 2 + - uid: 17056 + components: + - type: Transform + pos: -23.5,90.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + pos: -24.5,90.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + pos: -25.5,90.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + pos: -26.5,90.5 + parent: 2 + - uid: 17060 + components: + - type: Transform + pos: -27.5,90.5 + parent: 2 + - uid: 17061 + components: + - type: Transform + pos: -28.5,90.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + pos: -29.5,90.5 + parent: 2 + - uid: 17063 + components: + - type: Transform + pos: -30.5,90.5 + parent: 2 + - uid: 17064 + components: + - type: Transform + pos: -31.5,90.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: -32.5,90.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: -33.5,90.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + pos: -34.5,90.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + pos: -22.5,90.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + pos: -21.5,90.5 + parent: 2 + - uid: 17070 + components: + - type: Transform + pos: -20.5,90.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + pos: -19.5,90.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + pos: -140.5,107.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + pos: -65.5,72.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + pos: -141.5,106.5 + parent: 2 + - uid: 17129 + components: + - type: Transform + pos: -141.5,107.5 + parent: 2 + - uid: 17130 + components: + - type: Transform + pos: -133.5,106.5 + parent: 2 + - uid: 17133 + components: + - type: Transform + pos: -133.5,108.5 + parent: 2 + - uid: 17134 + components: + - type: Transform + pos: -141.5,108.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + pos: -11.5,170.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + pos: -117.5,20.5 + parent: 2 + - uid: 17172 + components: + - type: Transform + pos: -65.5,73.5 + parent: 2 + - uid: 17177 + components: + - type: Transform + pos: -84.5,78.5 + parent: 2 + - uid: 17178 + components: + - type: Transform + pos: -84.5,77.5 + parent: 2 + - uid: 17179 + components: + - type: Transform + pos: -84.5,76.5 + parent: 2 + - uid: 17180 + components: + - type: Transform + pos: -83.5,76.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + pos: -85.5,76.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -86.5,76.5 + parent: 2 + - uid: 17183 + components: + - type: Transform + pos: -87.5,76.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + pos: -88.5,76.5 + parent: 2 + - uid: 17185 + components: + - type: Transform + pos: -87.5,77.5 + parent: 2 + - uid: 17186 + components: + - type: Transform + pos: -87.5,78.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + pos: -86.5,78.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + pos: -88.5,75.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + pos: -89.5,75.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + pos: -90.5,75.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + pos: -65.5,66.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + pos: -65.5,67.5 + parent: 2 + - uid: 17203 + components: + - type: Transform + pos: -80.5,76.5 + parent: 2 + - uid: 17221 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 17226 + components: + - type: Transform + pos: -66.5,69.5 + parent: 2 + - uid: 17238 + components: + - type: Transform + pos: -81.5,76.5 + parent: 2 + - uid: 17240 + components: + - type: Transform + pos: -82.5,76.5 + parent: 2 + - uid: 17249 + components: + - type: Transform + pos: -80.5,75.5 + parent: 2 + - uid: 17250 + components: + - type: Transform + pos: -65.5,69.5 + parent: 2 + - uid: 17254 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - uid: 17255 + components: + - type: Transform + pos: -80.5,73.5 + parent: 2 + - uid: 17256 + components: + - type: Transform + pos: -80.5,72.5 + parent: 2 + - uid: 17257 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 + - uid: 17258 + components: + - type: Transform + pos: -80.5,70.5 + parent: 2 + - uid: 17260 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 17261 + components: + - type: Transform + pos: -77.5,70.5 + parent: 2 + - uid: 17262 + components: + - type: Transform + pos: -76.5,70.5 + parent: 2 + - uid: 17263 + components: + - type: Transform + pos: -75.5,70.5 + parent: 2 + - uid: 17264 + components: + - type: Transform + pos: -74.5,70.5 + parent: 2 + - uid: 17265 + components: + - type: Transform + pos: -73.5,70.5 + parent: 2 + - uid: 17266 + components: + - type: Transform + pos: -73.5,69.5 + parent: 2 + - uid: 17267 + components: + - type: Transform + pos: -73.5,68.5 + parent: 2 + - uid: 17268 + components: + - type: Transform + pos: -73.5,67.5 + parent: 2 + - uid: 17269 + components: + - type: Transform + pos: -73.5,66.5 + parent: 2 + - uid: 17270 + components: + - type: Transform + pos: -73.5,65.5 + parent: 2 + - uid: 17271 + components: + - type: Transform + pos: -74.5,65.5 + parent: 2 + - uid: 17272 + components: + - type: Transform + pos: -75.5,65.5 + parent: 2 + - uid: 17286 + components: + - type: Transform + pos: -124.5,59.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + pos: -12.5,164.5 + parent: 2 + - uid: 17302 + components: + - type: Transform + pos: -142.5,107.5 + parent: 2 + - uid: 17303 + components: + - type: Transform + pos: -62.5,112.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + pos: -62.5,111.5 + parent: 2 + - uid: 17317 + components: + - type: Transform + pos: -61.5,111.5 + parent: 2 + - uid: 17320 + components: + - type: Transform + pos: -91.5,155.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + pos: -89.5,155.5 + parent: 2 + - uid: 17323 + components: + - type: Transform + pos: -90.5,155.5 + parent: 2 + - uid: 17325 + components: + - type: Transform + pos: -85.5,155.5 + parent: 2 + - uid: 17329 + components: + - type: Transform + pos: -91.5,158.5 + parent: 2 + - uid: 17331 + components: + - type: Transform + pos: -67.5,108.5 + parent: 2 + - uid: 17332 + components: + - type: Transform + pos: -78.5,168.5 + parent: 2 + - uid: 17334 + components: + - type: Transform + pos: -92.5,171.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + pos: -81.5,168.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + pos: -87.5,156.5 + parent: 2 + - uid: 17342 + components: + - type: Transform + pos: -67.5,107.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + pos: -85.5,156.5 + parent: 2 + - uid: 17380 + components: + - type: Transform + pos: -65.5,68.5 + parent: 2 + - uid: 17383 + components: + - type: Transform + pos: -23.5,99.5 + parent: 2 + - uid: 17395 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: -118.5,20.5 + parent: 2 + - uid: 17445 + components: + - type: Transform + pos: -119.5,20.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + pos: -65.5,71.5 + parent: 2 + - uid: 17495 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - uid: 17524 + components: + - type: Transform + pos: -68.5,163.5 + parent: 2 + - uid: 17566 + components: + - type: Transform + pos: -67.5,163.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + pos: -92.5,169.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + pos: -127.5,90.5 + parent: 2 + - uid: 17673 + components: + - type: Transform + pos: -135.5,107.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + pos: -128.5,97.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + pos: -127.5,89.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + pos: -124.5,108.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + pos: -34.5,69.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + pos: -58.5,152.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + pos: -72.5,164.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: -72.5,161.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + pos: -123.5,96.5 + parent: 2 + - uid: 17963 + components: + - type: Transform + pos: -123.5,99.5 + parent: 2 + - uid: 17977 + components: + - type: Transform + pos: -123.5,100.5 + parent: 2 + - uid: 18001 + components: + - type: Transform + pos: -80.5,170.5 + parent: 2 + - uid: 18020 + components: + - type: Transform + pos: -129.5,107.5 + parent: 2 + - uid: 18084 + components: + - type: Transform + pos: -123.5,101.5 + parent: 2 + - uid: 18125 + components: + - type: Transform + pos: -128.5,93.5 + parent: 2 + - uid: 18126 + components: + - type: Transform + pos: -128.5,88.5 + parent: 2 + - uid: 18143 + components: + - type: Transform + pos: -128.5,107.5 + parent: 2 + - uid: 18166 + components: + - type: Transform + pos: -128.5,104.5 + parent: 2 + - uid: 18169 + components: + - type: Transform + pos: -128.5,100.5 + parent: 2 + - uid: 18176 + components: + - type: Transform + pos: -9.5,164.5 + parent: 2 + - uid: 18178 + components: + - type: Transform + pos: -126.5,88.5 + parent: 2 + - uid: 18187 + components: + - type: Transform + pos: -128.5,103.5 + parent: 2 + - uid: 18199 + components: + - type: Transform + pos: -16.5,165.5 + parent: 2 + - uid: 18220 + components: + - type: Transform + pos: -15.5,164.5 + parent: 2 + - uid: 18277 + components: + - type: Transform + pos: -69.5,179.5 + parent: 2 + - uid: 18302 + components: + - type: Transform + pos: -127.5,88.5 + parent: 2 + - uid: 18369 + components: + - type: Transform + pos: -126.5,110.5 + parent: 2 + - uid: 18371 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 18372 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 18402 + components: + - type: Transform + pos: -95.5,35.5 + parent: 2 + - uid: 18428 + components: + - type: Transform + pos: -128.5,101.5 + parent: 2 + - uid: 18495 + components: + - type: Transform + pos: -60.5,80.5 + parent: 2 + - uid: 18528 + components: + - type: Transform + pos: -49.5,95.5 + parent: 2 + - uid: 18554 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 18578 + components: + - type: Transform + pos: -72.5,163.5 + parent: 2 + - uid: 18630 + components: + - type: Transform + pos: -127.5,55.5 + parent: 2 + - uid: 18647 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + pos: -70.5,179.5 + parent: 2 + - uid: 18755 + components: + - type: Transform + pos: -72.5,162.5 + parent: 2 + - uid: 18760 + components: + - type: Transform + pos: -61.5,152.5 + parent: 2 + - uid: 18785 + components: + - type: Transform + pos: -56.5,152.5 + parent: 2 + - uid: 18786 + components: + - type: Transform + pos: -60.5,152.5 + parent: 2 + - uid: 18795 + components: + - type: Transform + pos: -70.5,164.5 + parent: 2 + - uid: 18800 + components: + - type: Transform + pos: -69.5,164.5 + parent: 2 + - uid: 18801 + components: + - type: Transform + pos: -69.5,162.5 + parent: 2 + - uid: 18813 + components: + - type: Transform + pos: -50.5,152.5 + parent: 2 + - uid: 18818 + components: + - type: Transform + pos: -50.5,158.5 + parent: 2 + - uid: 18822 + components: + - type: Transform + pos: -51.5,158.5 + parent: 2 + - uid: 18823 + components: + - type: Transform + pos: -53.5,158.5 + parent: 2 + - uid: 18825 + components: + - type: Transform + pos: -53.5,157.5 + parent: 2 + - uid: 18828 + components: + - type: Transform + pos: -53.5,154.5 + parent: 2 + - uid: 18829 + components: + - type: Transform + pos: -53.5,153.5 + parent: 2 + - uid: 18831 + components: + - type: Transform + pos: -54.5,152.5 + parent: 2 + - uid: 18835 + components: + - type: Transform + pos: -55.5,152.5 + parent: 2 + - uid: 18853 + components: + - type: Transform + pos: -53.5,152.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + pos: -53.5,156.5 + parent: 2 + - uid: 18865 + components: + - type: Transform + pos: -70.5,174.5 + parent: 2 + - uid: 18870 + components: + - type: Transform + pos: -52.5,158.5 + parent: 2 + - uid: 18880 + components: + - type: Transform + pos: -51.5,152.5 + parent: 2 + - uid: 18893 + components: + - type: Transform + pos: -52.5,152.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: -53.5,159.5 + parent: 2 + - uid: 18897 + components: + - type: Transform + pos: -53.5,155.5 + parent: 2 + - uid: 18908 + components: + - type: Transform + pos: -69.5,159.5 + parent: 2 + - uid: 18909 + components: + - type: Transform + pos: -69.5,161.5 + parent: 2 + - uid: 18918 + components: + - type: Transform + pos: -69.5,160.5 + parent: 2 + - uid: 18919 + components: + - type: Transform + pos: -69.5,158.5 + parent: 2 + - uid: 18921 + components: + - type: Transform + pos: -59.5,152.5 + parent: 2 + - uid: 18926 + components: + - type: Transform + pos: -57.5,152.5 + parent: 2 + - uid: 18927 + components: + - type: Transform + pos: -62.5,154.5 + parent: 2 + - uid: 18940 + components: + - type: Transform + pos: -62.5,153.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: -64.5,152.5 + parent: 2 + - uid: 18996 + components: + - type: Transform + pos: -65.5,152.5 + parent: 2 + - uid: 19032 + components: + - type: Transform + pos: -123.5,57.5 + parent: 2 + - uid: 19064 + components: + - type: Transform + pos: -84.5,95.5 + parent: 2 + - uid: 19096 + components: + - type: Transform + pos: -123.5,57.5 + parent: 2 + - uid: 19097 + components: + - type: Transform + pos: -126.5,92.5 + parent: 2 + - uid: 19106 + components: + - type: Transform + pos: -69.5,163.5 + parent: 2 + - uid: 19242 + components: + - type: Transform + pos: -119.5,65.5 + parent: 2 + - uid: 19254 + components: + - type: Transform + pos: -118.5,63.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: -11.5,164.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + pos: -16.5,178.5 + parent: 2 + - uid: 19267 + components: + - type: Transform + pos: -17.5,178.5 + parent: 2 + - uid: 19270 + components: + - type: Transform + pos: -18.5,178.5 + parent: 2 + - uid: 19300 + components: + - type: Transform + pos: -62.5,152.5 + parent: 2 + - uid: 19310 + components: + - type: Transform + pos: -119.5,61.5 + parent: 2 + - uid: 19313 + components: + - type: Transform + pos: -107.5,64.5 + parent: 2 + - uid: 19314 + components: + - type: Transform + pos: -120.5,61.5 + parent: 2 + - uid: 19315 + components: + - type: Transform + pos: -121.5,61.5 + parent: 2 + - uid: 19317 + components: + - type: Transform + pos: -126.5,56.5 + parent: 2 + - uid: 19319 + components: + - type: Transform + pos: -126.5,57.5 + parent: 2 + - uid: 19320 + components: + - type: Transform + pos: -126.5,58.5 + parent: 2 + - uid: 19321 + components: + - type: Transform + pos: -126.5,59.5 + parent: 2 + - uid: 19324 + components: + - type: Transform + pos: -126.5,60.5 + parent: 2 + - uid: 19325 + components: + - type: Transform + pos: -126.5,61.5 + parent: 2 + - uid: 19326 + components: + - type: Transform + pos: -125.5,61.5 + parent: 2 + - uid: 19327 + components: + - type: Transform + pos: -124.5,61.5 + parent: 2 + - uid: 19328 + components: + - type: Transform + pos: -107.5,65.5 + parent: 2 + - uid: 19329 + components: + - type: Transform + pos: -123.5,61.5 + parent: 2 + - uid: 19404 + components: + - type: Transform + pos: -125.5,92.5 + parent: 2 + - uid: 19413 + components: + - type: Transform + pos: -67.5,152.5 + parent: 2 + - uid: 19433 + components: + - type: Transform + pos: -66.5,152.5 + parent: 2 + - uid: 19445 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 19457 + components: + - type: Transform + pos: -69.5,156.5 + parent: 2 + - uid: 19458 + components: + - type: Transform + pos: -69.5,155.5 + parent: 2 + - uid: 19461 + components: + - type: Transform + pos: -69.5,154.5 + parent: 2 + - uid: 19462 + components: + - type: Transform + pos: -63.5,152.5 + parent: 2 + - uid: 19463 + components: + - type: Transform + pos: -69.5,157.5 + parent: 2 + - uid: 19468 + components: + - type: Transform + pos: -108.5,48.5 + parent: 2 + - uid: 19482 + components: + - type: Transform + pos: -58.5,90.5 + parent: 2 + - uid: 19495 + components: + - type: Transform + pos: -41.5,97.5 + parent: 2 + - uid: 19497 + components: + - type: Transform + pos: -39.5,97.5 + parent: 2 + - uid: 19498 + components: + - type: Transform + pos: -41.5,101.5 + parent: 2 + - uid: 19499 + components: + - type: Transform + pos: -40.5,101.5 + parent: 2 + - uid: 19500 + components: + - type: Transform + pos: -39.5,101.5 + parent: 2 + - uid: 19510 + components: + - type: Transform + pos: -18.5,65.5 + parent: 2 + - uid: 19511 + components: + - type: Transform + pos: -12.5,66.5 + parent: 2 + - uid: 19519 + components: + - type: Transform + pos: -75.5,147.5 + parent: 2 + - uid: 19889 + components: + - type: Transform + pos: -14.5,164.5 + parent: 2 + - uid: 20007 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 20061 + components: + - type: Transform + pos: -71.5,99.5 + parent: 2 + - uid: 20331 + components: + - type: Transform + pos: -36.5,71.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + pos: -42.5,80.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + pos: -137.5,49.5 + parent: 2 + - uid: 20489 + components: + - type: Transform + pos: -137.5,51.5 + parent: 2 + - uid: 20649 + components: + - type: Transform + pos: -137.5,48.5 + parent: 2 + - uid: 20653 + components: + - type: Transform + pos: -138.5,48.5 + parent: 2 + - uid: 20654 + components: + - type: Transform + pos: -132.5,41.5 + parent: 2 + - uid: 20709 + components: + - type: Transform + pos: -81.5,47.5 + parent: 2 + - uid: 20770 + components: + - type: Transform + pos: -136.5,49.5 + parent: 2 + - uid: 20999 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - uid: 21197 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 21114 + - uid: 21198 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 21114 + - uid: 21199 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 21114 + - uid: 21204 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 21114 + - uid: 21205 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 21114 + - uid: 21217 + components: + - type: Transform + pos: 1.5,0.5 + parent: 21114 + - uid: 21226 + components: + - type: Transform + pos: 0.5,0.5 + parent: 21114 + - uid: 21244 + components: + - type: Transform + pos: 2.5,0.5 + parent: 21114 + - uid: 21247 + components: + - type: Transform + pos: 3.5,0.5 + parent: 21114 + - uid: 21328 + components: + - type: Transform + pos: 4.5,0.5 + parent: 21114 + - uid: 21344 + components: + - type: Transform + pos: 4.5,0.5 + parent: 21114 + - uid: 21356 + components: + - type: Transform + pos: 5.5,0.5 + parent: 21114 + - uid: 21438 + components: + - type: Transform + pos: -58.5,162.5 + parent: 2 + - uid: 21439 + components: + - type: Transform + pos: -59.5,164.5 + parent: 2 + - uid: 21440 + components: + - type: Transform + pos: -59.5,165.5 + parent: 2 + - uid: 21442 + components: + - type: Transform + pos: -59.5,162.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + pos: -59.5,163.5 + parent: 2 + - uid: 21559 + components: + - type: Transform + pos: -99.5,151.5 + parent: 2 + - uid: 21563 + components: + - type: Transform + pos: -98.5,151.5 + parent: 2 + - uid: 21564 + components: + - type: Transform + pos: -97.5,151.5 + parent: 2 + - uid: 21565 + components: + - type: Transform + pos: -96.5,151.5 + parent: 2 + - uid: 21566 + components: + - type: Transform + pos: -95.5,151.5 + parent: 2 + - uid: 21567 + components: + - type: Transform + pos: -94.5,151.5 + parent: 2 + - uid: 21568 + components: + - type: Transform + pos: -93.5,151.5 + parent: 2 + - uid: 21569 + components: + - type: Transform + pos: -79.5,43.5 + parent: 2 + - uid: 21570 + components: + - type: Transform + pos: -91.5,151.5 + parent: 2 + - uid: 21571 + components: + - type: Transform + pos: -90.5,151.5 + parent: 2 + - uid: 21572 + components: + - type: Transform + pos: -89.5,151.5 + parent: 2 + - uid: 21573 + components: + - type: Transform + pos: -88.5,151.5 + parent: 2 + - uid: 21574 + components: + - type: Transform + pos: -87.5,151.5 + parent: 2 + - uid: 21575 + components: + - type: Transform + pos: -86.5,151.5 + parent: 2 + - uid: 21576 + components: + - type: Transform + pos: -85.5,151.5 + parent: 2 + - uid: 21577 + components: + - type: Transform + pos: -84.5,151.5 + parent: 2 + - uid: 21578 + components: + - type: Transform + pos: -83.5,151.5 + parent: 2 + - uid: 21580 + components: + - type: Transform + pos: -81.5,151.5 + parent: 2 + - uid: 21582 + components: + - type: Transform + pos: -80.5,152.5 + parent: 2 + - uid: 21583 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - uid: 21584 + components: + - type: Transform + pos: -81.5,150.5 + parent: 2 + - uid: 21585 + components: + - type: Transform + pos: -81.5,149.5 + parent: 2 + - uid: 21586 + components: + - type: Transform + pos: -81.5,148.5 + parent: 2 + - uid: 21587 + components: + - type: Transform + pos: -82.5,148.5 + parent: 2 + - uid: 21588 + components: + - type: Transform + pos: -80.5,148.5 + parent: 2 + - uid: 21589 + components: + - type: Transform + pos: -85.5,150.5 + parent: 2 + - uid: 21590 + components: + - type: Transform + pos: -85.5,149.5 + parent: 2 + - uid: 21591 + components: + - type: Transform + pos: -85.5,148.5 + parent: 2 + - uid: 21593 + components: + - type: Transform + pos: -88.5,149.5 + parent: 2 + - uid: 21594 + components: + - type: Transform + pos: -88.5,148.5 + parent: 2 + - uid: 21595 + components: + - type: Transform + pos: -91.5,150.5 + parent: 2 + - uid: 21596 + components: + - type: Transform + pos: -91.5,149.5 + parent: 2 + - uid: 21597 + components: + - type: Transform + pos: -91.5,148.5 + parent: 2 + - uid: 21599 + components: + - type: Transform + pos: -95.5,149.5 + parent: 2 + - uid: 21600 + components: + - type: Transform + pos: -95.5,148.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: -97.5,154.5 + parent: 2 + - uid: 21626 + components: + - type: Transform + pos: -87.5,157.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + pos: -87.5,158.5 + parent: 2 + - uid: 21628 + components: + - type: Transform + pos: -91.5,160.5 + parent: 2 + - uid: 21629 + components: + - type: Transform + pos: -91.5,159.5 + parent: 2 + - uid: 21631 + components: + - type: Transform + pos: -86.5,156.5 + parent: 2 + - uid: 21636 + components: + - type: Transform + pos: -88.5,155.5 + parent: 2 + - uid: 21637 + components: + - type: Transform + pos: -87.5,155.5 + parent: 2 + - uid: 21645 + components: + - type: Transform + pos: -84.5,155.5 + parent: 2 + - uid: 21646 + components: + - type: Transform + pos: -87.5,159.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + pos: -86.5,159.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + pos: -85.5,159.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + pos: -84.5,159.5 + parent: 2 + - uid: 21650 + components: + - type: Transform + pos: -83.5,159.5 + parent: 2 + - uid: 21651 + components: + - type: Transform + pos: -88.5,159.5 + parent: 2 + - uid: 21652 + components: + - type: Transform + pos: -89.5,159.5 + parent: 2 + - uid: 21653 + components: + - type: Transform + pos: -90.5,159.5 + parent: 2 + - uid: 21655 + components: + - type: Transform + pos: -91.5,166.5 + parent: 2 + - uid: 21656 + components: + - type: Transform + pos: -91.5,165.5 + parent: 2 + - uid: 21657 + components: + - type: Transform + pos: -91.5,164.5 + parent: 2 + - uid: 21658 + components: + - type: Transform + pos: -91.5,163.5 + parent: 2 + - uid: 21659 + components: + - type: Transform + pos: -90.5,163.5 + parent: 2 + - uid: 21660 + components: + - type: Transform + pos: -89.5,163.5 + parent: 2 + - uid: 21661 + components: + - type: Transform + pos: -88.5,163.5 + parent: 2 + - uid: 21662 + components: + - type: Transform + pos: -87.5,163.5 + parent: 2 + - uid: 21663 + components: + - type: Transform + pos: -86.5,163.5 + parent: 2 + - uid: 21664 + components: + - type: Transform + pos: -85.5,163.5 + parent: 2 + - uid: 21665 + components: + - type: Transform + pos: -84.5,163.5 + parent: 2 + - uid: 21666 + components: + - type: Transform + pos: -83.5,163.5 + parent: 2 + - uid: 21667 + components: + - type: Transform + pos: -82.5,163.5 + parent: 2 + - uid: 21668 + components: + - type: Transform + pos: -82.5,164.5 + parent: 2 + - uid: 21669 + components: + - type: Transform + pos: -85.5,164.5 + parent: 2 + - uid: 21670 + components: + - type: Transform + pos: -88.5,164.5 + parent: 2 + - uid: 21671 + components: + - type: Transform + pos: -88.5,165.5 + parent: 2 + - uid: 21672 + components: + - type: Transform + pos: -87.5,165.5 + parent: 2 + - uid: 21674 + components: + - type: Transform + pos: -91.5,172.5 + parent: 2 + - uid: 21675 + components: + - type: Transform + pos: -90.5,172.5 + parent: 2 + - uid: 21676 + components: + - type: Transform + pos: -89.5,172.5 + parent: 2 + - uid: 21677 + components: + - type: Transform + pos: -88.5,172.5 + parent: 2 + - uid: 21678 + components: + - type: Transform + pos: -87.5,172.5 + parent: 2 + - uid: 21679 + components: + - type: Transform + pos: -87.5,173.5 + parent: 2 + - uid: 21680 + components: + - type: Transform + pos: -87.5,174.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + pos: -86.5,174.5 + parent: 2 + - uid: 21682 + components: + - type: Transform + pos: -88.5,174.5 + parent: 2 + - uid: 21683 + components: + - type: Transform + pos: -89.5,174.5 + parent: 2 + - uid: 21684 + components: + - type: Transform + pos: -86.5,172.5 + parent: 2 + - uid: 21685 + components: + - type: Transform + pos: -86.5,171.5 + parent: 2 + - uid: 21686 + components: + - type: Transform + pos: -86.5,170.5 + parent: 2 + - uid: 21687 + components: + - type: Transform + pos: -86.5,169.5 + parent: 2 + - uid: 21688 + components: + - type: Transform + pos: -86.5,168.5 + parent: 2 + - uid: 21689 + components: + - type: Transform + pos: -87.5,168.5 + parent: 2 + - uid: 21690 + components: + - type: Transform + pos: -88.5,168.5 + parent: 2 + - uid: 21691 + components: + - type: Transform + pos: -89.5,168.5 + parent: 2 + - uid: 21692 + components: + - type: Transform + pos: -90.5,168.5 + parent: 2 + - uid: 21693 + components: + - type: Transform + pos: -91.5,168.5 + parent: 2 + - uid: 21694 + components: + - type: Transform + pos: -92.5,168.5 + parent: 2 + - uid: 21695 + components: + - type: Transform + pos: -93.5,168.5 + parent: 2 + - uid: 21696 + components: + - type: Transform + pos: -94.5,168.5 + parent: 2 + - uid: 21697 + components: + - type: Transform + pos: -95.5,168.5 + parent: 2 + - uid: 21698 + components: + - type: Transform + pos: -96.5,168.5 + parent: 2 + - uid: 21699 + components: + - type: Transform + pos: -97.5,168.5 + parent: 2 + - uid: 21700 + components: + - type: Transform + pos: -92.5,172.5 + parent: 2 + - uid: 21701 + components: + - type: Transform + pos: -92.5,170.5 + parent: 2 + - uid: 21702 + components: + - type: Transform + pos: -92.5,173.5 + parent: 2 + - uid: 21703 + components: + - type: Transform + pos: -92.5,174.5 + parent: 2 + - uid: 21704 + components: + - type: Transform + pos: -92.5,175.5 + parent: 2 + - uid: 21705 + components: + - type: Transform + pos: -93.5,175.5 + parent: 2 + - uid: 21706 + components: + - type: Transform + pos: -94.5,175.5 + parent: 2 + - uid: 21707 + components: + - type: Transform + pos: -95.5,175.5 + parent: 2 + - uid: 21708 + components: + - type: Transform + pos: -96.5,175.5 + parent: 2 + - uid: 21709 + components: + - type: Transform + pos: -95.5,169.5 + parent: 2 + - uid: 21711 + components: + - type: Transform + pos: -95.5,170.5 + parent: 2 + - uid: 21712 + components: + - type: Transform + pos: -97.5,167.5 + parent: 2 + - uid: 21713 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 + - uid: 21714 + components: + - type: Transform + pos: 2.5,1.5 + parent: 21114 + - uid: 21716 + components: + - type: Transform + pos: -95.5,160.5 + parent: 2 + - uid: 21717 + components: + - type: Transform + pos: -96.5,160.5 + parent: 2 + - uid: 21718 + components: + - type: Transform + pos: -97.5,160.5 + parent: 2 + - uid: 21719 + components: + - type: Transform + pos: -97.5,161.5 + parent: 2 + - uid: 21720 + components: + - type: Transform + pos: -98.5,161.5 + parent: 2 + - uid: 21721 + components: + - type: Transform + pos: -99.5,161.5 + parent: 2 + - uid: 21722 + components: + - type: Transform + pos: -100.5,161.5 + parent: 2 + - uid: 21723 + components: + - type: Transform + pos: -97.5,159.5 + parent: 2 + - uid: 21724 + components: + - type: Transform + pos: -98.5,159.5 + parent: 2 + - uid: 21725 + components: + - type: Transform + pos: -99.5,159.5 + parent: 2 + - uid: 21726 + components: + - type: Transform + pos: -100.5,159.5 + parent: 2 + - uid: 21727 + components: + - type: Transform + pos: -97.5,158.5 + parent: 2 + - uid: 21728 + components: + - type: Transform + pos: -97.5,157.5 + parent: 2 + - uid: 21729 + components: + - type: Transform + pos: -97.5,156.5 + parent: 2 + - uid: 21730 + components: + - type: Transform + pos: -97.5,164.5 + parent: 2 + - uid: 21731 + components: + - type: Transform + pos: -97.5,163.5 + parent: 2 + - uid: 21732 + components: + - type: Transform + pos: -97.5,162.5 + parent: 2 + - uid: 21736 + components: + - type: Transform + pos: -89.5,176.5 + parent: 2 + - uid: 21737 + components: + - type: Transform + pos: -89.5,177.5 + parent: 2 + - uid: 21738 + components: + - type: Transform + pos: -89.5,178.5 + parent: 2 + - uid: 21739 + components: + - type: Transform + pos: -88.5,178.5 + parent: 2 + - uid: 21740 + components: + - type: Transform + pos: -87.5,178.5 + parent: 2 + - uid: 21741 + components: + - type: Transform + pos: -86.5,178.5 + parent: 2 + - uid: 21742 + components: + - type: Transform + pos: -86.5,177.5 + parent: 2 + - uid: 21743 + components: + - type: Transform + pos: -86.5,179.5 + parent: 2 + - uid: 21744 + components: + - type: Transform + pos: -86.5,180.5 + parent: 2 + - uid: 21745 + components: + - type: Transform + pos: -86.5,181.5 + parent: 2 + - uid: 21747 + components: + - type: Transform + pos: -89.5,179.5 + parent: 2 + - uid: 21748 + components: + - type: Transform + pos: -89.5,180.5 + parent: 2 + - uid: 21751 + components: + - type: Transform + pos: -79.5,169.5 + parent: 2 + - uid: 21752 + components: + - type: Transform + pos: -79.5,168.5 + parent: 2 + - uid: 21753 + components: + - type: Transform + pos: -80.5,171.5 + parent: 2 + - uid: 21754 + components: + - type: Transform + pos: -79.5,167.5 + parent: 2 + - uid: 21756 + components: + - type: Transform + pos: -79.5,166.5 + parent: 2 + - uid: 21757 + components: + - type: Transform + pos: -80.5,172.5 + parent: 2 + - uid: 21758 + components: + - type: Transform + pos: -79.5,172.5 + parent: 2 + - uid: 21759 + components: + - type: Transform + pos: -78.5,172.5 + parent: 2 + - uid: 21760 + components: + - type: Transform + pos: -78.5,171.5 + parent: 2 + - uid: 21761 + components: + - type: Transform + pos: -78.5,170.5 + parent: 2 + - uid: 21762 + components: + - type: Transform + pos: -81.5,171.5 + parent: 2 + - uid: 21763 + components: + - type: Transform + pos: -82.5,171.5 + parent: 2 + - uid: 21764 + components: + - type: Transform + pos: -83.5,171.5 + parent: 2 + - uid: 21765 + components: + - type: Transform + pos: -84.5,171.5 + parent: 2 + - uid: 21766 + components: + - type: Transform + pos: -79.5,173.5 + parent: 2 + - uid: 21767 + components: + - type: Transform + pos: -79.5,174.5 + parent: 2 + - uid: 21768 + components: + - type: Transform + pos: -79.5,175.5 + parent: 2 + - uid: 21769 + components: + - type: Transform + pos: -79.5,176.5 + parent: 2 + - uid: 21770 + components: + - type: Transform + pos: -77.5,171.5 + parent: 2 + - uid: 21771 + components: + - type: Transform + pos: -76.5,171.5 + parent: 2 + - uid: 21772 + components: + - type: Transform + pos: -75.5,171.5 + parent: 2 + - uid: 21773 + components: + - type: Transform + pos: -74.5,171.5 + parent: 2 + - uid: 21776 + components: + - type: Transform + pos: -76.5,172.5 + parent: 2 + - uid: 21777 + components: + - type: Transform + pos: -76.5,173.5 + parent: 2 + - uid: 21778 + components: + - type: Transform + pos: -80.5,168.5 + parent: 2 + - uid: 21779 + components: + - type: Transform + pos: -76.5,170.5 + parent: 2 + - uid: 21780 + components: + - type: Transform + pos: -76.5,169.5 + parent: 2 + - uid: 21782 + components: + - type: Transform + pos: -77.5,168.5 + parent: 2 + - uid: 21783 + components: + - type: Transform + pos: -82.5,170.5 + parent: 2 + - uid: 21784 + components: + - type: Transform + pos: -82.5,169.5 + parent: 2 + - uid: 21785 + components: + - type: Transform + pos: -82.5,172.5 + parent: 2 + - uid: 21786 + components: + - type: Transform + pos: -82.5,173.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + pos: -81.5,174.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + pos: -80.5,174.5 + parent: 2 + - uid: 21789 + components: + - type: Transform + pos: -78.5,174.5 + parent: 2 + - uid: 21790 + components: + - type: Transform + pos: -77.5,174.5 + parent: 2 + - uid: 21796 + components: + - type: Transform + pos: -82.5,176.5 + parent: 2 + - uid: 21797 + components: + - type: Transform + pos: -82.5,177.5 + parent: 2 + - uid: 21798 + components: + - type: Transform + pos: -82.5,178.5 + parent: 2 + - uid: 21799 + components: + - type: Transform + pos: -82.5,179.5 + parent: 2 + - uid: 21800 + components: + - type: Transform + pos: -81.5,178.5 + parent: 2 + - uid: 21801 + components: + - type: Transform + pos: -80.5,178.5 + parent: 2 + - uid: 21802 + components: + - type: Transform + pos: -79.5,178.5 + parent: 2 + - uid: 21803 + components: + - type: Transform + pos: -78.5,178.5 + parent: 2 + - uid: 21804 + components: + - type: Transform + pos: -77.5,178.5 + parent: 2 + - uid: 21805 + components: + - type: Transform + pos: -76.5,178.5 + parent: 2 + - uid: 21806 + components: + - type: Transform + pos: -82.5,180.5 + parent: 2 + - uid: 21807 + components: + - type: Transform + pos: -82.5,181.5 + parent: 2 + - uid: 21809 + components: + - type: Transform + pos: -81.5,181.5 + parent: 2 + - uid: 21810 + components: + - type: Transform + pos: -80.5,181.5 + parent: 2 + - uid: 21811 + components: + - type: Transform + pos: -79.5,181.5 + parent: 2 + - uid: 21812 + components: + - type: Transform + pos: -78.5,181.5 + parent: 2 + - uid: 21813 + components: + - type: Transform + pos: -77.5,181.5 + parent: 2 + - uid: 21814 + components: + - type: Transform + pos: -76.5,181.5 + parent: 2 + - uid: 21816 + components: + - type: Transform + pos: -82.5,182.5 + parent: 2 + - uid: 21817 + components: + - type: Transform + pos: -82.5,183.5 + parent: 2 + - uid: 21818 + components: + - type: Transform + pos: -82.5,184.5 + parent: 2 + - uid: 21820 + components: + - type: Transform + pos: -81.5,184.5 + parent: 2 + - uid: 21821 + components: + - type: Transform + pos: -80.5,184.5 + parent: 2 + - uid: 21822 + components: + - type: Transform + pos: -79.5,184.5 + parent: 2 + - uid: 21823 + components: + - type: Transform + pos: -78.5,184.5 + parent: 2 + - uid: 21824 + components: + - type: Transform + pos: -77.5,184.5 + parent: 2 + - uid: 21825 + components: + - type: Transform + pos: -76.5,184.5 + parent: 2 + - uid: 21826 + components: + - type: Transform + pos: 2.5,2.5 + parent: 21114 + - uid: 21828 + components: + - type: Transform + pos: -74.5,174.5 + parent: 2 + - uid: 21829 + components: + - type: Transform + pos: 2.5,3.5 + parent: 21114 + - uid: 21830 + components: + - type: Transform + pos: -73.5,174.5 + parent: 2 + - uid: 21831 + components: + - type: Transform + pos: -72.5,174.5 + parent: 2 + - uid: 21832 + components: + - type: Transform + pos: -71.5,174.5 + parent: 2 + - uid: 21835 + components: + - type: Transform + pos: -71.5,175.5 + parent: 2 + - uid: 21836 + components: + - type: Transform + pos: -71.5,176.5 + parent: 2 + - uid: 21837 + components: + - type: Transform + pos: -71.5,177.5 + parent: 2 + - uid: 21838 + components: + - type: Transform + pos: -71.5,178.5 + parent: 2 + - uid: 21839 + components: + - type: Transform + pos: -71.5,179.5 + parent: 2 + - uid: 21840 + components: + - type: Transform + pos: -71.5,180.5 + parent: 2 + - uid: 21841 + components: + - type: Transform + pos: -71.5,181.5 + parent: 2 + - uid: 21842 + components: + - type: Transform + pos: -72.5,179.5 + parent: 2 + - uid: 21843 + components: + - type: Transform + pos: -69.5,174.5 + parent: 2 + - uid: 21845 + components: + - type: Transform + pos: -71.5,173.5 + parent: 2 + - uid: 21846 + components: + - type: Transform + pos: -71.5,172.5 + parent: 2 + - uid: 21847 + components: + - type: Transform + pos: -71.5,171.5 + parent: 2 + - uid: 21848 + components: + - type: Transform + pos: -71.5,170.5 + parent: 2 + - uid: 21849 + components: + - type: Transform + pos: -71.5,169.5 + parent: 2 + - uid: 21850 + components: + - type: Transform + pos: -71.5,168.5 + parent: 2 + - uid: 21851 + components: + - type: Transform + pos: -71.5,167.5 + parent: 2 + - uid: 21852 + components: + - type: Transform + pos: -72.5,169.5 + parent: 2 + - uid: 21853 + components: + - type: Transform + pos: -70.5,169.5 + parent: 2 + - uid: 21855 + components: + - type: Transform + pos: -70.5,168.5 + parent: 2 + - uid: 21856 + components: + - type: Transform + pos: -69.5,168.5 + parent: 2 + - uid: 21865 + components: + - type: Transform + pos: -54.5,169.5 + parent: 2 + - uid: 21866 + components: + - type: Transform + pos: -55.5,169.5 + parent: 2 + - uid: 21867 + components: + - type: Transform + pos: -56.5,169.5 + parent: 2 + - uid: 21868 + components: + - type: Transform + pos: -57.5,169.5 + parent: 2 + - uid: 21869 + components: + - type: Transform + pos: -58.5,169.5 + parent: 2 + - uid: 21870 + components: + - type: Transform + pos: -59.5,169.5 + parent: 2 + - uid: 21871 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 21872 + components: + - type: Transform + pos: -61.5,169.5 + parent: 2 + - uid: 21873 + components: + - type: Transform + pos: -62.5,169.5 + parent: 2 + - uid: 21874 + components: + - type: Transform + pos: -63.5,169.5 + parent: 2 + - uid: 21875 + components: + - type: Transform + pos: -64.5,169.5 + parent: 2 + - uid: 21876 + components: + - type: Transform + pos: -65.5,169.5 + parent: 2 + - uid: 21877 + components: + - type: Transform + pos: -66.5,169.5 + parent: 2 + - uid: 21878 + components: + - type: Transform + pos: 2.5,4.5 + parent: 21114 + - uid: 21879 + components: + - type: Transform + pos: -61.5,170.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + pos: -58.5,170.5 + parent: 2 + - uid: 21881 + components: + - type: Transform + pos: -58.5,171.5 + parent: 2 + - uid: 21882 + components: + - type: Transform + pos: -58.5,172.5 + parent: 2 + - uid: 21883 + components: + - type: Transform + pos: -59.5,172.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + pos: -60.5,172.5 + parent: 2 + - uid: 21885 + components: + - type: Transform + pos: -61.5,172.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + pos: -62.5,172.5 + parent: 2 + - uid: 21887 + components: + - type: Transform + pos: -63.5,172.5 + parent: 2 + - uid: 21889 + components: + - type: Transform + pos: -61.5,173.5 + parent: 2 + - uid: 21890 + components: + - type: Transform + pos: -66.5,170.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + pos: -66.5,171.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: -66.5,172.5 + parent: 2 + - uid: 21893 + components: + - type: Transform + pos: -66.5,173.5 + parent: 2 + - uid: 21894 + components: + - type: Transform + pos: -66.5,174.5 + parent: 2 + - uid: 21895 + components: + - type: Transform + pos: -66.5,175.5 + parent: 2 + - uid: 21896 + components: + - type: Transform + pos: -66.5,176.5 + parent: 2 + - uid: 21897 + components: + - type: Transform + pos: -66.5,177.5 + parent: 2 + - uid: 21898 + components: + - type: Transform + pos: -66.5,178.5 + parent: 2 + - uid: 21899 + components: + - type: Transform + pos: -66.5,168.5 + parent: 2 + - uid: 21900 + components: + - type: Transform + pos: -66.5,167.5 + parent: 2 + - uid: 21901 + components: + - type: Transform + pos: -66.5,166.5 + parent: 2 + - uid: 21902 + components: + - type: Transform + pos: -66.5,165.5 + parent: 2 + - uid: 21903 + components: + - type: Transform + pos: -66.5,164.5 + parent: 2 + - uid: 21904 + components: + - type: Transform + pos: -66.5,163.5 + parent: 2 + - uid: 21905 + components: + - type: Transform + pos: -66.5,162.5 + parent: 2 + - uid: 21906 + components: + - type: Transform + pos: -59.5,166.5 + parent: 2 + - uid: 21907 + components: + - type: Transform + pos: -59.5,167.5 + parent: 2 + - uid: 21908 + components: + - type: Transform + pos: -60.5,162.5 + parent: 2 + - uid: 21909 + components: + - type: Transform + pos: -61.5,162.5 + parent: 2 + - uid: 21910 + components: + - type: Transform + pos: -62.5,162.5 + parent: 2 + - uid: 21911 + components: + - type: Transform + pos: -63.5,162.5 + parent: 2 + - uid: 21912 + components: + - type: Transform + pos: -64.5,162.5 + parent: 2 + - uid: 21913 + components: + - type: Transform + pos: -62.5,163.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + pos: -62.5,164.5 + parent: 2 + - uid: 21915 + components: + - type: Transform + pos: -62.5,165.5 + parent: 2 + - uid: 21916 + components: + - type: Transform + pos: -63.5,165.5 + parent: 2 + - uid: 21917 + components: + - type: Transform + pos: -64.5,165.5 + parent: 2 + - uid: 21918 + components: + - type: Transform + pos: -64.5,166.5 + parent: 2 + - uid: 21919 + components: + - type: Transform + pos: -60.5,161.5 + parent: 2 + - uid: 21920 + components: + - type: Transform + pos: -60.5,160.5 + parent: 2 + - uid: 21921 + components: + - type: Transform + pos: -60.5,159.5 + parent: 2 + - uid: 21922 + components: + - type: Transform + pos: -60.5,158.5 + parent: 2 + - uid: 21923 + components: + - type: Transform + pos: -60.5,157.5 + parent: 2 + - uid: 21924 + components: + - type: Transform + pos: -60.5,156.5 + parent: 2 + - uid: 22030 + components: + - type: Transform + pos: 1.5,2.5 + parent: 21114 + - uid: 22044 + components: + - type: Transform + pos: 0.5,2.5 + parent: 21114 + - uid: 22045 + components: + - type: Transform + pos: 3.5,2.5 + parent: 21114 + - uid: 22046 + components: + - type: Transform + pos: 4.5,2.5 + parent: 21114 + - uid: 22047 + components: + - type: Transform + pos: 5.5,2.5 + parent: 21114 + - uid: 22048 + components: + - type: Transform + pos: 3.5,5.5 + parent: 21114 + - uid: 22049 + components: + - type: Transform + pos: 2.5,5.5 + parent: 21114 + - uid: 22135 + components: + - type: Transform + pos: -68.5,156.5 + parent: 2 + - uid: 22136 + components: + - type: Transform + pos: -69.5,152.5 + parent: 2 + - uid: 22137 + components: + - type: Transform + pos: -69.5,153.5 + parent: 2 + - uid: 22140 + components: + - type: Transform + pos: -67.5,156.5 + parent: 2 + - uid: 22141 + components: + - type: Transform + pos: -66.5,156.5 + parent: 2 + - uid: 22142 + components: + - type: Transform + pos: -65.5,156.5 + parent: 2 + - uid: 22143 + components: + - type: Transform + pos: -64.5,156.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + pos: -63.5,156.5 + parent: 2 + - uid: 22145 + components: + - type: Transform + pos: -62.5,156.5 + parent: 2 + - uid: 22146 + components: + - type: Transform + pos: -62.5,157.5 + parent: 2 + - uid: 22147 + components: + - type: Transform + pos: -62.5,158.5 + parent: 2 + - uid: 22148 + components: + - type: Transform + pos: -63.5,158.5 + parent: 2 + - uid: 22149 + components: + - type: Transform + pos: -64.5,158.5 + parent: 2 + - uid: 22150 + components: + - type: Transform + pos: -65.5,158.5 + parent: 2 + - uid: 22151 + components: + - type: Transform + pos: -66.5,158.5 + parent: 2 + - uid: 22152 + components: + - type: Transform + pos: -67.5,158.5 + parent: 2 + - uid: 22153 + components: + - type: Transform + pos: -68.5,158.5 + parent: 2 + - uid: 22154 + components: + - type: Transform + pos: -72.5,160.5 + parent: 2 + - uid: 22155 + components: + - type: Transform + pos: -72.5,159.5 + parent: 2 + - uid: 22156 + components: + - type: Transform + pos: -72.5,158.5 + parent: 2 + - uid: 22157 + components: + - type: Transform + pos: -73.5,158.5 + parent: 2 + - uid: 22158 + components: + - type: Transform + pos: -74.5,158.5 + parent: 2 + - uid: 22159 + components: + - type: Transform + pos: -75.5,158.5 + parent: 2 + - uid: 22160 + components: + - type: Transform + pos: -76.5,158.5 + parent: 2 + - uid: 22161 + components: + - type: Transform + pos: -77.5,158.5 + parent: 2 + - uid: 22162 + components: + - type: Transform + pos: -78.5,158.5 + parent: 2 + - uid: 22163 + components: + - type: Transform + pos: -79.5,165.5 + parent: 2 + - uid: 22164 + components: + - type: Transform + pos: -79.5,164.5 + parent: 2 + - uid: 22165 + components: + - type: Transform + pos: -79.5,163.5 + parent: 2 + - uid: 22166 + components: + - type: Transform + pos: -79.5,162.5 + parent: 2 + - uid: 22167 + components: + - type: Transform + pos: -79.5,158.5 + parent: 2 + - uid: 22168 + components: + - type: Transform + pos: -79.5,159.5 + parent: 2 + - uid: 22169 + components: + - type: Transform + pos: -80.5,159.5 + parent: 2 + - uid: 22254 + components: + - type: Transform + pos: -120.5,59.5 + parent: 2 + - uid: 22299 + components: + - type: Transform + pos: -124.5,58.5 + parent: 2 + - uid: 22359 + components: + - type: Transform + pos: -108.5,64.5 + parent: 2 + - uid: 22473 + components: + - type: Transform + pos: -19.5,180.5 + parent: 2 + - uid: 22584 + components: + - type: Transform + pos: -116.5,99.5 + parent: 2 + - uid: 22586 + components: + - type: Transform + pos: -120.5,103.5 + parent: 2 + - uid: 22587 + components: + - type: Transform + pos: -125.5,103.5 + parent: 2 + - uid: 22588 + components: + - type: Transform + pos: -119.5,99.5 + parent: 2 + - uid: 22591 + components: + - type: Transform + pos: -135.5,40.5 + parent: 2 + - uid: 22630 + components: + - type: Transform + pos: -119.5,103.5 + parent: 2 + - uid: 22690 + components: + - type: Transform + pos: -121.5,103.5 + parent: 2 + - uid: 22751 + components: + - type: Transform + pos: -10.5,168.5 + parent: 2 + - uid: 22759 + components: + - type: Transform + pos: -14.5,170.5 + parent: 2 + - uid: 22760 + components: + - type: Transform + pos: -13.5,168.5 + parent: 2 + - uid: 22761 + components: + - type: Transform + pos: -12.5,168.5 + parent: 2 + - uid: 22847 + components: + - type: Transform + pos: -121.5,98.5 + parent: 2 + - uid: 22850 + components: + - type: Transform + pos: -124.5,103.5 + parent: 2 + - uid: 23034 + components: + - type: Transform + pos: -115.5,96.5 + parent: 2 + - uid: 23094 + components: + - type: Transform + pos: -117.5,94.5 + parent: 2 + - uid: 23095 + components: + - type: Transform + pos: -116.5,94.5 + parent: 2 + - uid: 23096 + components: + - type: Transform + pos: -123.5,103.5 + parent: 2 + - uid: 23097 + components: + - type: Transform + pos: -128.5,105.5 + parent: 2 + - uid: 23098 + components: + - type: Transform + pos: -128.5,106.5 + parent: 2 + - uid: 23099 + components: + - type: Transform + pos: -128.5,108.5 + parent: 2 + - uid: 23155 + components: + - type: Transform + pos: -115.5,95.5 + parent: 2 + - uid: 23156 + components: + - type: Transform + pos: -118.5,94.5 + parent: 2 + - uid: 23157 + components: + - type: Transform + pos: -115.5,94.5 + parent: 2 + - uid: 23158 + components: + - type: Transform + pos: -117.5,99.5 + parent: 2 + - uid: 23159 + components: + - type: Transform + pos: -122.5,103.5 + parent: 2 + - uid: 23160 + components: + - type: Transform + pos: -115.5,92.5 + parent: 2 + - uid: 23161 + components: + - type: Transform + pos: -125.5,98.5 + parent: 2 + - uid: 23162 + components: + - type: Transform + pos: -114.5,92.5 + parent: 2 + - uid: 23166 + components: + - type: Transform + pos: -125.5,95.5 + parent: 2 + - uid: 23167 + components: + - type: Transform + pos: -116.5,92.5 + parent: 2 + - uid: 23168 + components: + - type: Transform + pos: -114.5,94.5 + parent: 2 + - uid: 23169 + components: + - type: Transform + pos: -115.5,93.5 + parent: 2 + - uid: 23170 + components: + - type: Transform + pos: -117.5,92.5 + parent: 2 + - uid: 23171 + components: + - type: Transform + pos: -121.5,95.5 + parent: 2 + - uid: 23216 + components: + - type: Transform + pos: -131.5,41.5 + parent: 2 + - uid: 23231 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 23522 + components: + - type: Transform + pos: -131.5,39.5 + parent: 2 + - uid: 23717 + components: + - type: Transform + pos: 12.5,171.5 + parent: 2 + - uid: 23719 + components: + - type: Transform + pos: 11.5,171.5 + parent: 2 + - uid: 23762 + components: + - type: Transform + pos: 9.5,171.5 + parent: 2 + - uid: 23934 + components: + - type: Transform + pos: -30.5,205.5 + parent: 2 + - uid: 23936 + components: + - type: Transform + pos: -130.5,39.5 + parent: 2 + - uid: 24274 + components: + - type: Transform + pos: -122.5,95.5 + parent: 2 + - uid: 24379 + components: + - type: Transform + pos: 20.5,194.5 + parent: 2 + - uid: 24400 + components: + - type: Transform + pos: -123.5,92.5 + parent: 2 + - uid: 24410 + components: + - type: Transform + pos: -21.5,190.5 + parent: 2 + - uid: 24411 + components: + - type: Transform + pos: -21.5,191.5 + parent: 2 + - uid: 24412 + components: + - type: Transform + pos: -21.5,192.5 + parent: 2 + - uid: 24413 + components: + - type: Transform + pos: -22.5,192.5 + parent: 2 + - uid: 24414 + components: + - type: Transform + pos: -23.5,192.5 + parent: 2 + - uid: 24415 + components: + - type: Transform + pos: -23.5,191.5 + parent: 2 + - uid: 24416 + components: + - type: Transform + pos: -23.5,190.5 + parent: 2 + - uid: 24419 + components: + - type: Transform + pos: -21.5,189.5 + parent: 2 + - uid: 24420 + components: + - type: Transform + pos: -21.5,193.5 + parent: 2 + - uid: 24422 + components: + - type: Transform + pos: -20.5,193.5 + parent: 2 + - uid: 24423 + components: + - type: Transform + pos: -19.5,193.5 + parent: 2 + - uid: 24424 + components: + - type: Transform + pos: -19.5,192.5 + parent: 2 + - uid: 24425 + components: + - type: Transform + pos: -18.5,193.5 + parent: 2 + - uid: 24427 + components: + - type: Transform + pos: -18.5,194.5 + parent: 2 + - uid: 24431 + components: + - type: Transform + pos: -10.5,198.5 + parent: 2 + - uid: 24432 + components: + - type: Transform + pos: -9.5,198.5 + parent: 2 + - uid: 24433 + components: + - type: Transform + pos: -8.5,198.5 + parent: 2 + - uid: 24434 + components: + - type: Transform + pos: -7.5,198.5 + parent: 2 + - uid: 24435 + components: + - type: Transform + pos: -6.5,198.5 + parent: 2 + - uid: 24436 + components: + - type: Transform + pos: -6.5,197.5 + parent: 2 + - uid: 24437 + components: + - type: Transform + pos: -6.5,196.5 + parent: 2 + - uid: 24438 + components: + - type: Transform + pos: -9.5,197.5 + parent: 2 + - uid: 24439 + components: + - type: Transform + pos: -10.5,197.5 + parent: 2 + - uid: 24440 + components: + - type: Transform + pos: -11.5,197.5 + parent: 2 + - uid: 24441 + components: + - type: Transform + pos: -12.5,197.5 + parent: 2 + - uid: 24442 + components: + - type: Transform + pos: -13.5,197.5 + parent: 2 + - uid: 24443 + components: + - type: Transform + pos: -14.5,197.5 + parent: 2 + - uid: 24444 + components: + - type: Transform + pos: -15.5,197.5 + parent: 2 + - uid: 24445 + components: + - type: Transform + pos: -16.5,197.5 + parent: 2 + - uid: 24446 + components: + - type: Transform + pos: -17.5,197.5 + parent: 2 + - uid: 24447 + components: + - type: Transform + pos: -18.5,197.5 + parent: 2 + - uid: 24448 + components: + - type: Transform + pos: -95.5,55.5 + parent: 2 + - uid: 24452 + components: + - type: Transform + pos: -10.5,193.5 + parent: 2 + - uid: 24453 + components: + - type: Transform + pos: -11.5,193.5 + parent: 2 + - uid: 24454 + components: + - type: Transform + pos: -12.5,193.5 + parent: 2 + - uid: 24455 + components: + - type: Transform + pos: -13.5,193.5 + parent: 2 + - uid: 24456 + components: + - type: Transform + pos: -14.5,193.5 + parent: 2 + - uid: 24457 + components: + - type: Transform + pos: -15.5,193.5 + parent: 2 + - uid: 24458 + components: + - type: Transform + pos: -15.5,194.5 + parent: 2 + - uid: 24461 + components: + - type: Transform + pos: -11.5,192.5 + parent: 2 + - uid: 24462 + components: + - type: Transform + pos: -11.5,191.5 + parent: 2 + - uid: 24463 + components: + - type: Transform + pos: -11.5,190.5 + parent: 2 + - uid: 24464 + components: + - type: Transform + pos: -11.5,189.5 + parent: 2 + - uid: 24465 + components: + - type: Transform + pos: -11.5,188.5 + parent: 2 + - uid: 24466 + components: + - type: Transform + pos: -11.5,187.5 + parent: 2 + - uid: 24467 + components: + - type: Transform + pos: -11.5,186.5 + parent: 2 + - uid: 24468 + components: + - type: Transform + pos: -11.5,185.5 + parent: 2 + - uid: 24469 + components: + - type: Transform + pos: -12.5,185.5 + parent: 2 + - uid: 24471 + components: + - type: Transform + pos: -13.5,185.5 + parent: 2 + - uid: 24472 + components: + - type: Transform + pos: -10.5,185.5 + parent: 2 + - uid: 24474 + components: + - type: Transform + pos: -12.5,188.5 + parent: 2 + - uid: 24475 + components: + - type: Transform + pos: -13.5,188.5 + parent: 2 + - uid: 24476 + components: + - type: Transform + pos: -14.5,188.5 + parent: 2 + - uid: 24477 + components: + - type: Transform + pos: -15.5,188.5 + parent: 2 + - uid: 24479 + components: + - type: Transform + pos: -12.5,191.5 + parent: 2 + - uid: 24480 + components: + - type: Transform + pos: -13.5,191.5 + parent: 2 + - uid: 24481 + components: + - type: Transform + pos: -14.5,191.5 + parent: 2 + - uid: 24482 + components: + - type: Transform + pos: -15.5,191.5 + parent: 2 + - uid: 24483 + components: + - type: Transform + pos: -16.5,191.5 + parent: 2 + - uid: 24486 + components: + - type: Transform + pos: -9.5,193.5 + parent: 2 + - uid: 24487 + components: + - type: Transform + pos: -8.5,193.5 + parent: 2 + - uid: 24488 + components: + - type: Transform + pos: -7.5,193.5 + parent: 2 + - uid: 24489 + components: + - type: Transform + pos: -6.5,193.5 + parent: 2 + - uid: 24490 + components: + - type: Transform + pos: -6.5,192.5 + parent: 2 + - uid: 24491 + components: + - type: Transform + pos: -6.5,191.5 + parent: 2 + - uid: 24492 + components: + - type: Transform + pos: -6.5,190.5 + parent: 2 + - uid: 24493 + components: + - type: Transform + pos: -6.5,189.5 + parent: 2 + - uid: 24494 + components: + - type: Transform + pos: -6.5,188.5 + parent: 2 + - uid: 24495 + components: + - type: Transform + pos: -8.5,188.5 + parent: 2 + - uid: 24496 + components: + - type: Transform + pos: -8.5,189.5 + parent: 2 + - uid: 24497 + components: + - type: Transform + pos: -8.5,190.5 + parent: 2 + - uid: 24498 + components: + - type: Transform + pos: -8.5,191.5 + parent: 2 + - uid: 24499 + components: + - type: Transform + pos: -8.5,192.5 + parent: 2 + - uid: 24500 + components: + - type: Transform + pos: -7.5,194.5 + parent: 2 + - uid: 24503 + components: + - type: Transform + pos: 1.5,206.5 + parent: 2 + - uid: 24504 + components: + - type: Transform + pos: 1.5,205.5 + parent: 2 + - uid: 24505 + components: + - type: Transform + pos: 1.5,204.5 + parent: 2 + - uid: 24506 + components: + - type: Transform + pos: 1.5,203.5 + parent: 2 + - uid: 24507 + components: + - type: Transform + pos: 1.5,202.5 + parent: 2 + - uid: 24508 + components: + - type: Transform + pos: 1.5,201.5 + parent: 2 + - uid: 24509 + components: + - type: Transform + pos: 1.5,200.5 + parent: 2 + - uid: 24510 + components: + - type: Transform + pos: 1.5,199.5 + parent: 2 + - uid: 24511 + components: + - type: Transform + pos: 1.5,198.5 + parent: 2 + - uid: 24512 + components: + - type: Transform + pos: 1.5,197.5 + parent: 2 + - uid: 24513 + components: + - type: Transform + pos: 0.5,197.5 + parent: 2 + - uid: 24514 + components: + - type: Transform + pos: -0.5,197.5 + parent: 2 + - uid: 24515 + components: + - type: Transform + pos: 0.5,199.5 + parent: 2 + - uid: 24516 + components: + - type: Transform + pos: -0.5,199.5 + parent: 2 + - uid: 24517 + components: + - type: Transform + pos: 0.5,203.5 + parent: 2 + - uid: 24518 + components: + - type: Transform + pos: -0.5,203.5 + parent: 2 + - uid: 24519 + components: + - type: Transform + pos: -0.5,204.5 + parent: 2 + - uid: 24520 + components: + - type: Transform + pos: 1.5,196.5 + parent: 2 + - uid: 24521 + components: + - type: Transform + pos: -5.5,198.5 + parent: 2 + - uid: 24522 + components: + - type: Transform + pos: -5.5,199.5 + parent: 2 + - uid: 24523 + components: + - type: Transform + pos: -5.5,200.5 + parent: 2 + - uid: 24524 + components: + - type: Transform + pos: -10.5,199.5 + parent: 2 + - uid: 24525 + components: + - type: Transform + pos: -10.5,200.5 + parent: 2 + - uid: 24526 + components: + - type: Transform + pos: -13.5,199.5 + parent: 2 + - uid: 24527 + components: + - type: Transform + pos: -13.5,198.5 + parent: 2 + - uid: 24529 + components: + - type: Transform + pos: -10.5,211.5 + parent: 2 + - uid: 24530 + components: + - type: Transform + pos: -10.5,210.5 + parent: 2 + - uid: 24531 + components: + - type: Transform + pos: -10.5,209.5 + parent: 2 + - uid: 24532 + components: + - type: Transform + pos: -9.5,209.5 + parent: 2 + - uid: 24533 + components: + - type: Transform + pos: -8.5,209.5 + parent: 2 + - uid: 24534 + components: + - type: Transform + pos: -7.5,209.5 + parent: 2 + - uid: 24535 + components: + - type: Transform + pos: -6.5,209.5 + parent: 2 + - uid: 24536 + components: + - type: Transform + pos: -6.5,208.5 + parent: 2 + - uid: 24537 + components: + - type: Transform + pos: -6.5,207.5 + parent: 2 + - uid: 24538 + components: + - type: Transform + pos: -11.5,209.5 + parent: 2 + - uid: 24539 + components: + - type: Transform + pos: -11.5,208.5 + parent: 2 + - uid: 24540 + components: + - type: Transform + pos: -11.5,207.5 + parent: 2 + - uid: 24542 + components: + - type: Transform + pos: -18.5,206.5 + parent: 2 + - uid: 24543 + components: + - type: Transform + pos: -17.5,206.5 + parent: 2 + - uid: 24544 + components: + - type: Transform + pos: -16.5,206.5 + parent: 2 + - uid: 24545 + components: + - type: Transform + pos: -15.5,206.5 + parent: 2 + - uid: 24546 + components: + - type: Transform + pos: -14.5,206.5 + parent: 2 + - uid: 24547 + components: + - type: Transform + pos: -14.5,205.5 + parent: 2 + - uid: 24548 + components: + - type: Transform + pos: -14.5,204.5 + parent: 2 + - uid: 24549 + components: + - type: Transform + pos: -17.5,205.5 + parent: 2 + - uid: 24550 + components: + - type: Transform + pos: -17.5,204.5 + parent: 2 + - uid: 24551 + components: + - type: Transform + pos: -19.5,206.5 + parent: 2 + - uid: 24552 + components: + - type: Transform + pos: -20.5,206.5 + parent: 2 + - uid: 24553 + components: + - type: Transform + pos: -20.5,205.5 + parent: 2 + - uid: 24555 + components: + - type: Transform + pos: 6.5,185.5 + parent: 2 + - uid: 24556 + components: + - type: Transform + pos: 5.5,185.5 + parent: 2 + - uid: 24557 + components: + - type: Transform + pos: 4.5,185.5 + parent: 2 + - uid: 24558 + components: + - type: Transform + pos: 3.5,185.5 + parent: 2 + - uid: 24559 + components: + - type: Transform + pos: 2.5,185.5 + parent: 2 + - uid: 24560 + components: + - type: Transform + pos: 5.5,184.5 + parent: 2 + - uid: 24561 + components: + - type: Transform + pos: 5.5,183.5 + parent: 2 + - uid: 24562 + components: + - type: Transform + pos: 4.5,183.5 + parent: 2 + - uid: 24563 + components: + - type: Transform + pos: 3.5,183.5 + parent: 2 + - uid: 24564 + components: + - type: Transform + pos: 2.5,183.5 + parent: 2 + - uid: 24565 + components: + - type: Transform + pos: 1.5,185.5 + parent: 2 + - uid: 24566 + components: + - type: Transform + pos: 1.5,186.5 + parent: 2 + - uid: 24567 + components: + - type: Transform + pos: 1.5,183.5 + parent: 2 + - uid: 24570 + components: + - type: Transform + pos: -3.5,179.5 + parent: 2 + - uid: 24571 + components: + - type: Transform + pos: -3.5,180.5 + parent: 2 + - uid: 24572 + components: + - type: Transform + pos: -3.5,181.5 + parent: 2 + - uid: 24573 + components: + - type: Transform + pos: -3.5,178.5 + parent: 2 + - uid: 24574 + components: + - type: Transform + pos: -3.5,177.5 + parent: 2 + - uid: 24575 + components: + - type: Transform + pos: -4.5,177.5 + parent: 2 + - uid: 24576 + components: + - type: Transform + pos: -4.5,176.5 + parent: 2 + - uid: 24577 + components: + - type: Transform + pos: -4.5,175.5 + parent: 2 + - uid: 24580 + components: + - type: Transform + pos: -18.5,180.5 + parent: 2 + - uid: 24581 + components: + - type: Transform + pos: -18.5,179.5 + parent: 2 + - uid: 24582 + components: + - type: Transform + pos: -18.5,178.5 + parent: 2 + - uid: 24583 + components: + - type: Transform + pos: -19.5,178.5 + parent: 2 + - uid: 24584 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 + - uid: 24586 + components: + - type: Transform + pos: -27.5,200.5 + parent: 2 + - uid: 24587 + components: + - type: Transform + pos: -26.5,200.5 + parent: 2 + - uid: 24588 + components: + - type: Transform + pos: -25.5,200.5 + parent: 2 + - uid: 24589 + components: + - type: Transform + pos: -24.5,200.5 + parent: 2 + - uid: 24590 + components: + - type: Transform + pos: -23.5,200.5 + parent: 2 + - uid: 24591 + components: + - type: Transform + pos: -25.5,199.5 + parent: 2 + - uid: 24592 + components: + - type: Transform + pos: -23.5,199.5 + parent: 2 + - uid: 24593 + components: + - type: Transform + pos: -23.5,201.5 + parent: 2 + - uid: 24594 + components: + - type: Transform + pos: -25.5,201.5 + parent: 2 + - uid: 24595 + components: + - type: Transform + pos: -23.5,202.5 + parent: 2 + - uid: 24596 + components: + - type: Transform + pos: -22.5,202.5 + parent: 2 + - uid: 24598 + components: + - type: Transform + pos: -27.5,204.5 + parent: 2 + - uid: 24599 + components: + - type: Transform + pos: -28.5,204.5 + parent: 2 + - uid: 24601 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - uid: 24602 + components: + - type: Transform + pos: -29.5,204.5 + parent: 2 + - uid: 24603 + components: + - type: Transform + pos: -29.5,203.5 + parent: 2 + - uid: 24604 + components: + - type: Transform + pos: -29.5,202.5 + parent: 2 + - uid: 24605 + components: + - type: Transform + pos: -29.5,201.5 + parent: 2 + - uid: 24606 + components: + - type: Transform + pos: -29.5,200.5 + parent: 2 + - uid: 24607 + components: + - type: Transform + pos: -29.5,199.5 + parent: 2 + - uid: 24608 + components: + - type: Transform + pos: -30.5,199.5 + parent: 2 + - uid: 24609 + components: + - type: Transform + pos: -31.5,199.5 + parent: 2 + - uid: 24610 + components: + - type: Transform + pos: -32.5,199.5 + parent: 2 + - uid: 24611 + components: + - type: Transform + pos: -33.5,199.5 + parent: 2 + - uid: 24612 + components: + - type: Transform + pos: -30.5,201.5 + parent: 2 + - uid: 24613 + components: + - type: Transform + pos: -31.5,201.5 + parent: 2 + - uid: 24614 + components: + - type: Transform + pos: -32.5,201.5 + parent: 2 + - uid: 24615 + components: + - type: Transform + pos: -33.5,201.5 + parent: 2 + - uid: 24619 + components: + - type: Transform + pos: -32.5,205.5 + parent: 2 + - uid: 24621 + components: + - type: Transform + pos: -25.5,210.5 + parent: 2 + - uid: 24622 + components: + - type: Transform + pos: -25.5,209.5 + parent: 2 + - uid: 24623 + components: + - type: Transform + pos: -26.5,209.5 + parent: 2 + - uid: 24624 + components: + - type: Transform + pos: -27.5,209.5 + parent: 2 + - uid: 24625 + components: + - type: Transform + pos: -28.5,209.5 + parent: 2 + - uid: 24626 + components: + - type: Transform + pos: -29.5,209.5 + parent: 2 + - uid: 24627 + components: + - type: Transform + pos: -29.5,210.5 + parent: 2 + - uid: 24628 + components: + - type: Transform + pos: -29.5,211.5 + parent: 2 + - uid: 24629 + components: + - type: Transform + pos: -27.5,210.5 + parent: 2 + - uid: 24630 + components: + - type: Transform + pos: -27.5,211.5 + parent: 2 + - uid: 24631 + components: + - type: Transform + pos: -23.5,209.5 + parent: 2 + - uid: 24632 + components: + - type: Transform + pos: -22.5,209.5 + parent: 2 + - uid: 24633 + components: + - type: Transform + pos: -21.5,209.5 + parent: 2 + - uid: 24634 + components: + - type: Transform + pos: -20.5,209.5 + parent: 2 + - uid: 24635 + components: + - type: Transform + pos: -19.5,209.5 + parent: 2 + - uid: 24636 + components: + - type: Transform + pos: -19.5,210.5 + parent: 2 + - uid: 24637 + components: + - type: Transform + pos: -18.5,210.5 + parent: 2 + - uid: 24638 + components: + - type: Transform + pos: -17.5,210.5 + parent: 2 + - uid: 24639 + components: + - type: Transform + pos: -17.5,211.5 + parent: 2 + - uid: 24640 + components: + - type: Transform + pos: -16.5,211.5 + parent: 2 + - uid: 24641 + components: + - type: Transform + pos: -15.5,211.5 + parent: 2 + - uid: 24642 + components: + - type: Transform + pos: -15.5,212.5 + parent: 2 + - uid: 24643 + components: + - type: Transform + pos: -14.5,212.5 + parent: 2 + - uid: 24644 + components: + - type: Transform + pos: -13.5,212.5 + parent: 2 + - uid: 24645 + components: + - type: Transform + pos: -12.5,213.5 + parent: 2 + - uid: 24646 + components: + - type: Transform + pos: -11.5,213.5 + parent: 2 + - uid: 24647 + components: + - type: Transform + pos: -10.5,213.5 + parent: 2 + - uid: 24648 + components: + - type: Transform + pos: -9.5,213.5 + parent: 2 + - uid: 24649 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 24650 + components: + - type: Transform + pos: -24.5,208.5 + parent: 2 + - uid: 24651 + components: + - type: Transform + pos: -24.5,207.5 + parent: 2 + - uid: 24652 + components: + - type: Transform + pos: -24.5,206.5 + parent: 2 + - uid: 24653 + components: + - type: Transform + pos: -24.5,205.5 + parent: 2 + - uid: 24655 + components: + - type: Transform + pos: -25.5,205.5 + parent: 2 + - uid: 24658 + components: + - type: Transform + pos: -24.5,209.5 + parent: 2 + - uid: 24662 + components: + - type: Transform + pos: 1.5,209.5 + parent: 2 + - uid: 24663 + components: + - type: Transform + pos: 1.5,210.5 + parent: 2 + - uid: 24664 + components: + - type: Transform + pos: 0.5,210.5 + parent: 2 + - uid: 24665 + components: + - type: Transform + pos: -0.5,210.5 + parent: 2 + - uid: 24666 + components: + - type: Transform + pos: -1.5,210.5 + parent: 2 + - uid: 24667 + components: + - type: Transform + pos: -2.5,210.5 + parent: 2 + - uid: 24668 + components: + - type: Transform + pos: -3.5,210.5 + parent: 2 + - uid: 24669 + components: + - type: Transform + pos: -3.5,211.5 + parent: 2 + - uid: 24670 + components: + - type: Transform + pos: -3.5,212.5 + parent: 2 + - uid: 24671 + components: + - type: Transform + pos: -3.5,213.5 + parent: 2 + - uid: 24672 + components: + - type: Transform + pos: -4.5,213.5 + parent: 2 + - uid: 24673 + components: + - type: Transform + pos: -5.5,213.5 + parent: 2 + - uid: 24674 + components: + - type: Transform + pos: -6.5,213.5 + parent: 2 + - uid: 24675 + components: + - type: Transform + pos: -7.5,213.5 + parent: 2 + - uid: 24676 + components: + - type: Transform + pos: -3.5,209.5 + parent: 2 + - uid: 24677 + components: + - type: Transform + pos: 2.5,210.5 + parent: 2 + - uid: 24678 + components: + - type: Transform + pos: 3.5,210.5 + parent: 2 + - uid: 24679 + components: + - type: Transform + pos: 4.5,210.5 + parent: 2 + - uid: 24680 + components: + - type: Transform + pos: 5.5,210.5 + parent: 2 + - uid: 24681 + components: + - type: Transform + pos: 5.5,209.5 + parent: 2 + - uid: 24682 + components: + - type: Transform + pos: 6.5,209.5 + parent: 2 + - uid: 24683 + components: + - type: Transform + pos: 6.5,208.5 + parent: 2 + - uid: 24684 + components: + - type: Transform + pos: 6.5,207.5 + parent: 2 + - uid: 24685 + components: + - type: Transform + pos: 6.5,206.5 + parent: 2 + - uid: 24686 + components: + - type: Transform + pos: 6.5,205.5 + parent: 2 + - uid: 24687 + components: + - type: Transform + pos: 7.5,205.5 + parent: 2 + - uid: 24688 + components: + - type: Transform + pos: 7.5,204.5 + parent: 2 + - uid: 24689 + components: + - type: Transform + pos: 8.5,204.5 + parent: 2 + - uid: 24690 + components: + - type: Transform + pos: 8.5,203.5 + parent: 2 + - uid: 24691 + components: + - type: Transform + pos: 9.5,203.5 + parent: 2 + - uid: 24692 + components: + - type: Transform + pos: 10.5,203.5 + parent: 2 + - uid: 24693 + components: + - type: Transform + pos: 11.5,203.5 + parent: 2 + - uid: 24694 + components: + - type: Transform + pos: 12.5,203.5 + parent: 2 + - uid: 24695 + components: + - type: Transform + pos: 13.5,203.5 + parent: 2 + - uid: 24696 + components: + - type: Transform + pos: 14.5,203.5 + parent: 2 + - uid: 24697 + components: + - type: Transform + pos: 15.5,203.5 + parent: 2 + - uid: 24698 + components: + - type: Transform + pos: 16.5,203.5 + parent: 2 + - uid: 24699 + components: + - type: Transform + pos: 16.5,202.5 + parent: 2 + - uid: 24700 + components: + - type: Transform + pos: 17.5,202.5 + parent: 2 + - uid: 24701 + components: + - type: Transform + pos: 18.5,202.5 + parent: 2 + - uid: 24702 + components: + - type: Transform + pos: 19.5,202.5 + parent: 2 + - uid: 24703 + components: + - type: Transform + pos: 19.5,201.5 + parent: 2 + - uid: 24704 + components: + - type: Transform + pos: 9.5,202.5 + parent: 2 + - uid: 24705 + components: + - type: Transform + pos: 9.5,201.5 + parent: 2 + - uid: 24706 + components: + - type: Transform + pos: 8.5,201.5 + parent: 2 + - uid: 24707 + components: + - type: Transform + pos: 7.5,201.5 + parent: 2 + - uid: 24710 + components: + - type: Transform + pos: 21.5,198.5 + parent: 2 + - uid: 24711 + components: + - type: Transform + pos: 22.5,198.5 + parent: 2 + - uid: 24712 + components: + - type: Transform + pos: 22.5,199.5 + parent: 2 + - uid: 24713 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - uid: 24714 + components: + - type: Transform + pos: 22.5,201.5 + parent: 2 + - uid: 24715 + components: + - type: Transform + pos: 23.5,198.5 + parent: 2 + - uid: 24716 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - uid: 24717 + components: + - type: Transform + pos: 24.5,197.5 + parent: 2 + - uid: 24720 + components: + - type: Transform + pos: 22.5,183.5 + parent: 2 + - uid: 24721 + components: + - type: Transform + pos: 21.5,183.5 + parent: 2 + - uid: 24723 + components: + - type: Transform + pos: 22.5,184.5 + parent: 2 + - uid: 24724 + components: + - type: Transform + pos: 22.5,185.5 + parent: 2 + - uid: 24725 + components: + - type: Transform + pos: 23.5,185.5 + parent: 2 + - uid: 24726 + components: + - type: Transform + pos: 23.5,186.5 + parent: 2 + - uid: 24727 + components: + - type: Transform + pos: 19.5,182.5 + parent: 2 + - uid: 24728 + components: + - type: Transform + pos: 24.5,186.5 + parent: 2 + - uid: 24729 + components: + - type: Transform + pos: 24.5,187.5 + parent: 2 + - uid: 24730 + components: + - type: Transform + pos: 24.5,188.5 + parent: 2 + - uid: 24731 + components: + - type: Transform + pos: 24.5,189.5 + parent: 2 + - uid: 24732 + components: + - type: Transform + pos: 24.5,190.5 + parent: 2 + - uid: 24733 + components: + - type: Transform + pos: 24.5,191.5 + parent: 2 + - uid: 24734 + components: + - type: Transform + pos: 24.5,192.5 + parent: 2 + - uid: 24735 + components: + - type: Transform + pos: 24.5,193.5 + parent: 2 + - uid: 24736 + components: + - type: Transform + pos: 24.5,194.5 + parent: 2 + - uid: 24737 + components: + - type: Transform + pos: 20.5,183.5 + parent: 2 + - uid: 24738 + components: + - type: Transform + pos: 20.5,182.5 + parent: 2 + - uid: 24740 + components: + - type: Transform + pos: 20.5,181.5 + parent: 2 + - uid: 24741 + components: + - type: Transform + pos: 20.5,180.5 + parent: 2 + - uid: 24742 + components: + - type: Transform + pos: 21.5,180.5 + parent: 2 + - uid: 24743 + components: + - type: Transform + pos: 22.5,180.5 + parent: 2 + - uid: 24744 + components: + - type: Transform + pos: 22.5,179.5 + parent: 2 + - uid: 24745 + components: + - type: Transform + pos: 22.5,178.5 + parent: 2 + - uid: 24746 + components: + - type: Transform + pos: 22.5,177.5 + parent: 2 + - uid: 24747 + components: + - type: Transform + pos: 22.5,176.5 + parent: 2 + - uid: 24749 + components: + - type: Transform + pos: 20.5,179.5 + parent: 2 + - uid: 24750 + components: + - type: Transform + pos: 20.5,178.5 + parent: 2 + - uid: 24751 + components: + - type: Transform + pos: 20.5,177.5 + parent: 2 + - uid: 24752 + components: + - type: Transform + pos: 20.5,176.5 + parent: 2 + - uid: 24756 + components: + - type: Transform + pos: 18.5,182.5 + parent: 2 + - uid: 24757 + components: + - type: Transform + pos: 18.5,181.5 + parent: 2 + - uid: 24758 + components: + - type: Transform + pos: 17.5,181.5 + parent: 2 + - uid: 24759 + components: + - type: Transform + pos: -25.5,176.5 + parent: 2 + - uid: 24760 + components: + - type: Transform + pos: 17.5,180.5 + parent: 2 + - uid: 24761 + components: + - type: Transform + pos: 16.5,180.5 + parent: 2 + - uid: 24762 + components: + - type: Transform + pos: 15.5,180.5 + parent: 2 + - uid: 24763 + components: + - type: Transform + pos: 14.5,180.5 + parent: 2 + - uid: 24764 + components: + - type: Transform + pos: 13.5,180.5 + parent: 2 + - uid: 24765 + components: + - type: Transform + pos: 12.5,180.5 + parent: 2 + - uid: 24766 + components: + - type: Transform + pos: 11.5,180.5 + parent: 2 + - uid: 24767 + components: + - type: Transform + pos: 10.5,180.5 + parent: 2 + - uid: 24768 + components: + - type: Transform + pos: 9.5,180.5 + parent: 2 + - uid: 24789 + components: + - type: Transform + pos: -24.5,173.5 + parent: 2 + - uid: 24790 + components: + - type: Transform + pos: -24.5,174.5 + parent: 2 + - uid: 24791 + components: + - type: Transform + pos: -24.5,175.5 + parent: 2 + - uid: 24792 + components: + - type: Transform + pos: -24.5,176.5 + parent: 2 + - uid: 24803 + components: + - type: Transform + pos: -118.5,92.5 + parent: 2 + - uid: 24813 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 24973 + components: + - type: Transform + pos: 17.5,193.5 + parent: 2 + - uid: 24974 + components: + - type: Transform + pos: 17.5,192.5 + parent: 2 + - uid: 24975 + components: + - type: Transform + pos: 19.5,192.5 + parent: 2 + - uid: 24976 + components: + - type: Transform + pos: 18.5,192.5 + parent: 2 + - uid: 24977 + components: + - type: Transform + pos: 20.5,192.5 + parent: 2 + - uid: 24978 + components: + - type: Transform + pos: 17.5,194.5 + parent: 2 + - uid: 24979 + components: + - type: Transform + pos: 18.5,194.5 + parent: 2 + - uid: 24980 + components: + - type: Transform + pos: 19.5,194.5 + parent: 2 + - uid: 24981 + components: + - type: Transform + pos: 22.5,192.5 + parent: 2 + - uid: 24982 + components: + - type: Transform + pos: 21.5,192.5 + parent: 2 + - uid: 24983 + components: + - type: Transform + pos: 20.5,191.5 + parent: 2 + - uid: 24984 + components: + - type: Transform + pos: 20.5,190.5 + parent: 2 + - uid: 24985 + components: + - type: Transform + pos: 20.5,189.5 + parent: 2 + - uid: 24987 + components: + - type: Transform + pos: 9.5,184.5 + parent: 2 + - uid: 24988 + components: + - type: Transform + pos: 10.5,184.5 + parent: 2 + - uid: 24989 + components: + - type: Transform + pos: 11.5,184.5 + parent: 2 + - uid: 24991 + components: + - type: Transform + pos: 11.5,185.5 + parent: 2 + - uid: 25024 + components: + - type: Transform + pos: -4.5,174.5 + parent: 2 + - uid: 25050 + components: + - type: Transform + pos: -13.5,164.5 + parent: 2 + - uid: 25057 + components: + - type: Transform + pos: -128.5,102.5 + parent: 2 + - uid: 25060 + components: + - type: Transform + pos: -10.5,164.5 + parent: 2 + - uid: 25104 + components: + - type: Transform + pos: -93.5,53.5 + parent: 2 + - uid: 25191 + components: + - type: Transform + pos: -134.5,90.5 + parent: 2 + - uid: 25196 + components: + - type: Transform + pos: -135.5,90.5 + parent: 2 + - uid: 25199 + components: + - type: Transform + pos: -122.5,92.5 + parent: 2 + - uid: 25233 + components: + - type: Transform + pos: -123.5,97.5 + parent: 2 + - uid: 25241 + components: + - type: Transform + pos: -127.5,91.5 + parent: 2 + - uid: 25242 + components: + - type: Transform + pos: -123.5,94.5 + parent: 2 + - uid: 25245 + components: + - type: Transform + pos: -123.5,98.5 + parent: 2 + - uid: 25328 + components: + - type: Transform + pos: -124.5,107.5 + parent: 2 + - uid: 25463 + components: + - type: Transform + pos: 10.5,171.5 + parent: 2 + - uid: 25521 + components: + - type: Transform + pos: 15.5,171.5 + parent: 2 + - uid: 25522 + components: + - type: Transform + pos: 13.5,171.5 + parent: 2 + - uid: 25565 + components: + - type: Transform + pos: 8.5,173.5 + parent: 2 + - uid: 25566 + components: + - type: Transform + pos: 8.5,172.5 + parent: 2 + - uid: 25567 + components: + - type: Transform + pos: 8.5,171.5 + parent: 2 + - uid: 25571 + components: + - type: Transform + pos: 14.5,171.5 + parent: 2 + - uid: 25575 + components: + - type: Transform + pos: 16.5,171.5 + parent: 2 + - uid: 25576 + components: + - type: Transform + pos: 17.5,171.5 + parent: 2 + - uid: 25577 + components: + - type: Transform + pos: 17.5,172.5 + parent: 2 + - uid: 25578 + components: + - type: Transform + pos: 17.5,173.5 + parent: 2 + - uid: 25579 + components: + - type: Transform + pos: 17.5,174.5 + parent: 2 + - uid: 25580 + components: + - type: Transform + pos: 17.5,175.5 + parent: 2 + - uid: 25581 + components: + - type: Transform + pos: 17.5,176.5 + parent: 2 + - uid: 25582 + components: + - type: Transform + pos: 17.5,177.5 + parent: 2 + - uid: 25583 + components: + - type: Transform + pos: 17.5,178.5 + parent: 2 + - uid: 25584 + components: + - type: Transform + pos: 6.5,171.5 + parent: 2 + - uid: 25585 + components: + - type: Transform + pos: 5.5,171.5 + parent: 2 + - uid: 25586 + components: + - type: Transform + pos: 4.5,171.5 + parent: 2 + - uid: 25587 + components: + - type: Transform + pos: 7.5,171.5 + parent: 2 + - uid: 25592 + components: + - type: Transform + pos: 6.5,175.5 + parent: 2 + - uid: 25593 + components: + - type: Transform + pos: 6.5,176.5 + parent: 2 + - uid: 25594 + components: + - type: Transform + pos: 6.5,177.5 + parent: 2 + - uid: 25595 + components: + - type: Transform + pos: 4.5,174.5 + parent: 2 + - uid: 25596 + components: + - type: Transform + pos: 5.5,174.5 + parent: 2 + - uid: 25597 + components: + - type: Transform + pos: 5.5,176.5 + parent: 2 + - uid: 25618 + components: + - type: Transform + pos: 4.5,190.5 + parent: 2 + - uid: 25619 + components: + - type: Transform + pos: 4.5,191.5 + parent: 2 + - uid: 25620 + components: + - type: Transform + pos: 4.5,192.5 + parent: 2 + - uid: 25621 + components: + - type: Transform + pos: 4.5,193.5 + parent: 2 + - uid: 25622 + components: + - type: Transform + pos: 5.5,191.5 + parent: 2 + - uid: 25623 + components: + - type: Transform + pos: 6.5,191.5 + parent: 2 + - uid: 25624 + components: + - type: Transform + pos: 6.5,192.5 + parent: 2 + - uid: 25625 + components: + - type: Transform + pos: 6.5,193.5 + parent: 2 + - uid: 25690 + components: + - type: Transform + pos: -14.5,169.5 + parent: 2 + - uid: 25691 + components: + - type: Transform + pos: -14.5,168.5 + parent: 2 + - uid: 25775 + components: + - type: Transform + pos: -11.5,168.5 + parent: 2 + - uid: 25783 + components: + - type: Transform + pos: -17.5,166.5 + parent: 2 + - uid: 25784 + components: + - type: Transform + pos: -18.5,166.5 + parent: 2 + - uid: 25785 + components: + - type: Transform + pos: -19.5,166.5 + parent: 2 + - uid: 25786 + components: + - type: Transform + pos: -20.5,166.5 + parent: 2 + - uid: 25787 + components: + - type: Transform + pos: -21.5,166.5 + parent: 2 + - uid: 25788 + components: + - type: Transform + pos: -22.5,166.5 + parent: 2 + - uid: 25789 + components: + - type: Transform + pos: -23.5,166.5 + parent: 2 + - uid: 25790 + components: + - type: Transform + pos: -24.5,166.5 + parent: 2 + - uid: 25791 + components: + - type: Transform + pos: -25.5,166.5 + parent: 2 + - uid: 25792 + components: + - type: Transform + pos: -20.5,162.5 + parent: 2 + - uid: 25793 + components: + - type: Transform + pos: -20.5,163.5 + parent: 2 + - uid: 25794 + components: + - type: Transform + pos: -20.5,164.5 + parent: 2 + - uid: 25795 + components: + - type: Transform + pos: -20.5,165.5 + parent: 2 + - uid: 25796 + components: + - type: Transform + pos: -18.5,162.5 + parent: 2 + - uid: 25797 + components: + - type: Transform + pos: -18.5,163.5 + parent: 2 + - uid: 25798 + components: + - type: Transform + pos: -18.5,164.5 + parent: 2 + - uid: 25799 + components: + - type: Transform + pos: -18.5,165.5 + parent: 2 + - uid: 25802 + components: + - type: Transform + pos: -8.5,166.5 + parent: 2 + - uid: 25803 + components: + - type: Transform + pos: -8.5,167.5 + parent: 2 + - uid: 25804 + components: + - type: Transform + pos: -8.5,168.5 + parent: 2 + - uid: 25805 + components: + - type: Transform + pos: -8.5,169.5 + parent: 2 + - uid: 25806 + components: + - type: Transform + pos: -8.5,170.5 + parent: 2 + - uid: 25810 + components: + - type: Transform + pos: -10.5,170.5 + parent: 2 + - uid: 25811 + components: + - type: Transform + pos: -9.5,170.5 + parent: 2 + - uid: 25812 + components: + - type: Transform + pos: -12.5,170.5 + parent: 2 + - uid: 25824 + components: + - type: Transform + pos: -8.5,171.5 + parent: 2 + - uid: 25837 + components: + - type: Transform + pos: -5.5,172.5 + parent: 2 + - uid: 25838 + components: + - type: Transform + pos: -5.5,171.5 + parent: 2 + - uid: 25839 + components: + - type: Transform + pos: -5.5,170.5 + parent: 2 + - uid: 25840 + components: + - type: Transform + pos: -4.5,170.5 + parent: 2 + - uid: 25841 + components: + - type: Transform + pos: -3.5,170.5 + parent: 2 + - uid: 25842 + components: + - type: Transform + pos: -2.5,170.5 + parent: 2 + - uid: 25843 + components: + - type: Transform + pos: -3.5,169.5 + parent: 2 + - uid: 25844 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - uid: 25845 + components: + - type: Transform + pos: -3.5,167.5 + parent: 2 + - uid: 25846 + components: + - type: Transform + pos: -3.5,166.5 + parent: 2 + - uid: 25847 + components: + - type: Transform + pos: -2.5,166.5 + parent: 2 + - uid: 25848 + components: + - type: Transform + pos: -1.5,166.5 + parent: 2 + - uid: 25849 + components: + - type: Transform + pos: -0.5,166.5 + parent: 2 + - uid: 25850 + components: + - type: Transform + pos: 0.5,166.5 + parent: 2 + - uid: 25851 + components: + - type: Transform + pos: 1.5,166.5 + parent: 2 + - uid: 25852 + components: + - type: Transform + pos: 2.5,166.5 + parent: 2 + - uid: 25853 + components: + - type: Transform + pos: 3.5,166.5 + parent: 2 + - uid: 25854 + components: + - type: Transform + pos: 4.5,166.5 + parent: 2 + - uid: 25855 + components: + - type: Transform + pos: 5.5,166.5 + parent: 2 + - uid: 25856 + components: + - type: Transform + pos: 6.5,166.5 + parent: 2 + - uid: 25857 + components: + - type: Transform + pos: 1.5,165.5 + parent: 2 + - uid: 25858 + components: + - type: Transform + pos: 1.5,164.5 + parent: 2 + - uid: 25859 + components: + - type: Transform + pos: 1.5,163.5 + parent: 2 + - uid: 25860 + components: + - type: Transform + pos: 1.5,162.5 + parent: 2 + - uid: 25861 + components: + - type: Transform + pos: -0.5,165.5 + parent: 2 + - uid: 25862 + components: + - type: Transform + pos: -0.5,164.5 + parent: 2 + - uid: 25863 + components: + - type: Transform + pos: -0.5,163.5 + parent: 2 + - uid: 25864 + components: + - type: Transform + pos: -0.5,162.5 + parent: 2 + - uid: 25865 + components: + - type: Transform + pos: -4.5,166.5 + parent: 2 + - uid: 25866 + components: + - type: Transform + pos: -5.5,166.5 + parent: 2 + - uid: 26004 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 26008 + components: + - type: Transform + pos: -16.5,166.5 + parent: 2 + - uid: 26159 + components: + - type: Transform + pos: 79.5,32.5 + parent: 2 + - uid: 26329 + components: + - type: Transform + pos: -24.5,177.5 + parent: 2 + - uid: 26346 + components: + - type: Transform + pos: -29.5,189.5 + parent: 2 + - uid: 26347 + components: + - type: Transform + pos: -29.5,190.5 + parent: 2 + - uid: 26348 + components: + - type: Transform + pos: -29.5,191.5 + parent: 2 + - uid: 26349 + components: + - type: Transform + pos: -29.5,192.5 + parent: 2 + - uid: 26350 + components: + - type: Transform + pos: -30.5,192.5 + parent: 2 + - uid: 26351 + components: + - type: Transform + pos: -31.5,192.5 + parent: 2 + - uid: 26352 + components: + - type: Transform + pos: -32.5,192.5 + parent: 2 + - uid: 26353 + components: + - type: Transform + pos: -33.5,192.5 + parent: 2 + - uid: 26354 + components: + - type: Transform + pos: -34.5,192.5 + parent: 2 + - uid: 26355 + components: + - type: Transform + pos: -35.5,192.5 + parent: 2 + - uid: 26419 + components: + - type: Transform + pos: -33.5,104.5 + parent: 2 + - uid: 26431 + components: + - type: Transform + pos: -95.5,54.5 + parent: 2 + - uid: 26432 + components: + - type: Transform + pos: -94.5,55.5 + parent: 2 + - uid: 26433 + components: + - type: Transform + pos: -94.5,56.5 + parent: 2 + - uid: 26434 + components: + - type: Transform + pos: -93.5,56.5 + parent: 2 + - uid: 26435 + components: + - type: Transform + pos: -92.5,56.5 + parent: 2 + - uid: 26436 + components: + - type: Transform + pos: -92.5,57.5 + parent: 2 + - uid: 26438 + components: + - type: Transform + pos: -91.5,57.5 + parent: 2 + - uid: 26439 + components: + - type: Transform + pos: -92.5,57.5 + parent: 2 + - uid: 26440 + components: + - type: Transform + pos: -92.5,56.5 + parent: 2 + - uid: 26441 + components: + - type: Transform + pos: -90.5,57.5 + parent: 2 + - uid: 26442 + components: + - type: Transform + pos: -90.5,58.5 + parent: 2 + - uid: 26443 + components: + - type: Transform + pos: -89.5,58.5 + parent: 2 + - uid: 26449 + components: + - type: Transform + pos: -76.5,65.5 + parent: 2 + - uid: 26450 + components: + - type: Transform + pos: -76.5,64.5 + parent: 2 + - uid: 26451 + components: + - type: Transform + pos: -77.5,64.5 + parent: 2 + - uid: 26452 + components: + - type: Transform + pos: -78.5,64.5 + parent: 2 + - uid: 26453 + components: + - type: Transform + pos: -78.5,63.5 + parent: 2 + - uid: 26454 + components: + - type: Transform + pos: -79.5,63.5 + parent: 2 + - uid: 26455 + components: + - type: Transform + pos: -80.5,63.5 + parent: 2 + - uid: 26456 + components: + - type: Transform + pos: -80.5,62.5 + parent: 2 + - uid: 26457 + components: + - type: Transform + pos: -82.5,62.5 + parent: 2 + - uid: 26458 + components: + - type: Transform + pos: -81.5,62.5 + parent: 2 + - uid: 26460 + components: + - type: Transform + pos: -82.5,61.5 + parent: 2 + - uid: 26461 + components: + - type: Transform + pos: -83.5,61.5 + parent: 2 + - uid: 26506 + components: + - type: Transform + pos: -125.5,105.5 + parent: 2 + - uid: 26526 + components: + - type: Transform + pos: -125.5,106.5 + parent: 2 + - uid: 26539 + components: + - type: Transform + pos: -88.5,87.5 + parent: 2 + - uid: 26827 + components: + - type: Transform + pos: -124.5,106.5 + parent: 2 + - uid: 26832 + components: + - type: Transform + pos: 17.5,205.5 + parent: 2 + - uid: 26833 + components: + - type: Transform + pos: 16.5,205.5 + parent: 2 + - uid: 26834 + components: + - type: Transform + pos: 16.5,204.5 + parent: 2 + - uid: 26835 + components: + - type: Transform + pos: 16.5,206.5 + parent: 2 + - uid: 26997 + components: + - type: Transform + pos: -31.5,104.5 + parent: 2 + - uid: 26999 + components: + - type: Transform + pos: -30.5,104.5 + parent: 2 + - uid: 27131 + components: + - type: Transform + pos: -60.5,90.5 + parent: 2 + - uid: 27369 + components: + - type: Transform + pos: -48.5,95.5 + parent: 2 + - uid: 27389 + components: + - type: Transform + pos: -47.5,95.5 + parent: 2 + - uid: 27390 + components: + - type: Transform + pos: -47.5,94.5 + parent: 2 + - uid: 27391 + components: + - type: Transform + pos: -46.5,94.5 + parent: 2 + - uid: 27392 + components: + - type: Transform + pos: -46.5,93.5 + parent: 2 + - uid: 27410 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - uid: 27411 + components: + - type: Transform + pos: -7.5,74.5 + parent: 2 + - uid: 27412 + components: + - type: Transform + pos: -8.5,74.5 + parent: 2 + - uid: 27413 + components: + - type: Transform + pos: -9.5,74.5 + parent: 2 + - uid: 27414 + components: + - type: Transform + pos: -10.5,74.5 + parent: 2 + - uid: 27415 + components: + - type: Transform + pos: -11.5,74.5 + parent: 2 + - uid: 27416 + components: + - type: Transform + pos: -12.5,74.5 + parent: 2 + - uid: 27417 + components: + - type: Transform + pos: -13.5,74.5 + parent: 2 + - uid: 27418 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - uid: 27421 + components: + - type: Transform + pos: -6.5,206.5 + parent: 2 + - uid: 27432 + components: + - type: Transform + pos: -69.5,178.5 + parent: 2 + - uid: 27436 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 27438 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 27477 + components: + - type: Transform + pos: -115.5,53.5 + parent: 2 + - uid: 27512 + components: + - type: Transform + pos: -88.5,88.5 + parent: 2 + - uid: 27518 + components: + - type: Transform + pos: -88.5,89.5 + parent: 2 + - uid: 27542 + components: + - type: Transform + pos: -88.5,90.5 + parent: 2 + - uid: 27659 + components: + - type: Transform + pos: -35.5,101.5 + parent: 2 + - uid: 27694 + components: + - type: Transform + pos: -109.5,30.5 + parent: 2 + - uid: 27718 + components: + - type: Transform + pos: -88.5,91.5 + parent: 2 + - uid: 27720 + components: + - type: Transform + pos: -87.5,91.5 + parent: 2 + - uid: 27748 + components: + - type: Transform + pos: -86.5,91.5 + parent: 2 + - uid: 27762 + components: + - type: Transform + pos: -85.5,91.5 + parent: 2 + - uid: 27770 + components: + - type: Transform + pos: -84.5,91.5 + parent: 2 + - uid: 27771 + components: + - type: Transform + pos: -83.5,91.5 + parent: 2 + - uid: 27780 + components: + - type: Transform + pos: -82.5,91.5 + parent: 2 + - uid: 27842 + components: + - type: Transform + pos: -17.5,168.5 + parent: 2 + - uid: 27877 + components: + - type: Transform + pos: -98.5,149.5 + parent: 2 + - uid: 27933 + components: + - type: Transform + pos: -85.5,95.5 + parent: 2 + - uid: 27943 + components: + - type: Transform + pos: -101.5,148.5 + parent: 2 + - uid: 27971 + components: + - type: Transform + pos: -121.5,53.5 + parent: 2 + - uid: 27986 + components: + - type: Transform + pos: -101.5,145.5 + parent: 2 + - uid: 27990 + components: + - type: Transform + pos: -101.5,146.5 + parent: 2 + - uid: 27991 + components: + - type: Transform + pos: -101.5,147.5 + parent: 2 + - uid: 27992 + components: + - type: Transform + pos: -98.5,150.5 + parent: 2 + - uid: 27997 + components: + - type: Transform + pos: -99.5,148.5 + parent: 2 + - uid: 28013 + components: + - type: Transform + pos: -100.5,145.5 + parent: 2 + - uid: 28014 + components: + - type: Transform + pos: -100.5,144.5 + parent: 2 + - uid: 28015 + components: + - type: Transform + pos: -99.5,144.5 + parent: 2 + - uid: 28016 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 28017 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 28018 + components: + - type: Transform + pos: -88.5,147.5 + parent: 2 + - uid: 28019 + components: + - type: Transform + pos: -97.5,144.5 + parent: 2 + - uid: 28020 + components: + - type: Transform + pos: -96.5,144.5 + parent: 2 + - uid: 28023 + components: + - type: Transform + pos: -88.5,145.5 + parent: 2 + - uid: 28027 + components: + - type: Transform + pos: -95.5,144.5 + parent: 2 + - uid: 28028 + components: + - type: Transform + pos: -94.5,144.5 + parent: 2 + - uid: 28029 + components: + - type: Transform + pos: -92.5,144.5 + parent: 2 + - uid: 28030 + components: + - type: Transform + pos: -93.5,144.5 + parent: 2 + - uid: 28032 + components: + - type: Transform + pos: -90.5,144.5 + parent: 2 + - uid: 28033 + components: + - type: Transform + pos: -89.5,144.5 + parent: 2 + - uid: 28034 + components: + - type: Transform + pos: -88.5,144.5 + parent: 2 + - uid: 28035 + components: + - type: Transform + pos: -87.5,144.5 + parent: 2 + - uid: 28036 + components: + - type: Transform + pos: -86.5,144.5 + parent: 2 + - uid: 28037 + components: + - type: Transform + pos: -85.5,144.5 + parent: 2 + - uid: 28038 + components: + - type: Transform + pos: -84.5,144.5 + parent: 2 + - uid: 28039 + components: + - type: Transform + pos: -83.5,144.5 + parent: 2 + - uid: 28040 + components: + - type: Transform + pos: -83.5,145.5 + parent: 2 + - uid: 28041 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - uid: 28042 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - uid: 28043 + components: + - type: Transform + pos: -80.5,145.5 + parent: 2 + - uid: 28044 + components: + - type: Transform + pos: -81.5,145.5 + parent: 2 + - uid: 28045 + components: + - type: Transform + pos: -79.5,145.5 + parent: 2 + - uid: 28046 + components: + - type: Transform + pos: -78.5,145.5 + parent: 2 + - uid: 28047 + components: + - type: Transform + pos: -77.5,145.5 + parent: 2 + - uid: 28048 + components: + - type: Transform + pos: -77.5,146.5 + parent: 2 + - uid: 28049 + components: + - type: Transform + pos: -77.5,147.5 + parent: 2 + - uid: 28051 + components: + - type: Transform + pos: -77.5,146.5 + parent: 2 + - uid: 28052 + components: + - type: Transform + pos: -76.5,148.5 + parent: 2 + - uid: 28053 + components: + - type: Transform + pos: -75.5,148.5 + parent: 2 + - uid: 28054 + components: + - type: Transform + pos: -74.5,148.5 + parent: 2 + - uid: 28055 + components: + - type: Transform + pos: -73.5,148.5 + parent: 2 + - uid: 28056 + components: + - type: Transform + pos: -72.5,148.5 + parent: 2 + - uid: 28057 + components: + - type: Transform + pos: -72.5,149.5 + parent: 2 + - uid: 28058 + components: + - type: Transform + pos: -72.5,150.5 + parent: 2 + - uid: 28059 + components: + - type: Transform + pos: -84.5,143.5 + parent: 2 + - uid: 28060 + components: + - type: Transform + pos: -71.5,148.5 + parent: 2 + - uid: 28061 + components: + - type: Transform + pos: -70.5,148.5 + parent: 2 + - uid: 28062 + components: + - type: Transform + pos: -84.5,142.5 + parent: 2 + - uid: 28063 + components: + - type: Transform + pos: -84.5,141.5 + parent: 2 + - uid: 28064 + components: + - type: Transform + pos: -70.5,147.5 + parent: 2 + - uid: 28065 + components: + - type: Transform + pos: -70.5,146.5 + parent: 2 + - uid: 28066 + components: + - type: Transform + pos: -70.5,145.5 + parent: 2 + - uid: 28067 + components: + - type: Transform + pos: -70.5,144.5 + parent: 2 + - uid: 28068 + components: + - type: Transform + pos: -77.5,143.5 + parent: 2 + - uid: 28069 + components: + - type: Transform + pos: -77.5,142.5 + parent: 2 + - uid: 28072 + components: + - type: Transform + pos: -84.5,140.5 + parent: 2 + - uid: 28073 + components: + - type: Transform + pos: -83.5,142.5 + parent: 2 + - uid: 28074 + components: + - type: Transform + pos: -85.5,142.5 + parent: 2 + - uid: 28096 + components: + - type: Transform + pos: -118.5,53.5 + parent: 2 + - uid: 28310 + components: + - type: Transform + pos: -124.5,57.5 + parent: 2 + - uid: 28347 + components: + - type: Transform + pos: -92.5,52.5 + parent: 2 + - uid: 28444 + components: + - type: Transform + pos: -122.5,53.5 + parent: 2 + - uid: 28479 + components: + - type: Transform + pos: -96.5,53.5 + parent: 2 + - uid: 28592 + components: + - type: Transform + pos: -120.5,53.5 + parent: 2 + - uid: 28595 + components: + - type: Transform + pos: -117.5,53.5 + parent: 2 + - uid: 28639 + components: + - type: Transform + pos: -116.5,53.5 + parent: 2 + - uid: 28772 + components: + - type: Transform + pos: -113.5,17.5 + parent: 2 + - uid: 28922 + components: + - type: Transform + pos: -113.5,16.5 + parent: 2 + - uid: 28925 + components: + - type: Transform + pos: -113.5,15.5 + parent: 2 + - uid: 28932 + components: + - type: Transform + pos: -113.5,14.5 + parent: 2 + - uid: 28933 + components: + - type: Transform + pos: -112.5,14.5 + parent: 2 + - uid: 28935 + components: + - type: Transform + pos: -111.5,14.5 + parent: 2 + - uid: 28977 + components: + - type: Transform + pos: -79.5,142.5 + parent: 2 + - uid: 28994 + components: + - type: Transform + pos: -110.5,14.5 + parent: 2 + - uid: 29016 + components: + - type: Transform + pos: -109.5,14.5 + parent: 2 + - uid: 29018 + components: + - type: Transform + pos: -108.5,14.5 + parent: 2 + - uid: 29064 + components: + - type: Transform + pos: -107.5,14.5 + parent: 2 + - uid: 29076 + components: + - type: Transform + pos: -126.5,59.5 + parent: 2 + - uid: 29083 + components: + - type: Transform + pos: -106.5,14.5 + parent: 2 + - uid: 29099 + components: + - type: Transform + pos: -121.5,45.5 + parent: 2 + - uid: 29102 + components: + - type: Transform + pos: -105.5,14.5 + parent: 2 + - uid: 29113 + components: + - type: Transform + pos: -79.5,140.5 + parent: 2 + - uid: 29114 + components: + - type: Transform + pos: -79.5,144.5 + parent: 2 + - uid: 29132 + components: + - type: Transform + pos: -120.5,45.5 + parent: 2 + - uid: 29170 + components: + - type: Transform + pos: -119.5,45.5 + parent: 2 + - uid: 29186 + components: + - type: Transform + pos: -104.5,14.5 + parent: 2 + - uid: 29201 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29318 + components: + - type: Transform + pos: -119.5,44.5 + parent: 2 + - uid: 29332 + components: + - type: Transform + pos: -119.5,43.5 + parent: 2 + - uid: 29342 + components: + - type: Transform + pos: -103.5,14.5 + parent: 2 + - uid: 29346 + components: + - type: Transform + pos: -119.5,43.5 + parent: 2 + - uid: 29369 + components: + - type: Transform + pos: -119.5,42.5 + parent: 2 + - uid: 29435 + components: + - type: Transform + pos: -102.5,14.5 + parent: 2 + - uid: 29517 + components: + - type: Transform + pos: -112.5,30.5 + parent: 2 + - uid: 29518 + components: + - type: Transform + pos: -111.5,30.5 + parent: 2 + - uid: 29519 + components: + - type: Transform + pos: -110.5,30.5 + parent: 2 + - uid: 29520 + components: + - type: Transform + pos: -108.5,30.5 + parent: 2 + - uid: 29521 + components: + - type: Transform + pos: -108.5,29.5 + parent: 2 + - uid: 29522 + components: + - type: Transform + pos: -110.5,31.5 + parent: 2 + - uid: 29523 + components: + - type: Transform + pos: -110.5,32.5 + parent: 2 + - uid: 29524 + components: + - type: Transform + pos: -111.5,32.5 + parent: 2 + - uid: 29525 + components: + - type: Transform + pos: -110.5,33.5 + parent: 2 + - uid: 29526 + components: + - type: Transform + pos: -109.5,32.5 + parent: 2 + - uid: 29528 + components: + - type: Transform + pos: -110.5,34.5 + parent: 2 + - uid: 29529 + components: + - type: Transform + pos: -110.5,35.5 + parent: 2 + - uid: 29530 + components: + - type: Transform + pos: -110.5,36.5 + parent: 2 + - uid: 29531 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 29532 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 29533 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 29535 + components: + - type: Transform + pos: -111.5,34.5 + parent: 2 + - uid: 29536 + components: + - type: Transform + pos: -112.5,34.5 + parent: 2 + - uid: 29537 + components: + - type: Transform + pos: -113.5,34.5 + parent: 2 + - uid: 29538 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 29539 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29540 + components: + - type: Transform + pos: -114.5,33.5 + parent: 2 + - uid: 29541 + components: + - type: Transform + pos: -109.5,34.5 + parent: 2 + - uid: 29542 + components: + - type: Transform + pos: -108.5,34.5 + parent: 2 + - uid: 29543 + components: + - type: Transform + pos: -107.5,34.5 + parent: 2 + - uid: 29544 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 29545 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 29546 + components: + - type: Transform + pos: -106.5,33.5 + parent: 2 + - uid: 29600 + components: + - type: Transform + pos: -101.5,14.5 + parent: 2 + - uid: 29610 + components: + - type: Transform + pos: -100.5,14.5 + parent: 2 + - uid: 29612 + components: + - type: Transform + pos: -99.5,14.5 + parent: 2 + - uid: 29678 + components: + - type: Transform + pos: -98.5,14.5 + parent: 2 + - uid: 29690 + components: + - type: Transform + pos: -98.5,15.5 + parent: 2 + - uid: 29715 + components: + - type: Transform + pos: -98.5,16.5 + parent: 2 + - uid: 29740 + components: + - type: Transform + pos: -98.5,17.5 + parent: 2 + - uid: 29742 + components: + - type: Transform + pos: -98.5,18.5 + parent: 2 + - uid: 29743 + components: + - type: Transform + pos: -98.5,19.5 + parent: 2 + - uid: 29745 + components: + - type: Transform + pos: -99.5,19.5 + parent: 2 + - uid: 29747 + components: + - type: Transform + pos: -100.5,19.5 + parent: 2 + - uid: 29748 + components: + - type: Transform + pos: -101.5,19.5 + parent: 2 + - uid: 29776 + components: + - type: Transform + pos: -102.5,19.5 + parent: 2 + - uid: 29778 + components: + - type: Transform + pos: -102.5,20.5 + parent: 2 + - uid: 29779 + components: + - type: Transform + pos: -102.5,21.5 + parent: 2 + - uid: 29781 + components: + - type: Transform + pos: -102.5,23.5 + parent: 2 + - uid: 29782 + components: + - type: Transform + pos: -102.5,24.5 + parent: 2 + - uid: 29783 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 29784 + components: + - type: Transform + pos: -102.5,26.5 + parent: 2 + - uid: 29785 + components: + - type: Transform + pos: -102.5,27.5 + parent: 2 + - uid: 29812 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 29813 + components: + - type: Transform + pos: -110.5,27.5 + parent: 2 + - uid: 29884 + components: + - type: Transform + pos: -116.5,42.5 + parent: 2 + - uid: 29893 + components: + - type: Transform + pos: -116.5,36.5 + parent: 2 + - uid: 29894 + components: + - type: Transform + pos: -116.5,37.5 + parent: 2 + - uid: 29895 + components: + - type: Transform + pos: -116.5,38.5 + parent: 2 + - uid: 29896 + components: + - type: Transform + pos: -116.5,39.5 + parent: 2 + - uid: 29897 + components: + - type: Transform + pos: -116.5,40.5 + parent: 2 + - uid: 29899 + components: + - type: Transform + pos: -116.5,41.5 + parent: 2 + - uid: 29901 + components: + - type: Transform + pos: -117.5,42.5 + parent: 2 + - uid: 29902 + components: + - type: Transform + pos: -118.5,42.5 + parent: 2 + - uid: 29904 + components: + - type: Transform + pos: -118.5,45.5 + parent: 2 + - uid: 29905 + components: + - type: Transform + pos: -117.5,45.5 + parent: 2 + - uid: 29906 + components: + - type: Transform + pos: -116.5,45.5 + parent: 2 + - uid: 29907 + components: + - type: Transform + pos: -115.5,45.5 + parent: 2 + - uid: 29908 + components: + - type: Transform + pos: -114.5,45.5 + parent: 2 + - uid: 29909 + components: + - type: Transform + pos: -113.5,45.5 + parent: 2 + - uid: 29910 + components: + - type: Transform + pos: -112.5,45.5 + parent: 2 + - uid: 29911 + components: + - type: Transform + pos: -112.5,46.5 + parent: 2 + - uid: 29912 + components: + - type: Transform + pos: -111.5,46.5 + parent: 2 + - uid: 29913 + components: + - type: Transform + pos: -111.5,47.5 + parent: 2 + - uid: 30020 + components: + - type: Transform + pos: -74.5,48.5 + parent: 2 + - uid: 30026 + components: + - type: Transform + pos: -77.5,48.5 + parent: 2 + - uid: 30042 + components: + - type: Transform + pos: -92.5,33.5 + parent: 2 + - uid: 30043 + components: + - type: Transform + pos: -92.5,34.5 + parent: 2 + - uid: 30044 + components: + - type: Transform + pos: -92.5,35.5 + parent: 2 + - uid: 30045 + components: + - type: Transform + pos: -92.5,36.5 + parent: 2 + - uid: 30046 + components: + - type: Transform + pos: -92.5,37.5 + parent: 2 + - uid: 30048 + components: + - type: Transform + pos: -91.5,35.5 + parent: 2 + - uid: 30050 + components: + - type: Transform + pos: -90.5,35.5 + parent: 2 + - uid: 30052 + components: + - type: Transform + pos: -93.5,35.5 + parent: 2 + - uid: 30053 + components: + - type: Transform + pos: -94.5,35.5 + parent: 2 + - uid: 30060 + components: + - type: Transform + pos: -104.5,47.5 + parent: 2 + - uid: 30063 + components: + - type: Transform + pos: -104.5,44.5 + parent: 2 + - uid: 30065 + components: + - type: Transform + pos: -76.5,48.5 + parent: 2 + - uid: 30066 + components: + - type: Transform + pos: -94.5,44.5 + parent: 2 + - uid: 30067 + components: + - type: Transform + pos: -94.5,45.5 + parent: 2 + - uid: 30068 + components: + - type: Transform + pos: -94.5,46.5 + parent: 2 + - uid: 30069 + components: + - type: Transform + pos: -94.5,47.5 + parent: 2 + - uid: 30070 + components: + - type: Transform + pos: -93.5,45.5 + parent: 2 + - uid: 30071 + components: + - type: Transform + pos: -93.5,44.5 + parent: 2 + - uid: 30072 + components: + - type: Transform + pos: -92.5,44.5 + parent: 2 + - uid: 30073 + components: + - type: Transform + pos: -75.5,48.5 + parent: 2 + - uid: 30090 + components: + - type: Transform + pos: -91.5,44.5 + parent: 2 + - uid: 30094 + components: + - type: Transform + pos: -81.5,46.5 + parent: 2 + - uid: 30095 + components: + - type: Transform + pos: -90.5,45.5 + parent: 2 + - uid: 30096 + components: + - type: Transform + pos: -89.5,45.5 + parent: 2 + - uid: 30097 + components: + - type: Transform + pos: -88.5,45.5 + parent: 2 + - uid: 30098 + components: + - type: Transform + pos: -87.5,45.5 + parent: 2 + - uid: 30099 + components: + - type: Transform + pos: -86.5,45.5 + parent: 2 + - uid: 30100 + components: + - type: Transform + pos: -85.5,45.5 + parent: 2 + - uid: 30101 + components: + - type: Transform + pos: -84.5,45.5 + parent: 2 + - uid: 30102 + components: + - type: Transform + pos: -83.5,45.5 + parent: 2 + - uid: 30103 + components: + - type: Transform + pos: -82.5,45.5 + parent: 2 + - uid: 30104 + components: + - type: Transform + pos: -81.5,45.5 + parent: 2 + - uid: 30105 + components: + - type: Transform + pos: -81.5,48.5 + parent: 2 + - uid: 30108 + components: + - type: Transform + pos: -78.5,48.5 + parent: 2 + - uid: 30109 + components: + - type: Transform + pos: -78.5,47.5 + parent: 2 + - uid: 30110 + components: + - type: Transform + pos: -78.5,46.5 + parent: 2 + - uid: 30111 + components: + - type: Transform + pos: -78.5,45.5 + parent: 2 + - uid: 30112 + components: + - type: Transform + pos: -78.5,44.5 + parent: 2 + - uid: 30113 + components: + - type: Transform + pos: -78.5,43.5 + parent: 2 + - uid: 30114 + components: + - type: Transform + pos: -78.5,42.5 + parent: 2 + - uid: 30115 + components: + - type: Transform + pos: -78.5,41.5 + parent: 2 + - uid: 30116 + components: + - type: Transform + pos: -78.5,40.5 + parent: 2 + - uid: 30117 + components: + - type: Transform + pos: -78.5,39.5 + parent: 2 + - uid: 30118 + components: + - type: Transform + pos: -78.5,38.5 + parent: 2 + - uid: 30119 + components: + - type: Transform + pos: -78.5,37.5 + parent: 2 + - uid: 30120 + components: + - type: Transform + pos: -78.5,36.5 + parent: 2 + - uid: 30121 + components: + - type: Transform + pos: -78.5,35.5 + parent: 2 + - uid: 30122 + components: + - type: Transform + pos: -78.5,34.5 + parent: 2 + - uid: 30124 + components: + - type: Transform + pos: -80.5,45.5 + parent: 2 + - uid: 30125 + components: + - type: Transform + pos: -79.5,45.5 + parent: 2 + - uid: 30126 + components: + - type: Transform + pos: -73.5,48.5 + parent: 2 + - uid: 30130 + components: + - type: Transform + pos: -80.5,34.5 + parent: 2 + - uid: 30131 + components: + - type: Transform + pos: -79.5,37.5 + parent: 2 + - uid: 30132 + components: + - type: Transform + pos: -73.5,34.5 + parent: 2 + - uid: 30133 + components: + - type: Transform + pos: -74.5,34.5 + parent: 2 + - uid: 30134 + components: + - type: Transform + pos: -75.5,34.5 + parent: 2 + - uid: 30135 + components: + - type: Transform + pos: -76.5,34.5 + parent: 2 + - uid: 30136 + components: + - type: Transform + pos: -77.5,34.5 + parent: 2 + - uid: 30137 + components: + - type: Transform + pos: -85.5,36.5 + parent: 2 + - uid: 30138 + components: + - type: Transform + pos: -79.5,34.5 + parent: 2 + - uid: 30139 + components: + - type: Transform + pos: -81.5,34.5 + parent: 2 + - uid: 30140 + components: + - type: Transform + pos: -80.5,37.5 + parent: 2 + - uid: 30141 + components: + - type: Transform + pos: -81.5,37.5 + parent: 2 + - uid: 30142 + components: + - type: Transform + pos: -82.5,37.5 + parent: 2 + - uid: 30143 + components: + - type: Transform + pos: -83.5,37.5 + parent: 2 + - uid: 30144 + components: + - type: Transform + pos: -84.5,37.5 + parent: 2 + - uid: 30145 + components: + - type: Transform + pos: -85.5,37.5 + parent: 2 + - uid: 30148 + components: + - type: Transform + pos: -86.5,36.5 + parent: 2 + - uid: 30149 + components: + - type: Transform + pos: -87.5,36.5 + parent: 2 + - uid: 30150 + components: + - type: Transform + pos: -88.5,36.5 + parent: 2 + - uid: 30151 + components: + - type: Transform + pos: -89.5,36.5 + parent: 2 + - uid: 30154 + components: + - type: Transform + pos: -89.5,37.5 + parent: 2 + - uid: 30155 + components: + - type: Transform + pos: -89.5,38.5 + parent: 2 + - uid: 30156 + components: + - type: Transform + pos: -89.5,39.5 + parent: 2 + - uid: 30157 + components: + - type: Transform + pos: -89.5,40.5 + parent: 2 + - uid: 30158 + components: + - type: Transform + pos: -89.5,41.5 + parent: 2 + - uid: 30159 + components: + - type: Transform + pos: -89.5,42.5 + parent: 2 + - uid: 30160 + components: + - type: Transform + pos: -89.5,43.5 + parent: 2 + - uid: 30161 + components: + - type: Transform + pos: -89.5,44.5 + parent: 2 + - uid: 30162 + components: + - type: Transform + pos: -90.5,41.5 + parent: 2 + - uid: 30163 + components: + - type: Transform + pos: -91.5,41.5 + parent: 2 + - uid: 30164 + components: + - type: Transform + pos: -92.5,41.5 + parent: 2 + - uid: 30165 + components: + - type: Transform + pos: -93.5,41.5 + parent: 2 + - uid: 30166 + components: + - type: Transform + pos: -94.5,41.5 + parent: 2 + - uid: 30168 + components: + - type: Transform + pos: -94.5,42.5 + parent: 2 + - uid: 30170 + components: + - type: Transform + pos: -94.5,40.5 + parent: 2 + - uid: 30171 + components: + - type: Transform + pos: -94.5,39.5 + parent: 2 + - uid: 30176 + components: + - type: Transform + pos: -88.5,41.5 + parent: 2 + - uid: 30177 + components: + - type: Transform + pos: -87.5,41.5 + parent: 2 + - uid: 30178 + components: + - type: Transform + pos: -86.5,41.5 + parent: 2 + - uid: 30179 + components: + - type: Transform + pos: -85.5,41.5 + parent: 2 + - uid: 30180 + components: + - type: Transform + pos: -84.5,41.5 + parent: 2 + - uid: 30181 + components: + - type: Transform + pos: -83.5,41.5 + parent: 2 + - uid: 30182 + components: + - type: Transform + pos: -82.5,41.5 + parent: 2 + - uid: 30193 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - uid: 30194 + components: + - type: Transform + pos: -98.5,51.5 + parent: 2 + - uid: 30195 + components: + - type: Transform + pos: -98.5,50.5 + parent: 2 + - uid: 30196 + components: + - type: Transform + pos: -98.5,49.5 + parent: 2 + - uid: 30197 + components: + - type: Transform + pos: -98.5,48.5 + parent: 2 + - uid: 30198 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - uid: 30199 + components: + - type: Transform + pos: -98.5,46.5 + parent: 2 + - uid: 30200 + components: + - type: Transform + pos: -98.5,45.5 + parent: 2 + - uid: 30201 + components: + - type: Transform + pos: -98.5,44.5 + parent: 2 + - uid: 30202 + components: + - type: Transform + pos: -98.5,43.5 + parent: 2 + - uid: 30203 + components: + - type: Transform + pos: -98.5,42.5 + parent: 2 + - uid: 30204 + components: + - type: Transform + pos: -98.5,41.5 + parent: 2 + - uid: 30205 + components: + - type: Transform + pos: -98.5,40.5 + parent: 2 + - uid: 30206 + components: + - type: Transform + pos: -98.5,39.5 + parent: 2 + - uid: 30207 + components: + - type: Transform + pos: -98.5,38.5 + parent: 2 + - uid: 30208 + components: + - type: Transform + pos: -98.5,37.5 + parent: 2 + - uid: 30209 + components: + - type: Transform + pos: -98.5,36.5 + parent: 2 + - uid: 30210 + components: + - type: Transform + pos: -98.5,35.5 + parent: 2 + - uid: 30211 + components: + - type: Transform + pos: -97.5,37.5 + parent: 2 + - uid: 30212 + components: + - type: Transform + pos: -99.5,46.5 + parent: 2 + - uid: 30213 + components: + - type: Transform + pos: -100.5,46.5 + parent: 2 + - uid: 30214 + components: + - type: Transform + pos: -101.5,46.5 + parent: 2 + - uid: 30215 + components: + - type: Transform + pos: -102.5,46.5 + parent: 2 + - uid: 30216 + components: + - type: Transform + pos: -103.5,46.5 + parent: 2 + - uid: 30217 + components: + - type: Transform + pos: -104.5,46.5 + parent: 2 + - uid: 30218 + components: + - type: Transform + pos: -105.5,46.5 + parent: 2 + - uid: 30219 + components: + - type: Transform + pos: -104.5,48.5 + parent: 2 + - uid: 30220 + components: + - type: Transform + pos: -104.5,49.5 + parent: 2 + - uid: 30221 + components: + - type: Transform + pos: -104.5,50.5 + parent: 2 + - uid: 30225 + components: + - type: Transform + pos: -101.5,47.5 + parent: 2 + - uid: 30226 + components: + - type: Transform + pos: -101.5,48.5 + parent: 2 + - uid: 30227 + components: + - type: Transform + pos: -101.5,49.5 + parent: 2 + - uid: 30228 + components: + - type: Transform + pos: -101.5,50.5 + parent: 2 + - uid: 30230 + components: + - type: Transform + pos: -106.5,46.5 + parent: 2 + - uid: 30231 + components: + - type: Transform + pos: -106.5,47.5 + parent: 2 + - uid: 30232 + components: + - type: Transform + pos: -103.5,44.5 + parent: 2 + - uid: 30233 + components: + - type: Transform + pos: -103.5,45.5 + parent: 2 + - uid: 30240 + components: + - type: Transform + pos: -97.5,43.5 + parent: 2 + - uid: 30241 + components: + - type: Transform + pos: -96.5,43.5 + parent: 2 + - uid: 30338 + components: + - type: Transform + pos: -30.5,99.5 + parent: 2 + - uid: 30357 + components: + - type: Transform + pos: -133.5,19.5 + parent: 2 + - uid: 30358 + components: + - type: Transform + pos: -126.5,28.5 + parent: 2 + - uid: 30359 + components: + - type: Transform + pos: -127.5,28.5 + parent: 2 + - uid: 30360 + components: + - type: Transform + pos: -128.5,28.5 + parent: 2 + - uid: 30361 + components: + - type: Transform + pos: -129.5,28.5 + parent: 2 + - uid: 30362 + components: + - type: Transform + pos: -129.5,27.5 + parent: 2 + - uid: 30363 + components: + - type: Transform + pos: -129.5,26.5 + parent: 2 + - uid: 30364 + components: + - type: Transform + pos: -129.5,25.5 + parent: 2 + - uid: 30365 + components: + - type: Transform + pos: -129.5,24.5 + parent: 2 + - uid: 30366 + components: + - type: Transform + pos: -129.5,23.5 + parent: 2 + - uid: 30367 + components: + - type: Transform + pos: -128.5,23.5 + parent: 2 + - uid: 30368 + components: + - type: Transform + pos: -129.5,22.5 + parent: 2 + - uid: 30369 + components: + - type: Transform + pos: -129.5,21.5 + parent: 2 + - uid: 30370 + components: + - type: Transform + pos: -129.5,20.5 + parent: 2 + - uid: 30371 + components: + - type: Transform + pos: -130.5,20.5 + parent: 2 + - uid: 30372 + components: + - type: Transform + pos: -131.5,20.5 + parent: 2 + - uid: 30373 + components: + - type: Transform + pos: -132.5,20.5 + parent: 2 + - uid: 30374 + components: + - type: Transform + pos: -133.5,20.5 + parent: 2 + - uid: 30375 + components: + - type: Transform + pos: -134.5,19.5 + parent: 2 + - uid: 30377 + components: + - type: Transform + pos: -129.5,29.5 + parent: 2 + - uid: 30378 + components: + - type: Transform + pos: -129.5,30.5 + parent: 2 + - uid: 30379 + components: + - type: Transform + pos: -129.5,31.5 + parent: 2 + - uid: 30380 + components: + - type: Transform + pos: -129.5,32.5 + parent: 2 + - uid: 30381 + components: + - type: Transform + pos: -130.5,32.5 + parent: 2 + - uid: 30382 + components: + - type: Transform + pos: -131.5,32.5 + parent: 2 + - uid: 30383 + components: + - type: Transform + pos: -132.5,32.5 + parent: 2 + - uid: 30384 + components: + - type: Transform + pos: -132.5,33.5 + parent: 2 + - uid: 30385 + components: + - type: Transform + pos: -133.5,33.5 + parent: 2 + - uid: 30386 + components: + - type: Transform + pos: -134.5,33.5 + parent: 2 + - uid: 30395 + components: + - type: Transform + pos: -144.5,17.5 + parent: 2 + - uid: 30399 + components: + - type: Transform + pos: -125.5,13.5 + parent: 2 + - uid: 30407 + components: + - type: Transform + pos: -136.5,34.5 + parent: 2 + - uid: 30408 + components: + - type: Transform + pos: -136.5,35.5 + parent: 2 + - uid: 30425 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 30435 + components: + - type: Transform + pos: -126.5,44.5 + parent: 2 + - uid: 30436 + components: + - type: Transform + pos: -128.5,44.5 + parent: 2 + - uid: 30437 + components: + - type: Transform + pos: -128.5,50.5 + parent: 2 + - uid: 30438 + components: + - type: Transform + pos: -126.5,50.5 + parent: 2 + - uid: 30439 + components: + - type: Transform + pos: -126.5,47.5 + parent: 2 + - uid: 30440 + components: + - type: Transform + pos: -125.5,47.5 + parent: 2 + - uid: 30441 + components: + - type: Transform + pos: -124.5,47.5 + parent: 2 + - uid: 30442 + components: + - type: Transform + pos: -112.5,44.5 + parent: 2 + - uid: 30443 + components: + - type: Transform + pos: -112.5,43.5 + parent: 2 + - uid: 30444 + components: + - type: Transform + pos: -115.5,54.5 + parent: 2 + - uid: 30445 + components: + - type: Transform + pos: -115.5,55.5 + parent: 2 + - uid: 30446 + components: + - type: Transform + pos: -115.5,56.5 + parent: 2 + - uid: 30447 + components: + - type: Transform + pos: -118.5,54.5 + parent: 2 + - uid: 30448 + components: + - type: Transform + pos: -118.5,55.5 + parent: 2 + - uid: 30449 + components: + - type: Transform + pos: -118.5,56.5 + parent: 2 + - uid: 30450 + components: + - type: Transform + pos: -114.5,51.5 + parent: 2 + - uid: 30451 + components: + - type: Transform + pos: -114.5,50.5 + parent: 2 + - uid: 30452 + components: + - type: Transform + pos: -114.5,49.5 + parent: 2 + - uid: 30453 + components: + - type: Transform + pos: -114.5,48.5 + parent: 2 + - uid: 30454 + components: + - type: Transform + pos: -114.5,47.5 + parent: 2 + - uid: 30455 + components: + - type: Transform + pos: -114.5,46.5 + parent: 2 + - uid: 30457 + components: + - type: Transform + pos: -118.5,51.5 + parent: 2 + - uid: 30458 + components: + - type: Transform + pos: -118.5,50.5 + parent: 2 + - uid: 30459 + components: + - type: Transform + pos: -118.5,49.5 + parent: 2 + - uid: 30460 + components: + - type: Transform + pos: -118.5,48.5 + parent: 2 + - uid: 30461 + components: + - type: Transform + pos: -118.5,47.5 + parent: 2 + - uid: 30462 + components: + - type: Transform + pos: -118.5,46.5 + parent: 2 + - uid: 30464 + components: + - type: Transform + pos: -113.5,49.5 + parent: 2 + - uid: 30465 + components: + - type: Transform + pos: -112.5,49.5 + parent: 2 + - uid: 30466 + components: + - type: Transform + pos: -111.5,49.5 + parent: 2 + - uid: 30467 + components: + - type: Transform + pos: -144.5,18.5 + parent: 2 + - uid: 30468 + components: + - type: Transform + pos: -135.5,21.5 + parent: 2 + - uid: 30469 + components: + - type: Transform + pos: -135.5,22.5 + parent: 2 + - uid: 30470 + components: + - type: Transform + pos: -135.5,23.5 + parent: 2 + - uid: 30511 + components: + - type: Transform + pos: -107.5,47.5 + parent: 2 + - uid: 30512 + components: + - type: Transform + pos: -108.5,47.5 + parent: 2 + - uid: 30514 + components: + - type: Transform + pos: -108.5,49.5 + parent: 2 + - uid: 30515 + components: + - type: Transform + pos: -108.5,50.5 + parent: 2 + - uid: 30516 + components: + - type: Transform + pos: -108.5,51.5 + parent: 2 + - uid: 30517 + components: + - type: Transform + pos: -108.5,52.5 + parent: 2 + - uid: 30518 + components: + - type: Transform + pos: -108.5,53.5 + parent: 2 + - uid: 30519 + components: + - type: Transform + pos: -108.5,54.5 + parent: 2 + - uid: 30520 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 30521 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 30522 + components: + - type: Transform + pos: -108.5,57.5 + parent: 2 + - uid: 30523 + components: + - type: Transform + pos: -108.5,58.5 + parent: 2 + - uid: 30524 + components: + - type: Transform + pos: -108.5,59.5 + parent: 2 + - uid: 30525 + components: + - type: Transform + pos: -108.5,60.5 + parent: 2 + - uid: 30526 + components: + - type: Transform + pos: -108.5,61.5 + parent: 2 + - uid: 30527 + components: + - type: Transform + pos: -108.5,62.5 + parent: 2 + - uid: 30528 + components: + - type: Transform + pos: -108.5,63.5 + parent: 2 + - uid: 30552 + components: + - type: Transform + pos: -117.5,67.5 + parent: 2 + - uid: 30553 + components: + - type: Transform + pos: -117.5,66.5 + parent: 2 + - uid: 30554 + components: + - type: Transform + pos: -117.5,65.5 + parent: 2 + - uid: 30555 + components: + - type: Transform + pos: -116.5,65.5 + parent: 2 + - uid: 30556 + components: + - type: Transform + pos: -115.5,65.5 + parent: 2 + - uid: 30557 + components: + - type: Transform + pos: -114.5,65.5 + parent: 2 + - uid: 30558 + components: + - type: Transform + pos: -113.5,65.5 + parent: 2 + - uid: 30559 + components: + - type: Transform + pos: -112.5,65.5 + parent: 2 + - uid: 30560 + components: + - type: Transform + pos: -111.5,65.5 + parent: 2 + - uid: 30589 + components: + - type: Transform + pos: -104.5,17.5 + parent: 2 + - uid: 30590 + components: + - type: Transform + pos: -95.5,52.5 + parent: 2 + - uid: 30591 + components: + - type: Transform + pos: -95.5,53.5 + parent: 2 + - uid: 30595 + components: + - type: Transform + pos: -106.5,17.5 + parent: 2 + - uid: 30597 + components: + - type: Transform + pos: -80.5,48.5 + parent: 2 + - uid: 30598 + components: + - type: Transform + pos: -80.5,49.5 + parent: 2 + - uid: 30600 + components: + - type: Transform + pos: -79.5,141.5 + parent: 2 + - uid: 30601 + components: + - type: Transform + pos: -108.5,17.5 + parent: 2 + - uid: 30607 + components: + - type: Transform + pos: -110.5,17.5 + parent: 2 + - uid: 30611 + components: + - type: Transform + pos: -97.5,53.5 + parent: 2 + - uid: 30612 + components: + - type: Transform + pos: -103.5,30.5 + parent: 2 + - uid: 30613 + components: + - type: Transform + pos: -112.5,17.5 + parent: 2 + - uid: 30614 + components: + - type: Transform + pos: -103.5,29.5 + parent: 2 + - uid: 30615 + components: + - type: Transform + pos: -104.5,29.5 + parent: 2 + - uid: 30616 + components: + - type: Transform + pos: -103.5,29.5 + parent: 2 + - uid: 30617 + components: + - type: Transform + pos: -103.5,31.5 + parent: 2 + - uid: 30618 + components: + - type: Transform + pos: -103.5,32.5 + parent: 2 + - uid: 30619 + components: + - type: Transform + pos: -103.5,33.5 + parent: 2 + - uid: 30620 + components: + - type: Transform + pos: -103.5,34.5 + parent: 2 + - uid: 30621 + components: + - type: Transform + pos: -103.5,35.5 + parent: 2 + - uid: 30622 + components: + - type: Transform + pos: -103.5,36.5 + parent: 2 + - uid: 30623 + components: + - type: Transform + pos: -101.5,36.5 + parent: 2 + - uid: 30624 + components: + - type: Transform + pos: -102.5,36.5 + parent: 2 + - uid: 30625 + components: + - type: Transform + pos: -101.5,35.5 + parent: 2 + - uid: 30626 + components: + - type: Transform + pos: -104.5,32.5 + parent: 2 + - uid: 30627 + components: + - type: Transform + pos: -105.5,32.5 + parent: 2 + - uid: 30628 + components: + - type: Transform + pos: -105.5,36.5 + parent: 2 + - uid: 30629 + components: + - type: Transform + pos: -104.5,36.5 + parent: 2 + - uid: 30637 + components: + - type: Transform + pos: -98.5,53.5 + parent: 2 + - uid: 30651 + components: + - type: Transform + pos: -80.5,50.5 + parent: 2 + - uid: 30652 + components: + - type: Transform + pos: -80.5,51.5 + parent: 2 + - uid: 30653 + components: + - type: Transform + pos: -80.5,52.5 + parent: 2 + - uid: 30654 + components: + - type: Transform + pos: -86.5,34.5 + parent: 2 + - uid: 30655 + components: + - type: Transform + pos: -86.5,33.5 + parent: 2 + - uid: 30656 + components: + - type: Transform + pos: -86.5,32.5 + parent: 2 + - uid: 30657 + components: + - type: Transform + pos: -86.5,31.5 + parent: 2 + - uid: 30658 + components: + - type: Transform + pos: -86.5,35.5 + parent: 2 + - uid: 30670 + components: + - type: Transform + pos: -125.5,17.5 + parent: 2 + - uid: 30673 + components: + - type: Transform + pos: -125.5,18.5 + parent: 2 + - uid: 30692 + components: + - type: Transform + pos: -95.5,51.5 + parent: 2 + - uid: 30694 + components: + - type: Transform + pos: -125.5,16.5 + parent: 2 + - uid: 30701 + components: + - type: Transform + pos: -125.5,14.5 + parent: 2 + - uid: 30703 + components: + - type: Transform + pos: -125.5,15.5 + parent: 2 + - uid: 30712 + components: + - type: Transform + pos: -126.5,18.5 + parent: 2 + - uid: 30740 + components: + - type: Transform + pos: -106.5,67.5 + parent: 2 + - uid: 30741 + components: + - type: Transform + pos: -107.5,67.5 + parent: 2 + - uid: 30747 + components: + - type: Transform + pos: -105.5,67.5 + parent: 2 + - uid: 30748 + components: + - type: Transform + pos: -105.5,68.5 + parent: 2 + - uid: 30749 + components: + - type: Transform + pos: -103.5,68.5 + parent: 2 + - uid: 30750 + components: + - type: Transform + pos: -104.5,68.5 + parent: 2 + - uid: 30753 + components: + - type: Transform + pos: -68.5,144.5 + parent: 2 + - uid: 30754 + components: + - type: Transform + pos: -68.5,145.5 + parent: 2 + - uid: 30755 + components: + - type: Transform + pos: -67.5,145.5 + parent: 2 + - uid: 30756 + components: + - type: Transform + pos: -99.5,70.5 + parent: 2 + - uid: 30757 + components: + - type: Transform + pos: -99.5,71.5 + parent: 2 + - uid: 30758 + components: + - type: Transform + pos: -91.5,75.5 + parent: 2 + - uid: 30759 + components: + - type: Transform + pos: -91.5,74.5 + parent: 2 + - uid: 30760 + components: + - type: Transform + pos: -92.5,74.5 + parent: 2 + - uid: 30761 + components: + - type: Transform + pos: -93.5,74.5 + parent: 2 + - uid: 30762 + components: + - type: Transform + pos: -93.5,74.5 + parent: 2 + - uid: 30763 + components: + - type: Transform + pos: -93.5,73.5 + parent: 2 + - uid: 30764 + components: + - type: Transform + pos: -94.5,73.5 + parent: 2 + - uid: 30765 + components: + - type: Transform + pos: -95.5,73.5 + parent: 2 + - uid: 30766 + components: + - type: Transform + pos: -95.5,72.5 + parent: 2 + - uid: 30767 + components: + - type: Transform + pos: -96.5,72.5 + parent: 2 + - uid: 30768 + components: + - type: Transform + pos: -97.5,72.5 + parent: 2 + - uid: 30769 + components: + - type: Transform + pos: -97.5,71.5 + parent: 2 + - uid: 30770 + components: + - type: Transform + pos: -98.5,71.5 + parent: 2 + - uid: 30840 + components: + - type: Transform + pos: -77.5,140.5 + parent: 2 + - uid: 30841 + components: + - type: Transform + pos: -77.5,141.5 + parent: 2 + - uid: 30855 + components: + - type: Transform + pos: -77.5,144.5 + parent: 2 + - uid: 30911 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 30902 + - uid: 30912 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 30913 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 30902 + - uid: 30914 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 30902 + - uid: 30915 + components: + - type: Transform + pos: 1.5,0.5 + parent: 30902 + - uid: 30916 + components: + - type: Transform + pos: 1.5,1.5 + parent: 30902 + - uid: 30917 + components: + - type: Transform + pos: 1.5,2.5 + parent: 30902 + - uid: 30918 + components: + - type: Transform + pos: 1.5,3.5 + parent: 30902 + - uid: 30919 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 30902 + - uid: 30920 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 30902 + - uid: 30921 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 30902 + - uid: 30922 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 30902 + - uid: 30923 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 30902 + - uid: 30924 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 30902 + - uid: 30925 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 30902 + - uid: 30926 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 30902 + - uid: 30927 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 30902 + - uid: 30928 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 30902 + - uid: 30929 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 30902 + - uid: 30987 + components: + - type: Transform + pos: -111.5,95.5 + parent: 2 + - uid: 30988 + components: + - type: Transform + pos: -111.5,96.5 + parent: 2 + - uid: 30989 + components: + - type: Transform + pos: -110.5,96.5 + parent: 2 + - uid: 30990 + components: + - type: Transform + pos: -109.5,96.5 + parent: 2 + - uid: 30991 + components: + - type: Transform + pos: -108.5,96.5 + parent: 2 + - uid: 30992 + components: + - type: Transform + pos: -107.5,96.5 + parent: 2 + - uid: 30993 + components: + - type: Transform + pos: -106.5,96.5 + parent: 2 + - uid: 30994 + components: + - type: Transform + pos: -105.5,96.5 + parent: 2 + - uid: 30995 + components: + - type: Transform + pos: -104.5,96.5 + parent: 2 + - uid: 31217 + components: + - type: Transform + pos: -90.5,43.5 + parent: 2 + - uid: 31223 + components: + - type: Transform + pos: 90.5,61.5 + parent: 2 + - uid: 31252 + components: + - type: Transform + pos: -67.5,146.5 + parent: 2 + - uid: 31254 + components: + - type: Transform + pos: -67.5,147.5 + parent: 2 + - uid: 31256 + components: + - type: Transform + pos: -67.5,148.5 + parent: 2 + - uid: 31259 + components: + - type: Transform + pos: -68.5,148.5 + parent: 2 + - uid: 31428 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 31516 + components: + - type: Transform + pos: -18.5,171.5 + parent: 2 + - uid: 31580 + components: + - type: Transform + pos: -79.5,39.5 + parent: 2 + - uid: 31801 + components: + - type: Transform + pos: -17.5,171.5 + parent: 2 + - uid: 31856 + components: + - type: Transform + pos: 23.5,177.5 + parent: 2 + - uid: 31857 + components: + - type: Transform + pos: 24.5,177.5 + parent: 2 + - uid: 31945 + components: + - type: Transform + pos: 88.5,20.5 + parent: 2 + - uid: 31946 + components: + - type: Transform + pos: 88.5,19.5 + parent: 2 + - uid: 31947 + components: + - type: Transform + pos: 88.5,18.5 + parent: 2 + - uid: 31948 + components: + - type: Transform + pos: 88.5,17.5 + parent: 2 + - uid: 31949 + components: + - type: Transform + pos: 88.5,16.5 + parent: 2 + - uid: 31950 + components: + - type: Transform + pos: 88.5,15.5 + parent: 2 + - uid: 31951 + components: + - type: Transform + pos: 88.5,14.5 + parent: 2 + - uid: 31952 + components: + - type: Transform + pos: 89.5,18.5 + parent: 2 + - uid: 31953 + components: + - type: Transform + pos: 90.5,18.5 + parent: 2 + - uid: 31954 + components: + - type: Transform + pos: 86.5,18.5 + parent: 2 + - uid: 31955 + components: + - type: Transform + pos: 87.5,18.5 + parent: 2 + - uid: 32291 + components: + - type: Transform + pos: -32.5,97.5 + parent: 2 + - uid: 32297 + components: + - type: Transform + pos: -71.5,145.5 + parent: 2 + - uid: 32298 + components: + - type: Transform + pos: -72.5,145.5 + parent: 2 + - uid: 32299 + components: + - type: Transform + pos: -73.5,145.5 + parent: 2 + - uid: 32300 + components: + - type: Transform + pos: -69.5,144.5 + parent: 2 + - uid: 32301 + components: + - type: Transform + pos: -69.5,148.5 + parent: 2 + - uid: 32304 + components: + - type: Transform + pos: 15.5,177.5 + parent: 2 + - uid: 32305 + components: + - type: Transform + pos: 15.5,176.5 + parent: 2 + - uid: 32306 + components: + - type: Transform + pos: 9.5,175.5 + parent: 2 + - uid: 32307 + components: + - type: Transform + pos: 10.5,175.5 + parent: 2 + - uid: 32308 + components: + - type: Transform + pos: 11.5,175.5 + parent: 2 + - uid: 32309 + components: + - type: Transform + pos: 12.5,175.5 + parent: 2 + - uid: 32310 + components: + - type: Transform + pos: 13.5,175.5 + parent: 2 + - uid: 32311 + components: + - type: Transform + pos: 14.5,175.5 + parent: 2 + - uid: 32312 + components: + - type: Transform + pos: 15.5,175.5 + parent: 2 + - uid: 32313 + components: + - type: Transform + pos: 12.5,174.5 + parent: 2 + - uid: 32328 + components: + - type: Transform + pos: -60.5,8.5 + parent: 2 + - uid: 32329 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 32330 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 32331 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 32332 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - uid: 32333 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - uid: 32334 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 32335 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 32336 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 32337 + components: + - type: Transform + pos: -57.5,10.5 + parent: 2 + - uid: 32338 + components: + - type: Transform + pos: -56.5,10.5 + parent: 2 + - uid: 32339 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 32340 + components: + - type: Transform + pos: -56.5,12.5 + parent: 2 + - uid: 32341 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 32342 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - uid: 32343 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 32344 + components: + - type: Transform + pos: -55.5,10.5 + parent: 2 + - uid: 32345 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 32346 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 32347 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 32348 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 32349 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 32350 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 32351 + components: + - type: Transform + pos: -59.5,7.5 + parent: 2 + - uid: 32352 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 32353 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 32354 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 32355 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 32371 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 32372 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 32373 + components: + - type: Transform + pos: 15.5,178.5 + parent: 2 + - uid: 32374 + components: + - type: Transform + pos: 12.5,173.5 + parent: 2 + - uid: 32426 + components: + - type: Transform + pos: -79.5,41.5 + parent: 2 + - uid: 32472 + components: + - type: Transform + pos: -60.5,79.5 + parent: 2 + - uid: 32880 + components: + - type: Transform + pos: -60.5,78.5 + parent: 2 + - uid: 32907 + components: + - type: Transform + pos: -76.5,147.5 + parent: 2 + - uid: 33067 + components: + - type: Transform + pos: -66.5,67.5 + parent: 2 + - uid: 33074 + components: + - type: Transform + pos: -127.5,56.5 + parent: 2 + - uid: 33417 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 33566 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 33570 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 33675 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 33804 + components: + - type: Transform + pos: -21.5,101.5 + parent: 2 + - uid: 34258 + components: + - type: Transform + pos: -64.5,61.5 + parent: 2 + - uid: 34281 + components: + - type: Transform + pos: -128.5,99.5 + parent: 2 + - uid: 34469 + components: + - type: Transform + pos: -115.5,99.5 + parent: 2 + - uid: 34470 + components: + - type: Transform + pos: -118.5,98.5 + parent: 2 + - uid: 34471 + components: + - type: Transform + pos: -116.5,103.5 + parent: 2 + - uid: 34472 + components: + - type: Transform + pos: -23.5,189.5 + parent: 2 + - uid: 34473 + components: + - type: Transform + pos: -124.5,98.5 + parent: 2 + - uid: 34474 + components: + - type: Transform + pos: -122.5,98.5 + parent: 2 + - uid: 34476 + components: + - type: Transform + pos: -21.5,181.5 + parent: 2 + - uid: 34477 + components: + - type: Transform + pos: -21.5,180.5 + parent: 2 + - uid: 34479 + components: + - type: Transform + pos: -118.5,101.5 + parent: 2 + - uid: 34489 + components: + - type: Transform + pos: -20.5,180.5 + parent: 2 + - uid: 34494 + components: + - type: Transform + pos: -124.5,92.5 + parent: 2 + - uid: 34495 + components: + - type: Transform + pos: -114.5,104.5 + parent: 2 + - uid: 34496 + components: + - type: Transform + pos: -114.5,103.5 + parent: 2 + - uid: 34497 + components: + - type: Transform + pos: -115.5,103.5 + parent: 2 + - uid: 34499 + components: + - type: Transform + pos: -118.5,103.5 + parent: 2 + - uid: 34500 + components: + - type: Transform + pos: -118.5,102.5 + parent: 2 + - uid: 34501 + components: + - type: Transform + pos: -118.5,100.5 + parent: 2 + - uid: 34502 + components: + - type: Transform + pos: -118.5,99.5 + parent: 2 + - uid: 34503 + components: + - type: Transform + pos: -127.5,92.5 + parent: 2 + - uid: 34504 + components: + - type: Transform + pos: -114.5,99.5 + parent: 2 + - uid: 34509 + components: + - type: Transform + pos: -124.5,95.5 + parent: 2 + - uid: 34536 + components: + - type: Transform + pos: -129.5,47.5 + parent: 2 + - uid: 34573 + components: + - type: Transform + pos: -133.5,90.5 + parent: 2 + - uid: 34574 + components: + - type: Transform + pos: -132.5,90.5 + parent: 2 + - uid: 34575 + components: + - type: Transform + pos: -131.5,90.5 + parent: 2 + - uid: 34576 + components: + - type: Transform + pos: -130.5,90.5 + parent: 2 + - uid: 34577 + components: + - type: Transform + pos: -129.5,90.5 + parent: 2 + - uid: 34578 + components: + - type: Transform + pos: -128.5,90.5 + parent: 2 + - uid: 34768 + components: + - type: Transform + pos: -4.5,68.5 + parent: 2 + - uid: 34769 + components: + - type: Transform + pos: -5.5,68.5 + parent: 2 + - uid: 34770 + components: + - type: Transform + pos: -8.5,66.5 + parent: 2 + - uid: 34771 + components: + - type: Transform + pos: -7.5,66.5 + parent: 2 + - uid: 34772 + components: + - type: Transform + pos: -6.5,66.5 + parent: 2 + - uid: 34773 + components: + - type: Transform + pos: -5.5,66.5 + parent: 2 + - uid: 34774 + components: + - type: Transform + pos: -4.5,66.5 + parent: 2 + - uid: 34775 + components: + - type: Transform + pos: -3.5,66.5 + parent: 2 + - uid: 34776 + components: + - type: Transform + pos: -2.5,65.5 + parent: 2 + - uid: 34778 + components: + - type: Transform + pos: -2.5,64.5 + parent: 2 + - uid: 34779 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - uid: 34780 + components: + - type: Transform + pos: -2.5,62.5 + parent: 2 + - uid: 34781 + components: + - type: Transform + pos: -2.5,61.5 + parent: 2 + - uid: 34782 + components: + - type: Transform + pos: -2.5,60.5 + parent: 2 + - uid: 34783 + components: + - type: Transform + pos: -6.5,65.5 + parent: 2 + - uid: 34784 + components: + - type: Transform + pos: -6.5,64.5 + parent: 2 + - uid: 34785 + components: + - type: Transform + pos: -6.5,63.5 + parent: 2 + - uid: 34786 + components: + - type: Transform + pos: -6.5,62.5 + parent: 2 + - uid: 34787 + components: + - type: Transform + pos: -6.5,61.5 + parent: 2 + - uid: 34788 + components: + - type: Transform + pos: -6.5,60.5 + parent: 2 + - uid: 34789 + components: + - type: Transform + pos: 1.5,66.5 + parent: 2 + - uid: 34790 + components: + - type: Transform + pos: 1.5,65.5 + parent: 2 + - uid: 34791 + components: + - type: Transform + pos: 1.5,64.5 + parent: 2 + - uid: 34821 + components: + - type: Transform + pos: -35.5,102.5 + parent: 2 + - uid: 34850 + components: + - type: Transform + pos: 1.5,217.5 + parent: 2 + - uid: 34851 + components: + - type: Transform + pos: 0.5,217.5 + parent: 2 + - uid: 34852 + components: + - type: Transform + pos: 0.5,218.5 + parent: 2 + - uid: 34853 + components: + - type: Transform + pos: 0.5,219.5 + parent: 2 + - uid: 34854 + components: + - type: Transform + pos: 0.5,220.5 + parent: 2 + - uid: 34855 + components: + - type: Transform + pos: 1.5,216.5 + parent: 2 + - uid: 34856 + components: + - type: Transform + pos: 1.5,215.5 + parent: 2 + - uid: 34857 + components: + - type: Transform + pos: 1.5,214.5 + parent: 2 + - uid: 34858 + components: + - type: Transform + pos: 0.5,214.5 + parent: 2 + - uid: 34859 + components: + - type: Transform + pos: -0.5,214.5 + parent: 2 + - uid: 35429 + components: + - type: Transform + pos: -103.5,148.5 + parent: 2 + - uid: 35430 + components: + - type: Transform + pos: -104.5,148.5 + parent: 2 + - uid: 35431 + components: + - type: Transform + pos: -105.5,148.5 + parent: 2 + - uid: 35432 + components: + - type: Transform + pos: -106.5,148.5 + parent: 2 + - uid: 35433 + components: + - type: Transform + pos: -107.5,148.5 + parent: 2 + - uid: 35434 + components: + - type: Transform + pos: -108.5,148.5 + parent: 2 + - uid: 35435 + components: + - type: Transform + pos: -109.5,148.5 + parent: 2 + - uid: 35436 + components: + - type: Transform + pos: -110.5,148.5 + parent: 2 + - uid: 35437 + components: + - type: Transform + pos: -111.5,148.5 + parent: 2 + - uid: 35438 + components: + - type: Transform + pos: -112.5,148.5 + parent: 2 + - uid: 35460 + components: + - type: Transform + pos: -30.5,195.5 + parent: 2 + - uid: 35481 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 35482 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 35483 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - uid: 35484 + components: + - type: Transform + pos: 70.5,18.5 + parent: 2 + - uid: 35485 + components: + - type: Transform + pos: 70.5,17.5 + parent: 2 + - uid: 35486 + components: + - type: Transform + pos: 70.5,16.5 + parent: 2 + - uid: 35603 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 35694 + components: + - type: Transform + pos: -104.5,97.5 + parent: 2 + - uid: 35697 + components: + - type: Transform + pos: -104.5,98.5 + parent: 2 + - uid: 35707 + components: + - type: Transform + pos: -99.5,99.5 + parent: 2 + - uid: 35708 + components: + - type: Transform + pos: -98.5,99.5 + parent: 2 + - uid: 35709 + components: + - type: Transform + pos: -97.5,99.5 + parent: 2 + - uid: 35710 + components: + - type: Transform + pos: -96.5,99.5 + parent: 2 + - uid: 35712 + components: + - type: Transform + pos: -106.5,99.5 + parent: 2 + - uid: 35713 + components: + - type: Transform + pos: -107.5,99.5 + parent: 2 + - uid: 35714 + components: + - type: Transform + pos: -108.5,99.5 + parent: 2 + - uid: 35715 + components: + - type: Transform + pos: -109.5,99.5 + parent: 2 + - uid: 35716 + components: + - type: Transform + pos: -110.5,99.5 + parent: 2 + - uid: 35717 + components: + - type: Transform + pos: -111.5,99.5 + parent: 2 + - uid: 35719 + components: + - type: Transform + pos: -112.5,99.5 + parent: 2 + - uid: 35752 + components: + - type: Transform + pos: -104.5,94.5 + parent: 2 + - uid: 35753 + components: + - type: Transform + pos: -104.5,93.5 + parent: 2 + - uid: 35754 + components: + - type: Transform + pos: -104.5,92.5 + parent: 2 + - uid: 35755 + components: + - type: Transform + pos: -111.5,94.5 + parent: 2 + - uid: 35756 + components: + - type: Transform + pos: -111.5,93.5 + parent: 2 + - uid: 35757 + components: + - type: Transform + pos: -111.5,92.5 + parent: 2 + - uid: 35758 + components: + - type: Transform + pos: -108.5,95.5 + parent: 2 + - uid: 35759 + components: + - type: Transform + pos: -108.5,94.5 + parent: 2 + - uid: 35760 + components: + - type: Transform + pos: -108.5,93.5 + parent: 2 + - uid: 35761 + components: + - type: Transform + pos: -108.5,92.5 + parent: 2 + - uid: 35762 + components: + - type: Transform + pos: -102.5,95.5 + parent: 2 + - uid: 35763 + components: + - type: Transform + pos: -102.5,94.5 + parent: 2 + - uid: 35764 + components: + - type: Transform + pos: -102.5,93.5 + parent: 2 + - uid: 35765 + components: + - type: Transform + pos: -102.5,92.5 + parent: 2 + - uid: 35766 + components: + - type: Transform + pos: -106.5,95.5 + parent: 2 + - uid: 35767 + components: + - type: Transform + pos: -106.5,94.5 + parent: 2 + - uid: 35768 + components: + - type: Transform + pos: -106.5,93.5 + parent: 2 + - uid: 35769 + components: + - type: Transform + pos: -106.5,92.5 + parent: 2 + - uid: 35782 + components: + - type: Transform + pos: -103.5,102.5 + parent: 2 + - uid: 35783 + components: + - type: Transform + pos: -103.5,103.5 + parent: 2 + - uid: 35784 + components: + - type: Transform + pos: -102.5,103.5 + parent: 2 + - uid: 35785 + components: + - type: Transform + pos: -101.5,103.5 + parent: 2 + - uid: 35786 + components: + - type: Transform + pos: -102.5,104.5 + parent: 2 + - uid: 35796 + components: + - type: Transform + pos: -74.5,94.5 + parent: 2 + - uid: 35842 + components: + - type: Transform + pos: -25.5,177.5 + parent: 2 + - uid: 35843 + components: + - type: Transform + pos: -26.5,177.5 + parent: 2 + - uid: 35844 + components: + - type: Transform + pos: -27.5,177.5 + parent: 2 + - uid: 35845 + components: + - type: Transform + pos: -28.5,177.5 + parent: 2 + - uid: 35846 + components: + - type: Transform + pos: -29.5,177.5 + parent: 2 + - uid: 35847 + components: + - type: Transform + pos: -30.5,177.5 + parent: 2 + - uid: 35848 + components: + - type: Transform + pos: -30.5,178.5 + parent: 2 + - uid: 35849 + components: + - type: Transform + pos: -30.5,179.5 + parent: 2 + - uid: 35850 + components: + - type: Transform + pos: -30.5,180.5 + parent: 2 + - uid: 35851 + components: + - type: Transform + pos: -30.5,181.5 + parent: 2 + - uid: 35852 + components: + - type: Transform + pos: -30.5,182.5 + parent: 2 + - uid: 35853 + components: + - type: Transform + pos: -30.5,183.5 + parent: 2 + - uid: 35854 + components: + - type: Transform + pos: -30.5,184.5 + parent: 2 + - uid: 35855 + components: + - type: Transform + pos: -30.5,185.5 + parent: 2 + - uid: 35856 + components: + - type: Transform + pos: -30.5,186.5 + parent: 2 + - uid: 35857 + components: + - type: Transform + pos: -30.5,187.5 + parent: 2 + - uid: 35858 + components: + - type: Transform + pos: -30.5,188.5 + parent: 2 + - uid: 35875 + components: + - type: Transform + pos: -30.5,189.5 + parent: 2 + - uid: 35896 + components: + - type: Transform + pos: -94.5,95.5 + parent: 2 + - uid: 35897 + components: + - type: Transform + pos: -93.5,95.5 + parent: 2 + - uid: 35905 + components: + - type: Transform + pos: -91.5,98.5 + parent: 2 + - uid: 35911 + components: + - type: Transform + pos: -94.5,99.5 + parent: 2 + - uid: 35912 + components: + - type: Transform + pos: -100.5,99.5 + parent: 2 + - uid: 35913 + components: + - type: Transform + pos: -101.5,99.5 + parent: 2 + - uid: 35914 + components: + - type: Transform + pos: -95.5,99.5 + parent: 2 + - uid: 35915 + components: + - type: Transform + pos: -93.5,99.5 + parent: 2 + - uid: 35916 + components: + - type: Transform + pos: -92.5,99.5 + parent: 2 + - uid: 35917 + components: + - type: Transform + pos: -92.5,99.5 + parent: 2 + - uid: 35918 + components: + - type: Transform + pos: -92.5,98.5 + parent: 2 + - uid: 35919 + components: + - type: Transform + pos: -92.5,97.5 + parent: 2 + - uid: 35920 + components: + - type: Transform + pos: -92.5,96.5 + parent: 2 + - uid: 35921 + components: + - type: Transform + pos: -92.5,95.5 + parent: 2 + - uid: 35922 + components: + - type: Transform + pos: -91.5,95.5 + parent: 2 + - uid: 35923 + components: + - type: Transform + pos: -90.5,95.5 + parent: 2 + - uid: 35924 + components: + - type: Transform + pos: -89.5,95.5 + parent: 2 + - uid: 35925 + components: + - type: Transform + pos: -88.5,95.5 + parent: 2 + - uid: 35928 + components: + - type: Transform + pos: -117.5,103.5 + parent: 2 + - uid: 36001 + components: + - type: Transform + pos: -1.5,88.5 + parent: 2 + - uid: 36169 + components: + - type: Transform + pos: -104.5,91.5 + parent: 2 + - uid: 36170 + components: + - type: Transform + pos: -104.5,90.5 + parent: 2 + - uid: 36171 + components: + - type: Transform + pos: -102.5,91.5 + parent: 2 + - uid: 36172 + components: + - type: Transform + pos: -102.5,90.5 + parent: 2 + - uid: 36173 + components: + - type: Transform + pos: -102.5,89.5 + parent: 2 + - uid: 36174 + components: + - type: Transform + pos: -108.5,91.5 + parent: 2 + - uid: 36175 + components: + - type: Transform + pos: -108.5,90.5 + parent: 2 + - uid: 36176 + components: + - type: Transform + pos: -108.5,89.5 + parent: 2 + - uid: 36177 + components: + - type: Transform + pos: -108.5,88.5 + parent: 2 + - uid: 36178 + components: + - type: Transform + pos: -111.5,91.5 + parent: 2 + - uid: 36179 + components: + - type: Transform + pos: -111.5,90.5 + parent: 2 + - uid: 36180 + components: + - type: Transform + pos: -111.5,89.5 + parent: 2 + - uid: 36181 + components: + - type: Transform + pos: -111.5,88.5 + parent: 2 + - uid: 36306 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 36509 + components: + - type: Transform + pos: -103.5,98.5 + parent: 2 + - uid: 36510 + components: + - type: Transform + pos: -105.5,98.5 + parent: 2 + - uid: 36511 + components: + - type: Transform + pos: -106.5,98.5 + parent: 2 + - uid: 36512 + components: + - type: Transform + pos: -102.5,98.5 + parent: 2 + - uid: 36542 + components: + - type: Transform + pos: -101.5,98.5 + parent: 2 + - uid: 36596 + components: + - type: Transform + pos: -31.5,195.5 + parent: 2 + - uid: 36689 + components: + - type: Transform + pos: -29.5,195.5 + parent: 2 + - uid: 36788 + components: + - type: Transform + pos: 5.5,75.5 + parent: 2 + - uid: 36793 + components: + - type: Transform + pos: 4.5,75.5 + parent: 2 + - uid: 36839 + components: + - type: Transform + pos: 7.5,75.5 + parent: 2 + - uid: 36854 + components: + - type: Transform + pos: 80.5,43.5 + parent: 2 + - uid: 36865 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - uid: 36946 + components: + - type: Transform + pos: 82.5,43.5 + parent: 2 + - uid: 36957 + components: + - type: Transform + pos: -54.5,62.5 + parent: 2 + - uid: 36958 + components: + - type: Transform + pos: -54.5,61.5 + parent: 2 + - uid: 36959 + components: + - type: Transform + pos: -54.5,60.5 + parent: 2 + - uid: 37066 + components: + - type: Transform + pos: -29.5,193.5 + parent: 2 + - uid: 37067 + components: + - type: Transform + pos: -29.5,194.5 + parent: 2 + - uid: 37238 + components: + - type: Transform + pos: -126.5,14.5 + parent: 2 + - uid: 37256 + components: + - type: Transform + pos: -31.5,180.5 + parent: 2 + - uid: 37257 + components: + - type: Transform + pos: -32.5,180.5 + parent: 2 + - uid: 37258 + components: + - type: Transform + pos: -33.5,180.5 + parent: 2 + - uid: 37259 + components: + - type: Transform + pos: -34.5,180.5 + parent: 2 + - uid: 37260 + components: + - type: Transform + pos: -35.5,180.5 + parent: 2 + - uid: 37261 + components: + - type: Transform + pos: -36.5,180.5 + parent: 2 + - uid: 37262 + components: + - type: Transform + pos: -36.5,179.5 + parent: 2 + - uid: 37263 + components: + - type: Transform + pos: -36.5,178.5 + parent: 2 + - uid: 37264 + components: + - type: Transform + pos: -36.5,177.5 + parent: 2 + - uid: 37265 + components: + - type: Transform + pos: -37.5,177.5 + parent: 2 + - uid: 37266 + components: + - type: Transform + pos: -38.5,177.5 + parent: 2 + - uid: 37267 + components: + - type: Transform + pos: -39.5,177.5 + parent: 2 + - uid: 37268 + components: + - type: Transform + pos: -40.5,177.5 + parent: 2 + - uid: 37269 + components: + - type: Transform + pos: -41.5,177.5 + parent: 2 + - uid: 37270 + components: + - type: Transform + pos: -39.5,176.5 + parent: 2 + - uid: 37271 + components: + - type: Transform + pos: -39.5,175.5 + parent: 2 + - uid: 37272 + components: + - type: Transform + pos: -39.5,174.5 + parent: 2 + - uid: 37273 + components: + - type: Transform + pos: -54.5,170.5 + parent: 2 + - uid: 37274 + components: + - type: Transform + pos: -54.5,171.5 + parent: 2 + - uid: 37275 + components: + - type: Transform + pos: -54.5,172.5 + parent: 2 + - uid: 37276 + components: + - type: Transform + pos: -53.5,172.5 + parent: 2 + - uid: 37277 + components: + - type: Transform + pos: -52.5,172.5 + parent: 2 + - uid: 37278 + components: + - type: Transform + pos: -51.5,172.5 + parent: 2 + - uid: 37279 + components: + - type: Transform + pos: -50.5,172.5 + parent: 2 + - uid: 37280 + components: + - type: Transform + pos: -49.5,172.5 + parent: 2 + - uid: 37281 + components: + - type: Transform + pos: -48.5,172.5 + parent: 2 + - uid: 37282 + components: + - type: Transform + pos: -47.5,172.5 + parent: 2 + - uid: 37283 + components: + - type: Transform + pos: -47.5,173.5 + parent: 2 + - uid: 37284 + components: + - type: Transform + pos: -47.5,174.5 + parent: 2 + - uid: 37285 + components: + - type: Transform + pos: -47.5,175.5 + parent: 2 + - uid: 37286 + components: + - type: Transform + pos: -47.5,176.5 + parent: 2 + - uid: 37287 + components: + - type: Transform + pos: -46.5,176.5 + parent: 2 + - uid: 37288 + components: + - type: Transform + pos: -45.5,176.5 + parent: 2 + - uid: 37289 + components: + - type: Transform + pos: -44.5,176.5 + parent: 2 + - uid: 37336 + components: + - type: Transform + pos: -53.5,169.5 + parent: 2 + - uid: 37337 + components: + - type: Transform + pos: -52.5,169.5 + parent: 2 + - uid: 37338 + components: + - type: Transform + pos: -51.5,169.5 + parent: 2 + - uid: 37339 + components: + - type: Transform + pos: -50.5,169.5 + parent: 2 + - uid: 37513 + components: + - type: Transform + pos: -63.5,61.5 + parent: 2 + - uid: 37553 + components: + - type: Transform + pos: -19.5,190.5 + parent: 2 + - uid: 37579 + components: + - type: Transform + pos: 2.5,182.5 + parent: 2 + - uid: 37580 + components: + - type: Transform + pos: 1.5,187.5 + parent: 2 + - uid: 37581 + components: + - type: Transform + pos: 2.5,187.5 + parent: 2 + - uid: 37587 + components: + - type: Transform + pos: -62.5,61.5 + parent: 2 + - uid: 37662 + components: + - type: Transform + pos: -101.5,54.5 + parent: 2 + - uid: 37663 + components: + - type: Transform + pos: -101.5,55.5 + parent: 2 + - uid: 37664 + components: + - type: Transform + pos: -101.5,56.5 + parent: 2 + - uid: 37665 + components: + - type: Transform + pos: -101.5,57.5 + parent: 2 + - uid: 37666 + components: + - type: Transform + pos: -101.5,58.5 + parent: 2 + - uid: 37667 + components: + - type: Transform + pos: -101.5,59.5 + parent: 2 + - uid: 37668 + components: + - type: Transform + pos: -101.5,60.5 + parent: 2 + - uid: 37669 + components: + - type: Transform + pos: -101.5,61.5 + parent: 2 + - uid: 37670 + components: + - type: Transform + pos: -102.5,61.5 + parent: 2 + - uid: 37671 + components: + - type: Transform + pos: -102.5,62.5 + parent: 2 + - uid: 37672 + components: + - type: Transform + pos: -103.5,62.5 + parent: 2 + - uid: 37673 + components: + - type: Transform + pos: -103.5,63.5 + parent: 2 + - uid: 37674 + components: + - type: Transform + pos: -104.5,63.5 + parent: 2 + - uid: 37675 + components: + - type: Transform + pos: -105.5,63.5 + parent: 2 + - uid: 37687 + components: + - type: Transform + pos: -100.5,57.5 + parent: 2 + - uid: 37688 + components: + - type: Transform + pos: -99.5,57.5 + parent: 2 + - uid: 37689 + components: + - type: Transform + pos: -98.5,57.5 + parent: 2 + - uid: 37705 + components: + - type: Transform + pos: -92.5,51.5 + parent: 2 + - uid: 37706 + components: + - type: Transform + pos: -92.5,50.5 + parent: 2 + - uid: 37739 + components: + - type: Transform + pos: 5.5,80.5 + parent: 2 + - uid: 37740 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 37743 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 37854 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 37842 + - uid: 37855 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 37842 + - uid: 37856 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 + - uid: 37857 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 37842 + - uid: 37858 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 37842 + - uid: 37859 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 37842 + - uid: 37860 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 37842 + - uid: 37861 + components: + - type: Transform + pos: -1.5,0.5 + parent: 37842 + - uid: 37862 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 37842 + - uid: 37863 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 37842 + - uid: 37864 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 37842 + - uid: 37865 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 37842 + - uid: 37866 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 37842 + - uid: 37867 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 37842 + - uid: 37868 + components: + - type: Transform + pos: 2.5,0.5 + parent: 37842 + - uid: 37871 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 37842 + - uid: 37872 + components: + - type: Transform + pos: 0.5,1.5 + parent: 37842 + - uid: 37873 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - uid: 37874 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 37842 + - uid: 37875 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - uid: 37876 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 37842 + - uid: 37877 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 37842 + - uid: 37878 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - uid: 37879 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 37842 + - uid: 37880 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 37842 + - uid: 37881 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 37842 + - uid: 37882 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 37842 + - uid: 37883 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 37842 + - uid: 37884 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 37842 + - uid: 37885 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 37842 + - uid: 37886 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 37842 + - uid: 37887 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 + - uid: 37888 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 37842 + - uid: 37889 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 37842 + - uid: 37890 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 37842 + - uid: 37891 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 37842 + - uid: 37892 + components: + - type: Transform + pos: 2.5,1.5 + parent: 37842 + - uid: 37893 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 37842 + - uid: 37894 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 37842 + - uid: 37895 + components: + - type: Transform + pos: -1.5,0.5 + parent: 37842 + - uid: 37896 + components: + - type: Transform + pos: -1.5,1.5 + parent: 37842 + - uid: 37897 + components: + - type: Transform + pos: -0.5,1.5 + parent: 37842 + - uid: 37898 + components: + - type: Transform + pos: 0.5,0.5 + parent: 37842 + - uid: 37899 + components: + - type: Transform + pos: 1.5,1.5 + parent: 37842 + - uid: 37900 + components: + - type: Transform + pos: 2.5,1.5 + parent: 37842 + - uid: 37902 + components: + - type: Transform + pos: -94.5,94.5 + parent: 2 + - uid: 38451 + components: + - type: Transform + pos: -77.5,42.5 + parent: 2 + - uid: 38455 + components: + - type: Transform + pos: -76.5,42.5 + parent: 2 + - uid: 38456 + components: + - type: Transform + pos: -75.5,42.5 + parent: 2 + - uid: 38457 + components: + - type: Transform + pos: -74.5,42.5 + parent: 2 + - uid: 38458 + components: + - type: Transform + pos: -77.5,40.5 + parent: 2 + - uid: 38459 + components: + - type: Transform + pos: -76.5,40.5 + parent: 2 + - uid: 38460 + components: + - type: Transform + pos: -75.5,40.5 + parent: 2 + - uid: 38461 + components: + - type: Transform + pos: -74.5,40.5 + parent: 2 + - uid: 39183 + components: + - type: Transform + pos: -76.5,104.5 + parent: 2 + - uid: 39191 + components: + - type: Transform + pos: -74.5,93.5 + parent: 2 + - uid: 39192 + components: + - type: Transform + pos: -74.5,92.5 + parent: 2 + - uid: 39193 + components: + - type: Transform + pos: -75.5,92.5 + parent: 2 + - uid: 39194 + components: + - type: Transform + pos: -76.5,92.5 + parent: 2 + - uid: 39195 + components: + - type: Transform + pos: -77.5,92.5 + parent: 2 + - uid: 39254 + components: + - type: Transform + pos: -72.5,113.5 + parent: 2 + - uid: 39255 + components: + - type: Transform + pos: -72.5,112.5 + parent: 2 + - uid: 39256 + components: + - type: Transform + pos: -72.5,111.5 + parent: 2 + - uid: 39257 + components: + - type: Transform + pos: -73.5,111.5 + parent: 2 + - uid: 39300 + components: + - type: Transform + pos: 78.5,51.5 + parent: 2 + - uid: 39302 + components: + - type: Transform + pos: 79.5,51.5 + parent: 2 + - uid: 39303 + components: + - type: Transform + pos: 80.5,51.5 + parent: 2 + - uid: 39304 + components: + - type: Transform + pos: 81.5,51.5 + parent: 2 + - uid: 39305 + components: + - type: Transform + pos: 82.5,51.5 + parent: 2 + - uid: 39306 + components: + - type: Transform + pos: 77.5,48.5 + parent: 2 + - uid: 39307 + components: + - type: Transform + pos: 78.5,48.5 + parent: 2 + - uid: 39308 + components: + - type: Transform + pos: 79.5,48.5 + parent: 2 + - uid: 39309 + components: + - type: Transform + pos: 80.5,48.5 + parent: 2 + - uid: 39310 + components: + - type: Transform + pos: 81.5,48.5 + parent: 2 + - uid: 39311 + components: + - type: Transform + pos: 82.5,48.5 + parent: 2 + - uid: 39313 + components: + - type: Transform + pos: 78.5,54.5 + parent: 2 + - uid: 39315 + components: + - type: Transform + pos: 79.5,54.5 + parent: 2 + - uid: 39316 + components: + - type: Transform + pos: 80.5,54.5 + parent: 2 + - uid: 39317 + components: + - type: Transform + pos: 81.5,54.5 + parent: 2 + - uid: 39320 + components: + - type: Transform + pos: 82.5,54.5 + parent: 2 + - uid: 39321 + components: + - type: Transform + pos: 77.5,55.5 + parent: 2 + - uid: 39416 + components: + - type: Transform + pos: -19.5,171.5 + parent: 2 + - uid: 39417 + components: + - type: Transform + pos: -20.5,171.5 + parent: 2 + - uid: 39418 + components: + - type: Transform + pos: -21.5,171.5 + parent: 2 + - uid: 39419 + components: + - type: Transform + pos: -20.5,170.5 + parent: 2 + - uid: 39420 + components: + - type: Transform + pos: -20.5,169.5 + parent: 2 + - uid: 39421 + components: + - type: Transform + pos: -21.5,169.5 + parent: 2 + - uid: 39475 + components: + - type: Transform + pos: -111.5,61.5 + parent: 2 + - uid: 39476 + components: + - type: Transform + pos: -111.5,62.5 + parent: 2 + - uid: 39477 + components: + - type: Transform + pos: -111.5,63.5 + parent: 2 + - uid: 39478 + components: + - type: Transform + pos: -111.5,64.5 + parent: 2 + - uid: 39479 + components: + - type: Transform + pos: -112.5,64.5 + parent: 2 + - uid: 39480 + components: + - type: Transform + pos: -113.5,64.5 + parent: 2 + - uid: 39481 + components: + - type: Transform + pos: -114.5,64.5 + parent: 2 + - uid: 39482 + components: + - type: Transform + pos: -115.5,64.5 + parent: 2 + - uid: 39483 + components: + - type: Transform + pos: -116.5,64.5 + parent: 2 + - uid: 39484 + components: + - type: Transform + pos: -116.5,63.5 + parent: 2 + - uid: 39485 + components: + - type: Transform + pos: -116.5,62.5 + parent: 2 + - uid: 39486 + components: + - type: Transform + pos: -117.5,62.5 + parent: 2 + - uid: 39487 + components: + - type: Transform + pos: -118.5,62.5 + parent: 2 + - uid: 39488 + components: + - type: Transform + pos: -119.5,62.5 + parent: 2 + - uid: 42217 + components: + - type: Transform + pos: 49.5,56.5 + parent: 2 + - uid: 42218 + components: + - type: Transform + pos: 46.5,57.5 + parent: 2 + - uid: 42219 + components: + - type: Transform + pos: 48.5,57.5 + parent: 2 + - uid: 42220 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 42221 + components: + - type: Transform + pos: 48.5,55.5 + parent: 2 + - uid: 43197 + components: + - type: Transform + pos: 55.5,54.5 + parent: 2 + - uid: 43198 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 43199 + components: + - type: Transform + pos: 55.5,52.5 + parent: 2 + - uid: 43200 + components: + - type: Transform + pos: 55.5,51.5 + parent: 2 + - uid: 43201 + components: + - type: Transform + pos: 55.5,50.5 + parent: 2 + - uid: 43202 + components: + - type: Transform + pos: 55.5,49.5 + parent: 2 + - uid: 43203 + components: + - type: Transform + pos: 55.5,48.5 + parent: 2 + - uid: 43204 + components: + - type: Transform + pos: 55.5,55.5 + parent: 2 + - uid: 43205 + components: + - type: Transform + pos: 55.5,56.5 + parent: 2 + - uid: 43206 + components: + - type: Transform + pos: 54.5,56.5 + parent: 2 + - uid: 43207 + components: + - type: Transform + pos: 53.5,56.5 + parent: 2 + - uid: 43208 + components: + - type: Transform + pos: 52.5,56.5 + parent: 2 + - uid: 43209 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 43210 + components: + - type: Transform + pos: 50.5,49.5 + parent: 2 + - uid: 43211 + components: + - type: Transform + pos: 50.5,50.5 + parent: 2 + - uid: 43212 + components: + - type: Transform + pos: 50.5,51.5 + parent: 2 + - uid: 43213 + components: + - type: Transform + pos: 50.5,52.5 + parent: 2 + - uid: 43214 + components: + - type: Transform + pos: 49.5,50.5 + parent: 2 + - uid: 43215 + components: + - type: Transform + pos: 48.5,50.5 + parent: 2 + - uid: 43216 + components: + - type: Transform + pos: 47.5,50.5 + parent: 2 + - uid: 43217 + components: + - type: Transform + pos: 46.5,50.5 + parent: 2 + - uid: 43218 + components: + - type: Transform + pos: 45.5,50.5 + parent: 2 + - uid: 43219 + components: + - type: Transform + pos: 51.5,50.5 + parent: 2 + - uid: 43220 + components: + - type: Transform + pos: 52.5,50.5 + parent: 2 + - uid: 43221 + components: + - type: Transform + pos: 53.5,50.5 + parent: 2 + - uid: 43222 + components: + - type: Transform + pos: 54.5,50.5 + parent: 2 + - uid: 43223 + components: + - type: Transform + pos: 51.5,56.5 + parent: 2 + - uid: 43224 + components: + - type: Transform + pos: 51.5,55.5 + parent: 2 + - uid: 43225 + components: + - type: Transform + pos: 51.5,54.5 + parent: 2 + - uid: 43270 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 43275 + components: + - type: Transform + pos: -21.5,102.5 + parent: 2 + - uid: 43349 + components: + - type: Transform + pos: -127.5,18.5 + parent: 2 + - uid: 43361 + components: + - type: Transform + pos: -128.5,18.5 + parent: 2 + - uid: 43382 + components: + - type: Transform + pos: -127.5,14.5 + parent: 2 + - uid: 43383 + components: + - type: Transform + pos: -124.5,14.5 + parent: 2 + - uid: 43384 + components: + - type: Transform + pos: -123.5,14.5 + parent: 2 + - uid: 43385 + components: + - type: Transform + pos: -123.5,15.5 + parent: 2 + - uid: 43386 + components: + - type: Transform + pos: -127.5,15.5 + parent: 2 + - uid: 43387 + components: + - type: Transform + pos: -125.5,12.5 + parent: 2 + - uid: 43388 + components: + - type: Transform + pos: -125.5,11.5 + parent: 2 + - uid: 43389 + components: + - type: Transform + pos: -125.5,10.5 + parent: 2 + - uid: 43390 + components: + - type: Transform + pos: -125.5,9.5 + parent: 2 + - uid: 43391 + components: + - type: Transform + pos: -125.5,8.5 + parent: 2 + - uid: 43393 + components: + - type: Transform + pos: -126.5,8.5 + parent: 2 + - uid: 43394 + components: + - type: Transform + pos: -127.5,8.5 + parent: 2 + - uid: 43395 + components: + - type: Transform + pos: -128.5,8.5 + parent: 2 + - uid: 43396 + components: + - type: Transform + pos: -129.5,8.5 + parent: 2 + - uid: 43397 + components: + - type: Transform + pos: -130.5,8.5 + parent: 2 + - uid: 43398 + components: + - type: Transform + pos: -131.5,8.5 + parent: 2 + - uid: 43399 + components: + - type: Transform + pos: -131.5,9.5 + parent: 2 + - uid: 43400 + components: + - type: Transform + pos: -128.5,9.5 + parent: 2 + - uid: 43401 + components: + - type: Transform + pos: -124.5,8.5 + parent: 2 + - uid: 43402 + components: + - type: Transform + pos: -123.5,8.5 + parent: 2 + - uid: 43403 + components: + - type: Transform + pos: -122.5,8.5 + parent: 2 + - uid: 43404 + components: + - type: Transform + pos: -121.5,8.5 + parent: 2 + - uid: 43405 + components: + - type: Transform + pos: -120.5,8.5 + parent: 2 + - uid: 43406 + components: + - type: Transform + pos: -119.5,8.5 + parent: 2 + - uid: 43407 + components: + - type: Transform + pos: -122.5,9.5 + parent: 2 + - uid: 43408 + components: + - type: Transform + pos: -119.5,9.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 7529 + components: + - type: Transform + pos: -107.260605,91.55407 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: -27.472187,75.52056 + parent: 2 + - uid: 20992 + components: + - type: Transform + pos: -73.572014,168.5335 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 19108 + components: + - type: Transform + pos: -139.8233,17.413181 + parent: 2 + - uid: 19294 + components: + - type: Transform + pos: -139.1983,18.006931 + parent: 2 + - uid: 30390 + components: + - type: Transform + pos: -141.30115,32.65558 + parent: 2 +- proto: CableApcStack10 + entities: + - uid: 15835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.47325,70.704216 + parent: 2 + - uid: 17975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.63565,164.63829 + parent: 2 + - uid: 18167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.42194,164.46962 + parent: 2 +- proto: CableApcStackLingering10 + entities: + - uid: 20889 + components: + - type: Transform + pos: -72.927055,180.1337 + parent: 2 +- proto: CableHV + entities: + - uid: 577 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: -125.5,59.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -125.5,58.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -125.5,60.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: -80.5,-9.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: -84.5,-8.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: -83.5,-8.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -82.5,-8.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: -81.5,-8.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: -80.5,-8.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: -81.5,-12.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: -81.5,-6.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -81.5,-5.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -79.5,-6.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -81.5,-4.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -79.5,-8.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: -78.5,-8.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -77.5,-8.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -77.5,-6.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: -129.5,148.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -76.5,-6.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -74.5,-8.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -73.5,-8.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -79.5,-5.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -80.5,-6.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -80.5,-7.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -77.5,-12.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -75.5,-11.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -75.5,-10.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -76.5,-7.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -80.5,-10.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -77.5,-5.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -79.5,-10.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -131.5,148.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -79.5,-11.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: -130.5,148.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: -79.5,-12.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: -81.5,-11.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: -81.5,-10.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: -77.5,-4.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: -76.5,-9.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: -76.5,-10.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: -127.5,149.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: -123.5,148.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: -127.5,150.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: -75.5,-5.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: -128.5,153.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: -72.5,-8.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: -69.5,-8.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: -66.5,-13.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: -66.5,-15.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -128.5,150.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -65.5,-9.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: -77.5,-10.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: -128.5,151.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: 2.5,235.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: -4.5,237.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: 0.5,236.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: 1.5,236.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: 0.5,237.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: 0.5,239.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: 4.5,233.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 5.5,233.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: 0.5,238.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 0.5,240.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: -1.5,237.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: -5.5,235.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: -3.5,235.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: -4.5,235.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 1.5,228.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 3.5,231.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 2.5,231.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 5.5,231.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 4.5,231.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 4.5,229.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 6.5,231.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 70.5,7.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 2.5,229.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 3.5,229.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: 2.5,228.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: 1.5,224.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: -1.5,229.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: -4.5,227.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: -126.5,57.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: -46.5,67.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: -102.5,26.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: -127.5,46.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: -127.5,48.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: -46.5,69.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: -56.5,75.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: -127.5,45.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: -110.5,36.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -102.5,29.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -102.5,27.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: -109.5,29.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: -109.5,30.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 88.5,40.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: 88.5,41.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 88.5,39.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 3.5,80.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: 88.5,42.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: -128.5,152.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: -111.5,32.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: 88.5,43.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: 88.5,45.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 88.5,46.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: -44.5,67.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: -44.5,68.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: -128.5,57.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: 88.5,47.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: -127.5,52.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 70.5,26.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: -55.5,75.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: 70.5,24.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: 70.5,25.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: 67.5,9.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: 70.5,18.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -5.5,229.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: -5.5,227.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: 72.5,7.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: 73.5,7.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: 70.5,6.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 74.5,9.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: 76.5,11.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: -4.5,231.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: 70.5,5.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: 76.5,9.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: 75.5,11.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + pos: 68.5,7.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: -127.5,54.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: 69.5,8.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: 71.5,8.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: 70.5,16.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: 70.5,17.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 72.5,12.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: -70.5,70.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + pos: -127.5,55.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: 72.5,8.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: 70.5,23.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: 68.5,8.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 70.5,8.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: 73.5,29.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: 75.5,29.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: 76.5,29.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: 77.5,29.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: 80.5,29.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: 83.5,30.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: 83.5,31.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: 83.5,32.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: 83.5,33.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: 83.5,34.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: 83.5,35.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: 83.5,37.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: 83.5,38.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: -76.5,70.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + pos: 85.5,51.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: 85.5,53.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: 85.5,54.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: 85.5,55.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 85.5,56.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: 84.5,56.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: 84.5,57.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: 84.5,58.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: 84.5,59.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 84.5,60.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 83.5,60.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 82.5,60.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: -69.5,70.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: 72.5,13.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 87.5,39.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 68.5,12.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 66.5,11.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: 66.5,13.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: 70.5,14.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: -127.5,49.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: -55.5,132.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: -54.5,132.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + pos: -54.5,131.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: -54.5,130.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: -54.5,129.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: -54.5,128.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + pos: -55.5,128.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: -128.5,54.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: -128.5,56.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -80.5,75.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: -128.5,53.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 8761 + components: + - type: Transform + pos: 66.5,29.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + pos: 65.5,29.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + pos: 64.5,29.5 + parent: 2 + - uid: 8764 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: 68.5,29.5 + parent: 2 + - uid: 8767 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 8768 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 8769 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 8770 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 8771 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 8772 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 8773 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 + - uid: 8774 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 8776 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 8787 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 8793 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 8794 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + pos: 53.5,25.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 8799 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 8800 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 + - uid: 8801 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - uid: 8802 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 54.5,21.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 9012 + components: + - type: Transform + pos: -128.5,55.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: -127.5,47.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + pos: -127.5,53.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: 70.5,15.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: -115.5,61.5 + parent: 2 + - uid: 11244 + components: + - type: Transform + pos: -83.5,78.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + pos: -75.5,70.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + pos: -73.5,70.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: -72.5,70.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + pos: -126.5,56.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: -101.5,30.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: -101.5,31.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + pos: -118.5,106.5 + parent: 2 + - uid: 13415 + components: + - type: Transform + pos: -118.5,108.5 + parent: 2 + - uid: 13558 + components: + - type: Transform + pos: -101.5,32.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + pos: 87.5,51.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + pos: 68.5,21.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 3.5,233.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + pos: -118.5,105.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + pos: -69.5,71.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + pos: -69.5,74.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + pos: -44.5,66.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + pos: -44.5,66.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + pos: -48.5,104.5 + parent: 2 + - uid: 15077 + components: + - type: Transform + pos: -48.5,103.5 + parent: 2 + - uid: 15078 + components: + - type: Transform + pos: -47.5,103.5 + parent: 2 + - uid: 15079 + components: + - type: Transform + pos: -48.5,105.5 + parent: 2 + - uid: 15080 + components: + - type: Transform + pos: -47.5,102.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + pos: -47.5,101.5 + parent: 2 + - uid: 15082 + components: + - type: Transform + pos: -47.5,100.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + pos: -47.5,105.5 + parent: 2 + - uid: 15271 + components: + - type: Transform + pos: -128.5,148.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + pos: -128.5,154.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + pos: 88.5,51.5 + parent: 2 + - uid: 15360 + components: + - type: Transform + pos: 86.5,39.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + pos: -68.5,74.5 + parent: 2 + - uid: 15364 + components: + - type: Transform + pos: -71.5,70.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + pos: -45.5,66.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: -69.5,72.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + pos: -47.5,67.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: -119.5,108.5 + parent: 2 + - uid: 16436 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 16640 + components: + - type: Transform + pos: -126.5,153.5 + parent: 2 + - uid: 16641 + components: + - type: Transform + pos: -126.5,150.5 + parent: 2 + - uid: 16760 + components: + - type: Transform + pos: 86.5,51.5 + parent: 2 + - uid: 16791 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 13386 + - uid: 16805 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 13386 + - uid: 16806 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 13386 + - uid: 16807 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 13386 + - uid: 16808 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 13386 + - uid: 16809 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 13386 + - uid: 16810 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 13386 + - uid: 16811 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 13386 + - uid: 16812 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 13386 + - uid: 16813 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 13386 + - uid: 17074 + components: + - type: Transform + pos: -101.5,29.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + pos: -102.5,28.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + pos: -109.5,31.5 + parent: 2 + - uid: 17259 + components: + - type: Transform + pos: -47.5,66.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + pos: 6.5,80.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + pos: 5.5,80.5 + parent: 2 + - uid: 17377 + components: + - type: Transform + pos: -121.5,61.5 + parent: 2 + - uid: 17386 + components: + - type: Transform + pos: -126.5,152.5 + parent: 2 + - uid: 17391 + components: + - type: Transform + pos: -126.5,151.5 + parent: 2 + - uid: 17432 + components: + - type: Transform + pos: -126.5,154.5 + parent: 2 + - uid: 17434 + components: + - type: Transform + pos: -111.5,60.5 + parent: 2 + - uid: 17437 + components: + - type: Transform + pos: -121.5,148.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + pos: -119.5,148.5 + parent: 2 + - uid: 17453 + components: + - type: Transform + pos: -112.5,60.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + pos: -118.5,148.5 + parent: 2 + - uid: 17529 + components: + - type: Transform + pos: 6.5,235.5 + parent: 2 + - uid: 17580 + components: + - type: Transform + pos: -120.5,148.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: -83.5,95.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + pos: -104.5,68.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + pos: -105.5,67.5 + parent: 2 + - uid: 17888 + components: + - type: Transform + pos: -80.5,76.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + pos: -83.5,79.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + pos: -80.5,79.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + pos: -81.5,77.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + pos: -97.5,72.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + pos: -97.5,71.5 + parent: 2 + - uid: 17920 + components: + - type: Transform + pos: -96.5,72.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + pos: -107.5,67.5 + parent: 2 + - uid: 17945 + components: + - type: Transform + pos: -87.5,75.5 + parent: 2 + - uid: 17946 + components: + - type: Transform + pos: -93.5,74.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + pos: -101.5,148.5 + parent: 2 + - uid: 17997 + components: + - type: Transform + pos: 0.5,216.5 + parent: 2 + - uid: 18022 + components: + - type: Transform + pos: -85.5,76.5 + parent: 2 + - uid: 18023 + components: + - type: Transform + pos: -83.5,76.5 + parent: 2 + - uid: 18036 + components: + - type: Transform + pos: -107.5,64.5 + parent: 2 + - uid: 18052 + components: + - type: Transform + pos: -110.5,60.5 + parent: 2 + - uid: 18056 + components: + - type: Transform + pos: -102.5,148.5 + parent: 2 + - uid: 18075 + components: + - type: Transform + pos: -80.5,77.5 + parent: 2 + - uid: 18076 + components: + - type: Transform + pos: -100.5,70.5 + parent: 2 + - uid: 18082 + components: + - type: Transform + pos: -82.5,77.5 + parent: 2 + - uid: 18089 + components: + - type: Transform + pos: -126.5,61.5 + parent: 2 + - uid: 18106 + components: + - type: Transform + pos: -80.5,78.5 + parent: 2 + - uid: 18132 + components: + - type: Transform + pos: -87.5,76.5 + parent: 2 + - uid: 18222 + components: + - type: Transform + pos: -124.5,153.5 + parent: 2 + - uid: 18223 + components: + - type: Transform + pos: -109.5,60.5 + parent: 2 + - uid: 18225 + components: + - type: Transform + pos: -124.5,151.5 + parent: 2 + - uid: 18229 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 18246 + components: + - type: Transform + pos: -124.5,150.5 + parent: 2 + - uid: 18317 + components: + - type: Transform + pos: -108.5,64.5 + parent: 2 + - uid: 18331 + components: + - type: Transform + pos: -108.5,61.5 + parent: 2 + - uid: 18356 + components: + - type: Transform + pos: -84.5,76.5 + parent: 2 + - uid: 18359 + components: + - type: Transform + pos: -83.5,77.5 + parent: 2 + - uid: 18363 + components: + - type: Transform + pos: -86.5,76.5 + parent: 2 + - uid: 18367 + components: + - type: Transform + pos: -99.5,70.5 + parent: 2 + - uid: 18376 + components: + - type: Transform + pos: -91.5,74.5 + parent: 2 + - uid: 18388 + components: + - type: Transform + pos: -94.5,73.5 + parent: 2 + - uid: 18390 + components: + - type: Transform + pos: -90.5,75.5 + parent: 2 + - uid: 18404 + components: + - type: Transform + pos: -99.5,71.5 + parent: 2 + - uid: 18407 + components: + - type: Transform + pos: -103.5,69.5 + parent: 2 + - uid: 18408 + components: + - type: Transform + pos: -108.5,60.5 + parent: 2 + - uid: 18410 + components: + - type: Transform + pos: -103.5,68.5 + parent: 2 + - uid: 18411 + components: + - type: Transform + pos: -98.5,71.5 + parent: 2 + - uid: 18413 + components: + - type: Transform + pos: -106.5,67.5 + parent: 2 + - uid: 18415 + components: + - type: Transform + pos: -91.5,75.5 + parent: 2 + - uid: 18418 + components: + - type: Transform + pos: -93.5,73.5 + parent: 2 + - uid: 18427 + components: + - type: Transform + pos: -108.5,62.5 + parent: 2 + - uid: 18457 + components: + - type: Transform + pos: -80.5,84.5 + parent: 2 + - uid: 18463 + components: + - type: Transform + pos: -80.5,88.5 + parent: 2 + - uid: 18479 + components: + - type: Transform + pos: -88.5,75.5 + parent: 2 + - uid: 18482 + components: + - type: Transform + pos: -92.5,74.5 + parent: 2 + - uid: 18486 + components: + - type: Transform + pos: -101.5,69.5 + parent: 2 + - uid: 18499 + components: + - type: Transform + pos: -102.5,69.5 + parent: 2 + - uid: 18500 + components: + - type: Transform + pos: -101.5,70.5 + parent: 2 + - uid: 18518 + components: + - type: Transform + pos: 88.5,44.5 + parent: 2 + - uid: 18525 + components: + - type: Transform + pos: -82.5,95.5 + parent: 2 + - uid: 18618 + components: + - type: Transform + pos: -113.5,61.5 + parent: 2 + - uid: 18620 + components: + - type: Transform + pos: -108.5,63.5 + parent: 2 + - uid: 18660 + components: + - type: Transform + pos: -107.5,66.5 + parent: 2 + - uid: 18713 + components: + - type: Transform + pos: -67.5,-6.5 + parent: 2 + - uid: 18725 + components: + - type: Transform + pos: -112.5,61.5 + parent: 2 + - uid: 18730 + components: + - type: Transform + pos: -39.5,90.5 + parent: 2 + - uid: 18747 + components: + - type: Transform + pos: -38.5,90.5 + parent: 2 + - uid: 18752 + components: + - type: Transform + pos: -124.5,152.5 + parent: 2 + - uid: 18753 + components: + - type: Transform + pos: -107.5,65.5 + parent: 2 + - uid: 18761 + components: + - type: Transform + pos: -125.5,61.5 + parent: 2 + - uid: 18784 + components: + - type: Transform + pos: -37.5,90.5 + parent: 2 + - uid: 18790 + components: + - type: Transform + pos: -36.5,90.5 + parent: 2 + - uid: 18807 + components: + - type: Transform + pos: -35.5,90.5 + parent: 2 + - uid: 18812 + components: + - type: Transform + pos: -97.5,144.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + pos: -96.5,144.5 + parent: 2 + - uid: 18912 + components: + - type: Transform + pos: -34.5,90.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: -33.5,90.5 + parent: 2 + - uid: 18930 + components: + - type: Transform + pos: -32.5,90.5 + parent: 2 + - uid: 18948 + components: + - type: Transform + pos: -31.5,90.5 + parent: 2 + - uid: 18951 + components: + - type: Transform + pos: -30.5,90.5 + parent: 2 + - uid: 18959 + components: + - type: Transform + pos: -29.5,90.5 + parent: 2 + - uid: 18960 + components: + - type: Transform + pos: -28.5,90.5 + parent: 2 + - uid: 18977 + components: + - type: Transform + pos: -27.5,90.5 + parent: 2 + - uid: 18979 + components: + - type: Transform + pos: -26.5,90.5 + parent: 2 + - uid: 18993 + components: + - type: Transform + pos: -25.5,90.5 + parent: 2 + - uid: 19006 + components: + - type: Transform + pos: -124.5,61.5 + parent: 2 + - uid: 19009 + components: + - type: Transform + pos: -123.5,61.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: -122.5,61.5 + parent: 2 + - uid: 19013 + components: + - type: Transform + pos: -118.5,61.5 + parent: 2 + - uid: 19016 + components: + - type: Transform + pos: -119.5,61.5 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: -116.5,61.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: -114.5,61.5 + parent: 2 + - uid: 19025 + components: + - type: Transform + pos: -117.5,61.5 + parent: 2 + - uid: 19026 + components: + - type: Transform + pos: -120.5,61.5 + parent: 2 + - uid: 19027 + components: + - type: Transform + pos: -24.5,90.5 + parent: 2 + - uid: 19035 + components: + - type: Transform + pos: -23.5,90.5 + parent: 2 + - uid: 19039 + components: + - type: Transform + pos: -22.5,90.5 + parent: 2 + - uid: 19049 + components: + - type: Transform + pos: -21.5,90.5 + parent: 2 + - uid: 19050 + components: + - type: Transform + pos: -20.5,90.5 + parent: 2 + - uid: 19079 + components: + - type: Transform + pos: -19.5,90.5 + parent: 2 + - uid: 19081 + components: + - type: Transform + pos: -18.5,90.5 + parent: 2 + - uid: 19089 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 19103 + components: + - type: Transform + pos: -18.5,89.5 + parent: 2 + - uid: 19115 + components: + - type: Transform + pos: -17.5,89.5 + parent: 2 + - uid: 19133 + components: + - type: Transform + pos: -80.5,81.5 + parent: 2 + - uid: 19139 + components: + - type: Transform + pos: -16.5,89.5 + parent: 2 + - uid: 19143 + components: + - type: Transform + pos: -80.5,89.5 + parent: 2 + - uid: 19152 + components: + - type: Transform + pos: -80.5,80.5 + parent: 2 + - uid: 19155 + components: + - type: Transform + pos: -80.5,87.5 + parent: 2 + - uid: 19160 + components: + - type: Transform + pos: -80.5,85.5 + parent: 2 + - uid: 19166 + components: + - type: Transform + pos: -15.5,89.5 + parent: 2 + - uid: 19167 + components: + - type: Transform + pos: -127.5,61.5 + parent: 2 + - uid: 19169 + components: + - type: Transform + pos: -14.5,89.5 + parent: 2 + - uid: 19171 + components: + - type: Transform + pos: -13.5,89.5 + parent: 2 + - uid: 19173 + components: + - type: Transform + pos: -13.5,88.5 + parent: 2 + - uid: 19174 + components: + - type: Transform + pos: -12.5,88.5 + parent: 2 + - uid: 19175 + components: + - type: Transform + pos: -11.5,88.5 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: -10.5,88.5 + parent: 2 + - uid: 19177 + components: + - type: Transform + pos: -9.5,88.5 + parent: 2 + - uid: 19178 + components: + - type: Transform + pos: -80.5,83.5 + parent: 2 + - uid: 19181 + components: + - type: Transform + pos: -8.5,88.5 + parent: 2 + - uid: 19182 + components: + - type: Transform + pos: -7.5,88.5 + parent: 2 + - uid: 19183 + components: + - type: Transform + pos: -95.5,73.5 + parent: 2 + - uid: 19188 + components: + - type: Transform + pos: -6.5,88.5 + parent: 2 + - uid: 19189 + components: + - type: Transform + pos: -5.5,88.5 + parent: 2 + - uid: 19190 + components: + - type: Transform + pos: -4.5,88.5 + parent: 2 + - uid: 19191 + components: + - type: Transform + pos: -3.5,88.5 + parent: 2 + - uid: 19197 + components: + - type: Transform + pos: -80.5,86.5 + parent: 2 + - uid: 19198 + components: + - type: Transform + pos: -80.5,82.5 + parent: 2 + - uid: 19199 + components: + - type: Transform + pos: -2.5,88.5 + parent: 2 + - uid: 19200 + components: + - type: Transform + pos: -1.5,88.5 + parent: 2 + - uid: 19201 + components: + - type: Transform + pos: -0.5,88.5 + parent: 2 + - uid: 19214 + components: + - type: Transform + pos: 0.5,88.5 + parent: 2 + - uid: 19216 + components: + - type: Transform + pos: 1.5,88.5 + parent: 2 + - uid: 19218 + components: + - type: Transform + pos: 2.5,88.5 + parent: 2 + - uid: 19223 + components: + - type: Transform + pos: -66.5,74.5 + parent: 2 + - uid: 19224 + components: + - type: Transform + pos: -65.5,74.5 + parent: 2 + - uid: 19227 + components: + - type: Transform + pos: 2.5,87.5 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: 2.5,86.5 + parent: 2 + - uid: 19231 + components: + - type: Transform + pos: 2.5,85.5 + parent: 2 + - uid: 19232 + components: + - type: Transform + pos: -64.5,74.5 + parent: 2 + - uid: 19235 + components: + - type: Transform + pos: -63.5,74.5 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: 2.5,84.5 + parent: 2 + - uid: 19261 + components: + - type: Transform + pos: 2.5,83.5 + parent: 2 + - uid: 19265 + components: + - type: Transform + pos: 2.5,82.5 + parent: 2 + - uid: 19266 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: 2.5,80.5 + parent: 2 + - uid: 19274 + components: + - type: Transform + pos: 2.5,79.5 + parent: 2 + - uid: 19285 + components: + - type: Transform + pos: 2.5,78.5 + parent: 2 + - uid: 19289 + components: + - type: Transform + pos: -95.5,72.5 + parent: 2 + - uid: 19339 + components: + - type: Transform + pos: -62.5,74.5 + parent: 2 + - uid: 19340 + components: + - type: Transform + pos: -47.5,99.5 + parent: 2 + - uid: 19342 + components: + - type: Transform + pos: -46.5,99.5 + parent: 2 + - uid: 19343 + components: + - type: Transform + pos: -45.5,99.5 + parent: 2 + - uid: 19346 + components: + - type: Transform + pos: -44.5,99.5 + parent: 2 + - uid: 19347 + components: + - type: Transform + pos: -43.5,99.5 + parent: 2 + - uid: 19348 + components: + - type: Transform + pos: -42.5,99.5 + parent: 2 + - uid: 19351 + components: + - type: Transform + pos: -41.5,99.5 + parent: 2 + - uid: 19352 + components: + - type: Transform + pos: -40.5,99.5 + parent: 2 + - uid: 19353 + components: + - type: Transform + pos: -40.5,98.5 + parent: 2 + - uid: 19355 + components: + - type: Transform + pos: -40.5,97.5 + parent: 2 + - uid: 19356 + components: + - type: Transform + pos: -40.5,96.5 + parent: 2 + - uid: 19357 + components: + - type: Transform + pos: -40.5,95.5 + parent: 2 + - uid: 19358 + components: + - type: Transform + pos: -89.5,75.5 + parent: 2 + - uid: 19359 + components: + - type: Transform + pos: -40.5,94.5 + parent: 2 + - uid: 19360 + components: + - type: Transform + pos: -105.5,68.5 + parent: 2 + - uid: 19361 + components: + - type: Transform + pos: -40.5,93.5 + parent: 2 + - uid: 19363 + components: + - type: Transform + pos: -40.5,92.5 + parent: 2 + - uid: 19365 + components: + - type: Transform + pos: -40.5,91.5 + parent: 2 + - uid: 19366 + components: + - type: Transform + pos: -40.5,90.5 + parent: 2 + - uid: 19367 + components: + - type: Transform + pos: -41.5,90.5 + parent: 2 + - uid: 19369 + components: + - type: Transform + pos: -42.5,90.5 + parent: 2 + - uid: 19371 + components: + - type: Transform + pos: -43.5,90.5 + parent: 2 + - uid: 19372 + components: + - type: Transform + pos: -44.5,90.5 + parent: 2 + - uid: 19377 + components: + - type: Transform + pos: -45.5,90.5 + parent: 2 + - uid: 19378 + components: + - type: Transform + pos: -46.5,90.5 + parent: 2 + - uid: 19379 + components: + - type: Transform + pos: -47.5,90.5 + parent: 2 + - uid: 19380 + components: + - type: Transform + pos: -48.5,90.5 + parent: 2 + - uid: 19382 + components: + - type: Transform + pos: -49.5,90.5 + parent: 2 + - uid: 19383 + components: + - type: Transform + pos: -50.5,90.5 + parent: 2 + - uid: 19384 + components: + - type: Transform + pos: -51.5,90.5 + parent: 2 + - uid: 19385 + components: + - type: Transform + pos: -52.5,90.5 + parent: 2 + - uid: 19386 + components: + - type: Transform + pos: -53.5,90.5 + parent: 2 + - uid: 19387 + components: + - type: Transform + pos: -53.5,89.5 + parent: 2 + - uid: 19388 + components: + - type: Transform + pos: -53.5,88.5 + parent: 2 + - uid: 19389 + components: + - type: Transform + pos: -53.5,87.5 + parent: 2 + - uid: 19390 + components: + - type: Transform + pos: -53.5,86.5 + parent: 2 + - uid: 19394 + components: + - type: Transform + pos: -53.5,85.5 + parent: 2 + - uid: 19398 + components: + - type: Transform + pos: -53.5,84.5 + parent: 2 + - uid: 19406 + components: + - type: Transform + pos: -53.5,83.5 + parent: 2 + - uid: 19410 + components: + - type: Transform + pos: -53.5,82.5 + parent: 2 + - uid: 19411 + components: + - type: Transform + pos: -53.5,81.5 + parent: 2 + - uid: 19415 + components: + - type: Transform + pos: -53.5,80.5 + parent: 2 + - uid: 19416 + components: + - type: Transform + pos: -53.5,79.5 + parent: 2 + - uid: 19417 + components: + - type: Transform + pos: -53.5,78.5 + parent: 2 + - uid: 19418 + components: + - type: Transform + pos: -53.5,77.5 + parent: 2 + - uid: 19419 + components: + - type: Transform + pos: -53.5,76.5 + parent: 2 + - uid: 19420 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 19421 + components: + - type: Transform + pos: -53.5,74.5 + parent: 2 + - uid: 19422 + components: + - type: Transform + pos: -53.5,73.5 + parent: 2 + - uid: 19423 + components: + - type: Transform + pos: -52.5,73.5 + parent: 2 + - uid: 19424 + components: + - type: Transform + pos: -51.5,73.5 + parent: 2 + - uid: 19425 + components: + - type: Transform + pos: -50.5,73.5 + parent: 2 + - uid: 19426 + components: + - type: Transform + pos: -49.5,73.5 + parent: 2 + - uid: 19427 + components: + - type: Transform + pos: -48.5,73.5 + parent: 2 + - uid: 19428 + components: + - type: Transform + pos: -47.5,73.5 + parent: 2 + - uid: 19429 + components: + - type: Transform + pos: -47.5,72.5 + parent: 2 + - uid: 19430 + components: + - type: Transform + pos: -47.5,71.5 + parent: 2 + - uid: 19431 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 19432 + components: + - type: Transform + pos: -46.5,70.5 + parent: 2 + - uid: 19435 + components: + - type: Transform + pos: -61.5,74.5 + parent: 2 + - uid: 19436 + components: + - type: Transform + pos: -60.5,74.5 + parent: 2 + - uid: 19437 + components: + - type: Transform + pos: -59.5,74.5 + parent: 2 + - uid: 19441 + components: + - type: Transform + pos: -58.5,74.5 + parent: 2 + - uid: 19442 + components: + - type: Transform + pos: -57.5,74.5 + parent: 2 + - uid: 19446 + components: + - type: Transform + pos: -41.5,104.5 + parent: 2 + - uid: 19447 + components: + - type: Transform + pos: -40.5,100.5 + parent: 2 + - uid: 19451 + components: + - type: Transform + pos: -40.5,101.5 + parent: 2 + - uid: 19454 + components: + - type: Transform + pos: -40.5,102.5 + parent: 2 + - uid: 19455 + components: + - type: Transform + pos: -40.5,103.5 + parent: 2 + - uid: 19456 + components: + - type: Transform + pos: -40.5,104.5 + parent: 2 + - uid: 19460 + components: + - type: Transform + pos: -42.5,104.5 + parent: 2 + - uid: 19470 + components: + - type: Transform + pos: -43.5,104.5 + parent: 2 + - uid: 19471 + components: + - type: Transform + pos: -44.5,104.5 + parent: 2 + - uid: 19472 + components: + - type: Transform + pos: -45.5,104.5 + parent: 2 + - uid: 19501 + components: + - type: Transform + pos: -80.5,90.5 + parent: 2 + - uid: 19502 + components: + - type: Transform + pos: -80.5,91.5 + parent: 2 + - uid: 19503 + components: + - type: Transform + pos: -81.5,95.5 + parent: 2 + - uid: 19504 + components: + - type: Transform + pos: -80.5,92.5 + parent: 2 + - uid: 19505 + components: + - type: Transform + pos: -80.5,93.5 + parent: 2 + - uid: 19506 + components: + - type: Transform + pos: -80.5,94.5 + parent: 2 + - uid: 19507 + components: + - type: Transform + pos: -80.5,95.5 + parent: 2 + - uid: 19599 + components: + - type: Transform + pos: -127.5,51.5 + parent: 2 + - uid: 20513 + components: + - type: Transform + pos: -129.5,39.5 + parent: 2 + - uid: 20962 + components: + - type: Transform + pos: -121.5,33.5 + parent: 2 + - uid: 20963 + components: + - type: Transform + pos: -121.5,34.5 + parent: 2 + - uid: 20964 + components: + - type: Transform + pos: -121.5,35.5 + parent: 2 + - uid: 20970 + components: + - type: Transform + pos: -121.5,36.5 + parent: 2 + - uid: 20973 + components: + - type: Transform + pos: -121.5,37.5 + parent: 2 + - uid: 20978 + components: + - type: Transform + pos: -121.5,38.5 + parent: 2 + - uid: 20980 + components: + - type: Transform + pos: -121.5,39.5 + parent: 2 + - uid: 20981 + components: + - type: Transform + pos: -122.5,39.5 + parent: 2 + - uid: 20982 + components: + - type: Transform + pos: -123.5,39.5 + parent: 2 + - uid: 20983 + components: + - type: Transform + pos: -124.5,39.5 + parent: 2 + - uid: 20984 + components: + - type: Transform + pos: -125.5,39.5 + parent: 2 + - uid: 21006 + components: + - type: Transform + pos: -126.5,39.5 + parent: 2 + - uid: 21007 + components: + - type: Transform + pos: -127.5,39.5 + parent: 2 + - uid: 21008 + components: + - type: Transform + pos: -128.5,39.5 + parent: 2 + - uid: 21457 + components: + - type: Transform + pos: -101.5,146.5 + parent: 2 + - uid: 21460 + components: + - type: Transform + pos: -101.5,147.5 + parent: 2 + - uid: 21461 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 21462 + components: + - type: Transform + pos: -99.5,144.5 + parent: 2 + - uid: 21463 + components: + - type: Transform + pos: -100.5,144.5 + parent: 2 + - uid: 22031 + components: + - type: Transform + pos: -122.5,47.5 + parent: 2 + - uid: 22032 + components: + - type: Transform + pos: -126.5,50.5 + parent: 2 + - uid: 22050 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 21114 + - uid: 22051 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 21114 + - uid: 22052 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 21114 + - uid: 22053 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 21114 + - uid: 22054 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 21114 + - uid: 22378 + components: + - type: Transform + pos: 88.5,50.5 + parent: 2 + - uid: 22379 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 + - uid: 22381 + components: + - type: Transform + pos: -69.5,73.5 + parent: 2 + - uid: 22695 + components: + - type: Transform + pos: -127.5,58.5 + parent: 2 + - uid: 23038 + components: + - type: Transform + pos: -113.5,34.5 + parent: 2 + - uid: 23041 + components: + - type: Transform + pos: -114.5,33.5 + parent: 2 + - uid: 23848 + components: + - type: Transform + pos: -2.5,237.5 + parent: 2 + - uid: 23849 + components: + - type: Transform + pos: -3.5,237.5 + parent: 2 + - uid: 23866 + components: + - type: Transform + pos: -2.5,229.5 + parent: 2 + - uid: 23867 + components: + - type: Transform + pos: -2.5,233.5 + parent: 2 + - uid: 23868 + components: + - type: Transform + pos: 2.5,233.5 + parent: 2 + - uid: 23869 + components: + - type: Transform + pos: -0.5,224.5 + parent: 2 + - uid: 23870 + components: + - type: Transform + pos: -3.5,227.5 + parent: 2 + - uid: 23871 + components: + - type: Transform + pos: -3.5,229.5 + parent: 2 + - uid: 23872 + components: + - type: Transform + pos: -4.5,229.5 + parent: 2 + - uid: 23874 + components: + - type: Transform + pos: 6.5,229.5 + parent: 2 + - uid: 23875 + components: + - type: Transform + pos: 5.5,229.5 + parent: 2 + - uid: 23876 + components: + - type: Transform + pos: -2.5,227.5 + parent: 2 + - uid: 23877 + components: + - type: Transform + pos: -1.5,231.5 + parent: 2 + - uid: 23878 + components: + - type: Transform + pos: -4.5,233.5 + parent: 2 + - uid: 23879 + components: + - type: Transform + pos: -1.5,233.5 + parent: 2 + - uid: 23880 + components: + - type: Transform + pos: -5.5,231.5 + parent: 2 + - uid: 23881 + components: + - type: Transform + pos: -3.5,231.5 + parent: 2 + - uid: 23882 + components: + - type: Transform + pos: 2.5,232.5 + parent: 2 + - uid: 23883 + components: + - type: Transform + pos: 5.5,227.5 + parent: 2 + - uid: 23884 + components: + - type: Transform + pos: -2.5,231.5 + parent: 2 + - uid: 23885 + components: + - type: Transform + pos: 0.5,228.5 + parent: 2 + - uid: 23886 + components: + - type: Transform + pos: -1.5,227.5 + parent: 2 + - uid: 24128 + components: + - type: Transform + pos: -1.5,228.5 + parent: 2 + - uid: 24129 + components: + - type: Transform + pos: 0.5,232.5 + parent: 2 + - uid: 24130 + components: + - type: Transform + pos: -0.5,232.5 + parent: 2 + - uid: 24164 + components: + - type: Transform + pos: -46.5,66.5 + parent: 2 + - uid: 24287 + components: + - type: Transform + pos: 3.5,227.5 + parent: 2 + - uid: 24291 + components: + - type: Transform + pos: 2.5,227.5 + parent: 2 + - uid: 24299 + components: + - type: Transform + pos: 4.5,227.5 + parent: 2 + - uid: 24302 + components: + - type: Transform + pos: 0.5,224.5 + parent: 2 + - uid: 24360 + components: + - type: Transform + pos: -1.5,232.5 + parent: 2 + - uid: 24376 + components: + - type: Transform + pos: -5.5,233.5 + parent: 2 + - uid: 24378 + components: + - type: Transform + pos: -3.5,233.5 + parent: 2 + - uid: 24381 + components: + - type: Transform + pos: -0.5,228.5 + parent: 2 + - uid: 24383 + components: + - type: Transform + pos: -5.5,237.5 + parent: 2 + - uid: 24386 + components: + - type: Transform + pos: 2.5,237.5 + parent: 2 + - uid: 24387 + components: + - type: Transform + pos: 4.5,237.5 + parent: 2 + - uid: 24388 + components: + - type: Transform + pos: 4.5,235.5 + parent: 2 + - uid: 24389 + components: + - type: Transform + pos: 5.5,235.5 + parent: 2 + - uid: 24390 + components: + - type: Transform + pos: 6.5,237.5 + parent: 2 + - uid: 24392 + components: + - type: Transform + pos: -2.5,235.5 + parent: 2 + - uid: 24460 + components: + - type: Transform + pos: -1.5,236.5 + parent: 2 + - uid: 24470 + components: + - type: Transform + pos: 2.5,236.5 + parent: 2 + - uid: 24473 + components: + - type: Transform + pos: -0.5,236.5 + parent: 2 + - uid: 24484 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 24654 + components: + - type: Transform + pos: -1.5,235.5 + parent: 2 + - uid: 24656 + components: + - type: Transform + pos: 3.5,237.5 + parent: 2 + - uid: 24657 + components: + - type: Transform + pos: 5.5,237.5 + parent: 2 + - uid: 24659 + components: + - type: Transform + pos: 3.5,235.5 + parent: 2 + - uid: 24769 + components: + - type: Transform + pos: 0.5,219.5 + parent: 2 + - uid: 24770 + components: + - type: Transform + pos: 0.5,220.5 + parent: 2 + - uid: 24771 + components: + - type: Transform + pos: 0.5,218.5 + parent: 2 + - uid: 24772 + components: + - type: Transform + pos: 0.5,217.5 + parent: 2 + - uid: 24773 + components: + - type: Transform + pos: -0.5,216.5 + parent: 2 + - uid: 25194 + components: + - type: Transform + pos: -127.5,59.5 + parent: 2 + - uid: 25362 + components: + - type: Transform + pos: -143.5,18.5 + parent: 2 + - uid: 26496 + components: + - type: Transform + pos: -45.5,66.5 + parent: 2 + - uid: 27701 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 27702 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 27725 + components: + - type: Transform + pos: -100.5,145.5 + parent: 2 + - uid: 27760 + components: + - type: Transform + pos: -101.5,145.5 + parent: 2 + - uid: 27935 + components: + - type: Transform + pos: -136.5,32.5 + parent: 2 + - uid: 27938 + components: + - type: Transform + pos: -136.5,33.5 + parent: 2 + - uid: 28188 + components: + - type: Transform + pos: -144.5,18.5 + parent: 2 + - uid: 28305 + components: + - type: Transform + pos: -125.5,50.5 + parent: 2 + - uid: 28307 + components: + - type: Transform + pos: -125.5,49.5 + parent: 2 + - uid: 28318 + components: + - type: Transform + pos: -125.5,48.5 + parent: 2 + - uid: 28323 + components: + - type: Transform + pos: -125.5,47.5 + parent: 2 + - uid: 28325 + components: + - type: Transform + pos: -124.5,47.5 + parent: 2 + - uid: 28328 + components: + - type: Transform + pos: -123.5,47.5 + parent: 2 + - uid: 28430 + components: + - type: Transform + pos: -129.5,32.5 + parent: 2 + - uid: 28431 + components: + - type: Transform + pos: -125.5,59.5 + parent: 2 + - uid: 28432 + components: + - type: Transform + pos: -127.5,60.5 + parent: 2 + - uid: 28919 + components: + - type: Transform + pos: -127.5,50.5 + parent: 2 + - uid: 29330 + components: + - type: Transform + pos: -109.5,32.5 + parent: 2 + - uid: 29331 + components: + - type: Transform + pos: -109.5,34.5 + parent: 2 + - uid: 29349 + components: + - type: Transform + pos: -108.5,34.5 + parent: 2 + - uid: 29413 + components: + - type: Transform + pos: 6.5,233.5 + parent: 2 + - uid: 29420 + components: + - type: Transform + pos: 6.5,227.5 + parent: 2 + - uid: 29421 + components: + - type: Transform + pos: 6.5,225.5 + parent: 2 + - uid: 29422 + components: + - type: Transform + pos: 5.5,225.5 + parent: 2 + - uid: 29425 + components: + - type: Transform + pos: 4.5,225.5 + parent: 2 + - uid: 29426 + components: + - type: Transform + pos: 3.5,225.5 + parent: 2 + - uid: 29447 + components: + - type: Transform + pos: 2.5,225.5 + parent: 2 + - uid: 29449 + components: + - type: Transform + pos: 1.5,232.5 + parent: 2 + - uid: 29461 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29470 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 29473 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 29475 + components: + - type: Transform + pos: -106.5,33.5 + parent: 2 + - uid: 29477 + components: + - type: Transform + pos: -110.5,35.5 + parent: 2 + - uid: 29478 + components: + - type: Transform + pos: -110.5,34.5 + parent: 2 + - uid: 29479 + components: + - type: Transform + pos: -110.5,33.5 + parent: 2 + - uid: 29480 + components: + - type: Transform + pos: -112.5,34.5 + parent: 2 + - uid: 29481 + components: + - type: Transform + pos: -111.5,34.5 + parent: 2 + - uid: 29483 + components: + - type: Transform + pos: -107.5,34.5 + parent: 2 + - uid: 29485 + components: + - type: Transform + pos: -110.5,32.5 + parent: 2 + - uid: 29628 + components: + - type: Transform + pos: -1.5,224.5 + parent: 2 + - uid: 29634 + components: + - type: Transform + pos: -1.5,225.5 + parent: 2 + - uid: 29682 + components: + - type: Transform + pos: -2.5,225.5 + parent: 2 + - uid: 29769 + components: + - type: Transform + pos: -129.5,26.5 + parent: 2 + - uid: 29928 + components: + - type: Transform + pos: -3.5,225.5 + parent: 2 + - uid: 29937 + components: + - type: Transform + pos: -95.5,51.5 + parent: 2 + - uid: 29939 + components: + - type: Transform + pos: -95.5,50.5 + parent: 2 + - uid: 29940 + components: + - type: Transform + pos: -95.5,52.5 + parent: 2 + - uid: 29941 + components: + - type: Transform + pos: -95.5,53.5 + parent: 2 + - uid: 29942 + components: + - type: Transform + pos: -95.5,54.5 + parent: 2 + - uid: 29944 + components: + - type: Transform + pos: -96.5,54.5 + parent: 2 + - uid: 29945 + components: + - type: Transform + pos: -97.5,54.5 + parent: 2 + - uid: 29946 + components: + - type: Transform + pos: -98.5,54.5 + parent: 2 + - uid: 29947 + components: + - type: Transform + pos: -98.5,53.5 + parent: 2 + - uid: 29949 + components: + - type: Transform + pos: -99.5,53.5 + parent: 2 + - uid: 29950 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 29951 + components: + - type: Transform + pos: -99.5,51.5 + parent: 2 + - uid: 29952 + components: + - type: Transform + pos: -99.5,50.5 + parent: 2 + - uid: 29953 + components: + - type: Transform + pos: -100.5,50.5 + parent: 2 + - uid: 29954 + components: + - type: Transform + pos: -101.5,50.5 + parent: 2 + - uid: 29955 + components: + - type: Transform + pos: -102.5,50.5 + parent: 2 + - uid: 29956 + components: + - type: Transform + pos: -103.5,50.5 + parent: 2 + - uid: 29957 + components: + - type: Transform + pos: -104.5,50.5 + parent: 2 + - uid: 29958 + components: + - type: Transform + pos: -104.5,49.5 + parent: 2 + - uid: 29959 + components: + - type: Transform + pos: -104.5,48.5 + parent: 2 + - uid: 29960 + components: + - type: Transform + pos: -104.5,47.5 + parent: 2 + - uid: 29961 + components: + - type: Transform + pos: -105.5,47.5 + parent: 2 + - uid: 29962 + components: + - type: Transform + pos: -106.5,47.5 + parent: 2 + - uid: 29963 + components: + - type: Transform + pos: -107.5,47.5 + parent: 2 + - uid: 29964 + components: + - type: Transform + pos: -108.5,47.5 + parent: 2 + - uid: 29965 + components: + - type: Transform + pos: -108.5,48.5 + parent: 2 + - uid: 29966 + components: + - type: Transform + pos: -108.5,49.5 + parent: 2 + - uid: 29967 + components: + - type: Transform + pos: -108.5,50.5 + parent: 2 + - uid: 29968 + components: + - type: Transform + pos: -108.5,51.5 + parent: 2 + - uid: 29969 + components: + - type: Transform + pos: -108.5,52.5 + parent: 2 + - uid: 29970 + components: + - type: Transform + pos: -108.5,53.5 + parent: 2 + - uid: 29971 + components: + - type: Transform + pos: -108.5,54.5 + parent: 2 + - uid: 29972 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 29973 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 29974 + components: + - type: Transform + pos: -108.5,57.5 + parent: 2 + - uid: 29975 + components: + - type: Transform + pos: -108.5,58.5 + parent: 2 + - uid: 29976 + components: + - type: Transform + pos: -108.5,59.5 + parent: 2 + - uid: 30010 + components: + - type: Transform + pos: -120.5,32.5 + parent: 2 + - uid: 30028 + components: + - type: Transform + pos: -4.5,225.5 + parent: 2 + - uid: 30248 + components: + - type: Transform + pos: -96.5,43.5 + parent: 2 + - uid: 30249 + components: + - type: Transform + pos: -97.5,43.5 + parent: 2 + - uid: 30250 + components: + - type: Transform + pos: -98.5,43.5 + parent: 2 + - uid: 30251 + components: + - type: Transform + pos: -98.5,44.5 + parent: 2 + - uid: 30252 + components: + - type: Transform + pos: -98.5,45.5 + parent: 2 + - uid: 30253 + components: + - type: Transform + pos: -98.5,46.5 + parent: 2 + - uid: 30254 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - uid: 30255 + components: + - type: Transform + pos: -98.5,48.5 + parent: 2 + - uid: 30256 + components: + - type: Transform + pos: -98.5,49.5 + parent: 2 + - uid: 30257 + components: + - type: Transform + pos: -98.5,50.5 + parent: 2 + - uid: 30271 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 30272 + components: + - type: Transform + pos: -115.5,34.5 + parent: 2 + - uid: 30273 + components: + - type: Transform + pos: -116.5,34.5 + parent: 2 + - uid: 30275 + components: + - type: Transform + pos: -116.5,35.5 + parent: 2 + - uid: 30276 + components: + - type: Transform + pos: -116.5,36.5 + parent: 2 + - uid: 30277 + components: + - type: Transform + pos: -116.5,37.5 + parent: 2 + - uid: 30278 + components: + - type: Transform + pos: -116.5,38.5 + parent: 2 + - uid: 30279 + components: + - type: Transform + pos: -116.5,39.5 + parent: 2 + - uid: 30280 + components: + - type: Transform + pos: -116.5,40.5 + parent: 2 + - uid: 30281 + components: + - type: Transform + pos: -116.5,41.5 + parent: 2 + - uid: 30282 + components: + - type: Transform + pos: -116.5,42.5 + parent: 2 + - uid: 30283 + components: + - type: Transform + pos: -116.5,43.5 + parent: 2 + - uid: 30284 + components: + - type: Transform + pos: -116.5,44.5 + parent: 2 + - uid: 30285 + components: + - type: Transform + pos: -116.5,45.5 + parent: 2 + - uid: 30286 + components: + - type: Transform + pos: -116.5,46.5 + parent: 2 + - uid: 30287 + components: + - type: Transform + pos: -116.5,47.5 + parent: 2 + - uid: 30288 + components: + - type: Transform + pos: -118.5,47.5 + parent: 2 + - uid: 30289 + components: + - type: Transform + pos: -119.5,47.5 + parent: 2 + - uid: 30290 + components: + - type: Transform + pos: -120.5,47.5 + parent: 2 + - uid: 30291 + components: + - type: Transform + pos: -117.5,47.5 + parent: 2 + - uid: 30293 + components: + - type: Transform + pos: -121.5,47.5 + parent: 2 + - uid: 30307 + components: + - type: Transform + pos: -129.5,33.5 + parent: 2 + - uid: 30308 + components: + - type: Transform + pos: -130.5,33.5 + parent: 2 + - uid: 30309 + components: + - type: Transform + pos: -131.5,33.5 + parent: 2 + - uid: 30310 + components: + - type: Transform + pos: -132.5,33.5 + parent: 2 + - uid: 30311 + components: + - type: Transform + pos: -133.5,33.5 + parent: 2 + - uid: 30312 + components: + - type: Transform + pos: -134.5,33.5 + parent: 2 + - uid: 30313 + components: + - type: Transform + pos: -135.5,33.5 + parent: 2 + - uid: 30314 + components: + - type: Transform + pos: -129.5,31.5 + parent: 2 + - uid: 30315 + components: + - type: Transform + pos: -129.5,30.5 + parent: 2 + - uid: 30316 + components: + - type: Transform + pos: -129.5,29.5 + parent: 2 + - uid: 30317 + components: + - type: Transform + pos: -129.5,28.5 + parent: 2 + - uid: 30318 + components: + - type: Transform + pos: -129.5,27.5 + parent: 2 + - uid: 30319 + components: + - type: Transform + pos: -130.5,26.5 + parent: 2 + - uid: 30321 + components: + - type: Transform + pos: -128.5,26.5 + parent: 2 + - uid: 30322 + components: + - type: Transform + pos: -127.5,26.5 + parent: 2 + - uid: 30323 + components: + - type: Transform + pos: -126.5,26.5 + parent: 2 + - uid: 30324 + components: + - type: Transform + pos: -125.5,26.5 + parent: 2 + - uid: 30325 + components: + - type: Transform + pos: -124.5,26.5 + parent: 2 + - uid: 30326 + components: + - type: Transform + pos: -123.5,26.5 + parent: 2 + - uid: 30327 + components: + - type: Transform + pos: -122.5,26.5 + parent: 2 + - uid: 30328 + components: + - type: Transform + pos: -121.5,26.5 + parent: 2 + - uid: 30330 + components: + - type: Transform + pos: -121.5,27.5 + parent: 2 + - uid: 30331 + components: + - type: Transform + pos: -121.5,28.5 + parent: 2 + - uid: 30332 + components: + - type: Transform + pos: -121.5,29.5 + parent: 2 + - uid: 30333 + components: + - type: Transform + pos: -121.5,30.5 + parent: 2 + - uid: 30334 + components: + - type: Transform + pos: -121.5,31.5 + parent: 2 + - uid: 30335 + components: + - type: Transform + pos: -121.5,32.5 + parent: 2 + - uid: 30336 + components: + - type: Transform + pos: -119.5,32.5 + parent: 2 + - uid: 30337 + components: + - type: Transform + pos: -118.5,32.5 + parent: 2 + - uid: 30339 + components: + - type: Transform + pos: -118.5,33.5 + parent: 2 + - uid: 30340 + components: + - type: Transform + pos: -118.5,34.5 + parent: 2 + - uid: 30341 + components: + - type: Transform + pos: -117.5,34.5 + parent: 2 + - uid: 30530 + components: + - type: Transform + pos: -5.5,225.5 + parent: 2 + - uid: 30531 + components: + - type: Transform + pos: -5.5,223.5 + parent: 2 + - uid: 30532 + components: + - type: Transform + pos: -4.5,223.5 + parent: 2 + - uid: 30533 + components: + - type: Transform + pos: -3.5,223.5 + parent: 2 + - uid: 30534 + components: + - type: Transform + pos: -2.5,223.5 + parent: 2 + - uid: 30535 + components: + - type: Transform + pos: -1.5,223.5 + parent: 2 + - uid: 30561 + components: + - type: Transform + pos: -118.5,29.5 + parent: 2 + - uid: 30577 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 30578 + components: + - type: Transform + pos: -111.5,27.5 + parent: 2 + - uid: 30579 + components: + - type: Transform + pos: -111.5,28.5 + parent: 2 + - uid: 30580 + components: + - type: Transform + pos: -112.5,28.5 + parent: 2 + - uid: 30581 + components: + - type: Transform + pos: -113.5,28.5 + parent: 2 + - uid: 30582 + components: + - type: Transform + pos: -114.5,28.5 + parent: 2 + - uid: 30583 + components: + - type: Transform + pos: -115.5,28.5 + parent: 2 + - uid: 30584 + components: + - type: Transform + pos: -116.5,28.5 + parent: 2 + - uid: 30585 + components: + - type: Transform + pos: -117.5,28.5 + parent: 2 + - uid: 30586 + components: + - type: Transform + pos: -118.5,28.5 + parent: 2 + - uid: 30587 + components: + - type: Transform + pos: -118.5,30.5 + parent: 2 + - uid: 30588 + components: + - type: Transform + pos: -118.5,31.5 + parent: 2 + - uid: 30638 + components: + - type: Transform + pos: 2.5,224.5 + parent: 2 + - uid: 30648 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 30668 + components: + - type: Transform + pos: 0.5,235.5 + parent: 2 + - uid: 30671 + components: + - type: Transform + pos: 2.5,223.5 + parent: 2 + - uid: 30672 + components: + - type: Transform + pos: 3.5,223.5 + parent: 2 + - uid: 30688 + components: + - type: Transform + pos: 4.5,223.5 + parent: 2 + - uid: 30691 + components: + - type: Transform + pos: 5.5,223.5 + parent: 2 + - uid: 30751 + components: + - type: Transform + pos: -127.5,44.5 + parent: 2 + - uid: 30873 + components: + - type: Transform + pos: 6.5,223.5 + parent: 2 + - uid: 30930 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 30902 + - uid: 30931 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 30902 + - uid: 30932 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 30902 + - uid: 30933 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 30934 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 30902 + - uid: 30935 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 30902 + - uid: 30936 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 30902 + - uid: 30937 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 30902 + - uid: 30938 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 30902 + - uid: 30939 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 30902 + - uid: 30940 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 30902 + - uid: 31095 + components: + - type: Transform + pos: 0.5,227.5 + parent: 2 + - uid: 33072 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 33313 + components: + - type: Transform + pos: -1.5,216.5 + parent: 2 + - uid: 33331 + components: + - type: Transform + pos: -0.5,215.5 + parent: 2 + - uid: 33486 + components: + - type: Transform + pos: -80.5,70.5 + parent: 2 + - uid: 34127 + components: + - type: Transform + pos: -1.5,215.5 + parent: 2 + - uid: 34137 + components: + - type: Transform + pos: -1.5,214.5 + parent: 2 + - uid: 34269 + components: + - type: Transform + pos: -1.5,213.5 + parent: 2 + - uid: 34424 + components: + - type: Transform + pos: -67.5,-3.5 + parent: 2 + - uid: 34425 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 34520 + components: + - type: Transform + pos: -118.5,107.5 + parent: 2 + - uid: 34627 + components: + - type: Transform + pos: 1.5,216.5 + parent: 2 + - uid: 34629 + components: + - type: Transform + pos: 2.5,216.5 + parent: 2 + - uid: 34635 + components: + - type: Transform + pos: 2.5,215.5 + parent: 2 + - uid: 34636 + components: + - type: Transform + pos: 2.5,214.5 + parent: 2 + - uid: 34691 + components: + - type: Transform + pos: 2.5,213.5 + parent: 2 + - uid: 34804 + components: + - type: Transform + pos: -46.5,65.5 + parent: 2 + - uid: 34806 + components: + - type: Transform + pos: -47.5,65.5 + parent: 2 + - uid: 35128 + components: + - type: Transform + pos: -124.5,154.5 + parent: 2 + - uid: 35129 + components: + - type: Transform + pos: -122.5,154.5 + parent: 2 + - uid: 35130 + components: + - type: Transform + pos: -122.5,153.5 + parent: 2 + - uid: 35131 + components: + - type: Transform + pos: -122.5,152.5 + parent: 2 + - uid: 35132 + components: + - type: Transform + pos: -122.5,151.5 + parent: 2 + - uid: 35133 + components: + - type: Transform + pos: -122.5,150.5 + parent: 2 + - uid: 35134 + components: + - type: Transform + pos: -120.5,154.5 + parent: 2 + - uid: 35135 + components: + - type: Transform + pos: -120.5,153.5 + parent: 2 + - uid: 35136 + components: + - type: Transform + pos: -120.5,152.5 + parent: 2 + - uid: 35137 + components: + - type: Transform + pos: -120.5,151.5 + parent: 2 + - uid: 35138 + components: + - type: Transform + pos: -120.5,150.5 + parent: 2 + - uid: 35139 + components: + - type: Transform + pos: -118.5,154.5 + parent: 2 + - uid: 35140 + components: + - type: Transform + pos: -118.5,153.5 + parent: 2 + - uid: 35141 + components: + - type: Transform + pos: -118.5,152.5 + parent: 2 + - uid: 35142 + components: + - type: Transform + pos: -118.5,151.5 + parent: 2 + - uid: 35143 + components: + - type: Transform + pos: -118.5,150.5 + parent: 2 + - uid: 35144 + components: + - type: Transform + pos: -116.5,154.5 + parent: 2 + - uid: 35145 + components: + - type: Transform + pos: -116.5,153.5 + parent: 2 + - uid: 35146 + components: + - type: Transform + pos: -116.5,152.5 + parent: 2 + - uid: 35147 + components: + - type: Transform + pos: -116.5,151.5 + parent: 2 + - uid: 35148 + components: + - type: Transform + pos: -116.5,150.5 + parent: 2 + - uid: 35149 + components: + - type: Transform + pos: -114.5,154.5 + parent: 2 + - uid: 35150 + components: + - type: Transform + pos: -114.5,153.5 + parent: 2 + - uid: 35151 + components: + - type: Transform + pos: -114.5,152.5 + parent: 2 + - uid: 35152 + components: + - type: Transform + pos: -114.5,151.5 + parent: 2 + - uid: 35153 + components: + - type: Transform + pos: -114.5,150.5 + parent: 2 + - uid: 35154 + components: + - type: Transform + pos: -115.5,150.5 + parent: 2 + - uid: 35155 + components: + - type: Transform + pos: -119.5,150.5 + parent: 2 + - uid: 35156 + components: + - type: Transform + pos: -123.5,150.5 + parent: 2 + - uid: 35157 + components: + - type: Transform + pos: -123.5,149.5 + parent: 2 + - uid: 35158 + components: + - type: Transform + pos: -119.5,149.5 + parent: 2 + - uid: 35159 + components: + - type: Transform + pos: -115.5,149.5 + parent: 2 + - uid: 35160 + components: + - type: Transform + pos: -116.5,146.5 + parent: 2 + - uid: 35161 + components: + - type: Transform + pos: -116.5,145.5 + parent: 2 + - uid: 35162 + components: + - type: Transform + pos: -116.5,144.5 + parent: 2 + - uid: 35163 + components: + - type: Transform + pos: -116.5,143.5 + parent: 2 + - uid: 35164 + components: + - type: Transform + pos: -116.5,142.5 + parent: 2 + - uid: 35165 + components: + - type: Transform + pos: -114.5,142.5 + parent: 2 + - uid: 35166 + components: + - type: Transform + pos: -114.5,143.5 + parent: 2 + - uid: 35167 + components: + - type: Transform + pos: -114.5,144.5 + parent: 2 + - uid: 35168 + components: + - type: Transform + pos: -114.5,145.5 + parent: 2 + - uid: 35169 + components: + - type: Transform + pos: -114.5,146.5 + parent: 2 + - uid: 35170 + components: + - type: Transform + pos: -118.5,142.5 + parent: 2 + - uid: 35171 + components: + - type: Transform + pos: -118.5,143.5 + parent: 2 + - uid: 35172 + components: + - type: Transform + pos: -118.5,144.5 + parent: 2 + - uid: 35173 + components: + - type: Transform + pos: -118.5,145.5 + parent: 2 + - uid: 35174 + components: + - type: Transform + pos: -118.5,146.5 + parent: 2 + - uid: 35175 + components: + - type: Transform + pos: -120.5,142.5 + parent: 2 + - uid: 35176 + components: + - type: Transform + pos: -120.5,143.5 + parent: 2 + - uid: 35177 + components: + - type: Transform + pos: -120.5,144.5 + parent: 2 + - uid: 35178 + components: + - type: Transform + pos: -120.5,145.5 + parent: 2 + - uid: 35179 + components: + - type: Transform + pos: -120.5,146.5 + parent: 2 + - uid: 35180 + components: + - type: Transform + pos: -122.5,142.5 + parent: 2 + - uid: 35181 + components: + - type: Transform + pos: -122.5,143.5 + parent: 2 + - uid: 35182 + components: + - type: Transform + pos: -122.5,144.5 + parent: 2 + - uid: 35183 + components: + - type: Transform + pos: -122.5,145.5 + parent: 2 + - uid: 35184 + components: + - type: Transform + pos: -122.5,146.5 + parent: 2 + - uid: 35185 + components: + - type: Transform + pos: -124.5,142.5 + parent: 2 + - uid: 35186 + components: + - type: Transform + pos: -124.5,143.5 + parent: 2 + - uid: 35187 + components: + - type: Transform + pos: -124.5,144.5 + parent: 2 + - uid: 35188 + components: + - type: Transform + pos: -124.5,145.5 + parent: 2 + - uid: 35189 + components: + - type: Transform + pos: -124.5,146.5 + parent: 2 + - uid: 35190 + components: + - type: Transform + pos: -126.5,142.5 + parent: 2 + - uid: 35191 + components: + - type: Transform + pos: -126.5,143.5 + parent: 2 + - uid: 35192 + components: + - type: Transform + pos: -126.5,144.5 + parent: 2 + - uid: 35193 + components: + - type: Transform + pos: -126.5,145.5 + parent: 2 + - uid: 35194 + components: + - type: Transform + pos: -126.5,146.5 + parent: 2 + - uid: 35195 + components: + - type: Transform + pos: -128.5,142.5 + parent: 2 + - uid: 35196 + components: + - type: Transform + pos: -128.5,143.5 + parent: 2 + - uid: 35197 + components: + - type: Transform + pos: -128.5,144.5 + parent: 2 + - uid: 35198 + components: + - type: Transform + pos: -128.5,145.5 + parent: 2 + - uid: 35199 + components: + - type: Transform + pos: -128.5,146.5 + parent: 2 + - uid: 35200 + components: + - type: Transform + pos: -127.5,146.5 + parent: 2 + - uid: 35201 + components: + - type: Transform + pos: -123.5,146.5 + parent: 2 + - uid: 35202 + components: + - type: Transform + pos: -119.5,146.5 + parent: 2 + - uid: 35203 + components: + - type: Transform + pos: -115.5,146.5 + parent: 2 + - uid: 35204 + components: + - type: Transform + pos: -115.5,147.5 + parent: 2 + - uid: 35205 + components: + - type: Transform + pos: -119.5,147.5 + parent: 2 + - uid: 35206 + components: + - type: Transform + pos: -123.5,147.5 + parent: 2 + - uid: 35207 + components: + - type: Transform + pos: -127.5,147.5 + parent: 2 + - uid: 35377 + components: + - type: Transform + pos: -112.5,148.5 + parent: 2 + - uid: 35378 + components: + - type: Transform + pos: -111.5,148.5 + parent: 2 + - uid: 35379 + components: + - type: Transform + pos: -110.5,148.5 + parent: 2 + - uid: 35380 + components: + - type: Transform + pos: -109.5,148.5 + parent: 2 + - uid: 35381 + components: + - type: Transform + pos: -108.5,148.5 + parent: 2 + - uid: 35382 + components: + - type: Transform + pos: -108.5,149.5 + parent: 2 + - uid: 35383 + components: + - type: Transform + pos: -108.5,147.5 + parent: 2 + - uid: 35384 + components: + - type: Transform + pos: -107.5,147.5 + parent: 2 + - uid: 35385 + components: + - type: Transform + pos: -106.5,147.5 + parent: 2 + - uid: 35386 + components: + - type: Transform + pos: -107.5,149.5 + parent: 2 + - uid: 35387 + components: + - type: Transform + pos: -106.5,149.5 + parent: 2 + - uid: 35393 + components: + - type: Transform + pos: -105.5,149.5 + parent: 2 + - uid: 35394 + components: + - type: Transform + pos: -105.5,148.5 + parent: 2 + - uid: 35395 + components: + - type: Transform + pos: -105.5,147.5 + parent: 2 + - uid: 35396 + components: + - type: Transform + pos: -104.5,147.5 + parent: 2 + - uid: 35397 + components: + - type: Transform + pos: -103.5,147.5 + parent: 2 + - uid: 35443 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 + - uid: 35444 + components: + - type: Transform + pos: 68.5,20.5 + parent: 2 + - uid: 35445 + components: + - type: Transform + pos: 67.5,20.5 + parent: 2 + - uid: 35448 + components: + - type: Transform + pos: 67.5,21.5 + parent: 2 + - uid: 35452 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 35453 + components: + - type: Transform + pos: 66.5,21.5 + parent: 2 + - uid: 35454 + components: + - type: Transform + pos: 66.5,22.5 + parent: 2 + - uid: 35455 + components: + - type: Transform + pos: 66.5,23.5 + parent: 2 + - uid: 35456 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 35476 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 35477 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 35519 + components: + - type: Transform + pos: -111.5,24.5 + parent: 2 + - uid: 35520 + components: + - type: Transform + pos: -111.5,25.5 + parent: 2 + - uid: 35521 + components: + - type: Transform + pos: -110.5,24.5 + parent: 2 + - uid: 35522 + components: + - type: Transform + pos: -109.5,24.5 + parent: 2 + - uid: 35523 + components: + - type: Transform + pos: -108.5,24.5 + parent: 2 + - uid: 35524 + components: + - type: Transform + pos: -107.5,24.5 + parent: 2 + - uid: 35525 + components: + - type: Transform + pos: -106.5,24.5 + parent: 2 + - uid: 35526 + components: + - type: Transform + pos: -105.5,24.5 + parent: 2 + - uid: 35527 + components: + - type: Transform + pos: -104.5,24.5 + parent: 2 + - uid: 35528 + components: + - type: Transform + pos: -103.5,24.5 + parent: 2 + - uid: 35529 + components: + - type: Transform + pos: -102.5,24.5 + parent: 2 + - uid: 35530 + components: + - type: Transform + pos: -101.5,24.5 + parent: 2 + - uid: 36323 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 36324 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 36344 + components: + - type: Transform + pos: -0.5,214.5 + parent: 2 + - uid: 37503 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 37573 + components: + - type: Transform + pos: -126.5,53.5 + parent: 2 + - uid: 37574 + components: + - type: Transform + pos: -126.5,54.5 + parent: 2 + - uid: 37575 + components: + - type: Transform + pos: -126.5,55.5 + parent: 2 + - uid: 37713 + components: + - type: Transform + pos: -80.5,72.5 + parent: 2 + - uid: 37721 + components: + - type: Transform + pos: 6.5,81.5 + parent: 2 + - uid: 37774 + components: + - type: Transform + pos: -79.5,70.5 + parent: 2 + - uid: 37906 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 37842 + - uid: 37907 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 37842 + - uid: 37908 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 37842 + - uid: 37909 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 37842 + - uid: 37910 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 37842 + - uid: 37911 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 37842 + - uid: 37912 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 37842 + - uid: 37913 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 37842 + - uid: 37914 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 37842 + - uid: 37920 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 37842 + - uid: 37921 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 37842 + - uid: 38070 + components: + - type: Transform + pos: -77.5,70.5 + parent: 2 + - uid: 38071 + components: + - type: Transform + pos: -80.5,73.5 + parent: 2 + - uid: 39262 + components: + - type: Transform + pos: 88.5,48.5 + parent: 2 + - uid: 39263 + components: + - type: Transform + pos: 88.5,49.5 + parent: 2 + - uid: 39269 + components: + - type: Transform + pos: -74.5,70.5 + parent: 2 + - uid: 43337 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 37842 + - uid: 43339 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 37842 +- proto: CableHVStack + entities: + - uid: 43364 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 43365 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHVStack1 + entities: + - uid: 30500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -139.95871,32.83578 + parent: 2 + - uid: 30501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -137.21326,29.227009 + parent: 2 +- proto: CableHVStack10 + entities: + - uid: 4872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.4480362,216.52219 + parent: 2 +- proto: CableMV + entities: + - uid: 115 + components: + - type: Transform + pos: 69.5,46.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: -30.5,188.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: -30.5,188.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -23.5,176.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: -30.5,187.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: -30.5,187.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 71.5,61.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 71.5,60.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 71.5,59.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: 70.5,58.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 69.5,58.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 56.5,52.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: -128.5,39.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 55.5,52.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -124.5,57.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -125.5,58.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: -9.5,165.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: 86.5,64.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: -128.5,90.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 79.5,32.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: -43.5,80.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: -34.5,107.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: -33.5,104.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: 74.5,70.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: 83.5,45.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: 46.5,56.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -86.5,151.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: -92.5,151.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: 66.5,61.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: 66.5,59.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: 66.5,60.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: 71.5,70.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: 58.5,42.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: 71.5,58.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: -69.5,71.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: -122.5,52.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: 47.5,58.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: -42.5,80.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: -127.5,55.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: -24.5,99.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: -126.5,28.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: -117.5,50.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: -24.5,98.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: 88.5,51.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: -23.5,98.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: -83.5,84.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -65.5,73.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -65.5,72.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: -101.5,28.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: -65.5,71.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: 66.5,62.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: -65.5,70.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 84.5,51.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: 65.5,62.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: -109.5,29.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: -123.5,57.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: -98.5,148.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: 70.5,24.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: 82.5,45.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: 68.5,58.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: 106.5,47.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: -44.5,68.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: -66.5,69.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: -65.5,69.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: 47.5,60.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: 47.5,57.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 12.5,172.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: 85.5,29.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: -82.5,83.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: 73.5,29.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: 70.5,25.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: 70.5,26.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + pos: 75.5,29.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: 76.5,29.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: 77.5,29.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: 80.5,29.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + pos: 84.5,29.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: 87.5,29.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: 88.5,29.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: 88.5,28.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: 88.5,26.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: 88.5,25.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: 88.5,23.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: 88.5,24.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: 88.5,22.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 88.5,21.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: 80.5,45.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: 82.5,60.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: 83.5,60.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: 84.5,60.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: 84.5,59.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: 84.5,58.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: 84.5,57.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: 84.5,56.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: 85.5,56.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: 85.5,55.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: 84.5,53.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: 85.5,53.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: -44.5,83.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: 85.5,54.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: 85.5,60.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: 86.5,61.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: 84.5,64.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: 85.5,64.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: 86.5,63.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: 86.5,62.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -67.5,163.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + pos: 85.5,61.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: 72.5,54.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: 82.5,63.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: -101.5,29.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: 85.5,51.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + pos: 74.5,48.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: 84.5,50.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: 84.5,49.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: 84.5,48.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: 84.5,47.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: 84.5,46.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: 79.5,45.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: 79.5,44.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: 79.5,39.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: 77.5,39.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: 76.5,39.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: 84.5,65.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: 83.5,65.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: 82.5,65.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: 81.5,65.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: 80.5,65.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: 80.5,66.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: 79.5,66.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: 78.5,66.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: 77.5,66.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: 76.5,66.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: 75.5,66.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 74.5,66.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: 73.5,66.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 72.5,66.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: 71.5,66.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: 70.5,66.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: 69.5,66.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: 68.5,66.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: 68.5,65.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: 76.5,40.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: 76.5,42.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: 76.5,43.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: 76.5,44.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: 76.5,45.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: 76.5,46.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: 76.5,47.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: 76.5,48.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: 68.5,64.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: 66.5,58.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: 75.5,48.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: 73.5,48.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: 72.5,48.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: 71.5,48.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + pos: 71.5,51.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: 71.5,52.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: 72.5,52.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: 72.5,53.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: 71.5,54.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + pos: 70.5,54.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: 70.5,55.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: 70.5,56.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 71.5,65.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: 71.5,63.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 71.5,62.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: 76.5,49.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + pos: 76.5,50.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: 76.5,51.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: 64.5,62.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: 63.5,62.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: 77.5,51.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: -101.5,31.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: 55.5,62.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: 67.5,66.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: 54.5,62.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: 54.5,63.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: 54.5,64.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: 54.5,65.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: 54.5,66.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + pos: 55.5,66.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: 56.5,66.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: 57.5,66.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: 58.5,66.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: 59.5,66.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: 60.5,66.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: 61.5,66.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + pos: 62.5,66.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: 63.5,66.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: 64.5,66.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: 65.5,66.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: 66.5,66.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: -101.5,27.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: 75.5,39.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: 74.5,39.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: 73.5,39.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: 72.5,39.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: 68.5,39.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: 67.5,39.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: 8.5,172.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: 41.5,61.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: 42.5,61.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: 43.5,61.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + pos: 44.5,61.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: 45.5,61.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: 46.5,61.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: 47.5,61.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: 48.5,61.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 49.5,61.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: 50.5,61.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: 51.5,61.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: 52.5,61.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: 53.5,61.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: 53.5,62.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: 12.5,173.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: 58.5,51.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + pos: 71.5,38.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + pos: 71.5,37.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + pos: 80.5,38.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: 81.5,39.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + pos: 82.5,39.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: 86.5,39.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + pos: 87.5,39.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: 80.5,39.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: 87.5,40.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: 87.5,41.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: -44.5,82.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: 87.5,42.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: 87.5,43.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 87.5,44.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: 87.5,45.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: 87.5,46.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: 87.5,47.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: 80.5,37.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: 80.5,36.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: 80.5,35.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: 80.5,34.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: 79.5,34.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: 79.5,33.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: 87.5,48.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 88.5,48.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + pos: 89.5,48.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: 90.5,48.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + pos: 91.5,48.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: 92.5,48.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: 92.5,49.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: 93.5,48.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: 94.5,48.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + pos: 95.5,48.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: 96.5,48.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + pos: 97.5,48.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: 98.5,48.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + pos: 99.5,48.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: 100.5,48.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: 101.5,48.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: 102.5,48.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: 103.5,48.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: 104.5,48.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 105.5,48.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + pos: 106.5,48.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + pos: 106.5,46.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: 106.5,45.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: 106.5,44.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: 89.5,49.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + pos: 89.5,50.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: 89.5,51.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: 89.5,52.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + pos: 89.5,53.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + pos: 89.5,54.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 89.5,55.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: 89.5,56.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: 89.5,57.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: 89.5,58.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: 90.5,58.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: 91.5,58.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: 92.5,58.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: 93.5,58.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: 94.5,58.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: 95.5,58.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: 96.5,58.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: 97.5,58.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: 98.5,58.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: 99.5,58.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: 100.5,58.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: 101.5,58.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: 102.5,58.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: 103.5,58.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: 104.5,58.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: 105.5,58.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: 106.5,58.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 106.5,59.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: 106.5,60.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: 106.5,61.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: 106.5,62.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + pos: 106.5,63.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: 47.5,59.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: 47.5,56.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 49.5,62.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + pos: 75.5,46.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + pos: 74.5,46.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 73.5,46.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + pos: 72.5,46.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + pos: 71.5,46.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: 70.5,37.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: 69.5,37.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -44.5,81.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: 67.5,58.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + pos: -44.5,80.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -125.5,57.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: -44.5,79.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: -45.5,68.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: -72.5,95.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: -72.5,96.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: -73.5,95.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: -19.5,180.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: -74.5,95.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: -69.5,72.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: -44.5,76.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: -83.5,85.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: -75.5,95.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: 68.5,70.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + pos: 65.5,69.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: -61.5,133.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: -61.5,132.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: -61.5,131.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: -61.5,130.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: -60.5,130.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + pos: -59.5,130.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: -58.5,130.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + pos: -57.5,130.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: -56.5,130.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: -55.5,130.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: -55.5,131.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + pos: -55.5,132.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: -104.5,97.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: 25.5,198.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: 20.5,200.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: 6.5,194.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: 76.5,70.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: -102.5,146.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: -44.5,78.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 8844 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + pos: 23.5,183.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: -5.5,173.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + pos: -126.5,110.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + pos: -92.5,33.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + pos: 77.5,69.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: 78.5,69.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + pos: -127.5,54.5 + parent: 2 + - uid: 10529 + components: + - type: Transform + pos: -130.5,39.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: -131.5,40.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + pos: -131.5,41.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: -127.5,58.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + pos: -126.5,109.5 + parent: 2 + - uid: 10932 + components: + - type: Transform + pos: -121.5,103.5 + parent: 2 + - uid: 10939 + components: + - type: Transform + pos: -122.5,107.5 + parent: 2 + - uid: 10940 + components: + - type: Transform + pos: -126.5,108.5 + parent: 2 + - uid: 10941 + components: + - type: Transform + pos: -121.5,104.5 + parent: 2 + - uid: 11037 + components: + - type: Transform + pos: -126.5,107.5 + parent: 2 + - uid: 11045 + components: + - type: Transform + pos: -127.5,89.5 + parent: 2 + - uid: 11077 + components: + - type: Transform + pos: -124.5,26.5 + parent: 2 + - uid: 11087 + components: + - type: Transform + pos: -8.5,165.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + pos: -26.5,99.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: -27.5,99.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + pos: -25.5,99.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: -28.5,99.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + pos: -127.5,39.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + pos: -34.5,86.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + pos: -34.5,84.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + pos: -34.5,87.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + pos: -34.5,85.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + pos: -36.5,83.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + pos: -35.5,85.5 + parent: 2 + - uid: 11338 + components: + - type: Transform + pos: -36.5,84.5 + parent: 2 + - uid: 11347 + components: + - type: Transform + pos: -36.5,77.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + pos: -36.5,76.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + pos: -36.5,75.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + pos: -36.5,82.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: -36.5,81.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + pos: -36.5,80.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: -36.5,79.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: -36.5,78.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + pos: -44.5,75.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + pos: -44.5,77.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + pos: -44.5,74.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + pos: -45.5,77.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: -46.5,87.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + pos: -36.5,87.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: -46.5,77.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: -36.5,85.5 + parent: 2 + - uid: 11474 + components: + - type: Transform + pos: -36.5,86.5 + parent: 2 + - uid: 11543 + components: + - type: Transform + pos: -128.5,89.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: -114.5,104.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: -70.5,100.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: -72.5,97.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: -72.5,98.5 + parent: 2 + - uid: 11738 + components: + - type: Transform + pos: -72.5,100.5 + parent: 2 + - uid: 11740 + components: + - type: Transform + pos: -71.5,100.5 + parent: 2 + - uid: 11741 + components: + - type: Transform + pos: -72.5,99.5 + parent: 2 + - uid: 11775 + components: + - type: Transform + pos: -44.5,69.5 + parent: 2 + - uid: 11776 + components: + - type: Transform + pos: -44.5,70.5 + parent: 2 + - uid: 11777 + components: + - type: Transform + pos: -44.5,71.5 + parent: 2 + - uid: 11778 + components: + - type: Transform + pos: -44.5,72.5 + parent: 2 + - uid: 11779 + components: + - type: Transform + pos: -44.5,73.5 + parent: 2 + - uid: 11780 + components: + - type: Transform + pos: -45.5,73.5 + parent: 2 + - uid: 11781 + components: + - type: Transform + pos: -46.5,73.5 + parent: 2 + - uid: 11951 + components: + - type: Transform + pos: -124.5,107.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: 86.5,51.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + pos: -127.5,90.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + pos: -118.5,102.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + pos: -120.5,102.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + pos: -125.5,102.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + pos: -127.5,102.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + pos: -118.5,103.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + pos: -119.5,102.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + pos: -124.5,102.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + pos: -126.5,102.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + pos: -122.5,102.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + pos: -123.5,102.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + pos: -128.5,103.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: -121.5,102.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + pos: -123.5,101.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + pos: -128.5,102.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + pos: -121.5,105.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + pos: -4.5,4.5 + parent: 13386 + - uid: 12661 + components: + - type: Transform + pos: -4.5,3.5 + parent: 13386 + - uid: 12794 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: -101.5,32.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: -89.5,95.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + pos: -88.5,95.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + pos: -87.5,95.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + pos: -86.5,95.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + pos: -90.5,95.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + pos: -91.5,95.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + pos: -92.5,95.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + pos: -92.5,96.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + pos: -92.5,97.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: -92.5,98.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + pos: -92.5,99.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: -101.5,33.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + pos: -119.5,108.5 + parent: 2 + - uid: 13410 + components: + - type: Transform + pos: -120.5,108.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: -39.5,104.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + pos: -37.5,104.5 + parent: 2 + - uid: 13579 + components: + - type: Transform + pos: -35.5,104.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + pos: -31.5,104.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + pos: -130.5,40.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: -38.5,104.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + pos: -34.5,104.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + pos: -34.5,98.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: -35.5,98.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + pos: -36.5,104.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + pos: -29.5,103.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: -4.5,68.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + pos: -29.5,102.5 + parent: 2 + - uid: 13945 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: -127.5,53.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + pos: -7.5,166.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: -6.5,166.5 + parent: 2 + - uid: 15055 + components: + - type: Transform + pos: -47.5,103.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + pos: -47.5,102.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + pos: -47.5,104.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + pos: -47.5,105.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + pos: -93.5,99.5 + parent: 2 + - uid: 15377 + components: + - type: Transform + pos: -94.5,99.5 + parent: 2 + - uid: 15465 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: -114.5,103.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: -115.5,103.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + pos: -116.5,103.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: -117.5,103.5 + parent: 2 + - uid: 16165 + components: + - type: Transform + pos: 2.5,78.5 + parent: 2 + - uid: 16166 + components: + - type: Transform + pos: 2.5,77.5 + parent: 2 + - uid: 16167 + components: + - type: Transform + pos: 2.5,76.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + pos: 2.5,75.5 + parent: 2 + - uid: 16169 + components: + - type: Transform + pos: 2.5,74.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 16171 + components: + - type: Transform + pos: 3.5,73.5 + parent: 2 + - uid: 16172 + components: + - type: Transform + pos: 4.5,73.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + pos: 2.5,79.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + pos: 2.5,80.5 + parent: 2 + - uid: 16175 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 16176 + components: + - type: Transform + pos: 2.5,82.5 + parent: 2 + - uid: 16177 + components: + - type: Transform + pos: 2.5,83.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + pos: 2.5,84.5 + parent: 2 + - uid: 16179 + components: + - type: Transform + pos: 2.5,85.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + pos: 2.5,86.5 + parent: 2 + - uid: 16181 + components: + - type: Transform + pos: 2.5,87.5 + parent: 2 + - uid: 16182 + components: + - type: Transform + pos: 2.5,88.5 + parent: 2 + - uid: 16183 + components: + - type: Transform + pos: 1.5,88.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + pos: 0.5,88.5 + parent: 2 + - uid: 16185 + components: + - type: Transform + pos: -0.5,88.5 + parent: 2 + - uid: 16186 + components: + - type: Transform + pos: -1.5,88.5 + parent: 2 + - uid: 16187 + components: + - type: Transform + pos: -2.5,88.5 + parent: 2 + - uid: 16188 + components: + - type: Transform + pos: -3.5,88.5 + parent: 2 + - uid: 16189 + components: + - type: Transform + pos: -4.5,88.5 + parent: 2 + - uid: 16190 + components: + - type: Transform + pos: -5.5,88.5 + parent: 2 + - uid: 16191 + components: + - type: Transform + pos: -6.5,88.5 + parent: 2 + - uid: 16192 + components: + - type: Transform + pos: -7.5,88.5 + parent: 2 + - uid: 16193 + components: + - type: Transform + pos: -8.5,88.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + pos: -9.5,88.5 + parent: 2 + - uid: 16195 + components: + - type: Transform + pos: -10.5,88.5 + parent: 2 + - uid: 16196 + components: + - type: Transform + pos: -11.5,88.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + pos: -12.5,88.5 + parent: 2 + - uid: 16198 + components: + - type: Transform + pos: -13.5,88.5 + parent: 2 + - uid: 16199 + components: + - type: Transform + pos: -13.5,87.5 + parent: 2 + - uid: 16200 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - uid: 16201 + components: + - type: Transform + pos: -6.5,87.5 + parent: 2 + - uid: 16202 + components: + - type: Transform + pos: -6.5,86.5 + parent: 2 + - uid: 16203 + components: + - type: Transform + pos: -6.5,85.5 + parent: 2 + - uid: 16204 + components: + - type: Transform + pos: -6.5,84.5 + parent: 2 + - uid: 16205 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 16206 + components: + - type: Transform + pos: -6.5,82.5 + parent: 2 + - uid: 16207 + components: + - type: Transform + pos: -6.5,81.5 + parent: 2 + - uid: 16208 + components: + - type: Transform + pos: -6.5,80.5 + parent: 2 + - uid: 16209 + components: + - type: Transform + pos: -6.5,79.5 + parent: 2 + - uid: 16210 + components: + - type: Transform + pos: -5.5,79.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + pos: -4.5,79.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - uid: 16213 + components: + - type: Transform + pos: -6.5,75.5 + parent: 2 + - uid: 16214 + components: + - type: Transform + pos: -6.5,76.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: -6.5,77.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + pos: -6.5,78.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + pos: -7.5,74.5 + parent: 2 + - uid: 16218 + components: + - type: Transform + pos: -8.5,74.5 + parent: 2 + - uid: 16219 + components: + - type: Transform + pos: -9.5,74.5 + parent: 2 + - uid: 16220 + components: + - type: Transform + pos: -10.5,74.5 + parent: 2 + - uid: 16221 + components: + - type: Transform + pos: -11.5,74.5 + parent: 2 + - uid: 16222 + components: + - type: Transform + pos: -12.5,74.5 + parent: 2 + - uid: 16223 + components: + - type: Transform + pos: -13.5,74.5 + parent: 2 + - uid: 16224 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - uid: 16225 + components: + - type: Transform + pos: -15.5,74.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: -16.5,74.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + pos: -17.5,64.5 + parent: 2 + - uid: 16228 + components: + - type: Transform + pos: -16.5,64.5 + parent: 2 + - uid: 16229 + components: + - type: Transform + pos: -16.5,65.5 + parent: 2 + - uid: 16230 + components: + - type: Transform + pos: -16.5,66.5 + parent: 2 + - uid: 16231 + components: + - type: Transform + pos: -16.5,67.5 + parent: 2 + - uid: 16232 + components: + - type: Transform + pos: -16.5,68.5 + parent: 2 + - uid: 16233 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 + - uid: 16234 + components: + - type: Transform + pos: -16.5,70.5 + parent: 2 + - uid: 16235 + components: + - type: Transform + pos: -16.5,71.5 + parent: 2 + - uid: 16236 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + pos: -16.5,73.5 + parent: 2 + - uid: 16238 + components: + - type: Transform + pos: -18.5,64.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + pos: -17.5,74.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + pos: -18.5,74.5 + parent: 2 + - uid: 16241 + components: + - type: Transform + pos: -19.5,74.5 + parent: 2 + - uid: 16242 + components: + - type: Transform + pos: -20.5,74.5 + parent: 2 + - uid: 16243 + components: + - type: Transform + pos: -21.5,74.5 + parent: 2 + - uid: 16244 + components: + - type: Transform + pos: -22.5,74.5 + parent: 2 + - uid: 16245 + components: + - type: Transform + pos: -22.5,73.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + pos: -22.5,72.5 + parent: 2 + - uid: 16247 + components: + - type: Transform + pos: -22.5,71.5 + parent: 2 + - uid: 16248 + components: + - type: Transform + pos: -23.5,71.5 + parent: 2 + - uid: 16249 + components: + - type: Transform + pos: -24.5,71.5 + parent: 2 + - uid: 16250 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + pos: -26.5,71.5 + parent: 2 + - uid: 16252 + components: + - type: Transform + pos: -26.5,72.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + pos: -78.5,95.5 + parent: 2 + - uid: 16453 + components: + - type: Transform + pos: -10.5,73.5 + parent: 2 + - uid: 16454 + components: + - type: Transform + pos: -10.5,72.5 + parent: 2 + - uid: 16455 + components: + - type: Transform + pos: -10.5,71.5 + parent: 2 + - uid: 16456 + components: + - type: Transform + pos: -10.5,70.5 + parent: 2 + - uid: 16457 + components: + - type: Transform + pos: -10.5,69.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + pos: -10.5,68.5 + parent: 2 + - uid: 16459 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - uid: 16460 + components: + - type: Transform + pos: -8.5,68.5 + parent: 2 + - uid: 16461 + components: + - type: Transform + pos: -7.5,68.5 + parent: 2 + - uid: 16462 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 16466 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 16467 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 16551 + components: + - type: Transform + pos: 87.5,51.5 + parent: 2 + - uid: 16575 + components: + - type: Transform + pos: -32.5,104.5 + parent: 2 + - uid: 16584 + components: + - type: Transform + pos: -39.5,99.5 + parent: 2 + - uid: 16642 + components: + - type: Transform + pos: -34.5,76.5 + parent: 2 + - uid: 16643 + components: + - type: Transform + pos: -47.5,101.5 + parent: 2 + - uid: 16644 + components: + - type: Transform + pos: -46.5,101.5 + parent: 2 + - uid: 16645 + components: + - type: Transform + pos: -45.5,101.5 + parent: 2 + - uid: 16646 + components: + - type: Transform + pos: -45.5,102.5 + parent: 2 + - uid: 16647 + components: + - type: Transform + pos: -47.5,100.5 + parent: 2 + - uid: 16648 + components: + - type: Transform + pos: -47.5,99.5 + parent: 2 + - uid: 16649 + components: + - type: Transform + pos: -46.5,99.5 + parent: 2 + - uid: 16650 + components: + - type: Transform + pos: -45.5,99.5 + parent: 2 + - uid: 16651 + components: + - type: Transform + pos: -44.5,99.5 + parent: 2 + - uid: 16652 + components: + - type: Transform + pos: -43.5,99.5 + parent: 2 + - uid: 16653 + components: + - type: Transform + pos: -42.5,99.5 + parent: 2 + - uid: 16654 + components: + - type: Transform + pos: -41.5,99.5 + parent: 2 + - uid: 16655 + components: + - type: Transform + pos: -40.5,99.5 + parent: 2 + - uid: 16656 + components: + - type: Transform + pos: -34.5,106.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + pos: -38.5,99.5 + parent: 2 + - uid: 16658 + components: + - type: Transform + pos: -37.5,99.5 + parent: 2 + - uid: 16659 + components: + - type: Transform + pos: -36.5,99.5 + parent: 2 + - uid: 16666 + components: + - type: Transform + pos: -40.5,100.5 + parent: 2 + - uid: 16667 + components: + - type: Transform + pos: -40.5,101.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: -40.5,102.5 + parent: 2 + - uid: 16669 + components: + - type: Transform + pos: -40.5,103.5 + parent: 2 + - uid: 16670 + components: + - type: Transform + pos: -40.5,104.5 + parent: 2 + - uid: 16671 + components: + - type: Transform + pos: -40.5,105.5 + parent: 2 + - uid: 16673 + components: + - type: Transform + pos: -40.5,106.5 + parent: 2 + - uid: 16674 + components: + - type: Transform + pos: -39.5,106.5 + parent: 2 + - uid: 16675 + components: + - type: Transform + pos: -38.5,106.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + pos: -37.5,106.5 + parent: 2 + - uid: 16677 + components: + - type: Transform + pos: -36.5,106.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + pos: -35.5,106.5 + parent: 2 + - uid: 16714 + components: + - type: Transform + pos: -22.5,75.5 + parent: 2 + - uid: 16715 + components: + - type: Transform + pos: -22.5,76.5 + parent: 2 + - uid: 16716 + components: + - type: Transform + pos: -23.5,76.5 + parent: 2 + - uid: 16717 + components: + - type: Transform + pos: -24.5,76.5 + parent: 2 + - uid: 16718 + components: + - type: Transform + pos: -25.5,76.5 + parent: 2 + - uid: 16719 + components: + - type: Transform + pos: -26.5,76.5 + parent: 2 + - uid: 16720 + components: + - type: Transform + pos: -26.5,74.5 + parent: 2 + - uid: 16721 + components: + - type: Transform + pos: -26.5,75.5 + parent: 2 + - uid: 16722 + components: + - type: Transform + pos: -27.5,74.5 + parent: 2 + - uid: 16723 + components: + - type: Transform + pos: -28.5,74.5 + parent: 2 + - uid: 16730 + components: + - type: Transform + pos: -83.5,79.5 + parent: 2 + - uid: 16731 + components: + - type: Transform + pos: -83.5,78.5 + parent: 2 + - uid: 16732 + components: + - type: Transform + pos: -83.5,77.5 + parent: 2 + - uid: 16733 + components: + - type: Transform + pos: -82.5,77.5 + parent: 2 + - uid: 16734 + components: + - type: Transform + pos: -81.5,77.5 + parent: 2 + - uid: 16735 + components: + - type: Transform + pos: -80.5,77.5 + parent: 2 + - uid: 16736 + components: + - type: Transform + pos: -80.5,76.5 + parent: 2 + - uid: 16737 + components: + - type: Transform + pos: -80.5,75.5 + parent: 2 + - uid: 16738 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - uid: 16739 + components: + - type: Transform + pos: -80.5,73.5 + parent: 2 + - uid: 16740 + components: + - type: Transform + pos: -80.5,72.5 + parent: 2 + - uid: 16741 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 + - uid: 16742 + components: + - type: Transform + pos: -80.5,70.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + pos: -79.5,70.5 + parent: 2 + - uid: 16744 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + pos: -77.5,70.5 + parent: 2 + - uid: 16746 + components: + - type: Transform + pos: -76.5,70.5 + parent: 2 + - uid: 16747 + components: + - type: Transform + pos: -75.5,70.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + pos: -74.5,70.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + pos: -72.5,70.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + pos: -71.5,70.5 + parent: 2 + - uid: 16752 + components: + - type: Transform + pos: -70.5,70.5 + parent: 2 + - uid: 16753 + components: + - type: Transform + pos: -69.5,70.5 + parent: 2 + - uid: 16762 + components: + - type: Transform + pos: -70.5,74.5 + parent: 2 + - uid: 16766 + components: + - type: Transform + pos: -68.5,74.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + pos: -69.5,74.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + pos: -70.5,75.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + pos: -70.5,76.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + pos: -80.5,78.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + pos: -80.5,79.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + pos: -80.5,80.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + pos: -80.5,81.5 + parent: 2 + - uid: 16775 + components: + - type: Transform + pos: -80.5,82.5 + parent: 2 + - uid: 16776 + components: + - type: Transform + pos: -80.5,83.5 + parent: 2 + - uid: 16777 + components: + - type: Transform + pos: -80.5,84.5 + parent: 2 + - uid: 16778 + components: + - type: Transform + pos: -80.5,85.5 + parent: 2 + - uid: 16779 + components: + - type: Transform + pos: -80.5,86.5 + parent: 2 + - uid: 16780 + components: + - type: Transform + pos: -80.5,87.5 + parent: 2 + - uid: 16781 + components: + - type: Transform + pos: -80.5,88.5 + parent: 2 + - uid: 16783 + components: + - type: Transform + pos: -79.5,95.5 + parent: 2 + - uid: 16788 + components: + - type: Transform + pos: -80.5,89.5 + parent: 2 + - uid: 16789 + components: + - type: Transform + pos: -80.5,90.5 + parent: 2 + - uid: 16790 + components: + - type: Transform + pos: -80.5,91.5 + parent: 2 + - uid: 16792 + components: + - type: Transform + pos: -80.5,92.5 + parent: 2 + - uid: 16793 + components: + - type: Transform + pos: -80.5,93.5 + parent: 2 + - uid: 16794 + components: + - type: Transform + pos: -80.5,94.5 + parent: 2 + - uid: 16795 + components: + - type: Transform + pos: -80.5,95.5 + parent: 2 + - uid: 16796 + components: + - type: Transform + pos: -77.5,95.5 + parent: 2 + - uid: 16797 + components: + - type: Transform + pos: -77.5,96.5 + parent: 2 + - uid: 16798 + components: + - type: Transform + pos: -77.5,97.5 + parent: 2 + - uid: 16799 + components: + - type: Transform + pos: -77.5,98.5 + parent: 2 + - uid: 16800 + components: + - type: Transform + pos: -77.5,99.5 + parent: 2 + - uid: 16801 + components: + - type: Transform + pos: -77.5,100.5 + parent: 2 + - uid: 16802 + components: + - type: Transform + pos: -78.5,100.5 + parent: 2 + - uid: 16803 + components: + - type: Transform + pos: -79.5,100.5 + parent: 2 + - uid: 16804 + components: + - type: Transform + pos: -79.5,101.5 + parent: 2 + - uid: 16814 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 13386 + - uid: 16815 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - uid: 16816 + components: + - type: Transform + pos: -66.5,74.5 + parent: 2 + - uid: 16817 + components: + - type: Transform + pos: -65.5,74.5 + parent: 2 + - uid: 16818 + components: + - type: Transform + pos: -64.5,74.5 + parent: 2 + - uid: 16819 + components: + - type: Transform + pos: -63.5,74.5 + parent: 2 + - uid: 16820 + components: + - type: Transform + pos: -62.5,74.5 + parent: 2 + - uid: 16821 + components: + - type: Transform + pos: -61.5,74.5 + parent: 2 + - uid: 16822 + components: + - type: Transform + pos: -60.5,74.5 + parent: 2 + - uid: 16823 + components: + - type: Transform + pos: -59.5,74.5 + parent: 2 + - uid: 16824 + components: + - type: Transform + pos: -58.5,74.5 + parent: 2 + - uid: 16825 + components: + - type: Transform + pos: -57.5,74.5 + parent: 2 + - uid: 16826 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 16827 + components: + - type: Transform + pos: -56.5,75.5 + parent: 2 + - uid: 16828 + components: + - type: Transform + pos: -55.5,75.5 + parent: 2 + - uid: 16829 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 16830 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 16831 + components: + - type: Transform + pos: -53.5,74.5 + parent: 2 + - uid: 16832 + components: + - type: Transform + pos: -52.5,74.5 + parent: 2 + - uid: 16833 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 13386 + - uid: 16834 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 13386 + - uid: 16835 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 13386 + - uid: 16836 + components: + - type: Transform + pos: -57.5,76.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + pos: -57.5,77.5 + parent: 2 + - uid: 16838 + components: + - type: Transform + pos: -57.5,78.5 + parent: 2 + - uid: 16839 + components: + - type: Transform + pos: -57.5,79.5 + parent: 2 + - uid: 16840 + components: + - type: Transform + pos: -57.5,80.5 + parent: 2 + - uid: 16841 + components: + - type: Transform + pos: -57.5,81.5 + parent: 2 + - uid: 16842 + components: + - type: Transform + pos: -57.5,82.5 + parent: 2 + - uid: 16843 + components: + - type: Transform + pos: -57.5,83.5 + parent: 2 + - uid: 16844 + components: + - type: Transform + pos: -57.5,84.5 + parent: 2 + - uid: 16845 + components: + - type: Transform + pos: -57.5,85.5 + parent: 2 + - uid: 16846 + components: + - type: Transform + pos: -57.5,86.5 + parent: 2 + - uid: 16847 + components: + - type: Transform + pos: -57.5,87.5 + parent: 2 + - uid: 16848 + components: + - type: Transform + pos: -57.5,88.5 + parent: 2 + - uid: 16849 + components: + - type: Transform + pos: -57.5,89.5 + parent: 2 + - uid: 16850 + components: + - type: Transform + pos: -57.5,90.5 + parent: 2 + - uid: 16851 + components: + - type: Transform + pos: -56.5,90.5 + parent: 2 + - uid: 16852 + components: + - type: Transform + pos: -55.5,90.5 + parent: 2 + - uid: 16853 + components: + - type: Transform + pos: -55.5,91.5 + parent: 2 + - uid: 16854 + components: + - type: Transform + pos: -55.5,92.5 + parent: 2 + - uid: 16855 + components: + - type: Transform + pos: -58.5,81.5 + parent: 2 + - uid: 16856 + components: + - type: Transform + pos: -59.5,81.5 + parent: 2 + - uid: 16865 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 13386 + - uid: 16866 + components: + - type: Transform + pos: -58.5,73.5 + parent: 2 + - uid: 16867 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 + - uid: 16868 + components: + - type: Transform + pos: -58.5,71.5 + parent: 2 + - uid: 16869 + components: + - type: Transform + pos: -58.5,70.5 + parent: 2 + - uid: 16870 + components: + - type: Transform + pos: -58.5,69.5 + parent: 2 + - uid: 16871 + components: + - type: Transform + pos: -58.5,68.5 + parent: 2 + - uid: 16872 + components: + - type: Transform + pos: -58.5,67.5 + parent: 2 + - uid: 16873 + components: + - type: Transform + pos: -58.5,66.5 + parent: 2 + - uid: 16874 + components: + - type: Transform + pos: -57.5,66.5 + parent: 2 + - uid: 16875 + components: + - type: Transform + pos: -56.5,66.5 + parent: 2 + - uid: 16876 + components: + - type: Transform + pos: -55.5,66.5 + parent: 2 + - uid: 16954 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 13386 + - uid: 16955 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 13386 + - uid: 16956 + components: + - type: Transform + pos: -0.5,0.5 + parent: 13386 + - uid: 16957 + components: + - type: Transform + pos: -1.5,0.5 + parent: 13386 + - uid: 16958 + components: + - type: Transform + pos: -2.5,0.5 + parent: 13386 + - uid: 16959 + components: + - type: Transform + pos: -3.5,0.5 + parent: 13386 + - uid: 16960 + components: + - type: Transform + pos: -4.5,0.5 + parent: 13386 + - uid: 16961 + components: + - type: Transform + pos: -4.5,1.5 + parent: 13386 + - uid: 16962 + components: + - type: Transform + pos: -4.5,2.5 + parent: 13386 + - uid: 16965 + components: + - type: Transform + pos: -4.5,5.5 + parent: 13386 + - uid: 17038 + components: + - type: Transform + pos: -56.5,86.5 + parent: 2 + - uid: 17039 + components: + - type: Transform + pos: -55.5,86.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + pos: -23.5,77.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + pos: -23.5,78.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + pos: -23.5,79.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + pos: -23.5,80.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + pos: -23.5,81.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + pos: -23.5,82.5 + parent: 2 + - uid: 17089 + components: + - type: Transform + pos: -23.5,83.5 + parent: 2 + - uid: 17090 + components: + - type: Transform + pos: -23.5,84.5 + parent: 2 + - uid: 17091 + components: + - type: Transform + pos: -23.5,85.5 + parent: 2 + - uid: 17092 + components: + - type: Transform + pos: -23.5,86.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + pos: -25.5,86.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + pos: -13.5,89.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + pos: -14.5,89.5 + parent: 2 + - uid: 17174 + components: + - type: Transform + pos: -84.5,77.5 + parent: 2 + - uid: 17176 + components: + - type: Transform + pos: -84.5,78.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + pos: -34.5,79.5 + parent: 2 + - uid: 17239 + components: + - type: Transform + pos: -73.5,70.5 + parent: 2 + - uid: 17278 + components: + - type: Transform + pos: -44.5,86.5 + parent: 2 + - uid: 17282 + components: + - type: Transform + pos: -69.5,73.5 + parent: 2 + - uid: 17299 + components: + - type: Transform + pos: -44.5,87.5 + parent: 2 + - uid: 17300 + components: + - type: Transform + pos: -121.5,106.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + pos: -45.5,85.5 + parent: 2 + - uid: 17322 + components: + - type: Transform + pos: -34.5,75.5 + parent: 2 + - uid: 17341 + components: + - type: Transform + pos: -87.5,156.5 + parent: 2 + - uid: 17355 + components: + - type: Transform + pos: -46.5,84.5 + parent: 2 + - uid: 17366 + components: + - type: Transform + pos: -46.5,86.5 + parent: 2 + - uid: 17374 + components: + - type: Transform + pos: -101.5,30.5 + parent: 2 + - uid: 17381 + components: + - type: Transform + pos: -46.5,85.5 + parent: 2 + - uid: 17408 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 17418 + components: + - type: Transform + pos: -15.5,165.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + pos: -23.5,177.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: 68.5,46.5 + parent: 2 + - uid: 17532 + components: + - type: Transform + pos: -118.5,100.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + pos: -46.5,76.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + pos: -118.5,99.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + pos: -46.5,75.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + pos: -12.5,165.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: -40.5,72.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + pos: -46.5,78.5 + parent: 2 + - uid: 17926 + components: + - type: Transform + pos: -10.5,165.5 + parent: 2 + - uid: 18012 + components: + - type: Transform + pos: -128.5,92.5 + parent: 2 + - uid: 18015 + components: + - type: Transform + pos: -128.5,91.5 + parent: 2 + - uid: 18175 + components: + - type: Transform + pos: -16.5,166.5 + parent: 2 + - uid: 18195 + components: + - type: Transform + pos: -125.5,107.5 + parent: 2 + - uid: 18241 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 18737 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + pos: -124.5,19.5 + parent: 2 + - uid: 19020 + components: + - type: Transform + pos: -128.5,17.5 + parent: 2 + - uid: 19024 + components: + - type: Transform + pos: -124.5,22.5 + parent: 2 + - uid: 19031 + components: + - type: Transform + pos: -85.5,95.5 + parent: 2 + - uid: 19041 + components: + - type: Transform + pos: -121.5,30.5 + parent: 2 + - uid: 19113 + components: + - type: Transform + pos: -121.5,45.5 + parent: 2 + - uid: 19488 + components: + - type: Transform + pos: -35.5,99.5 + parent: 2 + - uid: 20030 + components: + - type: Transform + pos: 69.5,70.5 + parent: 2 + - uid: 20049 + components: + - type: Transform + pos: -35.5,77.5 + parent: 2 + - uid: 20050 + components: + - type: Transform + pos: -34.5,77.5 + parent: 2 + - uid: 20051 + components: + - type: Transform + pos: -34.5,78.5 + parent: 2 + - uid: 20057 + components: + - type: Transform + pos: 77.5,70.5 + parent: 2 + - uid: 20062 + components: + - type: Transform + pos: 67.5,70.5 + parent: 2 + - uid: 20063 + components: + - type: Transform + pos: 66.5,70.5 + parent: 2 + - uid: 20064 + components: + - type: Transform + pos: 64.5,69.5 + parent: 2 + - uid: 20065 + components: + - type: Transform + pos: 65.5,70.5 + parent: 2 + - uid: 20067 + components: + - type: Transform + pos: 75.5,70.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + pos: -95.5,99.5 + parent: 2 + - uid: 20328 + components: + - type: Transform + pos: -96.5,99.5 + parent: 2 + - uid: 20334 + components: + - type: Transform + pos: -43.5,73.5 + parent: 2 + - uid: 20335 + components: + - type: Transform + pos: -42.5,73.5 + parent: 2 + - uid: 20336 + components: + - type: Transform + pos: -41.5,73.5 + parent: 2 + - uid: 20337 + components: + - type: Transform + pos: -40.5,73.5 + parent: 2 + - uid: 20338 + components: + - type: Transform + pos: -39.5,73.5 + parent: 2 + - uid: 20339 + components: + - type: Transform + pos: -38.5,73.5 + parent: 2 + - uid: 20340 + components: + - type: Transform + pos: -37.5,73.5 + parent: 2 + - uid: 20341 + components: + - type: Transform + pos: -36.5,73.5 + parent: 2 + - uid: 20342 + components: + - type: Transform + pos: -36.5,72.5 + parent: 2 + - uid: 20343 + components: + - type: Transform + pos: -36.5,71.5 + parent: 2 + - uid: 20351 + components: + - type: Transform + pos: -42.5,80.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + pos: 72.5,70.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + pos: 73.5,70.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + pos: -33.5,98.5 + parent: 2 + - uid: 20455 + components: + - type: Transform + pos: 70.5,70.5 + parent: 2 + - uid: 20574 + components: + - type: Transform + pos: -44.5,85.5 + parent: 2 + - uid: 20576 + components: + - type: Transform + pos: -44.5,84.5 + parent: 2 + - uid: 20886 + components: + - type: Transform + pos: -46.5,79.5 + parent: 2 + - uid: 20887 + components: + - type: Transform + pos: -46.5,83.5 + parent: 2 + - uid: 20891 + components: + - type: Transform + pos: -34.5,83.5 + parent: 2 + - uid: 20923 + components: + - type: Transform + pos: -125.5,39.5 + parent: 2 + - uid: 20926 + components: + - type: Transform + pos: -124.5,39.5 + parent: 2 + - uid: 20950 + components: + - type: Transform + pos: -36.5,74.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + pos: -124.5,18.5 + parent: 2 + - uid: 21451 + components: + - type: Transform + pos: -124.5,20.5 + parent: 2 + - uid: 21453 + components: + - type: Transform + pos: -124.5,25.5 + parent: 2 + - uid: 21455 + components: + - type: Transform + pos: -124.5,21.5 + parent: 2 + - uid: 21546 + components: + - type: Transform + pos: -99.5,151.5 + parent: 2 + - uid: 21547 + components: + - type: Transform + pos: -98.5,151.5 + parent: 2 + - uid: 21548 + components: + - type: Transform + pos: -97.5,151.5 + parent: 2 + - uid: 21549 + components: + - type: Transform + pos: -96.5,151.5 + parent: 2 + - uid: 21550 + components: + - type: Transform + pos: -95.5,151.5 + parent: 2 + - uid: 21551 + components: + - type: Transform + pos: -94.5,151.5 + parent: 2 + - uid: 21552 + components: + - type: Transform + pos: -93.5,151.5 + parent: 2 + - uid: 21554 + components: + - type: Transform + pos: -91.5,151.5 + parent: 2 + - uid: 21555 + components: + - type: Transform + pos: -90.5,151.5 + parent: 2 + - uid: 21556 + components: + - type: Transform + pos: -89.5,151.5 + parent: 2 + - uid: 21557 + components: + - type: Transform + pos: -88.5,151.5 + parent: 2 + - uid: 21558 + components: + - type: Transform + pos: -87.5,151.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + pos: -85.5,151.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + pos: -84.5,151.5 + parent: 2 + - uid: 21562 + components: + - type: Transform + pos: -83.5,151.5 + parent: 2 + - uid: 21598 + components: + - type: Transform + pos: -82.5,151.5 + parent: 2 + - uid: 21602 + components: + - type: Transform + pos: -121.5,31.5 + parent: 2 + - uid: 21609 + components: + - type: Transform + pos: -98.5,150.5 + parent: 2 + - uid: 21611 + components: + - type: Transform + pos: -81.5,151.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + pos: -80.5,151.5 + parent: 2 + - uid: 21613 + components: + - type: Transform + pos: -98.5,149.5 + parent: 2 + - uid: 21615 + components: + - type: Transform + pos: -99.5,148.5 + parent: 2 + - uid: 21616 + components: + - type: Transform + pos: -100.5,148.5 + parent: 2 + - uid: 21617 + components: + - type: Transform + pos: -101.5,148.5 + parent: 2 + - uid: 21618 + components: + - type: Transform + pos: -101.5,147.5 + parent: 2 + - uid: 21619 + components: + - type: Transform + pos: -101.5,146.5 + parent: 2 + - uid: 21623 + components: + - type: Transform + pos: -85.5,156.5 + parent: 2 + - uid: 21624 + components: + - type: Transform + pos: -85.5,155.5 + parent: 2 + - uid: 21625 + components: + - type: Transform + pos: -84.5,155.5 + parent: 2 + - uid: 21635 + components: + - type: Transform + pos: -86.5,156.5 + parent: 2 + - uid: 21925 + components: + - type: Transform + pos: -80.5,152.5 + parent: 2 + - uid: 21926 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + pos: -80.5,154.5 + parent: 2 + - uid: 21928 + components: + - type: Transform + pos: -80.5,155.5 + parent: 2 + - uid: 21929 + components: + - type: Transform + pos: -80.5,156.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + pos: -80.5,157.5 + parent: 2 + - uid: 21931 + components: + - type: Transform + pos: -80.5,158.5 + parent: 2 + - uid: 21932 + components: + - type: Transform + pos: -80.5,159.5 + parent: 2 + - uid: 21933 + components: + - type: Transform + pos: -81.5,159.5 + parent: 2 + - uid: 21934 + components: + - type: Transform + pos: -82.5,159.5 + parent: 2 + - uid: 21935 + components: + - type: Transform + pos: -83.5,159.5 + parent: 2 + - uid: 21936 + components: + - type: Transform + pos: -84.5,159.5 + parent: 2 + - uid: 21937 + components: + - type: Transform + pos: -85.5,159.5 + parent: 2 + - uid: 21938 + components: + - type: Transform + pos: -86.5,159.5 + parent: 2 + - uid: 21939 + components: + - type: Transform + pos: -87.5,159.5 + parent: 2 + - uid: 21940 + components: + - type: Transform + pos: -87.5,158.5 + parent: 2 + - uid: 21941 + components: + - type: Transform + pos: -87.5,157.5 + parent: 2 + - uid: 21944 + components: + - type: Transform + pos: -88.5,159.5 + parent: 2 + - uid: 21945 + components: + - type: Transform + pos: -89.5,159.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + pos: -90.5,159.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + pos: -91.5,159.5 + parent: 2 + - uid: 21948 + components: + - type: Transform + pos: -91.5,160.5 + parent: 2 + - uid: 21949 + components: + - type: Transform + pos: -91.5,161.5 + parent: 2 + - uid: 21950 + components: + - type: Transform + pos: -91.5,162.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + pos: -91.5,163.5 + parent: 2 + - uid: 21952 + components: + - type: Transform + pos: -91.5,164.5 + parent: 2 + - uid: 21953 + components: + - type: Transform + pos: -91.5,165.5 + parent: 2 + - uid: 21954 + components: + - type: Transform + pos: -91.5,166.5 + parent: 2 + - uid: 21955 + components: + - type: Transform + pos: -97.5,152.5 + parent: 2 + - uid: 21957 + components: + - type: Transform + pos: -97.5,154.5 + parent: 2 + - uid: 21958 + components: + - type: Transform + pos: -97.5,155.5 + parent: 2 + - uid: 21959 + components: + - type: Transform + pos: -97.5,156.5 + parent: 2 + - uid: 21960 + components: + - type: Transform + pos: -97.5,157.5 + parent: 2 + - uid: 21961 + components: + - type: Transform + pos: -97.5,158.5 + parent: 2 + - uid: 21962 + components: + - type: Transform + pos: -97.5,159.5 + parent: 2 + - uid: 21963 + components: + - type: Transform + pos: -97.5,160.5 + parent: 2 + - uid: 21964 + components: + - type: Transform + pos: -96.5,160.5 + parent: 2 + - uid: 21965 + components: + - type: Transform + pos: -95.5,160.5 + parent: 2 + - uid: 21966 + components: + - type: Transform + pos: -97.5,161.5 + parent: 2 + - uid: 21967 + components: + - type: Transform + pos: -97.5,162.5 + parent: 2 + - uid: 21968 + components: + - type: Transform + pos: -97.5,163.5 + parent: 2 + - uid: 21969 + components: + - type: Transform + pos: -97.5,164.5 + parent: 2 + - uid: 21970 + components: + - type: Transform + pos: -97.5,165.5 + parent: 2 + - uid: 21971 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 + - uid: 21972 + components: + - type: Transform + pos: -97.5,167.5 + parent: 2 + - uid: 21973 + components: + - type: Transform + pos: -97.5,168.5 + parent: 2 + - uid: 21974 + components: + - type: Transform + pos: -89.5,173.5 + parent: 2 + - uid: 21975 + components: + - type: Transform + pos: -96.5,168.5 + parent: 2 + - uid: 21976 + components: + - type: Transform + pos: -95.5,168.5 + parent: 2 + - uid: 21977 + components: + - type: Transform + pos: -94.5,168.5 + parent: 2 + - uid: 21978 + components: + - type: Transform + pos: -93.5,168.5 + parent: 2 + - uid: 21979 + components: + - type: Transform + pos: -92.5,168.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + pos: -91.5,168.5 + parent: 2 + - uid: 21981 + components: + - type: Transform + pos: -90.5,168.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + pos: -89.5,168.5 + parent: 2 + - uid: 21983 + components: + - type: Transform + pos: -88.5,168.5 + parent: 2 + - uid: 21984 + components: + - type: Transform + pos: -87.5,168.5 + parent: 2 + - uid: 21985 + components: + - type: Transform + pos: -86.5,168.5 + parent: 2 + - uid: 21986 + components: + - type: Transform + pos: -86.5,169.5 + parent: 2 + - uid: 21987 + components: + - type: Transform + pos: -86.5,170.5 + parent: 2 + - uid: 21988 + components: + - type: Transform + pos: -86.5,171.5 + parent: 2 + - uid: 21989 + components: + - type: Transform + pos: -86.5,172.5 + parent: 2 + - uid: 21990 + components: + - type: Transform + pos: -87.5,172.5 + parent: 2 + - uid: 21991 + components: + - type: Transform + pos: -88.5,172.5 + parent: 2 + - uid: 21992 + components: + - type: Transform + pos: -89.5,172.5 + parent: 2 + - uid: 21993 + components: + - type: Transform + pos: -90.5,172.5 + parent: 2 + - uid: 21994 + components: + - type: Transform + pos: -91.5,172.5 + parent: 2 + - uid: 21995 + components: + - type: Transform + pos: -89.5,174.5 + parent: 2 + - uid: 21996 + components: + - type: Transform + pos: -89.5,175.5 + parent: 2 + - uid: 21997 + components: + - type: Transform + pos: -89.5,176.5 + parent: 2 + - uid: 21998 + components: + - type: Transform + pos: -85.5,171.5 + parent: 2 + - uid: 21999 + components: + - type: Transform + pos: -84.5,171.5 + parent: 2 + - uid: 22000 + components: + - type: Transform + pos: -83.5,171.5 + parent: 2 + - uid: 22001 + components: + - type: Transform + pos: -82.5,171.5 + parent: 2 + - uid: 22002 + components: + - type: Transform + pos: -81.5,171.5 + parent: 2 + - uid: 22003 + components: + - type: Transform + pos: -80.5,171.5 + parent: 2 + - uid: 22004 + components: + - type: Transform + pos: -79.5,171.5 + parent: 2 + - uid: 22005 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - uid: 22006 + components: + - type: Transform + pos: -79.5,173.5 + parent: 2 + - uid: 22007 + components: + - type: Transform + pos: -79.5,172.5 + parent: 2 + - uid: 22008 + components: + - type: Transform + pos: -77.5,171.5 + parent: 2 + - uid: 22009 + components: + - type: Transform + pos: -78.5,171.5 + parent: 2 + - uid: 22010 + components: + - type: Transform + pos: -79.5,174.5 + parent: 2 + - uid: 22011 + components: + - type: Transform + pos: -79.5,175.5 + parent: 2 + - uid: 22012 + components: + - type: Transform + pos: -79.5,176.5 + parent: 2 + - uid: 22013 + components: + - type: Transform + pos: -79.5,177.5 + parent: 2 + - uid: 22014 + components: + - type: Transform + pos: -80.5,177.5 + parent: 2 + - uid: 22015 + components: + - type: Transform + pos: -81.5,177.5 + parent: 2 + - uid: 22016 + components: + - type: Transform + pos: -82.5,177.5 + parent: 2 + - uid: 22017 + components: + - type: Transform + pos: -82.5,176.5 + parent: 2 + - uid: 22019 + components: + - type: Transform + pos: -76.5,171.5 + parent: 2 + - uid: 22020 + components: + - type: Transform + pos: -75.5,171.5 + parent: 2 + - uid: 22021 + components: + - type: Transform + pos: -74.5,171.5 + parent: 2 + - uid: 22022 + components: + - type: Transform + pos: -73.5,171.5 + parent: 2 + - uid: 22023 + components: + - type: Transform + pos: -72.5,171.5 + parent: 2 + - uid: 22024 + components: + - type: Transform + pos: -72.5,172.5 + parent: 2 + - uid: 22025 + components: + - type: Transform + pos: -72.5,173.5 + parent: 2 + - uid: 22026 + components: + - type: Transform + pos: -72.5,174.5 + parent: 2 + - uid: 22027 + components: + - type: Transform + pos: -73.5,174.5 + parent: 2 + - uid: 22028 + components: + - type: Transform + pos: -74.5,174.5 + parent: 2 + - uid: 22055 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 21114 + - uid: 22056 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 21114 + - uid: 22057 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 21114 + - uid: 22058 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 21114 + - uid: 22170 + components: + - type: Transform + pos: -79.5,158.5 + parent: 2 + - uid: 22171 + components: + - type: Transform + pos: -78.5,158.5 + parent: 2 + - uid: 22172 + components: + - type: Transform + pos: -77.5,158.5 + parent: 2 + - uid: 22173 + components: + - type: Transform + pos: -76.5,158.5 + parent: 2 + - uid: 22174 + components: + - type: Transform + pos: -75.5,158.5 + parent: 2 + - uid: 22175 + components: + - type: Transform + pos: -74.5,158.5 + parent: 2 + - uid: 22176 + components: + - type: Transform + pos: -73.5,158.5 + parent: 2 + - uid: 22181 + components: + - type: Transform + pos: -73.5,157.5 + parent: 2 + - uid: 22182 + components: + - type: Transform + pos: -73.5,156.5 + parent: 2 + - uid: 22183 + components: + - type: Transform + pos: -73.5,155.5 + parent: 2 + - uid: 22184 + components: + - type: Transform + pos: -73.5,154.5 + parent: 2 + - uid: 22185 + components: + - type: Transform + pos: -73.5,153.5 + parent: 2 + - uid: 22186 + components: + - type: Transform + pos: -73.5,152.5 + parent: 2 + - uid: 22187 + components: + - type: Transform + pos: -72.5,152.5 + parent: 2 + - uid: 22188 + components: + - type: Transform + pos: -71.5,152.5 + parent: 2 + - uid: 22189 + components: + - type: Transform + pos: -70.5,152.5 + parent: 2 + - uid: 22190 + components: + - type: Transform + pos: -69.5,152.5 + parent: 2 + - uid: 22191 + components: + - type: Transform + pos: -68.5,152.5 + parent: 2 + - uid: 22192 + components: + - type: Transform + pos: -67.5,152.5 + parent: 2 + - uid: 22193 + components: + - type: Transform + pos: -66.5,152.5 + parent: 2 + - uid: 22194 + components: + - type: Transform + pos: -65.5,152.5 + parent: 2 + - uid: 22195 + components: + - type: Transform + pos: -64.5,152.5 + parent: 2 + - uid: 22196 + components: + - type: Transform + pos: -63.5,152.5 + parent: 2 + - uid: 22197 + components: + - type: Transform + pos: -62.5,152.5 + parent: 2 + - uid: 22198 + components: + - type: Transform + pos: -62.5,153.5 + parent: 2 + - uid: 22199 + components: + - type: Transform + pos: -62.5,154.5 + parent: 2 + - uid: 22223 + components: + - type: Transform + pos: -121.5,57.5 + parent: 2 + - uid: 22230 + components: + - type: Transform + pos: -120.5,57.5 + parent: 2 + - uid: 22265 + components: + - type: Transform + pos: -92.5,34.5 + parent: 2 + - uid: 22384 + components: + - type: Transform + pos: -125.5,18.5 + parent: 2 + - uid: 22389 + components: + - type: Transform + pos: -128.5,18.5 + parent: 2 + - uid: 22692 + components: + - type: Transform + pos: -127.5,61.5 + parent: 2 + - uid: 22896 + components: + - type: Transform + pos: -4.5,166.5 + parent: 2 + - uid: 22911 + components: + - type: Transform + pos: -5.5,68.5 + parent: 2 + - uid: 23040 + components: + - type: Transform + pos: -110.5,32.5 + parent: 2 + - uid: 23135 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 23163 + components: + - type: Transform + pos: -123.5,107.5 + parent: 2 + - uid: 23174 + components: + - type: Transform + pos: -117.5,98.5 + parent: 2 + - uid: 23184 + components: + - type: Transform + pos: -118.5,98.5 + parent: 2 + - uid: 23185 + components: + - type: Transform + pos: -116.5,98.5 + parent: 2 + - uid: 23267 + components: + - type: Transform + pos: -59.5,80.5 + parent: 2 + - uid: 23354 + components: + - type: Transform + pos: -128.5,16.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + pos: -8.5,166.5 + parent: 2 + - uid: 23787 + components: + - type: Transform + pos: -35.5,102.5 + parent: 2 + - uid: 24116 + components: + - type: Transform + pos: -130.5,38.5 + parent: 2 + - uid: 24216 + components: + - type: Transform + pos: -35.5,101.5 + parent: 2 + - uid: 24225 + components: + - type: Transform + pos: -35.5,100.5 + parent: 2 + - uid: 24268 + components: + - type: Transform + pos: -115.5,96.5 + parent: 2 + - uid: 24269 + components: + - type: Transform + pos: -114.5,97.5 + parent: 2 + - uid: 24270 + components: + - type: Transform + pos: -114.5,96.5 + parent: 2 + - uid: 24271 + components: + - type: Transform + pos: -114.5,98.5 + parent: 2 + - uid: 24272 + components: + - type: Transform + pos: -115.5,98.5 + parent: 2 + - uid: 24459 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 24755 + components: + - type: Transform + pos: -25.5,176.5 + parent: 2 + - uid: 24805 + components: + - type: Transform + pos: -24.5,176.5 + parent: 2 + - uid: 24815 + components: + - type: Transform + pos: -29.5,190.5 + parent: 2 + - uid: 24816 + components: + - type: Transform + pos: -29.5,189.5 + parent: 2 + - uid: 24818 + components: + - type: Transform + pos: -28.5,190.5 + parent: 2 + - uid: 24819 + components: + - type: Transform + pos: -27.5,190.5 + parent: 2 + - uid: 24820 + components: + - type: Transform + pos: -26.5,190.5 + parent: 2 + - uid: 24821 + components: + - type: Transform + pos: -25.5,190.5 + parent: 2 + - uid: 24822 + components: + - type: Transform + pos: -24.5,190.5 + parent: 2 + - uid: 24823 + components: + - type: Transform + pos: -23.5,190.5 + parent: 2 + - uid: 24824 + components: + - type: Transform + pos: -22.5,190.5 + parent: 2 + - uid: 24825 + components: + - type: Transform + pos: -21.5,190.5 + parent: 2 + - uid: 24826 + components: + - type: Transform + pos: -21.5,191.5 + parent: 2 + - uid: 24827 + components: + - type: Transform + pos: -21.5,192.5 + parent: 2 + - uid: 24828 + components: + - type: Transform + pos: -20.5,192.5 + parent: 2 + - uid: 24829 + components: + - type: Transform + pos: -19.5,192.5 + parent: 2 + - uid: 24830 + components: + - type: Transform + pos: -18.5,192.5 + parent: 2 + - uid: 24831 + components: + - type: Transform + pos: -17.5,192.5 + parent: 2 + - uid: 24832 + components: + - type: Transform + pos: -16.5,192.5 + parent: 2 + - uid: 24833 + components: + - type: Transform + pos: -15.5,192.5 + parent: 2 + - uid: 24834 + components: + - type: Transform + pos: -13.5,192.5 + parent: 2 + - uid: 24835 + components: + - type: Transform + pos: -14.5,192.5 + parent: 2 + - uid: 24836 + components: + - type: Transform + pos: -12.5,192.5 + parent: 2 + - uid: 24837 + components: + - type: Transform + pos: -11.5,192.5 + parent: 2 + - uid: 24838 + components: + - type: Transform + pos: -11.5,193.5 + parent: 2 + - uid: 24839 + components: + - type: Transform + pos: -10.5,193.5 + parent: 2 + - uid: 24840 + components: + - type: Transform + pos: -9.5,193.5 + parent: 2 + - uid: 24841 + components: + - type: Transform + pos: -8.5,193.5 + parent: 2 + - uid: 24842 + components: + - type: Transform + pos: -8.5,194.5 + parent: 2 + - uid: 24843 + components: + - type: Transform + pos: -8.5,195.5 + parent: 2 + - uid: 24844 + components: + - type: Transform + pos: -8.5,196.5 + parent: 2 + - uid: 24845 + components: + - type: Transform + pos: -9.5,196.5 + parent: 2 + - uid: 24846 + components: + - type: Transform + pos: -10.5,196.5 + parent: 2 + - uid: 24847 + components: + - type: Transform + pos: -10.5,197.5 + parent: 2 + - uid: 24848 + components: + - type: Transform + pos: -10.5,198.5 + parent: 2 + - uid: 24850 + components: + - type: Transform + pos: -29.5,191.5 + parent: 2 + - uid: 24851 + components: + - type: Transform + pos: -29.5,192.5 + parent: 2 + - uid: 24852 + components: + - type: Transform + pos: -29.5,193.5 + parent: 2 + - uid: 24853 + components: + - type: Transform + pos: -29.5,194.5 + parent: 2 + - uid: 24854 + components: + - type: Transform + pos: -29.5,195.5 + parent: 2 + - uid: 24855 + components: + - type: Transform + pos: -29.5,196.5 + parent: 2 + - uid: 24856 + components: + - type: Transform + pos: -29.5,197.5 + parent: 2 + - uid: 24857 + components: + - type: Transform + pos: -29.5,198.5 + parent: 2 + - uid: 24858 + components: + - type: Transform + pos: -29.5,199.5 + parent: 2 + - uid: 24859 + components: + - type: Transform + pos: -29.5,200.5 + parent: 2 + - uid: 24860 + components: + - type: Transform + pos: -28.5,200.5 + parent: 2 + - uid: 24861 + components: + - type: Transform + pos: -27.5,200.5 + parent: 2 + - uid: 24862 + components: + - type: Transform + pos: -29.5,201.5 + parent: 2 + - uid: 24863 + components: + - type: Transform + pos: -29.5,202.5 + parent: 2 + - uid: 24864 + components: + - type: Transform + pos: -29.5,203.5 + parent: 2 + - uid: 24865 + components: + - type: Transform + pos: -29.5,204.5 + parent: 2 + - uid: 24866 + components: + - type: Transform + pos: -28.5,204.5 + parent: 2 + - uid: 24867 + components: + - type: Transform + pos: -27.5,204.5 + parent: 2 + - uid: 24868 + components: + - type: Transform + pos: -27.5,205.5 + parent: 2 + - uid: 24869 + components: + - type: Transform + pos: -26.5,205.5 + parent: 2 + - uid: 24870 + components: + - type: Transform + pos: -25.5,205.5 + parent: 2 + - uid: 24871 + components: + - type: Transform + pos: -24.5,205.5 + parent: 2 + - uid: 24872 + components: + - type: Transform + pos: -24.5,206.5 + parent: 2 + - uid: 24873 + components: + - type: Transform + pos: -24.5,207.5 + parent: 2 + - uid: 24874 + components: + - type: Transform + pos: -24.5,208.5 + parent: 2 + - uid: 24875 + components: + - type: Transform + pos: -24.5,209.5 + parent: 2 + - uid: 24876 + components: + - type: Transform + pos: -25.5,209.5 + parent: 2 + - uid: 24877 + components: + - type: Transform + pos: -25.5,210.5 + parent: 2 + - uid: 24878 + components: + - type: Transform + pos: -23.5,209.5 + parent: 2 + - uid: 24879 + components: + - type: Transform + pos: -22.5,209.5 + parent: 2 + - uid: 24880 + components: + - type: Transform + pos: -21.5,209.5 + parent: 2 + - uid: 24881 + components: + - type: Transform + pos: -20.5,209.5 + parent: 2 + - uid: 24882 + components: + - type: Transform + pos: -19.5,209.5 + parent: 2 + - uid: 24883 + components: + - type: Transform + pos: -18.5,209.5 + parent: 2 + - uid: 24884 + components: + - type: Transform + pos: -17.5,209.5 + parent: 2 + - uid: 24885 + components: + - type: Transform + pos: -17.5,208.5 + parent: 2 + - uid: 24886 + components: + - type: Transform + pos: -17.5,207.5 + parent: 2 + - uid: 24887 + components: + - type: Transform + pos: -17.5,206.5 + parent: 2 + - uid: 24888 + components: + - type: Transform + pos: -18.5,206.5 + parent: 2 + - uid: 24889 + components: + - type: Transform + pos: -18.5,210.5 + parent: 2 + - uid: 24890 + components: + - type: Transform + pos: -17.5,210.5 + parent: 2 + - uid: 24891 + components: + - type: Transform + pos: -17.5,211.5 + parent: 2 + - uid: 24892 + components: + - type: Transform + pos: -16.5,211.5 + parent: 2 + - uid: 24893 + components: + - type: Transform + pos: -15.5,211.5 + parent: 2 + - uid: 24894 + components: + - type: Transform + pos: -15.5,212.5 + parent: 2 + - uid: 24895 + components: + - type: Transform + pos: -14.5,212.5 + parent: 2 + - uid: 24896 + components: + - type: Transform + pos: -13.5,212.5 + parent: 2 + - uid: 24897 + components: + - type: Transform + pos: -12.5,212.5 + parent: 2 + - uid: 24898 + components: + - type: Transform + pos: -12.5,213.5 + parent: 2 + - uid: 24899 + components: + - type: Transform + pos: -11.5,213.5 + parent: 2 + - uid: 24900 + components: + - type: Transform + pos: -10.5,213.5 + parent: 2 + - uid: 24901 + components: + - type: Transform + pos: -10.5,212.5 + parent: 2 + - uid: 24902 + components: + - type: Transform + pos: -10.5,211.5 + parent: 2 + - uid: 24903 + components: + - type: Transform + pos: -9.5,213.5 + parent: 2 + - uid: 24904 + components: + - type: Transform + pos: -8.5,213.5 + parent: 2 + - uid: 24905 + components: + - type: Transform + pos: -7.5,213.5 + parent: 2 + - uid: 24906 + components: + - type: Transform + pos: -6.5,213.5 + parent: 2 + - uid: 24907 + components: + - type: Transform + pos: -5.5,213.5 + parent: 2 + - uid: 24908 + components: + - type: Transform + pos: -4.5,213.5 + parent: 2 + - uid: 24909 + components: + - type: Transform + pos: -3.5,213.5 + parent: 2 + - uid: 24910 + components: + - type: Transform + pos: -3.5,212.5 + parent: 2 + - uid: 24911 + components: + - type: Transform + pos: -3.5,211.5 + parent: 2 + - uid: 24912 + components: + - type: Transform + pos: -3.5,210.5 + parent: 2 + - uid: 24913 + components: + - type: Transform + pos: -2.5,210.5 + parent: 2 + - uid: 24914 + components: + - type: Transform + pos: -1.5,210.5 + parent: 2 + - uid: 24915 + components: + - type: Transform + pos: -0.5,210.5 + parent: 2 + - uid: 24916 + components: + - type: Transform + pos: 0.5,210.5 + parent: 2 + - uid: 24917 + components: + - type: Transform + pos: 1.5,210.5 + parent: 2 + - uid: 24918 + components: + - type: Transform + pos: 2.5,210.5 + parent: 2 + - uid: 24919 + components: + - type: Transform + pos: 3.5,210.5 + parent: 2 + - uid: 24920 + components: + - type: Transform + pos: 4.5,210.5 + parent: 2 + - uid: 24921 + components: + - type: Transform + pos: 5.5,210.5 + parent: 2 + - uid: 24922 + components: + - type: Transform + pos: 5.5,209.5 + parent: 2 + - uid: 24923 + components: + - type: Transform + pos: 6.5,209.5 + parent: 2 + - uid: 24924 + components: + - type: Transform + pos: 6.5,208.5 + parent: 2 + - uid: 24925 + components: + - type: Transform + pos: 6.5,207.5 + parent: 2 + - uid: 24926 + components: + - type: Transform + pos: 6.5,206.5 + parent: 2 + - uid: 24927 + components: + - type: Transform + pos: 1.5,209.5 + parent: 2 + - uid: 24928 + components: + - type: Transform + pos: 6.5,205.5 + parent: 2 + - uid: 24929 + components: + - type: Transform + pos: 7.5,205.5 + parent: 2 + - uid: 24930 + components: + - type: Transform + pos: 7.5,204.5 + parent: 2 + - uid: 24931 + components: + - type: Transform + pos: 8.5,204.5 + parent: 2 + - uid: 24932 + components: + - type: Transform + pos: 8.5,203.5 + parent: 2 + - uid: 24933 + components: + - type: Transform + pos: 9.5,203.5 + parent: 2 + - uid: 24934 + components: + - type: Transform + pos: 10.5,203.5 + parent: 2 + - uid: 24935 + components: + - type: Transform + pos: 11.5,203.5 + parent: 2 + - uid: 24936 + components: + - type: Transform + pos: 12.5,203.5 + parent: 2 + - uid: 24937 + components: + - type: Transform + pos: 13.5,203.5 + parent: 2 + - uid: 24938 + components: + - type: Transform + pos: 14.5,203.5 + parent: 2 + - uid: 24939 + components: + - type: Transform + pos: 15.5,203.5 + parent: 2 + - uid: 24940 + components: + - type: Transform + pos: 16.5,203.5 + parent: 2 + - uid: 24941 + components: + - type: Transform + pos: 1.5,208.5 + parent: 2 + - uid: 24942 + components: + - type: Transform + pos: 1.5,207.5 + parent: 2 + - uid: 24943 + components: + - type: Transform + pos: 1.5,206.5 + parent: 2 + - uid: 24944 + components: + - type: Transform + pos: 16.5,202.5 + parent: 2 + - uid: 24945 + components: + - type: Transform + pos: 17.5,202.5 + parent: 2 + - uid: 24946 + components: + - type: Transform + pos: 18.5,202.5 + parent: 2 + - uid: 24947 + components: + - type: Transform + pos: 19.5,202.5 + parent: 2 + - uid: 24948 + components: + - type: Transform + pos: 19.5,201.5 + parent: 2 + - uid: 24949 + components: + - type: Transform + pos: 19.5,200.5 + parent: 2 + - uid: 24951 + components: + - type: Transform + pos: 21.5,200.5 + parent: 2 + - uid: 24952 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - uid: 24953 + components: + - type: Transform + pos: 22.5,199.5 + parent: 2 + - uid: 24954 + components: + - type: Transform + pos: 22.5,198.5 + parent: 2 + - uid: 24955 + components: + - type: Transform + pos: 21.5,198.5 + parent: 2 + - uid: 24957 + components: + - type: Transform + pos: 23.5,198.5 + parent: 2 + - uid: 24958 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - uid: 24959 + components: + - type: Transform + pos: 24.5,197.5 + parent: 2 + - uid: 24960 + components: + - type: Transform + pos: 24.5,196.5 + parent: 2 + - uid: 24961 + components: + - type: Transform + pos: 24.5,195.5 + parent: 2 + - uid: 24962 + components: + - type: Transform + pos: 24.5,194.5 + parent: 2 + - uid: 24963 + components: + - type: Transform + pos: 24.5,193.5 + parent: 2 + - uid: 24964 + components: + - type: Transform + pos: 24.5,192.5 + parent: 2 + - uid: 24965 + components: + - type: Transform + pos: 24.5,191.5 + parent: 2 + - uid: 24966 + components: + - type: Transform + pos: 24.5,190.5 + parent: 2 + - uid: 24967 + components: + - type: Transform + pos: 24.5,189.5 + parent: 2 + - uid: 24968 + components: + - type: Transform + pos: 24.5,188.5 + parent: 2 + - uid: 24969 + components: + - type: Transform + pos: 24.5,187.5 + parent: 2 + - uid: 24970 + components: + - type: Transform + pos: 24.5,186.5 + parent: 2 + - uid: 24972 + components: + - type: Transform + pos: 22.5,192.5 + parent: 2 + - uid: 24986 + components: + - type: Transform + pos: 23.5,192.5 + parent: 2 + - uid: 24990 + components: + - type: Transform + pos: 11.5,181.5 + parent: 2 + - uid: 24992 + components: + - type: Transform + pos: 23.5,186.5 + parent: 2 + - uid: 24993 + components: + - type: Transform + pos: 23.5,185.5 + parent: 2 + - uid: 24994 + components: + - type: Transform + pos: 22.5,185.5 + parent: 2 + - uid: 24995 + components: + - type: Transform + pos: 22.5,184.5 + parent: 2 + - uid: 24996 + components: + - type: Transform + pos: 22.5,183.5 + parent: 2 + - uid: 24997 + components: + - type: Transform + pos: 21.5,183.5 + parent: 2 + - uid: 24998 + components: + - type: Transform + pos: 20.5,183.5 + parent: 2 + - uid: 24999 + components: + - type: Transform + pos: 20.5,182.5 + parent: 2 + - uid: 25000 + components: + - type: Transform + pos: 19.5,182.5 + parent: 2 + - uid: 25001 + components: + - type: Transform + pos: 18.5,182.5 + parent: 2 + - uid: 25002 + components: + - type: Transform + pos: 18.5,181.5 + parent: 2 + - uid: 25003 + components: + - type: Transform + pos: 17.5,181.5 + parent: 2 + - uid: 25004 + components: + - type: Transform + pos: 17.5,180.5 + parent: 2 + - uid: 25005 + components: + - type: Transform + pos: 16.5,180.5 + parent: 2 + - uid: 25006 + components: + - type: Transform + pos: 15.5,180.5 + parent: 2 + - uid: 25007 + components: + - type: Transform + pos: 14.5,180.5 + parent: 2 + - uid: 25008 + components: + - type: Transform + pos: 13.5,180.5 + parent: 2 + - uid: 25009 + components: + - type: Transform + pos: 12.5,180.5 + parent: 2 + - uid: 25010 + components: + - type: Transform + pos: 11.5,180.5 + parent: 2 + - uid: 25011 + components: + - type: Transform + pos: 10.5,180.5 + parent: 2 + - uid: 25012 + components: + - type: Transform + pos: 9.5,180.5 + parent: 2 + - uid: 25013 + components: + - type: Transform + pos: 8.5,180.5 + parent: 2 + - uid: 25014 + components: + - type: Transform + pos: 11.5,182.5 + parent: 2 + - uid: 25015 + components: + - type: Transform + pos: 8.5,179.5 + parent: 2 + - uid: 25016 + components: + - type: Transform + pos: -23.5,178.5 + parent: 2 + - uid: 25017 + components: + - type: Transform + pos: -22.5,178.5 + parent: 2 + - uid: 25018 + components: + - type: Transform + pos: -21.5,178.5 + parent: 2 + - uid: 25019 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 + - uid: 25020 + components: + - type: Transform + pos: -19.5,178.5 + parent: 2 + - uid: 25021 + components: + - type: Transform + pos: -18.5,178.5 + parent: 2 + - uid: 25022 + components: + - type: Transform + pos: -18.5,179.5 + parent: 2 + - uid: 25023 + components: + - type: Transform + pos: -18.5,180.5 + parent: 2 + - uid: 25025 + components: + - type: Transform + pos: -4.5,172.5 + parent: 2 + - uid: 25026 + components: + - type: Transform + pos: -4.5,173.5 + parent: 2 + - uid: 25027 + components: + - type: Transform + pos: -4.5,174.5 + parent: 2 + - uid: 25188 + components: + - type: Transform + pos: -127.5,60.5 + parent: 2 + - uid: 25190 + components: + - type: Transform + pos: -122.5,57.5 + parent: 2 + - uid: 25235 + components: + - type: Transform + pos: -118.5,101.5 + parent: 2 + - uid: 25367 + components: + - type: Transform + pos: -92.5,35.5 + parent: 2 + - uid: 25395 + components: + - type: Transform + pos: -4.5,171.5 + parent: 2 + - uid: 25397 + components: + - type: Transform + pos: -5.5,172.5 + parent: 2 + - uid: 25483 + components: + - type: Transform + pos: 9.5,171.5 + parent: 2 + - uid: 25484 + components: + - type: Transform + pos: 12.5,171.5 + parent: 2 + - uid: 25488 + components: + - type: Transform + pos: 14.5,171.5 + parent: 2 + - uid: 25489 + components: + - type: Transform + pos: 15.5,171.5 + parent: 2 + - uid: 25509 + components: + - type: Transform + pos: 17.5,179.5 + parent: 2 + - uid: 25510 + components: + - type: Transform + pos: 17.5,178.5 + parent: 2 + - uid: 25511 + components: + - type: Transform + pos: 17.5,177.5 + parent: 2 + - uid: 25512 + components: + - type: Transform + pos: 17.5,176.5 + parent: 2 + - uid: 25513 + components: + - type: Transform + pos: 17.5,175.5 + parent: 2 + - uid: 25514 + components: + - type: Transform + pos: 17.5,174.5 + parent: 2 + - uid: 25515 + components: + - type: Transform + pos: 17.5,173.5 + parent: 2 + - uid: 25516 + components: + - type: Transform + pos: 17.5,172.5 + parent: 2 + - uid: 25517 + components: + - type: Transform + pos: 17.5,171.5 + parent: 2 + - uid: 25518 + components: + - type: Transform + pos: 16.5,171.5 + parent: 2 + - uid: 25523 + components: + - type: Transform + pos: 10.5,171.5 + parent: 2 + - uid: 25524 + components: + - type: Transform + pos: 13.5,171.5 + parent: 2 + - uid: 25525 + components: + - type: Transform + pos: 12.5,174.5 + parent: 2 + - uid: 25526 + components: + - type: Transform + pos: 13.5,174.5 + parent: 2 + - uid: 25527 + components: + - type: Transform + pos: 14.5,174.5 + parent: 2 + - uid: 25528 + components: + - type: Transform + pos: 15.5,174.5 + parent: 2 + - uid: 25529 + components: + - type: Transform + pos: 15.5,175.5 + parent: 2 + - uid: 25530 + components: + - type: Transform + pos: 15.5,176.5 + parent: 2 + - uid: 25531 + components: + - type: Transform + pos: 15.5,177.5 + parent: 2 + - uid: 25532 + components: + - type: Transform + pos: 15.5,178.5 + parent: 2 + - uid: 25559 + components: + - type: Transform + pos: 11.5,171.5 + parent: 2 + - uid: 25560 + components: + - type: Transform + pos: 8.5,171.5 + parent: 2 + - uid: 25564 + components: + - type: Transform + pos: 8.5,173.5 + parent: 2 + - uid: 25607 + components: + - type: Transform + pos: 7.5,179.5 + parent: 2 + - uid: 25608 + components: + - type: Transform + pos: 6.5,179.5 + parent: 2 + - uid: 25609 + components: + - type: Transform + pos: 11.5,183.5 + parent: 2 + - uid: 25610 + components: + - type: Transform + pos: 11.5,184.5 + parent: 2 + - uid: 25611 + components: + - type: Transform + pos: 11.5,185.5 + parent: 2 + - uid: 25612 + components: + - type: Transform + pos: 10.5,185.5 + parent: 2 + - uid: 25613 + components: + - type: Transform + pos: 9.5,185.5 + parent: 2 + - uid: 25614 + components: + - type: Transform + pos: 8.5,185.5 + parent: 2 + - uid: 25615 + components: + - type: Transform + pos: 7.5,185.5 + parent: 2 + - uid: 25616 + components: + - type: Transform + pos: 6.5,185.5 + parent: 2 + - uid: 25626 + components: + - type: Transform + pos: 5.5,185.5 + parent: 2 + - uid: 25627 + components: + - type: Transform + pos: 5.5,186.5 + parent: 2 + - uid: 25628 + components: + - type: Transform + pos: 5.5,187.5 + parent: 2 + - uid: 25629 + components: + - type: Transform + pos: 5.5,188.5 + parent: 2 + - uid: 25630 + components: + - type: Transform + pos: 5.5,189.5 + parent: 2 + - uid: 25631 + components: + - type: Transform + pos: 5.5,190.5 + parent: 2 + - uid: 25632 + components: + - type: Transform + pos: 5.5,191.5 + parent: 2 + - uid: 25633 + components: + - type: Transform + pos: 5.5,192.5 + parent: 2 + - uid: 25634 + components: + - type: Transform + pos: 5.5,193.5 + parent: 2 + - uid: 25635 + components: + - type: Transform + pos: 6.5,193.5 + parent: 2 + - uid: 25644 + components: + - type: Transform + pos: 6.5,178.5 + parent: 2 + - uid: 25645 + components: + - type: Transform + pos: 6.5,177.5 + parent: 2 + - uid: 25646 + components: + - type: Transform + pos: 6.5,176.5 + parent: 2 + - uid: 25647 + components: + - type: Transform + pos: 6.5,175.5 + parent: 2 + - uid: 25648 + components: + - type: Transform + pos: 6.5,174.5 + parent: 2 + - uid: 25649 + components: + - type: Transform + pos: 5.5,174.5 + parent: 2 + - uid: 25650 + components: + - type: Transform + pos: 4.5,174.5 + parent: 2 + - uid: 25651 + components: + - type: Transform + pos: 3.5,174.5 + parent: 2 + - uid: 25652 + components: + - type: Transform + pos: 2.5,174.5 + parent: 2 + - uid: 25653 + components: + - type: Transform + pos: 1.5,174.5 + parent: 2 + - uid: 25654 + components: + - type: Transform + pos: 1.5,173.5 + parent: 2 + - uid: 25655 + components: + - type: Transform + pos: 1.5,172.5 + parent: 2 + - uid: 25656 + components: + - type: Transform + pos: 1.5,171.5 + parent: 2 + - uid: 25657 + components: + - type: Transform + pos: 1.5,170.5 + parent: 2 + - uid: 25658 + components: + - type: Transform + pos: 1.5,169.5 + parent: 2 + - uid: 25659 + components: + - type: Transform + pos: 2.5,169.5 + parent: 2 + - uid: 25660 + components: + - type: Transform + pos: 2.5,168.5 + parent: 2 + - uid: 25661 + components: + - type: Transform + pos: 2.5,167.5 + parent: 2 + - uid: 25662 + components: + - type: Transform + pos: 2.5,166.5 + parent: 2 + - uid: 25663 + components: + - type: Transform + pos: 1.5,166.5 + parent: 2 + - uid: 25664 + components: + - type: Transform + pos: 0.5,166.5 + parent: 2 + - uid: 25665 + components: + - type: Transform + pos: -0.5,166.5 + parent: 2 + - uid: 25666 + components: + - type: Transform + pos: -1.5,166.5 + parent: 2 + - uid: 25667 + components: + - type: Transform + pos: -2.5,166.5 + parent: 2 + - uid: 25668 + components: + - type: Transform + pos: -3.5,166.5 + parent: 2 + - uid: 25669 + components: + - type: Transform + pos: -3.5,167.5 + parent: 2 + - uid: 25670 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - uid: 25671 + components: + - type: Transform + pos: -3.5,169.5 + parent: 2 + - uid: 25672 + components: + - type: Transform + pos: -3.5,170.5 + parent: 2 + - uid: 25673 + components: + - type: Transform + pos: -3.5,171.5 + parent: 2 + - uid: 25719 + components: + - type: Transform + pos: -121.5,108.5 + parent: 2 + - uid: 25720 + components: + - type: Transform + pos: -122.5,108.5 + parent: 2 + - uid: 25725 + components: + - type: Transform + pos: -122.5,109.5 + parent: 2 + - uid: 25758 + components: + - type: Transform + pos: -24.5,175.5 + parent: 2 + - uid: 25759 + components: + - type: Transform + pos: -24.5,174.5 + parent: 2 + - uid: 25760 + components: + - type: Transform + pos: -24.5,173.5 + parent: 2 + - uid: 25761 + components: + - type: Transform + pos: -23.5,173.5 + parent: 2 + - uid: 25762 + components: + - type: Transform + pos: -22.5,173.5 + parent: 2 + - uid: 25763 + components: + - type: Transform + pos: -21.5,173.5 + parent: 2 + - uid: 25764 + components: + - type: Transform + pos: -20.5,173.5 + parent: 2 + - uid: 25765 + components: + - type: Transform + pos: -19.5,173.5 + parent: 2 + - uid: 25766 + components: + - type: Transform + pos: -18.5,173.5 + parent: 2 + - uid: 25767 + components: + - type: Transform + pos: -17.5,173.5 + parent: 2 + - uid: 25768 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 25770 + components: + - type: Transform + pos: -16.5,172.5 + parent: 2 + - uid: 25771 + components: + - type: Transform + pos: -16.5,171.5 + parent: 2 + - uid: 26420 + components: + - type: Transform + pos: -29.5,99.5 + parent: 2 + - uid: 26427 + components: + - type: Transform + pos: -127.5,56.5 + parent: 2 + - uid: 26428 + components: + - type: Transform + pos: -128.5,56.5 + parent: 2 + - uid: 26486 + components: + - type: Transform + pos: -83.5,83.5 + parent: 2 + - uid: 26563 + components: + - type: Transform + pos: -130.5,90.5 + parent: 2 + - uid: 26564 + components: + - type: Transform + pos: -135.5,90.5 + parent: 2 + - uid: 26792 + components: + - type: Transform + pos: -129.5,101.5 + parent: 2 + - uid: 26793 + components: + - type: Transform + pos: -134.5,90.5 + parent: 2 + - uid: 26801 + components: + - type: Transform + pos: -129.5,90.5 + parent: 2 + - uid: 26802 + components: + - type: Transform + pos: -133.5,90.5 + parent: 2 + - uid: 26803 + components: + - type: Transform + pos: -131.5,90.5 + parent: 2 + - uid: 26804 + components: + - type: Transform + pos: -132.5,90.5 + parent: 2 + - uid: 26995 + components: + - type: Transform + pos: -33.5,106.5 + parent: 2 + - uid: 27182 + components: + - type: Transform + pos: -127.5,59.5 + parent: 2 + - uid: 27393 + components: + - type: Transform + pos: -47.5,98.5 + parent: 2 + - uid: 27394 + components: + - type: Transform + pos: -47.5,97.5 + parent: 2 + - uid: 27395 + components: + - type: Transform + pos: -47.5,96.5 + parent: 2 + - uid: 27396 + components: + - type: Transform + pos: -47.5,95.5 + parent: 2 + - uid: 27397 + components: + - type: Transform + pos: -48.5,95.5 + parent: 2 + - uid: 27398 + components: + - type: Transform + pos: -49.5,95.5 + parent: 2 + - uid: 27621 + components: + - type: Transform + pos: -5.5,166.5 + parent: 2 + - uid: 27761 + components: + - type: Transform + pos: -100.5,145.5 + parent: 2 + - uid: 27778 + components: + - type: Transform + pos: -101.5,145.5 + parent: 2 + - uid: 27791 + components: + - type: Transform + pos: -100.5,144.5 + parent: 2 + - uid: 27796 + components: + - type: Transform + pos: -84.5,95.5 + parent: 2 + - uid: 27955 + components: + - type: Transform + pos: -114.5,31.5 + parent: 2 + - uid: 28314 + components: + - type: Transform + pos: -119.5,57.5 + parent: 2 + - uid: 28427 + components: + - type: Transform + pos: -128.5,28.5 + parent: 2 + - uid: 28511 + components: + - type: Transform + pos: -122.5,53.5 + parent: 2 + - uid: 28707 + components: + - type: Transform + pos: -121.5,53.5 + parent: 2 + - uid: 28708 + components: + - type: Transform + pos: -120.5,53.5 + parent: 2 + - uid: 28709 + components: + - type: Transform + pos: -119.5,53.5 + parent: 2 + - uid: 28710 + components: + - type: Transform + pos: -118.5,53.5 + parent: 2 + - uid: 28711 + components: + - type: Transform + pos: -117.5,53.5 + parent: 2 + - uid: 28712 + components: + - type: Transform + pos: -116.5,53.5 + parent: 2 + - uid: 28713 + components: + - type: Transform + pos: -115.5,53.5 + parent: 2 + - uid: 28714 + components: + - type: Transform + pos: -115.5,52.5 + parent: 2 + - uid: 28715 + components: + - type: Transform + pos: -115.5,51.5 + parent: 2 + - uid: 28716 + components: + - type: Transform + pos: -115.5,50.5 + parent: 2 + - uid: 28817 + components: + - type: Transform + pos: -120.5,46.5 + parent: 2 + - uid: 28833 + components: + - type: Transform + pos: -120.5,45.5 + parent: 2 + - uid: 28920 + components: + - type: Transform + pos: -106.5,31.5 + parent: 2 + - uid: 28980 + components: + - type: Transform + pos: -127.5,52.5 + parent: 2 + - uid: 28981 + components: + - type: Transform + pos: -127.5,51.5 + parent: 2 + - uid: 28986 + components: + - type: Transform + pos: -126.5,52.5 + parent: 2 + - uid: 28990 + components: + - type: Transform + pos: -127.5,50.5 + parent: 2 + - uid: 28991 + components: + - type: Transform + pos: -126.5,50.5 + parent: 2 + - uid: 28992 + components: + - type: Transform + pos: -125.5,50.5 + parent: 2 + - uid: 28995 + components: + - type: Transform + pos: -125.5,49.5 + parent: 2 + - uid: 28996 + components: + - type: Transform + pos: -125.5,48.5 + parent: 2 + - uid: 28997 + components: + - type: Transform + pos: -125.5,47.5 + parent: 2 + - uid: 28998 + components: + - type: Transform + pos: -124.5,47.5 + parent: 2 + - uid: 28999 + components: + - type: Transform + pos: -123.5,47.5 + parent: 2 + - uid: 29000 + components: + - type: Transform + pos: -122.5,47.5 + parent: 2 + - uid: 29001 + components: + - type: Transform + pos: -121.5,47.5 + parent: 2 + - uid: 29002 + components: + - type: Transform + pos: -120.5,47.5 + parent: 2 + - uid: 29003 + components: + - type: Transform + pos: -119.5,47.5 + parent: 2 + - uid: 29004 + components: + - type: Transform + pos: -119.5,48.5 + parent: 2 + - uid: 29005 + components: + - type: Transform + pos: -119.5,49.5 + parent: 2 + - uid: 29006 + components: + - type: Transform + pos: -118.5,49.5 + parent: 2 + - uid: 29007 + components: + - type: Transform + pos: -118.5,50.5 + parent: 2 + - uid: 29009 + components: + - type: Transform + pos: -116.5,50.5 + parent: 2 + - uid: 29189 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29197 + components: + - type: Transform + pos: -127.5,18.5 + parent: 2 + - uid: 29199 + components: + - type: Transform + pos: -126.5,18.5 + parent: 2 + - uid: 29482 + components: + - type: Transform + pos: -111.5,32.5 + parent: 2 + - uid: 29486 + components: + - type: Transform + pos: -109.5,32.5 + parent: 2 + - uid: 29487 + components: + - type: Transform + pos: -110.5,33.5 + parent: 2 + - uid: 29488 + components: + - type: Transform + pos: -110.5,34.5 + parent: 2 + - uid: 29489 + components: + - type: Transform + pos: -110.5,35.5 + parent: 2 + - uid: 29490 + components: + - type: Transform + pos: -110.5,36.5 + parent: 2 + - uid: 29491 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 29492 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 29493 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 29494 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 29495 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 29496 + components: + - type: Transform + pos: -106.5,33.5 + parent: 2 + - uid: 29497 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 29498 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 29499 + components: + - type: Transform + pos: -114.5,33.5 + parent: 2 + - uid: 29500 + components: + - type: Transform + pos: -113.5,34.5 + parent: 2 + - uid: 29501 + components: + - type: Transform + pos: -112.5,34.5 + parent: 2 + - uid: 29502 + components: + - type: Transform + pos: -111.5,34.5 + parent: 2 + - uid: 29504 + components: + - type: Transform + pos: -109.5,34.5 + parent: 2 + - uid: 29505 + components: + - type: Transform + pos: -108.5,34.5 + parent: 2 + - uid: 29506 + components: + - type: Transform + pos: -107.5,34.5 + parent: 2 + - uid: 29507 + components: + - type: Transform + pos: -110.5,31.5 + parent: 2 + - uid: 29508 + components: + - type: Transform + pos: -110.5,30.5 + parent: 2 + - uid: 29512 + components: + - type: Transform + pos: -109.5,30.5 + parent: 2 + - uid: 29514 + components: + - type: Transform + pos: -108.5,29.5 + parent: 2 + - uid: 29872 + components: + - type: Transform + pos: -90.5,35.5 + parent: 2 + - uid: 29900 + components: + - type: Transform + pos: -93.5,49.5 + parent: 2 + - uid: 29943 + components: + - type: Transform + pos: -91.5,35.5 + parent: 2 + - uid: 29978 + components: + - type: Transform + pos: -95.5,50.5 + parent: 2 + - uid: 29979 + components: + - type: Transform + pos: -95.5,51.5 + parent: 2 + - uid: 29980 + components: + - type: Transform + pos: -95.5,52.5 + parent: 2 + - uid: 29981 + components: + - type: Transform + pos: -95.5,53.5 + parent: 2 + - uid: 29982 + components: + - type: Transform + pos: -95.5,54.5 + parent: 2 + - uid: 29983 + components: + - type: Transform + pos: -96.5,54.5 + parent: 2 + - uid: 29984 + components: + - type: Transform + pos: -97.5,54.5 + parent: 2 + - uid: 29985 + components: + - type: Transform + pos: -98.5,54.5 + parent: 2 + - uid: 29986 + components: + - type: Transform + pos: -98.5,53.5 + parent: 2 + - uid: 29987 + components: + - type: Transform + pos: -99.5,53.5 + parent: 2 + - uid: 29988 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 29989 + components: + - type: Transform + pos: -99.5,51.5 + parent: 2 + - uid: 29990 + components: + - type: Transform + pos: -99.5,50.5 + parent: 2 + - uid: 29991 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - uid: 29993 + components: + - type: Transform + pos: -93.5,47.5 + parent: 2 + - uid: 29994 + components: + - type: Transform + pos: -94.5,47.5 + parent: 2 + - uid: 29995 + components: + - type: Transform + pos: -95.5,47.5 + parent: 2 + - uid: 29996 + components: + - type: Transform + pos: -96.5,47.5 + parent: 2 + - uid: 29997 + components: + - type: Transform + pos: -97.5,47.5 + parent: 2 + - uid: 29998 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - uid: 29999 + components: + - type: Transform + pos: -99.5,47.5 + parent: 2 + - uid: 30000 + components: + - type: Transform + pos: -99.5,49.5 + parent: 2 + - uid: 30001 + components: + - type: Transform + pos: -99.5,48.5 + parent: 2 + - uid: 30002 + components: + - type: Transform + pos: -93.5,45.5 + parent: 2 + - uid: 30003 + components: + - type: Transform + pos: -92.5,45.5 + parent: 2 + - uid: 30004 + components: + - type: Transform + pos: -91.5,45.5 + parent: 2 + - uid: 30005 + components: + - type: Transform + pos: -90.5,45.5 + parent: 2 + - uid: 30006 + components: + - type: Transform + pos: -93.5,46.5 + parent: 2 + - uid: 30009 + components: + - type: Transform + pos: -89.5,35.5 + parent: 2 + - uid: 30011 + components: + - type: Transform + pos: -89.5,36.5 + parent: 2 + - uid: 30012 + components: + - type: Transform + pos: -89.5,37.5 + parent: 2 + - uid: 30013 + components: + - type: Transform + pos: -89.5,38.5 + parent: 2 + - uid: 30014 + components: + - type: Transform + pos: -89.5,39.5 + parent: 2 + - uid: 30015 + components: + - type: Transform + pos: -89.5,40.5 + parent: 2 + - uid: 30016 + components: + - type: Transform + pos: -89.5,41.5 + parent: 2 + - uid: 30017 + components: + - type: Transform + pos: -89.5,42.5 + parent: 2 + - uid: 30018 + components: + - type: Transform + pos: -89.5,43.5 + parent: 2 + - uid: 30021 + components: + - type: Transform + pos: -90.5,43.5 + parent: 2 + - uid: 30022 + components: + - type: Transform + pos: -91.5,43.5 + parent: 2 + - uid: 30023 + components: + - type: Transform + pos: -92.5,43.5 + parent: 2 + - uid: 30024 + components: + - type: Transform + pos: -92.5,44.5 + parent: 2 + - uid: 30057 + components: + - type: Transform + pos: -94.5,45.5 + parent: 2 + - uid: 30059 + components: + - type: Transform + pos: -94.5,44.5 + parent: 2 + - uid: 30344 + components: + - type: Transform + pos: -130.5,26.5 + parent: 2 + - uid: 30346 + components: + - type: Transform + pos: -129.5,26.5 + parent: 2 + - uid: 30348 + components: + - type: Transform + pos: -129.5,27.5 + parent: 2 + - uid: 30349 + components: + - type: Transform + pos: -129.5,28.5 + parent: 2 + - uid: 30350 + components: + - type: Transform + pos: -129.5,29.5 + parent: 2 + - uid: 30351 + components: + - type: Transform + pos: -129.5,30.5 + parent: 2 + - uid: 30352 + components: + - type: Transform + pos: -129.5,31.5 + parent: 2 + - uid: 30353 + components: + - type: Transform + pos: -129.5,32.5 + parent: 2 + - uid: 30354 + components: + - type: Transform + pos: -129.5,33.5 + parent: 2 + - uid: 30355 + components: + - type: Transform + pos: -127.5,28.5 + parent: 2 + - uid: 30400 + components: + - type: Transform + pos: -124.5,24.5 + parent: 2 + - uid: 30401 + components: + - type: Transform + pos: -123.5,26.5 + parent: 2 + - uid: 30426 + components: + - type: Transform + pos: -124.5,23.5 + parent: 2 + - uid: 30471 + components: + - type: Transform + pos: -135.5,20.5 + parent: 2 + - uid: 30472 + components: + - type: Transform + pos: -135.5,21.5 + parent: 2 + - uid: 30473 + components: + - type: Transform + pos: -135.5,22.5 + parent: 2 + - uid: 30474 + components: + - type: Transform + pos: -135.5,25.5 + parent: 2 + - uid: 30475 + components: + - type: Transform + pos: -135.5,26.5 + parent: 2 + - uid: 30476 + components: + - type: Transform + pos: -135.5,27.5 + parent: 2 + - uid: 30477 + components: + - type: Transform + pos: -135.5,29.5 + parent: 2 + - uid: 30478 + components: + - type: Transform + pos: -135.5,28.5 + parent: 2 + - uid: 30479 + components: + - type: Transform + pos: -137.5,35.5 + parent: 2 + - uid: 30488 + components: + - type: Transform + pos: -145.5,17.5 + parent: 2 + - uid: 30489 + components: + - type: Transform + pos: -146.5,17.5 + parent: 2 + - uid: 30536 + components: + - type: Transform + pos: -126.5,61.5 + parent: 2 + - uid: 30537 + components: + - type: Transform + pos: -125.5,61.5 + parent: 2 + - uid: 30538 + components: + - type: Transform + pos: -124.5,61.5 + parent: 2 + - uid: 30539 + components: + - type: Transform + pos: -123.5,61.5 + parent: 2 + - uid: 30540 + components: + - type: Transform + pos: -122.5,61.5 + parent: 2 + - uid: 30541 + components: + - type: Transform + pos: -121.5,61.5 + parent: 2 + - uid: 30542 + components: + - type: Transform + pos: -120.5,61.5 + parent: 2 + - uid: 30543 + components: + - type: Transform + pos: -119.5,61.5 + parent: 2 + - uid: 30546 + components: + - type: Transform + pos: -117.5,62.5 + parent: 2 + - uid: 30547 + components: + - type: Transform + pos: -117.5,63.5 + parent: 2 + - uid: 30548 + components: + - type: Transform + pos: -117.5,64.5 + parent: 2 + - uid: 30549 + components: + - type: Transform + pos: -117.5,65.5 + parent: 2 + - uid: 30550 + components: + - type: Transform + pos: -117.5,66.5 + parent: 2 + - uid: 30551 + components: + - type: Transform + pos: -117.5,67.5 + parent: 2 + - uid: 30563 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 30713 + components: + - type: Transform + pos: -123.5,16.5 + parent: 2 + - uid: 30941 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 30902 + - uid: 30942 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 30902 + - uid: 30943 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 30902 + - uid: 30944 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 30902 + - uid: 30945 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 30902 + - uid: 30946 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 30947 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 30902 + - uid: 31018 + components: + - type: Transform + pos: -81.5,95.5 + parent: 2 + - uid: 31019 + components: + - type: Transform + pos: -82.5,95.5 + parent: 2 + - uid: 31020 + components: + - type: Transform + pos: -83.5,95.5 + parent: 2 + - uid: 31282 + components: + - type: Transform + pos: -99.5,144.5 + parent: 2 + - uid: 31283 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 31284 + components: + - type: Transform + pos: -97.5,144.5 + parent: 2 + - uid: 31430 + components: + - type: Transform + pos: -29.5,104.5 + parent: 2 + - uid: 31431 + components: + - type: Transform + pos: -29.5,100.5 + parent: 2 + - uid: 31432 + components: + - type: Transform + pos: -30.5,99.5 + parent: 2 + - uid: 31434 + components: + - type: Transform + pos: -29.5,101.5 + parent: 2 + - uid: 31435 + components: + - type: Transform + pos: -30.5,104.5 + parent: 2 + - uid: 31552 + components: + - type: Transform + pos: -97.5,153.5 + parent: 2 + - uid: 31563 + components: + - type: Transform + pos: -47.5,73.5 + parent: 2 + - uid: 31564 + components: + - type: Transform + pos: -47.5,72.5 + parent: 2 + - uid: 31565 + components: + - type: Transform + pos: -47.5,71.5 + parent: 2 + - uid: 31566 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 31567 + components: + - type: Transform + pos: -46.5,70.5 + parent: 2 + - uid: 31568 + components: + - type: Transform + pos: -46.5,69.5 + parent: 2 + - uid: 31569 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 32356 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 32357 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 32358 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 32359 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 32360 + components: + - type: Transform + pos: -59.5,1.5 + parent: 2 + - uid: 32361 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 32362 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 32363 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 32364 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 32365 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 32366 + components: + - type: Transform + pos: -59.5,7.5 + parent: 2 + - uid: 32367 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 32368 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 32369 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 32370 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 32882 + components: + - type: Transform + pos: -96.5,144.5 + parent: 2 + - uid: 32883 + components: + - type: Transform + pos: -95.5,144.5 + parent: 2 + - uid: 32884 + components: + - type: Transform + pos: -94.5,144.5 + parent: 2 + - uid: 32885 + components: + - type: Transform + pos: -93.5,144.5 + parent: 2 + - uid: 32886 + components: + - type: Transform + pos: -92.5,144.5 + parent: 2 + - uid: 32887 + components: + - type: Transform + pos: -91.5,144.5 + parent: 2 + - uid: 32888 + components: + - type: Transform + pos: -90.5,144.5 + parent: 2 + - uid: 32889 + components: + - type: Transform + pos: -89.5,144.5 + parent: 2 + - uid: 32890 + components: + - type: Transform + pos: -88.5,144.5 + parent: 2 + - uid: 32891 + components: + - type: Transform + pos: -87.5,144.5 + parent: 2 + - uid: 32892 + components: + - type: Transform + pos: -86.5,144.5 + parent: 2 + - uid: 32893 + components: + - type: Transform + pos: -85.5,144.5 + parent: 2 + - uid: 32894 + components: + - type: Transform + pos: -84.5,144.5 + parent: 2 + - uid: 32895 + components: + - type: Transform + pos: -83.5,144.5 + parent: 2 + - uid: 32896 + components: + - type: Transform + pos: -83.5,145.5 + parent: 2 + - uid: 32897 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - uid: 32898 + components: + - type: Transform + pos: -81.5,145.5 + parent: 2 + - uid: 32899 + components: + - type: Transform + pos: -80.5,145.5 + parent: 2 + - uid: 32900 + components: + - type: Transform + pos: -79.5,145.5 + parent: 2 + - uid: 32901 + components: + - type: Transform + pos: -78.5,145.5 + parent: 2 + - uid: 32902 + components: + - type: Transform + pos: -77.5,145.5 + parent: 2 + - uid: 32903 + components: + - type: Transform + pos: -76.5,145.5 + parent: 2 + - uid: 32904 + components: + - type: Transform + pos: -76.5,146.5 + parent: 2 + - uid: 32905 + components: + - type: Transform + pos: -76.5,147.5 + parent: 2 + - uid: 32906 + components: + - type: Transform + pos: -75.5,147.5 + parent: 2 + - uid: 32910 + components: + - type: Transform + pos: -68.5,153.5 + parent: 2 + - uid: 32911 + components: + - type: Transform + pos: -68.5,154.5 + parent: 2 + - uid: 32912 + components: + - type: Transform + pos: -68.5,155.5 + parent: 2 + - uid: 32913 + components: + - type: Transform + pos: -68.5,156.5 + parent: 2 + - uid: 32914 + components: + - type: Transform + pos: -68.5,157.5 + parent: 2 + - uid: 32915 + components: + - type: Transform + pos: -68.5,158.5 + parent: 2 + - uid: 32916 + components: + - type: Transform + pos: -68.5,159.5 + parent: 2 + - uid: 32917 + components: + - type: Transform + pos: -68.5,160.5 + parent: 2 + - uid: 32918 + components: + - type: Transform + pos: -68.5,161.5 + parent: 2 + - uid: 32919 + components: + - type: Transform + pos: -68.5,162.5 + parent: 2 + - uid: 32920 + components: + - type: Transform + pos: -67.5,162.5 + parent: 2 + - uid: 32921 + components: + - type: Transform + pos: -66.5,162.5 + parent: 2 + - uid: 32922 + components: + - type: Transform + pos: -65.5,162.5 + parent: 2 + - uid: 32923 + components: + - type: Transform + pos: -64.5,162.5 + parent: 2 + - uid: 32924 + components: + - type: Transform + pos: -63.5,162.5 + parent: 2 + - uid: 32925 + components: + - type: Transform + pos: -62.5,162.5 + parent: 2 + - uid: 32926 + components: + - type: Transform + pos: -61.5,162.5 + parent: 2 + - uid: 32927 + components: + - type: Transform + pos: -60.5,162.5 + parent: 2 + - uid: 32928 + components: + - type: Transform + pos: -59.5,162.5 + parent: 2 + - uid: 32929 + components: + - type: Transform + pos: -58.5,162.5 + parent: 2 + - uid: 32930 + components: + - type: Transform + pos: -59.5,163.5 + parent: 2 + - uid: 32931 + components: + - type: Transform + pos: -59.5,164.5 + parent: 2 + - uid: 32932 + components: + - type: Transform + pos: -59.5,165.5 + parent: 2 + - uid: 32933 + components: + - type: Transform + pos: -59.5,166.5 + parent: 2 + - uid: 32934 + components: + - type: Transform + pos: -59.5,167.5 + parent: 2 + - uid: 32935 + components: + - type: Transform + pos: -59.5,168.5 + parent: 2 + - uid: 32936 + components: + - type: Transform + pos: -59.5,169.5 + parent: 2 + - uid: 32937 + components: + - type: Transform + pos: -61.5,169.5 + parent: 2 + - uid: 32938 + components: + - type: Transform + pos: -61.5,170.5 + parent: 2 + - uid: 33427 + components: + - type: Transform + pos: -81.5,83.5 + parent: 2 + - uid: 33435 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 33453 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 33565 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 33999 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 34579 + components: + - type: Transform + pos: -128.5,93.5 + parent: 2 + - uid: 34649 + components: + - type: Transform + pos: -128.5,94.5 + parent: 2 + - uid: 34661 + components: + - type: Transform + pos: -119.5,45.5 + parent: 2 + - uid: 34662 + components: + - type: Transform + pos: -119.5,44.5 + parent: 2 + - uid: 34663 + components: + - type: Transform + pos: -119.5,43.5 + parent: 2 + - uid: 34664 + components: + - type: Transform + pos: -119.5,42.5 + parent: 2 + - uid: 34665 + components: + - type: Transform + pos: -118.5,42.5 + parent: 2 + - uid: 34666 + components: + - type: Transform + pos: -117.5,42.5 + parent: 2 + - uid: 34667 + components: + - type: Transform + pos: -116.5,42.5 + parent: 2 + - uid: 34668 + components: + - type: Transform + pos: -116.5,41.5 + parent: 2 + - uid: 34669 + components: + - type: Transform + pos: -116.5,40.5 + parent: 2 + - uid: 34670 + components: + - type: Transform + pos: -116.5,39.5 + parent: 2 + - uid: 34671 + components: + - type: Transform + pos: -116.5,38.5 + parent: 2 + - uid: 34672 + components: + - type: Transform + pos: -116.5,37.5 + parent: 2 + - uid: 34673 + components: + - type: Transform + pos: -116.5,36.5 + parent: 2 + - uid: 34674 + components: + - type: Transform + pos: -116.5,35.5 + parent: 2 + - uid: 34675 + components: + - type: Transform + pos: -116.5,34.5 + parent: 2 + - uid: 34676 + components: + - type: Transform + pos: -117.5,34.5 + parent: 2 + - uid: 34677 + components: + - type: Transform + pos: -118.5,34.5 + parent: 2 + - uid: 34678 + components: + - type: Transform + pos: -118.5,33.5 + parent: 2 + - uid: 34679 + components: + - type: Transform + pos: -118.5,32.5 + parent: 2 + - uid: 34680 + components: + - type: Transform + pos: -119.5,32.5 + parent: 2 + - uid: 34681 + components: + - type: Transform + pos: -120.5,32.5 + parent: 2 + - uid: 34682 + components: + - type: Transform + pos: -121.5,32.5 + parent: 2 + - uid: 34683 + components: + - type: Transform + pos: -121.5,33.5 + parent: 2 + - uid: 34684 + components: + - type: Transform + pos: -121.5,34.5 + parent: 2 + - uid: 34685 + components: + - type: Transform + pos: -121.5,35.5 + parent: 2 + - uid: 34686 + components: + - type: Transform + pos: -121.5,36.5 + parent: 2 + - uid: 34687 + components: + - type: Transform + pos: -121.5,37.5 + parent: 2 + - uid: 34688 + components: + - type: Transform + pos: -121.5,38.5 + parent: 2 + - uid: 34689 + components: + - type: Transform + pos: -121.5,39.5 + parent: 2 + - uid: 34690 + components: + - type: Transform + pos: -122.5,39.5 + parent: 2 + - uid: 34695 + components: + - type: Transform + pos: -127.5,39.5 + parent: 2 + - uid: 34798 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 34799 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 34839 + components: + - type: Transform + pos: 0.5,211.5 + parent: 2 + - uid: 34840 + components: + - type: Transform + pos: 0.5,212.5 + parent: 2 + - uid: 34841 + components: + - type: Transform + pos: 0.5,213.5 + parent: 2 + - uid: 34842 + components: + - type: Transform + pos: -0.5,213.5 + parent: 2 + - uid: 34843 + components: + - type: Transform + pos: -1.5,213.5 + parent: 2 + - uid: 34845 + components: + - type: Transform + pos: 1.5,213.5 + parent: 2 + - uid: 34846 + components: + - type: Transform + pos: 1.5,214.5 + parent: 2 + - uid: 34847 + components: + - type: Transform + pos: 1.5,215.5 + parent: 2 + - uid: 34848 + components: + - type: Transform + pos: 1.5,216.5 + parent: 2 + - uid: 34849 + components: + - type: Transform + pos: 1.5,217.5 + parent: 2 + - uid: 35054 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 35439 + components: + - type: Transform + pos: -102.5,148.5 + parent: 2 + - uid: 35440 + components: + - type: Transform + pos: -103.5,148.5 + parent: 2 + - uid: 35441 + components: + - type: Transform + pos: -103.5,147.5 + parent: 2 + - uid: 35475 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 35664 + components: + - type: Transform + pos: -97.5,99.5 + parent: 2 + - uid: 35665 + components: + - type: Transform + pos: -98.5,99.5 + parent: 2 + - uid: 35666 + components: + - type: Transform + pos: -99.5,99.5 + parent: 2 + - uid: 35667 + components: + - type: Transform + pos: -100.5,99.5 + parent: 2 + - uid: 35668 + components: + - type: Transform + pos: -101.5,99.5 + parent: 2 + - uid: 35669 + components: + - type: Transform + pos: -102.5,99.5 + parent: 2 + - uid: 35670 + components: + - type: Transform + pos: -103.5,99.5 + parent: 2 + - uid: 35671 + components: + - type: Transform + pos: -104.5,99.5 + parent: 2 + - uid: 35672 + components: + - type: Transform + pos: -104.5,98.5 + parent: 2 + - uid: 35777 + components: + - type: Transform + pos: -103.5,102.5 + parent: 2 + - uid: 35778 + components: + - type: Transform + pos: -103.5,103.5 + parent: 2 + - uid: 35779 + components: + - type: Transform + pos: -102.5,103.5 + parent: 2 + - uid: 35780 + components: + - type: Transform + pos: -102.5,104.5 + parent: 2 + - uid: 35781 + components: + - type: Transform + pos: -103.5,101.5 + parent: 2 + - uid: 35859 + components: + - type: Transform + pos: -30.5,186.5 + parent: 2 + - uid: 35860 + components: + - type: Transform + pos: -30.5,185.5 + parent: 2 + - uid: 35861 + components: + - type: Transform + pos: -30.5,184.5 + parent: 2 + - uid: 35862 + components: + - type: Transform + pos: -30.5,183.5 + parent: 2 + - uid: 35863 + components: + - type: Transform + pos: -30.5,182.5 + parent: 2 + - uid: 35864 + components: + - type: Transform + pos: -30.5,181.5 + parent: 2 + - uid: 35865 + components: + - type: Transform + pos: -30.5,180.5 + parent: 2 + - uid: 35866 + components: + - type: Transform + pos: -30.5,179.5 + parent: 2 + - uid: 35867 + components: + - type: Transform + pos: -30.5,178.5 + parent: 2 + - uid: 35868 + components: + - type: Transform + pos: -30.5,177.5 + parent: 2 + - uid: 35869 + components: + - type: Transform + pos: -29.5,177.5 + parent: 2 + - uid: 35870 + components: + - type: Transform + pos: -28.5,177.5 + parent: 2 + - uid: 35871 + components: + - type: Transform + pos: -27.5,177.5 + parent: 2 + - uid: 35872 + components: + - type: Transform + pos: -26.5,177.5 + parent: 2 + - uid: 35873 + components: + - type: Transform + pos: -25.5,177.5 + parent: 2 + - uid: 35874 + components: + - type: Transform + pos: -30.5,189.5 + parent: 2 + - uid: 35906 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 36104 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 36111 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 36112 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 36114 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 36115 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 36116 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 36155 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 36497 + components: + - type: Transform + pos: -128.5,95.5 + parent: 2 + - uid: 36498 + components: + - type: Transform + pos: -128.5,96.5 + parent: 2 + - uid: 36499 + components: + - type: Transform + pos: -128.5,97.5 + parent: 2 + - uid: 36500 + components: + - type: Transform + pos: -128.5,98.5 + parent: 2 + - uid: 36501 + components: + - type: Transform + pos: -128.5,99.5 + parent: 2 + - uid: 36502 + components: + - type: Transform + pos: -128.5,100.5 + parent: 2 + - uid: 36503 + components: + - type: Transform + pos: -128.5,101.5 + parent: 2 + - uid: 36506 + components: + - type: Transform + pos: -124.5,16.5 + parent: 2 + - uid: 36618 + components: + - type: Transform + pos: -32.5,106.5 + parent: 2 + - uid: 36619 + components: + - type: Transform + pos: -31.5,106.5 + parent: 2 + - uid: 36620 + components: + - type: Transform + pos: -30.5,106.5 + parent: 2 + - uid: 36621 + components: + - type: Transform + pos: -29.5,106.5 + parent: 2 + - uid: 36622 + components: + - type: Transform + pos: -28.5,106.5 + parent: 2 + - uid: 36623 + components: + - type: Transform + pos: -27.5,106.5 + parent: 2 + - uid: 36624 + components: + - type: Transform + pos: -27.5,105.5 + parent: 2 + - uid: 36625 + components: + - type: Transform + pos: -26.5,105.5 + parent: 2 + - uid: 36626 + components: + - type: Transform + pos: -26.5,104.5 + parent: 2 + - uid: 36627 + components: + - type: Transform + pos: -25.5,104.5 + parent: 2 + - uid: 36628 + components: + - type: Transform + pos: -25.5,103.5 + parent: 2 + - uid: 36629 + components: + - type: Transform + pos: -24.5,103.5 + parent: 2 + - uid: 36630 + components: + - type: Transform + pos: -24.5,102.5 + parent: 2 + - uid: 36632 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 36633 + components: + - type: Transform + pos: -34.5,109.5 + parent: 2 + - uid: 36634 + components: + - type: Transform + pos: -35.5,109.5 + parent: 2 + - uid: 36635 + components: + - type: Transform + pos: -35.5,110.5 + parent: 2 + - uid: 36636 + components: + - type: Transform + pos: -36.5,110.5 + parent: 2 + - uid: 36637 + components: + - type: Transform + pos: -37.5,110.5 + parent: 2 + - uid: 36638 + components: + - type: Transform + pos: -38.5,110.5 + parent: 2 + - uid: 36639 + components: + - type: Transform + pos: -38.5,111.5 + parent: 2 + - uid: 36640 + components: + - type: Transform + pos: -39.5,111.5 + parent: 2 + - uid: 36641 + components: + - type: Transform + pos: -40.5,111.5 + parent: 2 + - uid: 36642 + components: + - type: Transform + pos: -41.5,111.5 + parent: 2 + - uid: 36643 + components: + - type: Transform + pos: -42.5,111.5 + parent: 2 + - uid: 36644 + components: + - type: Transform + pos: -42.5,110.5 + parent: 2 + - uid: 36645 + components: + - type: Transform + pos: -43.5,110.5 + parent: 2 + - uid: 36646 + components: + - type: Transform + pos: -44.5,110.5 + parent: 2 + - uid: 36647 + components: + - type: Transform + pos: -45.5,110.5 + parent: 2 + - uid: 36648 + components: + - type: Transform + pos: -45.5,109.5 + parent: 2 + - uid: 36649 + components: + - type: Transform + pos: -46.5,109.5 + parent: 2 + - uid: 36650 + components: + - type: Transform + pos: -46.5,108.5 + parent: 2 + - uid: 37324 + components: + - type: Transform + pos: -123.5,39.5 + parent: 2 + - uid: 37639 + components: + - type: Transform + pos: -101.5,56.5 + parent: 2 + - uid: 37642 + components: + - type: Transform + pos: -100.5,53.5 + parent: 2 + - uid: 37650 + components: + - type: Transform + pos: -101.5,53.5 + parent: 2 + - uid: 37651 + components: + - type: Transform + pos: -101.5,54.5 + parent: 2 + - uid: 37652 + components: + - type: Transform + pos: -101.5,55.5 + parent: 2 + - uid: 37654 + components: + - type: Transform + pos: -101.5,57.5 + parent: 2 + - uid: 37655 + components: + - type: Transform + pos: -101.5,58.5 + parent: 2 + - uid: 37656 + components: + - type: Transform + pos: -101.5,59.5 + parent: 2 + - uid: 37657 + components: + - type: Transform + pos: -101.5,60.5 + parent: 2 + - uid: 37658 + components: + - type: Transform + pos: -101.5,61.5 + parent: 2 + - uid: 37659 + components: + - type: Transform + pos: -102.5,61.5 + parent: 2 + - uid: 37660 + components: + - type: Transform + pos: -102.5,62.5 + parent: 2 + - uid: 37661 + components: + - type: Transform + pos: -103.5,62.5 + parent: 2 + - uid: 37720 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 37722 + components: + - type: Transform + pos: 3.5,80.5 + parent: 2 + - uid: 37723 + components: + - type: Transform + pos: 5.5,80.5 + parent: 2 + - uid: 37724 + components: + - type: Transform + pos: 6.5,80.5 + parent: 2 + - uid: 37725 + components: + - type: Transform + pos: 6.5,81.5 + parent: 2 + - uid: 37726 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 37922 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - uid: 37923 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 37842 + - uid: 37924 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 37842 + - uid: 37925 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 37842 + - uid: 37926 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 37842 + - uid: 38042 + components: + - type: Transform + pos: -79.5,87.5 + parent: 2 + - uid: 38249 + components: + - type: Transform + pos: -129.5,39.5 + parent: 2 + - uid: 38250 + components: + - type: Transform + pos: -126.5,39.5 + parent: 2 + - uid: 38254 + components: + - type: Transform + pos: -40.5,70.5 + parent: 2 + - uid: 38255 + components: + - type: Transform + pos: -40.5,71.5 + parent: 2 + - uid: 38256 + components: + - type: Transform + pos: -41.5,70.5 + parent: 2 + - uid: 38257 + components: + - type: Transform + pos: -42.5,70.5 + parent: 2 + - uid: 38258 + components: + - type: Transform + pos: -39.5,70.5 + parent: 2 + - uid: 38259 + components: + - type: Transform + pos: -38.5,70.5 + parent: 2 + - uid: 39239 + components: + - type: Transform + pos: -70.5,101.5 + parent: 2 + - uid: 39240 + components: + - type: Transform + pos: -70.5,102.5 + parent: 2 + - uid: 39241 + components: + - type: Transform + pos: -70.5,103.5 + parent: 2 + - uid: 39242 + components: + - type: Transform + pos: -70.5,104.5 + parent: 2 + - uid: 39243 + components: + - type: Transform + pos: -70.5,105.5 + parent: 2 + - uid: 39244 + components: + - type: Transform + pos: -70.5,106.5 + parent: 2 + - uid: 39245 + components: + - type: Transform + pos: -70.5,107.5 + parent: 2 + - uid: 39246 + components: + - type: Transform + pos: -70.5,108.5 + parent: 2 + - uid: 39247 + components: + - type: Transform + pos: -70.5,109.5 + parent: 2 + - uid: 39248 + components: + - type: Transform + pos: -70.5,110.5 + parent: 2 + - uid: 39249 + components: + - type: Transform + pos: -70.5,111.5 + parent: 2 + - uid: 39250 + components: + - type: Transform + pos: -71.5,111.5 + parent: 2 + - uid: 39251 + components: + - type: Transform + pos: -72.5,111.5 + parent: 2 + - uid: 39252 + components: + - type: Transform + pos: -72.5,112.5 + parent: 2 + - uid: 39253 + components: + - type: Transform + pos: -72.5,113.5 + parent: 2 + - uid: 39408 + components: + - type: Transform + pos: -16.5,165.5 + parent: 2 + - uid: 39409 + components: + - type: Transform + pos: -14.5,165.5 + parent: 2 + - uid: 39410 + components: + - type: Transform + pos: -13.5,165.5 + parent: 2 + - uid: 39411 + components: + - type: Transform + pos: -11.5,165.5 + parent: 2 + - uid: 39473 + components: + - type: Transform + pos: -119.5,62.5 + parent: 2 + - uid: 39474 + components: + - type: Transform + pos: -118.5,62.5 + parent: 2 + - uid: 43186 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 + - uid: 43187 + components: + - type: Transform + pos: 53.5,59.5 + parent: 2 + - uid: 43188 + components: + - type: Transform + pos: 53.5,58.5 + parent: 2 + - uid: 43189 + components: + - type: Transform + pos: 53.5,57.5 + parent: 2 + - uid: 43190 + components: + - type: Transform + pos: 53.5,56.5 + parent: 2 + - uid: 43191 + components: + - type: Transform + pos: 53.5,55.5 + parent: 2 + - uid: 43192 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 + - uid: 43193 + components: + - type: Transform + pos: 54.5,54.5 + parent: 2 + - uid: 43194 + components: + - type: Transform + pos: 55.5,54.5 + parent: 2 + - uid: 43248 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 43347 + components: + - type: Transform + pos: -125.5,16.5 + parent: 2 + - uid: 43348 + components: + - type: Transform + pos: -121.5,28.5 + parent: 2 + - uid: 43352 + components: + - type: Transform + pos: -127.5,16.5 + parent: 2 + - uid: 43355 + components: + - type: Transform + pos: -122.5,16.5 + parent: 2 + - uid: 43356 + components: + - type: Transform + pos: -126.5,16.5 + parent: 2 + - uid: 43360 + components: + - type: Transform + pos: -121.5,27.5 + parent: 2 + - uid: 43376 + components: + - type: Transform + pos: -121.5,29.5 + parent: 2 + - uid: 43380 + components: + - type: Transform + pos: -121.5,26.5 + parent: 2 + - uid: 43381 + components: + - type: Transform + pos: -122.5,26.5 + parent: 2 +- proto: CableMVStack1 + entities: + - uid: 13849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.43013,45.281586 + parent: 2 + - uid: 35799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.90899,102.56256 + parent: 2 + - uid: 35800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.73878,102.37107 + parent: 2 + - uid: 35801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.99409,102.37107 + parent: 2 +- proto: CableTerminal + entities: + - uid: 4186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,54.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,53.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,55.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,104.5 + parent: 2 + - uid: 17697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-5.5 + parent: 2 + - uid: 17795 + components: + - type: Transform + pos: -47.5,67.5 + parent: 2 + - uid: 23744 + components: + - type: Transform + pos: -125.5,60.5 + parent: 2 + - uid: 26501 + components: + - type: Transform + pos: -46.5,67.5 + parent: 2 + - uid: 29418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-5.5 + parent: 2 + - uid: 33328 + components: + - type: Transform + pos: -1.5,216.5 + parent: 2 + - uid: 33329 + components: + - type: Transform + pos: -0.5,216.5 + parent: 2 + - uid: 34534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,107.5 + parent: 2 + - uid: 35390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,149.5 + parent: 2 + - uid: 35391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,147.5 + parent: 2 + - uid: 35449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,20.5 + parent: 2 + - uid: 35450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,21.5 + parent: 2 + - uid: 37570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,53.5 + parent: 2 + - uid: 37571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,54.5 + parent: 2 + - uid: 37572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,55.5 + parent: 2 + - uid: 37927 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 37842 +- proto: CandleRedInfinite + entities: + - uid: 8830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.58414,89.51887 + parent: 2 + - uid: 8831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.41246,89.38684 + parent: 2 + - uid: 8832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.3675,90.54865 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 7397 + components: + - type: Transform + parent: 7394 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7398 + components: + - type: Transform + parent: 7394 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CapacitorStockPart + entities: + - uid: 4227 + components: + - type: Transform + pos: -113.61157,34.633347 + parent: 2 + - uid: 5026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.729836,56.75826 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -113.64282,34.61772 + parent: 2 + - uid: 12291 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CaptainIDCard + entities: + - uid: 13652 + components: + - type: Transform + pos: -34.526817,98.49411 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 2613 + components: + - type: Transform + pos: 37.5,59.5 + parent: 2 +- proto: Carpet + entities: + - uid: 1858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,66.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,66.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,66.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,67.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,67.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,67.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,67.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,66.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,67.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,66.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,67.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,63.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,62.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,62.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,63.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,63.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,62.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 8705 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11022 + components: + - type: Transform + pos: 0.5,74.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + pos: -76.5,93.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + pos: -75.5,95.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + pos: -75.5,93.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + pos: -76.5,83.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + pos: -74.5,93.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: -75.5,94.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: -77.5,95.5 + parent: 2 + - uid: 14638 + components: + - type: Transform + pos: -78.5,82.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: -77.5,83.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: -77.5,82.5 + parent: 2 + - uid: 14649 + components: + - type: Transform + pos: -78.5,83.5 + parent: 2 + - uid: 14651 + components: + - type: Transform + pos: -76.5,82.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: -78.5,95.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + pos: -78.5,93.5 + parent: 2 + - uid: 14999 + components: + - type: Transform + pos: -74.5,94.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + pos: -74.5,95.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + pos: -77.5,93.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - uid: 18219 + components: + - type: Transform + pos: 1.5,74.5 + parent: 2 + - uid: 22623 + components: + - type: Transform + pos: -5.5,178.5 + parent: 2 + - uid: 22625 + components: + - type: Transform + pos: -4.5,178.5 + parent: 2 + - uid: 22627 + components: + - type: Transform + pos: -3.5,178.5 + parent: 2 + - uid: 22636 + components: + - type: Transform + pos: -3.5,179.5 + parent: 2 + - uid: 22637 + components: + - type: Transform + pos: -3.5,180.5 + parent: 2 + - uid: 22638 + components: + - type: Transform + pos: -4.5,179.5 + parent: 2 + - uid: 22639 + components: + - type: Transform + pos: -4.5,180.5 + parent: 2 + - uid: 22640 + components: + - type: Transform + pos: -5.5,179.5 + parent: 2 + - uid: 22641 + components: + - type: Transform + pos: -5.5,180.5 + parent: 2 + - uid: 24244 + components: + - type: Transform + pos: -77.5,94.5 + parent: 2 + - uid: 26401 + components: + - type: Transform + pos: -76.5,94.5 + parent: 2 + - uid: 28790 + components: + - type: Transform + pos: -118.5,54.5 + parent: 2 + - uid: 28791 + components: + - type: Transform + pos: -118.5,55.5 + parent: 2 + - uid: 28792 + components: + - type: Transform + pos: -117.5,54.5 + parent: 2 + - uid: 28793 + components: + - type: Transform + pos: -117.5,55.5 + parent: 2 + - uid: 28794 + components: + - type: Transform + pos: -116.5,54.5 + parent: 2 + - uid: 28795 + components: + - type: Transform + pos: -116.5,55.5 + parent: 2 + - uid: 28796 + components: + - type: Transform + pos: -115.5,54.5 + parent: 2 + - uid: 28797 + components: + - type: Transform + pos: -115.5,55.5 + parent: 2 + - uid: 28798 + components: + - type: Transform + pos: -114.5,54.5 + parent: 2 + - uid: 28799 + components: + - type: Transform + pos: -114.5,55.5 + parent: 2 + - uid: 28800 + components: + - type: Transform + pos: -118.5,56.5 + parent: 2 + - uid: 28801 + components: + - type: Transform + pos: -117.5,56.5 + parent: 2 + - uid: 28802 + components: + - type: Transform + pos: -116.5,56.5 + parent: 2 + - uid: 28803 + components: + - type: Transform + pos: -115.5,56.5 + parent: 2 + - uid: 28804 + components: + - type: Transform + pos: -114.5,56.5 + parent: 2 + - uid: 36550 + components: + - type: Transform + pos: -78.5,94.5 + parent: 2 + - uid: 38043 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - uid: 39146 + components: + - type: Transform + pos: 83.5,66.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 1724 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,44.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,48.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,47.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,46.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,45.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,44.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,49.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,43.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,48.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,43.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,45.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,42.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,41.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,42.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: -53.5,61.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,48.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,46.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,44.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,41.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: -113.5,46.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,61.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,60.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,60.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,60.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,61.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,62.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,63.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-10.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,63.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,63.5 + parent: 2 + - uid: 10961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,61.5 + parent: 2 + - uid: 10962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,63.5 + parent: 2 + - uid: 10972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,62.5 + parent: 2 + - uid: 10996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,62.5 + parent: 2 + - uid: 11003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,63.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,66.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,67.5 + parent: 2 + - uid: 11060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,63.5 + parent: 2 + - uid: 11063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,63.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,62.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,62.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,62.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,62.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,61.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,61.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,70.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,69.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,69.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,69.5 + parent: 2 + - uid: 12088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,67.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,68.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,63.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,62.5 + parent: 2 + - uid: 12145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,62.5 + parent: 2 + - uid: 12146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,63.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,65.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,66.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,67.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,68.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,69.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,70.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,71.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,71.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,70.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,69.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,68.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,67.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,66.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,65.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,66.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,69.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,67.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,66.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,69.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,67.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,70.5 + parent: 2 + - uid: 13171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,70.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,69.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,70.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,61.5 + parent: 2 + - uid: 17245 + components: + - type: Transform + pos: -52.5,61.5 + parent: 2 + - uid: 22490 + components: + - type: Transform + pos: -19.5,179.5 + parent: 2 + - uid: 22729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,61.5 + parent: 2 + - uid: 23062 + components: + - type: Transform + pos: -18.5,178.5 + parent: 2 + - uid: 23068 + components: + - type: Transform + pos: -19.5,178.5 + parent: 2 + - uid: 23070 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 + - uid: 23078 + components: + - type: Transform + pos: -18.5,179.5 + parent: 2 + - uid: 23079 + components: + - type: Transform + pos: -20.5,179.5 + parent: 2 + - uid: 23087 + components: + - type: Transform + pos: -20.5,177.5 + parent: 2 + - uid: 23088 + components: + - type: Transform + pos: -19.5,177.5 + parent: 2 + - uid: 23089 + components: + - type: Transform + pos: -18.5,177.5 + parent: 2 + - uid: 24202 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 24203 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 24204 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 24205 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 24206 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 24207 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 28112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,43.5 + parent: 2 + - uid: 28115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,47.5 + parent: 2 + - uid: 28117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,41.5 + parent: 2 + - uid: 28122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,49.5 + parent: 2 + - uid: 28135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,42.5 + parent: 2 + - uid: 28150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,49.5 + parent: 2 + - uid: 29008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,47.5 + parent: 2 + - uid: 29023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,48.5 + parent: 2 + - uid: 29095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,45.5 + parent: 2 + - uid: 29096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,46.5 + parent: 2 + - uid: 29097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,47.5 + parent: 2 + - uid: 29098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,48.5 + parent: 2 + - uid: 29100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,47.5 + parent: 2 + - uid: 29104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,46.5 + parent: 2 + - uid: 34592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,88.5 + parent: 2 + - uid: 34593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,89.5 + parent: 2 + - uid: 34595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,89.5 + parent: 2 + - uid: 34596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,89.5 + parent: 2 + - uid: 34597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,88.5 + parent: 2 + - uid: 34598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,87.5 + parent: 2 + - uid: 34599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,87.5 + parent: 2 + - uid: 34600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,87.5 + parent: 2 + - uid: 34601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,87.5 + parent: 2 + - uid: 34603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,88.5 + parent: 2 + - uid: 34604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,89.5 + parent: 2 + - uid: 37590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,89.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 14454 + components: + - type: Transform + pos: -62.5,87.5 + parent: 2 + - uid: 14456 + components: + - type: Transform + pos: -63.5,87.5 + parent: 2 + - uid: 14550 + components: + - type: Transform + pos: -63.5,85.5 + parent: 2 + - uid: 14553 + components: + - type: Transform + pos: -61.5,85.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + pos: -62.5,85.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + pos: -60.5,85.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + pos: -60.5,86.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + pos: -60.5,87.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + pos: -61.5,87.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + pos: -61.5,86.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: -62.5,86.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + pos: -63.5,86.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: -64.5,85.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + pos: -64.5,86.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + pos: -64.5,87.5 + parent: 2 + - uid: 14690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,80.5 + parent: 2 + - uid: 14691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,79.5 + parent: 2 + - uid: 14692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,78.5 + parent: 2 + - uid: 14693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,78.5 + parent: 2 + - uid: 14694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,78.5 + parent: 2 + - uid: 14695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,78.5 + parent: 2 + - uid: 14696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,78.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,78.5 + parent: 2 + - uid: 14698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,78.5 + parent: 2 + - uid: 14699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,78.5 + parent: 2 + - uid: 14700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,78.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,77.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 12199 + components: + - type: Transform + pos: -60.5,68.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,70.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,70.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,68.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 3069 + components: + - type: Transform + pos: -59.5,106.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,106.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: -58.5,107.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,106.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,106.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: -59.5,107.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: -60.5,106.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -60.5,107.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: -59.5,93.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: -58.5,106.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + pos: -68.5,110.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: -69.5,110.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + pos: -68.5,111.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: -67.5,111.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + pos: -66.5,111.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + pos: -66.5,110.5 + parent: 2 + - uid: 13890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,99.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + pos: -65.5,111.5 + parent: 2 + - uid: 13940 + components: + - type: Transform + pos: -69.5,111.5 + parent: 2 + - uid: 13943 + components: + - type: Transform + pos: -63.5,110.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: -67.5,110.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: -60.5,113.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: -59.5,94.5 + parent: 2 + - uid: 14013 + components: + - type: Transform + pos: -58.5,93.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: -58.5,94.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: -57.5,93.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: -57.5,94.5 + parent: 2 + - uid: 14035 + components: + - type: Transform + pos: -64.5,111.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: -60.5,111.5 + parent: 2 + - uid: 14064 + components: + - type: Transform + pos: -63.5,111.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: -74.5,82.5 + parent: 2 + - uid: 14375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,99.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,99.5 + parent: 2 + - uid: 14377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,99.5 + parent: 2 + - uid: 14378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,99.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + pos: -65.5,110.5 + parent: 2 + - uid: 14524 + components: + - type: Transform + pos: -70.5,82.5 + parent: 2 + - uid: 14525 + components: + - type: Transform + pos: -70.5,81.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + pos: -69.5,82.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + pos: -69.5,81.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + pos: -68.5,82.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + pos: -68.5,81.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + pos: -66.5,81.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + pos: -66.5,82.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + pos: -66.5,83.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + pos: -65.5,81.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + pos: -65.5,82.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + pos: -65.5,83.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + pos: -72.5,83.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + pos: -72.5,82.5 + parent: 2 + - uid: 14637 + components: + - type: Transform + pos: -73.5,83.5 + parent: 2 + - uid: 14639 + components: + - type: Transform + pos: -73.5,82.5 + parent: 2 + - uid: 14652 + components: + - type: Transform + pos: -74.5,83.5 + parent: 2 + - uid: 14727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,73.5 + parent: 2 + - uid: 14728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,74.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,75.5 + parent: 2 + - uid: 14730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,73.5 + parent: 2 + - uid: 14731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,74.5 + parent: 2 + - uid: 14732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,75.5 + parent: 2 + - uid: 14733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,73.5 + parent: 2 + - uid: 14734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,74.5 + parent: 2 + - uid: 14735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,75.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + pos: -64.5,110.5 + parent: 2 + - uid: 15212 + components: + - type: Transform + pos: -60.5,109.5 + parent: 2 +- proto: CarpetPink + entities: + - uid: 14029 + components: + - type: Transform + pos: -60.5,101.5 + parent: 2 + - uid: 14030 + components: + - type: Transform + pos: -60.5,102.5 + parent: 2 + - uid: 14032 + components: + - type: Transform + pos: -59.5,101.5 + parent: 2 + - uid: 14033 + components: + - type: Transform + pos: -59.5,102.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 14641 + components: + - type: Transform + pos: -76.5,85.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: -76.5,86.5 + parent: 2 + - uid: 14643 + components: + - type: Transform + pos: -75.5,85.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + pos: -75.5,86.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: -74.5,85.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + pos: -74.5,86.5 + parent: 2 + - uid: 17319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,158.5 + parent: 2 + - uid: 19786 + components: + - type: Transform + pos: -84.5,154.5 + parent: 2 + - uid: 19787 + components: + - type: Transform + pos: -84.5,155.5 + parent: 2 + - uid: 19788 + components: + - type: Transform + pos: -83.5,154.5 + parent: 2 + - uid: 19789 + components: + - type: Transform + pos: -83.5,155.5 + parent: 2 + - uid: 19796 + components: + - type: Transform + pos: -89.5,160.5 + parent: 2 + - uid: 19797 + components: + - type: Transform + pos: -88.5,160.5 + parent: 2 + - uid: 19798 + components: + - type: Transform + pos: -87.5,160.5 + parent: 2 + - uid: 19799 + components: + - type: Transform + pos: -86.5,160.5 + parent: 2 + - uid: 19800 + components: + - type: Transform + pos: -85.5,160.5 + parent: 2 + - uid: 19809 + components: + - type: Transform + pos: -88.5,158.5 + parent: 2 + - uid: 19810 + components: + - type: Transform + pos: -89.5,158.5 + parent: 2 + - uid: 20540 + components: + - type: Transform + pos: -87.5,179.5 + parent: 2 + - uid: 20541 + components: + - type: Transform + pos: -87.5,180.5 + parent: 2 + - uid: 20543 + components: + - type: Transform + pos: -86.5,179.5 + parent: 2 + - uid: 20544 + components: + - type: Transform + pos: -86.5,180.5 + parent: 2 + - uid: 20545 + components: + - type: Transform + pos: -87.5,181.5 + parent: 2 + - uid: 20546 + components: + - type: Transform + pos: -86.5,181.5 + parent: 2 + - uid: 20547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,181.5 + parent: 2 + - uid: 20548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,182.5 + parent: 2 + - uid: 20549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,182.5 + parent: 2 + - uid: 20550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,182.5 + parent: 2 + - uid: 20557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,180.5 + parent: 2 + - uid: 20558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,179.5 + parent: 2 + - uid: 20618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,182.5 + parent: 2 + - uid: 20619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,181.5 + parent: 2 + - uid: 20620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,180.5 + parent: 2 + - uid: 20621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,179.5 + parent: 2 + - uid: 21633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,159.5 + parent: 2 + - uid: 21634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,158.5 + parent: 2 + - uid: 21638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,159.5 + parent: 2 + - uid: 21639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,159.5 + parent: 2 + - uid: 21640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,158.5 + parent: 2 + - uid: 21641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,159.5 + parent: 2 + - uid: 21642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,159.5 + parent: 2 + - uid: 21644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,158.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 1320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,101.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,100.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + pos: -15.5,86.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + pos: -15.5,87.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: -16.5,86.5 + parent: 2 + - uid: 10489 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + pos: -17.5,86.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + pos: -17.5,87.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + pos: -19.5,83.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: -19.5,82.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + pos: -18.5,83.5 + parent: 2 + - uid: 10495 + components: + - type: Transform + pos: -18.5,82.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + pos: -17.5,83.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + pos: -17.5,82.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + pos: -16.5,83.5 + parent: 2 + - uid: 10499 + components: + - type: Transform + pos: -16.5,82.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,97.5 + parent: 2 + - uid: 13659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,100.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,99.5 + parent: 2 + - uid: 13670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,99.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,98.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,102.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,98.5 + parent: 2 + - uid: 14017 + components: + - type: Transform + pos: -72.5,98.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: -72.5,99.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: -72.5,100.5 + parent: 2 + - uid: 14020 + components: + - type: Transform + pos: -71.5,98.5 + parent: 2 + - uid: 14021 + components: + - type: Transform + pos: -71.5,99.5 + parent: 2 + - uid: 14022 + components: + - type: Transform + pos: -71.5,100.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,97.5 + parent: 2 + - uid: 15029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,102.5 + parent: 2 + - uid: 16498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,97.5 + parent: 2 + - uid: 16572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,96.5 + parent: 2 + - uid: 16587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,99.5 + parent: 2 + - uid: 16978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,101.5 + parent: 2 + - uid: 17023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,98.5 + parent: 2 + - uid: 17237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,102.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,101.5 + parent: 2 + - uid: 17291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,99.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,97.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,100.5 + parent: 2 + - uid: 18592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,98.5 + parent: 2 + - uid: 19478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,98.5 + parent: 2 + - uid: 19493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,96.5 + parent: 2 + - uid: 22780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,191.5 + parent: 2 + - uid: 22781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,192.5 + parent: 2 + - uid: 22782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,191.5 + parent: 2 + - uid: 22783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,192.5 + parent: 2 + - uid: 22784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,191.5 + parent: 2 + - uid: 22785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,192.5 + parent: 2 + - uid: 23012 + components: + - type: Transform + pos: -8.5,197.5 + parent: 2 + - uid: 23013 + components: + - type: Transform + pos: -8.5,198.5 + parent: 2 + - uid: 23014 + components: + - type: Transform + pos: -7.5,197.5 + parent: 2 + - uid: 23015 + components: + - type: Transform + pos: -7.5,198.5 + parent: 2 + - uid: 23016 + components: + - type: Transform + pos: -6.5,197.5 + parent: 2 + - uid: 23017 + components: + - type: Transform + pos: -6.5,198.5 + parent: 2 + - uid: 23305 + components: + - type: Transform + pos: -20.5,204.5 + parent: 2 + - uid: 23306 + components: + - type: Transform + pos: -20.5,205.5 + parent: 2 + - uid: 23307 + components: + - type: Transform + pos: -20.5,206.5 + parent: 2 + - uid: 23308 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 + - uid: 23309 + components: + - type: Transform + pos: -19.5,205.5 + parent: 2 + - uid: 23310 + components: + - type: Transform + pos: -19.5,206.5 + parent: 2 + - uid: 23334 + components: + - type: Transform + pos: -16.5,206.5 + parent: 2 + - uid: 23335 + components: + - type: Transform + pos: -16.5,205.5 + parent: 2 + - uid: 23336 + components: + - type: Transform + pos: -16.5,204.5 + parent: 2 + - uid: 23337 + components: + - type: Transform + pos: -15.5,206.5 + parent: 2 + - uid: 23338 + components: + - type: Transform + pos: -15.5,205.5 + parent: 2 + - uid: 23339 + components: + - type: Transform + pos: -15.5,204.5 + parent: 2 + - uid: 25166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,97.5 + parent: 2 + - uid: 26416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,102.5 + parent: 2 + - uid: 26417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,99.5 + parent: 2 + - uid: 26998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,100.5 + parent: 2 + - uid: 27000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,98.5 + parent: 2 + - uid: 27001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,100.5 + parent: 2 + - uid: 27003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,98.5 + parent: 2 + - uid: 27004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,100.5 + parent: 2 + - uid: 27005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,99.5 + parent: 2 + - uid: 27006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,98.5 + parent: 2 + - uid: 30342 + components: + - type: Transform + pos: -36.5,100.5 + parent: 2 + - uid: 31436 + components: + - type: Transform + pos: -35.5,100.5 + parent: 2 + - uid: 32278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,99.5 + parent: 2 + - uid: 34816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,97.5 + parent: 2 + - uid: 34817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,99.5 + parent: 2 + - uid: 34818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,98.5 + parent: 2 + - uid: 35831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,98.5 + parent: 2 + - uid: 35937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,101.5 + parent: 2 + - uid: 36196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,100.5 + parent: 2 + - uid: 36197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,99.5 + parent: 2 +- proto: CartridgePistol + entities: + - uid: 695 + components: + - type: Transform + pos: -25.222254,-20.423723 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -25.386316,-20.54091 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: -25.386316,-20.329973 + parent: 2 +- proto: Catwalk + entities: + - uid: 268 + components: + - type: Transform + pos: -133.5,41.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -140.5,22.5 + parent: 2 + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -148.5,23.5 + parent: 2 + - uid: 318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-2.5 + parent: 2 + - uid: 602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-6.5 + parent: 2 + - uid: 603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-7.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-6.5 + parent: 2 + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 1.5,171.5 + parent: 2 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,98.5 + parent: 2 + - uid: 674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -140.5,30.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -140.5,29.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 68.5,29.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 + - uid: 984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 2 + - uid: 985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - uid: 986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-9.5 + parent: 2 + - uid: 987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 2 + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 2 + - uid: 992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 2 + - uid: 993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 + - uid: 994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + - uid: 995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + - uid: 996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - uid: 997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + - uid: 998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 2 + - uid: 999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -74.5,-8.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: -76.5,-8.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -141.5,22.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -142.5,27.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -142.5,28.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -147.5,30.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,10.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,9.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -140.5,23.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,17.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,229.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -147.5,22.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,169.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,228.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,222.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,225.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -75.5,-8.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,11.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,230.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,231.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,8.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,223.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: -81.5,-11.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: -81.5,-12.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-10.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-8.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-8.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: -123.5,31.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-8.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-8.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-7.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-8.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-9.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-8.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-8.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-10.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-8.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-6.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.5,61.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -148.5,30.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: -69.5,-8.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: -66.5,-13.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,223.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -148.5,22.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,3.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -148.5,29.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -141.5,30.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: -59.5,1.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,98.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,59.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -145.5,28.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,100.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,100.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 24.5,188.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,100.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,141.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,20.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: -122.5,148.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: -123.5,148.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,12.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,10.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,142.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,70.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: -126.5,56.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: -119.5,148.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -146.5,28.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,94.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: -13.5,87.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -146.5,25.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,38.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,36.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -146.5,24.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -145.5,24.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -142.5,25.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -142.5,24.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,70.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 118.5,58.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: -133.5,42.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -133.5,45.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: -133.5,46.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,39.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,41.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -143.5,24.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,17.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -117.5,148.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,19.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,17.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: -111.5,38.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: 84.5,56.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,47.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,46.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,45.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,45.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,50.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,51.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,51.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,49.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: 85.5,53.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: -59.5,162.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,48.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,18.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,49.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,50.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: 85.5,56.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: 85.5,55.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 84.5,60.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: 84.5,59.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: 84.5,58.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: 85.5,60.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: 85.5,61.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: 86.5,61.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: 85.5,54.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,17.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,21.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,21.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,50.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,88.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: 85.5,51.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: 3.5,80.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: -109.5,59.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: -115.5,35.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,83.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: -59.5,163.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: -109.5,57.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: 70.5,14.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: 70.5,15.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: 67.5,9.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -109.5,58.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: 73.5,7.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,42.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,45.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,46.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: -109.5,56.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: 88.5,26.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: 76.5,9.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: 66.5,13.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: 72.5,13.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: 66.5,11.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: 70.5,5.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,56.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: 87.5,29.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: 84.5,29.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: -109.5,55.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: 68.5,7.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: 70.5,8.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: 70.5,7.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: 70.5,6.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: 76.5,11.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: 75.5,11.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: 72.5,7.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: 74.5,9.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -64.5,162.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,17.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,18.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,60.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,19.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + pos: 105.5,41.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,53.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-9.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,42.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: -66.5,172.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -58.5,171.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,40.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,40.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,86.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,132.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,131.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,130.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,129.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,128.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,128.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,132.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,46.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,56.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,155.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,155.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,155.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: -91.5,155.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + pos: -90.5,155.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,22.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,24.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,203.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,203.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,203.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,203.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -146.5,27.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -143.5,28.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,31.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,23.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,41.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,41.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,41.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,40.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,47.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,39.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,40.5 + parent: 2 + - uid: 9048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,41.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,95.5 + parent: 2 + - uid: 10827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,50.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + pos: -9.5,88.5 + parent: 2 + - uid: 10877 + components: + - type: Transform + pos: -8.5,88.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + pos: -4.5,88.5 + parent: 2 + - uid: 10879 + components: + - type: Transform + pos: -3.5,88.5 + parent: 2 + - uid: 10880 + components: + - type: Transform + pos: -2.5,88.5 + parent: 2 + - uid: 10881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,88.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,88.5 + parent: 2 + - uid: 10929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,89.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,71.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: -124.5,18.5 + parent: 2 + - uid: 11229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,87.5 + parent: 2 + - uid: 11279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,47.5 + parent: 2 + - uid: 11482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,171.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,74.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,75.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,76.5 + parent: 2 + - uid: 11919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,77.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,81.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,81.5 + parent: 2 + - uid: 11922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,82.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,83.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,84.5 + parent: 2 + - uid: 11925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,85.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,80.5 + parent: 2 + - uid: 11927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,81.5 + parent: 2 + - uid: 11928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,81.5 + parent: 2 + - uid: 11929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,73.5 + parent: 2 + - uid: 11930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,73.5 + parent: 2 + - uid: 11931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,73.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,72.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,89.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,40.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,22.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,23.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + pos: -133.5,48.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,45.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,44.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,42.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + pos: -133.5,49.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,43.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,69.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: -133.5,50.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + pos: 3.5,71.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + pos: 2.5,78.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: 2.5,77.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: 2.5,76.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: 2.5,72.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: 2.5,71.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: 1.5,71.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: -0.5,71.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + pos: 0.5,71.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,44.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,98.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,94.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-6.5 + parent: 2 + - uid: 14227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,40.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-7.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + pos: -81.5,-10.5 + parent: 2 + - uid: 14388 + components: + - type: Transform + pos: -83.5,99.5 + parent: 2 + - uid: 14389 + components: + - type: Transform + pos: -82.5,99.5 + parent: 2 + - uid: 14708 + components: + - type: Transform + pos: 86.5,51.5 + parent: 2 + - uid: 14816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,87.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,88.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,88.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,88.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,88.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,88.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,88.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,88.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,88.5 + parent: 2 + - uid: 14828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,89.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + pos: -80.5,95.5 + parent: 2 + - uid: 14858 + components: + - type: Transform + pos: -81.5,95.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: -80.5,94.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + pos: -80.5,93.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: -82.5,95.5 + parent: 2 + - uid: 14870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,91.5 + parent: 2 + - uid: 14871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,90.5 + parent: 2 + - uid: 14872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,89.5 + parent: 2 + - uid: 14873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,88.5 + parent: 2 + - uid: 14874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,87.5 + parent: 2 + - uid: 14875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,85.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,84.5 + parent: 2 + - uid: 14890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,42.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: -36.5,65.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: -36.5,64.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + pos: -36.5,63.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: -36.5,62.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + pos: -37.5,62.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: -38.5,62.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + pos: -45.5,61.5 + parent: 2 + - uid: 15580 + components: + - type: Transform + pos: -46.5,61.5 + parent: 2 + - uid: 15581 + components: + - type: Transform + pos: -47.5,61.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: -48.5,61.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: -49.5,61.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + pos: -51.5,66.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: -51.5,67.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + pos: -51.5,68.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + pos: -51.5,70.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: -50.5,70.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + pos: -50.5,71.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + pos: -50.5,62.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + pos: -50.5,61.5 + parent: 2 + - uid: 15797 + components: + - type: Transform + pos: -50.5,60.5 + parent: 2 + - uid: 15799 + components: + - type: Transform + pos: -50.5,56.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + pos: -49.5,56.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + pos: -50.5,57.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: -50.5,58.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: -49.5,73.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + pos: -50.5,73.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + pos: -51.5,73.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: -54.5,75.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: -53.5,75.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: -53.5,76.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: -53.5,74.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: -53.5,81.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: -53.5,80.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + pos: -52.5,81.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: -51.5,81.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: -53.5,82.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + pos: -53.5,86.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + pos: -53.5,87.5 + parent: 2 + - uid: 16068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,87.5 + parent: 2 + - uid: 16069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,85.5 + parent: 2 + - uid: 16070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,84.5 + parent: 2 + - uid: 16071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,82.5 + parent: 2 + - uid: 16343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,57.5 + parent: 2 + - uid: 16416 + components: + - type: Transform + pos: -95.5,53.5 + parent: 2 + - uid: 16749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,68.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 13386 + - uid: 16940 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 13386 + - uid: 16941 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 13386 + - uid: 16942 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 13386 + - uid: 16972 + components: + - type: Transform + pos: -4.5,2.5 + parent: 13386 + - uid: 16973 + components: + - type: Transform + pos: -4.5,5.5 + parent: 13386 + - uid: 17080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,51.5 + parent: 2 + - uid: 17108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,53.5 + parent: 2 + - uid: 17191 + components: + - type: Transform + pos: -83.5,77.5 + parent: 2 + - uid: 17204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,83.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,82.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,81.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,78.5 + parent: 2 + - uid: 17208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,77.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,77.5 + parent: 2 + - uid: 17210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,76.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,77.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,73.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,72.5 + parent: 2 + - uid: 17214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,71.5 + parent: 2 + - uid: 17215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,70.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,70.5 + parent: 2 + - uid: 17232 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + pos: -79.5,70.5 + parent: 2 + - uid: 17234 + components: + - type: Transform + pos: -74.5,70.5 + parent: 2 + - uid: 17235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,69.5 + parent: 2 + - uid: 17252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,70.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,70.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + pos: -45.5,68.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,96.5 + parent: 2 + - uid: 17467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,95.5 + parent: 2 + - uid: 17499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,43.5 + parent: 2 + - uid: 17574 + components: + - type: Transform + pos: -47.5,71.5 + parent: 2 + - uid: 17581 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 17590 + components: + - type: Transform + pos: -46.5,70.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: -67.5,-9.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + pos: -136.5,23.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + pos: -122.5,60.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: -123.5,60.5 + parent: 2 + - uid: 17994 + components: + - type: Transform + pos: -124.5,38.5 + parent: 2 + - uid: 18037 + components: + - type: Transform + pos: 112.5,41.5 + parent: 2 + - uid: 18043 + components: + - type: Transform + pos: 112.5,43.5 + parent: 2 + - uid: 18048 + components: + - type: Transform + pos: 105.5,42.5 + parent: 2 + - uid: 18053 + components: + - type: Transform + pos: 105.5,65.5 + parent: 2 + - uid: 18054 + components: + - type: Transform + pos: 113.5,64.5 + parent: 2 + - uid: 18055 + components: + - type: Transform + pos: 105.5,64.5 + parent: 2 + - uid: 18057 + components: + - type: Transform + pos: 113.5,65.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + pos: 111.5,64.5 + parent: 2 + - uid: 18146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,61.5 + parent: 2 + - uid: 18147 + components: + - type: Transform + pos: -121.5,60.5 + parent: 2 + - uid: 18152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,61.5 + parent: 2 + - uid: 18153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,61.5 + parent: 2 + - uid: 18156 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 18164 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 18172 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 18173 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 18174 + components: + - type: Transform + pos: -67.5,-6.5 + parent: 2 + - uid: 18210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,60.5 + parent: 2 + - uid: 18215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,59.5 + parent: 2 + - uid: 18221 + components: + - type: Transform + pos: -74.5,48.5 + parent: 2 + - uid: 18231 + components: + - type: Transform + pos: 111.5,65.5 + parent: 2 + - uid: 18250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,42.5 + parent: 2 + - uid: 18256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,61.5 + parent: 2 + - uid: 18305 + components: + - type: Transform + pos: -27.5,211.5 + parent: 2 + - uid: 18429 + components: + - type: Transform + pos: -75.5,48.5 + parent: 2 + - uid: 18536 + components: + - type: Transform + pos: -86.5,32.5 + parent: 2 + - uid: 18561 + components: + - type: Transform + pos: -29.5,212.5 + parent: 2 + - uid: 18563 + components: + - type: Transform + pos: 118.5,48.5 + parent: 2 + - uid: 18610 + components: + - type: Transform + pos: 112.5,42.5 + parent: 2 + - uid: 18616 + components: + - type: Transform + pos: -80.5,51.5 + parent: 2 + - uid: 18627 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 18633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,61.5 + parent: 2 + - uid: 18638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.5,61.5 + parent: 2 + - uid: 18646 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 18648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,61.5 + parent: 2 + - uid: 18716 + components: + - type: Transform + pos: 105.5,43.5 + parent: 2 + - uid: 18734 + components: + - type: Transform + pos: -107.5,40.5 + parent: 2 + - uid: 18765 + components: + - type: Transform + pos: -76.5,34.5 + parent: 2 + - uid: 18773 + components: + - type: Transform + pos: -86.5,33.5 + parent: 2 + - uid: 18777 + components: + - type: Transform + pos: -75.5,34.5 + parent: 2 + - uid: 18779 + components: + - type: Transform + pos: -74.5,34.5 + parent: 2 + - uid: 18808 + components: + - type: Transform + pos: 103.5,65.5 + parent: 2 + - uid: 18844 + components: + - type: Transform + pos: 103.5,64.5 + parent: 2 + - uid: 18848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,139.5 + parent: 2 + - uid: 18864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,160.5 + parent: 2 + - uid: 18885 + components: + - type: Transform + pos: -76.5,48.5 + parent: 2 + - uid: 18980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,157.5 + parent: 2 + - uid: 19059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,161.5 + parent: 2 + - uid: 19060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,159.5 + parent: 2 + - uid: 19061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,163.5 + parent: 2 + - uid: 19062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,156.5 + parent: 2 + - uid: 19071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,158.5 + parent: 2 + - uid: 19073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,159.5 + parent: 2 + - uid: 19074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,162.5 + parent: 2 + - uid: 19077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,161.5 + parent: 2 + - uid: 19078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,159.5 + parent: 2 + - uid: 19082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,159.5 + parent: 2 + - uid: 19083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,161.5 + parent: 2 + - uid: 19084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,161.5 + parent: 2 + - uid: 19123 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 19124 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 19466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,164.5 + parent: 2 + - uid: 19524 + components: + - type: Transform + pos: -122.5,38.5 + parent: 2 + - uid: 19525 + components: + - type: Transform + pos: -124.5,39.5 + parent: 2 + - uid: 19695 + components: + - type: Transform + pos: -121.5,33.5 + parent: 2 + - uid: 19708 + components: + - type: Transform + pos: -121.5,34.5 + parent: 2 + - uid: 19732 + components: + - type: Transform + pos: -45.5,66.5 + parent: 2 + - uid: 19793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,45.5 + parent: 2 + - uid: 19794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,48.5 + parent: 2 + - uid: 20039 + components: + - type: Transform + pos: -46.5,66.5 + parent: 2 + - uid: 20040 + components: + - type: Transform + pos: -46.5,67.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,16.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,49.5 + parent: 2 + - uid: 20777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,48.5 + parent: 2 + - uid: 20798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,139.5 + parent: 2 + - uid: 20821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,139.5 + parent: 2 + - uid: 20830 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 20921 + components: + - type: Transform + pos: -27.5,212.5 + parent: 2 + - uid: 20930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,50.5 + parent: 2 + - uid: 20932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,49.5 + parent: 2 + - uid: 21195 + components: + - type: Transform + pos: -123.5,39.5 + parent: 2 + - uid: 21272 + components: + - type: Transform + pos: -66.5,169.5 + parent: 2 + - uid: 21274 + components: + - type: Transform + pos: -66.5,171.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + pos: -66.5,173.5 + parent: 2 + - uid: 21276 + components: + - type: Transform + pos: -66.5,174.5 + parent: 2 + - uid: 21277 + components: + - type: Transform + pos: -57.5,169.5 + parent: 2 + - uid: 21278 + components: + - type: Transform + pos: -58.5,169.5 + parent: 2 + - uid: 21279 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 21280 + components: + - type: Transform + pos: -59.5,169.5 + parent: 2 + - uid: 21281 + components: + - type: Transform + pos: -61.5,169.5 + parent: 2 + - uid: 21282 + components: + - type: Transform + pos: -59.5,168.5 + parent: 2 + - uid: 21283 + components: + - type: Transform + pos: -59.5,167.5 + parent: 2 + - uid: 21284 + components: + - type: Transform + pos: -66.5,162.5 + parent: 2 + - uid: 21285 + components: + - type: Transform + pos: -65.5,162.5 + parent: 2 + - uid: 21286 + components: + - type: Transform + pos: -66.5,163.5 + parent: 2 + - uid: 21287 + components: + - type: Transform + pos: -66.5,164.5 + parent: 2 + - uid: 21288 + components: + - type: Transform + pos: -63.5,162.5 + parent: 2 + - uid: 21289 + components: + - type: Transform + pos: -61.5,162.5 + parent: 2 + - uid: 21290 + components: + - type: Transform + pos: -62.5,162.5 + parent: 2 + - uid: 21291 + components: + - type: Transform + pos: -60.5,162.5 + parent: 2 + - uid: 21292 + components: + - type: Transform + pos: -60.5,161.5 + parent: 2 + - uid: 21323 + components: + - type: Transform + pos: -122.5,39.5 + parent: 2 + - uid: 21435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,39.5 + parent: 2 + - uid: 21447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,53.5 + parent: 2 + - uid: 21459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,15.5 + parent: 2 + - uid: 22108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,44.5 + parent: 2 + - uid: 22468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,169.5 + parent: 2 + - uid: 22672 + components: + - type: Transform + pos: -136.5,24.5 + parent: 2 + - uid: 22716 + components: + - type: Transform + pos: -47.5,67.5 + parent: 2 + - uid: 22875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,38.5 + parent: 2 + - uid: 22876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,38.5 + parent: 2 + - uid: 22954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,40.5 + parent: 2 + - uid: 23051 + components: + - type: Transform + pos: -133.5,43.5 + parent: 2 + - uid: 23112 + components: + - type: Transform + pos: -45.5,67.5 + parent: 2 + - uid: 23113 + components: + - type: Transform + pos: -44.5,66.5 + parent: 2 + - uid: 23199 + components: + - type: Transform + pos: -128.5,57.5 + parent: 2 + - uid: 23208 + components: + - type: Transform + pos: -44.5,67.5 + parent: 2 + - uid: 23209 + components: + - type: Transform + pos: -133.5,47.5 + parent: 2 + - uid: 23210 + components: + - type: Transform + pos: -133.5,44.5 + parent: 2 + - uid: 23211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,50.5 + parent: 2 + - uid: 23213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,43.5 + parent: 2 + - uid: 23366 + components: + - type: Transform + pos: -136.5,25.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,161.5 + parent: 2 + - uid: 23573 + components: + - type: Transform + pos: -136.5,26.5 + parent: 2 + - uid: 23691 + components: + - type: Transform + pos: -136.5,27.5 + parent: 2 + - uid: 23692 + components: + - type: Transform + pos: -136.5,28.5 + parent: 2 + - uid: 23693 + components: + - type: Transform + pos: -136.5,29.5 + parent: 2 + - uid: 23695 + components: + - type: Transform + pos: -136.5,32.5 + parent: 2 + - uid: 23696 + components: + - type: Transform + pos: -136.5,33.5 + parent: 2 + - uid: 23697 + components: + - type: Transform + pos: -137.5,34.5 + parent: 2 + - uid: 23721 + components: + - type: Transform + pos: 11.5,171.5 + parent: 2 + - uid: 23776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,29.5 + parent: 2 + - uid: 23822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,29.5 + parent: 2 + - uid: 23846 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 23847 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 23938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,38.5 + parent: 2 + - uid: 23960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,29.5 + parent: 2 + - uid: 23964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,29.5 + parent: 2 + - uid: 23972 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 23973 + components: + - type: Transform + pos: -29.5,209.5 + parent: 2 + - uid: 23974 + components: + - type: Transform + pos: -28.5,209.5 + parent: 2 + - uid: 23975 + components: + - type: Transform + pos: -27.5,209.5 + parent: 2 + - uid: 23976 + components: + - type: Transform + pos: -25.5,209.5 + parent: 2 + - uid: 23977 + components: + - type: Transform + pos: -24.5,209.5 + parent: 2 + - uid: 23978 + components: + - type: Transform + pos: -23.5,209.5 + parent: 2 + - uid: 23979 + components: + - type: Transform + pos: -24.5,208.5 + parent: 2 + - uid: 23980 + components: + - type: Transform + pos: -25.5,205.5 + parent: 2 + - uid: 23981 + components: + - type: Transform + pos: -24.5,207.5 + parent: 2 + - uid: 23982 + components: + - type: Transform + pos: -24.5,205.5 + parent: 2 + - uid: 23983 + components: + - type: Transform + pos: -24.5,206.5 + parent: 2 + - uid: 23991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,38.5 + parent: 2 + - uid: 24009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,212.5 + parent: 2 + - uid: 24010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,212.5 + parent: 2 + - uid: 24011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,213.5 + parent: 2 + - uid: 24012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,213.5 + parent: 2 + - uid: 24013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,213.5 + parent: 2 + - uid: 24014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,213.5 + parent: 2 + - uid: 24015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,213.5 + parent: 2 + - uid: 24016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,213.5 + parent: 2 + - uid: 24017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,213.5 + parent: 2 + - uid: 24018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,213.5 + parent: 2 + - uid: 24019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,212.5 + parent: 2 + - uid: 24024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,43.5 + parent: 2 + - uid: 24034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,29.5 + parent: 2 + - uid: 24035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,29.5 + parent: 2 + - uid: 24039 + components: + - type: Transform + pos: 0.5,210.5 + parent: 2 + - uid: 24040 + components: + - type: Transform + pos: -0.5,210.5 + parent: 2 + - uid: 24041 + components: + - type: Transform + pos: -1.5,210.5 + parent: 2 + - uid: 24042 + components: + - type: Transform + pos: -2.5,210.5 + parent: 2 + - uid: 24043 + components: + - type: Transform + pos: -3.5,210.5 + parent: 2 + - uid: 24044 + components: + - type: Transform + pos: -3.5,209.5 + parent: 2 + - uid: 24045 + components: + - type: Transform + pos: -3.5,208.5 + parent: 2 + - uid: 24046 + components: + - type: Transform + pos: -18.5,209.5 + parent: 2 + - uid: 24047 + components: + - type: Transform + pos: -19.5,209.5 + parent: 2 + - uid: 24059 + components: + - type: Transform + pos: -81.5,145.5 + parent: 2 + - uid: 24060 + components: + - type: Transform + pos: 2.5,208.5 + parent: 2 + - uid: 24061 + components: + - type: Transform + pos: 2.5,209.5 + parent: 2 + - uid: 24062 + components: + - type: Transform + pos: 3.5,208.5 + parent: 2 + - uid: 24063 + components: + - type: Transform + pos: 3.5,209.5 + parent: 2 + - uid: 24064 + components: + - type: Transform + pos: 4.5,208.5 + parent: 2 + - uid: 24065 + components: + - type: Transform + pos: 4.5,209.5 + parent: 2 + - uid: 24072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,208.5 + parent: 2 + - uid: 24073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,207.5 + parent: 2 + - uid: 24074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,206.5 + parent: 2 + - uid: 24076 + components: + - type: Transform + pos: 9.5,203.5 + parent: 2 + - uid: 24081 + components: + - type: Transform + pos: 10.5,203.5 + parent: 2 + - uid: 24082 + components: + - type: Transform + pos: 11.5,203.5 + parent: 2 + - uid: 24083 + components: + - type: Transform + pos: 12.5,203.5 + parent: 2 + - uid: 24084 + components: + - type: Transform + pos: 13.5,203.5 + parent: 2 + - uid: 24085 + components: + - type: Transform + pos: 14.5,203.5 + parent: 2 + - uid: 24086 + components: + - type: Transform + pos: 15.5,203.5 + parent: 2 + - uid: 24087 + components: + - type: Transform + pos: 16.5,203.5 + parent: 2 + - uid: 24088 + components: + - type: Transform + pos: 16.5,202.5 + parent: 2 + - uid: 24089 + components: + - type: Transform + pos: 17.5,202.5 + parent: 2 + - uid: 24090 + components: + - type: Transform + pos: 18.5,202.5 + parent: 2 + - uid: 24091 + components: + - type: Transform + pos: 9.5,202.5 + parent: 2 + - uid: 24092 + components: + - type: Transform + pos: 9.5,201.5 + parent: 2 + - uid: 24093 + components: + - type: Transform + pos: 8.5,201.5 + parent: 2 + - uid: 24094 + components: + - type: Transform + pos: 8.5,203.5 + parent: 2 + - uid: 24150 + components: + - type: Transform + pos: 21.5,200.5 + parent: 2 + - uid: 24155 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - uid: 24156 + components: + - type: Transform + pos: 22.5,199.5 + parent: 2 + - uid: 24157 + components: + - type: Transform + pos: 22.5,198.5 + parent: 2 + - uid: 24158 + components: + - type: Transform + pos: 21.5,198.5 + parent: 2 + - uid: 24159 + components: + - type: Transform + pos: 23.5,198.5 + parent: 2 + - uid: 24160 + components: + - type: Transform + pos: 24.5,197.5 + parent: 2 + - uid: 24161 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - uid: 24165 + components: + - type: Transform + pos: 24.5,195.5 + parent: 2 + - uid: 24166 + components: + - type: Transform + pos: 24.5,194.5 + parent: 2 + - uid: 24167 + components: + - type: Transform + pos: 24.5,193.5 + parent: 2 + - uid: 24168 + components: + - type: Transform + pos: 24.5,192.5 + parent: 2 + - uid: 24169 + components: + - type: Transform + pos: 24.5,191.5 + parent: 2 + - uid: 24171 + components: + - type: Transform + pos: 24.5,189.5 + parent: 2 + - uid: 24172 + components: + - type: Transform + pos: 24.5,187.5 + parent: 2 + - uid: 24173 + components: + - type: Transform + pos: 24.5,186.5 + parent: 2 + - uid: 24174 + components: + - type: Transform + pos: 23.5,186.5 + parent: 2 + - uid: 24175 + components: + - type: Transform + pos: 21.5,183.5 + parent: 2 + - uid: 24176 + components: + - type: Transform + pos: 20.5,183.5 + parent: 2 + - uid: 24177 + components: + - type: Transform + pos: 20.5,182.5 + parent: 2 + - uid: 24178 + components: + - type: Transform + pos: 19.5,182.5 + parent: 2 + - uid: 24179 + components: + - type: Transform + pos: 20.5,181.5 + parent: 2 + - uid: 24194 + components: + - type: Transform + pos: -129.5,39.5 + parent: 2 + - uid: 24195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,42.5 + parent: 2 + - uid: 24208 + components: + - type: Transform + pos: -129.5,38.5 + parent: 2 + - uid: 24209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,38.5 + parent: 2 + - uid: 24256 + components: + - type: Transform + pos: -26.5,190.5 + parent: 2 + - uid: 24257 + components: + - type: Transform + pos: -27.5,190.5 + parent: 2 + - uid: 24350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,47.5 + parent: 2 + - uid: 24363 + components: + - type: Transform + pos: 14.5,180.5 + parent: 2 + - uid: 24364 + components: + - type: Transform + pos: 13.5,180.5 + parent: 2 + - uid: 24365 + components: + - type: Transform + pos: 12.5,180.5 + parent: 2 + - uid: 24366 + components: + - type: Transform + pos: 11.5,180.5 + parent: 2 + - uid: 24368 + components: + - type: Transform + pos: 8.5,180.5 + parent: 2 + - uid: 24369 + components: + - type: Transform + pos: 8.5,179.5 + parent: 2 + - uid: 24370 + components: + - type: Transform + pos: 9.5,180.5 + parent: 2 + - uid: 24382 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 24393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,39.5 + parent: 2 + - uid: 24394 + components: + - type: Transform + pos: -29.5,196.5 + parent: 2 + - uid: 24395 + components: + - type: Transform + pos: -29.5,195.5 + parent: 2 + - uid: 24396 + components: + - type: Transform + pos: -29.5,194.5 + parent: 2 + - uid: 24397 + components: + - type: Transform + pos: -29.5,192.5 + parent: 2 + - uid: 24398 + components: + - type: Transform + pos: -29.5,191.5 + parent: 2 + - uid: 24401 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 24404 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 24428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,39.5 + parent: 2 + - uid: 24579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,39.5 + parent: 2 + - uid: 24776 + components: + - type: Transform + pos: -25.5,177.5 + parent: 2 + - uid: 24810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,190.5 + parent: 2 + - uid: 24849 + components: + - type: Transform + pos: -130.5,102.5 + parent: 2 + - uid: 25028 + components: + - type: Transform + pos: -130.5,92.5 + parent: 2 + - uid: 25032 + components: + - type: Transform + pos: -130.5,103.5 + parent: 2 + - uid: 25033 + components: + - type: Transform + pos: -131.5,102.5 + parent: 2 + - uid: 25035 + components: + - type: Transform + pos: -131.5,103.5 + parent: 2 + - uid: 25084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,38.5 + parent: 2 + - uid: 25164 + components: + - type: Transform + pos: -132.5,103.5 + parent: 2 + - uid: 25169 + components: + - type: Transform + pos: -130.5,91.5 + parent: 2 + - uid: 25172 + components: + - type: Transform + pos: -131.5,92.5 + parent: 2 + - uid: 25186 + components: + - type: Transform + pos: -131.5,91.5 + parent: 2 + - uid: 25198 + components: + - type: Transform + pos: -132.5,91.5 + parent: 2 + - uid: 25289 + components: + - type: Transform + pos: -30.5,181.5 + parent: 2 + - uid: 25292 + components: + - type: Transform + pos: -30.5,182.5 + parent: 2 + - uid: 25330 + components: + - type: Transform + pos: -30.5,180.5 + parent: 2 + - uid: 25345 + components: + - type: Transform + pos: -126.5,57.5 + parent: 2 + - uid: 25358 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 36996 + - uid: 25371 + components: + - type: Transform + pos: -144.5,18.5 + parent: 2 + - uid: 25372 + components: + - type: Transform + pos: -143.5,18.5 + parent: 2 + - uid: 25373 + components: + - type: Transform + pos: -142.5,18.5 + parent: 2 + - uid: 25374 + components: + - type: Transform + pos: -141.5,18.5 + parent: 2 + - uid: 25375 + components: + - type: Transform + pos: -138.5,18.5 + parent: 2 + - uid: 25459 + components: + - type: Transform + pos: 10.5,171.5 + parent: 2 + - uid: 25460 + components: + - type: Transform + pos: 12.5,171.5 + parent: 2 + - uid: 25462 + components: + - type: Transform + pos: 14.5,171.5 + parent: 2 + - uid: 25467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,171.5 + parent: 2 + - uid: 25468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,171.5 + parent: 2 + - uid: 25469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,172.5 + parent: 2 + - uid: 25470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,173.5 + parent: 2 + - uid: 25471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,174.5 + parent: 2 + - uid: 25472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,175.5 + parent: 2 + - uid: 25473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,176.5 + parent: 2 + - uid: 25474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,176.5 + parent: 2 + - uid: 25475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,177.5 + parent: 2 + - uid: 25476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,178.5 + parent: 2 + - uid: 25477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,171.5 + parent: 2 + - uid: 25478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,171.5 + parent: 2 + - uid: 25479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,172.5 + parent: 2 + - uid: 25480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,171.5 + parent: 2 + - uid: 25547 + components: + - type: Transform + pos: 6.5,174.5 + parent: 2 + - uid: 25548 + components: + - type: Transform + pos: 7.5,174.5 + parent: 2 + - uid: 25549 + components: + - type: Transform + pos: 6.5,175.5 + parent: 2 + - uid: 25550 + components: + - type: Transform + pos: 6.5,176.5 + parent: 2 + - uid: 25551 + components: + - type: Transform + pos: 6.5,177.5 + parent: 2 + - uid: 25552 + components: + - type: Transform + pos: 4.5,174.5 + parent: 2 + - uid: 25553 + components: + - type: Transform + pos: 5.5,174.5 + parent: 2 + - uid: 25637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,169.5 + parent: 2 + - uid: 25638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,170.5 + parent: 2 + - uid: 25641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,173.5 + parent: 2 + - uid: 25642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,174.5 + parent: 2 + - uid: 25643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,174.5 + parent: 2 + - uid: 25700 + components: + - type: Transform + pos: -17.5,173.5 + parent: 2 + - uid: 25701 + components: + - type: Transform + pos: -18.5,173.5 + parent: 2 + - uid: 25702 + components: + - type: Transform + pos: -19.5,173.5 + parent: 2 + - uid: 25703 + components: + - type: Transform + pos: -20.5,173.5 + parent: 2 + - uid: 25704 + components: + - type: Transform + pos: -21.5,173.5 + parent: 2 + - uid: 25705 + components: + - type: Transform + pos: -22.5,173.5 + parent: 2 + - uid: 25706 + components: + - type: Transform + pos: -23.5,173.5 + parent: 2 + - uid: 25707 + components: + - type: Transform + pos: -24.5,173.5 + parent: 2 + - uid: 25708 + components: + - type: Transform + pos: -24.5,174.5 + parent: 2 + - uid: 25709 + components: + - type: Transform + pos: -24.5,175.5 + parent: 2 + - uid: 25710 + components: + - type: Transform + pos: -24.5,176.5 + parent: 2 + - uid: 25712 + components: + - type: Transform + pos: -30.5,184.5 + parent: 2 + - uid: 25713 + components: + - type: Transform + pos: -30.5,185.5 + parent: 2 + - uid: 25714 + components: + - type: Transform + pos: -30.5,179.5 + parent: 2 + - uid: 25721 + components: + - type: Transform + pos: -30.5,178.5 + parent: 2 + - uid: 25723 + components: + - type: Transform + pos: -30.5,186.5 + parent: 2 + - uid: 25728 + components: + - type: Transform + pos: -26.5,177.5 + parent: 2 + - uid: 25730 + components: + - type: Transform + pos: -27.5,177.5 + parent: 2 + - uid: 25731 + components: + - type: Transform + pos: -28.5,177.5 + parent: 2 + - uid: 25732 + components: + - type: Transform + pos: -29.5,177.5 + parent: 2 + - uid: 25755 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - uid: 25757 + components: + - type: Transform + pos: -83.5,145.5 + parent: 2 + - uid: 26007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,172.5 + parent: 2 + - uid: 26193 + components: + - type: Transform + pos: -30.5,192.5 + parent: 2 + - uid: 26194 + components: + - type: Transform + pos: -31.5,192.5 + parent: 2 + - uid: 26195 + components: + - type: Transform + pos: -32.5,192.5 + parent: 2 + - uid: 26196 + components: + - type: Transform + pos: -33.5,192.5 + parent: 2 + - uid: 26197 + components: + - type: Transform + pos: -34.5,192.5 + parent: 2 + - uid: 26198 + components: + - type: Transform + pos: -35.5,192.5 + parent: 2 + - uid: 26199 + components: + - type: Transform + pos: -36.5,192.5 + parent: 2 + - uid: 26200 + components: + - type: Transform + pos: -36.5,193.5 + parent: 2 + - uid: 26201 + components: + - type: Transform + pos: -36.5,191.5 + parent: 2 + - uid: 26522 + components: + - type: Transform + pos: -47.5,66.5 + parent: 2 + - uid: 26797 + components: + - type: Transform + pos: -137.5,18.5 + parent: 2 + - uid: 26837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,207.5 + parent: 2 + - uid: 26838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,207.5 + parent: 2 + - uid: 26839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,207.5 + parent: 2 + - uid: 26840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,207.5 + parent: 2 + - uid: 26907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,88.5 + parent: 2 + - uid: 27101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,52.5 + parent: 2 + - uid: 27134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,49.5 + parent: 2 + - uid: 27146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,48.5 + parent: 2 + - uid: 27147 + components: + - type: Transform + pos: -136.5,19.5 + parent: 2 + - uid: 27183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,38.5 + parent: 2 + - uid: 27184 + components: + - type: Transform + pos: -136.5,20.5 + parent: 2 + - uid: 27191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,38.5 + parent: 2 + - uid: 27195 + components: + - type: Transform + pos: -128.5,39.5 + parent: 2 + - uid: 27341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,38.5 + parent: 2 + - uid: 27727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,48.5 + parent: 2 + - uid: 27757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,47.5 + parent: 2 + - uid: 27788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,46.5 + parent: 2 + - uid: 27892 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 27944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,47.5 + parent: 2 + - uid: 27945 + components: + - type: Transform + pos: -92.5,144.5 + parent: 2 + - uid: 27946 + components: + - type: Transform + pos: -88.5,144.5 + parent: 2 + - uid: 27948 + components: + - type: Transform + pos: -93.5,144.5 + parent: 2 + - uid: 27949 + components: + - type: Transform + pos: -90.5,144.5 + parent: 2 + - uid: 27956 + components: + - type: Transform + pos: -96.5,144.5 + parent: 2 + - uid: 27957 + components: + - type: Transform + pos: -98.5,144.5 + parent: 2 + - uid: 27958 + components: + - type: Transform + pos: -95.5,144.5 + parent: 2 + - uid: 27959 + components: + - type: Transform + pos: -97.5,144.5 + parent: 2 + - uid: 27960 + components: + - type: Transform + pos: -99.5,144.5 + parent: 2 + - uid: 27962 + components: + - type: Transform + pos: -100.5,144.5 + parent: 2 + - uid: 27963 + components: + - type: Transform + pos: -100.5,145.5 + parent: 2 + - uid: 27964 + components: + - type: Transform + pos: -101.5,145.5 + parent: 2 + - uid: 27966 + components: + - type: Transform + pos: -101.5,147.5 + parent: 2 + - uid: 27967 + components: + - type: Transform + pos: -101.5,146.5 + parent: 2 + - uid: 27968 + components: + - type: Transform + pos: -101.5,148.5 + parent: 2 + - uid: 27981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,38.5 + parent: 2 + - uid: 28126 + components: + - type: Transform + pos: -109.5,52.5 + parent: 2 + - uid: 28128 + components: + - type: Transform + pos: -109.5,54.5 + parent: 2 + - uid: 28129 + components: + - type: Transform + pos: -109.5,53.5 + parent: 2 + - uid: 28202 + components: + - type: Transform + pos: -109.5,38.5 + parent: 2 + - uid: 28257 + components: + - type: Transform + pos: -109.5,51.5 + parent: 2 + - uid: 28258 + components: + - type: Transform + pos: -109.5,50.5 + parent: 2 + - uid: 28259 + components: + - type: Transform + pos: -109.5,49.5 + parent: 2 + - uid: 28260 + components: + - type: Transform + pos: -109.5,48.5 + parent: 2 + - uid: 28261 + components: + - type: Transform + pos: -108.5,60.5 + parent: 2 + - uid: 28262 + components: + - type: Transform + pos: -108.5,59.5 + parent: 2 + - uid: 28263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,58.5 + parent: 2 + - uid: 28264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,57.5 + parent: 2 + - uid: 28265 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 28266 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 28267 + components: + - type: Transform + pos: -108.5,54.5 + parent: 2 + - uid: 28269 + components: + - type: Transform + pos: -108.5,52.5 + parent: 2 + - uid: 28270 + components: + - type: Transform + pos: -108.5,51.5 + parent: 2 + - uid: 28271 + components: + - type: Transform + pos: -108.5,50.5 + parent: 2 + - uid: 28272 + components: + - type: Transform + pos: -108.5,49.5 + parent: 2 + - uid: 28273 + components: + - type: Transform + pos: -108.5,48.5 + parent: 2 + - uid: 28274 + components: + - type: Transform + pos: -110.5,46.5 + parent: 2 + - uid: 28275 + components: + - type: Transform + pos: -110.5,47.5 + parent: 2 + - uid: 28276 + components: + - type: Transform + pos: -109.5,46.5 + parent: 2 + - uid: 28280 + components: + - type: Transform + pos: -107.5,46.5 + parent: 2 + - uid: 28281 + components: + - type: Transform + pos: -107.5,47.5 + parent: 2 + - uid: 28291 + components: + - type: Transform + pos: -105.5,47.5 + parent: 2 + - uid: 28292 + components: + - type: Transform + pos: -105.5,46.5 + parent: 2 + - uid: 28293 + components: + - type: Transform + pos: -106.5,47.5 + parent: 2 + - uid: 28294 + components: + - type: Transform + pos: -106.5,46.5 + parent: 2 + - uid: 28297 + components: + - type: Transform + pos: -112.5,46.5 + parent: 2 + - uid: 28298 + components: + - type: Transform + pos: -112.5,47.5 + parent: 2 + - uid: 28299 + components: + - type: Transform + pos: -111.5,46.5 + parent: 2 + - uid: 28300 + components: + - type: Transform + pos: -111.5,47.5 + parent: 2 + - uid: 28312 + components: + - type: Transform + pos: -106.5,40.5 + parent: 2 + - uid: 28357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,57.5 + parent: 2 + - uid: 28412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,50.5 + parent: 2 + - uid: 28434 + components: + - type: Transform + pos: -121.5,58.5 + parent: 2 + - uid: 28440 + components: + - type: Transform + pos: -122.5,58.5 + parent: 2 + - uid: 28474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,43.5 + parent: 2 + - uid: 28475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,44.5 + parent: 2 + - uid: 28476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,49.5 + parent: 2 + - uid: 28478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,43.5 + parent: 2 + - uid: 28498 + components: + - type: Transform + pos: -108.5,61.5 + parent: 2 + - uid: 28499 + components: + - type: Transform + pos: -108.5,62.5 + parent: 2 + - uid: 28500 + components: + - type: Transform + pos: -109.5,61.5 + parent: 2 + - uid: 28501 + components: + - type: Transform + pos: -109.5,62.5 + parent: 2 + - uid: 28519 + components: + - type: Transform + pos: -126.5,39.5 + parent: 2 + - uid: 28521 + components: + - type: Transform + pos: -125.5,39.5 + parent: 2 + - uid: 28523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,40.5 + parent: 2 + - uid: 28524 + components: + - type: Transform + pos: -127.5,39.5 + parent: 2 + - uid: 28528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,50.5 + parent: 2 + - uid: 28531 + components: + - type: Transform + pos: -104.5,45.5 + parent: 2 + - uid: 28532 + components: + - type: Transform + pos: -103.5,45.5 + parent: 2 + - uid: 28538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,41.5 + parent: 2 + - uid: 28540 + components: + - type: Transform + pos: -104.5,40.5 + parent: 2 + - uid: 28541 + components: + - type: Transform + pos: -104.5,41.5 + parent: 2 + - uid: 28542 + components: + - type: Transform + pos: -104.5,42.5 + parent: 2 + - uid: 28543 + components: + - type: Transform + pos: -104.5,43.5 + parent: 2 + - uid: 28544 + components: + - type: Transform + pos: -104.5,44.5 + parent: 2 + - uid: 28545 + components: + - type: Transform + pos: -103.5,40.5 + parent: 2 + - uid: 28546 + components: + - type: Transform + pos: -103.5,41.5 + parent: 2 + - uid: 28547 + components: + - type: Transform + pos: -103.5,42.5 + parent: 2 + - uid: 28548 + components: + - type: Transform + pos: -103.5,43.5 + parent: 2 + - uid: 28549 + components: + - type: Transform + pos: -103.5,44.5 + parent: 2 + - uid: 28550 + components: + - type: Transform + pos: -105.5,40.5 + parent: 2 + - uid: 28551 + components: + - type: Transform + pos: -105.5,41.5 + parent: 2 + - uid: 28552 + components: + - type: Transform + pos: -106.5,41.5 + parent: 2 + - uid: 28553 + components: + - type: Transform + pos: -108.5,40.5 + parent: 2 + - uid: 28614 + components: + - type: Transform + pos: -121.5,59.5 + parent: 2 + - uid: 28632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,45.5 + parent: 2 + - uid: 28735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,33.5 + parent: 2 + - uid: 28743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,37.5 + parent: 2 + - uid: 28777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,40.5 + parent: 2 + - uid: 28778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,48.5 + parent: 2 + - uid: 28811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,43.5 + parent: 2 + - uid: 28816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,45.5 + parent: 2 + - uid: 28820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,43.5 + parent: 2 + - uid: 28821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,46.5 + parent: 2 + - uid: 28822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,47.5 + parent: 2 + - uid: 28823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,48.5 + parent: 2 + - uid: 28824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,49.5 + parent: 2 + - uid: 28825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,44.5 + parent: 2 + - uid: 28835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,43.5 + parent: 2 + - uid: 28840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,50.5 + parent: 2 + - uid: 28841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,50.5 + parent: 2 + - uid: 28842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,50.5 + parent: 2 + - uid: 28862 + components: + - type: Transform + pos: -122.5,59.5 + parent: 2 + - uid: 28929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,47.5 + parent: 2 + - uid: 28930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,47.5 + parent: 2 + - uid: 28934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,42.5 + parent: 2 + - uid: 28968 + components: + - type: Transform + pos: -116.5,65.5 + parent: 2 + - uid: 28982 + components: + - type: Transform + pos: -112.5,65.5 + parent: 2 + - uid: 28983 + components: + - type: Transform + pos: -113.5,65.5 + parent: 2 + - uid: 28984 + components: + - type: Transform + pos: -114.5,65.5 + parent: 2 + - uid: 28985 + components: + - type: Transform + pos: -115.5,65.5 + parent: 2 + - uid: 28987 + components: + - type: Transform + pos: -111.5,65.5 + parent: 2 + - uid: 28988 + components: + - type: Transform + pos: -110.5,65.5 + parent: 2 + - uid: 28989 + components: + - type: Transform + pos: -117.5,65.5 + parent: 2 + - uid: 29077 + components: + - type: Transform + pos: -123.5,59.5 + parent: 2 + - uid: 29093 + components: + - type: Transform + pos: -110.5,38.5 + parent: 2 + - uid: 29105 + components: + - type: Transform + pos: -110.5,39.5 + parent: 2 + - uid: 29136 + components: + - type: Transform + pos: -115.5,28.5 + parent: 2 + - uid: 29137 + components: + - type: Transform + pos: -116.5,28.5 + parent: 2 + - uid: 29141 + components: + - type: Transform + pos: -117.5,28.5 + parent: 2 + - uid: 29142 + components: + - type: Transform + pos: -118.5,28.5 + parent: 2 + - uid: 29143 + components: + - type: Transform + pos: -119.5,28.5 + parent: 2 + - uid: 29144 + components: + - type: Transform + pos: -115.5,33.5 + parent: 2 + - uid: 29145 + components: + - type: Transform + pos: -115.5,34.5 + parent: 2 + - uid: 29146 + components: + - type: Transform + pos: -116.5,35.5 + parent: 2 + - uid: 29147 + components: + - type: Transform + pos: -116.5,34.5 + parent: 2 + - uid: 29149 + components: + - type: Transform + pos: -117.5,34.5 + parent: 2 + - uid: 29150 + components: + - type: Transform + pos: -116.5,33.5 + parent: 2 + - uid: 29151 + components: + - type: Transform + pos: -117.5,33.5 + parent: 2 + - uid: 29152 + components: + - type: Transform + pos: -118.5,34.5 + parent: 2 + - uid: 29153 + components: + - type: Transform + pos: -118.5,33.5 + parent: 2 + - uid: 29154 + components: + - type: Transform + pos: -119.5,34.5 + parent: 2 + - uid: 29155 + components: + - type: Transform + pos: -119.5,33.5 + parent: 2 + - uid: 29156 + components: + - type: Transform + pos: -119.5,32.5 + parent: 2 + - uid: 29157 + components: + - type: Transform + pos: -119.5,31.5 + parent: 2 + - uid: 29158 + components: + - type: Transform + pos: -119.5,30.5 + parent: 2 + - uid: 29159 + components: + - type: Transform + pos: -119.5,29.5 + parent: 2 + - uid: 29160 + components: + - type: Transform + pos: -118.5,32.5 + parent: 2 + - uid: 29161 + components: + - type: Transform + pos: -118.5,31.5 + parent: 2 + - uid: 29162 + components: + - type: Transform + pos: -118.5,30.5 + parent: 2 + - uid: 29163 + components: + - type: Transform + pos: -118.5,29.5 + parent: 2 + - uid: 29164 + components: + - type: Transform + pos: -120.5,32.5 + parent: 2 + - uid: 29165 + components: + - type: Transform + pos: -120.5,31.5 + parent: 2 + - uid: 29166 + components: + - type: Transform + pos: -121.5,32.5 + parent: 2 + - uid: 29167 + components: + - type: Transform + pos: -121.5,31.5 + parent: 2 + - uid: 29168 + components: + - type: Transform + pos: -122.5,32.5 + parent: 2 + - uid: 29169 + components: + - type: Transform + pos: -122.5,31.5 + parent: 2 + - uid: 29171 + components: + - type: Transform + pos: -122.5,30.5 + parent: 2 + - uid: 29172 + components: + - type: Transform + pos: -122.5,29.5 + parent: 2 + - uid: 29173 + components: + - type: Transform + pos: -122.5,28.5 + parent: 2 + - uid: 29174 + components: + - type: Transform + pos: -122.5,27.5 + parent: 2 + - uid: 29175 + components: + - type: Transform + pos: -122.5,26.5 + parent: 2 + - uid: 29177 + components: + - type: Transform + pos: -121.5,30.5 + parent: 2 + - uid: 29178 + components: + - type: Transform + pos: -121.5,29.5 + parent: 2 + - uid: 29179 + components: + - type: Transform + pos: -121.5,28.5 + parent: 2 + - uid: 29180 + components: + - type: Transform + pos: -121.5,27.5 + parent: 2 + - uid: 29181 + components: + - type: Transform + pos: -121.5,26.5 + parent: 2 + - uid: 29184 + components: + - type: Transform + pos: -123.5,26.5 + parent: 2 + - uid: 29185 + components: + - type: Transform + pos: -123.5,27.5 + parent: 2 + - uid: 29187 + components: + - type: Transform + pos: -124.5,26.5 + parent: 2 + - uid: 29188 + components: + - type: Transform + pos: -124.5,27.5 + parent: 2 + - uid: 29190 + components: + - type: Transform + pos: -125.5,26.5 + parent: 2 + - uid: 29191 + components: + - type: Transform + pos: -125.5,27.5 + parent: 2 + - uid: 29335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,50.5 + parent: 2 + - uid: 29341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,41.5 + parent: 2 + - uid: 29366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,46.5 + parent: 2 + - uid: 29367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,45.5 + parent: 2 + - uid: 29368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,39.5 + parent: 2 + - uid: 29415 + components: + - type: Transform + pos: -123.5,58.5 + parent: 2 + - uid: 29429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,17.5 + parent: 2 + - uid: 29430 + components: + - type: Transform + pos: -126.5,17.5 + parent: 2 + - uid: 29460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,46.5 + parent: 2 + - uid: 29590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,16.5 + parent: 2 + - uid: 29591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,18.5 + parent: 2 + - uid: 29601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,44.5 + parent: 2 + - uid: 29613 + components: + - type: Transform + pos: -122.5,35.5 + parent: 2 + - uid: 29614 + components: + - type: Transform + pos: -122.5,34.5 + parent: 2 + - uid: 29615 + components: + - type: Transform + pos: -121.5,38.5 + parent: 2 + - uid: 29616 + components: + - type: Transform + pos: -121.5,37.5 + parent: 2 + - uid: 29625 + components: + - type: Transform + pos: -121.5,35.5 + parent: 2 + - uid: 29626 + components: + - type: Transform + pos: -122.5,37.5 + parent: 2 + - uid: 29637 + components: + - type: Transform + pos: -122.5,36.5 + parent: 2 + - uid: 29638 + components: + - type: Transform + pos: -121.5,39.5 + parent: 2 + - uid: 29639 + components: + - type: Transform + pos: -121.5,36.5 + parent: 2 + - uid: 29697 + components: + - type: Transform + pos: -123.5,38.5 + parent: 2 + - uid: 30079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,39.5 + parent: 2 + - uid: 30080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,39.5 + parent: 2 + - uid: 30082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,40.5 + parent: 2 + - uid: 30084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,41.5 + parent: 2 + - uid: 30091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,40.5 + parent: 2 + - uid: 30106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,49.5 + parent: 2 + - uid: 30387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,19.5 + parent: 2 + - uid: 30666 + components: + - type: Transform + pos: -125.5,19.5 + parent: 2 + - uid: 30725 + components: + - type: Transform + pos: -125.5,25.5 + parent: 2 + - uid: 30726 + components: + - type: Transform + pos: -125.5,24.5 + parent: 2 + - uid: 30842 + components: + - type: Transform + pos: -66.5,170.5 + parent: 2 + - uid: 31585 + components: + - type: Transform + pos: -80.5,145.5 + parent: 2 + - uid: 31586 + components: + - type: Transform + pos: -79.5,145.5 + parent: 2 + - uid: 31587 + components: + - type: Transform + pos: -77.5,145.5 + parent: 2 + - uid: 31588 + components: + - type: Transform + pos: -77.5,146.5 + parent: 2 + - uid: 31589 + components: + - type: Transform + pos: -77.5,148.5 + parent: 2 + - uid: 31590 + components: + - type: Transform + pos: -76.5,148.5 + parent: 2 + - uid: 31733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,200.5 + parent: 2 + - uid: 31734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,200.5 + parent: 2 + - uid: 32064 + components: + - type: Transform + pos: -123.5,33.5 + parent: 2 + - uid: 32133 + components: + - type: Transform + pos: -123.5,32.5 + parent: 2 + - uid: 32503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,235.5 + parent: 2 + - uid: 32529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,235.5 + parent: 2 + - uid: 32678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 + - uid: 32694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,235.5 + parent: 2 + - uid: 32695 + components: + - type: Transform + pos: -1.5,236.5 + parent: 2 + - uid: 32696 + components: + - type: Transform + pos: -0.5,236.5 + parent: 2 + - uid: 32697 + components: + - type: Transform + pos: 0.5,236.5 + parent: 2 + - uid: 32698 + components: + - type: Transform + pos: 1.5,236.5 + parent: 2 + - uid: 32699 + components: + - type: Transform + pos: 2.5,236.5 + parent: 2 + - uid: 32700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,231.5 + parent: 2 + - uid: 32735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,231.5 + parent: 2 + - uid: 32736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,231.5 + parent: 2 + - uid: 32737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,233.5 + parent: 2 + - uid: 32738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,233.5 + parent: 2 + - uid: 32942 + components: + - type: Transform + pos: 2.5,232.5 + parent: 2 + - uid: 32945 + components: + - type: Transform + pos: 1.5,232.5 + parent: 2 + - uid: 32946 + components: + - type: Transform + pos: 0.5,232.5 + parent: 2 + - uid: 32948 + components: + - type: Transform + pos: -0.5,232.5 + parent: 2 + - uid: 32956 + components: + - type: Transform + pos: -1.5,232.5 + parent: 2 + - uid: 32960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,235.5 + parent: 2 + - uid: 32972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,235.5 + parent: 2 + - uid: 32973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,237.5 + parent: 2 + - uid: 32974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,237.5 + parent: 2 + - uid: 32975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,237.5 + parent: 2 + - uid: 32976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,237.5 + parent: 2 + - uid: 32977 + components: + - type: Transform + pos: -1.5,228.5 + parent: 2 + - uid: 32978 + components: + - type: Transform + pos: -0.5,228.5 + parent: 2 + - uid: 32993 + components: + - type: Transform + pos: 1.5,228.5 + parent: 2 + - uid: 32994 + components: + - type: Transform + pos: 2.5,228.5 + parent: 2 + - uid: 32995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,233.5 + parent: 2 + - uid: 32996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,233.5 + parent: 2 + - uid: 32997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,237.5 + parent: 2 + - uid: 32998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,225.5 + parent: 2 + - uid: 32999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,225.5 + parent: 2 + - uid: 33000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,225.5 + parent: 2 + - uid: 33001 + components: + - type: Transform + pos: 2.5,224.5 + parent: 2 + - uid: 33002 + components: + - type: Transform + pos: 1.5,224.5 + parent: 2 + - uid: 33003 + components: + - type: Transform + pos: 0.5,224.5 + parent: 2 + - uid: 33004 + components: + - type: Transform + pos: -0.5,224.5 + parent: 2 + - uid: 33005 + components: + - type: Transform + pos: -1.5,224.5 + parent: 2 + - uid: 33006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,233.5 + parent: 2 + - uid: 33007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,225.5 + parent: 2 + - uid: 33008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,225.5 + parent: 2 + - uid: 33009 + components: + - type: Transform + pos: 0.5,237.5 + parent: 2 + - uid: 33010 + components: + - type: Transform + pos: 0.5,238.5 + parent: 2 + - uid: 33011 + components: + - type: Transform + pos: 0.5,239.5 + parent: 2 + - uid: 33012 + components: + - type: Transform + pos: 0.5,240.5 + parent: 2 + - uid: 33013 + components: + - type: Transform + pos: 0.5,235.5 + parent: 2 + - uid: 33014 + components: + - type: Transform + pos: 0.5,234.5 + parent: 2 + - uid: 33015 + components: + - type: Transform + pos: 0.5,233.5 + parent: 2 + - uid: 33019 + components: + - type: Transform + pos: 0.5,227.5 + parent: 2 + - uid: 33020 + components: + - type: Transform + pos: 0.5,226.5 + parent: 2 + - uid: 33024 + components: + - type: Transform + pos: 0.5,221.5 + parent: 2 + - uid: 34458 + components: + - type: Transform + pos: -28.5,190.5 + parent: 2 + - uid: 34698 + components: + - type: Transform + pos: 0.5,220.5 + parent: 2 + - uid: 34699 + components: + - type: Transform + pos: 0.5,219.5 + parent: 2 + - uid: 34700 + components: + - type: Transform + pos: 0.5,218.5 + parent: 2 + - uid: 34701 + components: + - type: Transform + pos: 0.5,217.5 + parent: 2 + - uid: 34702 + components: + - type: Transform + pos: 0.5,216.5 + parent: 2 + - uid: 34740 + components: + - type: Transform + pos: 1.5,216.5 + parent: 2 + - uid: 34745 + components: + - type: Transform + pos: -0.5,216.5 + parent: 2 + - uid: 34759 + components: + - type: Transform + pos: -1.5,216.5 + parent: 2 + - uid: 34830 + components: + - type: Transform + pos: -0.5,215.5 + parent: 2 + - uid: 34831 + components: + - type: Transform + pos: -0.5,214.5 + parent: 2 + - uid: 34832 + components: + - type: Transform + pos: -0.5,213.5 + parent: 2 + - uid: 34833 + components: + - type: Transform + pos: -1.5,215.5 + parent: 2 + - uid: 34834 + components: + - type: Transform + pos: -1.5,214.5 + parent: 2 + - uid: 34835 + components: + - type: Transform + pos: -1.5,213.5 + parent: 2 + - uid: 34865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,223.5 + parent: 2 + - uid: 34866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,223.5 + parent: 2 + - uid: 34867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,223.5 + parent: 2 + - uid: 34868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,223.5 + parent: 2 + - uid: 34869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,227.5 + parent: 2 + - uid: 34870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,227.5 + parent: 2 + - uid: 34871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,227.5 + parent: 2 + - uid: 34872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,227.5 + parent: 2 + - uid: 34873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,227.5 + parent: 2 + - uid: 34874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,229.5 + parent: 2 + - uid: 34875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,229.5 + parent: 2 + - uid: 34876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,229.5 + parent: 2 + - uid: 34877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,229.5 + parent: 2 + - uid: 34878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,229.5 + parent: 2 + - uid: 34879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,231.5 + parent: 2 + - uid: 34880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,231.5 + parent: 2 + - uid: 34881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,231.5 + parent: 2 + - uid: 34882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,231.5 + parent: 2 + - uid: 34883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,231.5 + parent: 2 + - uid: 34884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,233.5 + parent: 2 + - uid: 34885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,233.5 + parent: 2 + - uid: 34886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,233.5 + parent: 2 + - uid: 34887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,233.5 + parent: 2 + - uid: 34888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,233.5 + parent: 2 + - uid: 34889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,235.5 + parent: 2 + - uid: 34890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,235.5 + parent: 2 + - uid: 34891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,235.5 + parent: 2 + - uid: 34892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,235.5 + parent: 2 + - uid: 34893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,235.5 + parent: 2 + - uid: 34894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,237.5 + parent: 2 + - uid: 34895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,237.5 + parent: 2 + - uid: 34896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,237.5 + parent: 2 + - uid: 34897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,237.5 + parent: 2 + - uid: 34898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,237.5 + parent: 2 + - uid: 34899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,231.5 + parent: 2 + - uid: 34900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,231.5 + parent: 2 + - uid: 34901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,229.5 + parent: 2 + - uid: 34902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,229.5 + parent: 2 + - uid: 34903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,229.5 + parent: 2 + - uid: 34904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,229.5 + parent: 2 + - uid: 34905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,229.5 + parent: 2 + - uid: 34906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,227.5 + parent: 2 + - uid: 34907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,227.5 + parent: 2 + - uid: 34908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,227.5 + parent: 2 + - uid: 34909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,227.5 + parent: 2 + - uid: 34910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,227.5 + parent: 2 + - uid: 34911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,225.5 + parent: 2 + - uid: 34912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,225.5 + parent: 2 + - uid: 34913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,225.5 + parent: 2 + - uid: 34914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,225.5 + parent: 2 + - uid: 34915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,225.5 + parent: 2 + - uid: 34916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,223.5 + parent: 2 + - uid: 34917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,223.5 + parent: 2 + - uid: 34918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,223.5 + parent: 2 + - uid: 34919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,223.5 + parent: 2 + - uid: 34920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,223.5 + parent: 2 + - uid: 34921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,240.5 + parent: 2 + - uid: 34922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,241.5 + parent: 2 + - uid: 34923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,240.5 + parent: 2 + - uid: 34958 + components: + - type: Transform + pos: -79.5,-12.5 + parent: 2 + - uid: 35027 + components: + - type: Transform + pos: -79.5,-11.5 + parent: 2 + - uid: 35028 + components: + - type: Transform + pos: -79.5,-10.5 + parent: 2 + - uid: 35029 + components: + - type: Transform + pos: -77.5,-12.5 + parent: 2 + - uid: 35030 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 35031 + components: + - type: Transform + pos: -77.5,-10.5 + parent: 2 + - uid: 35032 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 35033 + components: + - type: Transform + pos: -75.5,-11.5 + parent: 2 + - uid: 35034 + components: + - type: Transform + pos: -75.5,-10.5 + parent: 2 + - uid: 35035 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 35036 + components: + - type: Transform + pos: -75.5,-5.5 + parent: 2 + - uid: 35037 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 35038 + components: + - type: Transform + pos: -77.5,-6.5 + parent: 2 + - uid: 35039 + components: + - type: Transform + pos: -77.5,-5.5 + parent: 2 + - uid: 35040 + components: + - type: Transform + pos: -77.5,-4.5 + parent: 2 + - uid: 35041 + components: + - type: Transform + pos: -79.5,-6.5 + parent: 2 + - uid: 35042 + components: + - type: Transform + pos: -79.5,-5.5 + parent: 2 + - uid: 35043 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 35044 + components: + - type: Transform + pos: -81.5,-6.5 + parent: 2 + - uid: 35045 + components: + - type: Transform + pos: -81.5,-5.5 + parent: 2 + - uid: 35046 + components: + - type: Transform + pos: -81.5,-4.5 + parent: 2 + - uid: 35047 + components: + - type: Transform + pos: -84.5,-9.5 + parent: 2 + - uid: 35048 + components: + - type: Transform + pos: -84.5,-8.5 + parent: 2 + - uid: 35049 + components: + - type: Transform + pos: -84.5,-7.5 + parent: 2 + - uid: 35050 + components: + - type: Transform + pos: -85.5,-8.5 + parent: 2 + - uid: 35126 + components: + - type: Transform + pos: -118.5,150.5 + parent: 2 + - uid: 35208 + components: + - type: Transform + pos: -113.5,148.5 + parent: 2 + - uid: 35209 + components: + - type: Transform + pos: -114.5,148.5 + parent: 2 + - uid: 35210 + components: + - type: Transform + pos: -115.5,148.5 + parent: 2 + - uid: 35211 + components: + - type: Transform + pos: -116.5,148.5 + parent: 2 + - uid: 35213 + components: + - type: Transform + pos: -118.5,148.5 + parent: 2 + - uid: 35215 + components: + - type: Transform + pos: -120.5,148.5 + parent: 2 + - uid: 35216 + components: + - type: Transform + pos: -121.5,148.5 + parent: 2 + - uid: 35219 + components: + - type: Transform + pos: -124.5,148.5 + parent: 2 + - uid: 35220 + components: + - type: Transform + pos: -125.5,148.5 + parent: 2 + - uid: 35221 + components: + - type: Transform + pos: -126.5,148.5 + parent: 2 + - uid: 35222 + components: + - type: Transform + pos: -127.5,148.5 + parent: 2 + - uid: 35223 + components: + - type: Transform + pos: -128.5,148.5 + parent: 2 + - uid: 35224 + components: + - type: Transform + pos: -129.5,148.5 + parent: 2 + - uid: 35225 + components: + - type: Transform + pos: -130.5,148.5 + parent: 2 + - uid: 35226 + components: + - type: Transform + pos: -131.5,147.5 + parent: 2 + - uid: 35227 + components: + - type: Transform + pos: -132.5,148.5 + parent: 2 + - uid: 35228 + components: + - type: Transform + pos: -131.5,148.5 + parent: 2 + - uid: 35229 + components: + - type: Transform + pos: -131.5,149.5 + parent: 2 + - uid: 35230 + components: + - type: Transform + pos: -127.5,146.5 + parent: 2 + - uid: 35231 + components: + - type: Transform + pos: -127.5,147.5 + parent: 2 + - uid: 35232 + components: + - type: Transform + pos: -128.5,143.5 + parent: 2 + - uid: 35233 + components: + - type: Transform + pos: -127.5,149.5 + parent: 2 + - uid: 35234 + components: + - type: Transform + pos: -127.5,150.5 + parent: 2 + - uid: 35235 + components: + - type: Transform + pos: -123.5,146.5 + parent: 2 + - uid: 35236 + components: + - type: Transform + pos: -123.5,147.5 + parent: 2 + - uid: 35237 + components: + - type: Transform + pos: -128.5,144.5 + parent: 2 + - uid: 35238 + components: + - type: Transform + pos: -123.5,149.5 + parent: 2 + - uid: 35239 + components: + - type: Transform + pos: -123.5,150.5 + parent: 2 + - uid: 35240 + components: + - type: Transform + pos: -119.5,146.5 + parent: 2 + - uid: 35241 + components: + - type: Transform + pos: -119.5,147.5 + parent: 2 + - uid: 35242 + components: + - type: Transform + pos: -128.5,145.5 + parent: 2 + - uid: 35243 + components: + - type: Transform + pos: -119.5,149.5 + parent: 2 + - uid: 35244 + components: + - type: Transform + pos: -119.5,150.5 + parent: 2 + - uid: 35245 + components: + - type: Transform + pos: -115.5,146.5 + parent: 2 + - uid: 35246 + components: + - type: Transform + pos: -115.5,147.5 + parent: 2 + - uid: 35247 + components: + - type: Transform + pos: -128.5,146.5 + parent: 2 + - uid: 35248 + components: + - type: Transform + pos: -115.5,149.5 + parent: 2 + - uid: 35249 + components: + - type: Transform + pos: -115.5,150.5 + parent: 2 + - uid: 35250 + components: + - type: Transform + pos: -128.5,142.5 + parent: 2 + - uid: 35251 + components: + - type: Transform + pos: -126.5,146.5 + parent: 2 + - uid: 35252 + components: + - type: Transform + pos: -126.5,145.5 + parent: 2 + - uid: 35253 + components: + - type: Transform + pos: -126.5,144.5 + parent: 2 + - uid: 35254 + components: + - type: Transform + pos: -126.5,143.5 + parent: 2 + - uid: 35255 + components: + - type: Transform + pos: -126.5,142.5 + parent: 2 + - uid: 35256 + components: + - type: Transform + pos: -124.5,142.5 + parent: 2 + - uid: 35257 + components: + - type: Transform + pos: -124.5,143.5 + parent: 2 + - uid: 35258 + components: + - type: Transform + pos: -124.5,144.5 + parent: 2 + - uid: 35259 + components: + - type: Transform + pos: -124.5,145.5 + parent: 2 + - uid: 35260 + components: + - type: Transform + pos: -124.5,146.5 + parent: 2 + - uid: 35261 + components: + - type: Transform + pos: -122.5,142.5 + parent: 2 + - uid: 35262 + components: + - type: Transform + pos: -122.5,143.5 + parent: 2 + - uid: 35263 + components: + - type: Transform + pos: -122.5,144.5 + parent: 2 + - uid: 35264 + components: + - type: Transform + pos: -122.5,145.5 + parent: 2 + - uid: 35265 + components: + - type: Transform + pos: -122.5,146.5 + parent: 2 + - uid: 35266 + components: + - type: Transform + pos: -120.5,142.5 + parent: 2 + - uid: 35267 + components: + - type: Transform + pos: -120.5,143.5 + parent: 2 + - uid: 35268 + components: + - type: Transform + pos: -120.5,144.5 + parent: 2 + - uid: 35269 + components: + - type: Transform + pos: -120.5,145.5 + parent: 2 + - uid: 35270 + components: + - type: Transform + pos: -120.5,146.5 + parent: 2 + - uid: 35271 + components: + - type: Transform + pos: -118.5,142.5 + parent: 2 + - uid: 35272 + components: + - type: Transform + pos: -118.5,143.5 + parent: 2 + - uid: 35273 + components: + - type: Transform + pos: -118.5,144.5 + parent: 2 + - uid: 35274 + components: + - type: Transform + pos: -118.5,145.5 + parent: 2 + - uid: 35275 + components: + - type: Transform + pos: -118.5,146.5 + parent: 2 + - uid: 35276 + components: + - type: Transform + pos: -116.5,142.5 + parent: 2 + - uid: 35277 + components: + - type: Transform + pos: -116.5,143.5 + parent: 2 + - uid: 35278 + components: + - type: Transform + pos: -116.5,144.5 + parent: 2 + - uid: 35279 + components: + - type: Transform + pos: -116.5,145.5 + parent: 2 + - uid: 35280 + components: + - type: Transform + pos: -116.5,146.5 + parent: 2 + - uid: 35281 + components: + - type: Transform + pos: -114.5,142.5 + parent: 2 + - uid: 35282 + components: + - type: Transform + pos: -114.5,143.5 + parent: 2 + - uid: 35283 + components: + - type: Transform + pos: -114.5,144.5 + parent: 2 + - uid: 35284 + components: + - type: Transform + pos: -114.5,145.5 + parent: 2 + - uid: 35285 + components: + - type: Transform + pos: -114.5,146.5 + parent: 2 + - uid: 35286 + components: + - type: Transform + pos: -114.5,150.5 + parent: 2 + - uid: 35287 + components: + - type: Transform + pos: -114.5,151.5 + parent: 2 + - uid: 35288 + components: + - type: Transform + pos: -114.5,152.5 + parent: 2 + - uid: 35289 + components: + - type: Transform + pos: -114.5,153.5 + parent: 2 + - uid: 35290 + components: + - type: Transform + pos: -114.5,154.5 + parent: 2 + - uid: 35291 + components: + - type: Transform + pos: -116.5,154.5 + parent: 2 + - uid: 35292 + components: + - type: Transform + pos: -116.5,153.5 + parent: 2 + - uid: 35293 + components: + - type: Transform + pos: -116.5,152.5 + parent: 2 + - uid: 35294 + components: + - type: Transform + pos: -116.5,151.5 + parent: 2 + - uid: 35295 + components: + - type: Transform + pos: -116.5,150.5 + parent: 2 + - uid: 35296 + components: + - type: Transform + pos: -118.5,151.5 + parent: 2 + - uid: 35297 + components: + - type: Transform + pos: -118.5,152.5 + parent: 2 + - uid: 35298 + components: + - type: Transform + pos: -118.5,153.5 + parent: 2 + - uid: 35299 + components: + - type: Transform + pos: -118.5,154.5 + parent: 2 + - uid: 35300 + components: + - type: Transform + pos: -120.5,150.5 + parent: 2 + - uid: 35301 + components: + - type: Transform + pos: -120.5,151.5 + parent: 2 + - uid: 35302 + components: + - type: Transform + pos: -120.5,152.5 + parent: 2 + - uid: 35303 + components: + - type: Transform + pos: -120.5,153.5 + parent: 2 + - uid: 35304 + components: + - type: Transform + pos: -120.5,154.5 + parent: 2 + - uid: 35305 + components: + - type: Transform + pos: -126.5,150.5 + parent: 2 + - uid: 35306 + components: + - type: Transform + pos: -122.5,150.5 + parent: 2 + - uid: 35307 + components: + - type: Transform + pos: -122.5,151.5 + parent: 2 + - uid: 35308 + components: + - type: Transform + pos: -122.5,152.5 + parent: 2 + - uid: 35309 + components: + - type: Transform + pos: -122.5,153.5 + parent: 2 + - uid: 35310 + components: + - type: Transform + pos: -122.5,154.5 + parent: 2 + - uid: 35311 + components: + - type: Transform + pos: -124.5,150.5 + parent: 2 + - uid: 35312 + components: + - type: Transform + pos: -124.5,151.5 + parent: 2 + - uid: 35313 + components: + - type: Transform + pos: -124.5,152.5 + parent: 2 + - uid: 35314 + components: + - type: Transform + pos: -124.5,153.5 + parent: 2 + - uid: 35315 + components: + - type: Transform + pos: -124.5,154.5 + parent: 2 + - uid: 35316 + components: + - type: Transform + pos: -126.5,151.5 + parent: 2 + - uid: 35317 + components: + - type: Transform + pos: -126.5,152.5 + parent: 2 + - uid: 35318 + components: + - type: Transform + pos: -126.5,153.5 + parent: 2 + - uid: 35319 + components: + - type: Transform + pos: -126.5,154.5 + parent: 2 + - uid: 35320 + components: + - type: Transform + pos: -128.5,150.5 + parent: 2 + - uid: 35321 + components: + - type: Transform + pos: -128.5,151.5 + parent: 2 + - uid: 35322 + components: + - type: Transform + pos: -128.5,152.5 + parent: 2 + - uid: 35323 + components: + - type: Transform + pos: -128.5,153.5 + parent: 2 + - uid: 35324 + components: + - type: Transform + pos: -128.5,154.5 + parent: 2 + - uid: 35402 + components: + - type: Transform + pos: -106.5,147.5 + parent: 2 + - uid: 35403 + components: + - type: Transform + pos: -105.5,147.5 + parent: 2 + - uid: 35404 + components: + - type: Transform + pos: -104.5,147.5 + parent: 2 + - uid: 35405 + components: + - type: Transform + pos: -103.5,147.5 + parent: 2 + - uid: 35406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,149.5 + parent: 2 + - uid: 35407 + components: + - type: Transform + pos: -108.5,148.5 + parent: 2 + - uid: 35408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,147.5 + parent: 2 + - uid: 35409 + components: + - type: Transform + pos: -107.5,148.5 + parent: 2 + - uid: 35410 + components: + - type: Transform + pos: -106.5,149.5 + parent: 2 + - uid: 35411 + components: + - type: Transform + pos: -106.5,148.5 + parent: 2 + - uid: 35412 + components: + - type: Transform + pos: -105.5,149.5 + parent: 2 + - uid: 35413 + components: + - type: Transform + pos: -105.5,148.5 + parent: 2 + - uid: 35423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,148.5 + parent: 2 + - uid: 35424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,148.5 + parent: 2 + - uid: 35425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,148.5 + parent: 2 + - uid: 35426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,148.5 + parent: 2 + - uid: 35466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,23.5 + parent: 2 + - uid: 35467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,22.5 + parent: 2 + - uid: 35468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,21.5 + parent: 2 + - uid: 35469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,20.5 + parent: 2 + - uid: 35470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,21.5 + parent: 2 + - uid: 35471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,20.5 + parent: 2 + - uid: 35472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,18.5 + parent: 2 + - uid: 35473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,17.5 + parent: 2 + - uid: 35474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,16.5 + parent: 2 + - uid: 35808 + components: + - type: Transform + pos: -95.5,99.5 + parent: 2 + - uid: 35809 + components: + - type: Transform + pos: -96.5,99.5 + parent: 2 + - uid: 35812 + components: + - type: Transform + pos: -97.5,99.5 + parent: 2 + - uid: 36571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,100.5 + parent: 2 + - uid: 36653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,99.5 + parent: 2 + - uid: 36654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,99.5 + parent: 2 + - uid: 36655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,101.5 + parent: 2 + - uid: 36656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,102.5 + parent: 2 + - uid: 36657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,103.5 + parent: 2 + - uid: 36658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,104.5 + parent: 2 + - uid: 36956 + components: + - type: Transform + pos: 24.5,190.5 + parent: 2 + - uid: 36963 + components: + - type: Transform + pos: -13.5,86.5 + parent: 2 + - uid: 37086 + components: + - type: Transform + pos: -47.5,62.5 + parent: 2 + - uid: 37214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,169.5 + parent: 2 + - uid: 37290 + components: + - type: Transform + pos: -47.5,177.5 + parent: 2 + - uid: 37296 + components: + - type: Transform + pos: -36.5,177.5 + parent: 2 + - uid: 37297 + components: + - type: Transform + pos: -36.5,178.5 + parent: 2 + - uid: 37298 + components: + - type: Transform + pos: -36.5,179.5 + parent: 2 + - uid: 37299 + components: + - type: Transform + pos: -35.5,180.5 + parent: 2 + - uid: 37300 + components: + - type: Transform + pos: -36.5,180.5 + parent: 2 + - uid: 37301 + components: + - type: Transform + pos: -38.5,177.5 + parent: 2 + - uid: 37302 + components: + - type: Transform + pos: -39.5,177.5 + parent: 2 + - uid: 37303 + components: + - type: Transform + pos: -40.5,177.5 + parent: 2 + - uid: 37304 + components: + - type: Transform + pos: -41.5,177.5 + parent: 2 + - uid: 37305 + components: + - type: Transform + pos: -42.5,177.5 + parent: 2 + - uid: 37306 + components: + - type: Transform + pos: -39.5,176.5 + parent: 2 + - uid: 37307 + components: + - type: Transform + pos: -44.5,177.5 + parent: 2 + - uid: 37308 + components: + - type: Transform + pos: -45.5,177.5 + parent: 2 + - uid: 37309 + components: + - type: Transform + pos: -46.5,177.5 + parent: 2 + - uid: 37310 + components: + - type: Transform + pos: -47.5,176.5 + parent: 2 + - uid: 37311 + components: + - type: Transform + pos: -52.5,172.5 + parent: 2 + - uid: 37312 + components: + - type: Transform + pos: -47.5,175.5 + parent: 2 + - uid: 37313 + components: + - type: Transform + pos: -47.5,174.5 + parent: 2 + - uid: 37314 + components: + - type: Transform + pos: -47.5,173.5 + parent: 2 + - uid: 37315 + components: + - type: Transform + pos: -47.5,172.5 + parent: 2 + - uid: 37316 + components: + - type: Transform + pos: -48.5,172.5 + parent: 2 + - uid: 37317 + components: + - type: Transform + pos: -49.5,172.5 + parent: 2 + - uid: 37318 + components: + - type: Transform + pos: -50.5,172.5 + parent: 2 + - uid: 37319 + components: + - type: Transform + pos: -53.5,172.5 + parent: 2 + - uid: 37320 + components: + - type: Transform + pos: -54.5,172.5 + parent: 2 + - uid: 37321 + components: + - type: Transform + pos: -54.5,171.5 + parent: 2 + - uid: 37331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,169.5 + parent: 2 + - uid: 37577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,189.5 + parent: 2 + - uid: 37578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,188.5 + parent: 2 + - uid: 37628 + components: + - type: Transform + pos: -101.5,53.5 + parent: 2 + - uid: 37629 + components: + - type: Transform + pos: -100.5,53.5 + parent: 2 + - uid: 37630 + components: + - type: Transform + pos: -101.5,54.5 + parent: 2 + - uid: 37632 + components: + - type: Transform + pos: -101.5,55.5 + parent: 2 + - uid: 37633 + components: + - type: Transform + pos: -101.5,56.5 + parent: 2 + - uid: 37634 + components: + - type: Transform + pos: -101.5,57.5 + parent: 2 + - uid: 37635 + components: + - type: Transform + pos: -101.5,58.5 + parent: 2 + - uid: 37636 + components: + - type: Transform + pos: -101.5,60.5 + parent: 2 + - uid: 37637 + components: + - type: Transform + pos: -101.5,61.5 + parent: 2 + - uid: 37638 + components: + - type: Transform + pos: -102.5,61.5 + parent: 2 + - uid: 37640 + components: + - type: Transform + pos: -102.5,62.5 + parent: 2 + - uid: 37641 + components: + - type: Transform + pos: -102.5,63.5 + parent: 2 + - uid: 37643 + components: + - type: Transform + pos: -103.5,63.5 + parent: 2 + - uid: 37644 + components: + - type: Transform + pos: -105.5,63.5 + parent: 2 + - uid: 37645 + components: + - type: Transform + pos: -106.5,63.5 + parent: 2 + - uid: 37646 + components: + - type: Transform + pos: -107.5,63.5 + parent: 2 + - uid: 37647 + components: + - type: Transform + pos: -104.5,63.5 + parent: 2 + - uid: 37677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,57.5 + parent: 2 + - uid: 37679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,57.5 + parent: 2 + - uid: 37680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,57.5 + parent: 2 + - uid: 37717 + components: + - type: Transform + pos: 2.5,80.5 + parent: 2 + - uid: 37727 + components: + - type: Transform + pos: -105.5,67.5 + parent: 2 + - uid: 37728 + components: + - type: Transform + pos: -104.5,67.5 + parent: 2 + - uid: 37729 + components: + - type: Transform + pos: -103.5,69.5 + parent: 2 + - uid: 37730 + components: + - type: Transform + pos: -101.5,69.5 + parent: 2 + - uid: 37731 + components: + - type: Transform + pos: -100.5,69.5 + parent: 2 + - uid: 37732 + components: + - type: Transform + pos: -97.5,71.5 + parent: 2 + - uid: 37734 + components: + - type: Transform + pos: -95.5,73.5 + parent: 2 + - uid: 37735 + components: + - type: Transform + pos: -94.5,73.5 + parent: 2 + - uid: 37736 + components: + - type: Transform + pos: -92.5,73.5 + parent: 2 + - uid: 37737 + components: + - type: Transform + pos: -92.5,74.5 + parent: 2 + - uid: 37738 + components: + - type: Transform + pos: -90.5,75.5 + parent: 2 + - uid: 37741 + components: + - type: Transform + pos: -99.5,71.5 + parent: 2 + - uid: 37744 + components: + - type: Transform + pos: -99.5,70.5 + parent: 2 + - uid: 37745 + components: + - type: Transform + pos: -107.5,66.5 + parent: 2 + - uid: 37752 + components: + - type: Transform + pos: -95.5,51.5 + parent: 2 + - uid: 37754 + components: + - type: Transform + pos: -97.5,54.5 + parent: 2 + - uid: 37755 + components: + - type: Transform + pos: -96.5,55.5 + parent: 2 + - uid: 37756 + components: + - type: Transform + pos: -95.5,55.5 + parent: 2 + - uid: 37757 + components: + - type: Transform + pos: -93.5,56.5 + parent: 2 + - uid: 37758 + components: + - type: Transform + pos: -91.5,56.5 + parent: 2 + - uid: 37759 + components: + - type: Transform + pos: -89.5,57.5 + parent: 2 + - uid: 37760 + components: + - type: Transform + pos: -89.5,58.5 + parent: 2 + - uid: 37761 + components: + - type: Transform + pos: -90.5,58.5 + parent: 2 + - uid: 37762 + components: + - type: Transform + pos: -86.5,59.5 + parent: 2 + - uid: 37763 + components: + - type: Transform + pos: -86.5,60.5 + parent: 2 + - uid: 37764 + components: + - type: Transform + pos: -83.5,60.5 + parent: 2 + - uid: 37766 + components: + - type: Transform + pos: -80.5,62.5 + parent: 2 + - uid: 37767 + components: + - type: Transform + pos: -79.5,62.5 + parent: 2 + - uid: 37768 + components: + - type: Transform + pos: -79.5,63.5 + parent: 2 + - uid: 37769 + components: + - type: Transform + pos: -77.5,64.5 + parent: 2 + - uid: 37770 + components: + - type: Transform + pos: -75.5,65.5 + parent: 2 + - uid: 38286 + components: + - type: Transform + pos: -0.5,161.5 + parent: 2 + - uid: 38287 + components: + - type: Transform + pos: 1.5,161.5 + parent: 2 + - uid: 38445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,34.5 + parent: 2 + - uid: 38450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,48.5 + parent: 2 + - uid: 38452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,50.5 + parent: 2 + - uid: 39175 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 39176 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 39177 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 39197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,98.5 + parent: 2 + - uid: 39198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,99.5 + parent: 2 + - uid: 39199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,100.5 + parent: 2 + - uid: 39200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,94.5 + parent: 2 + - uid: 39201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,95.5 + parent: 2 + - uid: 39202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,96.5 + parent: 2 + - uid: 39203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,94.5 + parent: 2 + - uid: 39204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,95.5 + parent: 2 + - uid: 39205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,96.5 + parent: 2 + - uid: 39206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,94.5 + parent: 2 + - uid: 39207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,95.5 + parent: 2 + - uid: 39208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,96.5 + parent: 2 + - uid: 39210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,95.5 + parent: 2 + - uid: 39211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,96.5 + parent: 2 + - uid: 39212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,94.5 + parent: 2 + - uid: 39213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,95.5 + parent: 2 + - uid: 39214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,96.5 + parent: 2 + - uid: 39215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,94.5 + parent: 2 + - uid: 39216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,95.5 + parent: 2 + - uid: 39217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,96.5 + parent: 2 + - uid: 39218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,94.5 + parent: 2 + - uid: 39219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,95.5 + parent: 2 + - uid: 39220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,96.5 + parent: 2 + - uid: 39221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,94.5 + parent: 2 + - uid: 39222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,95.5 + parent: 2 + - uid: 39223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,96.5 + parent: 2 + - uid: 39224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,97.5 + parent: 2 + - uid: 39225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,98.5 + parent: 2 + - uid: 39226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,99.5 + parent: 2 + - uid: 39227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,97.5 + parent: 2 + - uid: 39228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,98.5 + parent: 2 + - uid: 39229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,99.5 + parent: 2 + - uid: 39231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,95.5 + parent: 2 + - uid: 39232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,96.5 + parent: 2 + - uid: 39233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,97.5 + parent: 2 + - uid: 39324 + components: + - type: Transform + pos: -125.5,23.5 + parent: 2 + - uid: 39325 + components: + - type: Transform + pos: -124.5,24.5 + parent: 2 + - uid: 39326 + components: + - type: Transform + pos: -124.5,23.5 + parent: 2 + - uid: 39429 + components: + - type: Transform + pos: -26.5,166.5 + parent: 2 + - uid: 39431 + components: + - type: Transform + pos: -20.5,160.5 + parent: 2 + - uid: 39432 + components: + - type: Transform + pos: -20.5,163.5 + parent: 2 + - uid: 39433 + components: + - type: Transform + pos: -23.5,166.5 + parent: 2 + - uid: 39434 + components: + - type: Transform + pos: -18.5,163.5 + parent: 2 + - uid: 39435 + components: + - type: Transform + pos: -18.5,160.5 + parent: 2 + - uid: 39436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,161.5 + parent: 2 + - uid: 39437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,164.5 + parent: 2 + - uid: 39438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,164.5 + parent: 2 + - uid: 39439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,166.5 + parent: 2 + - uid: 39440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,166.5 + parent: 2 + - uid: 39441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - uid: 43239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-2.5 + parent: 2 + - uid: 43240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 2 + - uid: 43241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-2.5 + parent: 2 + - uid: 43242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-2.5 + parent: 2 + - uid: 43243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 2 + - uid: 43244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-2.5 + parent: 2 + - uid: 43245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - uid: 43246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-3.5 + parent: 2 + - uid: 43247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-3.5 + parent: 2 + - uid: 43249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-3.5 + parent: 2 + - uid: 43250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-3.5 + parent: 2 + - uid: 43251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-4.5 + parent: 2 + - uid: 43252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - uid: 43253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - uid: 43254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - uid: 43255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-2.5 + parent: 2 + - uid: 43257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,7.5 + parent: 2 + - uid: 43258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,8.5 + parent: 2 + - uid: 43259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,9.5 + parent: 2 + - uid: 43260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,7.5 + parent: 2 + - uid: 43261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,8.5 + parent: 2 + - uid: 43262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,9.5 + parent: 2 + - uid: 43345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,17.5 + parent: 2 + - uid: 43350 + components: + - type: Transform + pos: -124.5,25.5 + parent: 2 + - uid: 43353 + components: + - type: Transform + pos: -124.5,22.5 + parent: 2 + - uid: 43357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,20.5 + parent: 2 + - uid: 43373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,15.5 + parent: 2 + - uid: 43375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,15.5 + parent: 2 + - uid: 43378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,16.5 + parent: 2 + - uid: 43392 + components: + - type: Transform + pos: -123.5,15.5 + parent: 2 + - uid: 43409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,14.5 + parent: 2 + - uid: 43410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,13.5 + parent: 2 + - uid: 43411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,12.5 + parent: 2 + - uid: 43412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,11.5 + parent: 2 + - uid: 43426 + components: + - type: Transform + pos: -125.5,10.5 + parent: 2 + - uid: 43427 + components: + - type: Transform + pos: -125.5,9.5 + parent: 2 + - uid: 43428 + components: + - type: Transform + pos: -125.5,8.5 + parent: 2 + - uid: 43429 + components: + - type: Transform + pos: -125.5,7.5 + parent: 2 + - uid: 43430 + components: + - type: Transform + pos: -126.5,7.5 + parent: 2 + - uid: 43431 + components: + - type: Transform + pos: -127.5,7.5 + parent: 2 + - uid: 43433 + components: + - type: Transform + pos: -129.5,7.5 + parent: 2 + - uid: 43434 + components: + - type: Transform + pos: -130.5,7.5 + parent: 2 + - uid: 43436 + components: + - type: Transform + pos: -132.5,7.5 + parent: 2 + - uid: 43437 + components: + - type: Transform + pos: -133.5,7.5 + parent: 2 + - uid: 43438 + components: + - type: Transform + pos: -124.5,7.5 + parent: 2 + - uid: 43442 + components: + - type: Transform + pos: -122.5,7.5 + parent: 2 + - uid: 43444 + components: + - type: Transform + pos: -121.5,7.5 + parent: 2 + - uid: 43449 + components: + - type: Transform + pos: -118.5,7.5 + parent: 2 + - uid: 43451 + components: + - type: Transform + pos: -117.5,7.5 + parent: 2 + - uid: 43453 + components: + - type: Transform + pos: -127.5,15.5 + parent: 2 +- proto: CelloInstrument + entities: + - uid: 19921 + components: + - type: Transform + pos: -86.47973,154.59857 + parent: 2 +- proto: Chair + entities: + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,33.5 + parent: 2 + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,151.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,4.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,31.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: -123.5,33.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 72.5,35.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-6.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: -64.5,68.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,89.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,86.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,47.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,43.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 109.5,49.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,26.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,49.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,65.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,65.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,67.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,67.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,25.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,88.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,44.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,44.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,26.5 + parent: 2 + - uid: 8747 + components: + - type: Transform + pos: -88.5,90.5 + parent: 2 + - uid: 8748 + components: + - type: Transform + pos: -85.5,91.5 + parent: 2 + - uid: 8749 + components: + - type: Transform + pos: -84.5,91.5 + parent: 2 + - uid: 8750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,88.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,88.5 + parent: 2 + - uid: 8753 + components: + - type: Transform + pos: -88.5,87.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,78.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: -17.5,103.5 + parent: 2 + - uid: 10997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,94.5 + parent: 2 + - uid: 11155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,94.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,147.5 + parent: 2 + - uid: 13473 + components: + - type: Transform + pos: -125.5,106.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + pos: -65.5,101.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,100.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,100.5 + parent: 2 + - uid: 13949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,105.5 + parent: 2 + - uid: 14670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,85.5 + parent: 2 + - uid: 14678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,80.5 + parent: 2 + - uid: 14679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,80.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,80.5 + parent: 2 + - uid: 14681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,80.5 + parent: 2 + - uid: 14682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,79.5 + parent: 2 + - uid: 14683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,79.5 + parent: 2 + - uid: 14684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,79.5 + parent: 2 + - uid: 14685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,79.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,80.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,79.5 + parent: 2 + - uid: 14688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,79.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,80.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,73.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,91.5 + parent: 2 + - uid: 16488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,91.5 + parent: 2 + - uid: 16509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,85.5 + parent: 2 + - uid: 16510 + components: + - type: Transform + pos: -24.5,87.5 + parent: 2 + - uid: 17526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,37.5 + parent: 2 + - uid: 18639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,151.5 + parent: 2 + - uid: 24022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,212.5 + parent: 2 + - uid: 24023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,212.5 + parent: 2 + - uid: 25426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,167.5 + parent: 2 + - uid: 27599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 111.5,59.5 + parent: 2 + - uid: 27772 + components: + - type: Transform + pos: -76.5,46.5 + parent: 2 + - uid: 27782 + components: + - type: Transform + pos: -76.5,37.5 + parent: 2 + - uid: 27993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,45.5 + parent: 2 + - uid: 28153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,47.5 + parent: 2 + - uid: 28644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,43.5 + parent: 2 + - uid: 28645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,44.5 + parent: 2 + - uid: 28646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,43.5 + parent: 2 + - uid: 28730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,49.5 + parent: 2 + - uid: 28776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,59.5 + parent: 2 + - uid: 28788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,49.5 + parent: 2 + - uid: 28858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,94.5 + parent: 2 + - uid: 28870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,49.5 + parent: 2 + - uid: 28885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,48.5 + parent: 2 + - uid: 28889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,47.5 + parent: 2 + - uid: 28890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,48.5 + parent: 2 + - uid: 28973 + components: + - type: Transform + pos: 105.5,57.5 + parent: 2 + - uid: 33102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,63.5 + parent: 2 + - uid: 36515 + components: + - type: Transform + pos: -126.5,106.5 + parent: 2 + - uid: 37391 + components: + - type: Transform + pos: -65.5,68.5 + parent: 2 + - uid: 37742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,79.5 + parent: 2 +- proto: ChairBrass + entities: + - uid: 27317 + components: + - type: Transform + pos: -116.5,49.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.44626,61.734432 + parent: 2 + - uid: 677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.75876,61.078182 + parent: 2 + - uid: 678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.75876,61.078182 + parent: 2 + - uid: 713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.336884,60.296932 + parent: 2 + - uid: 764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.836884,59.671932 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: 81.44106,19.528938 + parent: 2 + - uid: 8331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.388954,25.199993 + parent: 2 + - uid: 9667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,68.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.275146,160.60641 + parent: 2 + - uid: 11453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.525146,160.51266 + parent: 2 + - uid: 12641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,187.5 + parent: 2 + - uid: 13209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,70.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,69.5 + parent: 2 + - uid: 16438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 115.5,47.5 + parent: 2 + - uid: 18278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.6565475,214.07523 + parent: 2 + - uid: 25213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.461,103.62415 + parent: 2 + - uid: 25699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,187.5 + parent: 2 + - uid: 25717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,187.5 + parent: 2 + - uid: 28665 + components: + - type: Transform + pos: 70.5,55.5 + parent: 2 + - uid: 36167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,73.5 + parent: 2 + - uid: 37751 + components: + - type: Transform + pos: -85.5,59.5 + parent: 2 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 9092 + components: + - type: Transform + pos: -43.485947,63.73232 + parent: 2 + - uid: 11320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.43665,147.61624 + parent: 2 + - uid: 13149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.564682,71.48474 + parent: 2 + - uid: 14842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.429707,71.653404 + parent: 2 + - uid: 14907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.328474,71.82207 + parent: 2 + - uid: 24235 + components: + - type: Transform + pos: -59.48407,97.63663 + parent: 2 + - uid: 36611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.495947,174.55276 + parent: 2 + - uid: 36612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.558447,174.92776 + parent: 2 +- proto: ChairGreyscale + entities: + - uid: 4845 + components: + - type: Transform + pos: 86.5,20.5 + parent: 2 + - uid: 14655 + components: + - type: Transform + pos: -75.5,86.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,160.5 + parent: 2 + - uid: 18349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,160.5 + parent: 2 + - uid: 19922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,159.5 + parent: 2 + - uid: 19925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,159.5 + parent: 2 + - uid: 21420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,156.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 55.023567,29.4832 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,62.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,19.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,55.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,58.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,68.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,68.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 71.5,51.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.444283,22.611832 + parent: 2 + - uid: 6818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,42.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,41.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.552475,129.78467 + parent: 2 + - uid: 9167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.398766,108.55922 + parent: 2 + - uid: 9168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.465187,107.693405 + parent: 2 + - uid: 9169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.49625,108.570465 + parent: 2 + - uid: 9170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.518745,105.50075 + parent: 2 + - uid: 9171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.46691,106.572464 + parent: 2 + - uid: 10641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,170.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,85.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,85.5 + parent: 2 + - uid: 10936 + components: + - type: Transform + pos: -0.5,77.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: -39.5,78.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + pos: -41.5,78.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,104.5 + parent: 2 + - uid: 14721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,74.5 + parent: 2 + - uid: 14772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,66.5 + parent: 2 + - uid: 17546 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,164.5 + parent: 2 + - uid: 22131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,153.5 + parent: 2 + - uid: 22132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,154.5 + parent: 2 + - uid: 22624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,179.5 + parent: 2 + - uid: 23258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,103.5 + parent: 2 + - uid: 27838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,34.5 + parent: 2 + - uid: 27883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,37.5 + parent: 2 + - uid: 28254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,142.5 + parent: 2 + - uid: 28255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,143.5 + parent: 2 + - uid: 34605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,88.5 + parent: 2 + - uid: 41897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,56.5 + parent: 2 + - uid: 43165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 37842 +- proto: ChairOfficeLight + entities: + - uid: 906 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,0.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,193.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,66.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,66.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,67.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: -16.5,81.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,82.5 + parent: 2 + - uid: 14725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,75.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,74.5 + parent: 2 + - uid: 16966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,105.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,105.5 + parent: 2 + - uid: 20179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,182.5 + parent: 2 + - uid: 20180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,182.5 + parent: 2 + - uid: 20181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,179.5 + parent: 2 + - uid: 20479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,168.5 + parent: 2 + - uid: 20480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,169.5 + parent: 2 + - uid: 20986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,167.5 + parent: 2 + - uid: 21056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,176.5 + parent: 2 + - uid: 22765 + components: + - type: Transform + pos: -13.5,191.5 + parent: 2 + - uid: 22766 + components: + - type: Transform + pos: -15.5,191.5 + parent: 2 + - uid: 23269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,191.5 + parent: 2 + - uid: 23478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,199.5 + parent: 2 + - uid: 23632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,189.5 + parent: 2 + - uid: 25383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,170.5 + parent: 2 + - uid: 25384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,171.5 + parent: 2 + - uid: 28077 + components: + - type: Transform + pos: -115.5,103.5 + parent: 2 + - uid: 28750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,97.5 + parent: 2 + - uid: 28909 + components: + - type: Transform + pos: 95.5,51.5 + parent: 2 + - uid: 36603 + components: + - type: Transform + pos: 48.5,56.5 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 1571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-16.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,66.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,66.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: 115.5,59.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,91.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,91.5 + parent: 2 + - uid: 13201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.5,91.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,91.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,91.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + pos: -121.5,92.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.5,92.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 13386 + - uid: 15933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 13386 + - uid: 15934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 13386 + - uid: 16049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 13386 + - uid: 16050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 13386 + - uid: 16075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 13386 + - uid: 22059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 21114 + - uid: 22060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 21114 + - uid: 30948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 30902 + - uid: 34760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 21114 + - uid: 34763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 21114 + - uid: 36730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 21114 + - uid: 36731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 21114 + - uid: 36737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 37842 + - uid: 36815 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 37842 + - uid: 37048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 36996 + - uid: 37049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 36996 + - uid: 43164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 37842 + - uid: 43167 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 37842 + - uid: 43171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 37842 + - uid: 43172 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 37842 +- proto: ChairRitual + entities: + - uid: 13015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,69.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 761 + components: + - type: Transform + pos: -60.5,66.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: -62.5,66.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: -57.5,66.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -58.5,66.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: -56.5,66.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,70.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,69.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,71.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: -61.5,66.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,68.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,62.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + pos: -60.5,67.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + pos: -61.5,67.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: -62.5,67.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + pos: -58.5,67.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: -57.5,67.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + pos: -56.5,67.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,67.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,67.5 + parent: 2 + - uid: 13175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,69.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,66.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,66.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,70.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,70.5 + parent: 2 + - uid: 13187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,69.5 + parent: 2 + - uid: 14290 + components: + - type: Transform + pos: -74.5,106.5 + parent: 2 + - uid: 14479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,87.5 + parent: 2 + - uid: 14480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,86.5 + parent: 2 + - uid: 14481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,85.5 + parent: 2 + - uid: 14551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,85.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,82.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,82.5 + parent: 2 + - uid: 14653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,82.5 + parent: 2 + - uid: 14654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,82.5 + parent: 2 + - uid: 19536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,61.5 + parent: 2 + - uid: 20518 + components: + - type: Transform + pos: -85.5,181.5 + parent: 2 + - uid: 20553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,179.5 + parent: 2 + - uid: 20555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,182.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,182.5 + parent: 2 + - uid: 20650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,179.5 + parent: 2 + - uid: 20656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,180.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 635 + components: + - type: Transform + pos: 33.646408,59.47974 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 4929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 110.51263,49.598267 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 1694 + components: + - type: Transform + pos: -20.5,191.5 + parent: 2 + - uid: 22829 + components: + - type: Transform + pos: -21.5,194.5 + parent: 2 +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 8129 + components: + - type: Transform + pos: -107.620186,34.290276 + parent: 2 +- proto: ChemicalMedipen + entities: + - uid: 26158 + components: + - type: Transform + pos: 19.386444,169.56036 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 22855 + components: + - type: Transform + pos: -22.5,194.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 4220 + components: + - type: Transform + pos: -18.5,191.5 + parent: 2 + - uid: 22837 + components: + - type: Transform + pos: -20.5,194.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 8727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.553993,22.539948 + parent: 2 + - uid: 28649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.95118,43.557114 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 12170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,71.5 + parent: 2 +- proto: Cigar + entities: + - uid: 13582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.521475,101.44646 + parent: 2 + - uid: 16661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.415092,101.34007 + parent: 2 + - uid: 27426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.521475,101.46773 + parent: 2 +- proto: Cigarette + entities: + - uid: 1689 + components: + - type: Transform + pos: -18.718971,4.7717876 + parent: 2 +- proto: CigaretteOmnizine + entities: + - uid: 25286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -133.55688,87.876366 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 9647 + components: + - type: Transform + pos: -35.025066,69.47347 + parent: 2 + - uid: 13166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.941734,69.5568 + parent: 2 + - uid: 13176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.181316,69.07764 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 1548 + components: + - type: Transform + pos: -69.94901,-12.719323 + parent: 2 +- proto: CigarGold + entities: + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5293283,-0.30361938 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: -22.379665,-11.005112 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: -0.8239808,76.74419 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: -0.71150064,76.62425 + parent: 2 + - uid: 23647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.1929603,0.3373103 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 5335 + components: + - type: Transform + pos: -48.672024,94.53236 + parent: 2 +- proto: CigCartonGreen + entities: + - uid: 22110 + components: + - type: Transform + pos: -46.628765,64.53927 + parent: 2 +- proto: CigPackBlack + entities: + - uid: 2096 + components: + - type: Transform + pos: 33.896408,59.66724 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 33.896408,59.66724 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 20979 + components: + - type: Transform + pos: -70.5,171.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 32226 + components: + - type: Transform + pos: -90.5,167.5 + parent: 2 + - uid: 38730 + components: + - type: Transform + pos: 57.5,55.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 13072 + components: + - type: Transform + pos: -15.5,62.5 + parent: 2 +- proto: ClosetEmergency + entities: + - uid: 16477 + components: + - type: Transform + pos: -67.5,75.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 895 + components: + - type: Transform + pos: -55.5,171.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: -52.5,156.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: -69.5,-7.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: -67.5,-13.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: 4.5,87.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: -64.5,133.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: -81.5,93.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: -66.5,127.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: 84.5,55.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: -22.5,209.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: 71.5,18.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: -86.5,37.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 72.5,26.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: -28.5,91.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + pos: -41.5,95.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: -27.5,78.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12326 + components: + - type: Transform + pos: -60.5,1.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: -23.5,176.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14852 + components: + - type: Transform + pos: -65.5,89.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + pos: -39.5,55.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + pos: -49.5,62.5 + parent: 2 + - uid: 18273 + components: + - type: Transform + pos: -111.5,149.5 + parent: 2 + - uid: 20508 + components: + - type: Transform + pos: -94.5,167.5 + parent: 2 + - uid: 20829 + components: + - type: Transform + pos: -76.5,142.5 + parent: 2 + - uid: 20899 + components: + - type: Transform + pos: -68.5,179.5 + parent: 2 + - uid: 21325 + components: + - type: Transform + pos: -60.5,167.5 + parent: 2 + - uid: 21606 + components: + - type: Transform + pos: 85.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 22382 + components: + - type: Transform + pos: -15.5,185.5 + parent: 2 + - uid: 25436 + components: + - type: Transform + pos: -22.5,167.5 + parent: 2 + - uid: 26202 + components: + - type: Transform + pos: -34.5,191.5 + parent: 2 + - uid: 26830 + components: + - type: Transform + pos: 17.5,205.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 27500 + components: + - type: Transform + pos: -79.5,49.5 + parent: 2 + - uid: 28138 + components: + - type: Transform + pos: 90.5,44.5 + parent: 2 + - uid: 28482 + components: + - type: Transform + pos: 116.5,47.5 + parent: 2 + - uid: 29116 + components: + - type: Transform + pos: -117.5,38.5 + parent: 2 + - uid: 32290 + components: + - type: Transform + pos: -22.5,100.5 + parent: 2 + - uid: 34924 + components: + - type: Transform + anchored: True + pos: -0.5,219.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 35984 + components: + - type: Transform + pos: -36.5,72.5 + parent: 2 + - uid: 36738 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 36806 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 36808 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 36962 + components: + - type: Transform + pos: -9.5,87.5 + parent: 2 + - uid: 37323 + components: + - type: Transform + pos: -45.5,176.5 + parent: 2 + - uid: 37334 + components: + - type: Transform + pos: -51.5,170.5 + parent: 2 + - uid: 37373 + components: + - type: Transform + pos: -38.5,92.5 + parent: 2 + - uid: 37524 + components: + - type: Transform + pos: 3.5,165.5 + parent: 2 + - uid: 37684 + components: + - type: Transform + pos: -100.5,60.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 4111 + components: + - type: Transform + pos: -66.5,133.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: -64.5,127.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 966 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: -52.5,155.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: -12.5,86.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + anchored: True + pos: -0.5,218.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 4235 + components: + - type: Transform + pos: -20.5,167.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: 90.5,45.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: 71.5,17.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: -100.5,59.5 + parent: 2 + - uid: 11769 + components: + - type: Transform + pos: -39.5,95.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + pos: -26.5,85.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: -68.5,85.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: -44.5,72.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + pos: -66.5,75.5 + parent: 2 + - uid: 18062 + components: + - type: Transform + pos: -80.5,40.5 + parent: 2 + - uid: 18379 + components: + - type: Transform + pos: 0.5,171.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 32103 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19047 + components: + - type: Transform + pos: -98.5,160.5 + parent: 2 + - uid: 20208 + components: + - type: Transform + pos: -83.5,180.5 + parent: 2 + - uid: 20501 + components: + - type: Transform + pos: -85.34114,169.5444 + parent: 2 + - uid: 20898 + components: + - type: Transform + pos: -68.5,180.5 + parent: 2 + - uid: 21339 + components: + - type: Transform + pos: -65.5,161.5 + parent: 2 + - uid: 22762 + components: + - type: Transform + pos: -46.5,174.5 + parent: 2 + - uid: 22832 + components: + - type: Transform + pos: -23.5,177.5 + parent: 2 + - uid: 22961 + components: + - type: Transform + pos: -30.5,91.5 + parent: 2 + - uid: 23195 + components: + - type: Transform + pos: -16.5,185.5 + parent: 2 + - uid: 23962 + components: + - type: Transform + pos: -28.5,199.5 + parent: 2 + - uid: 23988 + components: + - type: Transform + pos: -30.5,208.5 + parent: 2 + - uid: 27840 + components: + - type: Transform + pos: 108.5,49.5 + parent: 2 + - uid: 27845 + components: + - type: Transform + pos: -75.5,165.5 + parent: 2 + - uid: 28148 + components: + - type: Transform + pos: -77.5,149.5 + parent: 2 + - uid: 31921 + components: + - type: Transform + pos: 85.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 35988 + components: + - type: Transform + pos: -66.5,90.5 + parent: 2 + - uid: 36810 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 36811 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 36812 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 37372 + components: + - type: Transform + pos: -42.5,92.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 4248 + components: + - type: Transform + pos: -2.5,82.5 + parent: 2 +- proto: ClosetL3Filled + entities: + - uid: 23218 + components: + - type: Transform + pos: -75.5,161.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 18313 + components: + - type: Transform + pos: 0.5,82.5 + parent: 2 + - uid: 19733 + components: + - type: Transform + pos: -79.5,155.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 17711 + components: + - type: Transform + pos: -111.5,96.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + pos: -112.5,96.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 23246 + components: + - type: Transform + pos: 5.5,190.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23250 + components: + - type: Transform + pos: 4.5,190.5 + parent: 2 + - uid: 23618 + components: + - type: Transform + pos: 17.5,195.5 + parent: 2 + - uid: 23619 + components: + - type: Transform + pos: 16.5,195.5 + parent: 2 +- proto: ClosetLegal + entities: + - uid: 14718 + components: + - type: Transform + pos: -72.5,85.5 + parent: 2 +- proto: ClosetLegalFilled + entities: + - uid: 26536 + components: + - type: Transform + pos: -72.5,75.5 + parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 37358 + components: + - type: Transform + pos: -110.5,62.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1063 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: -27.5,79.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: -57.5,0.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: -19.5,174.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 2220 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: -68.5,71.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: 85.5,50.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: 3.5,78.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + pos: -82.5,140.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6617 + components: + - type: Transform + pos: -49.5,63.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 52.5,43.5 + parent: 2 + - uid: 11258 + components: + - type: Transform + pos: -44.5,64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11952 + components: + - type: Transform + pos: -26.5,86.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: 85.5,42.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + pos: -35.5,63.5 + parent: 2 + - uid: 14360 + components: + - type: Transform + pos: -78.5,89.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: -38.5,55.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 15845 + components: + - type: Transform + pos: -47.5,70.5 + parent: 2 + - uid: 17218 + components: + - type: Transform + pos: -72.5,71.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17707 + components: + - type: Transform + pos: -103.5,96.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17708 + components: + - type: Transform + pos: -104.5,96.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17856 + components: + - type: Transform + pos: -101.5,96.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23237 + components: + - type: Transform + pos: -2.5,195.5 + parent: 2 + - uid: 23261 + components: + - type: Transform + pos: -3.5,195.5 + parent: 2 + - uid: 23930 + components: + - type: Transform + pos: -31.5,185.5 + parent: 2 + - uid: 24033 + components: + - type: Transform + pos: -23.5,205.5 + parent: 2 + - uid: 24127 + components: + - type: Transform + pos: 0.5,209.5 + parent: 2 + - uid: 24153 + components: + - type: Transform + pos: -31.5,184.5 + parent: 2 + - uid: 24248 + components: + - type: Transform + pos: 3.5,81.5 + parent: 2 + - uid: 24251 + components: + - type: Transform + pos: -35.5,70.5 + parent: 2 + - uid: 24253 + components: + - type: Transform + pos: -81.5,72.5 + parent: 2 + - uid: 25533 + components: + - type: Transform + pos: 7.5,176.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 25536 + components: + - type: Transform + pos: 13.5,181.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 27305 + components: + - type: Transform + pos: -112.5,62.5 + parent: 2 + - uid: 27538 + components: + - type: Transform + pos: -90.5,145.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 37230 + components: + - type: Transform + pos: -35.5,178.5 + parent: 2 + - uid: 37352 + components: + - type: Transform + pos: -55.5,172.5 + parent: 2 + - uid: 37507 + components: + - type: Transform + pos: 85.5,48.5 + parent: 2 + - uid: 37551 + components: + - type: Transform + pos: -100.5,55.5 + parent: 2 + - uid: 37631 + components: + - type: Transform + pos: -102.5,60.5 + parent: 2 + - uid: 37649 + components: + - type: Transform + pos: -105.5,64.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 20366 + components: + - type: Transform + pos: -82.5,165.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 11269 + components: + - type: Transform + pos: -110.5,147.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3930 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 17166 + components: + - type: Transform + pos: -86.5,75.5 + parent: 2 + - uid: 24097 + components: + - type: Transform + pos: 13.5,202.5 + parent: 2 +- proto: ClosetWall + entities: + - uid: 1589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8978151 + - 7.1394 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13916 + - 1590 + - 1591 + - 1592 + - uid: 26502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,92.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 33140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,95.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17609 + - uid: 34638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,95.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17640 +- proto: ClosetWallAtmospherics + entities: + - uid: 11989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,143.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12300 + - 12323 + - uid: 12288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12293 + - 12292 + - 12291 + - 12290 + - 12289 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 4216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,54.5 + parent: 2 + - uid: 16974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 13386 + - uid: 18280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,177.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 21295 + components: + - type: Transform + pos: 4.5,173.5 + parent: 2 + - uid: 23271 + components: + - type: Transform + pos: -18.5,198.5 + parent: 2 + - uid: 28637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 115.5,56.5 + parent: 2 + - uid: 30092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,26.5 + parent: 2 + - uid: 30949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 30902 + - uid: 32276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,143.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 37870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 37842 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 1019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,52.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,173.5 + parent: 2 + - uid: 19042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,177.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 22880 + components: + - type: Transform + pos: -17.5,198.5 + parent: 2 + - uid: 25750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,143.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 28931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,56.5 + parent: 2 + - uid: 30085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,27.5 + parent: 2 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 1010 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 37252 + components: + - type: Transform + pos: -51.5,173.5 + parent: 2 +- proto: ClosetWallYellow + entities: + - uid: 37932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 37842 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 37957 + - 38029 + - 38031 + - 38030 + - 38039 + - 38032 + - 38038 + - 38035 + - 38036 + - 37989 + - 38567 + - 37944 + - 38037 + - 38034 + - 38028 + - 38033 + - 38040 + - 37937 + - 39970 + - 37933 + - 38026 + - 38027 +- proto: ClothingBackpackDuffelCargo + entities: + - uid: 1699 + components: + - type: Transform + pos: -27.38283,-6.237975 + parent: 2 +- proto: ClothingBackpackDuffelGenetics + entities: + - uid: 23687 + components: + - type: Transform + pos: 11.526649,183.4251 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 3944 + components: + - type: Transform + pos: 80.684105,46.424698 + parent: 2 +- proto: ClothingBeltMedicalFilled + entities: + - uid: 19655 + components: + - type: Transform + pos: -0.49716187,197.42072 + parent: 2 +- proto: ClothingBeltMercWebbing + entities: + - uid: 36747 + components: + - type: Transform + parent: 25348 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltPlantFilled + entities: + - uid: 13349 + components: + - type: Transform + pos: -9.637129,65.51059 + parent: 2 +- proto: ClothingBeltUtility + entities: + - uid: 15843 + components: + - type: Transform + pos: -45.335175,70.54042 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 1081 + components: + - type: Transform + pos: -38.40183,-15.353652 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: -37.388275,-15.38651 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: -5.46987,-2.433957 + parent: 2 + - uid: 10578 + components: + - type: Transform + pos: -10.331087,84.5635 + parent: 2 + - uid: 11773 + components: + - type: Transform + pos: -45.426987,101.651794 + parent: 2 + - uid: 28005 + components: + - type: Transform + pos: -94.55092,48.61208 + parent: 2 +- proto: ClothingEyesBlindfold + entities: + - uid: 643 + components: + - type: Transform + pos: 38.436615,63.507355 + parent: 2 + - uid: 6838 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15557 + components: + - type: Transform + pos: -39.496777,57.66884 + parent: 2 +- proto: ClothingEyesGlasses + entities: + - uid: 20152 + components: + - type: Transform + pos: -75.69309,183.34036 + parent: 2 + - uid: 20360 + components: + - type: Transform + pos: -90.57496,165.68503 + parent: 2 + - uid: 20361 + components: + - type: Transform + pos: -90.428734,165.58383 + parent: 2 + - uid: 20362 + components: + - type: Transform + pos: -90.541214,165.43765 + parent: 2 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 23043 + components: + - type: Transform + pos: -22.954693,194.63948 + parent: 2 + - uid: 37367 + components: + - type: Transform + pos: -22.629581,194.71255 + parent: 2 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 4644 + components: + - type: Transform + pos: 69.57355,69.491875 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: 96.11738,53.525078 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 37360 + components: + - type: Transform + pos: -100.59469,103.051216 + parent: 2 +- proto: ClothingEyesHudMedical + entities: + - uid: 17138 + components: + - type: Transform + pos: 0.8419876,196.54977 + parent: 2 + - uid: 22871 + components: + - type: Transform + pos: 0.50597,196.70602 + parent: 2 + - uid: 23000 + components: + - type: Transform + pos: -12.779064,194.55563 + parent: 2 + - uid: 23002 + components: + - type: Transform + pos: -12.824059,194.7018 + parent: 2 + - uid: 23003 + components: + - type: Transform + pos: -12.36289,194.55563 + parent: 2 + - uid: 23004 + components: + - type: Transform + pos: -12.3853855,194.74678 + parent: 2 + - uid: 30950 + components: + - type: Transform + pos: 2.5602746,4.5236516 + parent: 30902 +- proto: ClothingEyesHudSecurity + entities: + - uid: 4642 + components: + - type: Transform + pos: 74.691376,67.63655 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: 74.993935,67.81376 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: -114.76186,102.47664 + parent: 2 +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 38039 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorBrown + entities: + - uid: 1696 + components: + - type: Transform + pos: -27.458036,-6.773464 + parent: 2 +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 20496 + components: + - type: Transform + pos: -93.333176,167.59885 + parent: 2 +- proto: ClothingHandsGlovesColorWhite + entities: + - uid: 10744 + components: + - type: Transform + pos: -0.5387826,84.783424 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 491 + components: + - type: Transform + parent: 1815 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 7347 + components: + - type: Transform + pos: 53.693108,43.40381 + parent: 2 +- proto: ClothingHandsGlovesFingerlessInsulated + entities: + - uid: 4950 + components: + - type: Transform + pos: -95.522675,45.64894 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 15519 + components: + - type: Transform + pos: -35.509842,59.550842 + parent: 2 + - uid: 22579 + components: + - type: Transform + pos: -1.4929008,73.63781 + parent: 2 +- proto: ClothingHandsGlovesLeather + entities: + - uid: 13348 + components: + - type: Transform + pos: -11.429226,65.53675 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 1721 + components: + - type: Transform + pos: 21.447254,188.58113 + parent: 2 + - uid: 23401 + components: + - type: Transform + pos: -8.714691,210.472 + parent: 2 + - uid: 37497 + components: + - type: Transform + pos: 80.34368,46.70129 + parent: 2 +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 13314 + components: + - type: Transform + pos: -109.55782,91.69752 + parent: 2 +- proto: ClothingHeadBandGreen + entities: + - uid: 8920 + components: + - type: Transform + pos: 8.347542,70.81061 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: 8.528751,70.81061 + parent: 2 +- proto: ClothingHeadBandMerc + entities: + - uid: 36750 + components: + - type: Transform + pos: -42.52899,63.64292 + parent: 2 +- proto: ClothingHeadBandRed + entities: + - uid: 2537 + components: + - type: Transform + pos: -34.626602,-10.299561 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: -34.660343,-10.704361 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: -34.322906,-10.591919 + parent: 2 + - uid: 8882 + components: + - type: Transform + pos: 7.7013435,70.856094 + parent: 2 + - uid: 8916 + components: + - type: Transform + pos: 7.822151,70.856094 + parent: 2 +- proto: ClothingHeadHatAnimalCat + entities: + - uid: 1457 + components: + - type: Transform + pos: -66.49243,63.509323 + parent: 2 +- proto: ClothingHeadHatAnimalCatBlack + entities: + - uid: 1453 + components: + - type: Transform + pos: -66.683655,63.475586 + parent: 2 +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 10144 + components: + - type: Transform + pos: -68.37829,115.53777 + parent: 2 +- proto: ClothingHeadHatAnimalMonkey + entities: + - uid: 5926 + components: + - type: Transform + pos: -68.50235,70.41943 + parent: 2 +- proto: ClothingHeadHatBeretBrigmedic + entities: + - uid: 30952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5285034,-1.6590958 + parent: 30902 +- proto: ClothingHeadHatBeretEngineering + entities: + - uid: 27857 + components: + - type: Transform + pos: -76.39377,36.253162 + parent: 2 +- proto: ClothingHeadHatBeretMerc + entities: + - uid: 14101 + components: + - type: Transform + pos: -58.589527,97.81676 + parent: 2 + - uid: 36751 + components: + - type: Transform + pos: -49.31833,67.52768 + parent: 2 +- proto: ClothingHeadHatBeretRND + entities: + - uid: 21221 + components: + - type: Transform + pos: -61.31926,176.77676 + parent: 2 +- proto: ClothingHeadHatCargosoft + entities: + - uid: 1684 + components: + - type: Transform + pos: -27.768826,-6.40985 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -17.677168,-5.264927 + parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 34805 + components: + - type: Transform + pos: -16.360462,62.644505 + parent: 2 +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 4196 + components: + - type: Transform + pos: -131.29858,57.280945 + parent: 2 +- proto: ClothingHeadHatHardhatYellowDark + entities: + - uid: 37944 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodMoth + entities: + - uid: 17247 + components: + - type: Transform + pos: -72.31612,67.691864 + parent: 2 +- proto: ClothingHeadHatHoodNunHood + entities: + - uid: 22715 + components: + - type: Transform + pos: -62.650223,70.57431 + parent: 2 +- proto: ClothingHeadHatHopcap + entities: + - uid: 34928 + components: + - type: Transform + pos: -29.817215,174.76308 + parent: 2 +- proto: ClothingHeadHatMimesoftFlipped + entities: + - uid: 17964 + components: + - type: Transform + pos: 80.47281,18.740738 + parent: 2 +- proto: ClothingHeadHatPirate + entities: + - uid: 17609 + components: + - type: Transform + parent: 33140 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatRedsoftFlipped + entities: + - uid: 12859 + components: + - type: Transform + pos: 46.865837,64.55452 + parent: 2 +- proto: ClothingHeadHatRichard + entities: + - uid: 20907 + components: + - type: Transform + pos: -23.521778,66.55489 + parent: 2 +- proto: ClothingHeadHatSecsoft + entities: + - uid: 4733 + components: + - type: Transform + pos: 85.58471,58.504395 + parent: 2 + - uid: 22465 + components: + - type: Transform + pos: -5.495203,180.11717 + parent: 2 +- proto: ClothingHeadHatShrineMaidenWig + entities: + - uid: 2053 + components: + - type: Transform + pos: -62.641167,69.69359 + parent: 2 +- proto: ClothingHeadHatSombrero + entities: + - uid: 12797 + components: + - type: Transform + pos: -42.264904,-5.813843 + parent: 2 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 35581 + components: + - type: Transform + pos: -96.591385,63.472298 + parent: 2 +- proto: ClothingHeadHatUshanka + entities: + - uid: 3005 + components: + - type: Transform + pos: -4.3947268,186.4848 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: -4.6603518,186.51605 + parent: 2 + - uid: 23150 + components: + - type: Transform + pos: -0.0017938614,178.39265 + parent: 2 + - uid: 25329 + components: + - type: Transform + pos: -4.7072268,186.6723 + parent: 2 + - uid: 26311 + components: + - type: Transform + pos: -4.3947268,186.6723 + parent: 2 +- proto: ClothingHeadHatVioletwizard + entities: + - uid: 17599 + components: + - type: Transform + pos: -59.421307,155.53162 + parent: 2 + - uid: 17620 + components: + - type: Transform + pos: -59.578777,155.63281 + parent: 2 +- proto: ClothingHeadHatWatermelon + entities: + - uid: 13674 + components: + - type: Transform + pos: -4.466236,69.58449 + parent: 2 + - uid: 25284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.66327,87.36573 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 19661 + components: + - type: Transform + pos: -104.426384,91.6339 + parent: 2 + - uid: 37753 + components: + - type: Transform + pos: -90.18796,74.30776 + parent: 2 + - uid: 38283 + components: + - type: Transform + pos: -69.67262,181.8251 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 3703 + components: + - type: Transform + pos: -136.48978,37.679768 + parent: 2 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 18574 + components: + - type: Transform + pos: -80.37125,42.5207 + parent: 2 + - uid: 25293 + components: + - type: Transform + parent: 25246 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWitch1 + entities: + - uid: 26046 + components: + - type: Transform + pos: -82.69702,174.67587 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 27340 + components: + - type: Transform + pos: -119.136116,97.57423 + parent: 2 +- proto: ClothingHeadHelmetCosmonaut + entities: + - uid: 19000 + components: + - type: Transform + pos: -74.509026,46.549538 + parent: 2 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 18295 + components: + - type: Transform + pos: -39.950825,54.399143 + parent: 2 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 12833 + components: + - type: Transform + pos: 62.283806,60.704174 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: 62.658806,60.704174 + parent: 2 + - uid: 17935 + components: + - type: Transform + pos: 62.637833,61.684746 + parent: 2 + - uid: 18021 + components: + - type: Transform + pos: 62.278458,61.66912 + parent: 2 +- proto: ClothingHeadHelmetTemplar + entities: + - uid: 15852 + components: + - type: Transform + pos: -54.48825,74.409775 + parent: 2 +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 1546 + components: + - type: Transform + pos: -70.47767,-12.606879 + parent: 2 +- proto: ClothingHeadsetCargo + entities: + - uid: 1114 + components: + - type: Transform + pos: -39.67285,-12.367102 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: -27.67175,-7.448127 + parent: 2 +- proto: ClothingHeadsetSecurity + entities: + - uid: 4645 + components: + - type: Transform + pos: 73.74655,69.52561 + parent: 2 +- proto: ClothingHeadsetService + entities: + - uid: 10708 + components: + - type: Transform + pos: -7.3500295,84.623085 + parent: 2 +- proto: ClothingMaskBandGreen + entities: + - uid: 8915 + components: + - type: Transform + pos: 8.528751,70.569 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: 8.307274,70.569 + parent: 2 +- proto: ClothingMaskBandRed + entities: + - uid: 8445 + components: + - type: Transform + pos: 7.822151,70.57421 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: 7.6208076,70.57421 + parent: 2 +- proto: ClothingMaskBear + entities: + - uid: 4360 + components: + - type: Transform + pos: -53.913757,71.58979 + parent: 2 + - uid: 23107 + components: + - type: Transform + pos: -68.231705,70.68634 + parent: 2 +- proto: ClothingMaskBee + entities: + - uid: 9330 + components: + - type: Transform + pos: -53.643806,71.55605 + parent: 2 +- proto: ClothingMaskBreath + entities: + - uid: 938 + components: + - type: Transform + pos: -37.356796,-6.5319214 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: -37.57051,-6.3182755 + parent: 2 + - uid: 10637 + components: + - type: Transform + pos: -11.528082,82.494606 + parent: 2 + - uid: 10638 + components: + - type: Transform + pos: -11.359362,82.33719 + parent: 2 + - uid: 10639 + components: + - type: Transform + pos: -11.528082,82.25848 + parent: 2 + - uid: 10640 + components: + - type: Transform + pos: -11.415602,82.16852 + parent: 2 + - uid: 15690 + components: + - type: Transform + pos: -38.67627,52.51537 + parent: 2 + - uid: 16253 + components: + - type: Transform + pos: -38.38102,52.38837 + parent: 2 + - uid: 19036 + components: + - type: Transform + pos: -96.357414,158.49881 + parent: 2 + - uid: 19037 + components: + - type: Transform + pos: -96.717354,158.63374 + parent: 2 + - uid: 19048 + components: + - type: Transform + pos: -96.52614,158.58876 + parent: 2 + - uid: 22730 + components: + - type: Transform + pos: 5.4193954,182.54726 + parent: 2 + - uid: 37682 + components: + - type: Transform + pos: -104.366295,64.45973 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 9106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.619545,193.59912 + parent: 2 + - uid: 23645 + components: + - type: Transform + pos: 21.422962,188.97816 + parent: 2 +- proto: ClothingMaskFox + entities: + - uid: 4359 + components: + - type: Transform + pos: -54.206207,71.52461 + parent: 2 +- proto: ClothingMaskGas + entities: + - uid: 1032 + components: + - type: Transform + pos: -48.329212,-5.3925 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 4759 + components: + - type: Transform + pos: 91.52599,17.562973 + parent: 2 + - uid: 23928 + components: + - type: Transform + pos: -105.31975,35.14098 + parent: 2 +- proto: ClothingMaskGasMerc + entities: + - uid: 31595 + components: + - type: Transform + pos: -118.511086,69.477264 + parent: 2 +- proto: ClothingMaskGasSecurity + entities: + - uid: 37105 + components: + - type: Transform + pos: 79.35882,34.528732 + parent: 2 + - uid: 37106 + components: + - type: Transform + pos: 79.482544,34.461266 + parent: 2 + - uid: 37108 + components: + - type: Transform + pos: 79.707504,34.56246 + parent: 2 +- proto: ClothingMaskJoy + entities: + - uid: 17248 + components: + - type: Transform + pos: -72.61981,67.59066 + parent: 2 +- proto: ClothingMaskMuzzle + entities: + - uid: 641 + components: + - type: Transform + pos: 38.436615,63.476105 + parent: 2 + - uid: 15560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.446392,58.343014 + parent: 2 + - uid: 16348 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskPlague + entities: + - uid: 11059 + components: + - type: Transform + pos: -53.394886,71.709755 + parent: 2 +- proto: ClothingMaskRat + entities: + - uid: 7156 + components: + - type: Transform + pos: -68.666626,70.62637 + parent: 2 + - uid: 11201 + components: + - type: Transform + parent: 11200 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskRaven + entities: + - uid: 12162 + components: + - type: Transform + pos: -54.5514,71.48694 + parent: 2 +- proto: ClothingMaskSexyMime + entities: + - uid: 27989 + components: + - type: Transform + pos: -102.543594,145.62488 + parent: 2 +- proto: ClothingMaskSterile + entities: + - uid: 2452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.4620705,190.77304 + parent: 2 + - uid: 5363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.58955,190.54065 + parent: 2 +- proto: ClothingNeckCloakMiner + entities: + - uid: 24025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.50105,56.493835 + parent: 2 +- proto: ClothingNeckCloakVoid + entities: + - uid: 26584 + components: + - type: Transform + pos: -102.65741,145.34604 + parent: 2 +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 10824 + components: + - type: Transform + pos: -11.653515,80.19965 + parent: 2 + - uid: 14368 + components: + - type: Transform + pos: -81.49177,104.590454 + parent: 2 + - uid: 23477 + components: + - type: Transform + pos: -26.51263,198.7868 + parent: 2 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 14371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.96097,103.64592 + parent: 2 +- proto: ClothingNeckScarfStripedLightBlue + entities: + - uid: 10823 + components: + - type: Transform + pos: -11.419474,80.135826 + parent: 2 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 14372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.19932,106.546974 + parent: 2 + - uid: 28608 + components: + - type: Transform + pos: 86.51566,66.49655 + parent: 2 +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 17400 + components: + - type: Transform + pos: -58.678364,97.45132 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 4745 + components: + - type: Transform + pos: 60.359505,58.525593 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: 61.609505,58.494343 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 60.734505,58.525593 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 61.25013,58.494343 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 2781 + components: + - type: Transform + pos: 62.29232,60.24839 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: 62.69725,60.23715 + parent: 2 + - uid: 18024 + components: + - type: Transform + pos: 62.294083,61.278496 + parent: 2 + - uid: 18032 + components: + - type: Transform + pos: 62.715958,61.278496 + parent: 2 +- proto: ClothingOuterCoatBomber + entities: + - uid: 10555 + components: + - type: Transform + pos: -7.284813,168.6897 + parent: 2 +- proto: ClothingOuterCoatLab + entities: + - uid: 14336 + components: + - type: Transform + pos: -80.84898,100.64307 + parent: 2 + - uid: 14357 + components: + - type: Transform + pos: -81.517555,100.68482 + parent: 2 + - uid: 20190 + components: + - type: Transform + pos: -75.59489,183.5905 + parent: 2 + - uid: 20191 + components: + - type: Transform + pos: -75.45991,183.47806 + parent: 2 +- proto: ClothingOuterCoatLabGene + entities: + - uid: 23689 + components: + - type: Transform + pos: 8.770891,185.11176 + parent: 2 +- proto: ClothingOuterHardsuitAtmos + entities: + - uid: 12300 + components: + - type: Transform + parent: 11989 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVAPrisoner + entities: + - uid: 15693 + components: + - type: Transform + pos: -40.47595,54.471893 + parent: 2 +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 19069 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterNunRobe + entities: + - uid: 37589 + components: + - type: Transform + pos: -62.72896,70.74297 + parent: 2 +- proto: ClothingOuterStraightjacket + entities: + - uid: 8722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.09339,204.98021 + parent: 2 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 4341 + components: + - type: Transform + pos: -60.62609,5.590172 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: -96.549034,53.516735 + parent: 2 + - uid: 35700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.50196,93.83043 + parent: 2 + - uid: 35701 + components: + - type: Transform + pos: -107.4669,92.82841 + parent: 2 +- proto: ClothingOuterSuitFire + entities: + - uid: 4060 + components: + - type: Transform + pos: -118.554695,60.495346 + parent: 2 +- proto: ClothingOuterSuitShrineMaiden + entities: + - uid: 16757 + components: + - type: Transform + pos: -62.3471,69.99235 + parent: 2 +- proto: ClothingOuterWinterClown + entities: + - uid: 23529 + components: + - type: Transform + pos: -7.4332447,169.59348 + parent: 2 +- proto: ClothingOuterWinterMime + entities: + - uid: 14209 + components: + - type: Transform + pos: -7.3961315,168.23471 + parent: 2 + - uid: 24230 + components: + - type: Transform + pos: -58.33706,97.504105 + parent: 2 +- proto: ClothingOuterWinterMiner + entities: + - uid: 23528 + components: + - type: Transform + pos: -7.677332,168.6395 + parent: 2 +- proto: ClothingOuterWinterMusician + entities: + - uid: 14076 + components: + - type: Transform + pos: -7.609844,167.8299 + parent: 2 +- proto: ClothingOuterWinterPara + entities: + - uid: 25376 + components: + - type: Transform + pos: -3.5630221,172.72112 + parent: 2 + - uid: 25377 + components: + - type: Transform + pos: -3.2368298,172.5412 + parent: 2 +- proto: ClothingOuterWinterSyndie + entities: + - uid: 23530 + components: + - type: Transform + pos: -7.5007343,169.10997 + parent: 2 +- proto: ClothingOuterWinterWeb + entities: + - uid: 4197 + components: + - type: Transform + pos: -7.3061485,167.58252 + parent: 2 +- proto: ClothingOuterWizardViolet + entities: + - uid: 18446 + components: + - type: Transform + pos: -60.489864,155.71152 + parent: 2 + - uid: 21404 + components: + - type: Transform + pos: -60.57985,155.88019 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 939 + components: + - type: Transform + pos: -37.536766,-2.2703018 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: -37.39054,-2.472702 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: -11.635853,84.754654 + parent: 2 + - uid: 10572 + components: + - type: Transform + pos: -11.275815,84.70188 + parent: 2 + - uid: 12290 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12323 + components: + - type: Transform + parent: 11989 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27969 + components: + - type: Transform + pos: 77.435814,35.54653 + parent: 2 + - uid: 37102 + components: + - type: Transform + pos: 77.4689,34.576645 + parent: 2 +- proto: ClothingShoesBootsWinter + entities: + - uid: 12792 + components: + - type: Transform + pos: -5.4580345,186.67316 + parent: 2 + - uid: 12795 + components: + - type: Transform + pos: -5.356804,186.5045 + parent: 2 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 14384 + components: + - type: Transform + pos: -85.61351,98.31984 + parent: 2 +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 410 + components: + - type: Transform + parent: 22647 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 35579 + components: + - type: Transform + pos: -90.526924,66.48068 + parent: 2 +- proto: ClothingUniformJumpsuitHawaiBlack + entities: + - uid: 38032 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateBlack + entities: + - uid: 4952 + components: + - type: Transform + pos: 87.57816,65.49655 + parent: 2 +- proto: ClothingUniformJumpsuitPyjamaSyndicatePink + entities: + - uid: 3908 + components: + - type: Transform + pos: -68.63519,107.5304 + parent: 2 +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + entities: + - uid: 4762 + components: + - type: Transform + pos: -68.32025,107.642845 + parent: 2 +- proto: ClothingUniformJumpsuitSecGrey + entities: + - uid: 35791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.984695,102.54332 + parent: 2 +- proto: CluwneHorn + entities: + - uid: 2739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.515213,-5.386215 + parent: 2 +- proto: Cobweb1 + entities: + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,58.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -27.5,76.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,88.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,85.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,70.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,43.5 + parent: 2 + - uid: 18514 + components: + - type: Transform + pos: 79.5,46.5 + parent: 2 + - uid: 22768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,169.5 + parent: 2 + - uid: 27537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,64.5 + parent: 2 + - uid: 37233 + components: + - type: Transform + pos: -82.5,62.5 + parent: 2 + - uid: 38469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,71.5 + parent: 2 + - uid: 38472 + components: + - type: Transform + pos: -97.5,72.5 + parent: 2 + - uid: 38487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,61.5 + parent: 2 + - uid: 38488 + components: + - type: Transform + pos: -105.5,64.5 + parent: 2 + - uid: 38490 + components: + - type: Transform + pos: -107.5,67.5 + parent: 2 + - uid: 38494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,72.5 + parent: 2 + - uid: 38496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,69.5 + parent: 2 + - uid: 38497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,60.5 + parent: 2 + - uid: 38502 + components: + - type: Transform + pos: -36.5,69.5 + parent: 2 + - uid: 38503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,73.5 + parent: 2 + - uid: 38504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,83.5 + parent: 2 + - uid: 38509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,73.5 + parent: 2 + - uid: 38510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,82.5 + parent: 2 + - uid: 38517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,86.5 + parent: 2 + - uid: 38519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-16.5 + parent: 2 + - uid: 38520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 2 + - uid: 38521 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 38527 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 38528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,38.5 + parent: 2 + - uid: 38535 + components: + - type: Transform + pos: 22.5,181.5 + parent: 2 + - uid: 38536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,181.5 + parent: 2 + - uid: 38537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,175.5 + parent: 2 + - uid: 38538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,171.5 + parent: 2 + - uid: 38539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,177.5 + parent: 2 + - uid: 38540 + components: + - type: Transform + pos: 0.5,172.5 + parent: 2 + - uid: 38543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,173.5 + parent: 2 + - uid: 38544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,178.5 + parent: 2 + - uid: 38545 + components: + - type: Transform + pos: -31.5,185.5 + parent: 2 + - uid: 38546 + components: + - type: Transform + pos: -30.5,196.5 + parent: 2 + - uid: 38556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,204.5 + parent: 2 + - uid: 38557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,201.5 + parent: 2 + - uid: 38558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,202.5 + parent: 2 + - uid: 39189 + components: + - type: Transform + pos: -80.5,107.5 + parent: 2 + - uid: 39190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,103.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 4658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,63.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: 55.5,57.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,205.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,93.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,65.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-5.5 + parent: 2 + - uid: 23222 + components: + - type: Transform + pos: -83.5,33.5 + parent: 2 + - uid: 26010 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 29596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,61.5 + parent: 2 + - uid: 31944 + components: + - type: Transform + pos: -117.5,66.5 + parent: 2 + - uid: 38491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,62.5 + parent: 2 + - uid: 38492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,63.5 + parent: 2 + - uid: 38493 + components: + - type: Transform + pos: -94.5,51.5 + parent: 2 + - uid: 38498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,64.5 + parent: 2 + - uid: 38499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,61.5 + parent: 2 + - uid: 38500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,57.5 + parent: 2 + - uid: 38501 + components: + - type: Transform + pos: -35.5,63.5 + parent: 2 + - uid: 38507 + components: + - type: Transform + pos: 8.5,77.5 + parent: 2 + - uid: 38508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,77.5 + parent: 2 + - uid: 38522 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 38523 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 38524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 2 + - uid: 38525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - uid: 38532 + components: + - type: Transform + pos: 85.5,48.5 + parent: 2 + - uid: 38533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,54.5 + parent: 2 + - uid: 38534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,61.5 + parent: 2 + - uid: 38547 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - uid: 38548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,208.5 + parent: 2 + - uid: 38549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,209.5 + parent: 2 + - uid: 38550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,212.5 + parent: 2 + - uid: 38551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,213.5 + parent: 2 + - uid: 38552 + components: + - type: Transform + pos: -3.5,213.5 + parent: 2 + - uid: 38553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,209.5 + parent: 2 + - uid: 38554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,216.5 + parent: 2 + - uid: 38555 + components: + - type: Transform + pos: 6.5,209.5 + parent: 2 + - uid: 39428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,171.5 + parent: 2 +- proto: CombatKnife + entities: + - uid: 17392 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 1784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-10.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,100.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,59.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,84.5 + parent: 2 + - uid: 12166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,62.5 + parent: 2 + - uid: 13562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,98.5 + parent: 2 + - uid: 13661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,98.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,100.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,101.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,99.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,93.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,93.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,93.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - uid: 14339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,94.5 + parent: 2 + - uid: 16503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,178.5 + parent: 2 + - uid: 16582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,99.5 + parent: 2 + - uid: 16583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,100.5 + parent: 2 + - uid: 16585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,101.5 + parent: 2 + - uid: 18453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,161.5 + parent: 2 + - uid: 23011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,199.5 + parent: 2 + - uid: 23019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,196.5 + parent: 2 + - uid: 23020 + components: + - type: Transform + pos: -5.5,198.5 + parent: 2 + - uid: 23325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,207.5 + parent: 2 + - uid: 23326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,206.5 + parent: 2 + - uid: 23327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,207.5 + parent: 2 + - uid: 23328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,206.5 + parent: 2 + - uid: 27286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,48.5 + parent: 2 + - uid: 27287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,47.5 + parent: 2 + - uid: 27288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,46.5 + parent: 2 + - uid: 27289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,45.5 + parent: 2 + - uid: 27292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,45.5 + parent: 2 + - uid: 27293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,46.5 + parent: 2 + - uid: 27294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,47.5 + parent: 2 + - uid: 27295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,48.5 + parent: 2 + - uid: 27658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,56.5 + parent: 2 + - uid: 28306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,53.5 + parent: 2 + - uid: 28506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,55.5 + parent: 2 + - uid: 28738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,56.5 + parent: 2 + - uid: 28751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,55.5 + parent: 2 + - uid: 34583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,88.5 + parent: 2 + - uid: 36789 + components: + - type: Transform + pos: -77.5,95.5 + parent: 2 + - uid: 36804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,94.5 + parent: 2 + - uid: 36805 + components: + - type: Transform + pos: -75.5,95.5 + parent: 2 + - uid: 37237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,172.5 + parent: 2 + - uid: 37249 + components: + - type: Transform + pos: -38.5,174.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 27186 + components: + - type: Transform + pos: -107.524055,32.69689 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 1389 + components: + - type: Transform + pos: 68.5,69.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 20399 + components: + - type: Transform + pos: -96.5,170.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17347: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: computerBodyScanner + entities: + - uid: 22723 + components: + - type: Transform + pos: 4.5,186.5 + parent: 2 + - uid: 23406 + components: + - type: Transform + pos: -11.5,210.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,183.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 1574 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: -58.5,131.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,150.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: -39.5,60.5 + parent: 2 + - uid: 17578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,102.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,183.5 + parent: 2 + - uid: 24138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,200.5 + parent: 2 + - uid: 28394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,102.5 + parent: 2 + - uid: 37050 + components: + - type: Transform + pos: 0.5,1.5 + parent: 36996 +- proto: ComputerCargoBounty + entities: + - uid: 28179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - uid: 13576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,108.5 + parent: 2 + - uid: 19705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,39.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 23445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,198.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 13603 + components: + - type: Transform + pos: -40.5,107.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,99.5 + parent: 2 + - uid: 19407 + components: + - type: Transform + pos: 66.5,69.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 293 + components: + - type: Transform + pos: -1.5,172.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,178.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,53.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,51.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,55.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,77.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,129.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,44.5 + parent: 2 + - uid: 22124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,153.5 + parent: 2 + - uid: 23329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,203.5 + parent: 2 + - uid: 27889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,34.5 + parent: 2 + - uid: 29107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,106.5 + parent: 2 + - uid: 30953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 30902 + - uid: 32100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,191.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 4913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,51.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,55.5 + parent: 2 + - uid: 10577 + components: + - type: Transform + pos: 76.5,69.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,107.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 15830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,69.5 + parent: 2 + - uid: 16969 + components: + - type: Transform + pos: -1.5,5.5 + parent: 13386 + - type: Physics + canCollide: False +- proto: ComputerId + entities: + - uid: 10447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,81.5 + parent: 2 + - uid: 22393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,103.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 10683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,84.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + pos: -36.5,109.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 9101 + components: + - type: Transform + pos: -5.5,172.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,106.5 + parent: 2 + - uid: 34556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 30902 +- proto: ComputerPowerMonitoring + entities: + - uid: 7045 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 11035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,104.5 + parent: 2 + - uid: 16785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 13386 + - uid: 24802 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 28102 + components: + - type: Transform + pos: -96.5,43.5 + parent: 2 + - uid: 34692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,214.5 + parent: 2 + - uid: 35053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-6.5 + parent: 2 + - uid: 35398 + components: + - type: Transform + pos: -107.5,149.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 3377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,55.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: 74.5,69.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-12.5 + parent: 2 + - uid: 16709 + components: + - type: Transform + pos: 1.5,3.5 + parent: 13386 + - uid: 18343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,97.5 + parent: 2 + - uid: 20911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,107.5 + parent: 2 + - uid: 22063 + components: + - type: Transform + pos: 3.5,4.5 + parent: 21114 + - uid: 36809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 37842 + - uid: 37051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 36996 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 8119 + components: + - type: Transform + pos: -84.5,160.5 + parent: 2 + - uid: 13577 + components: + - type: Transform + pos: -44.5,109.5 + parent: 2 + - uid: 20170 + components: + - type: Transform + pos: -79.5,180.5 + parent: 2 + - uid: 20475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,168.5 + parent: 2 + - uid: 20985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,167.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-12.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 16708 + components: + - type: Transform + pos: 0.5,3.5 + parent: 13386 + - uid: 22064 + components: + - type: Transform + pos: 2.5,4.5 + parent: 21114 + - uid: 30954 + components: + - type: Transform + pos: 1.5,4.5 + parent: 30902 + - uid: 37936 + components: + - type: Transform + pos: 0.5,1.5 + parent: 37842 +- proto: ComputerShuttleCargo + entities: + - uid: 5774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 4270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,20.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,105.5 + parent: 2 + - uid: 17831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-7.5 + parent: 2 + - uid: 34693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,213.5 + parent: 2 + - uid: 35399 + components: + - type: Transform + pos: -106.5,149.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: 67.5,69.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,81.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + pos: -37.5,109.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + pos: -0.5,78.5 + parent: 2 + - uid: 28172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,53.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,103.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,177.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: 75.5,69.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,43.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,52.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,77.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: -61.5,131.5 + parent: 2 + - uid: 11097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,108.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + pos: 0.5,78.5 + parent: 2 + - uid: 22125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,154.5 + parent: 2 + - uid: 27836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,37.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 1138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,75.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + pos: 0.5,85.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + pos: -24.5,64.5 + parent: 2 + - uid: 20560 + components: + - type: Transform + pos: -90.5,180.5 + parent: 2 + - uid: 23987 + components: + - type: Transform + pos: -125.5,109.5 + parent: 2 + - uid: 39181 + components: + - type: Transform + pos: -72.5,96.5 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 1067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -148.5,30.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -140.5,22.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -148.5,22.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -140.5,30.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,7.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,8.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,9.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,51.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,49.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,50.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: 46.5,52.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,47.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,52.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,48.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,34.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,34.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,42.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,42.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,42.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,42.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,42.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,41.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,39.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,39.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,39.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: 46.5,50.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,39.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,34.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,34.5 + parent: 2 + - uid: 11231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,77.5 + parent: 2 + - uid: 11232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,77.5 + parent: 2 + - uid: 11233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,77.5 + parent: 2 + - uid: 11234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,77.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,85.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,85.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,85.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,85.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 11302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 11303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 11304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 11306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,77.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,77.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,77.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,77.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + pos: -40.5,69.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + pos: -40.5,68.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + pos: -40.5,67.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + pos: -40.5,66.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,93.5 + parent: 2 + - uid: 15210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,169.5 + parent: 2 + - uid: 15331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,64.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,169.5 + parent: 2 + - uid: 15893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,169.5 + parent: 2 + - uid: 16638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,169.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,47.5 + parent: 2 + - uid: 17393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,64.5 + parent: 2 + - uid: 17396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,65.5 + parent: 2 + - uid: 17412 + components: + - type: Transform + pos: -111.5,90.5 + parent: 2 + - uid: 17426 + components: + - type: Transform + pos: -108.5,91.5 + parent: 2 + - uid: 17427 + components: + - type: Transform + pos: -108.5,90.5 + parent: 2 + - uid: 17561 + components: + - type: Transform + pos: -111.5,91.5 + parent: 2 + - uid: 17570 + components: + - type: Transform + pos: -105.5,91.5 + parent: 2 + - uid: 17576 + components: + - type: Transform + pos: -105.5,90.5 + parent: 2 + - uid: 17582 + components: + - type: Transform + pos: -102.5,90.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,64.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: -118.5,65.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,66.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + pos: -102.5,91.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,64.5 + parent: 2 + - uid: 18042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,74.5 + parent: 2 + - uid: 18186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,69.5 + parent: 2 + - uid: 18200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,68.5 + parent: 2 + - uid: 18297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,70.5 + parent: 2 + - uid: 18304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,67.5 + parent: 2 + - uid: 18565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,71.5 + parent: 2 + - uid: 18621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,72.5 + parent: 2 + - uid: 18626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,69.5 + parent: 2 + - uid: 18685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,72.5 + parent: 2 + - uid: 18793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,72.5 + parent: 2 + - uid: 18990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,73.5 + parent: 2 + - uid: 18994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,70.5 + parent: 2 + - uid: 20881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,157.5 + parent: 2 + - uid: 20882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,157.5 + parent: 2 + - uid: 20883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,157.5 + parent: 2 + - uid: 20885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,157.5 + parent: 2 + - uid: 21208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,174.5 + parent: 2 + - uid: 21209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,175.5 + parent: 2 + - uid: 21210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,176.5 + parent: 2 + - uid: 21211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,173.5 + parent: 2 + - uid: 21212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,173.5 + parent: 2 + - uid: 21213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,173.5 + parent: 2 + - uid: 21215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,172.5 + parent: 2 + - uid: 23291 + components: + - type: Transform + pos: 46.5,49.5 + parent: 2 + - uid: 23384 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - uid: 24196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,176.5 + parent: 2 + - uid: 24197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,176.5 + parent: 2 + - uid: 24198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,176.5 + parent: 2 + - uid: 24199 + components: + - type: Transform + pos: 21.5,177.5 + parent: 2 + - uid: 24200 + components: + - type: Transform + pos: 21.5,178.5 + parent: 2 + - uid: 24201 + components: + - type: Transform + pos: 21.5,179.5 + parent: 2 + - uid: 24304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,176.5 + parent: 2 + - uid: 27737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,41.5 + parent: 2 + - uid: 27738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,41.5 + parent: 2 + - uid: 27739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,41.5 + parent: 2 + - uid: 27740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,41.5 + parent: 2 + - uid: 35729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,93.5 + parent: 2 + - uid: 35730 + components: + - type: Transform + pos: -102.5,93.5 + parent: 2 + - uid: 35731 + components: + - type: Transform + pos: -102.5,92.5 + parent: 2 + - uid: 35732 + components: + - type: Transform + pos: -105.5,92.5 + parent: 2 + - uid: 35733 + components: + - type: Transform + pos: -105.5,93.5 + parent: 2 + - uid: 35734 + components: + - type: Transform + pos: -108.5,92.5 + parent: 2 + - uid: 35735 + components: + - type: Transform + pos: -108.5,93.5 + parent: 2 + - uid: 35736 + components: + - type: Transform + pos: -111.5,92.5 + parent: 2 + - uid: 35737 + components: + - type: Transform + pos: -111.5,93.5 + parent: 2 + - uid: 35738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,93.5 + parent: 2 + - uid: 35739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,93.5 + parent: 2 + - uid: 35740 + components: + - type: Transform + pos: -108.5,90.5 + parent: 2 + - uid: 35741 + components: + - type: Transform + pos: -108.5,89.5 + parent: 2 + - uid: 35742 + components: + - type: Transform + pos: -111.5,89.5 + parent: 2 + - uid: 35743 + components: + - type: Transform + pos: -105.5,89.5 + parent: 2 + - uid: 35744 + components: + - type: Transform + pos: -102.5,89.5 + parent: 2 + - uid: 35745 + components: + - type: Transform + pos: -102.5,90.5 + parent: 2 + - uid: 35746 + components: + - type: Transform + pos: -105.5,90.5 + parent: 2 + - uid: 35747 + components: + - type: Transform + pos: -111.5,90.5 + parent: 2 + - uid: 35748 + components: + - type: Transform + pos: -111.5,88.5 + parent: 2 + - uid: 35749 + components: + - type: Transform + pos: -108.5,88.5 + parent: 2 + - uid: 35750 + components: + - type: Transform + pos: -105.5,88.5 + parent: 2 + - uid: 35751 + components: + - type: Transform + pos: -102.5,88.5 + parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 8362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.11605,131.50339 + parent: 2 +- proto: CowToolboxFilled + entities: + - uid: 37685 + components: + - type: Transform + pos: -100.42063,61.35997 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 20495 + components: + - type: Transform + pos: -85.45471,168.33792 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 20500 + components: + - type: Transform + pos: -85.52452,167.45154 + parent: 2 +- proto: CrateEngineeringAMEControl + entities: + - uid: 4118 + components: + - type: Transform + pos: -127.5,43.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 28903 + components: + - type: Transform + pos: -125.5,51.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 2526 + components: + - type: Transform + pos: -126.5,43.5 + parent: 2 + - uid: 28939 + components: + - type: Transform + pos: -128.5,43.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 6561 + components: + - type: Transform + pos: -116.5,58.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 18027 + components: + - type: Transform + pos: -77.5,147.5 + parent: 2 + - uid: 28000 + components: + - type: Transform + pos: -96.5,145.5 + parent: 2 + - uid: 28906 + components: + - type: Transform + pos: -102.5,64.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 2625 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2996 + - 2995 + - 2994 + - 2993 + - 2992 + - 2991 + - 2855 + - 2650 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6450 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 26659 + components: + - type: Transform + pos: 3.5,186.5 + parent: 2 + - uid: 38429 + components: + - type: Transform + pos: -22.5,180.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 38437 + - 38438 + - 38430 + - 38432 + - 38434 + - 38435 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFunBoardGames + entities: + - uid: 1166 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: -70.5,83.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 1065 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1073 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1135 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1815 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 491 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1816 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 518 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4407 + components: + - type: Transform + pos: -65.5,65.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5290 + - 14196 + - 14548 + - 14562 + - 15615 + - 18061 + - 18653 + - 21391 + - 23375 + - 26500 + - 27202 + - 27307 + - 27695 + - 28226 + - 28428 + - 28580 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 17390 + components: + - type: Transform + pos: 60.5,46.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6838 + - 16348 + - 17392 + - 17394 + - 17398 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25348 + components: + - type: Transform + anchored: True + pos: 13.5,174.5 + parent: 2 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25353 + - 36747 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 34626 + components: + - type: Transform + pos: -117.5,95.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6822 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 43362 + components: + - type: Transform + pos: -129.22409,17.695015 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 43363 + - 43364 + - 43365 + - 43366 + - 43367 + - 43368 + - 43369 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateHydroponicsSeeds + entities: + - uid: 35699 + components: + - type: Transform + pos: -4.5,59.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 22734 + components: + - type: Transform + pos: 2.5,182.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 13581 + components: + - type: Transform + pos: -40.5,110.5 + parent: 2 +- proto: CratePlastic + entities: + - uid: 38381 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 38382 + - 38383 + - 38384 + - 38385 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 10753 + components: + - type: Transform + pos: -3.5,80.5 + parent: 2 +- proto: CrateServicePersonnel + entities: + - uid: 10534 + components: + - type: Transform + pos: -15.5,83.5 + parent: 2 +- proto: CrateStoneGrave + entities: + - uid: 1306 + components: + - type: Transform + pos: 3.5,180.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12167 + components: + - type: MetaData + desc: This is where Naru resting. + - type: Transform + pos: 2.5,179.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 22647 + components: + - type: MetaData + desc: This is where konstantin_9000 resting. + - type: Transform + pos: -1.5,178.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 410 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 37586 + components: + - type: Transform + pos: 1.5,179.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateTrashCart + entities: + - uid: 1014 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 51.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7398 + - 7397 + - 7396 + - 7395 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19491 + components: + - type: Transform + pos: -108.5,86.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 21305 + components: + - type: Transform + pos: -64.5,173.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateTrashCartFilled + entities: + - uid: 7392 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19028 + components: + - type: Transform + pos: -122.5,66.5 + parent: 2 + - uid: 19045 + components: + - type: Transform + pos: -122.5,63.5 + parent: 2 + - uid: 19054 + components: + - type: Transform + pos: -122.5,65.5 + parent: 2 + - uid: 21301 + components: + - type: Transform + pos: -57.5,174.5 + parent: 2 + - uid: 21302 + components: + - type: Transform + pos: -57.5,173.5 + parent: 2 + - uid: 21303 + components: + - type: Transform + pos: -64.5,174.5 + parent: 2 + - uid: 21304 + components: + - type: Transform + pos: -63.5,174.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 24316 + components: + - type: Transform + pos: 23.5,181.5 + parent: 2 + - uid: 24356 + components: + - type: Transform + pos: 23.5,175.5 + parent: 2 + - uid: 24357 + components: + - type: Transform + pos: 21.5,175.5 + parent: 2 + - uid: 25031 + components: + - type: Transform + pos: -81.5,78.5 + parent: 2 + - uid: 25040 + components: + - type: Transform + pos: -54.5,86.5 + parent: 2 + - uid: 25174 + components: + - type: Transform + pos: -100.5,149.5 + parent: 2 + - uid: 26459 + components: + - type: Transform + pos: -49.5,60.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 26818 + components: + - type: Transform + pos: -5.5,79.5 + parent: 2 +- proto: CrateVendingMachineRestockDonutFilled + entities: + - uid: 34535 + components: + - type: Transform + pos: -120.5,108.5 + parent: 2 +- proto: CrateWoodenGrave + entities: + - uid: 12072 + components: + - type: Transform + pos: 1.5,178.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 37834 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 22062 + components: + - type: Transform + pos: 4.5,197.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 36687 + components: + - type: MetaData + desc: This is where Srochnik resting. + - type: Transform + pos: 0.5,180.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: PlaceableSurface + isPlaceable: True + - uid: 37588 + components: + - type: Transform + pos: 2.5,180.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrayonBox + entities: + - uid: 24236 + components: + - type: Transform + pos: -70.71423,92.553734 + parent: 2 +- proto: CrayonMime + entities: + - uid: 14098 + components: + - type: Transform + pos: -58.56703,97.54689 + parent: 2 + - uid: 17752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.28531,18.443863 + parent: 2 +- proto: Crematorium + entities: + - uid: 11200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,70.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11201 +- proto: CrewMonitoringServer + entities: + - uid: 8187 + components: + - type: Transform + pos: -91.5,156.5 + parent: 2 +- proto: Crowbar + entities: + - uid: 952 + components: + - type: Transform + pos: -29.53816,-6.133132 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 65.41322,47.83204 + parent: 2 + - uid: 25317 + components: + - type: Transform + pos: -127.53416,99.78782 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 1115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.51801,55.580048 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: 57.597862,48.48802 + parent: 2 + - uid: 7071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.56191,45.408775 + parent: 2 + - uid: 17246 + components: + - type: Transform + pos: -72.54345,68.727585 + parent: 2 + - uid: 19739 + components: + - type: Transform + pos: -81.458725,154.64363 + parent: 2 + - uid: 20159 + components: + - type: Transform + pos: -83.51623,178.6955 + parent: 2 + - uid: 20172 + components: + - type: Transform + pos: -83.50498,179.67375 + parent: 2 + - uid: 20368 + components: + - type: Transform + pos: -83.53646,162.60999 + parent: 2 + - uid: 20389 + components: + - type: Transform + pos: -133.54417,52.7284 + parent: 2 + - uid: 20481 + components: + - type: Transform + pos: -98.40295,169.68074 + parent: 2 + - uid: 20490 + components: + - type: Transform + pos: -133.44293,52.582226 + parent: 2 + - uid: 21354 + components: + - type: Transform + pos: -91.47646,51.570663 + parent: 2 + - uid: 24187 + components: + - type: Transform + pos: 23.465427,191.7291 + parent: 2 + - uid: 25216 + components: + - type: Transform + pos: -132.32037,91.36171 + parent: 2 + - uid: 27301 + components: + - type: Transform + pos: -117.966324,97.57423 + parent: 2 + - uid: 28854 + components: + - type: Transform + pos: -102.64098,48.54029 + parent: 2 + - uid: 29727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.58734,62.55042 + parent: 2 + - uid: 35811 + components: + - type: Transform + pos: -102.58292,98.73981 + parent: 2 + - uid: 35814 + components: + - type: Transform + pos: -102.515434,98.514915 + parent: 2 + - uid: 37349 + components: + - type: Transform + pos: -38.65432,179.69974 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 1402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,105.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,105.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -67.5,107.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,107.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 23452 + components: + - type: Transform + pos: -24.5,202.5 + parent: 2 + - uid: 34426 + components: + - type: Transform + pos: -25.5,202.5 + parent: 2 + - type: ItemToggle + activated: True +- proto: CryoxadoneBeakerSmall + entities: + - uid: 8388 + components: + - type: Transform + pos: -32.728416,202.51538 + parent: 2 + - uid: 23483 + components: + - type: Transform + pos: -26.471416,199.78198 + parent: 2 +- proto: CrystalBlue + entities: + - uid: 22438 + components: + - type: Transform + pos: 1.5,194.5 + parent: 2 + - uid: 23432 + components: + - type: Transform + pos: -15.5,201.5 + parent: 2 + - uid: 24077 + components: + - type: Transform + pos: 12.5,197.5 + parent: 2 + - uid: 24080 + components: + - type: Transform + pos: 18.5,186.5 + parent: 2 + - uid: 24135 + components: + - type: Transform + pos: 24.5,200.5 + parent: 2 + - uid: 24136 + components: + - type: Transform + pos: 22.5,202.5 + parent: 2 + - uid: 25226 + components: + - type: Transform + pos: -27.5,182.5 + parent: 2 + - uid: 26326 + components: + - type: Transform + pos: -38.5,187.5 + parent: 2 + - uid: 26808 + components: + - type: Transform + pos: 28.5,179.5 + parent: 2 + - uid: 26809 + components: + - type: Transform + pos: 31.5,189.5 + parent: 2 + - uid: 26810 + components: + - type: Transform + pos: 9.5,211.5 + parent: 2 + - uid: 31847 + components: + - type: Transform + pos: 8.5,197.5 + parent: 2 +- proto: CrystalCyan + entities: + - uid: 669 + components: + - type: Transform + pos: -90.5,93.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + pos: -33.5,51.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + pos: -68.5,117.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: -56.5,59.5 + parent: 2 + - uid: 12174 + components: + - type: Transform + pos: 1.5,180.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + pos: -31.5,101.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + pos: -34.5,53.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: -37.5,47.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: -30.5,40.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + pos: -36.5,95.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + pos: -4.5,217.5 + parent: 2 + - uid: 22397 + components: + - type: Transform + pos: -14.5,185.5 + parent: 2 + - uid: 23431 + components: + - type: Transform + pos: -6.5,204.5 + parent: 2 + - uid: 23469 + components: + - type: Transform + pos: -21.5,196.5 + parent: 2 + - uid: 24075 + components: + - type: Transform + pos: 10.5,198.5 + parent: 2 + - uid: 24079 + components: + - type: Transform + pos: 15.5,186.5 + parent: 2 + - uid: 24131 + components: + - type: Transform + pos: 23.5,202.5 + parent: 2 + - uid: 24132 + components: + - type: Transform + pos: 24.5,201.5 + parent: 2 + - uid: 25225 + components: + - type: Transform + pos: -23.5,180.5 + parent: 2 + - uid: 26312 + components: + - type: Transform + pos: -36.5,189.5 + parent: 2 + - uid: 26798 + components: + - type: Transform + pos: 20.5,208.5 + parent: 2 + - uid: 26800 + components: + - type: Transform + pos: 33.5,192.5 + parent: 2 + - uid: 26850 + components: + - type: Transform + pos: 28.5,201.5 + parent: 2 + - uid: 34478 + components: + - type: Transform + pos: -22.5,186.5 + parent: 2 + - uid: 36663 + components: + - type: Transform + pos: -22.5,94.5 + parent: 2 + - uid: 37351 + components: + - type: Transform + pos: -28.5,173.5 + parent: 2 +- proto: CrystalGreen + entities: + - uid: 9689 + components: + - type: Transform + pos: -67.5,114.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: -61.5,117.5 + parent: 2 + - uid: 10944 + components: + - type: Transform + pos: -8.5,73.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 10.5,80.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: -41.5,50.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: -34.5,45.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: -31.5,45.5 + parent: 2 + - uid: 17585 + components: + - type: Transform + pos: -77.5,113.5 + parent: 2 + - uid: 18009 + components: + - type: Transform + pos: -27.5,94.5 + parent: 2 + - uid: 19448 + components: + - type: Transform + pos: -88.5,98.5 + parent: 2 + - uid: 26788 + components: + - type: Transform + pos: -119.5,88.5 + parent: 2 + - uid: 34616 + components: + - type: Transform + pos: -55.5,94.5 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 13587 + components: + - type: Transform + pos: -145.5,106.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -146.5,105.5 + parent: 2 + - uid: 16987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -138.5,109.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + pos: -143.5,105.5 + parent: 2 + - uid: 16990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -144.5,105.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + pos: -111.5,135.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + pos: -51.5,93.5 + parent: 2 + - uid: 20611 + components: + - type: Transform + pos: -94.5,158.5 + parent: 2 + - uid: 20613 + components: + - type: Transform + pos: -92.5,178.5 + parent: 2 + - uid: 20862 + components: + - type: Transform + pos: -94.5,165.5 + parent: 2 + - uid: 21201 + components: + - type: Transform + pos: -54.5,177.5 + parent: 2 + - uid: 21202 + components: + - type: Transform + pos: -61.5,184.5 + parent: 2 + - uid: 21250 + components: + - type: Transform + pos: -57.5,158.5 + parent: 2 + - uid: 21251 + components: + - type: Transform + pos: -57.5,155.5 + parent: 2 + - uid: 21540 + components: + - type: Transform + pos: -90.5,140.5 + parent: 2 + - uid: 32254 + components: + - type: Transform + pos: -79.5,136.5 + parent: 2 + - uid: 34514 + components: + - type: Transform + pos: -134.5,88.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 209 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: -101.5,41.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: -110.5,50.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + pos: -129.5,36.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: -65.5,95.5 + parent: 2 + - type: PointLight + radius: 6 + - uid: 15704 + components: + - type: Transform + pos: -39.5,53.5 + parent: 2 + - uid: 15706 + components: + - type: Transform + pos: -36.5,54.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + pos: -40.5,55.5 + parent: 2 + - uid: 18606 + components: + - type: Transform + pos: -109.5,42.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + pos: -115.5,62.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + pos: -138.5,20.5 + parent: 2 + - uid: 20757 + components: + - type: Transform + pos: -138.5,31.5 + parent: 2 + - uid: 20764 + components: + - type: Transform + pos: -133.5,56.5 + parent: 2 + - uid: 21257 + components: + - type: Transform + pos: -130.5,59.5 + parent: 2 + - uid: 23357 + components: + - type: Transform + pos: -114.5,63.5 + parent: 2 + - uid: 24133 + components: + - type: Transform + pos: 24.5,202.5 + parent: 2 + - uid: 24134 + components: + - type: Transform + pos: 24.5,199.5 + parent: 2 + - uid: 25283 + components: + - type: Transform + pos: -132.5,88.5 + parent: 2 + - uid: 25747 + components: + - type: Transform + pos: -135.5,87.5 + parent: 2 + - uid: 26331 + components: + - type: Transform + pos: -133.5,84.5 + parent: 2 + - uid: 27331 + components: + - type: Transform + pos: -117.5,68.5 + parent: 2 + - uid: 27543 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 28353 + components: + - type: Transform + pos: -103.5,56.5 + parent: 2 + - uid: 28367 + components: + - type: Transform + pos: -105.5,54.5 + parent: 2 + - uid: 28483 + components: + - type: Transform + pos: -112.5,54.5 + parent: 2 + - uid: 28487 + components: + - type: Transform + pos: -105.5,55.5 + parent: 2 + - uid: 28488 + components: + - type: Transform + pos: -106.5,53.5 + parent: 2 + - uid: 28490 + components: + - type: Transform + pos: -107.5,51.5 + parent: 2 + - uid: 28587 + components: + - type: Transform + pos: -110.5,44.5 + parent: 2 + - uid: 28589 + components: + - type: Transform + pos: -107.5,38.5 + parent: 2 + - uid: 28591 + components: + - type: Transform + pos: -112.5,39.5 + parent: 2 + - uid: 28652 + components: + - type: Transform + pos: -107.5,59.5 + parent: 2 + - uid: 29017 + components: + - type: Transform + pos: -113.5,67.5 + parent: 2 + - uid: 29353 + components: + - type: Transform + pos: -128.5,40.5 + parent: 2 + - uid: 29443 + components: + - type: Transform + pos: -122.5,42.5 + parent: 2 + - uid: 29444 + components: + - type: Transform + pos: -123.5,45.5 + parent: 2 + - uid: 29445 + components: + - type: Transform + pos: -123.5,49.5 + parent: 2 + - uid: 29448 + components: + - type: Transform + pos: -120.5,38.5 + parent: 2 + - uid: 29450 + components: + - type: Transform + pos: -120.5,33.5 + parent: 2 + - uid: 29451 + components: + - type: Transform + pos: -117.5,29.5 + parent: 2 + - uid: 29452 + components: + - type: Transform + pos: -120.5,27.5 + parent: 2 + - uid: 29453 + components: + - type: Transform + pos: -123.5,29.5 + parent: 2 + - uid: 29456 + components: + - type: Transform + pos: -115.5,32.5 + parent: 2 + - uid: 29704 + components: + - type: Transform + pos: -124.5,34.5 + parent: 2 + - uid: 30695 + components: + - type: Transform + pos: -126.5,22.5 + parent: 2 + - uid: 30696 + components: + - type: Transform + pos: -133.5,14.5 + parent: 2 + - uid: 30697 + components: + - type: Transform + pos: -149.5,9.5 + parent: 2 + - uid: 30698 + components: + - type: Transform + pos: -138.5,10.5 + parent: 2 + - uid: 30699 + components: + - type: Transform + pos: -146.5,12.5 + parent: 2 + - uid: 30700 + components: + - type: Transform + pos: -143.5,15.5 + parent: 2 + - uid: 34758 + components: + - type: Transform + pos: -127.5,36.5 + parent: 2 + - uid: 43425 + components: + - type: Transform + pos: -120.5,15.5 + parent: 2 +- proto: CrystalPink + entities: + - uid: 735 + components: + - type: Transform + pos: 6.5,85.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: 67.5,27.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: 77.5,26.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: -56.5,165.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: 83.5,23.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: 88.5,34.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: 75.5,31.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: 4.5,84.5 + parent: 2 + - uid: 20647 + components: + - type: Transform + pos: -100.5,138.5 + parent: 2 + - uid: 20850 + components: + - type: Transform + pos: -92.5,180.5 + parent: 2 + - uid: 20851 + components: + - type: Transform + pos: -93.5,177.5 + parent: 2 + - uid: 20852 + components: + - type: Transform + pos: -95.5,178.5 + parent: 2 + - uid: 20853 + components: + - type: Transform + pos: -95.5,164.5 + parent: 2 + - uid: 20854 + components: + - type: Transform + pos: -93.5,160.5 + parent: 2 + - uid: 20940 + components: + - type: Transform + pos: -64.5,182.5 + parent: 2 + - uid: 21200 + components: + - type: Transform + pos: -59.5,177.5 + parent: 2 + - uid: 21248 + components: + - type: Transform + pos: -56.5,156.5 + parent: 2 + - uid: 21249 + components: + - type: Transform + pos: -57.5,160.5 + parent: 2 + - uid: 21381 + components: + - type: Transform + pos: -60.5,157.5 + parent: 2 + - uid: 21534 + components: + - type: Transform + pos: -108.5,140.5 + parent: 2 + - uid: 21539 + components: + - type: Transform + pos: -92.5,141.5 + parent: 2 + - uid: 25745 + components: + - type: Transform + pos: -134.5,85.5 + parent: 2 + - uid: 26044 + components: + - type: Transform + pos: -133.5,89.5 + parent: 2 + - uid: 26338 + components: + - type: Transform + pos: -131.5,85.5 + parent: 2 + - uid: 27864 + components: + - type: Transform + pos: -62.5,164.5 + parent: 2 + - uid: 27866 + components: + - type: Transform + pos: -64.5,166.5 + parent: 2 + - uid: 32249 + components: + - type: Transform + pos: -73.5,137.5 + parent: 2 + - uid: 32250 + components: + - type: Transform + pos: -81.5,138.5 + parent: 2 + - uid: 35427 + components: + - type: Transform + pos: -103.5,151.5 + parent: 2 +- proto: CrystalSpawner + entities: + - uid: 5092 + components: + - type: Transform + pos: -120.5,19.5 + parent: 2 +- proto: CurtainsOrange + entities: + - uid: 4057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,52.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,52.5 + parent: 2 +- proto: CyborgEndoskeleton + entities: + - uid: 28381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.496056,39.93314 + parent: 2 +- proto: d4Dice + entities: + - uid: 14485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.590393,87.23364 + parent: 2 +- proto: d6Dice + entities: + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.83535,87.443535 + parent: 2 +- proto: DebugAPC + entities: + - uid: 2887 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 7271 + components: + - type: Transform + pos: -62.5,130.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 8056 + components: + - type: Transform + pos: -127.5,46.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 8057 + components: + - type: Transform + pos: -79.5,181.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 8058 + components: + - type: Transform + pos: 60.5,59.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 8059 + components: + - type: Transform + pos: 109.5,45.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 8060 + components: + - type: Transform + pos: -94.5,170.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 8061 + components: + - type: Transform + pos: -108.5,19.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 8062 + components: + - type: Transform + pos: -28.5,68.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 8063 + components: + - type: Transform + pos: -4.5,64.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 8064 + components: + - type: Transform + pos: -40.5,107.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 8067 + components: + - type: Transform + pos: -32.5,97.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 8068 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 8069 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 8065 + components: + - type: Transform + pos: -118.5,54.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 8070 + components: + - type: Transform + pos: -59.5,65.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 8071 + components: + - type: Transform + pos: -22.5,191.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 8066 + components: + - type: Transform + pos: -19.5,205.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 8074 + components: + - type: Transform + pos: -75.5,83.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 8072 + components: + - type: Transform + pos: -26.5,201.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 8073 + components: + - type: Transform + pos: -68.5,106.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 8075 + components: + - type: Transform + pos: -1.5,77.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 8076 + components: + - type: Transform + pos: -107.5,93.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 8077 + components: + - type: Transform + pos: -64.5,95.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 8080 + components: + - type: Transform + pos: 108.5,61.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 8079 + components: + - type: Transform + pos: -11.5,80.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 8081 + components: + - type: Transform + pos: -122.5,58.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 8082 + components: + - type: Transform + pos: -17.5,82.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 8083 + components: + - type: Transform + pos: 83.5,63.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 8084 + components: + - type: Transform + pos: -1.5,81.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 8085 + components: + - type: Transform + pos: -15.5,66.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 8087 + components: + - type: Transform + pos: -76.5,74.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 8086 + components: + - type: Transform + pos: -63.5,80.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 8088 + components: + - type: Transform + pos: -7.5,191.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 8089 + components: + - type: Transform + pos: -9.5,208.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 8090 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 8091 + components: + - type: Transform + pos: -85.5,159.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 8093 + components: + - type: Transform + pos: -70.5,175.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 8094 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 8095 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: -94.5,35.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: -76.5,152.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: -4.5,178.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 8092 + components: + - type: Transform + pos: -91.5,155.5 + parent: 2 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 8103 + components: + - type: Transform + pos: -131.5,26.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 2110 + components: + - type: Transform + pos: -77.5,-8.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: -122.5,148.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: 0.5,224.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 8102 + components: + - type: Transform + pos: 4.5,184.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 8104 + components: + - type: Transform + pos: -110.5,34.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 8105 + components: + - type: Transform + pos: -34.5,66.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 8106 + components: + - type: Transform + pos: -93.5,46.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 8107 + components: + - type: Transform + pos: -46.5,94.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 8108 + components: + - type: Transform + pos: 71.5,54.5 + parent: 2 +- proto: Defibrillator + entities: + - uid: 22536 + components: + - type: Transform + pos: -0.52841187,198.47873 + parent: 2 + - uid: 23417 + components: + - type: Transform + pos: -0.2686348,196.61227 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 18978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,184.5 + parent: 2 + - uid: 22995 + components: + - type: Transform + pos: -6.5,195.5 + parent: 2 + - uid: 26410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,171.5 + parent: 2 + - uid: 30956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 30902 +- proto: DeployableBarrier + entities: + - uid: 915 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: -5.5,175.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: 77.5,43.5 + parent: 2 + - uid: 11619 + components: + - type: Transform + pos: -41.5,85.5 + parent: 2 + - uid: 11620 + components: + - type: Transform + pos: -40.5,85.5 + parent: 2 + - uid: 11621 + components: + - type: Transform + pos: -39.5,85.5 + parent: 2 + - type: Physics + canCollide: True + - type: Fixtures + fixtures: + base: + shape: !type:PhysShapeCircle + radius: 0.45 + position: 0,0 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: [] + density: 75 + hard: True + restitution: 0 + friction: 0.4 + barrier: + shape: !type:PhysShapeCircle + radius: 0.45 + position: 0,0 + mask: [] + layer: + - Impassable + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - uid: 12805 + components: + - type: Transform + pos: 66.5,62.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + pos: 65.5,62.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: 77.5,42.5 + parent: 2 + - uid: 17957 + components: + - type: Transform + pos: 77.5,44.5 + parent: 2 + - uid: 22114 + components: + - type: Transform + pos: -76.5,151.5 + parent: 2 + - uid: 22119 + components: + - type: Transform + pos: -77.5,151.5 + parent: 2 + - uid: 22120 + components: + - type: Transform + pos: -77.5,152.5 + parent: 2 + - uid: 23706 + components: + - type: Transform + pos: -4.5,175.5 + parent: 2 + - uid: 23707 + components: + - type: Transform + pos: -3.5,175.5 + parent: 2 + - uid: 24223 + components: + - type: Transform + pos: 65.5,42.5 + parent: 2 + - uid: 25165 + components: + - type: Transform + pos: -95.5,33.5 + parent: 2 + - uid: 25170 + components: + - type: Transform + pos: -94.5,33.5 + parent: 2 + - uid: 25173 + components: + - type: Transform + pos: -93.5,33.5 + parent: 2 + - uid: 26521 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 39261 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 919 + components: + - type: Transform + pos: -28.035082,1.7505848 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: -16.731895,80.678696 + parent: 2 + - uid: 20975 + components: + - type: Transform + pos: -70.27643,166.59094 + parent: 2 + - uid: 22748 + components: + - type: Transform + pos: -13.639587,190.50038 + parent: 2 + - uid: 22756 + components: + - type: Transform + pos: -15.606497,190.54282 + parent: 2 + - uid: 28088 + components: + - type: Transform + pos: -95.363365,41.78331 + parent: 2 + - uid: 37627 + components: + - type: Transform + pos: 71.44004,42.559193 + parent: 2 + - uid: 39469 + components: + - type: Transform + pos: -20.515633,61.692142 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 23639 + components: + - type: Transform + pos: 21.5,191.5 + parent: 2 +- proto: DiseaseSwab + entities: + - uid: 9105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5520554,193.66658 + parent: 2 +- proto: DisposalBend + entities: + - uid: 614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,34.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 76.5,51.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,58.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,14.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,33.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: -88.5,41.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,205.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: -17.5,173.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,61.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,62.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: 114.5,62.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,58.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: 114.5,46.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,47.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,46.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,47.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: 96.5,49.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,49.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,48.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,39.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,39.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: 79.5,66.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,45.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,41.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-14.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,3.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,193.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,74.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,89.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,104.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,69.5 + parent: 2 + - uid: 14079 + components: + - type: Transform + pos: -69.5,88.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,35.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,35.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,164.5 + parent: 2 + - uid: 18123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,166.5 + parent: 2 + - uid: 19540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,95.5 + parent: 2 + - uid: 19546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,95.5 + parent: 2 + - uid: 21793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,179.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,185.5 + parent: 2 + - uid: 24308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,186.5 + parent: 2 + - uid: 24321 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - uid: 24326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,198.5 + parent: 2 + - uid: 24340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,186.5 + parent: 2 + - uid: 24343 + components: + - type: Transform + pos: 7.5,205.5 + parent: 2 + - uid: 24345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,178.5 + parent: 2 + - uid: 24346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,183.5 + parent: 2 + - uid: 24348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,183.5 + parent: 2 + - uid: 24352 + components: + - type: Transform + pos: 21.5,188.5 + parent: 2 + - uid: 25294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,164.5 + parent: 2 + - uid: 25836 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - uid: 25869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,200.5 + parent: 2 + - uid: 25871 + components: + - type: Transform + pos: 19.5,202.5 + parent: 2 + - uid: 25874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,202.5 + parent: 2 + - uid: 25875 + components: + - type: Transform + pos: 16.5,203.5 + parent: 2 + - uid: 25883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,203.5 + parent: 2 + - uid: 25884 + components: + - type: Transform + pos: 8.5,204.5 + parent: 2 + - uid: 25885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,204.5 + parent: 2 + - uid: 25886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,205.5 + parent: 2 + - uid: 25890 + components: + - type: Transform + pos: 6.5,209.5 + parent: 2 + - uid: 25891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,209.5 + parent: 2 + - uid: 25892 + components: + - type: Transform + pos: 5.5,210.5 + parent: 2 + - uid: 25901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,210.5 + parent: 2 + - uid: 25904 + components: + - type: Transform + pos: -3.5,213.5 + parent: 2 + - uid: 25913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,213.5 + parent: 2 + - uid: 25914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,212.5 + parent: 2 + - uid: 25917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,212.5 + parent: 2 + - uid: 25918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,211.5 + parent: 2 + - uid: 25919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,211.5 + parent: 2 + - uid: 25920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,210.5 + parent: 2 + - uid: 25923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,210.5 + parent: 2 + - uid: 25934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,209.5 + parent: 2 + - uid: 25939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,209.5 + parent: 2 + - uid: 25943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,205.5 + parent: 2 + - uid: 25959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,182.5 + parent: 2 + - uid: 25960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,181.5 + parent: 2 + - uid: 25961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,181.5 + parent: 2 + - uid: 25962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,180.5 + parent: 2 + - uid: 25971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,180.5 + parent: 2 + - uid: 25972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,179.5 + parent: 2 + - uid: 25973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,179.5 + parent: 2 + - uid: 25979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,174.5 + parent: 2 + - uid: 25984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,174.5 + parent: 2 + - uid: 25992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,166.5 + parent: 2 + - uid: 26020 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 26028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,173.5 + parent: 2 + - uid: 26034 + components: + - type: Transform + pos: -24.5,179.5 + parent: 2 + - uid: 26050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,190.5 + parent: 2 + - uid: 26056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,190.5 + parent: 2 + - uid: 26059 + components: + - type: Transform + pos: -23.5,193.5 + parent: 2 + - uid: 26070 + components: + - type: Transform + pos: -12.5,192.5 + parent: 2 + - uid: 26076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,189.5 + parent: 2 + - uid: 26107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,172.5 + parent: 2 + - uid: 26119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,168.5 + parent: 2 + - uid: 26121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,168.5 + parent: 2 + - uid: 26131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,159.5 + parent: 2 + - uid: 26135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,159.5 + parent: 2 + - uid: 26143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,152.5 + parent: 2 + - uid: 26154 + components: + - type: Transform + pos: -72.5,158.5 + parent: 2 + - uid: 26507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + - uid: 26880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,95.5 + parent: 2 + - uid: 26896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,89.5 + parent: 2 + - uid: 26898 + components: + - type: Transform + pos: -78.5,89.5 + parent: 2 + - uid: 26899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,88.5 + parent: 2 + - uid: 26914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,82.5 + parent: 2 + - uid: 26929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,82.5 + parent: 2 + - uid: 26936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,89.5 + parent: 2 + - uid: 26958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,80.5 + parent: 2 + - uid: 26961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,80.5 + parent: 2 + - uid: 26984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,74.5 + parent: 2 + - uid: 27034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,74.5 + parent: 2 + - uid: 27044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,65.5 + parent: 2 + - uid: 27053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,65.5 + parent: 2 + - uid: 27055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,63.5 + parent: 2 + - uid: 27086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,81.5 + parent: 2 + - uid: 27090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,84.5 + parent: 2 + - uid: 27124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,74.5 + parent: 2 + - uid: 27128 + components: + - type: Transform + pos: -69.5,77.5 + parent: 2 + - uid: 28025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - uid: 28026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + - uid: 28075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + - uid: 28090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - uid: 28093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + - uid: 28336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - uid: 28339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + - uid: 28341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 28342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 28350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - uid: 28351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 2 + - uid: 28354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 2 + - uid: 28358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 28361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - uid: 28368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 28369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 + - uid: 28374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 28376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + - uid: 28380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - uid: 28420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - uid: 28422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - uid: 28439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - uid: 28442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 2 + - uid: 28752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - uid: 28754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - uid: 28763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - uid: 28764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - uid: 28765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,24.5 + parent: 2 + - uid: 28807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,22.5 + parent: 2 + - uid: 28819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,25.5 + parent: 2 + - uid: 28837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,21.5 + parent: 2 + - uid: 28844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - uid: 28865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + - uid: 28867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,25.5 + parent: 2 + - uid: 28869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - uid: 28904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,27.5 + parent: 2 + - uid: 28974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,28.5 + parent: 2 + - uid: 28978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,26.5 + parent: 2 + - uid: 28979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,27.5 + parent: 2 + - uid: 29019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,28.5 + parent: 2 + - uid: 29070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - uid: 29072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,30.5 + parent: 2 + - uid: 29109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - uid: 29115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - uid: 29135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,33.5 + parent: 2 + - uid: 29345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,34.5 + parent: 2 + - uid: 29755 + components: + - type: Transform + pos: -109.5,65.5 + parent: 2 + - uid: 29768 + components: + - type: Transform + pos: -108.5,64.5 + parent: 2 + - uid: 29770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,64.5 + parent: 2 + - uid: 29786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,46.5 + parent: 2 + - uid: 29805 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - uid: 29830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,37.5 + parent: 2 + - uid: 29837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,46.5 + parent: 2 + - uid: 35684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,95.5 + parent: 2 + - uid: 35685 + components: + - type: Transform + pos: -92.5,99.5 + parent: 2 + - uid: 35698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,99.5 + parent: 2 + - uid: 42946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,66.5 + parent: 2 + - uid: 42948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,57.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 2104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,39.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,39.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,39.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,39.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: 71.5,65.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,104.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,41.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,72.5 + parent: 2 + - uid: 17025 + components: + - type: Transform + pos: 71.5,57.5 + parent: 2 + - uid: 24314 + components: + - type: Transform + pos: 20.5,182.5 + parent: 2 + - uid: 25907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,213.5 + parent: 2 + - uid: 26067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,192.5 + parent: 2 + - uid: 26095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,172.5 + parent: 2 + - uid: 26132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,159.5 + parent: 2 + - uid: 26137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,158.5 + parent: 2 + - uid: 26925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,82.5 + parent: 2 + - uid: 26973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,89.5 + parent: 2 + - uid: 27064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,74.5 + parent: 2 + - uid: 29777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,47.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 5246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,166.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,60.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: 87.5,48.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,47.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,167.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,74.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,74.5 + parent: 2 + - uid: 16084 + components: + - type: Transform + pos: 21.5,185.5 + parent: 2 + - uid: 17554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,165.5 + parent: 2 + - uid: 26060 + components: + - type: Transform + pos: -23.5,192.5 + parent: 2 + - uid: 26099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,172.5 + parent: 2 + - uid: 26886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,95.5 + parent: 2 + - uid: 26926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,82.5 + parent: 2 + - uid: 26948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,89.5 + parent: 2 + - uid: 26949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,89.5 + parent: 2 + - uid: 26986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,74.5 + parent: 2 + - uid: 27019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,89.5 + parent: 2 + - uid: 27035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,74.5 + parent: 2 + - uid: 27083 + components: + - type: Transform + pos: -6.5,81.5 + parent: 2 + - uid: 28282 + components: + - type: Transform + pos: 87.5,55.5 + parent: 2 + - uid: 29806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,47.5 + parent: 2 + - uid: 42949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,61.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 283 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 76.5,49.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -98.5,40.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 76.5,50.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 76.5,48.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: -98.5,37.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-15.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,39.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: -98.5,39.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,18.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,18.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,18.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: -88.5,39.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,58.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,39.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,58.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,55.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,58.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,62.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 97.5,58.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,58.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,62.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: -17.5,169.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: -17.5,172.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,166.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 112.5,62.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: -17.5,171.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: -17.5,168.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: -17.5,167.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: -17.5,170.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,166.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -40.5,101.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,62.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: 45.5,57.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,58.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-16.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,58.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: 45.5,58.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + pos: 82.5,40.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,41.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,58.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 109.5,62.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,62.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,62.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,62.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 104.5,62.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,62.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + pos: 102.5,61.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,62.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: 102.5,60.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + pos: 102.5,59.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,58.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,58.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,58.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,58.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,43.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,58.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,58.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,58.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + pos: 96.5,48.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: 87.5,57.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: 87.5,56.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: 87.5,54.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: 87.5,53.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: 87.5,52.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: 87.5,51.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: 87.5,50.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: 87.5,49.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,46.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 112.5,46.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,46.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,46.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,46.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 109.5,46.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,46.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,46.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,46.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,46.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 106.5,48.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 104.5,47.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 103.5,47.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,47.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 101.5,47.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,47.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,47.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,47.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,47.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,49.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,49.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,49.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,49.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,49.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,49.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,49.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,47.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,46.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,45.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,44.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,43.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,42.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,40.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,39.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,39.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,39.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,39.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,39.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,39.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,39.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,39.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,39.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,39.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,39.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,39.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,39.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,39.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,39.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,39.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,39.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,39.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,39.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,39.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,39.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,39.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,39.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,40.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,41.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,42.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,43.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,65.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,66.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,66.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,66.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,66.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,66.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,66.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,66.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: 71.5,63.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 71.5,62.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 71.5,61.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 71.5,60.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 71.5,59.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: 71.5,58.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 71.5,56.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: 71.5,55.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 71.5,54.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: 71.5,53.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 71.5,52.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: 71.5,51.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 71.5,48.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: 71.5,46.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: 71.5,45.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 71.5,44.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: 71.5,42.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: 71.5,41.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,44.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,44.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,45.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,46.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,47.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,44.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,43.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,42.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,41.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,40.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,45.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,45.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-17.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-14.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-11.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,3.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,3.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,3.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,3.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,3.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,3.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + pos: -86.5,169.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,97.5 + parent: 2 + - uid: 10895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,99.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,91.5 + parent: 2 + - uid: 10946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,104.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,104.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,164.5 + parent: 2 + - uid: 12125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,89.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: -98.5,38.5 + parent: 2 + - uid: 13262 + components: + - type: Transform + pos: -40.5,103.5 + parent: 2 + - uid: 13425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,89.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,94.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,97.5 + parent: 2 + - uid: 13451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,90.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,92.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,93.5 + parent: 2 + - uid: 13454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,96.5 + parent: 2 + - uid: 13455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,95.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,98.5 + parent: 2 + - uid: 13467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,104.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,104.5 + parent: 2 + - uid: 13490 + components: + - type: Transform + pos: -40.5,100.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,104.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,104.5 + parent: 2 + - uid: 13666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,71.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,99.5 + parent: 2 + - uid: 13709 + components: + - type: Transform + pos: -7.5,70.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,164.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,35.5 + parent: 2 + - uid: 14959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,35.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + pos: -40.5,98.5 + parent: 2 + - uid: 15326 + components: + - type: Transform + pos: -98.5,36.5 + parent: 2 + - uid: 15373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,35.5 + parent: 2 + - uid: 16564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,69.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,104.5 + parent: 2 + - uid: 16579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,73.5 + parent: 2 + - uid: 17538 + components: + - type: Transform + pos: -88.5,38.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: -88.5,40.5 + parent: 2 + - uid: 17995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,46.5 + parent: 2 + - uid: 18051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,166.5 + parent: 2 + - uid: 18066 + components: + - type: Transform + pos: -17.5,166.5 + parent: 2 + - uid: 18080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,165.5 + parent: 2 + - uid: 18081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,165.5 + parent: 2 + - uid: 18085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,165.5 + parent: 2 + - uid: 18088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,165.5 + parent: 2 + - uid: 18108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,165.5 + parent: 2 + - uid: 18113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,165.5 + parent: 2 + - uid: 18115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,165.5 + parent: 2 + - uid: 18119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,165.5 + parent: 2 + - uid: 18131 + components: + - type: Transform + pos: -3.5,180.5 + parent: 2 + - uid: 18136 + components: + - type: Transform + pos: -3.5,179.5 + parent: 2 + - uid: 18148 + components: + - type: Transform + pos: -3.5,178.5 + parent: 2 + - uid: 18154 + components: + - type: Transform + pos: -3.5,177.5 + parent: 2 + - uid: 18196 + components: + - type: Transform + pos: -3.5,176.5 + parent: 2 + - uid: 18207 + components: + - type: Transform + pos: -3.5,175.5 + parent: 2 + - uid: 18247 + components: + - type: Transform + pos: -3.5,174.5 + parent: 2 + - uid: 18248 + components: + - type: Transform + pos: -3.5,173.5 + parent: 2 + - uid: 18267 + components: + - type: Transform + pos: -3.5,172.5 + parent: 2 + - uid: 18270 + components: + - type: Transform + pos: -3.5,171.5 + parent: 2 + - uid: 18275 + components: + - type: Transform + pos: -3.5,170.5 + parent: 2 + - uid: 18276 + components: + - type: Transform + pos: -3.5,169.5 + parent: 2 + - uid: 18289 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - uid: 18301 + components: + - type: Transform + pos: -3.5,167.5 + parent: 2 + - uid: 18373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,184.5 + parent: 2 + - uid: 18382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,186.5 + parent: 2 + - uid: 18906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,164.5 + parent: 2 + - uid: 19299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,167.5 + parent: 2 + - uid: 19304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,167.5 + parent: 2 + - uid: 19305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,167.5 + parent: 2 + - uid: 19311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,167.5 + parent: 2 + - uid: 19312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,167.5 + parent: 2 + - uid: 19345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,167.5 + parent: 2 + - uid: 19350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,167.5 + parent: 2 + - uid: 19362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,167.5 + parent: 2 + - uid: 19545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,96.5 + parent: 2 + - uid: 19547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,95.5 + parent: 2 + - uid: 19548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,95.5 + parent: 2 + - uid: 19549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,95.5 + parent: 2 + - uid: 19550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,95.5 + parent: 2 + - uid: 19551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,95.5 + parent: 2 + - uid: 19552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,95.5 + parent: 2 + - uid: 19553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,95.5 + parent: 2 + - uid: 19716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,179.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + pos: -43.5,58.5 + parent: 2 + - uid: 20655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,72.5 + parent: 2 + - uid: 21734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,179.5 + parent: 2 + - uid: 21746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,179.5 + parent: 2 + - uid: 21774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,185.5 + parent: 2 + - uid: 21775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,187.5 + parent: 2 + - uid: 21791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,179.5 + parent: 2 + - uid: 21833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,180.5 + parent: 2 + - uid: 22111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,181.5 + parent: 2 + - uid: 22180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,182.5 + parent: 2 + - uid: 22329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,74.5 + parent: 2 + - uid: 22383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,183.5 + parent: 2 + - uid: 22617 + components: + - type: Transform + pos: -43.5,57.5 + parent: 2 + - uid: 23125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,90.5 + parent: 2 + - uid: 23971 + components: + - type: Transform + pos: -43.5,56.5 + parent: 2 + - uid: 24298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,197.5 + parent: 2 + - uid: 24305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,188.5 + parent: 2 + - uid: 24309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,179.5 + parent: 2 + - uid: 24310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,180.5 + parent: 2 + - uid: 24311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,181.5 + parent: 2 + - uid: 24312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,188.5 + parent: 2 + - uid: 24313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,191.5 + parent: 2 + - uid: 24315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,189.5 + parent: 2 + - uid: 24317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,190.5 + parent: 2 + - uid: 24319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,194.5 + parent: 2 + - uid: 24320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,196.5 + parent: 2 + - uid: 24324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,195.5 + parent: 2 + - uid: 24325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,198.5 + parent: 2 + - uid: 24327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,199.5 + parent: 2 + - uid: 24330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,187.5 + parent: 2 + - uid: 24338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,186.5 + parent: 2 + - uid: 24349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,184.5 + parent: 2 + - uid: 24353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,187.5 + parent: 2 + - uid: 24354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,186.5 + parent: 2 + - uid: 24355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,192.5 + parent: 2 + - uid: 24358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,193.5 + parent: 2 + - uid: 25168 + components: + - type: Transform + pos: -43.5,55.5 + parent: 2 + - uid: 25305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,164.5 + parent: 2 + - uid: 25867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,200.5 + parent: 2 + - uid: 25868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,200.5 + parent: 2 + - uid: 25870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,201.5 + parent: 2 + - uid: 25872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,202.5 + parent: 2 + - uid: 25873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,202.5 + parent: 2 + - uid: 25876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,203.5 + parent: 2 + - uid: 25877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,203.5 + parent: 2 + - uid: 25878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,203.5 + parent: 2 + - uid: 25879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,203.5 + parent: 2 + - uid: 25880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,203.5 + parent: 2 + - uid: 25881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,203.5 + parent: 2 + - uid: 25882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,203.5 + parent: 2 + - uid: 25887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,206.5 + parent: 2 + - uid: 25888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,207.5 + parent: 2 + - uid: 25889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,208.5 + parent: 2 + - uid: 25893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,210.5 + parent: 2 + - uid: 25894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,210.5 + parent: 2 + - uid: 25895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,210.5 + parent: 2 + - uid: 25896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,210.5 + parent: 2 + - uid: 25897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,210.5 + parent: 2 + - uid: 25898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,210.5 + parent: 2 + - uid: 25899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,210.5 + parent: 2 + - uid: 25900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,210.5 + parent: 2 + - uid: 25902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,211.5 + parent: 2 + - uid: 25903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,212.5 + parent: 2 + - uid: 25905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,213.5 + parent: 2 + - uid: 25906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,213.5 + parent: 2 + - uid: 25908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,213.5 + parent: 2 + - uid: 25909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,213.5 + parent: 2 + - uid: 25910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,213.5 + parent: 2 + - uid: 25911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,213.5 + parent: 2 + - uid: 25912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,213.5 + parent: 2 + - uid: 25915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,212.5 + parent: 2 + - uid: 25916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,212.5 + parent: 2 + - uid: 25921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,211.5 + parent: 2 + - uid: 25922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,210.5 + parent: 2 + - uid: 25925 + components: + - type: Transform + pos: -6.5,212.5 + parent: 2 + - uid: 25926 + components: + - type: Transform + pos: -6.5,211.5 + parent: 2 + - uid: 25927 + components: + - type: Transform + pos: -6.5,210.5 + parent: 2 + - uid: 25928 + components: + - type: Transform + pos: -6.5,209.5 + parent: 2 + - uid: 25929 + components: + - type: Transform + pos: -6.5,208.5 + parent: 2 + - uid: 25930 + components: + - type: Transform + pos: -6.5,207.5 + parent: 2 + - uid: 25931 + components: + - type: Transform + pos: -6.5,206.5 + parent: 2 + - uid: 25935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,209.5 + parent: 2 + - uid: 25936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,209.5 + parent: 2 + - uid: 25937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,209.5 + parent: 2 + - uid: 25938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,209.5 + parent: 2 + - uid: 25940 + components: + - type: Transform + pos: -24.5,208.5 + parent: 2 + - uid: 25941 + components: + - type: Transform + pos: -24.5,207.5 + parent: 2 + - uid: 25942 + components: + - type: Transform + pos: -24.5,206.5 + parent: 2 + - uid: 25944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,205.5 + parent: 2 + - uid: 25945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,205.5 + parent: 2 + - uid: 25946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,205.5 + parent: 2 + - uid: 25958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,182.5 + parent: 2 + - uid: 25963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,180.5 + parent: 2 + - uid: 25964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,180.5 + parent: 2 + - uid: 25965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,180.5 + parent: 2 + - uid: 25966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,180.5 + parent: 2 + - uid: 25967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,180.5 + parent: 2 + - uid: 25968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,180.5 + parent: 2 + - uid: 25969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,180.5 + parent: 2 + - uid: 25970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,180.5 + parent: 2 + - uid: 25974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,179.5 + parent: 2 + - uid: 25975 + components: + - type: Transform + pos: 6.5,178.5 + parent: 2 + - uid: 25976 + components: + - type: Transform + pos: 6.5,177.5 + parent: 2 + - uid: 25977 + components: + - type: Transform + pos: 6.5,176.5 + parent: 2 + - uid: 25978 + components: + - type: Transform + pos: 6.5,175.5 + parent: 2 + - uid: 25980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,174.5 + parent: 2 + - uid: 25981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,174.5 + parent: 2 + - uid: 25982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,174.5 + parent: 2 + - uid: 25983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,174.5 + parent: 2 + - uid: 25985 + components: + - type: Transform + pos: 1.5,173.5 + parent: 2 + - uid: 25986 + components: + - type: Transform + pos: 1.5,172.5 + parent: 2 + - uid: 25987 + components: + - type: Transform + pos: 1.5,171.5 + parent: 2 + - uid: 25988 + components: + - type: Transform + pos: 1.5,170.5 + parent: 2 + - uid: 25989 + components: + - type: Transform + pos: 1.5,169.5 + parent: 2 + - uid: 25990 + components: + - type: Transform + pos: 1.5,168.5 + parent: 2 + - uid: 25991 + components: + - type: Transform + pos: 1.5,167.5 + parent: 2 + - uid: 25993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,166.5 + parent: 2 + - uid: 25994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,166.5 + parent: 2 + - uid: 25995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,166.5 + parent: 2 + - uid: 26000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,166.5 + parent: 2 + - uid: 26001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,166.5 + parent: 2 + - uid: 26022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,173.5 + parent: 2 + - uid: 26023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,173.5 + parent: 2 + - uid: 26024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,173.5 + parent: 2 + - uid: 26025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,173.5 + parent: 2 + - uid: 26026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,173.5 + parent: 2 + - uid: 26027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,173.5 + parent: 2 + - uid: 26029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,174.5 + parent: 2 + - uid: 26030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,175.5 + parent: 2 + - uid: 26031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,176.5 + parent: 2 + - uid: 26032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,177.5 + parent: 2 + - uid: 26033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,178.5 + parent: 2 + - uid: 26048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,188.5 + parent: 2 + - uid: 26049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,189.5 + parent: 2 + - uid: 26051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,190.5 + parent: 2 + - uid: 26052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,190.5 + parent: 2 + - uid: 26053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,190.5 + parent: 2 + - uid: 26054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,190.5 + parent: 2 + - uid: 26055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,190.5 + parent: 2 + - uid: 26057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,191.5 + parent: 2 + - uid: 26061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,192.5 + parent: 2 + - uid: 26062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,192.5 + parent: 2 + - uid: 26063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,192.5 + parent: 2 + - uid: 26064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,192.5 + parent: 2 + - uid: 26065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,192.5 + parent: 2 + - uid: 26066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,192.5 + parent: 2 + - uid: 26069 + components: + - type: Transform + pos: -16.5,193.5 + parent: 2 + - uid: 26071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,192.5 + parent: 2 + - uid: 26072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,192.5 + parent: 2 + - uid: 26073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,192.5 + parent: 2 + - uid: 26074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,191.5 + parent: 2 + - uid: 26075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,190.5 + parent: 2 + - uid: 26077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,189.5 + parent: 2 + - uid: 26078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,189.5 + parent: 2 + - uid: 26079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,189.5 + parent: 2 + - uid: 26082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,172.5 + parent: 2 + - uid: 26083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,172.5 + parent: 2 + - uid: 26084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,172.5 + parent: 2 + - uid: 26085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,172.5 + parent: 2 + - uid: 26086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,172.5 + parent: 2 + - uid: 26087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,172.5 + parent: 2 + - uid: 26088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,172.5 + parent: 2 + - uid: 26089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,172.5 + parent: 2 + - uid: 26090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,172.5 + parent: 2 + - uid: 26091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,172.5 + parent: 2 + - uid: 26092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,172.5 + parent: 2 + - uid: 26093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,172.5 + parent: 2 + - uid: 26094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,172.5 + parent: 2 + - uid: 26096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,172.5 + parent: 2 + - uid: 26097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,172.5 + parent: 2 + - uid: 26098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,172.5 + parent: 2 + - uid: 26100 + components: + - type: Transform + pos: -81.5,173.5 + parent: 2 + - uid: 26101 + components: + - type: Transform + pos: -81.5,174.5 + parent: 2 + - uid: 26103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,172.5 + parent: 2 + - uid: 26104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,172.5 + parent: 2 + - uid: 26105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,172.5 + parent: 2 + - uid: 26106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,172.5 + parent: 2 + - uid: 26108 + components: + - type: Transform + pos: -86.5,171.5 + parent: 2 + - uid: 26109 + components: + - type: Transform + pos: -86.5,170.5 + parent: 2 + - uid: 26110 + components: + - type: Transform + pos: -86.5,168.5 + parent: 2 + - uid: 26112 + components: + - type: Transform + pos: -86.5,166.5 + parent: 2 + - uid: 26116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,171.5 + parent: 2 + - uid: 26117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,170.5 + parent: 2 + - uid: 26118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,169.5 + parent: 2 + - uid: 26120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,168.5 + parent: 2 + - uid: 26122 + components: + - type: Transform + pos: -79.5,167.5 + parent: 2 + - uid: 26123 + components: + - type: Transform + pos: -79.5,166.5 + parent: 2 + - uid: 26124 + components: + - type: Transform + pos: -79.5,165.5 + parent: 2 + - uid: 26125 + components: + - type: Transform + pos: -79.5,164.5 + parent: 2 + - uid: 26126 + components: + - type: Transform + pos: -79.5,163.5 + parent: 2 + - uid: 26127 + components: + - type: Transform + pos: -79.5,162.5 + parent: 2 + - uid: 26128 + components: + - type: Transform + pos: -79.5,161.5 + parent: 2 + - uid: 26129 + components: + - type: Transform + pos: -79.5,160.5 + parent: 2 + - uid: 26133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,159.5 + parent: 2 + - uid: 26134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,159.5 + parent: 2 + - uid: 26138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,157.5 + parent: 2 + - uid: 26139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,156.5 + parent: 2 + - uid: 26140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,155.5 + parent: 2 + - uid: 26141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,154.5 + parent: 2 + - uid: 26142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,153.5 + parent: 2 + - uid: 26144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,152.5 + parent: 2 + - uid: 26145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,152.5 + parent: 2 + - uid: 26147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,158.5 + parent: 2 + - uid: 26148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,158.5 + parent: 2 + - uid: 26149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,158.5 + parent: 2 + - uid: 26150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,158.5 + parent: 2 + - uid: 26151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,158.5 + parent: 2 + - uid: 26152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,158.5 + parent: 2 + - uid: 26153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,158.5 + parent: 2 + - uid: 26155 + components: + - type: Transform + pos: -72.5,157.5 + parent: 2 + - uid: 26876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,95.5 + parent: 2 + - uid: 26877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,95.5 + parent: 2 + - uid: 26878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,95.5 + parent: 2 + - uid: 26881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,95.5 + parent: 2 + - uid: 26882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,95.5 + parent: 2 + - uid: 26883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,95.5 + parent: 2 + - uid: 26884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,95.5 + parent: 2 + - uid: 26885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,95.5 + parent: 2 + - uid: 26887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,95.5 + parent: 2 + - uid: 26888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,95.5 + parent: 2 + - uid: 26889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,95.5 + parent: 2 + - uid: 26890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,95.5 + parent: 2 + - uid: 26891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,94.5 + parent: 2 + - uid: 26892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,93.5 + parent: 2 + - uid: 26893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,92.5 + parent: 2 + - uid: 26894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,91.5 + parent: 2 + - uid: 26895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,90.5 + parent: 2 + - uid: 26897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,89.5 + parent: 2 + - uid: 26900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,88.5 + parent: 2 + - uid: 26901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,88.5 + parent: 2 + - uid: 26902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,88.5 + parent: 2 + - uid: 26903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,88.5 + parent: 2 + - uid: 26904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,88.5 + parent: 2 + - uid: 26905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,88.5 + parent: 2 + - uid: 26906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,88.5 + parent: 2 + - uid: 26908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,88.5 + parent: 2 + - uid: 26909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,87.5 + parent: 2 + - uid: 26910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,86.5 + parent: 2 + - uid: 26911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,85.5 + parent: 2 + - uid: 26912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,84.5 + parent: 2 + - uid: 26913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,83.5 + parent: 2 + - uid: 26915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,82.5 + parent: 2 + - uid: 26916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,82.5 + parent: 2 + - uid: 26917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,82.5 + parent: 2 + - uid: 26918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,82.5 + parent: 2 + - uid: 26919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,82.5 + parent: 2 + - uid: 26920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,82.5 + parent: 2 + - uid: 26921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,82.5 + parent: 2 + - uid: 26922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,82.5 + parent: 2 + - uid: 26923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,82.5 + parent: 2 + - uid: 26924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,82.5 + parent: 2 + - uid: 26928 + components: + - type: Transform + pos: -58.5,83.5 + parent: 2 + - uid: 26930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,83.5 + parent: 2 + - uid: 26931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,84.5 + parent: 2 + - uid: 26932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,85.5 + parent: 2 + - uid: 26933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,86.5 + parent: 2 + - uid: 26934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,87.5 + parent: 2 + - uid: 26935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,88.5 + parent: 2 + - uid: 26937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,89.5 + parent: 2 + - uid: 26939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,89.5 + parent: 2 + - uid: 26940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,89.5 + parent: 2 + - uid: 26941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,89.5 + parent: 2 + - uid: 26942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,89.5 + parent: 2 + - uid: 26943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,89.5 + parent: 2 + - uid: 26944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,89.5 + parent: 2 + - uid: 26945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,89.5 + parent: 2 + - uid: 26946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,89.5 + parent: 2 + - uid: 26947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,89.5 + parent: 2 + - uid: 26950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,88.5 + parent: 2 + - uid: 26951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,87.5 + parent: 2 + - uid: 26952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,86.5 + parent: 2 + - uid: 26953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,85.5 + parent: 2 + - uid: 26954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,84.5 + parent: 2 + - uid: 26955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,83.5 + parent: 2 + - uid: 26956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,82.5 + parent: 2 + - uid: 26957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,81.5 + parent: 2 + - uid: 26962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,81.5 + parent: 2 + - uid: 26963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,82.5 + parent: 2 + - uid: 26964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,83.5 + parent: 2 + - uid: 26965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,84.5 + parent: 2 + - uid: 26966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,85.5 + parent: 2 + - uid: 26967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,86.5 + parent: 2 + - uid: 26968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,87.5 + parent: 2 + - uid: 26969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,88.5 + parent: 2 + - uid: 26970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,89.5 + parent: 2 + - uid: 26971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,89.5 + parent: 2 + - uid: 26972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,89.5 + parent: 2 + - uid: 26974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,89.5 + parent: 2 + - uid: 26975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,89.5 + parent: 2 + - uid: 26976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,89.5 + parent: 2 + - uid: 26977 + components: + - type: Transform + pos: -57.5,81.5 + parent: 2 + - uid: 26978 + components: + - type: Transform + pos: -57.5,80.5 + parent: 2 + - uid: 26979 + components: + - type: Transform + pos: -57.5,79.5 + parent: 2 + - uid: 26980 + components: + - type: Transform + pos: -57.5,78.5 + parent: 2 + - uid: 26981 + components: + - type: Transform + pos: -57.5,77.5 + parent: 2 + - uid: 26982 + components: + - type: Transform + pos: -57.5,76.5 + parent: 2 + - uid: 26983 + components: + - type: Transform + pos: -57.5,75.5 + parent: 2 + - uid: 26985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,74.5 + parent: 2 + - uid: 26988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,91.5 + parent: 2 + - uid: 26989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,92.5 + parent: 2 + - uid: 26990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,93.5 + parent: 2 + - uid: 26991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,94.5 + parent: 2 + - uid: 26992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,95.5 + parent: 2 + - uid: 26993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,96.5 + parent: 2 + - uid: 26994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,97.5 + parent: 2 + - uid: 27007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,89.5 + parent: 2 + - uid: 27008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,89.5 + parent: 2 + - uid: 27009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,89.5 + parent: 2 + - uid: 27010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,89.5 + parent: 2 + - uid: 27011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,89.5 + parent: 2 + - uid: 27012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,89.5 + parent: 2 + - uid: 27013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,89.5 + parent: 2 + - uid: 27014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,89.5 + parent: 2 + - uid: 27015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,89.5 + parent: 2 + - uid: 27016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,89.5 + parent: 2 + - uid: 27017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,89.5 + parent: 2 + - uid: 27018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,89.5 + parent: 2 + - uid: 27020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,88.5 + parent: 2 + - uid: 27021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,87.5 + parent: 2 + - uid: 27022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,86.5 + parent: 2 + - uid: 27023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,85.5 + parent: 2 + - uid: 27024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,84.5 + parent: 2 + - uid: 27025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,83.5 + parent: 2 + - uid: 27026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,82.5 + parent: 2 + - uid: 27027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,81.5 + parent: 2 + - uid: 27028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,80.5 + parent: 2 + - uid: 27029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,79.5 + parent: 2 + - uid: 27030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,78.5 + parent: 2 + - uid: 27031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,77.5 + parent: 2 + - uid: 27032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,76.5 + parent: 2 + - uid: 27033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,75.5 + parent: 2 + - uid: 27036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,73.5 + parent: 2 + - uid: 27037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,72.5 + parent: 2 + - uid: 27038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,71.5 + parent: 2 + - uid: 27039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,70.5 + parent: 2 + - uid: 27040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,69.5 + parent: 2 + - uid: 27041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,68.5 + parent: 2 + - uid: 27042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,67.5 + parent: 2 + - uid: 27043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,66.5 + parent: 2 + - uid: 27045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,65.5 + parent: 2 + - uid: 27046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,65.5 + parent: 2 + - uid: 27047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,65.5 + parent: 2 + - uid: 27048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,65.5 + parent: 2 + - uid: 27049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,65.5 + parent: 2 + - uid: 27050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,65.5 + parent: 2 + - uid: 27051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,65.5 + parent: 2 + - uid: 27052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,65.5 + parent: 2 + - uid: 27054 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 27056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,63.5 + parent: 2 + - uid: 27058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,74.5 + parent: 2 + - uid: 27059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,74.5 + parent: 2 + - uid: 27060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,74.5 + parent: 2 + - uid: 27062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,74.5 + parent: 2 + - uid: 27063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,74.5 + parent: 2 + - uid: 27065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,75.5 + parent: 2 + - uid: 27066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,76.5 + parent: 2 + - uid: 27068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,74.5 + parent: 2 + - uid: 27069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,74.5 + parent: 2 + - uid: 27070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,74.5 + parent: 2 + - uid: 27071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,74.5 + parent: 2 + - uid: 27072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,74.5 + parent: 2 + - uid: 27073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,74.5 + parent: 2 + - uid: 27074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,74.5 + parent: 2 + - uid: 27077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,75.5 + parent: 2 + - uid: 27078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,76.5 + parent: 2 + - uid: 27079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,77.5 + parent: 2 + - uid: 27080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,78.5 + parent: 2 + - uid: 27081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,79.5 + parent: 2 + - uid: 27082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,80.5 + parent: 2 + - uid: 27084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,81.5 + parent: 2 + - uid: 27085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,81.5 + parent: 2 + - uid: 27088 + components: + - type: Transform + pos: -6.5,82.5 + parent: 2 + - uid: 27089 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 27091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,84.5 + parent: 2 + - uid: 27093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,89.5 + parent: 2 + - uid: 27094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,89.5 + parent: 2 + - uid: 27095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,89.5 + parent: 2 + - uid: 27116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,74.5 + parent: 2 + - uid: 27117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,74.5 + parent: 2 + - uid: 27118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,74.5 + parent: 2 + - uid: 27119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,74.5 + parent: 2 + - uid: 27120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,74.5 + parent: 2 + - uid: 27121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,74.5 + parent: 2 + - uid: 27122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,74.5 + parent: 2 + - uid: 27123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,74.5 + parent: 2 + - uid: 27125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,75.5 + parent: 2 + - uid: 27126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,76.5 + parent: 2 + - uid: 27127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,77.5 + parent: 2 + - uid: 27196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,95.5 + parent: 2 + - uid: 27779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,95.5 + parent: 2 + - uid: 28004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 28012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 28022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - uid: 28024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 28087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - uid: 28107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - uid: 28288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - uid: 28295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,55.5 + parent: 2 + - uid: 28296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,55.5 + parent: 2 + - uid: 28301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,55.5 + parent: 2 + - uid: 28302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,55.5 + parent: 2 + - uid: 28331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + - uid: 28333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - uid: 28334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 28335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - uid: 28433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - uid: 28436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - uid: 28438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - uid: 28448 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 28456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - uid: 28491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,15.5 + parent: 2 + - uid: 28513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + - uid: 28522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + - uid: 28529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - uid: 28579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - uid: 28584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - uid: 28588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,15.5 + parent: 2 + - uid: 28601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - uid: 28615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,15.5 + parent: 2 + - uid: 28628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + - uid: 28643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 28660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 + - uid: 28661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - uid: 28681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 + - uid: 28694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2 + - uid: 28695 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 28732 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 28733 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 28740 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 29133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,29.5 + parent: 2 + - uid: 29182 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 29204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - uid: 29268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,34.5 + parent: 2 + - uid: 29278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,34.5 + parent: 2 + - uid: 29326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,34.5 + parent: 2 + - uid: 29327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,34.5 + parent: 2 + - uid: 29328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,34.5 + parent: 2 + - uid: 29329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,34.5 + parent: 2 + - uid: 29337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,35.5 + parent: 2 + - uid: 29744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,65.5 + parent: 2 + - uid: 29746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,65.5 + parent: 2 + - uid: 29749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,65.5 + parent: 2 + - uid: 29750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,65.5 + parent: 2 + - uid: 29751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,65.5 + parent: 2 + - uid: 29752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,65.5 + parent: 2 + - uid: 29753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,65.5 + parent: 2 + - uid: 29754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,65.5 + parent: 2 + - uid: 29757 + components: + - type: Transform + pos: -108.5,63.5 + parent: 2 + - uid: 29758 + components: + - type: Transform + pos: -108.5,62.5 + parent: 2 + - uid: 29759 + components: + - type: Transform + pos: -108.5,61.5 + parent: 2 + - uid: 29760 + components: + - type: Transform + pos: -108.5,60.5 + parent: 2 + - uid: 29761 + components: + - type: Transform + pos: -108.5,59.5 + parent: 2 + - uid: 29762 + components: + - type: Transform + pos: -108.5,58.5 + parent: 2 + - uid: 29763 + components: + - type: Transform + pos: -108.5,57.5 + parent: 2 + - uid: 29764 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 29765 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 29766 + components: + - type: Transform + pos: -108.5,54.5 + parent: 2 + - uid: 29767 + components: + - type: Transform + pos: -108.5,53.5 + parent: 2 + - uid: 29771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,52.5 + parent: 2 + - uid: 29772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,51.5 + parent: 2 + - uid: 29773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,50.5 + parent: 2 + - uid: 29774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,49.5 + parent: 2 + - uid: 29775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,48.5 + parent: 2 + - uid: 29795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,47.5 + parent: 2 + - uid: 29797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,47.5 + parent: 2 + - uid: 29798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,47.5 + parent: 2 + - uid: 29799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,47.5 + parent: 2 + - uid: 29800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,47.5 + parent: 2 + - uid: 29801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,47.5 + parent: 2 + - uid: 29802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,47.5 + parent: 2 + - uid: 29803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,47.5 + parent: 2 + - uid: 29809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,46.5 + parent: 2 + - uid: 29815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,46.5 + parent: 2 + - uid: 29816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,45.5 + parent: 2 + - uid: 29817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,44.5 + parent: 2 + - uid: 29818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,43.5 + parent: 2 + - uid: 29819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,42.5 + parent: 2 + - uid: 29821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,41.5 + parent: 2 + - uid: 29822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,41.5 + parent: 2 + - uid: 29823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 29824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,41.5 + parent: 2 + - uid: 29825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,41.5 + parent: 2 + - uid: 29826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,41.5 + parent: 2 + - uid: 29827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,41.5 + parent: 2 + - uid: 29828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,41.5 + parent: 2 + - uid: 29829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,41.5 + parent: 2 + - uid: 29835 + components: + - type: Transform + pos: -120.5,45.5 + parent: 2 + - uid: 29838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,46.5 + parent: 2 + - uid: 29839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,46.5 + parent: 2 + - uid: 29840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,46.5 + parent: 2 + - uid: 29841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,46.5 + parent: 2 + - uid: 29842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,46.5 + parent: 2 + - uid: 29843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,46.5 + parent: 2 + - uid: 29844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,46.5 + parent: 2 + - uid: 29845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,46.5 + parent: 2 + - uid: 29846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,46.5 + parent: 2 + - uid: 29847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,46.5 + parent: 2 + - uid: 32287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,104.5 + parent: 2 + - uid: 34136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,73.5 + parent: 2 + - uid: 35673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,95.5 + parent: 2 + - uid: 35674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,95.5 + parent: 2 + - uid: 35675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,95.5 + parent: 2 + - uid: 35676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,95.5 + parent: 2 + - uid: 35677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,95.5 + parent: 2 + - uid: 35678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,95.5 + parent: 2 + - uid: 35680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,98.5 + parent: 2 + - uid: 35681 + components: + - type: Transform + pos: -92.5,96.5 + parent: 2 + - uid: 35682 + components: + - type: Transform + pos: -92.5,97.5 + parent: 2 + - uid: 35683 + components: + - type: Transform + pos: -92.5,98.5 + parent: 2 + - uid: 35686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,99.5 + parent: 2 + - uid: 35687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,99.5 + parent: 2 + - uid: 35688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,99.5 + parent: 2 + - uid: 35689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,99.5 + parent: 2 + - uid: 35690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,99.5 + parent: 2 + - uid: 35691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,99.5 + parent: 2 + - uid: 35692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,99.5 + parent: 2 + - uid: 35693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,99.5 + parent: 2 + - uid: 35725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,94.5 + parent: 2 + - uid: 35726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,94.5 + parent: 2 + - uid: 35727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,94.5 + parent: 2 + - uid: 35728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,94.5 + parent: 2 + - uid: 36152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,89.5 + parent: 2 + - uid: 36607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,104.5 + parent: 2 + - uid: 36610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,104.5 + parent: 2 + - uid: 36617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,104.5 + parent: 2 + - uid: 36659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,72.5 + parent: 2 + - uid: 42889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,65.5 + parent: 2 + - uid: 42896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,66.5 + parent: 2 + - uid: 42897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,66.5 + parent: 2 + - uid: 42898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,66.5 + parent: 2 + - uid: 42899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,66.5 + parent: 2 + - uid: 42900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,66.5 + parent: 2 + - uid: 42901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,66.5 + parent: 2 + - uid: 42902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,66.5 + parent: 2 + - uid: 42903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,66.5 + parent: 2 + - uid: 42904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,66.5 + parent: 2 + - uid: 42905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,66.5 + parent: 2 + - uid: 42906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,66.5 + parent: 2 + - uid: 42907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,66.5 + parent: 2 + - uid: 42908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,66.5 + parent: 2 + - uid: 42909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,66.5 + parent: 2 + - uid: 42910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,66.5 + parent: 2 + - uid: 42911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,66.5 + parent: 2 + - uid: 42912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,64.5 + parent: 2 + - uid: 42913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,63.5 + parent: 2 + - uid: 42914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,62.5 + parent: 2 + - uid: 42915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,60.5 + parent: 2 + - uid: 42921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,61.5 + parent: 2 + - uid: 42922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,61.5 + parent: 2 + - uid: 42923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,61.5 + parent: 2 + - uid: 42924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,61.5 + parent: 2 + - uid: 42925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,61.5 + parent: 2 + - uid: 42926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,61.5 + parent: 2 + - uid: 42927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,61.5 + parent: 2 + - uid: 42928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,61.5 + parent: 2 + - uid: 42939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,56.5 + parent: 2 + - uid: 42941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,59.5 + parent: 2 + - uid: 42947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,58.5 + parent: 2 +- proto: DisposalPipeBroken + entities: + - uid: 2618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,16.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 19711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,54.5 + parent: 2 +- proto: DisposalRouterFlipped + entities: + - uid: 19554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,95.5 + parent: 2 + - uid: 19555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,95.5 + parent: 2 + - uid: 19556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,95.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 822 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-18.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,51.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 114.5,45.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: 82.5,41.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: 106.5,49.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,40.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,65.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,65.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 114.5,61.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,39.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + pos: -24.5,194.5 + parent: 2 + - uid: 10829 + components: + - type: Transform + pos: -17.5,100.5 + parent: 2 + - uid: 13683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,71.5 + parent: 2 + - uid: 14958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,34.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,164.5 + parent: 2 + - uid: 17279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,69.5 + parent: 2 + - uid: 18129 + components: + - type: Transform + pos: -3.5,181.5 + parent: 2 + - uid: 19364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,167.5 + parent: 2 + - uid: 19606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - uid: 19653 + components: + - type: Transform + pos: -43.5,59.5 + parent: 2 + - uid: 19755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,55.5 + parent: 2 + - uid: 20959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,72.5 + parent: 2 + - uid: 24307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,188.5 + parent: 2 + - uid: 24344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,178.5 + parent: 2 + - uid: 25307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,164.5 + parent: 2 + - uid: 25932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,205.5 + parent: 2 + - uid: 26068 + components: + - type: Transform + pos: -16.5,194.5 + parent: 2 + - uid: 26080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,189.5 + parent: 2 + - uid: 26081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,172.5 + parent: 2 + - uid: 26102 + components: + - type: Transform + pos: -81.5,175.5 + parent: 2 + - uid: 26113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,165.5 + parent: 2 + - uid: 26136 + components: + - type: Transform + pos: -83.5,160.5 + parent: 2 + - uid: 26146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,152.5 + parent: 2 + - uid: 26156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,156.5 + parent: 2 + - uid: 26157 + components: + - type: Transform + pos: -60.5,75.5 + parent: 2 + - uid: 26879 + components: + - type: Transform + pos: -70.5,96.5 + parent: 2 + - uid: 26927 + components: + - type: Transform + pos: -58.5,84.5 + parent: 2 + - uid: 26959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,80.5 + parent: 2 + - uid: 26960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,80.5 + parent: 2 + - uid: 27057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,63.5 + parent: 2 + - uid: 27067 + components: + - type: Transform + pos: -15.5,77.5 + parent: 2 + - uid: 27087 + components: + - type: Transform + pos: -3.5,82.5 + parent: 2 + - uid: 27092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,84.5 + parent: 2 + - uid: 27129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,77.5 + parent: 2 + - uid: 29372 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 29374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 2 + - uid: 29527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,57.5 + parent: 2 + - uid: 29716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,65.5 + parent: 2 + - uid: 29811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,45.5 + parent: 2 + - uid: 29831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,37.5 + parent: 2 + - uid: 29848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,44.5 + parent: 2 + - uid: 35828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,104.5 + parent: 2 + - uid: 37603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,93.5 + parent: 2 + - uid: 37604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,93.5 + parent: 2 + - uid: 37605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,93.5 + parent: 2 + - uid: 37606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,93.5 + parent: 2 + - uid: 38404 + components: + - type: Transform + pos: -35.5,105.5 + parent: 2 + - uid: 42944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,57.5 + parent: 2 + - uid: 42950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,55.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 282 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: -72.5,156.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: 45.5,55.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: 82.5,41.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: 114.5,45.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: -99.5,45.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: 44.5,60.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: 69.5,65.5 + parent: 2 + - type: DisposalUnit + nextFlush: 0 + engaged: True + - type: ContainerContainer + containers: + disposals: !type:Container + showEnts: False + occludes: True + ents: + - 6994 + - uid: 7024 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: 106.5,49.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: 114.5,61.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: 79.5,65.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + pos: -24.5,194.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + pos: -4.5,84.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: -45.5,80.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + pos: -33.5,63.5 + parent: 2 + - type: ActiveUserInterface + - uid: 13418 + components: + - type: Transform + pos: -17.5,100.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: -27.5,104.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + pos: -70.5,96.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: -102.5,34.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: -58.5,84.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + pos: -71.5,77.5 + parent: 2 + - uid: 15302 + components: + - type: Transform + pos: -5.5,69.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: -7.5,164.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + pos: -16.5,194.5 + parent: 2 + - uid: 17922 + components: + - type: Transform + pos: -83.5,160.5 + parent: 2 + - uid: 19141 + components: + - type: Transform + pos: -120.5,44.5 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: -43.5,59.5 + parent: 2 + - uid: 19296 + components: + - type: Transform + pos: -95.5,167.5 + parent: 2 + - uid: 20031 + components: + - type: Transform + pos: -81.5,175.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + pos: -86.5,165.5 + parent: 2 + - uid: 20773 + components: + - type: Transform + pos: -5.5,72.5 + parent: 2 + - uid: 22360 + components: + - type: Transform + pos: -3.5,82.5 + parent: 2 + - uid: 22572 + components: + - type: Transform + pos: -3.5,181.5 + parent: 2 + - uid: 22764 + components: + - type: Transform + pos: -16.5,189.5 + parent: 2 + - uid: 22879 + components: + - type: Transform + pos: -35.5,80.5 + parent: 2 + - uid: 23578 + components: + - type: Transform + pos: 75.5,51.5 + parent: 2 + - uid: 23636 + components: + - type: Transform + pos: 19.5,188.5 + parent: 2 + - uid: 25319 + components: + - type: Transform + pos: -22.5,164.5 + parent: 2 + - uid: 25924 + components: + - type: Transform + pos: -6.5,205.5 + parent: 2 + - uid: 26130 + components: + - type: Transform + pos: -83.5,152.5 + parent: 2 + - uid: 26987 + components: + - type: Transform + pos: -60.5,75.5 + parent: 2 + - uid: 27947 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 28313 + components: + - type: Transform + pos: 93.5,55.5 + parent: 2 + - uid: 29503 + components: + - type: Transform + pos: 70.5,57.5 + parent: 2 + - uid: 29804 + components: + - type: Transform + pos: -87.5,37.5 + parent: 2 + - uid: 36660 + components: + - type: Transform + pos: -18.5,71.5 + parent: 2 + - uid: 36661 + components: + - type: Transform + pos: -15.5,77.5 + parent: 2 + - uid: 38405 + components: + - type: Transform + pos: -35.5,105.5 + parent: 2 + - uid: 42940 + components: + - type: Transform + pos: 55.5,57.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 5122 + components: + - type: Transform + pos: 71.5,66.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,165.5 + parent: 2 +- proto: DogBed + entities: + - uid: 3359 + components: + - type: Transform + pos: -66.5,65.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: -34.5,98.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + pos: -17.5,87.5 + parent: 2 + - type: HealOnBuckleHealing + - uid: 20059 + components: + - type: Transform + pos: -21.5,191.5 + parent: 2 + - uid: 23315 + components: + - type: Transform + pos: -20.5,204.5 + parent: 2 + - uid: 29701 + components: + - type: Transform + pos: 69.5,54.5 + parent: 2 + - type: HealOnBuckleHealing +- proto: DonkpocketBoxSpawner + entities: + - uid: 4396 + components: + - type: Transform + pos: 74.5,62.5 + parent: 2 + - uid: 17976 + components: + - type: Transform + pos: -80.5,33.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 17792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.984184,93.71168 + parent: 2 + - uid: 27319 + components: + - type: Transform + pos: -107.742645,35.77787 + parent: 2 + - uid: 28108 + components: + - type: Transform + pos: -107.273895,35.46537 + parent: 2 + - uid: 34630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.96856,93.82105 + parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 8721 + components: + - type: Transform + pos: 70.50744,28.58213 + parent: 2 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 4189 + components: + - type: Transform + pos: -105.52287,35.562855 + parent: 2 + - uid: 12322 + components: + - type: Transform + pos: -57.470543,11.874039 + parent: 2 + - uid: 37109 + components: + - type: Transform + pos: 79.32805,34.535007 + parent: 2 + - uid: 37110 + components: + - type: Transform + pos: 79.4843,34.50374 + parent: 2 + - uid: 37111 + components: + - type: Transform + pos: 79.59367,34.425556 + parent: 2 + - uid: 37691 + components: + - type: Transform + pos: -104.678795,64.70973 + parent: 2 +- proto: Dresser + entities: + - uid: 8395 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 18000 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 4761 + components: + - type: Transform + pos: -32.5,96.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 8623 + components: + - type: Transform + pos: -122.5,55.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 4784 + components: + - type: Transform + pos: -21.5,205.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 3922 + components: + - type: Transform + pos: 48.5,58.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: -60.5,107.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + pos: -73.5,100.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + pos: -59.5,101.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: -57.5,95.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + pos: -69.5,92.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 4772 + components: + - type: Transform + pos: -17.5,86.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 4561 + components: + - type: Transform + pos: 81.5,63.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 12307 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 12314 + components: + - type: Transform + pos: -84.5,154.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 4778 + components: + - type: Transform + pos: 72.5,51.5 + parent: 2 +- proto: DrinkAleBottleFull + entities: + - uid: 5306 + components: + - type: Transform + pos: -117.4251,47.764515 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: -86.47107,86.04662 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: -117.61632,47.550873 + parent: 2 + - uid: 27300 + components: + - type: Transform + pos: -116.93084,56.36492 + parent: 2 + - uid: 27970 + components: + - type: Transform + pos: -106.29154,59.676247 + parent: 2 + - uid: 28143 + components: + - type: Transform + pos: -115.53544,46.44892 + parent: 2 + - uid: 28515 + components: + - type: Transform + pos: -115.7379,46.71879 + parent: 2 + - uid: 28516 + components: + - type: Transform + pos: -116.18032,48.583874 + parent: 2 + - uid: 28517 + components: + - type: Transform + pos: -116.079094,48.39272 + parent: 2 + - uid: 28518 + components: + - type: Transform + pos: -117.57133,47.888203 + parent: 2 + - uid: 28786 + components: + - type: Transform + pos: -117.122055,56.499855 + parent: 2 + - uid: 28787 + components: + - type: Transform + pos: -117.189545,56.15128 + parent: 2 + - uid: 43363 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 43367 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 43368 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkAntifreeze + entities: + - uid: 17826 + components: + - type: Transform + rot: -31.415926535897945 rad + pos: -24.854618,184.42842 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 1119 + components: + - type: Transform + pos: -46.055157,-7.2816696 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -45.53195,-7.4222946 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -49.563564,-11.935511 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: -5.256243,-3.3245165 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -5.5140557,-3.4651415 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: -85.414536,90.60146 + parent: 2 + - uid: 5003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.17494,55.568237 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: -49.747948,-12.160354 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: -85.24285,90.42983 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: -84.965515,90.62787 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: -83.39391,89.835724 + parent: 2 + - uid: 36706 + components: + - type: Transform + pos: -112.72828,100.5 + parent: 2 + - uid: 39327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.793434,53.733505 + parent: 2 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 14093 + components: + - type: Transform + pos: -58.308327,98.77253 + parent: 2 +- proto: DrinkBottlePoisonWine + entities: + - uid: 12906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.70291,105.45798 + parent: 2 +- proto: DrinkBottleVodka + entities: + - uid: 22558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.47151,64.47049 + parent: 2 + - uid: 22560 + components: + - type: Transform + pos: -121.34386,66.189606 + parent: 2 + - uid: 22564 + components: + - type: Transform + pos: -121.72684,66.019394 + parent: 2 + - uid: 22568 + components: + - type: Transform + pos: -121.70556,75.49365 + parent: 2 + - uid: 22570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.365135,65.381096 + parent: 2 + - uid: 24276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -121.365135,71.855354 + parent: 2 + - uid: 34487 + components: + - type: Transform + pos: -121.407684,75.55748 + parent: 2 + - uid: 37749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.6337433,79.657486 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 26669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.573349,190.46613 + parent: 2 +- proto: DrinkCarrotJuice + entities: + - uid: 28080 + components: + - type: Transform + pos: -88.28508,38.808193 + parent: 2 +- proto: DrinkChangelingStingCan + entities: + - uid: 31824 + components: + - type: Transform + pos: -124.39389,111.44553 + parent: 2 +- proto: DrinkCognacBottleFull + entities: + - uid: 1898 + components: + - type: Transform + pos: -3.3750377,-2.7402442 + parent: 2 + - uid: 11118 + components: + - type: Transform + pos: -26.41352,61.847504 + parent: 2 + - uid: 35967 + components: + - type: Transform + pos: -2.3189583,86.26212 + parent: 2 +- proto: DrinkColaCan + entities: + - uid: 3016 + components: + - type: Transform + pos: 26.344643,15.328911 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 116.30695,59.63473 + parent: 2 +- proto: DrinkCreamCarton + entities: + - uid: 7428 + components: + - type: Transform + pos: 53.41304,39.55263 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: 54.222897,39.428944 + parent: 2 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 7525 + components: + - type: Transform + pos: -21.285141,204.59332 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 1768 + components: + - type: Transform + pos: -22.622606,-10.627377 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: -21.272848,-10.245069 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: -21.419073,-9.784049 + parent: 2 + - uid: 10942 + components: + - type: Transform + pos: -2.7154617,85.7465 + parent: 2 + - uid: 10945 + components: + - type: Transform + pos: -2.3873367,85.559 + parent: 2 + - uid: 11110 + components: + - type: Transform + pos: -28.073994,61.72482 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: -28.699112,61.760025 + parent: 2 + - uid: 12114 + components: + - type: Transform + pos: -28.523022,61.443165 + parent: 2 + - uid: 12115 + components: + - type: Transform + pos: -28.30291,61.566387 + parent: 2 + - uid: 12116 + components: + - type: Transform + pos: -28.892807,61.636803 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: -26.738153,98.81787 + parent: 2 + - uid: 13653 + components: + - type: Transform + pos: -26.525387,98.81787 + parent: 2 + - uid: 17951 + components: + - type: Transform + pos: -86.74141,159.96306 + parent: 2 + - uid: 18008 + components: + - type: Transform + pos: -86.90497,159.83942 + parent: 2 + - uid: 18392 + components: + - type: Transform + pos: -86.90497,160.13176 + parent: 2 + - uid: 18460 + components: + - type: Transform + pos: -87.141174,159.95186 + parent: 2 + - uid: 23348 + components: + - type: Transform + pos: -15.727104,207.45116 + parent: 2 + - uid: 23349 + components: + - type: Transform + pos: -15.513393,207.2375 + parent: 2 + - uid: 23350 + components: + - type: Transform + pos: -15.760849,207.21503 + parent: 2 + - uid: 23351 + components: + - type: Transform + pos: -15.535889,206.84396 + parent: 2 + - uid: 26996 + components: + - type: Transform + pos: -26.674324,98.62638 + parent: 2 + - uid: 27145 + components: + - type: Transform + pos: -116.3138,55.696175 + parent: 2 + - uid: 28717 + components: + - type: Transform + pos: -116.24041,55.384293 + parent: 2 + - uid: 28718 + components: + - type: Transform + pos: -116.58898,55.457676 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 12929 + components: + - type: Transform + pos: -45.483524,94.7499 + parent: 2 +- proto: DrinkGrapeCan + entities: + - uid: 20845 + components: + - type: Transform + pos: -87.64979,182.70209 + parent: 2 +- proto: DrinkHosFlask + entities: + - uid: 30744 + components: + - type: Transform + pos: 70.33956,3.4948273 + parent: 2 +- proto: DrinkHotCoco + entities: + - uid: 38245 + components: + - type: Transform + pos: -123.635925,32.77484 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 1688 + components: + - type: Transform + pos: -12.31633,4.490678 + parent: 2 +- proto: DrinkIceCreamGlass + entities: + - uid: 16704 + components: + - type: Transform + pos: -17.353579,182.94295 + parent: 2 + - uid: 22882 + components: + - type: Transform + pos: -17.488556,182.74054 + parent: 2 + - uid: 24030 + components: + - type: Transform + pos: -8.472454,212.75784 + parent: 2 + - uid: 35495 + components: + - type: Transform + pos: -19.503384,197.82095 + parent: 2 + - uid: 35496 + components: + - type: Transform + pos: -19.660856,197.67477 + parent: 2 + - uid: 35497 + components: + - type: Transform + pos: -19.379656,197.65228 + parent: 2 +- proto: DrinkIcedTeaCan + entities: + - uid: 14385 + components: + - type: Transform + pos: -83.25795,100.66798 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: -83.48291,100.78042 + parent: 2 + - uid: 14387 + components: + - type: Transform + pos: -83.49041,100.60801 + parent: 2 +- proto: DrinkManlyDorfGlass + entities: + - uid: 1136 + components: + - type: Transform + pos: -49.338604,-11.530714 + parent: 2 +- proto: DrinkMREFlask + entities: + - uid: 4700 + components: + - type: Transform + pos: 83.931656,67.559265 + parent: 2 +- proto: DrinkMug + entities: + - uid: 1872 + components: + - type: Transform + pos: 2.4001656,-2.172993 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: -63.7017,73.65787 + parent: 2 +- proto: DrinkMugBlack + entities: + - uid: 28156 + components: + - type: Transform + pos: -120.32498,43.736835 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 5427 + components: + - type: Transform + pos: -106.726,59.433407 + parent: 2 + - uid: 27312 + components: + - type: Transform + pos: -120.65118,43.54568 + parent: 2 +- proto: DrinkMugDog + entities: + - uid: 4895 + components: + - type: Transform + pos: -58.693054,105.83433 + parent: 2 + - uid: 14361 + components: + - type: Transform + pos: -77.20442,91.62838 + parent: 2 +- proto: DrinkMugGreen + entities: + - uid: 1871 + components: + - type: Transform + pos: 2.6476212,-2.465347 + parent: 2 + - uid: 14757 + components: + - type: Transform + pos: -75.782845,75.774055 + parent: 2 + - uid: 15001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.34178,91.6976 + parent: 2 + - uid: 23028 + components: + - type: Transform + pos: -8.69701,199.56702 + parent: 2 + - uid: 23086 + components: + - type: Transform + pos: -17.916851,177.57477 + parent: 2 +- proto: DrinkMugHeart + entities: + - uid: 14112 + components: + - type: Transform + pos: -77.65123,91.521996 + parent: 2 +- proto: DrinkMugMoebius + entities: + - uid: 15008 + components: + - type: Transform + pos: -76.949104,91.45817 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 1873 + components: + - type: Transform + pos: 4.3235717,-0.31767046 + parent: 2 + - uid: 11253 + components: + - type: Transform + pos: -76.68221,91.74015 + parent: 2 +- proto: DrinkMugRed + entities: + - uid: 229 + components: + - type: Transform + pos: 74.460724,62.959003 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -76.38434,91.37845 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -16.25992,-5.19746 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 74.64069,62.801582 + parent: 2 + - uid: 16686 + components: + - type: Transform + pos: 2.3553925,1.4943619 + parent: 13386 + - uid: 23029 + components: + - type: Transform + pos: -8.398832,199.66798 + parent: 2 + - uid: 23085 + components: + - type: Transform + pos: -17.489428,177.54103 + parent: 2 +- proto: DrinkNukieCan + entities: + - uid: 31989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.39619,110.46375 + parent: 2 +- proto: DrinkPatronBottleFull + entities: + - uid: 4763 + components: + - type: Transform + pos: 86.47911,20.516098 + parent: 2 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 1897 + components: + - type: Transform + pos: -3.7237253,-2.402913 + parent: 2 + - uid: 11115 + components: + - type: Transform + pos: -26.804104,61.90405 + parent: 2 +- proto: DrinkPoisonWineGlass + entities: + - uid: 15777 + components: + - type: Transform + pos: -132.46767,105.68787 + parent: 2 +- proto: DrinkRootBeerFloatGlass + entities: + - uid: 24028 + components: + - type: Transform + pos: -9.559141,212.75784 + parent: 2 +- proto: DrinkRumBottleFull + entities: + - uid: 888 + components: + - type: Transform + pos: -25.544092,94.38626 + parent: 2 + - uid: 8706 + components: + - type: Transform + pos: -25.266752,94.57109 + parent: 2 +- proto: DrinkScrewdriverCocktailGlass + entities: + - uid: 38284 + components: + - type: Transform + pos: -69.25075,181.48135 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 11014 + components: + - type: Transform + pos: -31.553307,58.607063 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 14116 + components: + - type: Transform + pos: -81.35597,98.65979 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: -81.4198,98.42575 + parent: 2 + - uid: 14118 + components: + - type: Transform + pos: -81.63257,98.42575 + parent: 2 + - uid: 38036 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38037 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkSilencerGlass + entities: + - uid: 17700 + components: + - type: Transform + pos: 80.8896,18.646988 + parent: 2 +- proto: DrinkSpaceMountainWindCan + entities: + - uid: 15515 + components: + - type: Transform + pos: 96.15272,53.815407 + parent: 2 +- proto: DrinkTequilaBottleFull + entities: + - uid: 23345 + components: + - type: Transform + pos: -16.469471,207.1363 + parent: 2 +- proto: DrinkVermouthBottleFull + entities: + - uid: 1771 + components: + - type: Transform + pos: -22.37515,-9.952714 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 5317 + components: + - type: Transform + pos: 59.344734,65.95568 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: -81.667076,99.0245 + parent: 2 + - uid: 36113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.66792,141.77411 + parent: 2 + - uid: 37747 + components: + - type: Transform + pos: 5.2720413,79.61494 + parent: 2 + - uid: 37989 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkVodkaGlass + entities: + - uid: 5318 + components: + - type: Transform + pos: 59.61036,65.54943 + parent: 2 + - uid: 37750 + components: + - type: Transform + pos: 5.655018,79.466 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 1592 + components: + - type: Transform + parent: 1589 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4692 + components: + - type: Transform + pos: 82.09543,67.644745 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 82.079124,67.6937 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: 81.99759,67.644745 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: -11.325617,81.67377 + parent: 2 + - uid: 10635 + components: + - type: Transform + pos: -11.505587,81.527596 + parent: 2 + - uid: 10636 + components: + - type: Transform + pos: -11.449347,81.797455 + parent: 2 + - uid: 14674 + components: + - type: Transform + pos: -78.28501,86.76345 + parent: 2 + - uid: 14675 + components: + - type: Transform + pos: -76.6428,83.918625 + parent: 2 + - uid: 14676 + components: + - type: Transform + pos: -74.48319,83.62627 + parent: 2 + - uid: 14677 + components: + - type: Transform + pos: -75.20306,85.706474 + parent: 2 + - uid: 14704 + components: + - type: Transform + pos: -78.50661,77.73618 + parent: 2 + - uid: 14705 + components: + - type: Transform + pos: -78.324524,77.88572 + parent: 2 + - uid: 15296 + components: + - type: Transform + pos: -124.364685,108.51288 + parent: 2 + - uid: 23924 + components: + - type: Transform + pos: -124.556175,108.555435 + parent: 2 + - uid: 25162 + components: + - type: Transform + pos: -124.72639,108.555435 + parent: 2 +- proto: DrinkWaterCup + entities: + - uid: 25365 + components: + - type: Transform + pos: -80.6248,33.509686 + parent: 2 + - uid: 27257 + components: + - type: Transform + pos: -80.3748,33.36906 + parent: 2 + - uid: 27303 + components: + - type: Transform + pos: -80.46855,33.634686 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 13572 + components: + - type: Transform + pos: -26.82326,99.25411 + parent: 2 + - uid: 22408 + components: + - type: Transform + pos: -0.2390852,77.10401 + parent: 2 +- proto: DrinkWhiskeyGlass + entities: + - uid: 11101 + components: + - type: Transform + pos: -0.10410905,76.60176 + parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 17950 + components: + - type: Transform + pos: -87.703575,160.37914 + parent: 2 + - uid: 18398 + components: + - type: Transform + pos: -88.00727,160.28918 + parent: 2 +- proto: Dropper + entities: + - uid: 2784 + components: + - type: Transform + pos: 26.612978,14.501228 + parent: 2 + - uid: 22852 + components: + - type: Transform + pos: -24.649458,191.96136 + parent: 2 + - uid: 22853 + components: + - type: Transform + pos: -24.536978,192.08505 + parent: 2 + - uid: 22953 + components: + - type: Transform + pos: -11.626921,65.75831 + parent: 2 +- proto: EggplantSeeds + entities: + - uid: 14090 + components: + - type: Transform + pos: -10.293836,65.56047 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 969 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,2.5 + parent: 2 + - uid: 972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 2 + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,51.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,57.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: -20.5,167.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 107.5,48.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 47.5,62.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: 60.5,62.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: 76.5,63.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: 80.5,67.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,53.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: 95.5,59.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,47.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 108.5,63.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: -119.5,50.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,41.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,48.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,51.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,54.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,46.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,46.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + pos: -32.5,98.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + pos: -21.5,77.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: -14.5,75.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + pos: -8.5,75.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,80.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,54.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + pos: -34.5,101.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,165.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,167.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,182.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,99.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-7.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,182.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,80.5 + parent: 2 + - uid: 17024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,103.5 + parent: 2 + - uid: 17076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,101.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,60.5 + parent: 2 + - uid: 18961 + components: + - type: Transform + pos: -89.5,165.5 + parent: 2 + - uid: 19080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,162.5 + parent: 2 + - uid: 19783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,182.5 + parent: 2 + - uid: 19808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,157.5 + parent: 2 + - uid: 19815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,73.5 + parent: 2 + - uid: 20046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,179.5 + parent: 2 + - uid: 20052 + components: + - type: Transform + pos: -44.5,91.5 + parent: 2 + - uid: 20053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,73.5 + parent: 2 + - uid: 20888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,168.5 + parent: 2 + - uid: 27343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,187.5 + parent: 2 + - uid: 27344 + components: + - type: Transform + pos: -12.5,194.5 + parent: 2 + - uid: 27345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,198.5 + parent: 2 + - uid: 27346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,198.5 + parent: 2 + - uid: 27347 + components: + - type: Transform + pos: 0.5,205.5 + parent: 2 + - uid: 27348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,206.5 + parent: 2 + - uid: 27349 + components: + - type: Transform + pos: -66.5,153.5 + parent: 2 + - uid: 27350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,200.5 + parent: 2 + - uid: 27351 + components: + - type: Transform + pos: -30.5,202.5 + parent: 2 + - uid: 27352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,212.5 + parent: 2 + - uid: 27353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,201.5 + parent: 2 + - uid: 27354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,192.5 + parent: 2 + - uid: 27355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,190.5 + parent: 2 + - uid: 27356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,193.5 + parent: 2 + - uid: 27357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,192.5 + parent: 2 + - uid: 27358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,179.5 + parent: 2 + - uid: 27359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,156.5 + parent: 2 + - uid: 27360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,182.5 + parent: 2 + - uid: 27362 + components: + - type: Transform + pos: -5.5,171.5 + parent: 2 + - uid: 27363 + components: + - type: Transform + pos: -14.5,171.5 + parent: 2 + - uid: 27364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,167.5 + parent: 2 + - uid: 27365 + components: + - type: Transform + pos: -0.5,167.5 + parent: 2 + - uid: 27367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,168.5 + parent: 2 + - uid: 27368 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 + - uid: 27370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,32.5 + parent: 2 + - uid: 27372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,43.5 + parent: 2 + - uid: 27373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,85.5 + parent: 2 + - uid: 27374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,57.5 + parent: 2 + - uid: 27377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,52.5 + parent: 2 + - uid: 27380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 2 + - uid: 27381 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 27382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,65.5 + parent: 2 + - uid: 27383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,65.5 + parent: 2 + - uid: 27384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,65.5 + parent: 2 + - uid: 27385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,173.5 + parent: 2 + - uid: 27399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,95.5 + parent: 2 + - uid: 27400 + components: + - type: Transform + pos: -57.5,91.5 + parent: 2 + - uid: 27401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,74.5 + parent: 2 + - uid: 27402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,81.5 + parent: 2 + - uid: 27403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,64.5 + parent: 2 + - uid: 27404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,64.5 + parent: 2 + - uid: 27405 + components: + - type: Transform + pos: -23.5,91.5 + parent: 2 + - uid: 27407 + components: + - type: Transform + pos: -20.5,79.5 + parent: 2 + - uid: 27408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,61.5 + parent: 2 + - uid: 27409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,65.5 + parent: 2 + - uid: 28594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,51.5 + parent: 2 + - uid: 28719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,48.5 + parent: 2 + - uid: 28721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,54.5 + parent: 2 + - uid: 28724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,43.5 + parent: 2 + - uid: 28748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,61.5 + parent: 2 + - uid: 28749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 112.5,57.5 + parent: 2 + - uid: 29556 + components: + - type: Transform + pos: -112.5,36.5 + parent: 2 + - uid: 29557 + components: + - type: Transform + pos: -108.5,36.5 + parent: 2 + - uid: 29558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,30.5 + parent: 2 + - uid: 31557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,21.5 + parent: 2 + - uid: 31573 + components: + - type: Transform + pos: -113.5,50.5 + parent: 2 + - uid: 32425 + components: + - type: Transform + pos: -91.5,43.5 + parent: 2 + - uid: 32427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,44.5 + parent: 2 + - uid: 32428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,45.5 + parent: 2 + - uid: 32429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,48.5 + parent: 2 + - uid: 33047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,48.5 + parent: 2 + - uid: 35880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,52.5 + parent: 2 + - uid: 36631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,103.5 + parent: 2 + - uid: 36664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,81.5 + parent: 2 + - uid: 36665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,67.5 + parent: 2 + - uid: 36666 + components: + - type: Transform + pos: -41.5,60.5 + parent: 2 + - uid: 36667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,65.5 + parent: 2 + - uid: 36668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,62.5 + parent: 2 + - uid: 36669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,63.5 + parent: 2 +- proto: EmergencyMedipen + entities: + - uid: 26844 + components: + - type: Transform + pos: 30.641424,190.37975 + parent: 2 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 18931 + components: + - type: Transform + pos: -96.15495,162.55803 + parent: 2 + - uid: 18932 + components: + - type: Transform + pos: -96.41366,162.58052 + parent: 2 + - uid: 18933 + components: + - type: Transform + pos: -96.627365,162.71545 + parent: 2 + - uid: 20507 + components: + - type: Transform + pos: -85.59206,174.62697 + parent: 2 +- proto: EmergencyRollerBed + entities: + - uid: 15209 + components: + - type: Transform + pos: -12.670204,167.66791 + parent: 2 + - uid: 22827 + components: + - type: Transform + pos: -16.58038,197.69203 + parent: 2 + - uid: 23248 + components: + - type: Transform + pos: -15.56806,197.69203 + parent: 2 + - uid: 23367 + components: + - type: Transform + pos: -14.536156,197.67957 + parent: 2 + - uid: 23368 + components: + - type: Transform + pos: -13.5125885,197.70206 + parent: 2 +- proto: Emitter + entities: + - uid: 9161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -140.5,20.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: -140.5,32.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,30.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,22.5 + parent: 2 + - uid: 19241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,148.5 + parent: 2 + - uid: 27339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -140.5,18.5 + parent: 2 +- proto: EmptyFlashlightLantern + entities: + - uid: 22034 + components: + - type: Transform + pos: -132.41412,91.54821 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 20904 + components: + - type: Transform + pos: -70.5,177.5 + parent: 2 +- proto: ExplosivesSignMed + entities: + - uid: 31453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,29.5 + parent: 2 +- proto: ExtinguisherCabinet + entities: + - uid: 17736 + components: + - type: Transform + pos: -127.5,104.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 2523 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,78.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: -23.5,100.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,85.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,189.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: -33.5,106.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -79.5,92.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 73.5,45.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: 62.5,63.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 84.5,63.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,162.5 + parent: 2 + - uid: 10947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,73.5 + parent: 2 + - uid: 13417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,37.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,97.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,171.5 + parent: 2 + - uid: 18031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,201.5 + parent: 2 + - uid: 18262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,198.5 + parent: 2 + - uid: 24417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,45.5 + parent: 2 + - uid: 24485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,21.5 + parent: 2 + - uid: 25112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,60.5 + parent: 2 + - uid: 25113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,48.5 + parent: 2 + - uid: 25440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,80.5 + parent: 2 + - uid: 25444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,64.5 + parent: 2 + - uid: 25445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,71.5 + parent: 2 + - uid: 25447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,81.5 + parent: 2 + - uid: 25449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,88.5 + parent: 2 + - uid: 25450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,85.5 + parent: 2 + - uid: 25451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,88.5 + parent: 2 + - uid: 25490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,82.5 + parent: 2 + - uid: 25506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,67.5 + parent: 2 + - uid: 25535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,65.5 + parent: 2 + - uid: 25541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,72.5 + parent: 2 + - uid: 25557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,100.5 + parent: 2 + - uid: 25600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,92.5 + parent: 2 + - uid: 25636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,64.5 + parent: 2 + - uid: 25679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,76.5 + parent: 2 + - uid: 25680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,67.5 + parent: 2 + - uid: 25681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,80.5 + parent: 2 + - uid: 25682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,68.5 + parent: 2 + - uid: 26114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,68.5 + parent: 2 + - uid: 26115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,101.5 + parent: 2 + - uid: 26388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,41.5 + parent: 2 + - uid: 26390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.5,49.5 + parent: 2 + - uid: 26391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,56.5 + parent: 2 + - uid: 26392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 110.5,63.5 + parent: 2 + - uid: 26393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,181.5 + parent: 2 + - uid: 26394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,59.5 + parent: 2 + - uid: 26404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,182.5 + parent: 2 + - uid: 26405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,205.5 + parent: 2 + - uid: 26409 + components: + - type: Transform + pos: -6.5,168.5 + parent: 2 + - uid: 26412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,39.5 + parent: 2 + - uid: 26415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,154.5 + parent: 2 + - uid: 26421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,154.5 + parent: 2 + - uid: 26422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,171.5 + parent: 2 + - uid: 26423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,176.5 + parent: 2 + - uid: 26424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,178.5 + parent: 2 + - uid: 26429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,171.5 + parent: 2 + - uid: 26464 + components: + - type: Transform + pos: -82.5,48.5 + parent: 2 + - uid: 26465 + components: + - type: Transform + pos: -82.5,34.5 + parent: 2 + - uid: 26490 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 27100 + components: + - type: Transform + pos: -37.5,101.5 + parent: 2 + - uid: 37514 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 37537 + components: + - type: Transform + pos: -12.5,206.5 + parent: 2 + - uid: 37538 + components: + - type: Transform + pos: 15.5,193.5 + parent: 2 + - uid: 37539 + components: + - type: Transform + pos: -83.5,157.5 + parent: 2 + - uid: 37540 + components: + - type: Transform + pos: -93.5,149.5 + parent: 2 + - uid: 37543 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 37544 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 37546 + components: + - type: Transform + pos: 66.5,64.5 + parent: 2 + - uid: 37547 + components: + - type: Transform + pos: 55.5,60.5 + parent: 2 + - uid: 37549 + components: + - type: Transform + pos: 99.5,46.5 + parent: 2 + - uid: 37918 + components: + - type: Transform + pos: -72.5,92.5 + parent: 2 + - uid: 39234 + components: + - type: Transform + pos: -65.5,108.5 + parent: 2 + - uid: 43166 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 37842 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 26425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,153.5 + parent: 2 +- proto: EZNutrientChemistryBottle + entities: + - uid: 8429 + components: + - type: Transform + pos: 49.638954,26.522976 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 10481 + components: + - type: Transform + pos: -18.5,84.5 + parent: 2 + - type: FaxMachine + name: HoP Fax + - uid: 14107 + components: + - type: Transform + pos: -76.5,75.5 + parent: 2 + - type: FaxMachine + name: Lawyer + - uid: 18002 + components: + - type: Transform + pos: 84.5,67.5 + parent: 2 + - type: FaxMachine + name: HoS Fax + - uid: 18607 + components: + - type: Transform + pos: -17.5,203.5 + parent: 2 + - type: FaxMachine + name: CMO Fax + - uid: 18641 + components: + - type: Transform + pos: -41.5,107.5 + parent: 2 + - type: FaxMachine + name: Bridge + - uid: 18644 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - type: FaxMachine + name: QM Fax + - uid: 19952 + components: + - type: Transform + pos: -88.5,160.5 + parent: 2 + - type: FaxMachine + name: RD Fax + - uid: 27626 + components: + - type: Transform + pos: -115.5,56.5 + parent: 2 + - type: FaxMachine + name: CE Fax +- proto: FaxMachineCaptain + entities: + - uid: 4580 + components: + - type: Transform + pos: -34.5,101.5 + parent: 2 + - type: FaxMachine + name: Captain Fax +- proto: FenceMetalBroken + entities: + - uid: 26037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,82.5 + parent: 2 +- proto: FenceMetalCorner + entities: + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,1.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 11275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,46.5 + parent: 2 + - uid: 20177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,53.5 + parent: 2 + - uid: 21436 + components: + - type: Transform + pos: -136.5,42.5 + parent: 2 + - uid: 21781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,42.5 + parent: 2 + - uid: 22477 + components: + - type: Transform + pos: -123.5,81.5 + parent: 2 + - uid: 22955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,46.5 + parent: 2 + - uid: 30153 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 30510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,1.5 + parent: 2 + - uid: 32877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,6.5 + parent: 2 + - uid: 33193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,10.5 + parent: 2 +- proto: FenceMetalGate + entities: + - uid: 1288 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,39.5 + parent: 2 + - uid: 19943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,10.5 + parent: 2 + - uid: 21449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,16.5 + parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 446 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -133.5,53.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,53.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -137.5,46.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -137.5,42.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,45.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,188.5 + parent: 2 + - uid: 11276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -137.5,53.5 + parent: 2 + - uid: 11277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,43.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + pos: -130.5,40.5 + parent: 2 + - uid: 17132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,19.5 + parent: 2 + - uid: 17542 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 18907 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 19277 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 19336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,16.5 + parent: 2 + - uid: 19337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,16.5 + parent: 2 + - uid: 19569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,10.5 + parent: 2 + - uid: 19640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,10.5 + parent: 2 + - uid: 19658 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 19659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,10.5 + parent: 2 + - uid: 20350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,52.5 + parent: 2 + - uid: 21448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,16.5 + parent: 2 + - uid: 21604 + components: + - type: Transform + pos: -130.5,38.5 + parent: 2 + - uid: 22296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,1.5 + parent: 2 + - uid: 22922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,196.5 + parent: 2 + - uid: 22923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,196.5 + parent: 2 + - uid: 22963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,191.5 + parent: 2 + - uid: 23212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,53.5 + parent: 2 + - uid: 23215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,37.5 + parent: 2 + - uid: 23422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,200.5 + parent: 2 + - uid: 23424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,200.5 + parent: 2 + - uid: 23454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,2.5 + parent: 2 + - uid: 23468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,197.5 + parent: 2 + - uid: 23940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,38.5 + parent: 2 + - uid: 23989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -136.5,44.5 + parent: 2 + - uid: 25047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,3.5 + parent: 2 + - uid: 25231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,191.5 + parent: 2 + - uid: 25257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,4.5 + parent: 2 + - uid: 26040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,81.5 + parent: 2 + - uid: 26597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,5.5 + parent: 2 + - uid: 29340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -135.5,53.5 + parent: 2 + - uid: 29738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,19.5 + parent: 2 + - uid: 29739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,19.5 + parent: 2 + - uid: 30081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -134.5,53.5 + parent: 2 + - uid: 32270 + components: + - type: Transform + pos: -82.5,138.5 + parent: 2 + - uid: 32272 + components: + - type: Transform + pos: -82.5,137.5 + parent: 2 + - uid: 32878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,10.5 + parent: 2 + - uid: 33192 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 43346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - uid: 43358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,16.5 + parent: 2 + - uid: 43374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.5,16.5 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 4936 + components: + - type: Transform + pos: 97.5,53.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 10483 + components: + - type: Transform + pos: -15.5,84.5 + parent: 2 + - uid: 10697 + components: + - type: Transform + pos: -3.5,86.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: -78.5,74.5 + parent: 2 + - uid: 20377 + components: + - type: Transform + pos: -85.5,165.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 34590 + components: + - type: Transform + pos: -128.5,87.5 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 34589 + components: + - type: Transform + pos: -127.5,87.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 8595 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 11049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,92.5 + parent: 2 + - type: DeviceList + devices: + - 16548 + - 16549 + - 16550 + - 3656 + - 3934 + - 4165 + - 10722 + - uid: 11550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,92.5 + parent: 2 + - type: DeviceList + devices: + - 16554 + - 16555 + - 16556 + - 36876 + - 10353 + - 10110 + - 10085 + - 11651 + - 11650 + - 11649 + - 11654 + - 11655 + - 11656 + - 36479 + - 36480 + - 36481 + - 36871 + - 16548 + - 16549 + - 16550 + - uid: 11639 + components: + - type: Transform + pos: -5.5,168.5 + parent: 2 + - type: DeviceList + devices: + - 4326 + - 36372 + - 36370 + - 36401 + - uid: 15815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,174.5 + parent: 2 + - type: DeviceList + devices: + - 21018 + - 21017 + - 21011 + - 21010 + - 21009 + - 21020 + - 21024 + - 21021 + - 21022 + - uid: 17164 + components: + - type: Transform + pos: -68.5,76.5 + parent: 2 + - type: DeviceList + devices: + - 20815 + - 36941 + - 16560 + - 16558 + - 16557 + - 36940 + - 19718 + - 19717 + - 18957 + - uid: 17460 + components: + - type: Transform + pos: -113.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 19243 + - 19516 + - uid: 17597 + components: + - type: Transform + pos: -106.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 19101 + - 23260 + - 27980 + - 29674 + - uid: 17600 + components: + - type: Transform + pos: -100.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 19515 + - 19514 + - 28923 + - 28924 + - 19512 + - 19508 + - 19509 + - 26475 + - 29675 + - 5999 + - 29674 + - 27980 + - 26476 + - uid: 17602 + components: + - type: Transform + pos: -71.5,68.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + pos: -94.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 19508 + - 19509 + - 26474 + - 29679 + - uid: 17734 + components: + - type: Transform + pos: -87.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 26473 + - 26476 + - 29675 + - 26475 + - 26474 + - 29679 + - 28097 + - 28099 + - 28100 + - 29688 + - 29687 + - 29686 + - 29681 + - 29683 + - 29684 + - uid: 17739 + components: + - type: Transform + pos: -81.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 29681 + - 29683 + - 29684 + - 29686 + - 29687 + - 29688 + - uid: 17870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,92.5 + parent: 2 + - type: DeviceList + devices: + - 20231 + - 24213 + - 17535 + - 17536 + - 16556 + - 16555 + - 16554 + - 16557 + - 16558 + - 16560 + - 21078 + - 24210 + - 24211 + - uid: 17921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,81.5 + parent: 2 + - type: DeviceList + devices: + - 24212 + - 24211 + - 24210 + - 21078 + - uid: 18095 + components: + - type: Transform + pos: 68.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 6722 + - 6723 + - 6724 + - 3896 + - 3894 + - 271 + - 6721 + - 6715 + - 4469 + - 4463 + - 4464 + - 4461 + - 4462 + - 7042 + - uid: 18116 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 6722 + - 6723 + - 6724 + - uid: 18433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 5061 + - 8636 + - 4439 + - 11656 + - 11655 + - 11654 + - 11649 + - 11650 + - 11651 + - 11577 + - 11567 + - 11562 + - 4597 + - 1632 + - 1633 + - uid: 18444 + components: + - type: Transform + pos: 85.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 6715 + - 7042 + - 6721 + - 5106 + - 5107 + - 5108 + - 5109 + - uid: 18448 + components: + - type: Transform + pos: 91.5,54.5 + parent: 2 + - type: DeviceList + devices: + - 5094 + - 5095 + - 5096 + - 5100 + - 5101 + - 5102 + - 6850 + - 5106 + - 5107 + - 5108 + - 5109 + - uid: 18458 + components: + - type: Transform + pos: 103.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 6841 + - 6840 + - 6839 + - 6842 + - 5102 + - 5101 + - 5100 + - uid: 18475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,105.5 + parent: 2 + - type: DeviceList + devices: + - 36885 + - 36880 + - 36879 + - 36878 + - uid: 18566 + components: + - type: Transform + pos: 101.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 5094 + - 5095 + - 5096 + - 6846 + - 6847 + - 6848 + - 6849 + - uid: 18593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,105.5 + parent: 2 + - type: DeviceList + devices: + - 36885 + - uid: 19523 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 20345 + - 20347 + - 20348 + - 20349 + - 30093 + - 20056 + - 20076 + - 20174 + - 20055 + - 20098 + - 4225 + - 11991 + - 6749 + - uid: 21193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,101.5 + parent: 2 + - type: DeviceList + devices: + - 22061 + - 36880 + - 36879 + - 36878 + - 36876 + - uid: 22726 + components: + - type: Transform + pos: 67.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 20345 + - 20347 + - 20348 + - 20349 + - 30093 + - 20056 + - 20076 + - 20174 + - 20055 + - 20098 + - 4223 + - 4224 + - uid: 23152 + components: + - type: Transform + pos: 72.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 4458 + - 10998 + - 4812 + - 4811 + - 4807 + - 3576 + - 11991 + - uid: 23153 + components: + - type: Transform + pos: 61.5,63.5 + parent: 2 + - uid: 25318 + components: + - type: Transform + pos: 74.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 4812 + - 4811 + - 4807 + - 6827 + - 6824 + - uid: 26540 + components: + - type: Transform + pos: 83.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 6827 + - 4815 + - 4817 + - uid: 26547 + components: + - type: Transform + pos: 51.5,63.5 + parent: 2 + - type: DeviceList + devices: + - 6873 + - 6874 + - 3348 + - 6877 + - 6824 + - uid: 26553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,76.5 + parent: 2 + - type: DeviceList + devices: + - 10722 + - 3656 + - 3934 + - 4165 + - 13118 + - 13117 + - 13116 + - 10715 + - 10725 + - 10724 + - 27256 + - 26867 + - 10766 + - 10778 + - 36899 + - uid: 26855 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 6873 + - 6874 + - 3348 + - 5192 + - uid: 27313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 13118 + - 13117 + - 13116 + - 36915 + - 36916 + - 12941 + - 12942 + - 12943 + - 12944 + - 12945 + - 12939 + - 36917 + - 36912 + - uid: 27498 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 864 + - 863 + - 53 + - 4648 + - 860 + - 2470 + - 11305 + - 5484 + - 962 + - 961 + - 960 + - 866 + - uid: 27522 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 860 + - 4648 + - 53 + - 863 + - 864 + - 26492 + - 26494 + - 34801 + - 958 + - uid: 27525 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 960 + - 961 + - 962 + - 958 + - 955 + - 956 + - 959 + - 1607 + - 963 + - 1606 + - 1713 + - 1712 + - 1711 + - 1710 + - 1709 + - 1708 + - 1707 + - 1906 + - 1907 + - 1908 + - uid: 28320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 35949 + - 32435 + - uid: 28322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,78.5 + parent: 2 + - type: DeviceList + devices: + - 11072 + - 10727 + - 10715 + - 10725 + - 10724 + - 10718 + - 10719 + - 10720 + - 10764 + - 2986 + - uid: 28324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 11605 + - 34142 + - 35935 + - 17498 + - 16679 + - 11608 + - 11706 + - 32435 + - 35944 + - 14851 + - 35945 + - 11753 + - uid: 28332 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 36309 + - 1713 + - 1712 + - uid: 28377 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 1606 + - 963 + - 1607 + - 956 + - 955 + - 34801 + - 964 + - uid: 28378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 34142 + - 11605 + - 35935 + - 10766 + - 12951 + - 36912 + - uid: 28447 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 1707 + - 1708 + - 1709 + - 1710 + - 1711 + - 1706 + - 1705 + - 1704 + - 1703 + - 1702 + - 1903 + - 1904 + - 1905 + - 1900 + - 1901 + - 1902 + - 1715 + - 1717 + - uid: 28450 + components: + - type: Transform + pos: -2.5,83.5 + parent: 2 + - type: DeviceList + devices: + - 2986 + - 10723 + - uid: 28520 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 1715 + - 1717 + - uid: 29325 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 1902 + - 1901 + - 1900 + - 1903 + - 1904 + - 1905 + - 1906 + - 1907 + - 1908 + - 866 + - uid: 29710 + components: + - type: Transform + pos: -18.5,204.5 + parent: 2 + - type: DeviceList + devices: + - 34428 + - 34429 + - uid: 30888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,167.5 + parent: 2 + - type: DeviceList + devices: + - 36408 + - 36409 + - 36410 + - 36411 + - 18682 + - 20997 + - 22405 + - 21003 + - 21004 + - 21005 + - uid: 30898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,161.5 + parent: 2 + - type: DeviceList + devices: + - 22036 + - 22037 + - 22038 + - 1295 + - 14245 + - 14168 + - 19475 + - 1298 + - 14250 + - 15084 + - 36411 + - 36410 + - 36409 + - 36408 + - 36412 + - uid: 31106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,179.5 + parent: 2 + - type: DeviceList + devices: + - 20997 + - 22405 + - uid: 32952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,174.5 + parent: 2 + - type: DeviceList + devices: + - 21009 + - 21010 + - 21011 + - 18917 + - 18947 + - 17800 + - 21005 + - 21004 + - 21003 + - 21000 + - 21001 + - 21002 + - uid: 33091 + components: + - type: Transform + pos: -83.5,176.5 + parent: 2 + - type: DeviceList + devices: + - 21000 + - 21001 + - 21002 + - uid: 33095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,180.5 + parent: 2 + - type: DeviceList + devices: + - 21018 + - 21017 + - uid: 33097 + components: + - type: Transform + pos: -84.5,157.5 + parent: 2 + - type: DeviceList + devices: + - 21028 + - 21029 + - uid: 33103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,165.5 + parent: 2 + - type: DeviceList + devices: + - 36429 + - 36428 + - 21022 + - 21021 + - 21029 + - uid: 33104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,154.5 + parent: 2 + - type: DeviceList + devices: + - 1295 + - 14245 + - uid: 37359 + components: + - type: Transform + pos: -108.5,65.5 + parent: 2 + - type: DeviceList + devices: + - 19011 + - 19008 + - 20771 + - 20960 +- proto: FireAxeCabinetFilled + entities: + - uid: 12440 + components: + - type: Transform + pos: -107.5,29.5 + parent: 2 + - uid: 37773 + components: + - type: Transform + pos: -38.5,102.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 37545 + components: + - type: Transform + pos: -103.68455,40.698982 + parent: 2 +- proto: Firelock + entities: + - uid: 53 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,33.5 + parent: 2 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,95.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,99.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: -67.5,153.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: -77.5,157.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,5.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: 51.5,60.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: 79.5,42.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: 71.5,56.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: -22.5,78.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,34.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,35.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: -23.5,78.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,54.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -24.5,78.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: 63.5,54.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: 63.5,48.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,170.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 76.5,56.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 77.5,56.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: 75.5,57.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 71.5,45.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 71.5,42.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,1.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: 67.5,58.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: 70.5,64.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 71.5,64.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: 72.5,64.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: 82.5,64.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: 86.5,62.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,48.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,61.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,5.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,38.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,51.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: 78.5,38.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: 64.5,38.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: 64.5,40.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: 64.5,66.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 78.5,66.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: 94.5,56.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: 95.5,56.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: 96.5,56.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 97.5,56.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: 94.5,50.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: 95.5,50.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: 96.5,50.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: 97.5,50.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + pos: 91.5,53.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: 51.5,62.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: 51.5,61.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + pos: 53.5,58.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,161.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,161.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,31.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,27.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: -67.5,152.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: -13.5,73.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,80.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,76.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,76.5 + parent: 2 + - uid: 10720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,76.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,82.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,87.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,75.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,74.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,71.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + pos: -15.5,72.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,58.5 + parent: 2 + - uid: 11072 + components: + - type: Transform + pos: -4.5,77.5 + parent: 2 + - uid: 11305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,5.5 + parent: 2 + - uid: 11649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,81.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,81.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,81.5 + parent: 2 + - uid: 11654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,81.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,81.5 + parent: 2 + - uid: 11656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,81.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,42.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,72.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,72.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,72.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: -72.5,150.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: -67.5,151.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + pos: -77.5,158.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + pos: 67.5,57.5 + parent: 2 + - uid: 14896 + components: + - type: Transform + pos: -69.5,72.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + pos: -77.5,159.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: -25.5,89.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: -25.5,90.5 + parent: 2 + - uid: 16550 + components: + - type: Transform + pos: -25.5,91.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: -55.5,91.5 + parent: 2 + - uid: 16555 + components: + - type: Transform + pos: -55.5,90.5 + parent: 2 + - uid: 16556 + components: + - type: Transform + pos: -55.5,89.5 + parent: 2 + - uid: 16557 + components: + - type: Transform + pos: -56.5,77.5 + parent: 2 + - uid: 16558 + components: + - type: Transform + pos: -57.5,77.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + pos: -58.5,77.5 + parent: 2 + - uid: 17535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,108.5 + parent: 2 + - uid: 17536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,108.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + pos: -80.5,166.5 + parent: 2 + - uid: 18086 + components: + - type: Transform + pos: -90.5,35.5 + parent: 2 + - uid: 18682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,172.5 + parent: 2 + - uid: 18728 + components: + - type: Transform + pos: -8.5,172.5 + parent: 2 + - uid: 18917 + components: + - type: Transform + pos: -79.5,166.5 + parent: 2 + - uid: 18947 + components: + - type: Transform + pos: -78.5,166.5 + parent: 2 + - uid: 18957 + components: + - type: Transform + pos: -60.5,72.5 + parent: 2 + - uid: 19008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,61.5 + parent: 2 + - uid: 19011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,61.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: -111.5,47.5 + parent: 2 + - uid: 19475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,156.5 + parent: 2 + - uid: 19508 + components: + - type: Transform + pos: -96.5,47.5 + parent: 2 + - uid: 19509 + components: + - type: Transform + pos: -96.5,46.5 + parent: 2 + - uid: 19512 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 19513 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 19514 + components: + - type: Transform + pos: -104.5,44.5 + parent: 2 + - uid: 19515 + components: + - type: Transform + pos: -103.5,44.5 + parent: 2 + - uid: 19516 + components: + - type: Transform + pos: -111.5,46.5 + parent: 2 + - uid: 19607 + components: + - type: Transform + pos: -65.5,70.5 + parent: 2 + - uid: 19638 + components: + - type: Transform + pos: 47.5,59.5 + parent: 2 + - uid: 19717 + components: + - type: Transform + pos: -59.5,72.5 + parent: 2 + - uid: 19718 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 + - uid: 20231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,89.5 + parent: 2 + - uid: 20771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,65.5 + parent: 2 + - uid: 20815 + components: + - type: Transform + pos: -69.5,76.5 + parent: 2 + - uid: 20960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,65.5 + parent: 2 + - uid: 20997 + components: + - type: Transform + pos: -70.5,173.5 + parent: 2 + - uid: 21000 + components: + - type: Transform + pos: -78.5,176.5 + parent: 2 + - uid: 21001 + components: + - type: Transform + pos: -79.5,176.5 + parent: 2 + - uid: 21002 + components: + - type: Transform + pos: -80.5,176.5 + parent: 2 + - uid: 21003 + components: + - type: Transform + pos: -74.5,172.5 + parent: 2 + - uid: 21004 + components: + - type: Transform + pos: -74.5,171.5 + parent: 2 + - uid: 21005 + components: + - type: Transform + pos: -74.5,170.5 + parent: 2 + - uid: 21009 + components: + - type: Transform + pos: -84.5,170.5 + parent: 2 + - uid: 21010 + components: + - type: Transform + pos: -84.5,171.5 + parent: 2 + - uid: 21011 + components: + - type: Transform + pos: -84.5,172.5 + parent: 2 + - uid: 21017 + components: + - type: Transform + pos: -87.5,176.5 + parent: 2 + - uid: 21018 + components: + - type: Transform + pos: -88.5,176.5 + parent: 2 + - uid: 21020 + components: + - type: Transform + pos: -92.5,171.5 + parent: 2 + - uid: 21021 + components: + - type: Transform + pos: -88.5,166.5 + parent: 2 + - uid: 21022 + components: + - type: Transform + pos: -87.5,166.5 + parent: 2 + - uid: 21024 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 + - uid: 21028 + components: + - type: Transform + pos: -82.5,159.5 + parent: 2 + - uid: 21029 + components: + - type: Transform + pos: -91.5,161.5 + parent: 2 + - uid: 21030 + components: + - type: Transform + pos: -80.5,156.5 + parent: 2 + - uid: 21031 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - uid: 21032 + components: + - type: Transform + pos: -97.5,154.5 + parent: 2 + - uid: 21077 + components: + - type: Transform + pos: -52.5,66.5 + parent: 2 + - uid: 21078 + components: + - type: Transform + pos: -59.5,81.5 + parent: 2 + - uid: 22036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,158.5 + parent: 2 + - uid: 22037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,157.5 + parent: 2 + - uid: 22038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,156.5 + parent: 2 + - uid: 22061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,99.5 + parent: 2 + - uid: 22370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,161.5 + parent: 2 + - uid: 22405 + components: + - type: Transform + pos: -71.5,173.5 + parent: 2 + - uid: 22556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,187.5 + parent: 2 + - uid: 24210 + components: + - type: Transform + pos: -59.5,82.5 + parent: 2 + - uid: 24211 + components: + - type: Transform + pos: -59.5,83.5 + parent: 2 + - uid: 24212 + components: + - type: Transform + pos: -67.5,87.5 + parent: 2 + - uid: 24213 + components: + - type: Transform + pos: -69.5,95.5 + parent: 2 + - uid: 25297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,174.5 + parent: 2 + - uid: 26473 + components: + - type: Transform + pos: -94.5,38.5 + parent: 2 + - uid: 26474 + components: + - type: Transform + pos: -93.5,44.5 + parent: 2 + - uid: 26475 + components: + - type: Transform + pos: -95.5,42.5 + parent: 2 + - uid: 26476 + components: + - type: Transform + pos: -95.5,40.5 + parent: 2 + - uid: 26492 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 26494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 + - uid: 27980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,38.5 + parent: 2 + - uid: 28097 + components: + - type: Transform + pos: -87.5,42.5 + parent: 2 + - uid: 28099 + components: + - type: Transform + pos: -87.5,41.5 + parent: 2 + - uid: 28100 + components: + - type: Transform + pos: -87.5,40.5 + parent: 2 + - uid: 28923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,46.5 + parent: 2 + - uid: 28924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,47.5 + parent: 2 + - uid: 29674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,38.5 + parent: 2 + - uid: 29675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 29679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,44.5 + parent: 2 + - uid: 29681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,37.5 + parent: 2 + - uid: 29683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,36.5 + parent: 2 + - uid: 29684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,35.5 + parent: 2 + - uid: 29686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,45.5 + parent: 2 + - uid: 29687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,46.5 + parent: 2 + - uid: 29688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,47.5 + parent: 2 + - uid: 34417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,185.5 + parent: 2 + - uid: 34418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,185.5 + parent: 2 + - uid: 34419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,180.5 + parent: 2 + - uid: 34422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,198.5 + parent: 2 + - uid: 34423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,198.5 + parent: 2 + - uid: 34427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,201.5 + parent: 2 + - uid: 34428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,204.5 + parent: 2 + - uid: 34429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,205.5 + parent: 2 + - uid: 34430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,203.5 + parent: 2 + - uid: 34431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,204.5 + parent: 2 + - uid: 34444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,192.5 + parent: 2 + - uid: 34445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,191.5 + parent: 2 + - uid: 34446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,192.5 + parent: 2 + - uid: 34447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,191.5 + parent: 2 + - uid: 34455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,209.5 + parent: 2 + - uid: 34801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 2 + - uid: 36309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 2 + - uid: 36327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,192.5 + parent: 2 + - uid: 36328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,193.5 + parent: 2 + - uid: 36329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,194.5 + parent: 2 + - uid: 36330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,195.5 + parent: 2 + - uid: 36331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,195.5 + parent: 2 + - uid: 36332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,195.5 + parent: 2 + - uid: 36333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,195.5 + parent: 2 + - uid: 36334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,188.5 + parent: 2 + - uid: 36340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,196.5 + parent: 2 + - uid: 36341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,197.5 + parent: 2 + - uid: 36370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,168.5 + parent: 2 + - uid: 36372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,166.5 + parent: 2 + - uid: 36401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,168.5 + parent: 2 + - uid: 36408 + components: + - type: Transform + pos: -69.5,166.5 + parent: 2 + - uid: 36409 + components: + - type: Transform + pos: -70.5,166.5 + parent: 2 + - uid: 36410 + components: + - type: Transform + pos: -71.5,166.5 + parent: 2 + - uid: 36411 + components: + - type: Transform + pos: -72.5,166.5 + parent: 2 + - uid: 36412 + components: + - type: Transform + pos: -67.5,162.5 + parent: 2 + - uid: 36428 + components: + - type: Transform + pos: -81.5,163.5 + parent: 2 + - uid: 36429 + components: + - type: Transform + pos: -81.5,164.5 + parent: 2 + - uid: 36871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,88.5 + parent: 2 + - uid: 36872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,88.5 + parent: 2 + - uid: 36876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,93.5 + parent: 2 + - uid: 36878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,102.5 + parent: 2 + - uid: 36879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,102.5 + parent: 2 + - uid: 36880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,102.5 + parent: 2 + - uid: 36885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,104.5 + parent: 2 + - uid: 36899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,76.5 + parent: 2 + - uid: 36912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,66.5 + parent: 2 + - uid: 36915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,69.5 + parent: 2 + - uid: 36916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,66.5 + parent: 2 + - uid: 36917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,64.5 + parent: 2 + - uid: 36921 + components: + - type: Transform + pos: -34.5,62.5 + parent: 2 + - uid: 36934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,62.5 + parent: 2 + - uid: 36936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,69.5 + parent: 2 + - uid: 36940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,75.5 + parent: 2 + - uid: 36941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,74.5 + parent: 2 + - uid: 38478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,189.5 + parent: 2 + - uid: 42971 + components: + - type: Transform + pos: 56.5,51.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 1632 + components: + - type: Transform + pos: -40.5,71.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: -39.5,71.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,78.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: -41.5,71.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,76.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,49.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,48.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,47.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,59.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,58.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,57.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,77.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,84.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,85.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,86.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,76.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,77.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,78.5 + parent: 2 + - uid: 11753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,63.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,64.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,64.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,64.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,64.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,64.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,64.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,63.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,61.5 + parent: 2 + - uid: 26867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,78.5 + parent: 2 + - uid: 27256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,78.5 + parent: 2 + - uid: 35702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,63.5 + parent: 2 + - uid: 35944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,60.5 + parent: 2 + - uid: 35945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,62.5 + parent: 2 + - uid: 36479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,84.5 + parent: 2 + - uid: 36480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,85.5 + parent: 2 + - uid: 36481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,86.5 + parent: 2 +- proto: FirelockElectronics + entities: + - uid: 28001 + components: + - type: Transform + pos: -95.33828,48.634567 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 5106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,41.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,41.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,41.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,41.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,46.5 + parent: 2 + - uid: 11605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,67.5 + parent: 2 + - uid: 11608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,70.5 + parent: 2 + - uid: 11706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,70.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 16679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,70.5 + parent: 2 + - uid: 17498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,70.5 + parent: 2 + - uid: 17533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,164.5 + parent: 2 + - uid: 19101 + components: + - type: Transform + pos: -104.5,29.5 + parent: 2 + - uid: 20055 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 20056 + components: + - type: Transform + pos: 74.5,50.5 + parent: 2 + - uid: 20076 + components: + - type: Transform + pos: 75.5,50.5 + parent: 2 + - uid: 20098 + components: + - type: Transform + pos: 76.5,50.5 + parent: 2 + - uid: 20174 + components: + - type: Transform + pos: 78.5,50.5 + parent: 2 + - uid: 20345 + components: + - type: Transform + pos: 68.5,50.5 + parent: 2 + - uid: 20346 + components: + - type: Transform + pos: 68.5,50.5 + parent: 2 + - uid: 20347 + components: + - type: Transform + pos: 67.5,50.5 + parent: 2 + - uid: 20348 + components: + - type: Transform + pos: 66.5,50.5 + parent: 2 + - uid: 20349 + components: + - type: Transform + pos: 65.5,50.5 + parent: 2 + - uid: 23219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,165.5 + parent: 2 + - uid: 23260 + components: + - type: Transform + pos: -103.5,29.5 + parent: 2 + - uid: 25777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,170.5 + parent: 2 + - uid: 30093 + components: + - type: Transform + pos: 64.5,50.5 + parent: 2 + - uid: 32435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,65.5 + parent: 2 + - uid: 34142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,68.5 + parent: 2 + - uid: 35935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,66.5 + parent: 2 + - uid: 35949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,70.5 + parent: 2 + - uid: 39423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,169.5 + parent: 2 + - uid: 39424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,168.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 7286 + components: + - type: Transform + pos: -36.5,101.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: -33.5,60.5 + parent: 2 + - uid: 11074 + components: + - type: Transform + pos: -1.5,78.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: -72.5,106.5 + parent: 2 + - uid: 15614 + components: + - type: Transform + pos: -73.5,96.5 + parent: 2 + - uid: 22608 + components: + - type: Transform + pos: -5.5,181.5 + parent: 2 + - uid: 23061 + components: + - type: Transform + pos: -17.5,180.5 + parent: 2 + - uid: 23301 + components: + - type: Transform + pos: -21.5,206.5 + parent: 2 + - uid: 36569 + components: + - type: Transform + pos: -24.5,101.5 + parent: 2 +- proto: Flare + entities: + - uid: 28703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.7247,48.684387 + parent: 2 + - uid: 28704 + components: + - type: Transform + pos: -120.17733,68.41948 + parent: 2 + - uid: 29722 + components: + - type: Transform + pos: -111.27843,54.41765 + parent: 2 +- proto: Flash + entities: + - uid: 12236 + components: + - type: Transform + pos: -39.678185,79.58587 + parent: 2 + - uid: 13585 + components: + - type: Transform + pos: -43.23664,109.5852 + parent: 2 + - uid: 22130 + components: + - type: Transform + pos: -75.31403,153.65799 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 720 + components: + - type: Transform + pos: -50.62579,4.651352 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: -29.706877,-5.368514 + parent: 2 + - uid: 13657 + components: + - type: Transform + pos: -132.44693,46.649757 + parent: 2 + - uid: 17160 + components: + - type: Transform + pos: -88.62172,79.75521 + parent: 2 + - uid: 24103 + components: + - type: Transform + pos: 5.370529,205.52606 + parent: 2 + - uid: 24104 + components: + - type: Transform + pos: 5.6067367,205.62726 + parent: 2 + - uid: 24190 + components: + - type: Transform + pos: 23.567406,185.46478 + parent: 2 + - uid: 28011 + components: + - type: Transform + pos: -94.449684,48.57584 + parent: 2 + - uid: 34518 + components: + - type: Transform + pos: -31.63147,182.77422 + parent: 2 +- proto: FlashlightSeclite + entities: + - uid: 4739 + components: + - type: Transform + pos: 85.53219,58.708096 + parent: 2 +- proto: Floodlight + entities: + - uid: 24806 + components: + - type: Transform + pos: -101.45498,20.518616 + parent: 2 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 24807 +- proto: FloodlightBroken + entities: + - uid: 1097 + components: + - type: Transform + pos: -34.621662,-22.596233 + parent: 2 + - uid: 15778 + components: + - type: Transform + pos: -42.98078,53.197773 + parent: 2 +- proto: FloorDrain + entities: + - uid: 13180 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 15510 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 16861 + components: + - type: Transform + pos: -1.5,81.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 22813 + components: + - type: Transform + pos: -22.5,192.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 36488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,208.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 36489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,208.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 38416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,39.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 4163 + components: + - type: Transform + pos: -113.5,65.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: -117.5,61.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: -106.5,41.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: -112.5,52.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: -107.5,50.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -111.5,53.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -112.5,53.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: -110.5,52.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: -116.5,61.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: -105.5,40.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: -109.5,60.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: -114.5,62.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: -113.5,62.5 + parent: 2 + - uid: 11207 + components: + - type: Transform + pos: -110.5,60.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: -112.5,60.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: -113.5,61.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: -115.5,61.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + pos: -112.5,61.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + pos: -114.5,61.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + pos: -111.5,60.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + pos: -104.5,39.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + pos: -115.5,59.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + pos: -117.5,59.5 + parent: 2 + - uid: 18138 + components: + - type: Transform + pos: -118.5,61.5 + parent: 2 + - uid: 19034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.5,42.5 + parent: 2 + - uid: 19044 + components: + - type: Transform + pos: -117.5,60.5 + parent: 2 + - uid: 21243 + components: + - type: Transform + pos: -116.5,59.5 + parent: 2 + - uid: 21361 + components: + - type: Transform + pos: -133.5,55.5 + parent: 2 + - uid: 21362 + components: + - type: Transform + pos: -133.5,56.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + pos: -132.5,55.5 + parent: 2 + - uid: 21364 + components: + - type: Transform + pos: -132.5,56.5 + parent: 2 + - uid: 21365 + components: + - type: Transform + pos: -133.5,57.5 + parent: 2 + - uid: 21366 + components: + - type: Transform + pos: -134.5,56.5 + parent: 2 + - uid: 21367 + components: + - type: Transform + pos: -134.5,57.5 + parent: 2 + - uid: 21368 + components: + - type: Transform + pos: -131.5,59.5 + parent: 2 + - uid: 21465 + components: + - type: Transform + pos: -121.5,15.5 + parent: 2 + - uid: 21815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -129.5,36.5 + parent: 2 + - uid: 22238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,22.5 + parent: 2 + - uid: 22567 + components: + - type: Transform + pos: -130.5,15.5 + parent: 2 + - uid: 25193 + components: + - type: Transform + pos: -116.5,60.5 + parent: 2 + - uid: 27283 + components: + - type: Transform + pos: -113.5,60.5 + parent: 2 + - uid: 27285 + components: + - type: Transform + pos: -115.5,58.5 + parent: 2 + - uid: 27323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,37.5 + parent: 2 + - uid: 27324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,36.5 + parent: 2 + - uid: 27700 + components: + - type: Transform + pos: -115.5,68.5 + parent: 2 + - uid: 28290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,33.5 + parent: 2 + - uid: 28338 + components: + - type: Transform + pos: -112.5,63.5 + parent: 2 + - uid: 28382 + components: + - type: Transform + pos: -108.5,56.5 + parent: 2 + - uid: 28383 + components: + - type: Transform + pos: -109.5,58.5 + parent: 2 + - uid: 28384 + components: + - type: Transform + pos: -109.5,57.5 + parent: 2 + - uid: 28385 + components: + - type: Transform + pos: -109.5,56.5 + parent: 2 + - uid: 28386 + components: + - type: Transform + pos: -110.5,58.5 + parent: 2 + - uid: 28387 + components: + - type: Transform + pos: -110.5,57.5 + parent: 2 + - uid: 28388 + components: + - type: Transform + pos: -110.5,56.5 + parent: 2 + - uid: 28390 + components: + - type: Transform + pos: -108.5,55.5 + parent: 2 + - uid: 28391 + components: + - type: Transform + pos: -109.5,55.5 + parent: 2 + - uid: 28392 + components: + - type: Transform + pos: -110.5,55.5 + parent: 2 + - uid: 28393 + components: + - type: Transform + pos: -111.5,55.5 + parent: 2 + - uid: 28396 + components: + - type: Transform + pos: -111.5,56.5 + parent: 2 + - uid: 28397 + components: + - type: Transform + pos: -111.5,57.5 + parent: 2 + - uid: 28398 + components: + - type: Transform + pos: -111.5,58.5 + parent: 2 + - uid: 28399 + components: + - type: Transform + pos: -112.5,56.5 + parent: 2 + - uid: 28400 + components: + - type: Transform + pos: -112.5,57.5 + parent: 2 + - uid: 28401 + components: + - type: Transform + pos: -112.5,58.5 + parent: 2 + - uid: 28405 + components: + - type: Transform + pos: -113.5,58.5 + parent: 2 + - uid: 28406 + components: + - type: Transform + pos: -113.5,59.5 + parent: 2 + - uid: 28407 + components: + - type: Transform + pos: -114.5,58.5 + parent: 2 + - uid: 28408 + components: + - type: Transform + pos: -114.5,59.5 + parent: 2 + - uid: 28411 + components: + - type: Transform + pos: -115.5,60.5 + parent: 2 + - uid: 28413 + components: + - type: Transform + pos: -114.5,60.5 + parent: 2 + - uid: 28416 + components: + - type: Transform + pos: -112.5,59.5 + parent: 2 + - uid: 28417 + components: + - type: Transform + pos: -111.5,59.5 + parent: 2 + - uid: 28419 + components: + - type: Transform + pos: -110.5,59.5 + parent: 2 + - uid: 28435 + components: + - type: Transform + pos: -118.5,58.5 + parent: 2 + - uid: 28437 + components: + - type: Transform + pos: -117.5,58.5 + parent: 2 + - uid: 28451 + components: + - type: Transform + pos: -111.5,52.5 + parent: 2 + - uid: 28453 + components: + - type: Transform + pos: -111.5,51.5 + parent: 2 + - uid: 28454 + components: + - type: Transform + pos: -107.5,51.5 + parent: 2 + - uid: 28455 + components: + - type: Transform + pos: -107.5,52.5 + parent: 2 + - uid: 28457 + components: + - type: Transform + pos: -108.5,51.5 + parent: 2 + - uid: 28458 + components: + - type: Transform + pos: -108.5,52.5 + parent: 2 + - uid: 28460 + components: + - type: Transform + pos: -107.5,53.5 + parent: 2 + - uid: 28461 + components: + - type: Transform + pos: -106.5,53.5 + parent: 2 + - uid: 28462 + components: + - type: Transform + pos: -105.5,53.5 + parent: 2 + - uid: 28463 + components: + - type: Transform + pos: -105.5,54.5 + parent: 2 + - uid: 28464 + components: + - type: Transform + pos: -106.5,54.5 + parent: 2 + - uid: 28465 + components: + - type: Transform + pos: -104.5,53.5 + parent: 2 + - uid: 28466 + components: + - type: Transform + pos: -103.5,54.5 + parent: 2 + - uid: 28467 + components: + - type: Transform + pos: -104.5,54.5 + parent: 2 + - uid: 28468 + components: + - type: Transform + pos: -104.5,55.5 + parent: 2 + - uid: 28469 + components: + - type: Transform + pos: -105.5,55.5 + parent: 2 + - uid: 28470 + components: + - type: Transform + pos: -107.5,54.5 + parent: 2 + - uid: 28471 + components: + - type: Transform + pos: -106.5,55.5 + parent: 2 + - uid: 28530 + components: + - type: Transform + pos: -107.5,38.5 + parent: 2 + - uid: 28533 + components: + - type: Transform + pos: -108.5,38.5 + parent: 2 + - uid: 28537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,40.5 + parent: 2 + - uid: 28554 + components: + - type: Transform + pos: -107.5,39.5 + parent: 2 + - uid: 28555 + components: + - type: Transform + pos: -107.5,40.5 + parent: 2 + - uid: 28556 + components: + - type: Transform + pos: -106.5,39.5 + parent: 2 + - uid: 28557 + components: + - type: Transform + pos: -106.5,40.5 + parent: 2 + - uid: 28558 + components: + - type: Transform + pos: -107.5,41.5 + parent: 2 + - uid: 28559 + components: + - type: Transform + pos: -108.5,41.5 + parent: 2 + - uid: 28560 + components: + - type: Transform + pos: -108.5,40.5 + parent: 2 + - uid: 28561 + components: + - type: Transform + pos: -109.5,41.5 + parent: 2 + - uid: 28562 + components: + - type: Transform + pos: -109.5,40.5 + parent: 2 + - uid: 28563 + components: + - type: Transform + pos: -109.5,39.5 + parent: 2 + - uid: 28564 + components: + - type: Transform + pos: -109.5,38.5 + parent: 2 + - uid: 28565 + components: + - type: Transform + pos: -110.5,39.5 + parent: 2 + - uid: 28566 + components: + - type: Transform + pos: -110.5,40.5 + parent: 2 + - uid: 28567 + components: + - type: Transform + pos: -109.5,42.5 + parent: 2 + - uid: 28568 + components: + - type: Transform + pos: -109.5,43.5 + parent: 2 + - uid: 28569 + components: + - type: Transform + pos: -109.5,44.5 + parent: 2 + - uid: 28570 + components: + - type: Transform + pos: -108.5,42.5 + parent: 2 + - uid: 28571 + components: + - type: Transform + pos: -108.5,43.5 + parent: 2 + - uid: 28572 + components: + - type: Transform + pos: -108.5,44.5 + parent: 2 + - uid: 28573 + components: + - type: Transform + pos: -107.5,42.5 + parent: 2 + - uid: 28574 + components: + - type: Transform + pos: -110.5,43.5 + parent: 2 + - uid: 28575 + components: + - type: Transform + pos: -110.5,44.5 + parent: 2 + - uid: 28576 + components: + - type: Transform + pos: -110.5,45.5 + parent: 2 + - uid: 28577 + components: + - type: Transform + pos: -109.5,45.5 + parent: 2 + - uid: 28578 + components: + - type: Transform + pos: -108.5,45.5 + parent: 2 + - uid: 28581 + components: + - type: Transform + pos: -104.5,40.5 + parent: 2 + - uid: 28582 + components: + - type: Transform + pos: -105.5,39.5 + parent: 2 + - uid: 28583 + components: + - type: Transform + pos: -103.5,40.5 + parent: 2 + - uid: 28590 + components: + - type: Transform + pos: -104.5,42.5 + parent: 2 + - uid: 28734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,36.5 + parent: 2 + - uid: 28913 + components: + - type: Transform + pos: -115.5,67.5 + parent: 2 + - uid: 28915 + components: + - type: Transform + pos: -113.5,64.5 + parent: 2 + - uid: 28921 + components: + - type: Transform + pos: -112.5,67.5 + parent: 2 + - uid: 28936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,35.5 + parent: 2 + - uid: 28957 + components: + - type: Transform + pos: -113.5,63.5 + parent: 2 + - uid: 28958 + components: + - type: Transform + pos: -114.5,64.5 + parent: 2 + - uid: 28959 + components: + - type: Transform + pos: -114.5,65.5 + parent: 2 + - uid: 28960 + components: + - type: Transform + pos: -114.5,66.5 + parent: 2 + - uid: 28961 + components: + - type: Transform + pos: -113.5,66.5 + parent: 2 + - uid: 28962 + components: + - type: Transform + pos: -114.5,67.5 + parent: 2 + - uid: 28963 + components: + - type: Transform + pos: -115.5,66.5 + parent: 2 + - uid: 28964 + components: + - type: Transform + pos: -116.5,68.5 + parent: 2 + - uid: 28965 + components: + - type: Transform + pos: -117.5,68.5 + parent: 2 + - uid: 28969 + components: + - type: Transform + pos: -117.5,69.5 + parent: 2 + - uid: 28971 + components: + - type: Transform + pos: -118.5,69.5 + parent: 2 + - uid: 28972 + components: + - type: Transform + pos: -113.5,67.5 + parent: 2 + - uid: 28975 + components: + - type: Transform + pos: -112.5,66.5 + parent: 2 + - uid: 29052 + components: + - type: Transform + pos: -122.5,45.5 + parent: 2 + - uid: 29053 + components: + - type: Transform + pos: -122.5,46.5 + parent: 2 + - uid: 29054 + components: + - type: Transform + pos: -123.5,46.5 + parent: 2 + - uid: 29055 + components: + - type: Transform + pos: -123.5,47.5 + parent: 2 + - uid: 29056 + components: + - type: Transform + pos: -122.5,47.5 + parent: 2 + - uid: 29057 + components: + - type: Transform + pos: -123.5,48.5 + parent: 2 + - uid: 29058 + components: + - type: Transform + pos: -123.5,49.5 + parent: 2 + - uid: 29060 + components: + - type: Transform + pos: -122.5,49.5 + parent: 2 + - uid: 29061 + components: + - type: Transform + pos: -122.5,48.5 + parent: 2 + - uid: 29062 + components: + - type: Transform + pos: -123.5,50.5 + parent: 2 + - uid: 29063 + components: + - type: Transform + pos: -123.5,43.5 + parent: 2 + - uid: 29065 + components: + - type: Transform + pos: -122.5,42.5 + parent: 2 + - uid: 29066 + components: + - type: Transform + pos: -122.5,43.5 + parent: 2 + - uid: 29068 + components: + - type: Transform + pos: -122.5,41.5 + parent: 2 + - uid: 29089 + components: + - type: Transform + pos: -118.5,59.5 + parent: 2 + - uid: 29208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,29.5 + parent: 2 + - uid: 29212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,27.5 + parent: 2 + - uid: 29213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,28.5 + parent: 2 + - uid: 29214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,29.5 + parent: 2 + - uid: 29215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,30.5 + parent: 2 + - uid: 29216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,31.5 + parent: 2 + - uid: 29217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,32.5 + parent: 2 + - uid: 29218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,27.5 + parent: 2 + - uid: 29219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,28.5 + parent: 2 + - uid: 29220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,29.5 + parent: 2 + - uid: 29221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,30.5 + parent: 2 + - uid: 29222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,31.5 + parent: 2 + - uid: 29223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,32.5 + parent: 2 + - uid: 29224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,27.5 + parent: 2 + - uid: 29225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,28.5 + parent: 2 + - uid: 29226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,29.5 + parent: 2 + - uid: 29227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,30.5 + parent: 2 + - uid: 29228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,31.5 + parent: 2 + - uid: 29229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,32.5 + parent: 2 + - uid: 29230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,27.5 + parent: 2 + - uid: 29231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,28.5 + parent: 2 + - uid: 29232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,29.5 + parent: 2 + - uid: 29233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,30.5 + parent: 2 + - uid: 29234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,31.5 + parent: 2 + - uid: 29235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,32.5 + parent: 2 + - uid: 29236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,27.5 + parent: 2 + - uid: 29237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,28.5 + parent: 2 + - uid: 29238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,29.5 + parent: 2 + - uid: 29239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,30.5 + parent: 2 + - uid: 29240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,31.5 + parent: 2 + - uid: 29241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,32.5 + parent: 2 + - uid: 29242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,30.5 + parent: 2 + - uid: 29243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,31.5 + parent: 2 + - uid: 29244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,32.5 + parent: 2 + - uid: 29245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,29.5 + parent: 2 + - uid: 29246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,30.5 + parent: 2 + - uid: 29247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,31.5 + parent: 2 + - uid: 29248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,32.5 + parent: 2 + - uid: 29249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,33.5 + parent: 2 + - uid: 29250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,33.5 + parent: 2 + - uid: 29251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,33.5 + parent: 2 + - uid: 29252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,33.5 + parent: 2 + - uid: 29253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,33.5 + parent: 2 + - uid: 29254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,34.5 + parent: 2 + - uid: 29255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,34.5 + parent: 2 + - uid: 29256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,34.5 + parent: 2 + - uid: 29257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,34.5 + parent: 2 + - uid: 29258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,33.5 + parent: 2 + - uid: 29259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,33.5 + parent: 2 + - uid: 29260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,32.5 + parent: 2 + - uid: 29261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,31.5 + parent: 2 + - uid: 29262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,29.5 + parent: 2 + - uid: 29263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,28.5 + parent: 2 + - uid: 29264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,27.5 + parent: 2 + - uid: 29265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,26.5 + parent: 2 + - uid: 29266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,26.5 + parent: 2 + - uid: 29267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,26.5 + parent: 2 + - uid: 29269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,25.5 + parent: 2 + - uid: 29270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,25.5 + parent: 2 + - uid: 29271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,26.5 + parent: 2 + - uid: 29272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,24.5 + parent: 2 + - uid: 29273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,23.5 + parent: 2 + - uid: 29274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,24.5 + parent: 2 + - uid: 29275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,22.5 + parent: 2 + - uid: 29276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,26.5 + parent: 2 + - uid: 29277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,26.5 + parent: 2 + - uid: 29279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,31.5 + parent: 2 + - uid: 29280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,32.5 + parent: 2 + - uid: 29281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,33.5 + parent: 2 + - uid: 29282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,34.5 + parent: 2 + - uid: 29283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,34.5 + parent: 2 + - uid: 29284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,35.5 + parent: 2 + - uid: 29285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,35.5 + parent: 2 + - uid: 29286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,33.5 + parent: 2 + - uid: 29287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,36.5 + parent: 2 + - uid: 29288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,37.5 + parent: 2 + - uid: 29289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,36.5 + parent: 2 + - uid: 29290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,37.5 + parent: 2 + - uid: 29291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,36.5 + parent: 2 + - uid: 29292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,37.5 + parent: 2 + - uid: 29293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,36.5 + parent: 2 + - uid: 29294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,37.5 + parent: 2 + - uid: 29295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,38.5 + parent: 2 + - uid: 29296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,38.5 + parent: 2 + - uid: 29297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,38.5 + parent: 2 + - uid: 29298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,37.5 + parent: 2 + - uid: 29299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,38.5 + parent: 2 + - uid: 29300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,39.5 + parent: 2 + - uid: 29301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,39.5 + parent: 2 + - uid: 29303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,40.5 + parent: 2 + - uid: 29304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,39.5 + parent: 2 + - uid: 29305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,35.5 + parent: 2 + - uid: 29306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,35.5 + parent: 2 + - uid: 29307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,36.5 + parent: 2 + - uid: 29308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,34.5 + parent: 2 + - uid: 29867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,25.5 + parent: 2 + - uid: 29868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,30.5 + parent: 2 + - uid: 29869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,23.5 + parent: 2 + - uid: 29870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,27.5 + parent: 2 + - uid: 29871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,28.5 + parent: 2 + - uid: 29873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,26.5 + parent: 2 + - uid: 29874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,22.5 + parent: 2 + - uid: 29875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,30.5 + parent: 2 + - uid: 29920 + components: + - type: Transform + pos: -110.5,41.5 + parent: 2 + - uid: 29921 + components: + - type: Transform + pos: -106.5,43.5 + parent: 2 + - uid: 29923 + components: + - type: Transform + pos: -106.5,42.5 + parent: 2 + - uid: 29924 + components: + - type: Transform + pos: -107.5,44.5 + parent: 2 + - uid: 29925 + components: + - type: Transform + pos: -107.5,43.5 + parent: 2 + - uid: 30592 + components: + - type: Transform + pos: -137.5,32.5 + parent: 2 + - uid: 30594 + components: + - type: Transform + pos: -138.5,31.5 + parent: 2 + - uid: 30603 + components: + - type: Transform + pos: -139.5,32.5 + parent: 2 + - uid: 30604 + components: + - type: Transform + pos: -139.5,31.5 + parent: 2 + - uid: 30644 + components: + - type: Transform + pos: -138.5,32.5 + parent: 2 + - uid: 30659 + components: + - type: Transform + pos: -124.5,19.5 + parent: 2 + - uid: 30661 + components: + - type: Transform + pos: -125.5,19.5 + parent: 2 + - uid: 30662 + components: + - type: Transform + pos: -125.5,20.5 + parent: 2 + - uid: 30663 + components: + - type: Transform + pos: -124.5,20.5 + parent: 2 + - uid: 30664 + components: + - type: Transform + pos: -126.5,19.5 + parent: 2 + - uid: 30669 + components: + - type: Transform + pos: -127.5,19.5 + parent: 2 + - uid: 30676 + components: + - type: Transform + pos: -126.5,21.5 + parent: 2 + - uid: 30677 + components: + - type: Transform + pos: -127.5,22.5 + parent: 2 + - uid: 30678 + components: + - type: Transform + pos: -127.5,21.5 + parent: 2 + - uid: 30687 + components: + - type: Transform + pos: -139.5,9.5 + parent: 2 + - uid: 30702 + components: + - type: Transform + pos: -138.5,9.5 + parent: 2 + - uid: 30704 + components: + - type: Transform + pos: -132.5,14.5 + parent: 2 + - uid: 30705 + components: + - type: Transform + pos: -132.5,15.5 + parent: 2 + - uid: 30706 + components: + - type: Transform + pos: -133.5,13.5 + parent: 2 + - uid: 30707 + components: + - type: Transform + pos: -133.5,14.5 + parent: 2 + - uid: 30708 + components: + - type: Transform + pos: -133.5,15.5 + parent: 2 + - uid: 30709 + components: + - type: Transform + pos: -134.5,13.5 + parent: 2 + - uid: 30710 + components: + - type: Transform + pos: -134.5,14.5 + parent: 2 + - uid: 30711 + components: + - type: Transform + pos: -134.5,15.5 + parent: 2 + - uid: 30714 + components: + - type: Transform + pos: -137.5,11.5 + parent: 2 + - uid: 30715 + components: + - type: Transform + pos: -138.5,11.5 + parent: 2 + - uid: 30716 + components: + - type: Transform + pos: -138.5,10.5 + parent: 2 + - uid: 30717 + components: + - type: Transform + pos: -137.5,10.5 + parent: 2 + - uid: 30718 + components: + - type: Transform + pos: -139.5,10.5 + parent: 2 + - uid: 30719 + components: + - type: Transform + pos: -139.5,9.5 + parent: 2 + - uid: 30721 + components: + - type: Transform + pos: -142.5,9.5 + parent: 2 + - uid: 30722 + components: + - type: Transform + pos: -147.5,10.5 + parent: 2 + - uid: 30723 + components: + - type: Transform + pos: -149.5,7.5 + parent: 2 + - uid: 33292 + components: + - type: Transform + pos: -108.5,39.5 + parent: 2 + - uid: 34741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,38.5 + parent: 2 + - uid: 34742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,39.5 + parent: 2 + - uid: 34743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,39.5 + parent: 2 + - uid: 34744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,40.5 + parent: 2 + - uid: 34746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,37.5 + parent: 2 + - uid: 34747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,38.5 + parent: 2 + - uid: 34748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,40.5 + parent: 2 + - uid: 34749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,40.5 + parent: 2 + - uid: 34750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,39.5 + parent: 2 + - uid: 34751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -129.5,35.5 + parent: 2 + - uid: 34752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,35.5 + parent: 2 + - uid: 34753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,36.5 + parent: 2 + - uid: 34754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,35.5 + parent: 2 + - uid: 34755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,41.5 + parent: 2 + - uid: 34756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,41.5 + parent: 2 + - uid: 34757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,41.5 + parent: 2 + - uid: 36507 + components: + - type: Transform + pos: -126.5,20.5 + parent: 2 + - uid: 36508 + components: + - type: Transform + pos: -125.5,21.5 + parent: 2 + - uid: 43414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,13.5 + parent: 2 + - uid: 43415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,13.5 + parent: 2 + - uid: 43416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,14.5 + parent: 2 + - uid: 43417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,14.5 + parent: 2 + - uid: 43418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,15.5 + parent: 2 + - uid: 43419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,15.5 + parent: 2 + - uid: 43420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,14.5 + parent: 2 + - uid: 43421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,15.5 + parent: 2 + - uid: 43422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,16.5 + parent: 2 + - uid: 43423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,16.5 + parent: 2 + - uid: 43424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,16.5 + parent: 2 +- proto: FloorTileItemDark + entities: + - uid: 28366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.321945,146.45213 + parent: 2 +- proto: FloorTileItemSteel + entities: + - uid: 28008 + components: + - type: Transform + rot: 3.163928615223404 rad + pos: -82.45375,144.44534 + parent: 2 +- proto: FloorTileItemWhite + entities: + - uid: 23653 + components: + - type: Transform + pos: 10.480358,184.52945 + parent: 2 + - uid: 23654 + components: + - type: Transform + pos: 12.516246,184.25958 + parent: 2 + - uid: 23655 + components: + - type: Transform + pos: 11.920101,184.59691 + parent: 2 + - uid: 23656 + components: + - type: Transform + pos: 11.785126,185.72134 + parent: 2 + - uid: 23657 + components: + - type: Transform + pos: 8.264504,183.11266 + parent: 2 +- proto: FloorWaterEntity + entities: + - uid: 14296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,106.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,106.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,106.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,107.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,107.5 + parent: 2 + - uid: 14325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,107.5 + parent: 2 + - uid: 14326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,106.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,107.5 + parent: 2 + - uid: 14390 + components: + - type: Transform + pos: -84.5,99.5 + parent: 2 + - uid: 35838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,68.5 + parent: 2 +- proto: FloraRockSolid01 + entities: + - uid: 1881 + components: + - type: Transform + pos: 41.347694,18.443283 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 5.1426125,216.73248 + parent: 2 + - uid: 11267 + components: + - type: Transform + pos: -80.36032,46.760155 + parent: 2 + - uid: 11271 + components: + - type: Transform + pos: -81.36003,29.945816 + parent: 2 + - uid: 18272 + components: + - type: Transform + pos: 29.159416,176.0938 + parent: 2 + - uid: 26191 + components: + - type: Transform + pos: -59.108765,58.061966 + parent: 2 + - uid: 43447 + components: + - type: Transform + pos: -128.36145,12.053505 + parent: 2 +- proto: FloraRockSolid02 + entities: + - uid: 4710 + components: + - type: Transform + pos: -3.8643913,219.4986 + parent: 2 + - uid: 12006 + components: + - type: Transform + pos: -132.0299,58.225758 + parent: 2 + - uid: 14881 + components: + - type: Transform + pos: -76.10167,114.738846 + parent: 2 + - uid: 20931 + components: + - type: Transform + pos: -80.17963,36.17558 + parent: 2 + - uid: 22842 + components: + - type: Transform + pos: 34.51841,7.917267 + parent: 2 +- proto: FloraRockSolid03 + entities: + - uid: 880 + components: + - type: Transform + pos: 62.42534,20.753548 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 9.40974,213.58945 + parent: 2 + - uid: 12010 + components: + - type: Transform + pos: -122.38654,15.097786 + parent: 2 + - uid: 14149 + components: + - type: Transform + pos: -96.5112,92.46866 + parent: 2 + - uid: 23806 + components: + - type: Transform + pos: -90.20589,99.00934 + parent: 2 +- proto: FloraTree01 + entities: + - uid: 11224 + components: + - type: Transform + pos: -18.302986,76.423996 + parent: 2 + - uid: 17289 + components: + - type: Transform + pos: -70.78352,153.77 + parent: 2 + - uid: 23684 + components: + - type: Transform + pos: 16.92492,197.97273 + parent: 2 +- proto: FloraTree02 + entities: + - uid: 4973 + components: + - type: Transform + pos: -96.588066,149.62936 + parent: 2 + - uid: 23685 + components: + - type: Transform + pos: 18.184696,197.4105 + parent: 2 +- proto: FloraTree03 + entities: + - uid: 13629 + components: + - type: Transform + pos: -30.556133,102.17079 + parent: 2 +- proto: FloraTree04 + entities: + - uid: 7860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.29085,75.604614 + parent: 2 + - uid: 23682 + components: + - type: Transform + pos: 16.356737,187.62883 + parent: 2 + - uid: 23686 + components: + - type: Transform + pos: 13.748766,194.95978 + parent: 2 +- proto: FloraTree05 + entities: + - uid: 19566 + components: + - type: Transform + pos: -84.49581,150.5657 + parent: 2 + - uid: 23921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.30851,87.37485 + parent: 2 +- proto: FloraTree06 + entities: + - uid: 6853 + components: + - type: Transform + pos: -69.04449,67.460915 + parent: 2 + - uid: 17401 + components: + - type: Transform + pos: 10.165936,197.45468 + parent: 2 + - uid: 23680 + components: + - type: Transform + pos: 17.391369,185.53941 + parent: 2 + - uid: 23681 + components: + - type: Transform + pos: 14.15213,187.9999 + parent: 2 +- proto: FloraTreeChristmas02 + entities: + - uid: 34814 + components: + - type: Transform + pos: -13.516092,179.39502 + parent: 2 +- proto: FloraTreeConifer01 + entities: + - uid: 22743 + components: + - type: Transform + pos: -0.07076168,186.7724 + parent: 2 + - uid: 22974 + components: + - type: Transform + pos: -2.688633,199.35008 + parent: 2 + - uid: 36678 + components: + - type: Transform + pos: -9.46891,202.46387 + parent: 2 +- proto: FloraTreeConifer02 + entities: + - uid: 19210 + components: + - type: Transform + pos: -14.629169,176.01395 + parent: 2 +- proto: FloraTreeLarge01 + entities: + - uid: 23678 + components: + - type: Transform + pos: 9.395896,194.12773 + parent: 2 + - uid: 36476 + components: + - type: Transform + pos: -70.99036,160.58142 + parent: 2 +- proto: FloraTreeLarge06 + entities: + - uid: 23679 + components: + - type: Transform + pos: 15.621353,183.80779 + parent: 2 + - uid: 23683 + components: + - type: Transform + pos: 14.394122,197.48923 + parent: 2 +- proto: FloraTreeSnow02 + entities: + - uid: 22742 + components: + - type: Transform + pos: -1.6083536,181.74948 + parent: 2 + - uid: 32655 + components: + - type: Transform + pos: -8.938912,185.38167 + parent: 2 +- proto: FloraTreeSnow03 + entities: + - uid: 19065 + components: + - type: Transform + pos: -0.6724396,191.37674 + parent: 2 + - uid: 23429 + components: + - type: Transform + pos: -3.3635125,198.84409 + parent: 2 + - uid: 23470 + components: + - type: Transform + pos: -2.6548405,197.0312 + parent: 2 +- proto: FloraTreeSnow04 + entities: + - uid: 14353 + components: + - type: Transform + pos: -85.37901,98.40219 + parent: 2 + - uid: 18182 + components: + - type: Transform + pos: -2.8286896,189.72049 + parent: 2 + - uid: 23148 + components: + - type: Transform + pos: -3.506566,186.5033 + parent: 2 +- proto: FloraTreeSnow05 + entities: + - uid: 18771 + components: + - type: Transform + pos: -17.746033,184.87071 + parent: 2 + - uid: 18775 + components: + - type: Transform + pos: -14.700613,182.2656 + parent: 2 + - uid: 18796 + components: + - type: Transform + pos: -2.898879,183.18465 + parent: 2 + - uid: 23520 + components: + - type: Transform + pos: -4.5919485,204.44345 + parent: 2 +- proto: FloraTreeSnow06 + entities: + - uid: 23149 + components: + - type: Transform + pos: -7.8782434,180.7243 + parent: 2 +- proto: FloraTreeStump + entities: + - uid: 38273 + components: + - type: Transform + pos: -7.4058228,186.13428 + parent: 2 +- proto: FloraTreeStumpConifer + entities: + - uid: 11260 + components: + - type: Transform + pos: -0.5507698,177.48273 + parent: 2 + - uid: 38277 + components: + - type: Transform + pos: 1.5388489,188.73734 + parent: 2 + - uid: 38279 + components: + - type: Transform + pos: -3.5789871,193.57433 + parent: 2 +- proto: FluteInstrument + entities: + - uid: 24234 + components: + - type: Transform + pos: -58.64047,99.41324 + parent: 2 +- proto: FoamCutlass + entities: + - uid: 15851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.48825,73.79133 + parent: 2 +- proto: FoodApple + entities: + - uid: 4874 + components: + - type: Transform + pos: -17.540092,87.051865 + parent: 2 + - uid: 6994 + components: + - type: Transform + parent: 6993 + - type: Physics + canCollide: False + - uid: 14196 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14562 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15894 + components: + - type: Transform + pos: -50.456272,91.68295 + parent: 2 + - uid: 18061 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18653 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25261 + components: + - type: Transform + pos: -127.61079,81.6956 + parent: 2 +- proto: FoodBakedNugget + entities: + - uid: 13113 + components: + - type: Transform + pos: -17.310732,62.66258 + parent: 2 +- proto: FoodBowlBig + entities: + - uid: 36203 + components: + - type: Transform + pos: -13.426207,71.72066 + parent: 2 +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 22877 + components: + - type: Transform + pos: -6.2677155,199.74678 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 4852 + components: + - type: Transform + pos: 83.41955,67.60611 + parent: 2 + - uid: 8597 + components: + - type: Transform + pos: -105.39787,34.375355 + parent: 2 + - uid: 27598 + components: + - type: Transform + pos: -112.60913,42.632843 + parent: 2 + - uid: 28900 + components: + - type: Transform + pos: -112.372925,42.80151 + parent: 2 +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 20464 + components: + - type: Transform + pos: -79.57025,47.287148 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 624 + components: + - type: Transform + pos: 55.529373,28.630276 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: 70.24775,43.437252 + parent: 2 + - uid: 16862 + components: + - type: Transform + pos: -37.46739,103.690216 + parent: 2 + - uid: 17280 + components: + - type: Transform + pos: -65.234795,-4.4059243 + parent: 2 + - uid: 37295 + components: + - type: Transform + pos: -38.398914,172.9383 + parent: 2 +- proto: FoodBreadBananaSlice + entities: + - uid: 37929 + components: + - type: Transform + pos: 5.3561745,73.278786 + parent: 2 +- proto: FoodBreadMimanaSlice + entities: + - uid: 17757 + components: + - type: Transform + pos: 81.488434,18.662613 + parent: 2 + - uid: 18019 + components: + - type: Transform + pos: 81.451675,18.521988 + parent: 2 +- proto: FoodBreadMoldySlice + entities: + - uid: 4013 + components: + - type: Transform + pos: -138.82214,105.76689 + parent: 2 + - uid: 30890 + components: + - type: Transform + pos: -124.57735,109.6447 + parent: 2 + - uid: 30891 + components: + - type: Transform + pos: -124.52796,109.42595 + parent: 2 + - uid: 34282 + components: + - type: Transform + pos: -124.87171,109.55095 + parent: 2 +- proto: FoodBurgerBacon + entities: + - uid: 1422 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False +- proto: FoodBurgerCarp + entities: + - uid: 1679 + components: + - type: Transform + pos: -18.358147,4.741184 + parent: 2 +- proto: FoodBurgerCheese + entities: + - uid: 2216 + components: + - type: Transform + pos: -112.45533,38.52319 + parent: 2 + - uid: 20520 + components: + - type: Transform + pos: -16.855373,62.858147 + parent: 2 +- proto: FoodBurgerChicken + entities: + - uid: 1443 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False +- proto: FoodBurgerCrab + entities: + - uid: 4716 + components: + - type: Transform + pos: -91.71118,36.42624 + parent: 2 +- proto: FoodBurgerEmpowered + entities: + - uid: 1440 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False +- proto: FoodBurgerFive + entities: + - uid: 4702 + components: + - type: Transform + pos: 82.901535,67.559265 + parent: 2 +- proto: FoodBurgerPlain + entities: + - uid: 1406 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False + - uid: 1412 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False + - uid: 1423 + components: + - type: Transform + parent: 1404 + - type: Physics + canCollide: False +- proto: FoodBurgerSuper + entities: + - uid: 29067 + components: + - type: Transform + pos: -116.54802,48.627228 + parent: 2 +- proto: FoodCakeVanilla + entities: + - uid: 1451 + components: + - type: Transform + pos: 0.47511292,241.60672 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 25201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,180.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 38431 + - 38439 + - 38433 + - 38441 + - 38436 + - 38440 +- proto: FoodCartHot + entities: + - uid: 1404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,38.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1406 + - 1412 + - 1422 + - 1423 + - 1440 + - 1443 + coldsauce_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + hotsauce_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + bbqsauce_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ketchup_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 36688 + components: + - type: Transform + pos: -24.035315,196.5299 + parent: 2 +- proto: FoodDonkpocketHonk + entities: + - uid: 16411 + components: + - type: Transform + pos: 108.50112,59.55349 + parent: 2 +- proto: FoodDonutApple + entities: + - uid: 15404 + components: + - type: Transform + pos: -55.506176,80.59798 + parent: 2 +- proto: FoodDonutCaramel + entities: + - uid: 13403 + components: + - type: Transform + pos: 2.503067,1.7662067 + parent: 13386 +- proto: FoodDonutChocolate + entities: + - uid: 3017 + components: + - type: Transform + pos: 26.715828,15.261444 + parent: 2 +- proto: FoodDonutJelly + entities: + - uid: 16593 + components: + - type: Transform + pos: 2.8200302,1.5681696 + parent: 13386 +- proto: FoodDonutJellyHomer + entities: + - uid: 35417 + components: + - type: Transform + pos: -103.56487,149.63913 + parent: 2 +- proto: FoodDonutJellySlugcat + entities: + - uid: 5471 + components: + - type: Transform + pos: -85.724236,141.53001 + parent: 2 +- proto: FoodDonutSpaceman + entities: + - uid: 4119 + components: + - type: Transform + pos: 116.63508,59.525356 + parent: 2 +- proto: FoodDough + entities: + - uid: 12931 + components: + - type: Transform + pos: -13.303408,69.58895 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: -13.460878,69.85882 + parent: 2 + - uid: 12933 + components: + - type: Transform + pos: -13.652094,69.64517 + parent: 2 +- proto: FoodEggChickenFertilized + entities: + - uid: 1433 + components: + - type: Transform + pos: 0.29852295,60.523396 + parent: 2 + - uid: 36482 + components: + - type: Transform + pos: 0.8496742,60.725792 + parent: 2 + - uid: 36483 + components: + - type: Transform + pos: 1.0183945,60.45593 + parent: 2 +- proto: FoodFrozenFreezy + entities: + - uid: 17678 + components: + - type: Transform + pos: -26.286858,180.50296 + parent: 2 +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 34808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.713514,182.67308 + parent: 2 + - uid: 38431 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False + - uid: 38439 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 38433 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False + - uid: 38441 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 35961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.35691,21.316574 + parent: 2 + - uid: 38436 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False + - uid: 38440 + components: + - type: Transform + parent: 25201 + - type: Physics + canCollide: False +- proto: FoodFrozenPopsicleTrash + entities: + - uid: 34809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.642565,182.4048 + parent: 2 +- proto: FoodFrozenSandwich + entities: + - uid: 16857 + components: + - type: Transform + pos: -18.095947,182.5494 + parent: 2 + - uid: 38437 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38438 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 38430 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38434 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSundae + entities: + - uid: 22869 + components: + - type: Transform + pos: -18.602106,182.71805 + parent: 2 + - uid: 38432 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38435 + components: + - type: Transform + parent: 38429 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodGarlic + entities: + - uid: 10937 + components: + - type: Transform + pos: -59.498627,63.707077 + parent: 2 + - type: PointLight + energy: 2 + color: '#B0E0E6FF' + radius: 2 +- proto: FoodGrape + entities: + - uid: 20843 + components: + - type: Transform + pos: -85.60305,180.73322 + parent: 2 + - uid: 20844 + components: + - type: Transform + pos: -85.366844,180.8569 + parent: 2 +- proto: FoodKebabSkewer + entities: + - uid: 16474 + components: + - type: Transform + pos: -65.41039,100.57889 + parent: 2 +- proto: FoodMealEggplantParm + entities: + - uid: 33946 + components: + - type: Transform + pos: -132.47379,148.5214 + parent: 2 +- proto: FoodMealFriesCarrot + entities: + - uid: 25823 + components: + - type: Transform + pos: -88.50383,38.63632 + parent: 2 +- proto: FoodMealFriesCheesy + entities: + - uid: 13174 + components: + - type: Transform + pos: -16.803732,62.467667 + parent: 2 +- proto: FoodMeatChicken + entities: + - uid: 11122 + components: + - type: Transform + parent: 12935 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11128 + components: + - type: Transform + parent: 12935 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11157 + components: + - type: Transform + parent: 12935 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12992 + components: + - type: Transform + pos: -11.43141,61.676132 + parent: 2 +- proto: FoodMeatChickenFried + entities: + - uid: 5044 + components: + - type: Transform + pos: -104.54538,59.427353 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.723671,62.446823 + parent: 2 + - uid: 16727 + components: + - type: Transform + pos: -103.56974,57.988075 + parent: 2 + - uid: 17146 + components: + - type: Transform + pos: -103.59224,57.51581 + parent: 2 + - uid: 28682 + components: + - type: Transform + pos: -103.34478,57.380875 + parent: 2 + - uid: 28683 + components: + - type: Transform + pos: -103.32229,57.83065 + parent: 2 +- proto: FoodMeatClown + entities: + - uid: 6822 + components: + - type: Transform + parent: 34626 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38091 + components: + - type: Transform + pos: -71.61896,90.59876 + parent: 2 +- proto: FoodMeatCrabCooked + entities: + - uid: 12308 + components: + - type: Transform + pos: -91.72681,36.67624 + parent: 2 +- proto: FoodMeatPlant + entities: + - uid: 11085 + components: + - type: Transform + pos: -97.31689,147.61728 + parent: 2 +- proto: FoodMeatSlime + entities: + - uid: 6616 + components: + - type: Transform + pos: -60.571465,105.56446 + parent: 2 +- proto: FoodMeatSpiderLeg + entities: + - uid: 35978 + components: + - type: Transform + pos: -43.544807,54.211823 + parent: 2 +- proto: FoodMeatTomato + entities: + - uid: 30599 + components: + - type: Transform + pos: -91.490524,147.76665 + parent: 2 +- proto: FoodPieAppleSlice + entities: + - uid: 35804 + components: + - type: Transform + pos: -18.254236,62.5604 + parent: 2 +- proto: FoodPieBaklava + entities: + - uid: 7233 + components: + - type: Transform + pos: 57.62426,25.173435 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 5615 + components: + - type: Transform + pos: 57.47148,24.853992 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: -69.78697,90.39919 + parent: 2 + - uid: 15128 + components: + - type: Transform + pos: 7.5016747,74.55523 + parent: 2 + - uid: 15129 + components: + - type: Transform + pos: 7.4791794,76.53424 + parent: 2 +- proto: FoodPineapple + entities: + - uid: 18094 + components: + - type: MetaData + name: multidimensional pineapple + - type: Transform + pos: -88.941025,148.14993 + parent: 2 + - type: SolutionContainerManager + solutions: + food: + temperature: 293.15 + canReact: True + maxVol: 45 + name: null + reagents: + - data: null + ReagentId: MuteToxin + Quantity: 15 + - data: null + ReagentId: MindbreakerToxin + Quantity: 15 + - data: null + ReagentId: Pax + Quantity: 15 + - type: SingularityDistortion + falloffPower: 1.4142137 + intensity: 31.249992 +- proto: FoodPizzaMushroom + entities: + - uid: 1870 + components: + - type: Transform + pos: 1.7477825,-2.262948 + parent: 2 +- proto: FoodPlate + entities: + - uid: 22307 + components: + - type: Transform + pos: -76.496,36.76551 + parent: 2 + - uid: 36794 + components: + - type: Transform + pos: -75.64279,94.79567 + parent: 2 + - uid: 36801 + components: + - type: Transform + pos: -76.4639,94.784424 + parent: 2 +- proto: FoodPlateTrash + entities: + - uid: 34612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.39832,89.407845 + parent: 2 + - uid: 36803 + components: + - type: Transform + pos: -77.374985,94.73945 + parent: 2 +- proto: FoodSnackCheesie + entities: + - uid: 23523 + components: + - type: Transform + pos: 108.31362,59.670677 + parent: 2 +- proto: FoodSnackChocolate + entities: + - uid: 20054 + components: + - type: Transform + pos: -54.412315,155.60696 + parent: 2 +- proto: FoodSnackCookieFortune + entities: + - uid: 1572 + components: + - type: Transform + pos: -54.34664,5.5771103 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -54.605347,5.644577 + parent: 2 +- proto: FoodSnackEnergy + entities: + - uid: 15827 + components: + - type: Transform + pos: -127.5256,48.520927 + parent: 2 + - uid: 38031 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackNutribrick + entities: + - uid: 23375 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28428 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28580 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackSyndi + entities: + - uid: 20590 + components: + - type: Transform + pos: -150.53448,105.59184 + parent: 2 +- proto: FoodTartGapple + entities: + - uid: 11745 + components: + - type: Transform + pos: -46.484566,96.610054 + parent: 2 + - uid: 25546 + components: + - type: Transform + pos: 5.4806013,177.65605 + parent: 2 +- proto: FoodTinBeans + entities: + - uid: 1590 + components: + - type: Transform + parent: 1589 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTinMRE + entities: + - uid: 4776 + components: + - type: Transform + pos: -57.533043,12.764664 + parent: 2 +- proto: FoodTinPeaches + entities: + - uid: 4529 + components: + - type: Transform + pos: -70.749084,149.68036 + parent: 2 +- proto: FoodWatermelonSlice + entities: + - uid: 15472 + components: + - type: Transform + pos: -3.716236,69.83449 + parent: 2 + - uid: 36204 + components: + - type: Transform + pos: -3.513111,69.67824 + parent: 2 +- proto: Fork + entities: + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.51474,63.726105 + parent: 2 + - uid: 6411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.51474,63.726105 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 1680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.51562,4.415097 + parent: 2 + - uid: 8701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.387856,26.058018 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 1072 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: -71.5,-9.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 20013 + components: + - type: Transform + pos: -79.5,148.5 + parent: 2 + - uid: 37045 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 36996 +- proto: GasFilter + entities: + - uid: 32174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasMinerNitrogen + entities: + - uid: 8299 + components: + - type: Transform + pos: 90.5,14.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 + - uid: 8709 + components: + - type: Transform + pos: -74.5,146.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,178.5 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 4789 + components: + - type: Transform + pos: -110.5,15.5 + parent: 2 +- proto: GasMinerOxygen + entities: + - uid: 8300 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: -74.5,144.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: 86.5,14.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,178.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 27865 + components: + - type: Transform + pos: -106.5,15.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 1642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,60.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,19.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,10.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,22.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,173.5 + parent: 2 + - uid: 25497 + components: + - type: Transform + pos: 14.5,175.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 102 + - type: AtmosPipeColor + color: '#9999FFFF' +- proto: GasMixerFlipped + entities: + - uid: 25500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,175.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32248 + components: + - type: Transform + pos: -69.5,146.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasOutletInjector + entities: + - uid: 12281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,15.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,15.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,60.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 8250 + components: + - type: Transform + pos: -2.5,207.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 10370 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,16.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,16.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,148.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,174.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16948 + components: + - type: Transform + pos: -1.5,0.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18034 + components: + - type: Transform + pos: 2.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18101 + components: + - type: Transform + pos: -2.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 18121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 19003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23718 + components: + - type: Transform + pos: 12.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25464 + components: + - type: Transform + pos: 13.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25465 + components: + - type: Transform + pos: 11.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 27891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31792 + components: + - type: Transform + pos: -55.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 37903 + components: + - type: Transform + pos: -95.5,176.5 + parent: 2 + - uid: 37938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 37842 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 37842 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeBend + entities: + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,61.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 37.5,61.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3098 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3123 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3152 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3266 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3767 + components: + - type: Transform + pos: -64.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6452 + components: + - type: Transform + pos: -57.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 7647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8442 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10127 + components: + - type: Transform + pos: -41.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11250 + components: + - type: Transform + pos: -2.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,175.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19409 + components: + - type: Transform + pos: 87.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19412 + components: + - type: Transform + pos: 89.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19939 + components: + - type: Transform + pos: 115.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 115.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20958 + components: + - type: Transform + pos: -72.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21399 + components: + - type: Transform + pos: 73.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21412 + components: + - type: Transform + pos: -118.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21819 + components: + - type: Transform + pos: -88.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22529 + components: + - type: Transform + pos: 72.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22972 + components: + - type: Transform + pos: 83.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23054 + components: + - type: Transform + pos: 82.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23182 + components: + - type: Transform + pos: -24.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23391 + components: + - type: Transform + pos: 63.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23558 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 27825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31637 + components: + - type: Transform + pos: -4.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31643 + components: + - type: Transform + pos: -0.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31649 + components: + - type: Transform + pos: 4.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31650 + components: + - type: Transform + pos: 5.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31651 + components: + - type: Transform + pos: 6.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31661 + components: + - type: Transform + pos: 7.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31662 + components: + - type: Transform + pos: 8.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31671 + components: + - type: Transform + pos: 17.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31740 + components: + - type: Transform + pos: 17.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31757 + components: + - type: Transform + pos: 22.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31762 + components: + - type: Transform + pos: 24.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31901 + components: + - type: Transform + pos: 92.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31915 + components: + - type: Transform + pos: 90.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31977 + components: + - type: Transform + pos: 14.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 31995 + components: + - type: Transform + pos: -23.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32019 + components: + - type: Transform + pos: -12.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32086 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 32219 + components: + - type: Transform + pos: -93.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 32227 + components: + - type: Transform + pos: 18.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32258 + components: + - type: Transform + pos: -69.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32261 + components: + - type: Transform + pos: -70.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33272 + components: + - type: Transform + pos: -116.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33284 + components: + - type: Transform + pos: -115.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33436 + components: + - type: Transform + pos: -73.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33449 + components: + - type: Transform + pos: -81.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33576 + components: + - type: Transform + pos: -50.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33599 + components: + - type: Transform + pos: -69.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33630 + components: + - type: Transform + pos: -63.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33685 + components: + - type: Transform + pos: -70.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33692 + components: + - type: Transform + pos: -68.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33717 + components: + - type: Transform + pos: -76.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33718 + components: + - type: Transform + pos: -74.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34257 + components: + - type: Transform + pos: 7.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34279 + components: + - type: Transform + pos: -1.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34379 + components: + - type: Transform + pos: -8.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35619 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36132 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36313 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeFourway + entities: + - uid: 7530 + components: + - type: Transform + pos: -107.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8160 + components: + - type: Transform + pos: -67.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8161 + components: + - type: Transform + pos: -54.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8234 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8235 + components: + - type: Transform + pos: 72.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8236 + components: + - type: Transform + pos: 82.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8238 + components: + - type: Transform + pos: 76.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8246 + components: + - type: Transform + pos: 65.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8988 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: -2.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16552 + components: + - type: Transform + pos: -68.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19583 + components: + - type: Transform + pos: 82.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19596 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22562 + components: + - type: Transform + pos: -18.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31343 + components: + - type: Transform + pos: -98.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31390 + components: + - type: Transform + pos: -97.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32528 + components: + - type: Transform + pos: -78.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32670 + components: + - type: Transform + pos: -63.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33158 + components: + - type: Transform + pos: -104.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeHalf + entities: + - uid: 4080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 5070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 12249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' +- proto: GasPipeStraight + entities: + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 981 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,61.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,61.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,61.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3050 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 3063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3099 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3134 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3142 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3143 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3145 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3146 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3148 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3155 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3230 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3231 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3232 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3233 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3234 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3235 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3236 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3242 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3262 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4244 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 4316 + components: + - type: Transform + pos: -103.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 4323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 4535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 4725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 5422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 5725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5785 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5822 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6092 + components: + - type: Transform + pos: -97.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 6852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 7131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7637 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8358 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8418 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8419 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8441 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 8731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - uid: 10078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10372 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12064 + components: + - type: Transform + pos: -80.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12262 + components: + - type: Transform + pos: -110.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,16.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12294 + components: + - type: Transform + pos: -103.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,17.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,17.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,17.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,17.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,16.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,175.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,175.5 + parent: 2 + - uid: 12589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,175.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,175.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12815 + components: + - type: Transform + pos: -103.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 13170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13232 + components: + - type: Transform + pos: -4.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 13470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14004 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 14157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 14418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14615 + components: + - type: Transform + pos: -67.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14877 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 15379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,96.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16943 + components: + - type: Transform + anchored: False + pos: -1.5,-3.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 16944 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16945 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16946 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 16989 + components: + - type: Transform + pos: -57.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 17100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,106.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,107.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,108.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,109.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,106.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,108.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,109.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17901 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 18060 + components: + - type: Transform + pos: -106.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 18185 + components: + - type: Transform + pos: -104.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 18670 + components: + - type: Transform + pos: -42.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18674 + components: + - type: Transform + pos: -38.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19405 + components: + - type: Transform + pos: 87.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19408 + components: + - type: Transform + pos: 89.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19452 + components: + - type: Transform + pos: 89.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19476 + components: + - type: Transform + pos: 89.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19582 + components: + - type: Transform + pos: 82.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19629 + components: + - type: Transform + pos: 82.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19630 + components: + - type: Transform + pos: 82.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19635 + components: + - type: Transform + pos: 82.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19637 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19672 + components: + - type: Transform + pos: 89.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19673 + components: + - type: Transform + pos: 89.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19842 + components: + - type: Transform + pos: 88.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 101.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 103.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 104.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 105.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 106.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 108.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 109.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 110.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 111.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 112.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 113.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 114.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 97.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 98.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 104.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 109.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 112.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 101.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20625 + components: + - type: Transform + pos: -69.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20643 + components: + - type: Transform + pos: -69.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20646 + components: + - type: Transform + pos: -68.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20791 + components: + - type: Transform + pos: -72.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21190 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21191 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21271 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21370 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21371 + components: + - type: Transform + pos: 70.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21372 + components: + - type: Transform + pos: 70.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21373 + components: + - type: Transform + pos: 70.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21374 + components: + - type: Transform + pos: 72.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21400 + components: + - type: Transform + pos: 73.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21417 + components: + - type: Transform + pos: 65.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21418 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22444 + components: + - type: Transform + pos: 72.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22528 + components: + - type: Transform + pos: 72.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22789 + components: + - type: Transform + pos: -18.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22790 + components: + - type: Transform + pos: -18.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22970 + components: + - type: Transform + pos: 83.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22971 + components: + - type: Transform + pos: 83.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23176 + components: + - type: Transform + pos: -28.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23186 + components: + - type: Transform + pos: -28.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23187 + components: + - type: Transform + pos: -28.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23192 + components: + - type: Transform + pos: -28.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23193 + components: + - type: Transform + pos: -28.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23547 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23548 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23549 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23570 + components: + - type: Transform + pos: 55.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23571 + components: + - type: Transform + pos: 55.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23601 + components: + - type: Transform + pos: 71.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23602 + components: + - type: Transform + pos: 71.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23603 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23604 + components: + - type: Transform + pos: 71.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23732 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23738 + components: + - type: Transform + pos: 69.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23740 + components: + - type: Transform + pos: 69.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23741 + components: + - type: Transform + pos: 69.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23742 + components: + - type: Transform + pos: 69.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23743 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24078 + components: + - type: Transform + pos: -29.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24111 + components: + - type: Transform + pos: -29.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24113 + components: + - type: Transform + pos: -29.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25781 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26018 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26021 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26041 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26111 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26301 + components: + - type: Transform + pos: -13.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 26307 + components: + - type: Transform + pos: -13.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 26308 + components: + - type: Transform + pos: -13.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 26593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,149.5 + parent: 2 + - uid: 26595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 27931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28086 + components: + - type: Transform + pos: -88.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 28729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 29020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 29371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 29599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 29856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29865 + components: + - type: Transform + pos: -104.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29866 + components: + - type: Transform + pos: -103.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 30897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30984 + components: + - type: Transform + pos: -29.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30999 + components: + - type: Transform + pos: -29.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31000 + components: + - type: Transform + pos: -29.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31341 + components: + - type: Transform + pos: -20.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31350 + components: + - type: Transform + pos: -97.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31351 + components: + - type: Transform + pos: -97.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31352 + components: + - type: Transform + pos: -97.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31353 + components: + - type: Transform + pos: -97.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31354 + components: + - type: Transform + pos: -97.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31355 + components: + - type: Transform + pos: -97.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31356 + components: + - type: Transform + pos: -97.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31357 + components: + - type: Transform + pos: -97.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31358 + components: + - type: Transform + pos: -97.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31359 + components: + - type: Transform + pos: -98.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31360 + components: + - type: Transform + pos: -98.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31361 + components: + - type: Transform + pos: -98.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31362 + components: + - type: Transform + pos: -98.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31363 + components: + - type: Transform + pos: -20.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31365 + components: + - type: Transform + pos: -20.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31366 + components: + - type: Transform + pos: -20.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31373 + components: + - type: Transform + pos: -88.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31386 + components: + - type: Transform + pos: -98.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31387 + components: + - type: Transform + pos: -98.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31388 + components: + - type: Transform + pos: -98.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31389 + components: + - type: Transform + pos: -98.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31654 + components: + - type: Transform + pos: 6.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31655 + components: + - type: Transform + pos: 6.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31656 + components: + - type: Transform + pos: 6.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,210.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,211.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,212.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31702 + components: + - type: Transform + pos: 1.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31703 + components: + - type: Transform + pos: 1.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31704 + components: + - type: Transform + pos: 1.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31705 + components: + - type: Transform + pos: 1.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31706 + components: + - type: Transform + pos: 1.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31714 + components: + - type: Transform + pos: 0.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31747 + components: + - type: Transform + pos: 21.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31748 + components: + - type: Transform + pos: 21.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31749 + components: + - type: Transform + pos: 21.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31750 + components: + - type: Transform + pos: 21.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31751 + components: + - type: Transform + pos: 21.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31753 + components: + - type: Transform + pos: 21.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31754 + components: + - type: Transform + pos: 21.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31758 + components: + - type: Transform + pos: 22.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31763 + components: + - type: Transform + pos: 24.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31764 + components: + - type: Transform + pos: 24.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31771 + components: + - type: Transform + pos: 24.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31772 + components: + - type: Transform + pos: 24.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31778 + components: + - type: Transform + pos: 24.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31779 + components: + - type: Transform + pos: 24.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31780 + components: + - type: Transform + pos: 24.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31781 + components: + - type: Transform + pos: 24.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31809 + components: + - type: Transform + pos: 22.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31810 + components: + - type: Transform + pos: 22.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31811 + components: + - type: Transform + pos: 22.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31817 + components: + - type: Transform + pos: 21.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31818 + components: + - type: Transform + pos: 21.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31819 + components: + - type: Transform + pos: 21.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31820 + components: + - type: Transform + pos: 21.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31821 + components: + - type: Transform + pos: 21.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31822 + components: + - type: Transform + pos: 21.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31844 + components: + - type: Transform + pos: 10.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31845 + components: + - type: Transform + pos: 10.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31859 + components: + - type: Transform + pos: 87.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31860 + components: + - type: Transform + pos: 89.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31861 + components: + - type: Transform + pos: 87.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31862 + components: + - type: Transform + pos: 89.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31864 + components: + - type: Transform + pos: 89.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31866 + components: + - type: Transform + pos: 87.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31894 + components: + - type: Transform + pos: 86.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31902 + components: + - type: Transform + pos: 87.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31957 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31981 + components: + - type: Transform + pos: 10.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31982 + components: + - type: Transform + pos: 14.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 31984 + components: + - type: Transform + pos: 12.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32018 + components: + - type: Transform + pos: -11.5,173.5 + parent: 2 + - uid: 32020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32031 + components: + - type: Transform + pos: -23.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32032 + components: + - type: Transform + pos: -23.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32033 + components: + - type: Transform + pos: -23.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32040 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -29.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32048 + components: + - type: Transform + pos: -23.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32049 + components: + - type: Transform + pos: -23.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32050 + components: + - type: Transform + pos: -23.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32051 + components: + - type: Transform + pos: -23.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32052 + components: + - type: Transform + pos: -23.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32053 + components: + - type: Transform + pos: -23.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32054 + components: + - type: Transform + pos: -23.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32087 + components: + - type: Transform + pos: -16.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32189 + components: + - type: Transform + pos: -55.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32201 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 32223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 32239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32251 + components: + - type: Transform + pos: -69.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32477 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32544 + components: + - type: Transform + pos: -80.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32546 + components: + - type: Transform + pos: -80.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32549 + components: + - type: Transform + pos: -78.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32550 + components: + - type: Transform + pos: -78.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32587 + components: + - type: Transform + pos: -90.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32588 + components: + - type: Transform + pos: -90.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32589 + components: + - type: Transform + pos: -90.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32590 + components: + - type: Transform + pos: -84.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32591 + components: + - type: Transform + pos: -84.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32592 + components: + - type: Transform + pos: -84.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32593 + components: + - type: Transform + pos: -84.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32596 + components: + - type: Transform + pos: -78.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32597 + components: + - type: Transform + pos: -78.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32669 + components: + - type: Transform + pos: -63.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32676 + components: + - type: Transform + pos: -68.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32677 + components: + - type: Transform + pos: -68.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32686 + components: + - type: Transform + pos: -60.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32687 + components: + - type: Transform + pos: -60.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32688 + components: + - type: Transform + pos: -60.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32689 + components: + - type: Transform + pos: -60.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32690 + components: + - type: Transform + pos: -60.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32691 + components: + - type: Transform + pos: -60.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32692 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32693 + components: + - type: Transform + pos: -60.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32710 + components: + - type: Transform + pos: -62.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32711 + components: + - type: Transform + pos: -62.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32715 + components: + - type: Transform + pos: -59.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32716 + components: + - type: Transform + pos: -59.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32717 + components: + - type: Transform + pos: -59.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32747 + components: + - type: Transform + pos: -80.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32748 + components: + - type: Transform + pos: -80.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32749 + components: + - type: Transform + pos: -80.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32750 + components: + - type: Transform + pos: -80.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32751 + components: + - type: Transform + pos: -80.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32752 + components: + - type: Transform + anchored: False + pos: -80.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32753 + components: + - type: Transform + pos: -79.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32754 + components: + - type: Transform + pos: -79.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32774 + components: + - type: Transform + pos: -82.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32775 + components: + - type: Transform + pos: -82.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32776 + components: + - type: Transform + pos: -82.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32780 + components: + - type: Transform + pos: -89.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32781 + components: + - type: Transform + pos: -89.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32782 + components: + - type: Transform + pos: -89.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32783 + components: + - type: Transform + pos: -92.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32784 + components: + - type: Transform + pos: -92.5,150.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32785 + components: + - type: Transform + pos: -92.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,153.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,156.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32799 + components: + - type: Transform + pos: -88.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32810 + components: + - type: Transform + pos: -97.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32811 + components: + - type: Transform + pos: -97.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32812 + components: + - type: Transform + pos: -97.5,165.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32813 + components: + - type: Transform + pos: -97.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32814 + components: + - type: Transform + pos: -97.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32815 + components: + - type: Transform + pos: -97.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32824 + components: + - type: Transform + pos: -76.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32825 + components: + - type: Transform + pos: -76.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32826 + components: + - type: Transform + pos: -76.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32827 + components: + - type: Transform + pos: -76.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32828 + components: + - type: Transform + pos: -77.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32829 + components: + - type: Transform + pos: -77.5,146.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,144.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,145.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33169 + components: + - type: Transform + pos: -88.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33194 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33195 + components: + - type: Transform + pos: -98.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33196 + components: + - type: Transform + pos: -98.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33197 + components: + - type: Transform + pos: -98.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33198 + components: + - type: Transform + pos: -98.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33199 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33200 + components: + - type: Transform + anchored: False + pos: -97.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33201 + components: + - type: Transform + anchored: False + pos: -97.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33202 + components: + - type: Transform + anchored: False + pos: -97.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33203 + components: + - type: Transform + anchored: False + pos: -97.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33204 + components: + - type: Transform + anchored: False + pos: -97.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33209 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -115.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33222 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -116.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33283 + components: + - type: Transform + pos: -115.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33301 + components: + - type: Transform + pos: -92.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33302 + components: + - type: Transform + pos: -92.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33303 + components: + - type: Transform + pos: -92.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33304 + components: + - type: Transform + pos: -92.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33335 + components: + - type: Transform + pos: -97.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33461 + components: + - type: Transform + pos: -80.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33462 + components: + - type: Transform + pos: -80.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33463 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33464 + components: + - type: Transform + pos: -80.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33465 + components: + - type: Transform + pos: -80.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33466 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33467 + components: + - type: Transform + pos: -80.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33494 + components: + - type: Transform + pos: -60.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33508 + components: + - type: Transform + pos: -58.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33509 + components: + - type: Transform + pos: -58.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33521 + components: + - type: Transform + pos: -58.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33537 + components: + - type: Transform + pos: -60.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33538 + components: + - type: Transform + pos: -60.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33539 + components: + - type: Transform + pos: -60.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33547 + components: + - type: Transform + pos: -58.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33548 + components: + - type: Transform + pos: -58.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33549 + components: + - type: Transform + pos: -58.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33550 + components: + - type: Transform + pos: -58.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33551 + components: + - type: Transform + pos: -58.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33552 + components: + - type: Transform + pos: -58.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33567 + components: + - type: Transform + pos: -51.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33568 + components: + - type: Transform + pos: -51.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33569 + components: + - type: Transform + pos: -51.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33577 + components: + - type: Transform + pos: -50.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33639 + components: + - type: Transform + pos: -63.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33640 + components: + - type: Transform + pos: -63.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33664 + components: + - type: Transform + pos: -57.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33665 + components: + - type: Transform + pos: -57.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33676 + components: + - type: Transform + pos: -70.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33677 + components: + - type: Transform + pos: -70.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33678 + components: + - type: Transform + pos: -70.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33679 + components: + - type: Transform + pos: -70.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33680 + components: + - type: Transform + pos: -70.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33681 + components: + - type: Transform + pos: -70.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33701 + components: + - type: Transform + pos: -76.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,96.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,96.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33768 + components: + - type: Transform + pos: -39.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33769 + components: + - type: Transform + pos: -39.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,96.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33775 + components: + - type: Transform + pos: -41.5,96.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33778 + components: + - type: Transform + pos: -41.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33779 + components: + - type: Transform + pos: -41.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33780 + components: + - type: Transform + pos: -41.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33798 + components: + - type: Transform + pos: 8.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33820 + components: + - type: Transform + pos: 7.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,102.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33829 + components: + - type: Transform + pos: 7.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33947 + components: + - type: Transform + pos: -24.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33948 + components: + - type: Transform + pos: -24.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33949 + components: + - type: Transform + pos: -24.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33951 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33952 + components: + - type: Transform + pos: -24.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33953 + components: + - type: Transform + pos: -24.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33954 + components: + - type: Transform + pos: -24.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33957 + components: + - type: Transform + pos: -24.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33958 + components: + - type: Transform + pos: -24.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33959 + components: + - type: Transform + pos: -24.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33960 + components: + - type: Transform + pos: -24.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33961 + components: + - type: Transform + pos: -22.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33962 + components: + - type: Transform + pos: -22.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33964 + components: + - type: Transform + pos: -22.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33966 + components: + - type: Transform + pos: -22.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33967 + components: + - type: Transform + pos: -22.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33968 + components: + - type: Transform + pos: -22.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33969 + components: + - type: Transform + pos: -22.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33971 + components: + - type: Transform + pos: -22.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33972 + components: + - type: Transform + pos: -22.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33973 + components: + - type: Transform + pos: -22.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34022 + components: + - type: Transform + pos: -23.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34023 + components: + - type: Transform + pos: -21.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34024 + components: + - type: Transform + pos: -21.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34029 + components: + - type: Transform + pos: -14.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34030 + components: + - type: Transform + pos: -14.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34031 + components: + - type: Transform + pos: -17.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34040 + components: + - type: Transform + pos: -10.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34042 + components: + - type: Transform + pos: -10.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34050 + components: + - type: Transform + pos: -23.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34051 + components: + - type: Transform + pos: -23.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34052 + components: + - type: Transform + pos: -23.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34053 + components: + - type: Transform + pos: -23.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34054 + components: + - type: Transform + pos: -23.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34055 + components: + - type: Transform + pos: -23.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34056 + components: + - type: Transform + pos: -23.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34058 + components: + - type: Transform + pos: -21.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34059 + components: + - type: Transform + pos: -21.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34060 + components: + - type: Transform + pos: -21.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34061 + components: + - type: Transform + pos: -21.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34062 + components: + - type: Transform + pos: -21.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34063 + components: + - type: Transform + pos: -21.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34064 + components: + - type: Transform + pos: -21.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34065 + components: + - type: Transform + pos: -21.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34066 + components: + - type: Transform + pos: -21.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34095 + components: + - type: Transform + pos: -11.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34096 + components: + - type: Transform + pos: -11.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34097 + components: + - type: Transform + pos: -11.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34105 + components: + - type: Transform + pos: -6.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34106 + components: + - type: Transform + pos: -6.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34107 + components: + - type: Transform + pos: -6.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34108 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34130 + components: + - type: Transform + pos: -11.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34132 + components: + - type: Transform + pos: -11.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34174 + components: + - type: Transform + pos: -14.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34176 + components: + - type: Transform + pos: -14.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34177 + components: + - type: Transform + pos: -14.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34178 + components: + - type: Transform + pos: -14.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34179 + components: + - type: Transform + pos: -14.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34180 + components: + - type: Transform + pos: -14.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34181 + components: + - type: Transform + pos: -14.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34205 + components: + - type: Transform + pos: -43.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34206 + components: + - type: Transform + pos: -43.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34207 + components: + - type: Transform + pos: -43.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34208 + components: + - type: Transform + pos: -43.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34209 + components: + - type: Transform + pos: -43.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34211 + components: + - type: Transform + pos: -43.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34212 + components: + - type: Transform + pos: -43.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34213 + components: + - type: Transform + pos: -43.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34214 + components: + - type: Transform + pos: -43.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34215 + components: + - type: Transform + pos: -37.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34216 + components: + - type: Transform + pos: -37.5,89.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34217 + components: + - type: Transform + pos: -37.5,88.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34218 + components: + - type: Transform + pos: -37.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34219 + components: + - type: Transform + pos: -37.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34220 + components: + - type: Transform + pos: -37.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34222 + components: + - type: Transform + pos: -37.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34223 + components: + - type: Transform + pos: -37.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34224 + components: + - type: Transform + pos: -37.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34225 + components: + - type: Transform + pos: -37.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,187.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,188.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,203.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34394 + components: + - type: Transform + pos: 5.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34395 + components: + - type: Transform + pos: 5.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34396 + components: + - type: Transform + pos: 5.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34397 + components: + - type: Transform + pos: 5.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34398 + components: + - type: Transform + pos: 5.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34399 + components: + - type: Transform + pos: 5.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34400 + components: + - type: Transform + pos: 5.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34402 + components: + - type: Transform + pos: 4.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34403 + components: + - type: Transform + pos: 4.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34404 + components: + - type: Transform + pos: 4.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34405 + components: + - type: Transform + pos: 4.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34406 + components: + - type: Transform + pos: 4.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34408 + components: + - type: Transform + pos: 4.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34409 + components: + - type: Transform + pos: 4.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34410 + components: + - type: Transform + pos: 4.5,182.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34411 + components: + - type: Transform + pos: 4.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34412 + components: + - type: Transform + pos: 4.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35583 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -58.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35586 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -55.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35595 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35613 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35614 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35615 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35626 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35627 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35628 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35629 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35630 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35931 + components: + - type: Transform + anchored: False + pos: -65.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35952 + components: + - type: Transform + pos: -4.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35953 + components: + - type: Transform + pos: -4.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35954 + components: + - type: Transform + pos: -4.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35955 + components: + - type: Transform + pos: -4.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35956 + components: + - type: Transform + pos: -6.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35957 + components: + - type: Transform + pos: -6.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35959 + components: + - type: Transform + pos: -6.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35960 + components: + - type: Transform + pos: -6.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35962 + components: + - type: Transform + pos: -2.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35963 + components: + - type: Transform + pos: -2.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35964 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36031 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36032 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36033 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36153 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36154 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36390 + components: + - type: Transform + pos: -3.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36392 + components: + - type: Transform + pos: -3.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36393 + components: + - type: Transform + pos: -3.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36394 + components: + - type: Transform + pos: -3.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36396 + components: + - type: Transform + pos: -1.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36397 + components: + - type: Transform + pos: -1.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36398 + components: + - type: Transform + pos: -1.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36399 + components: + - type: Transform + pos: -1.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37500 + components: + - type: Transform + pos: -67.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37789 + components: + - type: Transform + pos: 66.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37940 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37941 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 37842 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 39415 + components: + - type: Transform + pos: -18.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39502 + components: + - type: Transform + pos: -80.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeTJunction + entities: + - uid: 1626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3153 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 3163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-0.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3229 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4471 + components: + - type: Transform + pos: -80.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5172 + components: + - type: Transform + pos: 46.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7638 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8138 + components: + - type: Transform + pos: -79.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8141 + components: + - type: Transform + pos: 89.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,208.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8153 + components: + - type: Transform + pos: -90.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8192 + components: + - type: Transform + pos: -75.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,93.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8203 + components: + - type: Transform + pos: 73.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8206 + components: + - type: Transform + pos: 60.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8209 + components: + - type: Transform + pos: 60.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8213 + components: + - type: Transform + pos: -4.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8214 + components: + - type: Transform + pos: -7.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8218 + components: + - type: Transform + pos: -72.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8219 + components: + - type: Transform + pos: -72.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,206.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8229 + components: + - type: Transform + pos: -21.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8278 + components: + - type: Transform + pos: -72.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8306 + components: + - type: Transform + pos: 71.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8307 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8960 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 8961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,29.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + pos: -102.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,47.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,174.5 + parent: 2 + - uid: 8977 + components: + - type: Transform + pos: 6.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8978 + components: + - type: Transform + pos: -113.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8979 + components: + - type: Transform + pos: -16.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8983 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + pos: -109.5,65.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,3.5 + parent: 2 + - uid: 10063 + components: + - type: Transform + pos: -36.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10317 + components: + - type: Transform + pos: -1.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11937 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12285 + components: + - type: Transform + pos: -105.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12625 + components: + - type: Transform + pos: -86.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12810 + components: + - type: Transform + pos: -1.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 12913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13248 + components: + - type: Transform + pos: -0.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13250 + components: + - type: Transform + pos: -6.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19581 + components: + - type: Transform + pos: 83.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20648 + components: + - type: Transform + pos: -73.5,158.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24112 + components: + - type: Transform + pos: -29.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27455 + components: + - type: Transform + pos: 77.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31192 + components: + - type: Transform + pos: -28.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31226 + components: + - type: Transform + pos: -20.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31383 + components: + - type: Transform + pos: -99.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31664 + components: + - type: Transform + pos: 10.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31676 + components: + - type: Transform + pos: 21.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31784 + components: + - type: Transform + pos: 22.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31834 + components: + - type: Transform + pos: 17.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 31991 + components: + - type: Transform + pos: -7.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32008 + components: + - type: Transform + pos: -3.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,190.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,200.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 32181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,149.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32459 + components: + - type: Transform + pos: 8.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 32482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32572 + components: + - type: Transform + pos: -84.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,162.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32763 + components: + - type: Transform + pos: -86.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32764 + components: + - type: Transform + pos: -89.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32765 + components: + - type: Transform + pos: -92.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32766 + components: + - type: Transform + pos: -82.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,181.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 33157 + components: + - type: Transform + pos: -103.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33166 + components: + - type: Transform + pos: -92.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33170 + components: + - type: Transform + pos: -94.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33493 + components: + - type: Transform + pos: -60.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33497 + components: + - type: Transform + pos: -68.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33507 + components: + - type: Transform + pos: -58.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33762 + components: + - type: Transform + pos: -37.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33763 + components: + - type: Transform + pos: -36.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33782 + components: + - type: Transform + pos: -43.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33793 + components: + - type: Transform + pos: -41.5,101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33863 + components: + - type: Transform + pos: -22.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33876 + components: + - type: Transform + pos: -24.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34007 + components: + - type: Transform + pos: -23.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34015 + components: + - type: Transform + pos: -21.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34027 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34028 + components: + - type: Transform + pos: -17.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34044 + components: + - type: Transform + pos: -11.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34104 + components: + - type: Transform + pos: -6.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34298 + components: + - type: Transform + pos: -11.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36146 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37498 + components: + - type: Transform + pos: -69.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 38377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 39495 + components: + - type: Transform + pos: -88.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 1608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,59.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + anchored: False + pos: -29.5,189.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 12622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,173.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + pos: -90.5,174.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: -86.5,151.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,175.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 13386 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 37842 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 38402 + components: + - type: Transform + pos: -68.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38407 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -26.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 38409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38411 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -85.5,173.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 38414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPressurePump + entities: + - uid: 4050 + components: + - type: Transform + pos: -104.5,28.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,28.5 + parent: 2 + - type: GasPressurePump + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,21.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,22.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,176.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12303 + components: + - type: Transform + pos: -105.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - uid: 12305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12310 + components: + - type: Transform + pos: -111.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - uid: 12313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 12400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,18.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,175.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,173.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,26.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,27.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23421 + components: + - type: Transform + pos: -86.5,150.5 + parent: 2 + - uid: 32175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,199.5 + parent: 2 + - type: GasPressurePump + targetPressure: 105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,11.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,147.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasRecyclerMachineCircuitboard + entities: + - uid: 12293 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasThermoMachineFreezer + entities: + - uid: 768 + components: + - type: Transform + anchored: False + pos: -102.5,30.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 9040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,174.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + pos: 90.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12844 + components: + - type: Transform + anchored: False + pos: -106.5,28.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 23008 + components: + - type: Transform + pos: -23.5,202.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 30859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,12.5 + parent: 2 + - uid: 32277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,145.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 7897 + components: + - type: Transform + anchored: False + pos: -102.5,31.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 12144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15328 + components: + - type: Transform + anchored: False + pos: -105.5,28.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 30860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,11.5 + parent: 2 + - uid: 32279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,146.5 + parent: 2 +- proto: GasValve + entities: + - uid: 18010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasVentPump + entities: + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3165 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3946 + components: + - type: Transform + pos: -73.5,112.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: -58.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6082 + components: + - type: Transform + pos: -44.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8175 + components: + - type: Transform + pos: -67.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8241 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8248 + components: + - type: Transform + pos: 76.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,195.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8252 + components: + - type: Transform + pos: -24.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,168.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8270 + components: + - type: Transform + pos: 72.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8271 + components: + - type: Transform + pos: 69.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,163.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8282 + components: + - type: Transform + pos: -60.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8287 + components: + - type: Transform + pos: -19.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,206.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,64.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: -27.5,4.5 + parent: 2 + - uid: 8991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8996 + components: + - type: Transform + pos: 1.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9005 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + pos: -109.5,48.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9053 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11247 + components: + - type: Transform + pos: -46.5,99.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15213 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -97.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 15343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17314 + components: + - type: Transform + pos: -0.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18722 + components: + - type: Transform + pos: -42.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20204 + components: + - type: Transform + pos: 101.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20206 + components: + - type: Transform + pos: 93.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21177 + components: + - type: Transform + anchored: False + pos: 72.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 22373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22504 + components: + - type: Transform + anchored: False + pos: 72.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 22515 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: 80.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23574 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 55.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23581 + components: + - type: Transform + pos: 79.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25782 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29855 + components: + - type: Transform + pos: -108.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31367 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -20.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 31377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31385 + components: + - type: Transform + pos: -98.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31427 + components: + - type: Transform + pos: -14.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,201.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31829 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 21.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 31843 + components: + - type: Transform + pos: 11.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 31854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32106 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: 0.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32186 + components: + - type: Transform + anchored: False + pos: -23.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32614 + components: + - type: Transform + pos: -88.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32629 + components: + - type: Transform + pos: -78.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32657 + components: + - type: Transform + pos: -71.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32685 + components: + - type: Transform + pos: -60.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,154.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 32798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,161.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33149 + components: + - type: Transform + pos: -90.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33233 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -120.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33234 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -125.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33271 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -117.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33325 + components: + - type: Transform + anchored: False + pos: -118.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33526 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -54.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33598 + components: + - type: Transform + pos: -70.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33725 + components: + - type: Transform + anchored: False + pos: -77.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,97.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33844 + components: + - type: Transform + pos: -47.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 33993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34038 + components: + - type: Transform + pos: -12.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34173 + components: + - type: Transform + pos: -5.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34293 + components: + - type: Transform + pos: -6.5,209.5 + parent: 2 + - type: AtmosPipeColor + color: '#9999FFFF' + - uid: 34317 + components: + - type: Transform + pos: -4.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34341 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -16.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 34380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,197.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34391 + components: + - type: Transform + pos: -18.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 34401 + components: + - type: Transform + pos: 5.5,183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35994 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -6.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 35998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 36395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 37810 + components: + - type: Transform + pos: 65.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 39504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-11.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7646 + components: + - type: Transform + pos: 3.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,207.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8147 + components: + - type: Transform + pos: -36.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,92.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8174 + components: + - type: Transform + pos: -72.5,111.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8176 + components: + - type: Transform + pos: -39.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,160.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8245 + components: + - type: Transform + pos: 70.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8247 + components: + - type: Transform + pos: 62.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8261 + components: + - type: Transform + pos: -68.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8268 + components: + - type: Transform + pos: 97.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8275 + components: + - type: Transform + pos: -58.5,94.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,157.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,170.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,180.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-2.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + - uid: 9013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 9016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,204.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 2 + - uid: 9020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,192.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,193.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9024 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + pos: -108.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,100.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,179.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12148 + components: + - type: Transform + anchored: False + pos: 54.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 12984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,171.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13465 + components: + - type: Transform + pos: -33.5,103.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15354 + components: + - type: Transform + pos: -107.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16470 + components: + - type: Transform + anchored: False + pos: -23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 16680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,110.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18678 + components: + - type: Transform + pos: -38.5,104.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19801 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -120.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 19945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 115.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20203 + components: + - type: Transform + pos: 115.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21086 + components: + - type: Transform + anchored: False + pos: 70.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 21236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22503 + components: + - type: Transform + anchored: False + pos: 70.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 22527 + components: + - type: Transform + pos: 79.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23359 + components: + - type: Transform + pos: -59.5,105.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23550 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 54.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30979 + components: + - type: Transform + pos: -7.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,205.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31629 + components: + - type: Transform + pos: 0.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,199.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,194.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,191.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,186.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,176.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32103 + components: + - type: Transform + anchored: False + parent: 18379 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + bodyType: Dynamic + - type: InsideEntityStorage + - uid: 32187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,198.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32500 + components: + - type: Transform + pos: -59.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32548 + components: + - type: Transform + pos: -79.5,175.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,164.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32615 + components: + - type: Transform + pos: -87.5,177.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32628 + components: + - type: Transform + pos: -80.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32656 + components: + - type: Transform + pos: -70.5,174.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32729 + components: + - type: Transform + pos: -59.5,172.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32730 + components: + - type: Transform + anchored: False + pos: -59.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32745 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -80.5,155.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32757 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -81.5,152.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 32758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,148.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32797 + components: + - type: Transform + pos: -97.5,159.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 32872 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -77.5,147.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33231 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -125.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33270 + components: + - type: Transform + anchored: False + pos: -115.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33334 + components: + - type: Transform + anchored: False + pos: -120.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33416 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -110.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33575 + components: + - type: Transform + pos: -54.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33727 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -76.5,98.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 33757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,90.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33843 + components: + - type: Transform + pos: -46.5,95.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,91.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 33992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,87.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34039 + components: + - type: Transform + pos: -10.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34172 + components: + - type: Transform + pos: -6.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34324 + components: + - type: Transform + pos: -5.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34334 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34384 + components: + - type: Transform + pos: -15.5,196.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 34413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,185.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35602 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35606 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35607 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35620 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35663 + components: + - type: Transform + anchored: False + pos: -49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 35985 + components: + - type: Transform + pos: -7.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35986 + components: + - type: Transform + pos: 1.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 35991 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -2.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 36072 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36125 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36185 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36198 + components: + - type: Transform + anchored: False + pos: 22.5,184.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 36316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,166.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37804 + components: + - type: Transform + pos: 66.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 37943 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 37842 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,169.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: Gateway + entities: + - uid: 4215 + components: + - type: Transform + pos: -31.5,85.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: -84.5,41.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + pos: 66.5,34.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + pos: -13.5,169.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + pos: -64.5,157.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + pos: -31.5,77.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: -49.5,85.5 + parent: 2 + - uid: 21541 + components: + - type: Transform + pos: -40.5,67.5 + parent: 2 + - uid: 21542 + components: + - type: Transform + pos: -49.5,77.5 + parent: 2 +- proto: Gauze1 + entities: + - uid: 22414 + components: + - type: Transform + pos: -9.638313,189.48204 + parent: 2 + - uid: 24219 + components: + - type: Transform + pos: -9.390856,189.71817 + parent: 2 +- proto: GeigerCounter + entities: + - uid: 20367 + components: + - type: Transform + pos: -82.51291,162.51562 + parent: 2 + - uid: 28010 + components: + - type: Transform + pos: -91.27718,48.618988 + parent: 2 +- proto: GeneratorBasic + entities: + - uid: 7704 + components: + - type: Transform + pos: -55.5,128.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + pos: -54.5,128.5 + parent: 2 + - uid: 34522 + components: + - type: Transform + pos: -118.5,105.5 + parent: 2 +- proto: GeneratorRTG + entities: + - uid: 1290 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + pos: 68.5,21.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + pos: -108.5,147.5 + parent: 2 + - uid: 18253 + components: + - type: Transform + pos: -108.5,149.5 + parent: 2 + - uid: 34299 + components: + - type: Transform + pos: 2.5,215.5 + parent: 2 + - uid: 34370 + components: + - type: Transform + pos: 2.5,216.5 + parent: 2 + - uid: 35461 + components: + - type: Transform + pos: 68.5,20.5 + parent: 2 +- proto: GeneratorRTGDamaged + entities: + - uid: 34530 + components: + - type: Transform + pos: -118.5,106.5 + parent: 2 +- proto: GeneratorWallmountAPU + entities: + - uid: 15224 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 13386 + - uid: 15225 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 13386 + - uid: 16786 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 13386 + - uid: 16787 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 13386 + - uid: 30957 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 30902 + - uid: 30958 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 30902 + - uid: 30959 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 30902 + - uid: 30960 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 30902 + - uid: 37945 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 37842 + - uid: 37947 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 37842 + - uid: 43338 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 37842 +- proto: GeneratorWallmountBasic + entities: + - uid: 22065 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 21114 + - uid: 22066 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 21114 + - uid: 22067 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 21114 + - uid: 22068 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 21114 +- proto: Girder + entities: + - uid: 8604 + components: + - type: Transform + pos: -81.5,89.5 + parent: 2 + - uid: 25237 + components: + - type: Transform + pos: -149.5,104.5 + parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 8951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,101.5 + parent: 2 +- proto: GlowstickBase + entities: + - uid: 20954 + components: + - type: Transform + pos: -66.34589,159.57607 + parent: 2 +- proto: GoldOre1 + entities: + - uid: 1493 + components: + - type: Transform + pos: -55.460968,-11.47315 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: -70.475815,-11.475517 + parent: 2 +- proto: GoldRingDiamond + entities: + - uid: 8865 + components: + - type: Transform + pos: -88.65018,86.57472 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 3762 + components: + - type: Transform + pos: -122.5,59.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 16728 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 13386 + - uid: 22069 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 21114 + - uid: 30961 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 30902 + - uid: 37948 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 37842 +- proto: GrenadeFlashBang + entities: + - uid: 5193 + components: + - type: Transform + pos: 53.593315,49.003635 + parent: 2 + - uid: 6534 + components: + - type: Transform + pos: 53.4021,49.689545 + parent: 2 + - uid: 11950 + components: + - type: Transform + pos: 43.318428,57.62426 + parent: 2 + - uid: 36585 + components: + - type: Transform + pos: 43.64373,57.45597 + parent: 2 +- proto: Grille + entities: + - uid: 28 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: -62.5,7.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: -64.5,8.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: -65.5,8.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -66.5,9.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -67.5,10.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -68.5,10.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: -69.5,11.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: -70.5,11.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: -71.5,12.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -64.5,11.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -65.5,12.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -67.5,13.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: -69.5,14.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: -70.5,15.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -71.5,15.5 + parent: 2 + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,87.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: -42.5,79.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -14.5,61.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: -121.5,110.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: -38.5,84.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: -38.5,83.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: -111.5,101.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: -31.5,106.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: -110.5,101.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: -57.5,13.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: -72.5,146.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: 53.5,67.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: 54.5,68.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: 53.5,68.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: 52.5,66.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,35.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: -114.5,57.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: 64.5,69.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: 65.5,69.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,89.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: 65.5,70.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: 66.5,70.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: 67.5,70.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: 68.5,70.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: 69.5,70.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: 70.5,70.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: 72.5,70.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: 73.5,70.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: 74.5,70.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: 75.5,70.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: 76.5,70.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: 77.5,70.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: 77.5,69.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: 78.5,69.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: 63.5,55.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: 81.5,68.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: 82.5,68.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 83.5,68.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 84.5,68.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: 85.5,68.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 86.5,68.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: 63.5,52.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: 86.5,67.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: 87.5,67.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 87.5,66.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 88.5,66.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: 88.5,65.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: 89.5,65.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: 63.5,49.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: 110.5,50.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: 109.5,50.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 104.5,56.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: 106.5,50.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: 105.5,50.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: 108.5,50.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: 74.5,43.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: 87.5,37.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: 88.5,37.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: 89.5,38.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 90.5,39.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: 91.5,40.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: 91.5,41.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: -105.5,103.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: 110.5,56.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: 109.5,56.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: 108.5,56.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: 93.5,50.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: 73.5,50.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: -105.5,102.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: -72.5,173.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 73.5,64.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: 68.5,43.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -9.5,163.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: -109.5,101.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 70.5,42.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: 72.5,42.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: 68.5,44.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: 74.5,44.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 69.5,64.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: -138.5,39.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: -138.5,41.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,89.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 100.5,54.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: 99.5,55.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,17.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,17.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: 100.5,52.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: 93.5,56.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: 99.5,51.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: 104.5,50.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + pos: 105.5,56.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: 106.5,56.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: 100.5,51.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: 100.5,55.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: 101.5,52.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: 101.5,53.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: 101.5,54.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 48.5,44.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: -12.5,166.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: 8.5,63.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: 92.5,26.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: 92.5,25.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: 91.5,25.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: 91.5,24.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: 93.5,25.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: 92.5,9.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: 93.5,9.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: 93.5,10.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: 94.5,10.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: 96.5,12.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: 96.5,13.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: 95.5,12.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: 96.5,15.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: 89.5,9.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: 88.5,9.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: 87.5,9.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: -99.5,62.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + pos: -100.5,62.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + pos: -100.5,63.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: -69.5,128.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: -69.5,129.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: -69.5,130.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: -69.5,131.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: -70.5,130.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -70.5,131.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: -116.5,13.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: -70.5,129.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: -69.5,132.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: 110.5,42.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 107.5,42.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 108.5,42.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: 109.5,42.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: 7.5,63.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: -32.5,56.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + pos: 79.5,37.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,127.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,127.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,127.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,133.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,133.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,133.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,135.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,135.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,135.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,125.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,125.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,125.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,128.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,128.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + pos: -68.5,128.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,132.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,132.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: -68.5,132.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,128.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,132.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + pos: -32.5,177.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: -91.5,157.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: 91.5,39.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,33.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 89.5,37.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 90.5,38.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,27.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,33.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 8665 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,173.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,173.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: -66.5,113.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: -19.5,80.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: -18.5,80.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: -17.5,80.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: -5.5,83.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + pos: -8.5,163.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + pos: -4.5,80.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + pos: -13.5,166.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + pos: -14.5,166.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + pos: -4.5,76.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + pos: -4.5,75.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: -32.5,178.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + pos: 80.5,42.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + pos: -32.5,178.5 + parent: 2 + - uid: 10864 + components: + - type: Transform + pos: -37.5,93.5 + parent: 2 + - uid: 10903 + components: + - type: Transform + pos: -9.5,89.5 + parent: 2 + - uid: 10926 + components: + - type: Transform + pos: -43.5,93.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: -16.5,92.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: -64.5,115.5 + parent: 2 + - uid: 11239 + components: + - type: Transform + pos: -34.5,79.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + pos: -34.5,75.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: -34.5,87.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: -34.5,83.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + pos: 10.5,65.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + pos: -46.5,87.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + pos: -46.5,83.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + pos: -46.5,79.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + pos: -46.5,75.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + pos: -42.5,70.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + pos: -38.5,70.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + pos: 10.5,66.5 + parent: 2 + - uid: 11492 + components: + - type: Transform + pos: 9.5,65.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: -31.5,56.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + pos: -31.5,57.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + pos: -39.5,86.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + pos: -40.5,86.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + pos: -42.5,84.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + pos: -38.5,79.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + pos: -38.5,78.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + pos: -39.5,76.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: -41.5,86.5 + parent: 2 + - uid: 11556 + components: + - type: Transform + pos: -42.5,78.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: -41.5,76.5 + parent: 2 + - uid: 11561 + components: + - type: Transform + pos: -42.5,83.5 + parent: 2 + - uid: 11563 + components: + - type: Transform + pos: 1.5,185.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + pos: -30.5,58.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + pos: -30.5,57.5 + parent: 2 + - uid: 11611 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 11612 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 11613 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 11615 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 11617 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 11634 + components: + - type: Transform + pos: -57.5,59.5 + parent: 2 + - uid: 11635 + components: + - type: Transform + pos: -57.5,60.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: -56.5,60.5 + parent: 2 + - uid: 11683 + components: + - type: Transform + pos: -38.5,95.5 + parent: 2 + - uid: 11684 + components: + - type: Transform + pos: -38.5,94.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + pos: -42.5,95.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: -42.5,94.5 + parent: 2 + - uid: 11761 + components: + - type: Transform + pos: -41.5,111.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + pos: -58.5,59.5 + parent: 2 + - uid: 11972 + components: + - type: Transform + pos: -30.5,92.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + pos: -29.5,92.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + pos: -28.5,92.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + pos: -27.5,92.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + pos: -61.5,60.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + pos: -60.5,59.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + pos: -62.5,60.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + pos: -61.5,59.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + pos: -59.5,59.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + pos: -16.5,94.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + pos: 1.5,184.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + pos: 1.5,183.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,17.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,17.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,17.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,17.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,17.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,89.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + pos: 51.5,66.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + pos: -45.5,110.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + pos: -34.5,109.5 + parent: 2 + - uid: 13254 + components: + - type: Transform + pos: -35.5,110.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: -5.5,70.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + pos: -97.5,69.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + pos: -97.5,70.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + pos: -96.5,70.5 + parent: 2 + - uid: 13420 + components: + - type: Transform + pos: -8.5,89.5 + parent: 2 + - uid: 13423 + components: + - type: Transform + pos: -7.5,89.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + pos: -30.5,106.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + pos: -29.5,106.5 + parent: 2 + - uid: 13498 + components: + - type: Transform + pos: -28.5,106.5 + parent: 2 + - uid: 13499 + components: + - type: Transform + pos: -27.5,106.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + pos: -27.5,105.5 + parent: 2 + - uid: 13501 + components: + - type: Transform + pos: -26.5,105.5 + parent: 2 + - uid: 13503 + components: + - type: Transform + pos: -25.5,104.5 + parent: 2 + - uid: 13504 + components: + - type: Transform + pos: -25.5,103.5 + parent: 2 + - uid: 13505 + components: + - type: Transform + pos: -24.5,103.5 + parent: 2 + - uid: 13506 + components: + - type: Transform + pos: -24.5,102.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: -51.5,92.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: -50.5,92.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: -52.5,92.5 + parent: 2 + - uid: 13782 + components: + - type: Transform + pos: -63.5,115.5 + parent: 2 + - uid: 13791 + components: + - type: Transform + pos: -65.5,114.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: -66.5,114.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: -126.5,97.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + pos: 77.5,37.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + pos: 51.5,64.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + pos: -76.5,76.5 + parent: 2 + - uid: 14620 + components: + - type: Transform + pos: -77.5,76.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + pos: -74.5,76.5 + parent: 2 + - uid: 14622 + components: + - type: Transform + pos: -75.5,76.5 + parent: 2 + - uid: 14623 + components: + - type: Transform + pos: -73.5,76.5 + parent: 2 + - uid: 14898 + components: + - type: Transform + pos: -69.5,69.5 + parent: 2 + - uid: 14899 + components: + - type: Transform + pos: -92.5,142.5 + parent: 2 + - uid: 14900 + components: + - type: Transform + pos: -91.5,142.5 + parent: 2 + - uid: 14901 + components: + - type: Transform + pos: -89.5,142.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + pos: -90.5,142.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: -134.5,27.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 13386 + - uid: 15339 + components: + - type: Transform + pos: 51.5,65.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + pos: -69.5,173.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + pos: -70.5,69.5 + parent: 2 + - uid: 15381 + components: + - type: Transform + pos: -88.5,81.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 13386 + - uid: 15468 + components: + - type: Transform + pos: -53.5,92.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + pos: 2.5,3.5 + parent: 13386 + - uid: 15488 + components: + - type: Transform + pos: 1.5,4.5 + parent: 13386 + - uid: 15489 + components: + - type: Transform + pos: 0.5,4.5 + parent: 13386 + - uid: 15500 + components: + - type: Transform + pos: -142.5,90.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + pos: -0.5,4.5 + parent: 13386 + - uid: 15536 + components: + - type: Transform + pos: -140.5,104.5 + parent: 2 + - uid: 15549 + components: + - type: Transform + pos: -2.5,3.5 + parent: 13386 + - uid: 15598 + components: + - type: Transform + pos: -141.5,104.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + pos: -2.5,4.5 + parent: 13386 + - uid: 15608 + components: + - type: Transform + pos: -2.5,5.5 + parent: 13386 + - uid: 15629 + components: + - type: Transform + pos: -2.5,6.5 + parent: 13386 + - uid: 15651 + components: + - type: Transform + pos: -1.5,6.5 + parent: 13386 + - uid: 15652 + components: + - type: Transform + pos: -0.5,6.5 + parent: 13386 + - uid: 15653 + components: + - type: Transform + pos: -0.5,5.5 + parent: 13386 + - uid: 15810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 13386 + - uid: 16263 + components: + - type: Transform + pos: -95.5,70.5 + parent: 2 + - uid: 16268 + components: + - type: Transform + pos: -95.5,71.5 + parent: 2 + - uid: 16269 + components: + - type: Transform + pos: -84.5,62.5 + parent: 2 + - uid: 16275 + components: + - type: Transform + pos: -85.5,62.5 + parent: 2 + - uid: 16276 + components: + - type: Transform + pos: -85.5,61.5 + parent: 2 + - uid: 16277 + components: + - type: Transform + pos: -86.5,61.5 + parent: 2 + - uid: 16278 + components: + - type: Transform + pos: -80.5,64.5 + parent: 2 + - uid: 16279 + components: + - type: Transform + pos: -90.5,59.5 + parent: 2 + - uid: 16280 + components: + - type: Transform + pos: -91.5,59.5 + parent: 2 + - uid: 16281 + components: + - type: Transform + pos: -91.5,58.5 + parent: 2 + - uid: 16282 + components: + - type: Transform + pos: -92.5,58.5 + parent: 2 + - uid: 16296 + components: + - type: Transform + pos: -79.5,64.5 + parent: 2 + - uid: 16297 + components: + - type: Transform + pos: -79.5,65.5 + parent: 2 + - uid: 16298 + components: + - type: Transform + pos: -78.5,65.5 + parent: 2 + - uid: 16317 + components: + - type: Transform + pos: -81.5,70.5 + parent: 2 + - uid: 16318 + components: + - type: Transform + pos: -80.5,69.5 + parent: 2 + - uid: 16322 + components: + - type: Transform + pos: -91.5,72.5 + parent: 2 + - uid: 16326 + components: + - type: Transform + pos: -91.5,73.5 + parent: 2 + - uid: 16327 + components: + - type: Transform + pos: -90.5,73.5 + parent: 2 + - uid: 16328 + components: + - type: Transform + pos: -89.5,73.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + pos: -92.5,75.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: -96.5,74.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + pos: -96.5,73.5 + parent: 2 + - uid: 16357 + components: + - type: Transform + pos: -97.5,73.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + pos: -98.5,73.5 + parent: 2 + - uid: 16359 + components: + - type: Transform + pos: -98.5,72.5 + parent: 2 + - uid: 16364 + components: + - type: Transform + pos: -102.5,71.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + pos: -102.5,70.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + pos: -103.5,70.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + pos: -104.5,70.5 + parent: 2 + - uid: 16368 + components: + - type: Transform + pos: -104.5,69.5 + parent: 2 + - uid: 16370 + components: + - type: Transform + pos: -91.5,76.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + pos: -108.5,68.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + pos: -108.5,67.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: -109.5,67.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: -110.5,67.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + pos: -92.5,76.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + pos: -85.5,58.5 + parent: 2 + - uid: 16420 + components: + - type: Transform + pos: -84.5,58.5 + parent: 2 + - uid: 16421 + components: + - type: Transform + pos: -84.5,59.5 + parent: 2 + - uid: 16422 + components: + - type: Transform + pos: -83.5,59.5 + parent: 2 + - uid: 16423 + components: + - type: Transform + pos: -79.5,61.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + pos: -78.5,61.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: -78.5,62.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: -77.5,62.5 + parent: 2 + - uid: 16475 + components: + - type: Transform + pos: -46.5,109.5 + parent: 2 + - uid: 16476 + components: + - type: Transform + pos: -42.5,111.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + pos: -83.5,66.5 + parent: 2 + - uid: 16512 + components: + - type: Transform + pos: -84.5,67.5 + parent: 2 + - uid: 16513 + components: + - type: Transform + pos: -84.5,68.5 + parent: 2 + - uid: 16514 + components: + - type: Transform + pos: -85.5,69.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + pos: -87.5,73.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + pos: -83.5,65.5 + parent: 2 + - uid: 16520 + components: + - type: Transform + pos: -82.5,64.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + pos: -88.5,61.5 + parent: 2 + - uid: 16522 + components: + - type: Transform + pos: -89.5,62.5 + parent: 2 + - uid: 16523 + components: + - type: Transform + pos: -89.5,63.5 + parent: 2 + - uid: 16524 + components: + - type: Transform + pos: -90.5,64.5 + parent: 2 + - uid: 16525 + components: + - type: Transform + pos: -90.5,65.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + pos: -91.5,66.5 + parent: 2 + - uid: 16527 + components: + - type: Transform + pos: -91.5,67.5 + parent: 2 + - uid: 16528 + components: + - type: Transform + pos: -92.5,68.5 + parent: 2 + - uid: 16529 + components: + - type: Transform + pos: -92.5,69.5 + parent: 2 + - uid: 16530 + components: + - type: Transform + pos: -93.5,70.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: -96.5,61.5 + parent: 2 + - uid: 16532 + components: + - type: Transform + pos: -96.5,62.5 + parent: 2 + - uid: 16533 + components: + - type: Transform + pos: -95.5,60.5 + parent: 2 + - uid: 16534 + components: + - type: Transform + pos: -95.5,59.5 + parent: 2 + - uid: 16535 + components: + - type: Transform + pos: -94.5,58.5 + parent: 2 + - uid: 16536 + components: + - type: Transform + pos: -97.5,63.5 + parent: 2 + - uid: 16537 + components: + - type: Transform + pos: -97.5,64.5 + parent: 2 + - uid: 16538 + components: + - type: Transform + pos: -98.5,65.5 + parent: 2 + - uid: 16539 + components: + - type: Transform + pos: -98.5,66.5 + parent: 2 + - uid: 16540 + components: + - type: Transform + pos: -99.5,67.5 + parent: 2 + - uid: 16691 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 16693 + components: + - type: Transform + pos: -35.5,109.5 + parent: 2 + - uid: 16695 + components: + - type: Transform + pos: -36.5,110.5 + parent: 2 + - uid: 16696 + components: + - type: Transform + pos: -37.5,110.5 + parent: 2 + - uid: 16697 + components: + - type: Transform + pos: -38.5,110.5 + parent: 2 + - uid: 16701 + components: + - type: Transform + pos: -42.5,110.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + pos: -43.5,110.5 + parent: 2 + - uid: 16703 + components: + - type: Transform + pos: -44.5,110.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + pos: -45.5,109.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + pos: -46.5,108.5 + parent: 2 + - uid: 16964 + components: + - type: Transform + pos: -133.5,104.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + pos: -134.5,104.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + pos: -32.5,106.5 + parent: 2 + - uid: 17079 + components: + - type: Transform + pos: -144.5,90.5 + parent: 2 + - uid: 17116 + components: + - type: Transform + pos: -115.5,11.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + pos: -132.5,104.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + pos: -129.5,99.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + pos: -76.5,187.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + pos: -65.5,115.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: -81.5,187.5 + parent: 2 + - uid: 17567 + components: + - type: Transform + pos: -77.5,187.5 + parent: 2 + - uid: 17592 + components: + - type: Transform + pos: -16.5,61.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + pos: -13.5,60.5 + parent: 2 + - uid: 17675 + components: + - type: Transform + pos: -14.5,60.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + pos: -15.5,60.5 + parent: 2 + - uid: 17679 + components: + - type: Transform + pos: -17.5,60.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + pos: -16.5,60.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + pos: -120.5,67.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + pos: -119.5,67.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: -126.5,96.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + pos: -80.5,187.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + pos: -110.5,90.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + pos: -109.5,90.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + pos: -106.5,90.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + pos: -107.5,90.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: -104.5,90.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + pos: -103.5,90.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: -92.5,158.5 + parent: 2 + - uid: 17982 + components: + - type: Transform + pos: -118.5,67.5 + parent: 2 + - uid: 18016 + components: + - type: Transform + pos: -126.5,98.5 + parent: 2 + - uid: 18026 + components: + - type: Transform + pos: -83.5,149.5 + parent: 2 + - uid: 18038 + components: + - type: Transform + pos: -132.5,28.5 + parent: 2 + - uid: 18063 + components: + - type: Transform + pos: -134.5,23.5 + parent: 2 + - uid: 18087 + components: + - type: Transform + pos: -79.5,149.5 + parent: 2 + - uid: 18107 + components: + - type: Transform + pos: -86.5,149.5 + parent: 2 + - uid: 18142 + components: + - type: Transform + pos: -6.5,187.5 + parent: 2 + - uid: 18150 + components: + - type: Transform + pos: -76.5,186.5 + parent: 2 + - uid: 18183 + components: + - type: Transform + pos: -75.5,185.5 + parent: 2 + - uid: 18198 + components: + - type: Transform + pos: -132.5,25.5 + parent: 2 + - uid: 18201 + components: + - type: Transform + pos: -51.5,155.5 + parent: 2 + - uid: 18203 + components: + - type: Transform + pos: -51.5,156.5 + parent: 2 + - uid: 18205 + components: + - type: Transform + pos: -51.5,154.5 + parent: 2 + - uid: 18252 + components: + - type: Transform + pos: -104.5,150.5 + parent: 2 + - uid: 18255 + components: + - type: Transform + pos: -107.5,150.5 + parent: 2 + - uid: 18259 + components: + - type: Transform + pos: -105.5,150.5 + parent: 2 + - uid: 18265 + components: + - type: Transform + pos: -132.5,24.5 + parent: 2 + - uid: 18283 + components: + - type: Transform + pos: -106.5,150.5 + parent: 2 + - uid: 18285 + components: + - type: Transform + pos: -132.5,26.5 + parent: 2 + - uid: 18298 + components: + - type: Transform + pos: -114.5,121.5 + parent: 2 + - uid: 18323 + components: + - type: Transform + pos: -83.5,185.5 + parent: 2 + - uid: 18345 + components: + - type: Transform + pos: -92.5,149.5 + parent: 2 + - uid: 18481 + components: + - type: Transform + pos: -83.5,184.5 + parent: 2 + - uid: 18515 + components: + - type: Transform + pos: -78.5,187.5 + parent: 2 + - uid: 18521 + components: + - type: Transform + pos: -82.5,186.5 + parent: 2 + - uid: 18522 + components: + - type: Transform + pos: -82.5,187.5 + parent: 2 + - uid: 18538 + components: + - type: Transform + pos: -75.5,184.5 + parent: 2 + - uid: 18604 + components: + - type: Transform + pos: -132.5,27.5 + parent: 2 + - uid: 18664 + components: + - type: Transform + pos: -8.5,187.5 + parent: 2 + - uid: 18675 + components: + - type: Transform + pos: -7.5,187.5 + parent: 2 + - uid: 18694 + components: + - type: Transform + pos: -102.5,101.5 + parent: 2 + - uid: 18741 + components: + - type: Transform + pos: -52.5,150.5 + parent: 2 + - uid: 18746 + components: + - type: Transform + pos: -51.5,150.5 + parent: 2 + - uid: 18802 + components: + - type: Transform + pos: -101.5,101.5 + parent: 2 + - uid: 18834 + components: + - type: Transform + pos: -134.5,25.5 + parent: 2 + - uid: 18839 + components: + - type: Transform + pos: -134.5,24.5 + parent: 2 + - uid: 18841 + components: + - type: Transform + pos: -134.5,26.5 + parent: 2 + - uid: 18851 + components: + - type: Transform + pos: -134.5,29.5 + parent: 2 + - uid: 18900 + components: + - type: Transform + pos: -134.5,28.5 + parent: 2 + - uid: 19040 + components: + - type: Transform + pos: -88.5,84.5 + parent: 2 + - uid: 19136 + components: + - type: Transform + pos: -22.5,200.5 + parent: 2 + - uid: 19307 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 19316 + components: + - type: Transform + pos: -6.5,177.5 + parent: 2 + - uid: 19330 + components: + - type: Transform + pos: -6.5,178.5 + parent: 2 + - uid: 19331 + components: + - type: Transform + pos: -6.5,179.5 + parent: 2 + - uid: 19332 + components: + - type: Transform + pos: -6.5,180.5 + parent: 2 + - uid: 19334 + components: + - type: Transform + pos: -6.5,181.5 + parent: 2 + - uid: 19434 + components: + - type: Transform + pos: -74.5,153.5 + parent: 2 + - uid: 19439 + components: + - type: Transform + pos: -74.5,154.5 + parent: 2 + - uid: 19722 + components: + - type: Transform + pos: -89.5,154.5 + parent: 2 + - uid: 19745 + components: + - type: Transform + pos: -92.5,159.5 + parent: 2 + - uid: 19746 + components: + - type: Transform + pos: -87.5,161.5 + parent: 2 + - uid: 19751 + components: + - type: Transform + pos: -85.5,161.5 + parent: 2 + - uid: 19759 + components: + - type: Transform + pos: -84.5,161.5 + parent: 2 + - uid: 19761 + components: + - type: Transform + pos: -86.5,161.5 + parent: 2 + - uid: 19768 + components: + - type: Transform + pos: -88.5,161.5 + parent: 2 + - uid: 19770 + components: + - type: Transform + pos: -89.5,161.5 + parent: 2 + - uid: 19775 + components: + - type: Transform + pos: -90.5,157.5 + parent: 2 + - uid: 19776 + components: + - type: Transform + pos: -89.5,156.5 + parent: 2 + - uid: 19923 + components: + - type: Transform + pos: -92.5,160.5 + parent: 2 + - uid: 19950 + components: + - type: Transform + pos: -89.5,157.5 + parent: 2 + - uid: 20093 + components: + - type: Transform + pos: -83.5,186.5 + parent: 2 + - uid: 20103 + components: + - type: Transform + pos: -75.5,186.5 + parent: 2 + - uid: 20233 + components: + - type: Transform + pos: -109.5,133.5 + parent: 2 + - uid: 20235 + components: + - type: Transform + pos: -109.5,132.5 + parent: 2 + - uid: 20236 + components: + - type: Transform + pos: -110.5,131.5 + parent: 2 + - uid: 20237 + components: + - type: Transform + pos: -110.5,130.5 + parent: 2 + - uid: 20238 + components: + - type: Transform + pos: -110.5,129.5 + parent: 2 + - uid: 20239 + components: + - type: Transform + pos: -111.5,128.5 + parent: 2 + - uid: 20240 + components: + - type: Transform + pos: -111.5,127.5 + parent: 2 + - uid: 20241 + components: + - type: Transform + pos: -112.5,126.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + pos: -112.5,125.5 + parent: 2 + - uid: 20243 + components: + - type: Transform + pos: -113.5,124.5 + parent: 2 + - uid: 20244 + components: + - type: Transform + pos: -113.5,123.5 + parent: 2 + - uid: 20245 + components: + - type: Transform + pos: -113.5,122.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + pos: -114.5,120.5 + parent: 2 + - uid: 20247 + components: + - type: Transform + pos: -114.5,119.5 + parent: 2 + - uid: 20248 + components: + - type: Transform + pos: -115.5,118.5 + parent: 2 + - uid: 20249 + components: + - type: Transform + pos: -115.5,117.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + pos: -115.5,116.5 + parent: 2 + - uid: 20251 + components: + - type: Transform + pos: -116.5,115.5 + parent: 2 + - uid: 20252 + components: + - type: Transform + pos: -116.5,114.5 + parent: 2 + - uid: 20253 + components: + - type: Transform + pos: -116.5,113.5 + parent: 2 + - uid: 20254 + components: + - type: Transform + pos: -117.5,112.5 + parent: 2 + - uid: 20255 + components: + - type: Transform + pos: -117.5,111.5 + parent: 2 + - uid: 20256 + components: + - type: Transform + pos: -114.5,111.5 + parent: 2 + - uid: 20257 + components: + - type: Transform + pos: -114.5,112.5 + parent: 2 + - uid: 20258 + components: + - type: Transform + pos: -114.5,113.5 + parent: 2 + - uid: 20259 + components: + - type: Transform + pos: -113.5,114.5 + parent: 2 + - uid: 20260 + components: + - type: Transform + pos: -113.5,115.5 + parent: 2 + - uid: 20261 + components: + - type: Transform + pos: -113.5,116.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + pos: -112.5,117.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + pos: -112.5,118.5 + parent: 2 + - uid: 20264 + components: + - type: Transform + pos: -112.5,119.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + pos: -111.5,120.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + pos: -111.5,121.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + pos: -111.5,122.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + pos: -110.5,123.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + pos: -110.5,124.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + pos: -109.5,126.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + pos: -109.5,125.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + pos: -108.5,127.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + pos: -108.5,128.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + pos: -106.5,132.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + pos: -108.5,129.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + pos: -107.5,130.5 + parent: 2 + - uid: 20277 + components: + - type: Transform + pos: -107.5,131.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + pos: -105.5,133.5 + parent: 2 + - uid: 20280 + components: + - type: Transform + pos: -105.5,134.5 + parent: 2 + - uid: 20281 + components: + - type: Transform + pos: -104.5,135.5 + parent: 2 + - uid: 20282 + components: + - type: Transform + pos: -108.5,134.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + pos: -97.5,173.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + pos: -96.5,173.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + pos: -95.5,173.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + pos: -97.5,177.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + pos: -96.5,177.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + pos: -95.5,177.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + pos: -98.5,171.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + pos: -99.5,169.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + pos: -99.5,170.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + pos: -91.5,181.5 + parent: 2 + - uid: 20439 + components: + - type: Transform + pos: -91.5,180.5 + parent: 2 + - uid: 20440 + components: + - type: Transform + pos: -97.5,171.5 + parent: 2 + - uid: 20441 + components: + - type: Transform + pos: -96.5,171.5 + parent: 2 + - uid: 20442 + components: + - type: Transform + pos: -95.5,171.5 + parent: 2 + - uid: 20447 + components: + - type: Transform + pos: -98.5,170.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + pos: -91.5,175.5 + parent: 2 + - uid: 20456 + components: + - type: Transform + pos: -99.5,168.5 + parent: 2 + - uid: 20457 + components: + - type: Transform + pos: -99.5,167.5 + parent: 2 + - uid: 20466 + components: + - type: Transform + pos: -81.5,69.5 + parent: 2 + - uid: 20484 + components: + - type: Transform + pos: -138.5,49.5 + parent: 2 + - uid: 20485 + components: + - type: Transform + pos: -67.5,181.5 + parent: 2 + - uid: 20521 + components: + - type: Transform + pos: -85.5,183.5 + parent: 2 + - uid: 20522 + components: + - type: Transform + pos: -86.5,183.5 + parent: 2 + - uid: 20523 + components: + - type: Transform + pos: -87.5,183.5 + parent: 2 + - uid: 20524 + components: + - type: Transform + pos: -88.5,183.5 + parent: 2 + - uid: 20525 + components: + - type: Transform + pos: -89.5,183.5 + parent: 2 + - uid: 20526 + components: + - type: Transform + pos: -89.5,182.5 + parent: 2 + - uid: 20527 + components: + - type: Transform + pos: -90.5,182.5 + parent: 2 + - uid: 20528 + components: + - type: Transform + pos: -90.5,181.5 + parent: 2 + - uid: 20564 + components: + - type: Transform + pos: -72.5,183.5 + parent: 2 + - uid: 20565 + components: + - type: Transform + pos: -71.5,183.5 + parent: 2 + - uid: 20566 + components: + - type: Transform + pos: -70.5,183.5 + parent: 2 + - uid: 20567 + components: + - type: Transform + pos: -73.5,183.5 + parent: 2 + - uid: 20568 + components: + - type: Transform + pos: -68.5,181.5 + parent: 2 + - uid: 20569 + components: + - type: Transform + pos: -69.5,182.5 + parent: 2 + - uid: 20570 + components: + - type: Transform + pos: -68.5,182.5 + parent: 2 + - uid: 20571 + components: + - type: Transform + pos: -69.5,183.5 + parent: 2 + - uid: 20577 + components: + - type: Transform + pos: -67.5,155.5 + parent: 2 + - uid: 20608 + components: + - type: Transform + pos: -67.5,180.5 + parent: 2 + - uid: 20612 + components: + - type: Transform + pos: -62.5,175.5 + parent: 2 + - uid: 20616 + components: + - type: Transform + pos: -58.5,175.5 + parent: 2 + - uid: 20617 + components: + - type: Transform + pos: -59.5,175.5 + parent: 2 + - uid: 20639 + components: + - type: Transform + pos: -58.5,156.5 + parent: 2 + - uid: 20640 + components: + - type: Transform + pos: -58.5,158.5 + parent: 2 + - uid: 20641 + components: + - type: Transform + pos: -58.5,157.5 + parent: 2 + - uid: 20686 + components: + - type: Transform + pos: -67.5,159.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + pos: -62.5,150.5 + parent: 2 + - uid: 20789 + components: + - type: Transform + pos: -104.5,146.5 + parent: 2 + - uid: 20790 + components: + - type: Transform + pos: -105.5,146.5 + parent: 2 + - uid: 20842 + components: + - type: Transform + pos: -61.5,150.5 + parent: 2 + - uid: 20846 + components: + - type: Transform + pos: -63.5,150.5 + parent: 2 + - uid: 20861 + components: + - type: Transform + pos: -60.5,175.5 + parent: 2 + - uid: 21117 + components: + - type: Transform + pos: -56.5,182.5 + parent: 2 + - uid: 21118 + components: + - type: Transform + pos: -55.5,182.5 + parent: 2 + - uid: 21119 + components: + - type: Transform + pos: -54.5,182.5 + parent: 2 + - uid: 21120 + components: + - type: Transform + pos: -53.5,182.5 + parent: 2 + - uid: 21121 + components: + - type: Transform + pos: -52.5,182.5 + parent: 2 + - uid: 21122 + components: + - type: Transform + pos: -51.5,183.5 + parent: 2 + - uid: 21123 + components: + - type: Transform + pos: -50.5,183.5 + parent: 2 + - uid: 21124 + components: + - type: Transform + pos: -49.5,183.5 + parent: 2 + - uid: 21125 + components: + - type: Transform + pos: -48.5,183.5 + parent: 2 + - uid: 21126 + components: + - type: Transform + pos: -47.5,184.5 + parent: 2 + - uid: 21127 + components: + - type: Transform + pos: -46.5,184.5 + parent: 2 + - uid: 21128 + components: + - type: Transform + pos: -45.5,184.5 + parent: 2 + - uid: 21129 + components: + - type: Transform + pos: -44.5,184.5 + parent: 2 + - uid: 21130 + components: + - type: Transform + pos: -43.5,184.5 + parent: 2 + - uid: 21131 + components: + - type: Transform + pos: -43.5,181.5 + parent: 2 + - uid: 21132 + components: + - type: Transform + pos: -44.5,181.5 + parent: 2 + - uid: 21133 + components: + - type: Transform + pos: -45.5,181.5 + parent: 2 + - uid: 21134 + components: + - type: Transform + pos: -46.5,181.5 + parent: 2 + - uid: 21135 + components: + - type: Transform + pos: -47.5,181.5 + parent: 2 + - uid: 21136 + components: + - type: Transform + pos: -48.5,181.5 + parent: 2 + - uid: 21137 + components: + - type: Transform + pos: -49.5,180.5 + parent: 2 + - uid: 21138 + components: + - type: Transform + pos: -50.5,180.5 + parent: 2 + - uid: 21139 + components: + - type: Transform + pos: -51.5,180.5 + parent: 2 + - uid: 21140 + components: + - type: Transform + pos: -52.5,179.5 + parent: 2 + - uid: 21141 + components: + - type: Transform + pos: -53.5,179.5 + parent: 2 + - uid: 21142 + components: + - type: Transform + pos: -54.5,179.5 + parent: 2 + - uid: 21143 + components: + - type: Transform + pos: -55.5,179.5 + parent: 2 + - uid: 21144 + components: + - type: Transform + pos: -56.5,179.5 + parent: 2 + - uid: 21175 + components: + - type: Transform + pos: -57.5,181.5 + parent: 2 + - uid: 21176 + components: + - type: Transform + pos: -58.5,181.5 + parent: 2 + - uid: 21415 + components: + - type: Transform + pos: -133.5,78.5 + parent: 2 + - uid: 21861 + components: + - type: Transform + pos: -132.5,77.5 + parent: 2 + - uid: 22070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 21114 + - uid: 22071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 21114 + - uid: 22072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 21114 + - uid: 22073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 21114 + - uid: 22115 + components: + - type: Transform + pos: -74.5,152.5 + parent: 2 + - uid: 22215 + components: + - type: Transform + pos: -134.5,73.5 + parent: 2 + - uid: 22216 + components: + - type: Transform + pos: -128.5,68.5 + parent: 2 + - uid: 22217 + components: + - type: Transform + pos: -128.5,69.5 + parent: 2 + - uid: 22218 + components: + - type: Transform + pos: -129.5,65.5 + parent: 2 + - uid: 22219 + components: + - type: Transform + pos: -129.5,70.5 + parent: 2 + - uid: 22220 + components: + - type: Transform + pos: -130.5,71.5 + parent: 2 + - uid: 22221 + components: + - type: Transform + pos: -130.5,73.5 + parent: 2 + - uid: 22226 + components: + - type: Transform + pos: -132.5,76.5 + parent: 2 + - uid: 22228 + components: + - type: Transform + pos: -133.5,79.5 + parent: 2 + - uid: 22231 + components: + - type: Transform + pos: -129.5,66.5 + parent: 2 + - uid: 22232 + components: + - type: Transform + pos: -131.5,67.5 + parent: 2 + - uid: 22233 + components: + - type: Transform + pos: -131.5,68.5 + parent: 2 + - uid: 22234 + components: + - type: Transform + pos: -132.5,69.5 + parent: 2 + - uid: 22235 + components: + - type: Transform + pos: -133.5,70.5 + parent: 2 + - uid: 22236 + components: + - type: Transform + pos: -133.5,71.5 + parent: 2 + - uid: 22241 + components: + - type: Transform + pos: -131.5,74.5 + parent: 2 + - uid: 22243 + components: + - type: Transform + pos: -135.5,76.5 + parent: 2 + - uid: 22244 + components: + - type: Transform + pos: -136.5,77.5 + parent: 2 + - uid: 22248 + components: + - type: Transform + pos: -136.5,78.5 + parent: 2 + - uid: 22249 + components: + - type: Transform + pos: -132.5,75.5 + parent: 2 + - uid: 22250 + components: + - type: Transform + pos: -136.5,79.5 + parent: 2 + - uid: 22278 + components: + - type: Transform + pos: -133.5,72.5 + parent: 2 + - uid: 22281 + components: + - type: Transform + pos: -130.5,72.5 + parent: 2 + - uid: 22282 + components: + - type: Transform + pos: -131.5,75.5 + parent: 2 + - uid: 22297 + components: + - type: Transform + pos: -130.5,66.5 + parent: 2 + - uid: 22298 + components: + - type: Transform + pos: -130.5,65.5 + parent: 2 + - uid: 22300 + components: + - type: Transform + pos: -127.5,67.5 + parent: 2 + - uid: 22310 + components: + - type: Transform + pos: -42.5,185.5 + parent: 2 + - uid: 22311 + components: + - type: Transform + pos: -41.5,185.5 + parent: 2 + - uid: 22312 + components: + - type: Transform + pos: -40.5,185.5 + parent: 2 + - uid: 22313 + components: + - type: Transform + pos: -39.5,185.5 + parent: 2 + - uid: 22320 + components: + - type: Transform + pos: -42.5,182.5 + parent: 2 + - uid: 22321 + components: + - type: Transform + pos: -41.5,182.5 + parent: 2 + - uid: 22322 + components: + - type: Transform + pos: -40.5,182.5 + parent: 2 + - uid: 22323 + components: + - type: Transform + pos: -39.5,182.5 + parent: 2 + - uid: 22324 + components: + - type: Transform + pos: -38.5,182.5 + parent: 2 + - uid: 22325 + components: + - type: Transform + pos: -37.5,182.5 + parent: 2 + - uid: 22390 + components: + - type: Transform + pos: -1.5,197.5 + parent: 2 + - uid: 22674 + components: + - type: Transform + pos: -126.5,66.5 + parent: 2 + - uid: 22750 + components: + - type: Transform + pos: -16.5,190.5 + parent: 2 + - uid: 22754 + components: + - type: Transform + pos: -14.5,190.5 + parent: 2 + - uid: 22767 + components: + - type: Transform + pos: -10.5,171.5 + parent: 2 + - uid: 22818 + components: + - type: Transform + pos: -18.5,190.5 + parent: 2 + - uid: 22819 + components: + - type: Transform + pos: -20.5,190.5 + parent: 2 + - uid: 22965 + components: + - type: Transform + pos: 0.5,195.5 + parent: 2 + - uid: 22966 + components: + - type: Transform + pos: 1.5,195.5 + parent: 2 + - uid: 23039 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 + - uid: 23133 + components: + - type: Transform + pos: -2.5,168.5 + parent: 2 + - uid: 23138 + components: + - type: Transform + pos: -22.5,210.5 + parent: 2 + - uid: 23139 + components: + - type: Transform + pos: -24.5,210.5 + parent: 2 + - uid: 23140 + components: + - type: Transform + pos: -23.5,210.5 + parent: 2 + - uid: 23201 + components: + - type: Transform + pos: -99.5,61.5 + parent: 2 + - uid: 23272 + components: + - type: Transform + pos: -16.5,202.5 + parent: 2 + - uid: 23273 + components: + - type: Transform + pos: -17.5,202.5 + parent: 2 + - uid: 23274 + components: + - type: Transform + pos: -14.5,202.5 + parent: 2 + - uid: 23275 + components: + - type: Transform + pos: -15.5,202.5 + parent: 2 + - uid: 23376 + components: + - type: Transform + pos: -14.5,72.5 + parent: 2 + - uid: 23380 + components: + - type: Transform + pos: -17.5,72.5 + parent: 2 + - uid: 23409 + components: + - type: Transform + pos: -1.5,198.5 + parent: 2 + - uid: 23413 + components: + - type: Transform + pos: -1.5,199.5 + parent: 2 + - uid: 23444 + components: + - type: Transform + pos: -11.5,214.5 + parent: 2 + - uid: 23453 + components: + - type: Transform + pos: -7.5,214.5 + parent: 2 + - uid: 23457 + components: + - type: Transform + pos: -10.5,214.5 + parent: 2 + - uid: 23461 + components: + - type: Transform + pos: -5.5,214.5 + parent: 2 + - uid: 23463 + components: + - type: Transform + pos: -6.5,214.5 + parent: 2 + - uid: 23465 + components: + - type: Transform + pos: -9.5,214.5 + parent: 2 + - uid: 23466 + components: + - type: Transform + pos: -4.5,214.5 + parent: 2 + - uid: 23471 + components: + - type: Transform + pos: -8.5,214.5 + parent: 2 + - uid: 23475 + components: + - type: Transform + pos: -22.5,201.5 + parent: 2 + - uid: 23493 + components: + - type: Transform + pos: 5.5,211.5 + parent: 2 + - uid: 23494 + components: + - type: Transform + pos: 6.5,210.5 + parent: 2 + - uid: 23496 + components: + - type: Transform + pos: 6.5,211.5 + parent: 2 + - uid: 23562 + components: + - type: Transform + pos: 17.5,196.5 + parent: 2 + - uid: 23563 + components: + - type: Transform + pos: 18.5,196.5 + parent: 2 + - uid: 23566 + components: + - type: Transform + pos: 15.5,194.5 + parent: 2 + - uid: 23567 + components: + - type: Transform + pos: 15.5,195.5 + parent: 2 + - uid: 23599 + components: + - type: Transform + pos: 8.5,186.5 + parent: 2 + - uid: 23628 + components: + - type: Transform + pos: 18.5,189.5 + parent: 2 + - uid: 23648 + components: + - type: Transform + pos: 18.5,190.5 + parent: 2 + - uid: 23649 + components: + - type: Transform + pos: 18.5,188.5 + parent: 2 + - uid: 23650 + components: + - type: Transform + pos: 17.5,190.5 + parent: 2 + - uid: 23651 + components: + - type: Transform + pos: 16.5,190.5 + parent: 2 + - uid: 23698 + components: + - type: Transform + pos: -4.5,197.5 + parent: 2 + - uid: 23699 + components: + - type: Transform + pos: -4.5,198.5 + parent: 2 + - uid: 23700 + components: + - type: Transform + pos: -6.5,200.5 + parent: 2 + - uid: 23701 + components: + - type: Transform + pos: -7.5,200.5 + parent: 2 + - uid: 23702 + components: + - type: Transform + pos: -8.5,200.5 + parent: 2 + - uid: 23720 + components: + - type: Transform + pos: -4.5,168.5 + parent: 2 + - uid: 23723 + components: + - type: Transform + pos: 24.5,180.5 + parent: 2 + - uid: 23724 + components: + - type: Transform + pos: 24.5,178.5 + parent: 2 + - uid: 23725 + components: + - type: Transform + pos: 24.5,179.5 + parent: 2 + - uid: 23828 + components: + - type: Transform + pos: 11.5,204.5 + parent: 2 + - uid: 23829 + components: + - type: Transform + pos: 13.5,204.5 + parent: 2 + - uid: 23830 + components: + - type: Transform + pos: 12.5,204.5 + parent: 2 + - uid: 23831 + components: + - type: Transform + pos: 14.5,204.5 + parent: 2 + - uid: 23843 + components: + - type: Transform + pos: 7.5,209.5 + parent: 2 + - uid: 23844 + components: + - type: Transform + pos: 7.5,210.5 + parent: 2 + - uid: 23860 + components: + - type: Transform + pos: -89.5,149.5 + parent: 2 + - uid: 24154 + components: + - type: Transform + pos: 11.5,170.5 + parent: 2 + - uid: 24285 + components: + - type: Transform + pos: -138.5,47.5 + parent: 2 + - uid: 24362 + components: + - type: Transform + pos: -48.5,180.5 + parent: 2 + - uid: 24793 + components: + - type: Transform + pos: 10.5,170.5 + parent: 2 + - uid: 24794 + components: + - type: Transform + pos: 13.5,170.5 + parent: 2 + - uid: 24795 + components: + - type: Transform + pos: 12.5,170.5 + parent: 2 + - uid: 24796 + components: + - type: Transform + pos: 14.5,170.5 + parent: 2 + - uid: 25052 + components: + - type: Transform + pos: 78.5,37.5 + parent: 2 + - uid: 25110 + components: + - type: Transform + pos: -88.5,149.5 + parent: 2 + - uid: 25208 + components: + - type: Transform + pos: -129.5,100.5 + parent: 2 + - uid: 25220 + components: + - type: Transform + pos: -115.5,90.5 + parent: 2 + - uid: 25221 + components: + - type: Transform + pos: -118.5,90.5 + parent: 2 + - uid: 25222 + components: + - type: Transform + pos: -116.5,90.5 + parent: 2 + - uid: 25223 + components: + - type: Transform + pos: -31.5,177.5 + parent: 2 + - uid: 25224 + components: + - type: Transform + pos: -117.5,90.5 + parent: 2 + - uid: 25327 + components: + - type: Transform + pos: -129.5,94.5 + parent: 2 + - uid: 25344 + components: + - type: Transform + pos: -114.5,101.5 + parent: 2 + - uid: 25427 + components: + - type: Transform + pos: 2.5,61.5 + parent: 2 + - uid: 25428 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - uid: 25718 + components: + - type: Transform + pos: -30.5,176.5 + parent: 2 + - uid: 25724 + components: + - type: Transform + pos: -31.5,176.5 + parent: 2 + - uid: 25820 + components: + - type: Transform + pos: -15.5,163.5 + parent: 2 + - uid: 25834 + components: + - type: Transform + pos: -116.5,101.5 + parent: 2 + - uid: 26012 + components: + - type: Transform + pos: -10.5,167.5 + parent: 2 + - uid: 26530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,88.5 + parent: 2 + - uid: 26531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,89.5 + parent: 2 + - uid: 26532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,90.5 + parent: 2 + - uid: 26585 + components: + - type: Transform + pos: -24.5,60.5 + parent: 2 + - uid: 26606 + components: + - type: Transform + pos: -15.5,61.5 + parent: 2 + - uid: 26610 + components: + - type: Transform + pos: -26.5,60.5 + parent: 2 + - uid: 26858 + components: + - type: Transform + pos: -115.5,101.5 + parent: 2 + - uid: 26868 + components: + - type: Transform + pos: -129.5,97.5 + parent: 2 + - uid: 26872 + components: + - type: Transform + pos: -129.5,95.5 + parent: 2 + - uid: 26938 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 27002 + components: + - type: Transform + pos: -26.5,104.5 + parent: 2 + - uid: 27099 + components: + - type: Transform + pos: -37.5,100.5 + parent: 2 + - uid: 27137 + components: + - type: Transform + pos: -116.5,52.5 + parent: 2 + - uid: 27138 + components: + - type: Transform + pos: -117.5,52.5 + parent: 2 + - uid: 27203 + components: + - type: Transform + pos: -72.5,13.5 + parent: 2 + - uid: 27204 + components: + - type: Transform + pos: -73.5,13.5 + parent: 2 + - uid: 27205 + components: + - type: Transform + pos: -74.5,14.5 + parent: 2 + - uid: 27206 + components: + - type: Transform + pos: -75.5,15.5 + parent: 2 + - uid: 27207 + components: + - type: Transform + pos: -76.5,15.5 + parent: 2 + - uid: 27208 + components: + - type: Transform + pos: -77.5,16.5 + parent: 2 + - uid: 27209 + components: + - type: Transform + pos: -78.5,17.5 + parent: 2 + - uid: 27210 + components: + - type: Transform + pos: -79.5,18.5 + parent: 2 + - uid: 27211 + components: + - type: Transform + pos: -80.5,18.5 + parent: 2 + - uid: 27212 + components: + - type: Transform + pos: -81.5,19.5 + parent: 2 + - uid: 27213 + components: + - type: Transform + pos: -82.5,20.5 + parent: 2 + - uid: 27214 + components: + - type: Transform + pos: -83.5,21.5 + parent: 2 + - uid: 27215 + components: + - type: Transform + pos: -84.5,22.5 + parent: 2 + - uid: 27216 + components: + - type: Transform + pos: -72.5,16.5 + parent: 2 + - uid: 27217 + components: + - type: Transform + pos: -73.5,17.5 + parent: 2 + - uid: 27218 + components: + - type: Transform + pos: -74.5,17.5 + parent: 2 + - uid: 27219 + components: + - type: Transform + pos: -75.5,18.5 + parent: 2 + - uid: 27220 + components: + - type: Transform + pos: -76.5,19.5 + parent: 2 + - uid: 27221 + components: + - type: Transform + pos: -77.5,20.5 + parent: 2 + - uid: 27222 + components: + - type: Transform + pos: -78.5,20.5 + parent: 2 + - uid: 27223 + components: + - type: Transform + pos: -79.5,21.5 + parent: 2 + - uid: 27224 + components: + - type: Transform + pos: -80.5,22.5 + parent: 2 + - uid: 27225 + components: + - type: Transform + pos: -81.5,23.5 + parent: 2 + - uid: 27226 + components: + - type: Transform + pos: -82.5,24.5 + parent: 2 + - uid: 27227 + components: + - type: Transform + pos: -83.5,25.5 + parent: 2 + - uid: 27309 + components: + - type: Transform + pos: 68.5,52.5 + parent: 2 + - uid: 27315 + components: + - type: Transform + pos: 68.5,53.5 + parent: 2 + - uid: 27337 + components: + - type: Transform + pos: 69.5,51.5 + parent: 2 + - uid: 27474 + components: + - type: Transform + pos: -75.5,44.5 + parent: 2 + - uid: 27481 + components: + - type: Transform + pos: -75.5,46.5 + parent: 2 + - uid: 27491 + components: + - type: Transform + pos: -75.5,45.5 + parent: 2 + - uid: 27526 + components: + - type: Transform + pos: -75.5,36.5 + parent: 2 + - uid: 27550 + components: + - type: Transform + pos: -93.5,38.5 + parent: 2 + - uid: 27552 + components: + - type: Transform + pos: -91.5,38.5 + parent: 2 + - uid: 27553 + components: + - type: Transform + pos: -92.5,38.5 + parent: 2 + - uid: 27562 + components: + - type: Transform + pos: -75.5,38.5 + parent: 2 + - uid: 27564 + components: + - type: Transform + pos: -75.5,37.5 + parent: 2 + - uid: 27587 + components: + - type: Transform + pos: -85.5,48.5 + parent: 2 + - uid: 27588 + components: + - type: Transform + pos: -84.5,48.5 + parent: 2 + - uid: 27589 + components: + - type: Transform + pos: -87.5,48.5 + parent: 2 + - uid: 27590 + components: + - type: Transform + pos: -88.5,48.5 + parent: 2 + - uid: 27591 + components: + - type: Transform + pos: -86.5,48.5 + parent: 2 + - uid: 27622 + components: + - type: Transform + pos: -90.5,37.5 + parent: 2 + - uid: 27623 + components: + - type: Transform + pos: -90.5,38.5 + parent: 2 + - uid: 27631 + components: + - type: Transform + pos: -14.5,163.5 + parent: 2 + - uid: 27636 + components: + - type: Transform + pos: -114.5,23.5 + parent: 2 + - uid: 27713 + components: + - type: Transform + pos: 74.5,55.5 + parent: 2 + - uid: 27744 + components: + - type: Transform + pos: -13.5,163.5 + parent: 2 + - uid: 27751 + components: + - type: Transform + pos: -103.5,17.5 + parent: 2 + - uid: 27753 + components: + - type: Transform + pos: -113.5,17.5 + parent: 2 + - uid: 27798 + components: + - type: Transform + pos: -102.5,58.5 + parent: 2 + - uid: 27832 + components: + - type: Transform + pos: -113.5,18.5 + parent: 2 + - uid: 27835 + components: + - type: Transform + pos: -113.5,19.5 + parent: 2 + - uid: 27863 + components: + - type: Transform + pos: -103.5,19.5 + parent: 2 + - uid: 27874 + components: + - type: Transform + pos: -104.5,38.5 + parent: 2 + - uid: 27879 + components: + - type: Transform + pos: -103.5,18.5 + parent: 2 + - uid: 27885 + components: + - type: Transform + pos: -103.5,38.5 + parent: 2 + - uid: 27937 + components: + - type: Transform + pos: -102.5,23.5 + parent: 2 + - uid: 27939 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 27941 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 27961 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 28021 + components: + - type: Transform + pos: -101.5,63.5 + parent: 2 + - uid: 28070 + components: + - type: Transform + pos: -66.5,147.5 + parent: 2 + - uid: 28149 + components: + - type: Transform + pos: 74.5,53.5 + parent: 2 + - uid: 28159 + components: + - type: Transform + pos: -113.5,56.5 + parent: 2 + - uid: 28160 + components: + - type: Transform + pos: -113.5,55.5 + parent: 2 + - uid: 28190 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 28193 + components: + - type: Transform + pos: -16.5,179.5 + parent: 2 + - uid: 28228 + components: + - type: Transform + pos: -16.5,178.5 + parent: 2 + - uid: 28697 + components: + - type: Transform + pos: -114.5,21.5 + parent: 2 + - uid: 28741 + components: + - type: Transform + pos: -138.5,51.5 + parent: 2 + - uid: 28761 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 28781 + components: + - type: Transform + pos: -129.5,96.5 + parent: 2 + - uid: 28847 + components: + - type: Transform + pos: 68.5,55.5 + parent: 2 + - uid: 28887 + components: + - type: Transform + pos: -123.5,46.5 + parent: 2 + - uid: 28901 + components: + - type: Transform + pos: -122.5,46.5 + parent: 2 + - uid: 28902 + components: + - type: Transform + pos: -123.5,48.5 + parent: 2 + - uid: 28940 + components: + - type: Transform + pos: -112.5,64.5 + parent: 2 + - uid: 28941 + components: + - type: Transform + pos: -113.5,64.5 + parent: 2 + - uid: 28942 + components: + - type: Transform + pos: -114.5,64.5 + parent: 2 + - uid: 28943 + components: + - type: Transform + pos: -115.5,64.5 + parent: 2 + - uid: 28944 + components: + - type: Transform + pos: -112.5,66.5 + parent: 2 + - uid: 28945 + components: + - type: Transform + pos: -113.5,66.5 + parent: 2 + - uid: 28946 + components: + - type: Transform + pos: -114.5,66.5 + parent: 2 + - uid: 28947 + components: + - type: Transform + pos: -115.5,66.5 + parent: 2 + - uid: 28976 + components: + - type: Transform + pos: -113.5,57.5 + parent: 2 + - uid: 29010 + components: + - type: Transform + pos: -115.5,57.5 + parent: 2 + - uid: 29024 + components: + - type: Transform + pos: 68.5,51.5 + parent: 2 + - uid: 29046 + components: + - type: Transform + pos: -122.5,48.5 + parent: 2 + - uid: 29051 + components: + - type: Transform + pos: 74.5,52.5 + parent: 2 + - uid: 29069 + components: + - type: Transform + pos: 69.5,50.5 + parent: 2 + - uid: 29071 + components: + - type: Transform + pos: 70.5,50.5 + parent: 2 + - uid: 29110 + components: + - type: Transform + pos: -67.5,67.5 + parent: 2 + - uid: 29121 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 29127 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 29176 + components: + - type: Transform + pos: 68.5,54.5 + parent: 2 + - uid: 29194 + components: + - type: Transform + pos: 72.5,50.5 + parent: 2 + - uid: 29195 + components: + - type: Transform + pos: 73.5,51.5 + parent: 2 + - uid: 29196 + components: + - type: Transform + pos: 74.5,51.5 + parent: 2 + - uid: 29198 + components: + - type: Transform + pos: 74.5,54.5 + parent: 2 + - uid: 29207 + components: + - type: Transform + pos: 76.5,37.5 + parent: 2 + - uid: 29462 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 29467 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 30329 + components: + - type: Transform + pos: -116.5,14.5 + parent: 2 + - uid: 30393 + components: + - type: Transform + pos: -116.5,17.5 + parent: 2 + - uid: 30394 + components: + - type: Transform + pos: -96.5,9.5 + parent: 2 + - uid: 30397 + components: + - type: Transform + pos: -116.5,16.5 + parent: 2 + - uid: 30398 + components: + - type: Transform + pos: -116.5,15.5 + parent: 2 + - uid: 30402 + components: + - type: Transform + pos: -104.5,9.5 + parent: 2 + - uid: 30403 + components: + - type: Transform + pos: -114.5,11.5 + parent: 2 + - uid: 30404 + components: + - type: Transform + pos: -113.5,11.5 + parent: 2 + - uid: 30405 + components: + - type: Transform + pos: -112.5,11.5 + parent: 2 + - uid: 30406 + components: + - type: Transform + pos: -111.5,11.5 + parent: 2 + - uid: 30409 + components: + - type: Transform + pos: -110.5,11.5 + parent: 2 + - uid: 30410 + components: + - type: Transform + pos: -109.5,11.5 + parent: 2 + - uid: 30413 + components: + - type: Transform + pos: -108.5,11.5 + parent: 2 + - uid: 30414 + components: + - type: Transform + pos: -107.5,11.5 + parent: 2 + - uid: 30415 + components: + - type: Transform + pos: -106.5,11.5 + parent: 2 + - uid: 30416 + components: + - type: Transform + pos: -106.5,9.5 + parent: 2 + - uid: 30417 + components: + - type: Transform + pos: -105.5,9.5 + parent: 2 + - uid: 30418 + components: + - type: Transform + pos: -102.5,9.5 + parent: 2 + - uid: 30419 + components: + - type: Transform + pos: -103.5,9.5 + parent: 2 + - uid: 30420 + components: + - type: Transform + pos: -101.5,9.5 + parent: 2 + - uid: 30421 + components: + - type: Transform + pos: -100.5,9.5 + parent: 2 + - uid: 30422 + components: + - type: Transform + pos: -99.5,9.5 + parent: 2 + - uid: 30423 + components: + - type: Transform + pos: -98.5,9.5 + parent: 2 + - uid: 30424 + components: + - type: Transform + pos: -97.5,9.5 + parent: 2 + - uid: 30427 + components: + - type: Transform + pos: -105.5,11.5 + parent: 2 + - uid: 30428 + components: + - type: Transform + pos: -95.5,9.5 + parent: 2 + - uid: 30429 + components: + - type: Transform + pos: -95.5,10.5 + parent: 2 + - uid: 30430 + components: + - type: Transform + pos: -95.5,11.5 + parent: 2 + - uid: 30431 + components: + - type: Transform + pos: -95.5,12.5 + parent: 2 + - uid: 30432 + components: + - type: Transform + pos: -95.5,13.5 + parent: 2 + - uid: 30433 + components: + - type: Transform + pos: -95.5,14.5 + parent: 2 + - uid: 30852 + components: + - type: Transform + pos: -73.5,145.5 + parent: 2 + - uid: 30962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 30902 + - uid: 30963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 30902 + - uid: 30964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 30902 + - uid: 30965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 30902 + - uid: 30966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 30902 + - uid: 30967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 30902 + - uid: 30968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 30902 + - uid: 30969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 30902 + - uid: 30970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 30902 + - uid: 31577 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 31874 + components: + - type: Transform + pos: 85.5,16.5 + parent: 2 + - uid: 31875 + components: + - type: Transform + pos: 86.5,16.5 + parent: 2 + - uid: 31876 + components: + - type: Transform + pos: 87.5,16.5 + parent: 2 + - uid: 31877 + components: + - type: Transform + pos: 87.5,15.5 + parent: 2 + - uid: 31878 + components: + - type: Transform + pos: 87.5,14.5 + parent: 2 + - uid: 31879 + components: + - type: Transform + pos: 89.5,16.5 + parent: 2 + - uid: 31880 + components: + - type: Transform + pos: 90.5,16.5 + parent: 2 + - uid: 31881 + components: + - type: Transform + pos: 91.5,16.5 + parent: 2 + - uid: 31882 + components: + - type: Transform + pos: 89.5,15.5 + parent: 2 + - uid: 31883 + components: + - type: Transform + pos: 89.5,14.5 + parent: 2 + - uid: 32207 + components: + - type: Transform + pos: -74.5,145.5 + parent: 2 + - uid: 32230 + components: + - type: Transform + pos: -72.5,145.5 + parent: 2 + - uid: 32232 + components: + - type: Transform + pos: -72.5,144.5 + parent: 2 + - uid: 32440 + components: + - type: Transform + pos: -42.5,93.5 + parent: 2 + - uid: 32441 + components: + - type: Transform + pos: -41.5,93.5 + parent: 2 + - uid: 32442 + components: + - type: Transform + pos: -39.5,93.5 + parent: 2 + - uid: 32443 + components: + - type: Transform + pos: -38.5,93.5 + parent: 2 + - uid: 33482 + components: + - type: Transform + pos: -88.5,82.5 + parent: 2 + - uid: 33487 + components: + - type: Transform + pos: -88.5,83.5 + parent: 2 + - uid: 34460 + components: + - type: Transform + pos: -129.5,98.5 + parent: 2 + - uid: 34765 + components: + - type: Transform + pos: 2.5,60.5 + parent: 2 + - uid: 34810 + components: + - type: Transform + pos: -39.5,111.5 + parent: 2 + - uid: 34811 + components: + - type: Transform + pos: -38.5,111.5 + parent: 2 + - uid: 35543 + components: + - type: Transform + pos: -119.5,58.5 + parent: 2 + - uid: 35544 + components: + - type: Transform + pos: -119.5,60.5 + parent: 2 + - uid: 35545 + components: + - type: Transform + pos: -119.5,59.5 + parent: 2 + - uid: 37005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 36996 + - uid: 37011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 36996 + - uid: 37012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 36996 + - uid: 37027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 36996 + - uid: 37028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 36996 + - uid: 37041 + components: + - type: Transform + pos: -19.5,190.5 + parent: 2 + - uid: 37144 + components: + - type: Transform + pos: -35.5,175.5 + parent: 2 + - uid: 37149 + components: + - type: Transform + pos: -43.5,175.5 + parent: 2 + - uid: 37150 + components: + - type: Transform + pos: -42.5,178.5 + parent: 2 + - uid: 37151 + components: + - type: Transform + pos: -44.5,175.5 + parent: 2 + - uid: 37157 + components: + - type: Transform + pos: -43.5,178.5 + parent: 2 + - uid: 37158 + components: + - type: Transform + pos: -44.5,178.5 + parent: 2 + - uid: 37161 + components: + - type: Transform + pos: -42.5,175.5 + parent: 2 + - uid: 37183 + components: + - type: Transform + pos: -50.5,171.5 + parent: 2 + - uid: 37185 + components: + - type: Transform + pos: -51.5,171.5 + parent: 2 + - uid: 37186 + components: + - type: Transform + pos: -52.5,171.5 + parent: 2 + - uid: 37192 + components: + - type: Transform + pos: -37.5,171.5 + parent: 2 + - uid: 37197 + components: + - type: Transform + pos: -39.5,171.5 + parent: 2 + - uid: 37198 + components: + - type: Transform + pos: -40.5,171.5 + parent: 2 + - uid: 37199 + components: + - type: Transform + pos: -38.5,171.5 + parent: 2 + - uid: 37222 + components: + - type: Transform + pos: -47.5,171.5 + parent: 2 + - uid: 37234 + components: + - type: Transform + pos: -46.5,171.5 + parent: 2 + - uid: 37235 + components: + - type: Transform + pos: -45.5,171.5 + parent: 2 + - uid: 37236 + components: + - type: Transform + pos: -45.5,172.5 + parent: 2 + - uid: 37292 + components: + - type: Transform + pos: -34.5,175.5 + parent: 2 + - uid: 37294 + components: + - type: Transform + pos: -34.5,176.5 + parent: 2 + - uid: 37327 + components: + - type: Transform + pos: -52.5,168.5 + parent: 2 + - uid: 37328 + components: + - type: Transform + pos: -51.5,168.5 + parent: 2 + - uid: 37329 + components: + - type: Transform + pos: -50.5,168.5 + parent: 2 + - uid: 37594 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 36996 + - uid: 37602 + components: + - type: Transform + pos: -135.5,75.5 + parent: 2 + - uid: 37610 + components: + - type: Transform + pos: -135.5,74.5 + parent: 2 + - uid: 37699 + components: + - type: Transform + pos: -90.5,53.5 + parent: 2 + - uid: 37700 + components: + - type: Transform + pos: -90.5,52.5 + parent: 2 + - uid: 37701 + components: + - type: Transform + pos: -90.5,51.5 + parent: 2 + - uid: 37702 + components: + - type: Transform + pos: -90.5,50.5 + parent: 2 + - uid: 37714 + components: + - type: Transform + pos: 66.5,31.5 + parent: 2 + - uid: 37718 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 + - uid: 37833 + components: + - type: Transform + pos: 67.5,37.5 + parent: 2 + - uid: 37949 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 37842 + - uid: 37950 + components: + - type: Transform + pos: 0.5,2.5 + parent: 37842 + - uid: 37951 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 37842 + - uid: 37952 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 37842 + - uid: 37953 + components: + - type: Transform + pos: -0.5,2.5 + parent: 37842 + - uid: 37954 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 37842 + - uid: 37955 + components: + - type: Transform + pos: 1.5,2.5 + parent: 37842 + - uid: 37966 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 37842 + - uid: 37979 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 37842 + - uid: 37997 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 37842 + - uid: 38044 + components: + - type: Transform + pos: -1.5,1.5 + parent: 37842 + - uid: 38045 + components: + - type: Transform + pos: -1.5,2.5 + parent: 37842 + - uid: 38046 + components: + - type: Transform + pos: 2.5,1.5 + parent: 37842 + - uid: 38047 + components: + - type: Transform + pos: 2.5,2.5 + parent: 37842 + - uid: 38083 + components: + - type: Transform + pos: 65.5,31.5 + parent: 2 + - uid: 38084 + components: + - type: Transform + pos: 65.5,37.5 + parent: 2 + - uid: 38085 + components: + - type: Transform + pos: 67.5,31.5 + parent: 2 + - uid: 38106 + components: + - type: Transform + pos: -37.5,98.5 + parent: 2 + - uid: 39265 + components: + - type: Transform + pos: 81.5,42.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,58.5 + parent: 2 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,59.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-18.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,23.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,22.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: 48.5,45.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,42.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,28.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,59.5 + parent: 2 + - uid: 15813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,56.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,56.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,55.5 + parent: 2 + - uid: 15818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,55.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,84.5 + parent: 2 + - uid: 16493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -143.5,90.5 + parent: 2 + - uid: 18726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,93.5 + parent: 2 + - uid: 21237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -143.5,90.5 + parent: 2 + - uid: 23542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,186.5 + parent: 2 + - uid: 23600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,186.5 + parent: 2 + - uid: 28693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,93.5 + parent: 2 +- proto: GrilleDiagonal + entities: + - uid: 6456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,127.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,128.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + pos: -70.5,132.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: -69.5,133.5 + parent: 2 + - uid: 28321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 30902 + - uid: 28330 + components: + - type: Transform + pos: -0.5,5.5 + parent: 30902 + - uid: 29375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - uid: 29376 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 + - uid: 29378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - uid: 29379 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 +- proto: GrilleSpawner + entities: + - uid: 1273 + components: + - type: Transform + pos: 78.5,12.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 78.5,6.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 78.5,10.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: -71.5,186.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: -85.5,191.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -78.5,191.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: -86.5,187.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: -83.5,191.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: -79.5,191.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + pos: 78.5,13.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: 78.5,9.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: 78.5,7.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: 78.5,5.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: 78.5,15.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 76.5,4.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + pos: 78.5,4.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: 78.5,8.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: 78.5,11.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: 73.5,4.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: 72.5,4.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: 75.5,4.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: 74.5,4.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: 62.5,12.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: 77.5,4.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: 78.5,14.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: -81.5,191.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: -80.5,191.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: -72.5,186.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: -86.5,191.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: -82.5,191.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: -84.5,191.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: -70.5,186.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -69.5,186.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: -77.5,191.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + pos: -68.5,186.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: 66.5,4.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: 65.5,4.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + pos: 62.5,6.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + pos: -142.5,104.5 + parent: 2 + - uid: 19094 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - uid: 19467 + components: + - type: Transform + pos: 62.5,7.5 + parent: 2 + - uid: 27375 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 29419 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 + - uid: 29553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,11.5 + parent: 2 + - uid: 29554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -114.5,11.5 + parent: 2 + - uid: 29555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,11.5 + parent: 2 + - uid: 29573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,11.5 + parent: 2 + - uid: 29574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,11.5 + parent: 2 + - uid: 29575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,11.5 + parent: 2 + - uid: 29576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,11.5 + parent: 2 + - uid: 29577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,11.5 + parent: 2 + - uid: 29578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,11.5 + parent: 2 + - uid: 29579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,9.5 + parent: 2 + - uid: 29580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,9.5 + parent: 2 + - uid: 29581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,9.5 + parent: 2 + - uid: 29582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,9.5 + parent: 2 + - uid: 29583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,9.5 + parent: 2 + - uid: 29584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,9.5 + parent: 2 + - uid: 29585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,9.5 + parent: 2 + - uid: 29586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,9.5 + parent: 2 + - uid: 29587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,9.5 + parent: 2 + - uid: 29588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,9.5 + parent: 2 + - uid: 29592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,14.5 + parent: 2 + - uid: 29593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,15.5 + parent: 2 + - uid: 29594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,16.5 + parent: 2 + - uid: 29595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,17.5 + parent: 2 + - uid: 30602 + components: + - type: Transform + pos: 67.5,4.5 + parent: 2 + - uid: 30646 + components: + - type: Transform + pos: 68.5,4.5 + parent: 2 + - uid: 32941 + components: + - type: Transform + pos: -1.5,240.5 + parent: 2 + - uid: 34931 + components: + - type: Transform + pos: -2.5,240.5 + parent: 2 + - uid: 34932 + components: + - type: Transform + pos: -4.5,240.5 + parent: 2 + - uid: 34933 + components: + - type: Transform + pos: -3.5,240.5 + parent: 2 + - uid: 34934 + components: + - type: Transform + pos: -5.5,240.5 + parent: 2 + - uid: 34935 + components: + - type: Transform + pos: -6.5,240.5 + parent: 2 + - uid: 34936 + components: + - type: Transform + pos: -7.5,240.5 + parent: 2 + - uid: 34937 + components: + - type: Transform + pos: -7.5,239.5 + parent: 2 + - uid: 34938 + components: + - type: Transform + pos: -7.5,238.5 + parent: 2 + - uid: 34939 + components: + - type: Transform + pos: -7.5,237.5 + parent: 2 + - uid: 34940 + components: + - type: Transform + pos: -7.5,236.5 + parent: 2 + - uid: 34941 + components: + - type: Transform + pos: -7.5,235.5 + parent: 2 + - uid: 34942 + components: + - type: Transform + pos: -7.5,234.5 + parent: 2 + - uid: 34943 + components: + - type: Transform + pos: -7.5,233.5 + parent: 2 + - uid: 34944 + components: + - type: Transform + pos: -7.5,232.5 + parent: 2 + - uid: 34945 + components: + - type: Transform + pos: -7.5,231.5 + parent: 2 + - uid: 34946 + components: + - type: Transform + pos: -7.5,230.5 + parent: 2 + - uid: 34947 + components: + - type: Transform + pos: -7.5,229.5 + parent: 2 + - uid: 34948 + components: + - type: Transform + pos: -7.5,228.5 + parent: 2 + - uid: 34949 + components: + - type: Transform + pos: -7.5,227.5 + parent: 2 + - uid: 34950 + components: + - type: Transform + pos: -7.5,226.5 + parent: 2 + - uid: 34951 + components: + - type: Transform + pos: -7.5,225.5 + parent: 2 + - uid: 34952 + components: + - type: Transform + pos: -7.5,224.5 + parent: 2 + - uid: 34953 + components: + - type: Transform + pos: -7.5,223.5 + parent: 2 + - uid: 34954 + components: + - type: Transform + pos: -7.5,222.5 + parent: 2 + - uid: 34955 + components: + - type: Transform + pos: -7.5,221.5 + parent: 2 + - uid: 34956 + components: + - type: Transform + pos: -7.5,220.5 + parent: 2 + - uid: 34957 + components: + - type: Transform + pos: -7.5,219.5 + parent: 2 + - uid: 34959 + components: + - type: Transform + pos: 8.5,219.5 + parent: 2 + - uid: 34960 + components: + - type: Transform + pos: 8.5,220.5 + parent: 2 + - uid: 34961 + components: + - type: Transform + pos: 8.5,221.5 + parent: 2 + - uid: 34962 + components: + - type: Transform + pos: 8.5,222.5 + parent: 2 + - uid: 34963 + components: + - type: Transform + pos: 8.5,223.5 + parent: 2 + - uid: 34964 + components: + - type: Transform + pos: 8.5,224.5 + parent: 2 + - uid: 34965 + components: + - type: Transform + pos: 8.5,225.5 + parent: 2 + - uid: 34966 + components: + - type: Transform + pos: 8.5,226.5 + parent: 2 + - uid: 34967 + components: + - type: Transform + pos: 8.5,227.5 + parent: 2 + - uid: 34968 + components: + - type: Transform + pos: 8.5,228.5 + parent: 2 + - uid: 34969 + components: + - type: Transform + pos: 8.5,229.5 + parent: 2 + - uid: 34970 + components: + - type: Transform + pos: 8.5,230.5 + parent: 2 + - uid: 34971 + components: + - type: Transform + pos: 8.5,231.5 + parent: 2 + - uid: 34972 + components: + - type: Transform + pos: 8.5,232.5 + parent: 2 + - uid: 34973 + components: + - type: Transform + pos: 8.5,233.5 + parent: 2 + - uid: 34974 + components: + - type: Transform + pos: 8.5,234.5 + parent: 2 + - uid: 34975 + components: + - type: Transform + pos: 8.5,235.5 + parent: 2 + - uid: 34976 + components: + - type: Transform + pos: 8.5,236.5 + parent: 2 + - uid: 34977 + components: + - type: Transform + pos: 8.5,237.5 + parent: 2 + - uid: 34978 + components: + - type: Transform + pos: 8.5,238.5 + parent: 2 + - uid: 34979 + components: + - type: Transform + pos: 8.5,239.5 + parent: 2 + - uid: 34980 + components: + - type: Transform + pos: 8.5,240.5 + parent: 2 + - uid: 34981 + components: + - type: Transform + pos: 7.5,240.5 + parent: 2 + - uid: 34982 + components: + - type: Transform + pos: 6.5,240.5 + parent: 2 + - uid: 34983 + components: + - type: Transform + pos: 5.5,240.5 + parent: 2 + - uid: 34984 + components: + - type: Transform + pos: 4.5,240.5 + parent: 2 + - uid: 34985 + components: + - type: Transform + pos: 3.5,240.5 + parent: 2 + - uid: 34986 + components: + - type: Transform + pos: 2.5,240.5 + parent: 2 + - uid: 34987 + components: + - type: Transform + pos: -69.5,-14.5 + parent: 2 + - uid: 34988 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 + - uid: 34989 + components: + - type: Transform + pos: -71.5,-14.5 + parent: 2 + - uid: 34990 + components: + - type: Transform + pos: -72.5,-14.5 + parent: 2 + - uid: 34991 + components: + - type: Transform + pos: -73.5,-14.5 + parent: 2 + - uid: 34992 + components: + - type: Transform + pos: -74.5,-14.5 + parent: 2 + - uid: 34993 + components: + - type: Transform + pos: -75.5,-14.5 + parent: 2 + - uid: 34994 + components: + - type: Transform + pos: -76.5,-14.5 + parent: 2 + - uid: 34995 + components: + - type: Transform + pos: -77.5,-14.5 + parent: 2 + - uid: 34996 + components: + - type: Transform + pos: -78.5,-14.5 + parent: 2 + - uid: 34997 + components: + - type: Transform + pos: -79.5,-14.5 + parent: 2 + - uid: 34998 + components: + - type: Transform + pos: -80.5,-14.5 + parent: 2 + - uid: 34999 + components: + - type: Transform + pos: -81.5,-14.5 + parent: 2 + - uid: 35000 + components: + - type: Transform + pos: -82.5,-14.5 + parent: 2 + - uid: 35001 + components: + - type: Transform + pos: -83.5,-14.5 + parent: 2 + - uid: 35002 + components: + - type: Transform + pos: -84.5,-14.5 + parent: 2 + - uid: 35003 + components: + - type: Transform + pos: -84.5,-13.5 + parent: 2 + - uid: 35004 + components: + - type: Transform + pos: -84.5,-12.5 + parent: 2 + - uid: 35005 + components: + - type: Transform + pos: -84.5,-11.5 + parent: 2 + - uid: 35006 + components: + - type: Transform + pos: -84.5,-10.5 + parent: 2 + - uid: 35007 + components: + - type: Transform + pos: -84.5,-6.5 + parent: 2 + - uid: 35008 + components: + - type: Transform + pos: -84.5,-5.5 + parent: 2 + - uid: 35009 + components: + - type: Transform + pos: -84.5,-4.5 + parent: 2 + - uid: 35010 + components: + - type: Transform + pos: -84.5,-3.5 + parent: 2 + - uid: 35011 + components: + - type: Transform + pos: -84.5,-2.5 + parent: 2 + - uid: 35012 + components: + - type: Transform + pos: -83.5,-2.5 + parent: 2 + - uid: 35013 + components: + - type: Transform + pos: -82.5,-2.5 + parent: 2 + - uid: 35014 + components: + - type: Transform + pos: -81.5,-2.5 + parent: 2 + - uid: 35015 + components: + - type: Transform + pos: -80.5,-2.5 + parent: 2 + - uid: 35016 + components: + - type: Transform + pos: -79.5,-2.5 + parent: 2 + - uid: 35017 + components: + - type: Transform + pos: -78.5,-2.5 + parent: 2 + - uid: 35018 + components: + - type: Transform + pos: -77.5,-2.5 + parent: 2 + - uid: 35019 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 + - uid: 35020 + components: + - type: Transform + pos: -75.5,-2.5 + parent: 2 + - uid: 35021 + components: + - type: Transform + pos: -74.5,-2.5 + parent: 2 + - uid: 35022 + components: + - type: Transform + pos: -73.5,-2.5 + parent: 2 + - uid: 35023 + components: + - type: Transform + pos: -72.5,-2.5 + parent: 2 + - uid: 35024 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 + - uid: 35025 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 35026 + components: + - type: Transform + pos: -69.5,-2.5 + parent: 2 + - uid: 35325 + components: + - type: Transform + pos: -131.5,150.5 + parent: 2 + - uid: 35326 + components: + - type: Transform + pos: -131.5,151.5 + parent: 2 + - uid: 35327 + components: + - type: Transform + pos: -131.5,152.5 + parent: 2 + - uid: 35328 + components: + - type: Transform + pos: -131.5,153.5 + parent: 2 + - uid: 35329 + components: + - type: Transform + pos: -131.5,154.5 + parent: 2 + - uid: 35330 + components: + - type: Transform + pos: -131.5,155.5 + parent: 2 + - uid: 35331 + components: + - type: Transform + pos: -131.5,156.5 + parent: 2 + - uid: 35332 + components: + - type: Transform + pos: -130.5,156.5 + parent: 2 + - uid: 35333 + components: + - type: Transform + pos: -129.5,156.5 + parent: 2 + - uid: 35334 + components: + - type: Transform + pos: -128.5,156.5 + parent: 2 + - uid: 35335 + components: + - type: Transform + pos: -127.5,156.5 + parent: 2 + - uid: 35336 + components: + - type: Transform + pos: -126.5,156.5 + parent: 2 + - uid: 35337 + components: + - type: Transform + pos: -125.5,156.5 + parent: 2 + - uid: 35338 + components: + - type: Transform + pos: -124.5,156.5 + parent: 2 + - uid: 35339 + components: + - type: Transform + pos: -123.5,156.5 + parent: 2 + - uid: 35340 + components: + - type: Transform + pos: -122.5,156.5 + parent: 2 + - uid: 35341 + components: + - type: Transform + pos: -121.5,156.5 + parent: 2 + - uid: 35342 + components: + - type: Transform + pos: -120.5,156.5 + parent: 2 + - uid: 35343 + components: + - type: Transform + pos: -119.5,156.5 + parent: 2 + - uid: 35344 + components: + - type: Transform + pos: -118.5,156.5 + parent: 2 + - uid: 35345 + components: + - type: Transform + pos: -117.5,156.5 + parent: 2 + - uid: 35346 + components: + - type: Transform + pos: -116.5,156.5 + parent: 2 + - uid: 35347 + components: + - type: Transform + pos: -115.5,156.5 + parent: 2 + - uid: 35348 + components: + - type: Transform + pos: -114.5,156.5 + parent: 2 + - uid: 35349 + components: + - type: Transform + pos: -113.5,156.5 + parent: 2 + - uid: 35350 + components: + - type: Transform + pos: -112.5,156.5 + parent: 2 + - uid: 35351 + components: + - type: Transform + pos: -112.5,140.5 + parent: 2 + - uid: 35352 + components: + - type: Transform + pos: -113.5,140.5 + parent: 2 + - uid: 35353 + components: + - type: Transform + pos: -114.5,140.5 + parent: 2 + - uid: 35354 + components: + - type: Transform + pos: -115.5,140.5 + parent: 2 + - uid: 35355 + components: + - type: Transform + pos: -116.5,140.5 + parent: 2 + - uid: 35356 + components: + - type: Transform + pos: -117.5,140.5 + parent: 2 + - uid: 35357 + components: + - type: Transform + pos: -118.5,140.5 + parent: 2 + - uid: 35358 + components: + - type: Transform + pos: -119.5,140.5 + parent: 2 + - uid: 35359 + components: + - type: Transform + pos: -120.5,140.5 + parent: 2 + - uid: 35360 + components: + - type: Transform + pos: -121.5,140.5 + parent: 2 + - uid: 35361 + components: + - type: Transform + pos: -122.5,140.5 + parent: 2 + - uid: 35362 + components: + - type: Transform + pos: -123.5,140.5 + parent: 2 + - uid: 35363 + components: + - type: Transform + pos: -124.5,140.5 + parent: 2 + - uid: 35364 + components: + - type: Transform + pos: -125.5,140.5 + parent: 2 + - uid: 35365 + components: + - type: Transform + pos: -126.5,140.5 + parent: 2 + - uid: 35366 + components: + - type: Transform + pos: -127.5,140.5 + parent: 2 + - uid: 35367 + components: + - type: Transform + pos: -128.5,140.5 + parent: 2 + - uid: 35368 + components: + - type: Transform + pos: -129.5,140.5 + parent: 2 + - uid: 35369 + components: + - type: Transform + pos: -130.5,140.5 + parent: 2 + - uid: 35370 + components: + - type: Transform + pos: -131.5,140.5 + parent: 2 + - uid: 35371 + components: + - type: Transform + pos: -131.5,141.5 + parent: 2 + - uid: 35372 + components: + - type: Transform + pos: -131.5,142.5 + parent: 2 + - uid: 35373 + components: + - type: Transform + pos: -131.5,143.5 + parent: 2 + - uid: 35374 + components: + - type: Transform + pos: -131.5,144.5 + parent: 2 + - uid: 35375 + components: + - type: Transform + pos: -131.5,145.5 + parent: 2 + - uid: 35376 + components: + - type: Transform + pos: -131.5,146.5 + parent: 2 + - uid: 37392 + components: + - type: Transform + pos: -102.5,175.5 + parent: 2 + - uid: 37393 + components: + - type: Transform + pos: -102.5,174.5 + parent: 2 + - uid: 37394 + components: + - type: Transform + pos: -102.5,176.5 + parent: 2 + - uid: 37395 + components: + - type: Transform + pos: -102.5,177.5 + parent: 2 + - uid: 37396 + components: + - type: Transform + pos: -102.5,178.5 + parent: 2 + - uid: 37397 + components: + - type: Transform + pos: -102.5,179.5 + parent: 2 + - uid: 37398 + components: + - type: Transform + pos: -102.5,180.5 + parent: 2 + - uid: 37399 + components: + - type: Transform + pos: -102.5,181.5 + parent: 2 + - uid: 37400 + components: + - type: Transform + pos: -102.5,182.5 + parent: 2 + - uid: 37401 + components: + - type: Transform + pos: -76.5,191.5 + parent: 2 + - uid: 37402 + components: + - type: Transform + pos: -75.5,191.5 + parent: 2 + - uid: 37403 + components: + - type: Transform + pos: -74.5,191.5 + parent: 2 + - uid: 37404 + components: + - type: Transform + pos: -73.5,191.5 + parent: 2 + - uid: 37405 + components: + - type: Transform + pos: -72.5,191.5 + parent: 2 + - uid: 37406 + components: + - type: Transform + pos: -87.5,187.5 + parent: 2 + - uid: 37407 + components: + - type: Transform + pos: -88.5,187.5 + parent: 2 + - uid: 37408 + components: + - type: Transform + pos: -89.5,187.5 + parent: 2 + - uid: 37409 + components: + - type: Transform + pos: -90.5,187.5 + parent: 2 + - uid: 37410 + components: + - type: Transform + pos: -91.5,187.5 + parent: 2 + - uid: 37411 + components: + - type: Transform + pos: -92.5,187.5 + parent: 2 + - uid: 37412 + components: + - type: Transform + pos: -93.5,187.5 + parent: 2 + - uid: 37413 + components: + - type: Transform + pos: -94.5,187.5 + parent: 2 + - uid: 37414 + components: + - type: Transform + pos: -73.5,186.5 + parent: 2 + - uid: 37415 + components: + - type: Transform + pos: -67.5,186.5 + parent: 2 + - uid: 37416 + components: + - type: Transform + pos: -66.5,186.5 + parent: 2 + - uid: 37417 + components: + - type: Transform + pos: -65.5,186.5 + parent: 2 + - uid: 37418 + components: + - type: Transform + pos: -64.5,186.5 + parent: 2 + - uid: 37419 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 37452 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 37459 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 37460 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 37461 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 37462 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 37463 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 37464 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 37465 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 37466 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 37467 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 37468 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 37469 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 37470 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 37471 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 37472 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 37473 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 37474 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 37475 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 37476 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 37477 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 37478 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 37480 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 37481 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 37482 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 37483 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 +- proto: GroundCannabis + entities: + - uid: 7395 + components: + - type: Transform + parent: 7394 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19058 + components: + - type: Transform + parent: 29732 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GunSafeDisabler + entities: + - uid: 8374 + components: + - type: Transform + pos: 61.5,61.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 8617 + components: + - type: Transform + pos: 60.5,61.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 8349 + components: + - type: Transform + pos: 59.5,58.5 + parent: 2 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 8375 + components: + - type: Transform + pos: 58.5,58.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 16713 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 13386 + - uid: 22074 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 21114 + - uid: 30971 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 30902 + - uid: 37956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 37842 +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 17782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.50355,95.66916 + parent: 2 +- proto: Handcuffs + entities: + - uid: 968 + components: + - type: Transform + pos: -32.36039,-5.4088287 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: 65.69057,47.488777 + parent: 2 + - uid: 11632 + components: + - type: Transform + pos: -41.56269,83.727554 + parent: 2 + - uid: 11633 + components: + - type: Transform + pos: -41.40522,83.513916 + parent: 2 + - uid: 18649 + components: + - type: Transform + pos: -95.54178,36.650093 + parent: 2 + - uid: 22128 + components: + - type: Transform + pos: -75.48276,152.65724 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 1124 + components: + - type: Transform + pos: -39.57162,-12.074748 + parent: 2 +- proto: HandheldHealthAnalyzer + entities: + - uid: 36777 + components: + - type: Transform + pos: -2.5557594,73.43998 + parent: 2 +- proto: HandheldStationMap + entities: + - uid: 4591 + components: + - type: Transform + pos: 71.41337,69.55955 + parent: 2 + - uid: 36555 + components: + - type: Transform + pos: -38.4659,103.65724 + parent: 2 +- proto: HandLabeler + entities: + - uid: 1153 + components: + - type: Transform + pos: -25.446741,-1.3841503 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -16.664848,-5.467325 + parent: 2 + - uid: 10524 + components: + - type: Transform + pos: -17.475117,84.5181 + parent: 2 + - uid: 20991 + components: + - type: Transform + pos: -73.34652,168.04921 + parent: 2 + - uid: 22856 + components: + - type: Transform + pos: -24.581614,192.61334 + parent: 2 + - uid: 22857 + components: + - type: Transform + pos: -24.390398,192.36595 + parent: 2 +- proto: HappyHonk + entities: + - uid: 1876 + components: + - type: Transform + pos: 4.481044,0.64934576 + parent: 2 + - uid: 21061 + components: + - type: Transform + pos: -68.648415,170.85431 + parent: 2 + - uid: 25821 + components: + - type: Transform + pos: 108.665184,59.764427 + parent: 2 + - uid: 35805 + components: + - type: Transform + pos: -18.460619,63.40415 + parent: 2 +- proto: HarmonicaInstrument + entities: + - uid: 14312 + components: + - type: Transform + pos: -81.24681,103.76185 + parent: 2 +- proto: HeadSkeleton + entities: + - uid: 25288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -133.11008,87.4257 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 7046 + components: + - type: Transform + pos: 64.5,61.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 10313 + components: + - type: Transform + pos: -46.5,92.5 + parent: 2 + - uid: 11703 + components: + - type: Transform + pos: -47.5,92.5 + parent: 2 + - uid: 14235 + components: + - type: Transform + pos: -23.5,99.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 23518 + components: + - type: Transform + pos: -105.6635,34.750355 + parent: 2 +- proto: Holoprojector + entities: + - uid: 18316 + components: + - type: Transform + pos: -58.536575,153.65407 + parent: 2 +- proto: HospitalCurtains + entities: + - uid: 5371 + components: + - type: Transform + pos: -102.5,145.5 + parent: 2 + - uid: 17359 + components: + - type: Transform + pos: -61.5,111.5 + parent: 2 + - uid: 18571 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 + - uid: 18597 + components: + - type: Transform + pos: -31.5,71.5 + parent: 2 + - uid: 30972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 30902 + - uid: 30973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 30902 +- proto: HospitalCurtainsOpen + entities: + - uid: 1797 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: 83.5,62.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,194.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,193.5 + parent: 2 + - uid: 11012 + components: + - type: Transform + pos: -9.5,194.5 + parent: 2 + - uid: 11021 + components: + - type: Transform + pos: -5.5,193.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + pos: -5.5,191.5 + parent: 2 + - uid: 13942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,113.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + pos: -31.5,96.5 + parent: 2 + - uid: 17357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,109.5 + parent: 2 + - uid: 17900 + components: + - type: Transform + pos: -83.5,154.5 + parent: 2 + - uid: 22643 + components: + - type: Transform + pos: -9.5,190.5 + parent: 2 + - uid: 22733 + components: + - type: Transform + pos: 4.5,182.5 + parent: 2 + - uid: 23316 + components: + - type: Transform + pos: -20.5,204.5 + parent: 2 + - uid: 23317 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 + - uid: 26468 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 36965 + components: + - type: Transform + pos: -16.5,87.5 + parent: 2 + - uid: 38387 + components: + - type: Transform + pos: -10.5,206.5 + parent: 2 + - uid: 38388 + components: + - type: Transform + pos: -9.5,206.5 + parent: 2 + - uid: 38389 + components: + - type: Transform + pos: -8.5,206.5 + parent: 2 + - uid: 38390 + components: + - type: Transform + pos: -7.5,206.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 18708 + components: + - type: Transform + pos: -58.5,172.5 + parent: 2 + - uid: 18710 + components: + - type: Transform + pos: -88.5,152.5 + parent: 2 + - uid: 18717 + components: + - type: Transform + pos: -97.5,148.5 + parent: 2 + - uid: 38285 + components: + - type: Transform + pos: 11.5,198.5 + parent: 2 +- proto: HydroponicsToolClippers + entities: + - uid: 2425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.79599,63.52298 + parent: 2 + - uid: 2638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.79599,63.52298 + parent: 2 + - uid: 4283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.540245,26.51868 + parent: 2 + - uid: 16482 + components: + - type: Transform + pos: 1.441334,65.50586 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: -3.574791,59.61713 + parent: 2 + - uid: 19671 + components: + - type: Transform + pos: -94.538895,147.24026 + parent: 2 + - uid: 19737 + components: + - type: Transform + pos: -81.53746,155.7006 + parent: 2 +- proto: HydroponicsToolHatchet + entities: + - uid: 19738 + components: + - type: Transform + pos: -81.67244,154.59866 + parent: 2 + - uid: 21471 + components: + - type: Transform + pos: -5.6444206,59.482197 + parent: 2 + - uid: 21506 + components: + - type: Transform + pos: -5.43071,59.707085 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 773 + components: + - type: Transform + pos: 51.42914,25.963123 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 4351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.513954,25.55075 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,24.5 + parent: 2 + - uid: 738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,26.5 + parent: 2 + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,26.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: -7.5,67.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + pos: -9.5,67.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: -3.5,61.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + pos: -5.5,67.5 + parent: 2 + - uid: 11024 + components: + - type: Transform + pos: -5.5,65.5 + parent: 2 + - uid: 11025 + components: + - type: Transform + pos: -3.5,65.5 + parent: 2 + - uid: 11960 + components: + - type: Transform + pos: -3.5,66.5 + parent: 2 + - uid: 11962 + components: + - type: Transform + pos: -5.5,66.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + pos: -8.5,67.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + pos: -5.5,61.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + pos: -3.5,67.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: -5.5,62.5 + parent: 2 + - uid: 14882 + components: + - type: Transform + pos: -80.5,140.5 + parent: 2 + - uid: 14887 + components: + - type: Transform + pos: -80.5,141.5 + parent: 2 + - uid: 14889 + components: + - type: Transform + pos: -80.5,142.5 + parent: 2 + - uid: 16859 + components: + - type: Transform + pos: -8.5,68.5 + parent: 2 + - uid: 17589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,68.5 + parent: 2 + - uid: 36188 + components: + - type: Transform + pos: -5.5,63.5 + parent: 2 + - uid: 36192 + components: + - type: Transform + pos: -3.5,63.5 + parent: 2 + - uid: 36193 + components: + - type: Transform + pos: -3.5,62.5 + parent: 2 +- proto: InflatableDoor + entities: + - uid: 15701 + components: + - type: Transform + pos: -35.5,55.5 + parent: 2 + - uid: 38107 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 36996 +- proto: InflatableDoorStack + entities: + - uid: 12893 + components: + - type: Transform + pos: -116.34634,24.623833 + parent: 2 +- proto: InflatableWall + entities: + - uid: 3717 + components: + - type: Transform + pos: 85.5,60.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: 84.5,57.5 + parent: 2 +- proto: InflatableWallStack + entities: + - uid: 4059 + components: + - type: Transform + pos: -116.67446,24.249916 + parent: 2 +- proto: InflatableWallStack5 + entities: + - uid: 1895 + components: + - type: Transform + pos: -3.4087815,-2.335447 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: -3.6787333,-2.605312 + parent: 2 +- proto: IngotGold + entities: + - uid: 5296 + components: + - type: Transform + pos: -45.5,96.5 + parent: 2 + - type: Stack + count: 5 +- proto: IngotSilver + entities: + - uid: 11750 + components: + - type: Transform + pos: -48.58904,94.102974 + parent: 2 + - type: Stack + count: 5 +- proto: IntercomAll + entities: + - uid: 8703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,129.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 13663 + components: + - type: Transform + pos: -45.5,106.5 + parent: 2 + - uid: 38560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,94.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 20597 + components: + - type: Transform + pos: -91.5,44.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 15873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,187.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 31599 + components: + - type: Transform + pos: -77.5,160.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 4234 + components: + - type: Transform + pos: 68.5,41.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 43335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,60.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 35908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,1.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 10752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,80.5 + parent: 2 +- proto: JetpackBlueFilled + entities: + - uid: 9028 + components: + - type: Transform + pos: -12.5963745,84.5351 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -12.345448,84.66713 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: -12.569962,84.759544 + parent: 2 + - uid: 12216 + components: + - type: Transform + pos: -44.585182,101.43793 + parent: 2 + - uid: 28886 + components: + - type: Transform + pos: -101.67387,47.919712 + parent: 2 + - uid: 28888 + components: + - type: Transform + pos: -101.70569,49.460007 + parent: 2 + - type: GasTank + toggleActionEntity: 1760 + - type: Jetpack + toggleActionEntity: 1739 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 1739 + - 1760 +- proto: JetpackMiniFilled + entities: + - uid: 11597 + components: + - type: Transform + pos: -39.5489,-15.375725 + parent: 2 + - type: GasTank + toggleActionEntity: 1780 + - type: Jetpack + toggleActionEntity: 1770 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 1770 + - 1780 + - uid: 15052 + components: + - type: Transform + pos: -48.50133,98.46442 + parent: 2 +- proto: JetpackSecurityFilled + entities: + - uid: 29138 + components: + - type: Transform + pos: 78.373314,35.624657 + parent: 2 + - uid: 37099 + components: + - type: Transform + pos: 78.346245,34.58789 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 4993 + components: + - type: Transform + pos: -17.5,67.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: -15.5,67.5 + parent: 2 +- proto: KitchenKnife + entities: + - uid: 13142 + components: + - type: Transform + pos: -15.43778,65.551636 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 4340 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: 74.5,63.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: -16.5,65.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + pos: -17.5,69.5 + parent: 2 + - uid: 16681 + components: + - type: Transform + pos: -5.5,199.5 + parent: 2 + - uid: 27821 + components: + - type: Transform + pos: -79.5,33.5 + parent: 2 + - uid: 28656 + components: + - type: Transform + pos: -105.5,59.5 + parent: 2 + - uid: 28898 + components: + - type: Transform + pos: -112.5,43.5 + parent: 2 + - uid: 38074 + components: + - type: Transform + pos: -78.5,92.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 2610 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 11119 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + pos: -14.5,65.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: -0.5,69.5 + parent: 2 + - uid: 22848 + components: + - type: Transform + pos: -23.5,194.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 12969 + components: + - type: Transform + pos: -9.5,63.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + pos: -8.5,63.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: -42.5,57.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + pos: -41.5,57.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 8700 + components: + - type: Transform + pos: 54.637856,26.26635 + parent: 2 +- proto: Lamp + entities: + - uid: 1700 + components: + - type: Transform + pos: -27.641533,-5.495846 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 26.40204,19.868414 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 94.44699,53.759735 + parent: 2 + - uid: 11028 + components: + - type: Transform + pos: -43.47523,103.69351 + parent: 2 + - type: Physics + canCollide: True + - uid: 12190 + components: + - type: Transform + pos: -52.539528,63.7661 + parent: 2 + - type: Physics + canCollide: True + - uid: 14627 + components: + - type: Transform + pos: -77.55389,83.7612 + parent: 2 + - uid: 14629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.52711,83.78369 + parent: 2 + - uid: 17806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.216324,37.899822 + parent: 2 + - uid: 18614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.443544,178.34816 + parent: 2 + - uid: 20188 + components: + - type: Transform + pos: -81.65145,180.75948 + parent: 2 + - uid: 20375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.427826,165.7868 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: -97.3696,170.79243 + parent: 2 + - uid: 20918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.29333,175.69159 + parent: 2 + - uid: 22571 + components: + - type: Transform + pos: -5.5738497,179.57677 + parent: 2 + - uid: 23352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.389664,207.76599 + parent: 2 + - uid: 23575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.294724,55.583107 + parent: 2 + - uid: 28125 + components: + - type: Transform + pos: 70.20698,43.853382 + parent: 2 + - type: Physics + canCollide: True + - uid: 28256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.35695,141.6759 + parent: 2 + - uid: 29560 + components: + - type: Transform + pos: -119.6511,93.74292 + parent: 2 + - uid: 34585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.524574,88.66599 + parent: 2 + - uid: 36186 + components: + - type: Transform + pos: -2.6314583,86.59025 + parent: 2 +- proto: LampBanana + entities: + - uid: 14078 + components: + - type: Transform + pos: -70.42365,92.67868 + parent: 2 +- proto: LampGold + entities: + - uid: 11088 + components: + - type: Transform + pos: -1.4572706,76.94417 + parent: 2 + - uid: 11423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.45829082,76.834145 + parent: 2 + - uid: 14344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.47256,81.89669 + parent: 2 + - uid: 14458 + components: + - type: Transform + pos: -62.470184,87.83896 + parent: 2 + - uid: 14541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.65618,81.6983 + parent: 2 + - uid: 14758 + components: + - type: Transform + pos: -74.6243,75.90899 + parent: 2 + - uid: 27061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.456326,101.09242 + parent: 2 + - uid: 28629 + components: + - type: Transform + pos: -120.39788,52.708584 + parent: 2 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 28630 + - type: Physics + canCollide: True +- proto: LampInterrogator + entities: + - uid: 10919 + components: + - type: Transform + pos: 61.756172,45.0701 + parent: 2 +- proto: LandMineExplosive + entities: + - uid: 26336 + components: + - type: Transform + pos: -130.26373,82.80991 + parent: 2 +- proto: Lantern + entities: + - uid: 1026 + components: + - type: Transform + pos: -58.519203,63.713875 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -60.514763,63.713875 + parent: 2 + - uid: 14328 + components: + - type: Transform + pos: -72.88146,104.08956 + parent: 2 + - uid: 17672 + components: + - type: Transform + pos: -87.40864,100.6839 + parent: 2 + - uid: 17891 + components: + - type: Transform + pos: -66.66343,161.84158 + parent: 2 + - uid: 18562 + components: + - type: Transform + pos: -66.382225,161.66167 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 20993 + components: + - type: Transform + pos: -73.3808,169.03949 + parent: 2 +- proto: LauncherCreamPie + entities: + - uid: 33715 + components: + - type: Transform + pos: 7.456684,75.702156 + parent: 2 +- proto: LeavesCannabis + entities: + - uid: 7396 + components: + - type: Transform + parent: 7394 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LeavesCannabisDried + entities: + - uid: 2084 + components: + - type: Transform + pos: 48.42627,45.51488 + parent: 2 + - type: Stack + count: 5 + - uid: 34617 + components: + - type: Transform + pos: 42.46634,38.536983 + parent: 2 + - uid: 36685 + components: + - type: Transform + pos: 49.518173,42.42555 + parent: 2 + - type: Stack + count: 5 +- proto: LeftArmBorg + entities: + - uid: 38270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.02609,182.28293 + parent: 2 +- proto: LeftArmSkeleton + entities: + - uid: 3726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.30249,67.68201 + parent: 2 + - uid: 26339 + components: + - type: Transform + pos: -134.37924,87.75849 + parent: 2 +- proto: LeftHandSkeleton + entities: + - uid: 26337 + components: + - type: Transform + pos: -134.35797,87.696495 + parent: 2 +- proto: LeftLegSkeleton + entities: + - uid: 26045 + components: + - type: Transform + pos: -131.90509,85.363 + parent: 2 +- proto: LightBulbBroken + entities: + - uid: 1099 + components: + - type: Transform + pos: -31.43416,-19.189983 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 29.416492,17.27271 + parent: 2 + - uid: 6489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.46831,22.476456 + parent: 2 + - uid: 28185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.4985,142.71852 + parent: 2 +- proto: Lighter + entities: + - uid: 13588 + components: + - type: Transform + pos: -27.244879,101.19113 + parent: 2 +- proto: LightHeadBorg + entities: + - uid: 23197 + components: + - type: Transform + pos: -76.46475,36.67176 + parent: 2 +- proto: LightReplacer + entities: + - uid: 25421 + components: + - type: Transform + pos: -102.596695,49.117046 + parent: 2 +- proto: LightTubeBroken + entities: + - uid: 1102 + components: + - type: Transform + pos: -36.277912,-18.564983 + parent: 2 + - uid: 2692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.682117,16.007088 + parent: 2 + - uid: 2979 + components: + - type: Transform + parent: 2978 + - type: Physics + canCollide: False + - uid: 18598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.45682,156.3921 + parent: 2 + - uid: 19688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.69182,147.52245 + parent: 2 + - uid: 19691 + components: + - type: Transform + pos: -85.42294,152.49246 + parent: 2 + - uid: 19694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.22689,148.5232 + parent: 2 + - uid: 19696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.41281,150.56967 + parent: 2 + - uid: 23652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.716059,183.65678 + parent: 2 + - uid: 23670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.4889555,184.59006 + parent: 2 + - uid: 34613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.53894,88.26722 + parent: 2 +- proto: LiquidNitrogenCanister + entities: + - uid: 7033 + components: + - type: Transform + pos: -112.5,15.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: -102.5,32.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + pos: -109.5,15.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + pos: -68.5,149.5 + parent: 2 + - uid: 17475 + components: + - type: Transform + pos: 9.5,174.5 + parent: 2 +- proto: LiquidOxygenCanister + entities: + - uid: 4173 + components: + - type: Transform + pos: -69.5,149.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: -107.5,15.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: -104.5,15.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + pos: -102.5,33.5 + parent: 2 + - uid: 21294 + components: + - type: Transform + pos: 9.5,175.5 + parent: 2 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 5958 + components: + - type: Transform + pos: -104.5,37.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: -105.5,37.5 + parent: 2 + - uid: 6178 + components: + - type: Transform + pos: -103.5,37.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 11054 + components: + - type: Transform + pos: -33.5,58.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 13265 + components: + - type: Transform + pos: -0.5,68.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + pos: -0.5,67.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + pos: -0.5,66.5 + parent: 2 + - uid: 19712 + components: + - type: Transform + pos: -64.5,161.5 + parent: 2 +- proto: LockerBotanistLoot + entities: + - uid: 17598 + components: + - type: Transform + pos: -64.5,169.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 24098 + components: + - type: Transform + pos: 14.5,200.5 + parent: 2 +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 9032 + components: + - type: Transform + pos: -32.5,98.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 22881 + components: + - type: Transform + pos: -22.5,190.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21180 + - 21181 + - 21218 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 23370 + components: + - type: Transform + pos: -24.5,190.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21256 + - 22317 + - 22318 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefEngineerFilled + entities: + - uid: 8699 + components: + - type: Transform + pos: -123.5,55.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 23298 + components: + - type: Transform + pos: -19.5,206.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerClown + entities: + - uid: 5584 + components: + - type: Transform + pos: -71.5,92.5 + parent: 2 +- proto: LockerDetectiveFilled + entities: + - uid: 11154 + components: + - type: Transform + pos: -3.5,78.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 15062 + components: + - type: Transform + pos: -48.5,103.5 + parent: 2 + - uid: 30720 + components: + - type: Transform + pos: -94.5,50.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 1742 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 4805 + components: + - type: Transform + pos: -105.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4927 + components: + - type: Transform + pos: -97.5,51.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: -97.5,49.5 + parent: 2 + - uid: 28808 + components: + - type: Transform + pos: -103.5,51.5 + parent: 2 + - uid: 28809 + components: + - type: Transform + pos: -102.5,51.5 + parent: 2 + - uid: 28810 + components: + - type: Transform + pos: -97.5,50.5 + parent: 2 + - uid: 28815 + components: + - type: Transform + pos: -101.5,51.5 + parent: 2 + - uid: 28826 + components: + - type: Transform + pos: -97.5,48.5 + parent: 2 + - uid: 28828 + components: + - type: Transform + pos: -104.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerEvidence + entities: + - uid: 389 + components: + - type: Transform + pos: 67.5,55.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -5.5,177.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4154 + components: + - type: Transform + pos: 67.5,53.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 67.5,54.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: 67.5,52.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: 75.5,54.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: -4.5,181.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14966 + moles: + - 1.8977377 + - 7.139109 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15540 + - 15541 + - 15542 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15411 + components: + - type: Transform + pos: 75.5,53.5 + parent: 2 + - uid: 22134 + components: + - type: Transform + pos: -77.5,155.5 + parent: 2 + - uid: 27917 + components: + - type: Transform + pos: -93.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 29732 + components: + - type: Transform + pos: 71.5,53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19058 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezer + entities: + - uid: 12935 + components: + - type: Transform + pos: -17.5,71.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11122 + - 11128 + - 11157 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerVaultFilled + entities: + - uid: 8934 + components: + - type: Transform + pos: -48.5,96.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 10525 + components: + - type: Transform + pos: -15.5,87.5 + parent: 2 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 3551 + components: + - type: Transform + pos: 83.5,63.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 23415 + components: + - type: Transform + pos: 2.5,205.5 + parent: 2 + - uid: 23416 + components: + - type: Transform + pos: 2.5,204.5 + parent: 2 + - uid: 23447 + components: + - type: Transform + pos: -26.5,200.5 + parent: 2 + - uid: 30974 + components: + - type: Transform + pos: 0.5,1.5 + parent: 30902 + - uid: 30975 + components: + - type: Transform + pos: 2.5,1.5 + parent: 30902 +- proto: LockerMime + entities: + - uid: 5604 + components: + - type: Transform + pos: -60.5,99.5 + parent: 2 +- proto: LockerParamedicFilled + entities: + - uid: 25381 + components: + - type: Transform + pos: -5.5,169.5 + parent: 2 + - uid: 25382 + components: + - type: Transform + pos: -4.5,169.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 1720 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19069 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilled + entities: + - uid: 18384 + components: + - type: Transform + pos: -83.5,156.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 931 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 20353 + components: + - type: Transform + pos: -92.5,165.5 + parent: 2 + - uid: 20354 + components: + - type: Transform + pos: -92.5,164.5 + parent: 2 + - uid: 20355 + components: + - type: Transform + pos: -92.5,163.5 + parent: 2 + - uid: 20356 + components: + - type: Transform + pos: -92.5,162.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 903 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 76.5,63.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: 76.5,59.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: -39.5,84.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: 79.5,57.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: 79.5,61.5 + parent: 2 + - uid: 22362 + components: + - type: Transform + pos: 81.5,57.5 + parent: 2 + - uid: 26814 + components: + - type: Transform + pos: 76.5,61.5 + parent: 2 + - uid: 27378 + components: + - type: Transform + pos: 76.5,62.5 + parent: 2 + - uid: 32439 + components: + - type: Transform + pos: 93.5,51.5 + parent: 2 + - uid: 37121 + components: + - type: Transform + pos: 80.5,57.5 + parent: 2 + - uid: 37502 + components: + - type: Transform + pos: 82.5,57.5 + parent: 2 + - uid: 39298 + components: + - type: Transform + pos: 76.5,60.5 + parent: 2 + - uid: 42216 + components: + - type: Transform + pos: 46.5,58.5 + parent: 2 +- proto: LockerWallMedicalFilled + entities: + - uid: 16975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 13386 +- proto: LockerWardenFilled + entities: + - uid: 4230 + components: + - type: Transform + pos: 73.5,54.5 + parent: 2 +- proto: LockerWeldingSupplies + entities: + - uid: 25246 + components: + - type: Transform + pos: -130.5,91.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25268 + - 25293 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Weldable + isWelded: True +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 15064 + components: + - type: Transform + pos: -48.5,104.5 + parent: 2 + - uid: 17165 + components: + - type: Transform + pos: -85.5,75.5 + parent: 2 + - uid: 28003 + components: + - type: Transform + pos: -93.5,48.5 + parent: 2 + - uid: 29103 + components: + - type: Transform + pos: 87.5,59.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LootSpawnerArmoryGunsOnly + entities: + - uid: 8577 + components: + - type: Transform + pos: 62.5,58.5 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 20109 + components: + - type: Transform + pos: -79.5,183.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 8345 + components: + - type: Transform + pos: -75.5,178.5 + parent: 2 + - uid: 20136 + components: + - type: Transform + pos: -75.5,177.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 3731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,149.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + pos: -82.5,177.5 + parent: 2 + - uid: 20129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,177.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 12978 + components: + - type: Transform + pos: -85.5,147.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + pos: -96.5,174.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 2889 + components: + - type: Transform + pos: -128.5,54.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: -128.5,55.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: -126.5,55.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: -7.5,210.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: -83.5,177.5 + parent: 2 + - uid: 23446 + components: + - type: Transform + pos: -23.5,198.5 + parent: 2 + - uid: 28081 + components: + - type: Transform + pos: -100.5,147.5 + parent: 2 + - uid: 37362 + components: + - type: Transform + pos: -75.5,179.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 2615 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 23733 + components: + - type: Transform + pos: 23.5,199.5 + parent: 2 + - uid: 34519 + components: + - type: Transform + pos: -118.5,108.5 + parent: 2 + - uid: 37046 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 36996 +- proto: MagazineBoxMagnumPractice + entities: + - uid: 5301 + components: + - type: Transform + pos: 51.36094,56.594063 + parent: 2 +- proto: MagazineLightRifle + entities: + - uid: 8376 + components: + - type: Transform + pos: 61.6875,60.46875 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: 61.375,60.46875 + parent: 2 +- proto: MagazinePistolPractice + entities: + - uid: 12600 + components: + - type: Transform + pos: 52.31962,57.671314 + parent: 2 + - uid: 39157 + components: + - type: Transform + pos: 52.44728,57.671314 + parent: 2 + - uid: 39158 + components: + - type: Transform + pos: 52.489838,57.671314 + parent: 2 + - uid: 39159 + components: + - type: Transform + pos: 52.596214,57.671314 + parent: 2 + - uid: 39160 + components: + - type: Transform + pos: 52.681328,57.671314 + parent: 2 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 1809 + components: + - type: Transform + pos: 88.656746,64.585815 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: 88.562996,64.335815 + parent: 2 +- proto: MagicalLamp + entities: + - uid: 19917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.74762,160.71548 + parent: 2 +- proto: MagicDiceBag + entities: + - uid: 14835 + components: + - type: Transform + pos: -63.252403,87.48975 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 4734 + components: + - type: Transform + pos: 85.5,59.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: -11.5,86.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + pos: -58.5,95.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + pos: -81.5,79.5 + parent: 2 + - uid: 15491 + components: + - type: Transform + pos: -66.5,110.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: -49.5,66.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: -49.5,65.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: -46.5,71.5 + parent: 2 + - uid: 15872 + components: + - type: Transform + pos: -54.5,85.5 + parent: 2 + - uid: 17019 + components: + - type: Transform + pos: -60.5,113.5 + parent: 2 + - uid: 17345 + components: + - type: Transform + pos: -63.5,112.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + pos: -60.5,109.5 + parent: 2 + - uid: 17351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,109.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + pos: -105.5,95.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + pos: -65.5,169.5 + parent: 2 + - uid: 18577 + components: + - type: Transform + pos: -62.5,171.5 + parent: 2 + - uid: 18588 + components: + - type: Transform + pos: -60.5,164.5 + parent: 2 + - uid: 19621 + components: + - type: Transform + pos: -105.5,89.5 + parent: 2 + - uid: 22878 + components: + - type: Transform + pos: -81.5,79.5 + parent: 2 + - uid: 24026 + components: + - type: Transform + pos: -13.5,211.5 + parent: 2 + - uid: 24027 + components: + - type: Transform + pos: -24.5,209.5 + parent: 2 + - uid: 24100 + components: + - type: Transform + pos: 12.5,202.5 + parent: 2 + - uid: 24101 + components: + - type: Transform + pos: 7.5,203.5 + parent: 2 + - uid: 24192 + components: + - type: Transform + pos: 24.5,186.5 + parent: 2 + - uid: 24193 + components: + - type: Transform + pos: 23.5,194.5 + parent: 2 + - uid: 24361 + components: + - type: Transform + pos: 23.5,179.5 + parent: 2 + - uid: 25499 + components: + - type: Transform + pos: 5.5,172.5 + parent: 2 + - uid: 26333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.5,87.5 + parent: 2 + - uid: 26335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -134.5,86.5 + parent: 2 + - uid: 28094 + components: + - type: Transform + pos: -89.5,143.5 + parent: 2 + - uid: 29719 + components: + - type: Transform + pos: -105.5,58.5 + parent: 2 + - uid: 34524 + components: + - type: Transform + pos: -30.5,194.5 + parent: 2 + - uid: 34525 + components: + - type: Transform + pos: -30.5,194.5 + parent: 2 + - uid: 34526 + components: + - type: Transform + pos: -30.5,196.5 + parent: 2 + - uid: 34527 + components: + - type: Transform + pos: -31.5,178.5 + parent: 2 + - uid: 37344 + components: + - type: Transform + pos: -41.5,176.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 66 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: -70.5,71.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 84.5,54.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: -33.5,206.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: -32.5,198.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: -31.5,198.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: -33.5,199.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: -84.5,33.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + pos: -26.5,73.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + pos: -70.5,87.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + pos: -43.5,63.5 + parent: 2 + - uid: 17219 + components: + - type: Transform + pos: -73.5,71.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + pos: -81.5,75.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + pos: -78.5,71.5 + parent: 2 + - uid: 19944 + components: + - type: Transform + pos: -86.5,152.5 + parent: 2 + - uid: 19946 + components: + - type: Transform + pos: -98.5,152.5 + parent: 2 + - uid: 19947 + components: + - type: Transform + pos: -98.5,148.5 + parent: 2 + - uid: 20519 + components: + - type: Transform + pos: -90.5,167.5 + parent: 2 + - uid: 20870 + components: + - type: Transform + pos: -75.5,175.5 + parent: 2 + - uid: 21316 + components: + - type: Transform + pos: -57.5,172.5 + parent: 2 + - uid: 21317 + components: + - type: Transform + pos: -59.5,174.5 + parent: 2 + - uid: 21318 + components: + - type: Transform + pos: -64.5,172.5 + parent: 2 + - uid: 21319 + components: + - type: Transform + pos: -60.5,174.5 + parent: 2 + - uid: 21326 + components: + - type: Transform + pos: -60.5,163.5 + parent: 2 + - uid: 21327 + components: + - type: Transform + pos: -59.5,161.5 + parent: 2 + - uid: 21329 + components: + - type: Transform + pos: -62.5,168.5 + parent: 2 + - uid: 21330 + components: + - type: Transform + pos: -63.5,168.5 + parent: 2 + - uid: 21331 + components: + - type: Transform + pos: -61.5,171.5 + parent: 2 + - uid: 25271 + components: + - type: Transform + pos: -80.5,86.5 + parent: 2 + - uid: 25491 + components: + - type: Transform + pos: 8.5,172.5 + parent: 2 + - uid: 25492 + components: + - type: Transform + pos: 18.5,178.5 + parent: 2 + - uid: 25493 + components: + - type: Transform + pos: 23.5,177.5 + parent: 2 + - uid: 25494 + components: + - type: Transform + pos: 21.5,180.5 + parent: 2 + - uid: 25495 + components: + - type: Transform + pos: 22.5,175.5 + parent: 2 + - uid: 25674 + components: + - type: Transform + pos: 0.5,169.5 + parent: 2 + - uid: 25675 + components: + - type: Transform + pos: 0.5,170.5 + parent: 2 + - uid: 28095 + components: + - type: Transform + pos: -89.5,145.5 + parent: 2 + - uid: 34528 + components: + - type: Transform + pos: -30.5,195.5 + parent: 2 + - uid: 36158 + components: + - type: Transform + pos: -26.5,87.5 + parent: 2 + - uid: 37232 + components: + - type: Transform + pos: -57.5,169.5 + parent: 2 + - uid: 37340 + components: + - type: Transform + pos: -36.5,178.5 + parent: 2 + - uid: 37341 + components: + - type: Transform + pos: -44.5,176.5 + parent: 2 + - uid: 37342 + components: + - type: Transform + pos: -47.5,173.5 + parent: 2 + - uid: 37343 + components: + - type: Transform + pos: -53.5,172.5 + parent: 2 + - uid: 37508 + components: + - type: Transform + pos: 85.5,46.5 + parent: 2 + - uid: 38093 + components: + - type: Transform + pos: -91.5,53.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 3007 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + pos: -27.5,76.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + pos: -100.5,61.5 + parent: 2 + - uid: 19636 + components: + - type: Transform + pos: -114.5,82.5 + parent: 2 + - uid: 23516 + components: + - type: Transform + pos: -23.5,196.5 + parent: 2 + - uid: 24102 + components: + - type: Transform + pos: 6.5,204.5 + parent: 2 + - uid: 27942 + components: + - type: Transform + pos: -116.5,97.5 + parent: 2 + - uid: 28089 + components: + - type: Transform + pos: -92.5,145.5 + parent: 2 + - uid: 28092 + components: + - type: Transform + pos: -92.5,145.5 + parent: 2 + - uid: 29717 + components: + - type: Transform + pos: -114.5,68.5 + parent: 2 + - uid: 37345 + components: + - type: Transform + pos: -41.5,176.5 + parent: 2 + - uid: 38096 + components: + - type: Transform + pos: -91.5,52.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 17701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-20.5 + parent: 2 + - uid: 23517 + components: + - type: Transform + pos: -25.5,196.5 + parent: 2 +- proto: MarimbaInstrument + entities: + - uid: 13165 + components: + - type: Transform + pos: -34.5,66.5 + parent: 2 +- proto: MatchstickSpent + entities: + - uid: 34540 + components: + - type: Transform + pos: -15.3647,179.69258 + parent: 2 +- proto: MaterialBananium1 + entities: + - uid: 1498 + components: + - type: Transform + pos: -57.470455,-0.31729198 + parent: 2 + - uid: 33716 + components: + - type: Transform + pos: 5.311184,77.63036 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 9017 + components: + - type: Transform + pos: -19.534115,81.75809 + parent: 2 +- proto: MaterialCloth1 + entities: + - uid: 25401 + components: + - type: Transform + pos: -3.479576,165.5937 + parent: 2 +- proto: MaterialCloth10 + entities: + - uid: 15871 + components: + - type: Transform + pos: -54.51159,84.637764 + parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 36117 + components: + - type: Transform + pos: -103.66792,142.15707 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 8950 + components: + - type: Transform + pos: -19.146719,81.546844 + parent: 2 +- proto: MedicalBed + entities: + - uid: 3460 + components: + - type: Transform + pos: -9.5,190.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -5.5,191.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: -5.5,193.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: -9.5,193.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: -5.5,194.5 + parent: 2 + - uid: 29721 + components: + - type: Transform + pos: -9.5,194.5 + parent: 2 + - uid: 43454 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 30902 + - uid: 43455 + components: + - type: Transform + pos: -0.5,0.5 + parent: 30902 +- proto: MedicalTechFab + entities: + - uid: 22978 + components: + - type: Transform + pos: 2.5,198.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 30976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5655556,1.4836578 + parent: 30902 +- proto: MedkitBruteFilled + entities: + - uid: 22868 + components: + - type: Transform + pos: 2.50806,197.47543 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 23010 + components: + - type: Transform + pos: 2.5193083,199.76929 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 22688 + components: + - type: Transform + pos: 14.126888,189.46518 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 9102 + components: + - type: Transform + pos: -4.5083885,172.68301 + parent: 2 + - uid: 20799 + components: + - type: Transform + pos: 73.41235,52.5728 + parent: 2 + - uid: 25399 + components: + - type: Transform + pos: -1.4811502,169.61919 + parent: 2 + - uid: 38567 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitOxygenFilled + entities: + - uid: 22828 + components: + - type: Transform + pos: 2.50806,196.60962 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 22872 + components: + - type: Transform + pos: 1.664032,196.5654 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 22873 + components: + - type: Transform + pos: 2.5193083,200.41022 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 21058 + components: + - type: Transform + pos: -68.56034,169.65195 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 9583 + components: + - type: Transform + pos: -31.467472,68.57844 + parent: 2 + - uid: 10707 + components: + - type: Transform + pos: -7.525024,84.3832 + parent: 2 +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 20393 + components: + - type: Transform + pos: -86.4519,162.50287 + parent: 2 +- proto: Mirror + entities: + - uid: 13210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,67.5 + parent: 2 + - uid: 13793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,109.5 + parent: 2 + - uid: 13796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,111.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,113.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,109.5 + parent: 2 + - uid: 39426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,170.5 + parent: 2 +- proto: MopBucket + entities: + - uid: 38426 + components: + - type: Transform + pos: 58.581192,39.565628 + parent: 2 +- proto: MopItem + entities: + - uid: 24038 + components: + - type: Transform + pos: -25.467176,206.46101 + parent: 2 + - uid: 38384 + components: + - type: Transform + parent: 38381 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Morgue + entities: + - uid: 11212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,73.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,69.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,68.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,67.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,59.5 + parent: 2 + - uid: 19273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,60.5 + parent: 2 + - uid: 22357 + components: + - type: Transform + pos: -8.5,208.5 + parent: 2 + - uid: 22358 + components: + - type: Transform + pos: -7.5,208.5 + parent: 2 + - uid: 23128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,43.5 + parent: 2 + - uid: 23386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,207.5 + parent: 2 + - uid: 23396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,207.5 + parent: 2 + - uid: 23397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,208.5 + parent: 2 + - uid: 23398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,209.5 + parent: 2 + - uid: 23399 + components: + - type: Transform + pos: -10.5,208.5 + parent: 2 + - uid: 23400 + components: + - type: Transform + pos: -9.5,208.5 + parent: 2 + - uid: 23402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,208.5 + parent: 2 + - uid: 23403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,209.5 + parent: 2 +- proto: Multitool + entities: + - uid: 10600 + components: + - type: Transform + pos: -137.69815,52.589195 + parent: 2 + - uid: 37083 + components: + - type: Transform + pos: 3.9374428,209.33414 + parent: 2 + - uid: 37084 + components: + - type: Transform + pos: -61.53608,174.45718 + parent: 2 + - uid: 37085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.648575,-20.688828 + parent: 2 + - uid: 37087 + components: + - type: Transform + pos: -49.69513,71.27292 + parent: 2 + - uid: 37088 + components: + - type: Transform + pos: -124.54692,94.52317 + parent: 2 +- proto: MusicBoxInstrument + entities: + - uid: 37355 + components: + - type: Transform + pos: -43.648487,173.46503 + parent: 2 +- proto: Nettle + entities: + - uid: 38081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.16576,105.93599 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 1525 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: 69.5,18.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + pos: -132.5,52.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + pos: 91.5,15.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + pos: 3.006569,208.4748 + parent: 2 + - uid: 13273 + components: + - type: Transform + pos: -57.5,14.5 + parent: 2 + - uid: 14863 + components: + - type: Transform + pos: -81.5,96.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + pos: -105.5,42.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: -72.5,66.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: -98.5,158.5 + parent: 2 + - uid: 16478 + components: + - type: Transform + pos: -22.5,98.5 + parent: 2 + - uid: 26203 + components: + - type: Transform + pos: -32.5,191.5 + parent: 2 + - uid: 37103 + components: + - type: Transform + pos: 76.5,34.5 + parent: 2 +- proto: NitrogenTank + entities: + - uid: 3515 + components: + - type: Transform + pos: 85.30824,47.53895 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 4808 + components: + - type: Transform + pos: 116.66271,57.403824 + parent: 2 + - uid: 11503 + components: + - type: Transform + pos: -110.617065,149.61588 + parent: 2 + - uid: 14315 + components: + - type: Transform + pos: -115.42291,37.52243 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 2174 + components: + - type: Transform + pos: 38.5,59.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + pos: 10.5,174.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 22741 + components: + - type: Transform + pos: 5.644435,182.43683 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 12316 + components: + - type: Transform + pos: -23.5,64.5 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 8360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.419807,131.71463 + parent: 2 +- proto: NuclearBombUnanchored + entities: + - uid: 5300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,96.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.59400004 + position: 0,0 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - TableLayer + - LowImpassable + density: 80 + hard: True + restitution: 0 + friction: 0.4 + - type: Nuke + totalIntensity: 9000000 + - type: ScaleVisuals +- proto: OatBushel + entities: + - uid: 14548 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27202 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27695 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Ointment + entities: + - uid: 4783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.642418,12.186539 + parent: 2 + - uid: 13344 + components: + - type: Transform + pos: -0.5920167,200.52628 + parent: 2 + - uid: 15419 + components: + - type: Transform + pos: -80.39906,100.451904 + parent: 2 +- proto: Ointment1 + entities: + - uid: 26376 + components: + - type: Transform + pos: -36.348248,193.5337 + parent: 2 + - uid: 26378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5389,189.77164 + parent: 2 +- proto: OmnizineChemistryBottle + entities: + - uid: 22913 + components: + - type: Transform + pos: -3.402627,199.32462 + parent: 2 +- proto: OperatingTable + entities: + - uid: 15523 + components: + - type: Transform + pos: -39.5,59.5 + parent: 2 + - uid: 16761 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - uid: 23265 + components: + - type: Transform + pos: 4.5,184.5 + parent: 2 + - uid: 23405 + components: + - type: Transform + pos: -10.5,210.5 + parent: 2 +- proto: OreBag + entities: + - uid: 1080 + components: + - type: Transform + pos: -39.44789,-11.793639 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: -50.423325,5.1573486 + parent: 2 +- proto: OreBox + entities: + - uid: 4514 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 1034 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 +- proto: OrganHumanEyes + entities: + - uid: 675 + components: + - type: Transform + pos: -35.50139,57.563133 + parent: 2 + - uid: 35969 + components: + - type: Transform + pos: -43.52321,54.237442 + parent: 2 +- proto: OrganHumanKidneys + entities: + - uid: 15554 + components: + - type: Transform + pos: -37.63288,58.673306 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 1467 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: -71.5,-7.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + pos: -53.5,14.5 + parent: 2 + - uid: 11282 + components: + - type: Transform + pos: -136.5,52.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 85.5,15.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + pos: 3.5,82.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + pos: 2.350319,208.44354 + parent: 2 + - uid: 15291 + components: + - type: Transform + pos: -36.5,187.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + pos: 57.5,50.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + pos: -80.5,96.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: -81.5,74.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: -76.5,141.5 + parent: 2 + - uid: 16502 + components: + - type: Transform + pos: 3.5,169.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + pos: -21.5,98.5 + parent: 2 + - uid: 18237 + components: + - type: Transform + pos: -98.5,162.5 + parent: 2 + - uid: 28187 + components: + - type: Transform + pos: 76.5,35.5 + parent: 2 + - uid: 29126 + components: + - type: Transform + pos: -115.5,38.5 + parent: 2 + - uid: 32203 + components: + - type: Transform + pos: -86.5,175.5 + parent: 2 + - uid: 32206 + components: + - type: Transform + pos: -85.5,175.5 + parent: 2 + - uid: 34432 + components: + - type: Transform + pos: -15.5,175.5 + parent: 2 + - uid: 36348 + components: + - type: Transform + pos: 69.5,17.5 + parent: 2 + - uid: 37333 + components: + - type: Transform + pos: -52.5,170.5 + parent: 2 + - uid: 38095 + components: + - type: Transform + pos: -91.5,50.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 1151 + components: + - type: Transform + pos: -48.62166,-5.280056 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: -115.65729,37.663055 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: 116.41336,57.591324 + parent: 2 + - uid: 11589 + components: + - type: Transform + pos: -110.335815,149.47525 + parent: 2 + - uid: 29700 + components: + - type: Transform + pos: 85.5745,47.444233 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 11031 + components: + - type: Transform + pos: -29.5,64.5 + parent: 2 +- proto: PaintingSkeletonCigarette + entities: + - uid: 10701 + components: + - type: Transform + pos: -3.5,87.5 + parent: 2 +- proto: PanFluteInstrument + entities: + - uid: 17790 + components: + - type: Transform + pos: -75.54448,167.45238 + parent: 2 +- proto: Paper + entities: + - uid: 1686 + components: + - type: Transform + pos: -12.687513,4.5693884 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: -12.4175625,4.6818323 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: 27.292665,20.688726 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: 27.503603,20.618414 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: 27.316103,20.524664 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: 67.91085,67.43642 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: 67.787125,67.593834 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: 74.40094,67.57134 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: 95.02202,53.59107 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: 95.190735,53.669777 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: -18.633318,81.59547 + parent: 2 + - uid: 10503 + components: + - type: Transform + pos: -18.633318,81.59547 + parent: 2 + - uid: 10504 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10505 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10506 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10507 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10508 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10509 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10510 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10511 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10512 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10513 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10514 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10515 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10516 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10517 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10518 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10519 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10520 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10521 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10522 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10523 + components: + - type: Transform + pos: -18.633318,81.60671 + parent: 2 + - uid: 10528 + components: + - type: Transform + pos: -19.877142,86.42372 + parent: 2 + - type: Paper + content: No one must touch Ian... No one must touch Ian... No one must touch Ian... No one must touch Ian... No one must touch Ian... No one must touch Ian... No one must touch Ian... No one... + - type: ActiveUserInterface + - uid: 10691 + components: + - type: Transform + pos: -5.6294026,86.54193 + parent: 2 + - uid: 10692 + components: + - type: Transform + pos: -5.640651,86.54193 + parent: 2 + - uid: 10693 + components: + - type: Transform + pos: -5.640651,86.54193 + parent: 2 + - uid: 10694 + components: + - type: Transform + pos: -5.640651,86.54193 + parent: 2 + - uid: 10695 + components: + - type: Transform + pos: -5.640651,86.54193 + parent: 2 + - uid: 10933 + components: + - type: Transform + pos: -134.11105,87.23734 + parent: 2 + - type: Paper + content: > + Attachment: 6/11: Dr. █████ Research Protocol. + + + Subject: Apple. + + Result: Loud explosion. The apple is gone. + + + Subject: Clown horn. + + Result: Loud explosion. The clown horn is gone. + + + Subject: Alice Jackson's assistant. + + Result: Loud explosion. Alice Jackson is missing. Elise Jackson reports over the comms channel that she is locked in the Head of Staff's office with Ian. The head of staff is furious. + + + Subject: ████████. + + Result: Very loud explosion. Depressurization. No further experimentation possible. + - uid: 14505 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14506 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14511 + components: + - type: Transform + pos: -65.64502,82.652405 + parent: 2 + - uid: 14512 + components: + - type: Transform + pos: -65.64502,82.66365 + parent: 2 + - uid: 14743 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14744 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14745 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14746 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14747 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14748 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14749 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14750 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14751 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 14752 + components: + - type: Transform + pos: -75.01798,75.56041 + parent: 2 + - uid: 19693 + components: + - type: Transform + pos: -95.35152,42.255627 + parent: 2 + - uid: 20182 + components: + - type: Transform + pos: -80.37672,180.52962 + parent: 2 + - uid: 20183 + components: + - type: Transform + pos: -80.37672,180.52962 + parent: 2 + - uid: 20184 + components: + - type: Transform + pos: -80.37672,180.52962 + parent: 2 + - uid: 20185 + components: + - type: Transform + pos: -80.37672,180.52962 + parent: 2 + - uid: 20186 + components: + - type: Transform + pos: -80.59042,180.63083 + parent: 2 + - uid: 20369 + components: + - type: Transform + pos: -84.45139,165.64062 + parent: 2 + - uid: 20370 + components: + - type: Transform + pos: -84.46264,165.64062 + parent: 2 + - uid: 20371 + components: + - type: Transform + pos: -84.46264,165.64062 + parent: 2 + - uid: 20372 + components: + - type: Transform + pos: -84.46264,165.64062 + parent: 2 + - uid: 20373 + components: + - type: Transform + pos: -84.46264,165.64062 + parent: 2 + - uid: 20374 + components: + - type: Transform + pos: -84.26018,165.52818 + parent: 2 + - uid: 20912 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20913 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20914 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20915 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20916 + components: + - type: Transform + pos: -68.2968,176.20135 + parent: 2 + - uid: 20917 + components: + - type: Transform + pos: -68.44302,176.04393 + parent: 2 + - uid: 24231 + components: + - type: Transform + pos: -58.235542,97.996445 + parent: 2 + - uid: 24232 + components: + - type: Transform + pos: -58.235542,97.996445 + parent: 2 + - uid: 24233 + components: + - type: Transform + pos: -58.235542,97.996445 + parent: 2 + - uid: 27977 + components: + - type: Transform + pos: -95.35152,42.255627 + parent: 2 + - uid: 28085 + components: + - type: Transform + pos: -95.35152,42.255627 + parent: 2 + - uid: 29203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.430954,92.614 + parent: 2 + - uid: 29992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.507545,94.75043 + parent: 2 + - uid: 30064 + components: + - type: Transform + pos: -116.305084,93.063774 + parent: 2 + - uid: 34607 + components: + - type: Transform + pos: -126.68592,87.654366 + parent: 2 + - uid: 34651 + components: + - type: Transform + pos: -126.29296,88.226265 + parent: 2 + - uid: 37834 + components: + - type: MetaData + name: postscript + - type: Transform + parent: 12072 + - type: Paper + content: >- + In this mass grave lie all the brave pioneers of Gate Station. Thanks to their efforts, this station has become as beautiful as it is today. + + + Here they are, from left to right: + + Aserovich + + gotmogoverhaul + + meyram273 + + lying_potato + + thoriumm + + yunevka + + etopolyak + + ktnlkrnl + + nimfarius + + Řøłæņđ#1048 + + alisw_a + + demuerte + + deserty0 + + hikzero + + just_useless + + lazychik + + lomcastar + + miyny + + super_duper_idol + + _tumbochka + + xeno_h + + Δαρβиη008#7907 + + abaddon3 + + jenya_corvax + + .zloykefir + + fresh_opef + + lyminitt + + .enriko_pucci + + tuman207 + + zmes1 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PaperBin10 + entities: + - uid: 1156 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + pos: -4.5,86.5 + parent: 2 + - uid: 28598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,55.5 + parent: 2 + - uid: 36616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,100.5 + parent: 2 + - uid: 36670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,197.5 + parent: 2 + - uid: 43173 + components: + - type: Transform + pos: 1.5,1.5 + parent: 37842 +- proto: PaperBin5 + entities: + - uid: 977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - uid: 34584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,87.5 + parent: 2 +- proto: PaperOffice + entities: + - uid: 4764 + components: + - type: Transform + pos: 26.700586,19.446747 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: -59.508972,129.62624 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: -63.63479,87.34115 + parent: 2 + - uid: 14472 + components: + - type: Transform + pos: -62.959915,86.55404 + parent: 2 + - uid: 14473 + components: + - type: Transform + pos: -62.1838,86.5428 + parent: 2 + - uid: 14474 + components: + - type: Transform + pos: -61.28396,87.37488 + parent: 2 + - uid: 17513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.56496,37.545982 + parent: 2 + - uid: 17514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.45558,37.514732 + parent: 2 + - uid: 17797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.65871,37.608482 + parent: 2 + - uid: 18944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.974794,177.68834 + parent: 2 + - uid: 29713 + components: + - type: Transform + pos: 71.52304,50.54513 + parent: 2 + - uid: 36671 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36672 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36673 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36674 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36675 + components: + - type: Transform + pos: -16.96088,203.57475 + parent: 2 + - uid: 36676 + components: + - type: Transform + pos: -16.870897,203.41733 + parent: 2 +- proto: ParchisBoard + entities: + - uid: 25364 + components: + - type: Transform + pos: -76.77675,45.564697 + parent: 2 +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 1824 + components: + - type: Transform + pos: -131.5,28.5 + parent: 2 +- proto: ParticleAcceleratorEmitterFore + entities: + - uid: 647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,26.5 + parent: 2 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 18756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,25.5 + parent: 2 +- proto: ParticleAcceleratorEmitterStarboard + entities: + - uid: 18962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,27.5 + parent: 2 +- proto: ParticleAcceleratorEndCap + entities: + - uid: 312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,28.5 + parent: 2 + - uid: 18922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,26.5 + parent: 2 +- proto: ParticleAcceleratorFuelChamber + entities: + - uid: 652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,24.5 + parent: 2 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,24.5 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 1456 + components: + - type: Transform + pos: -44.50421,2.3974192 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: -42.43458,2.5435958 + parent: 2 + - uid: 27950 + components: + - type: Transform + pos: -93.233894,145.41992 + parent: 2 + - uid: 27951 + components: + - type: Transform + pos: -90.296394,143.35742 + parent: 2 + - uid: 27972 + components: + - type: Transform + pos: -89.890144,143.45117 + parent: 2 +- proto: PartRodMetal10 + entities: + - uid: 27696 + components: + - type: Transform + pos: -104.87131,41.277573 + parent: 2 +- proto: Pen + entities: + - uid: 4411 + components: + - type: Transform + pos: 62.197388,44.52956 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: 75.688644,67.434975 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 95.35946,53.5236 + parent: 2 + - uid: 10530 + components: + - type: Transform + pos: -18.603714,81.53516 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: -5.505675,86.823044 + parent: 2 + - uid: 14475 + components: + - type: Transform + pos: -63.233925,86.591774 + parent: 2 + - uid: 14476 + components: + - type: Transform + pos: -62.262535,86.39662 + parent: 2 + - uid: 14477 + components: + - type: Transform + pos: -61.306458,87.48733 + parent: 2 + - uid: 14478 + components: + - type: Transform + pos: -63.657288,87.54355 + parent: 2 + - uid: 18227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.31341,37.342163 + parent: 2 + - uid: 20187 + components: + - type: Transform + pos: -80.78702,180.53033 + parent: 2 + - uid: 28083 + components: + - type: Transform + pos: -95.25028,42.458023 + parent: 2 + - uid: 29206 + components: + - type: Transform + pos: -64.57041,65.76266 + parent: 2 + - uid: 29211 + components: + - type: Transform + pos: 70.6888,51.721226 + parent: 2 + - uid: 29720 + components: + - type: Transform + pos: 71.538666,50.529507 + parent: 2 + - uid: 35502 + components: + - type: Transform + pos: -112.5014,42.929836 + parent: 2 + - uid: 37366 + components: + - type: Transform + pos: -52.37763,62.905647 + parent: 2 +- proto: PersonalAI + entities: + - uid: 4560 + components: + - type: Transform + pos: -68.649284,170.06026 + parent: 2 + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.55012,49.597195 + parent: 2 + - uid: 10457 + components: + - type: Transform + pos: -20.483505,84.448456 + parent: 2 + - uid: 12309 + components: + - type: Transform + pos: -91.33618,36.51999 + parent: 2 + - uid: 17899 + components: + - type: Transform + pos: -43.60204,109.6095 + parent: 2 + - uid: 22040 + components: + - type: Transform + pos: 2.4811502,0.44605076 + parent: 2 + - uid: 31600 + components: + - type: Transform + pos: 69.08546,67.62935 + parent: 2 + - uid: 31601 + components: + - type: Transform + pos: -17.538746,193.58914 + parent: 2 + - uid: 31602 + components: + - type: Transform + pos: -115.434204,44.683556 + parent: 2 + - uid: 39970 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PestSpray + entities: + - uid: 16489 + components: + - type: Transform + pos: 1.767525,65.83195 + parent: 2 + - uid: 18191 + components: + - type: Transform + pos: -60.66825,165.72089 + parent: 2 +- proto: PetCarrier + entities: + - uid: 28154 + components: + - type: Transform + pos: -68.5,65.5 + parent: 2 + - uid: 28177 + components: + - type: Transform + pos: -69.5,65.5 + parent: 2 + - uid: 28183 + components: + - type: Transform + pos: -70.5,65.5 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 13646 + components: + - type: Transform + pos: -39.56988,107.62078 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 14841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,71.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 1137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.54107,-11.575691 + parent: 2 + - uid: 24048 + components: + - type: Transform + pos: -131.65852,56.921124 + parent: 2 + - uid: 36090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.66792,140.62517 + parent: 2 +- proto: PineappleSeeds + entities: + - uid: 13284 + components: + - type: Transform + pos: -0.08746719,69.73904 + parent: 2 +- proto: PlantBag + entities: + - uid: 7537 + components: + - type: Transform + pos: 0.5531578,69.59841 + parent: 2 + - uid: 14764 + components: + - type: Transform + pos: 0.6781578,69.78591 + parent: 2 + - uid: 35930 + components: + - type: Transform + pos: 0.3812828,69.36404 + parent: 2 +- proto: PlaqueAtmos + entities: + - uid: 25296 + components: + - type: Transform + pos: -112.5,26.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 5046 + components: + - type: Transform + pos: -122.5,18.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + pos: -101.5,27.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: -113.5,20.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + pos: -67.5,149.5 + parent: 2 + - uid: 32211 + components: + - type: Transform + pos: -90.5,171.5 + parent: 2 +- proto: PlasmaOre1 + entities: + - uid: 1489 + components: + - type: Transform + pos: -38.789467,3.4145467 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -57.487347,-6.565716 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: -57.161156,-6.3520727 + parent: 2 + - uid: 13810 + components: + - type: Transform + pos: -94.512695,164.21005 + parent: 2 + - uid: 17493 + components: + - type: Transform + pos: -94.32148,164.35623 + parent: 2 + - uid: 21269 + components: + - type: Transform + pos: -94.69116,164.71867 + parent: 2 + - uid: 39235 + components: + - type: Transform + pos: -94.242744,163.8165 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 1278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-8.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,12.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,146.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-6.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,146.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,144.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + pos: -74.5,144.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,146.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: -73.5,144.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,12.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,178.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,178.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-7.5 + parent: 2 + - uid: 23241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,192.5 + parent: 2 + - uid: 23242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,192.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,193.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,192.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,195.5 + parent: 2 + - uid: 23605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,192.5 + parent: 2 + - uid: 24478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-6.5 + parent: 2 + - uid: 29733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,53.5 + parent: 2 + - uid: 29734 + components: + - type: Transform + pos: 71.5,53.5 + parent: 2 + - uid: 29735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,53.5 + parent: 2 + - uid: 31791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,11.5 + parent: 2 + - uid: 31959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,177.5 + parent: 2 + - uid: 31960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,178.5 + parent: 2 + - uid: 31961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,177.5 + parent: 2 + - uid: 31963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,177.5 + parent: 2 + - uid: 31964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,177.5 + parent: 2 + - uid: 31965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,177.5 + parent: 2 + - uid: 31966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,178.5 + parent: 2 + - uid: 31967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,177.5 + parent: 2 + - uid: 31968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,177.5 + parent: 2 + - uid: 34591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,21.5 + parent: 2 + - uid: 34618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,21.5 + parent: 2 + - uid: 34694 + components: + - type: Transform + pos: 2.5,215.5 + parent: 2 + - uid: 34696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,215.5 + parent: 2 + - uid: 34697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,216.5 + parent: 2 + - uid: 35487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,20.5 + parent: 2 + - uid: 35488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,20.5 + parent: 2 + - uid: 35489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,21.5 + parent: 2 +- proto: PlasmaWindow + entities: + - uid: 7846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,177.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,177.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,177.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,173.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,173.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,173.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 519 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: 50.5,42.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + pos: -108.5,90.5 + parent: 2 + - uid: 17717 + components: + - type: Transform + pos: -111.5,90.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: -102.5,90.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + pos: -105.5,90.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: -121.5,67.5 + parent: 2 + - uid: 20961 + components: + - type: Transform + pos: -72.5,166.5 + parent: 2 + - uid: 21206 + components: + - type: Transform + pos: -61.5,175.5 + parent: 2 + - uid: 24347 + components: + - type: Transform + pos: 24.5,176.5 + parent: 2 + - uid: 28116 + components: + - type: Transform + pos: -95.5,40.5 + parent: 2 +- proto: PlayerStationAi + entities: + - uid: 7713 + components: + - type: Transform + pos: -67.5,130.5 + parent: 2 +- proto: PlushieAtmosian + entities: + - uid: 1812 + components: + - type: Transform + pos: -59.56137,13.5270815 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: -119.71025,21.333672 + parent: 2 + - uid: 28585 + components: + - type: Transform + pos: -114.7055,55.573143 + parent: 2 + - uid: 37771 + components: + - type: Transform + pos: -85.51099,59.55207 + parent: 2 +- proto: PlushieBee + entities: + - uid: 2468 + components: + - type: Transform + pos: 72.45078,34.51539 + parent: 2 + - uid: 10821 + components: + - type: Transform + pos: 27.487526,199.48502 + parent: 2 +- proto: PlushieCarp + entities: + - uid: 5005 + components: + - type: Transform + pos: 107.7613,54.00586 + parent: 2 + - uid: 5006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.28888,52.881424 + parent: 2 + - uid: 12631 + components: + - type: Transform + pos: -68.888214,68.61402 + parent: 2 + - uid: 21252 + components: + - type: Transform + pos: -57.515614,156.4843 + parent: 2 +- proto: PlushieDiona + entities: + - uid: 10951 + components: + - type: Transform + pos: -9.408943,73.62492 + parent: 2 + - uid: 20092 + components: + - type: Transform + pos: -83.30978,174.70564 + parent: 2 + - uid: 38268 + components: + - type: Transform + pos: -9.481037,59.668594 + parent: 2 +- proto: PlushieHampter + entities: + - uid: 17908 + components: + - type: Transform + pos: -40.509434,109.865 + parent: 2 +- proto: PlushieLamp + entities: + - uid: 11643 + components: + - type: Transform + pos: -40.355503,3.6647568 + parent: 2 + - uid: 21755 + components: + - type: Transform + pos: -17.428438,178.42867 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 15573 + components: + - type: Transform + pos: -28.463522,105.50827 + parent: 2 + - uid: 29011 + components: + - type: Transform + pos: 105.5241,49.539993 + parent: 2 +- proto: PlushieMoth + entities: + - uid: 34926 + components: + - type: Transform + pos: -29.848465,174.54433 + parent: 2 +- proto: PlushieNuke + entities: + - uid: 11216 + components: + - type: Transform + pos: -32.60014,91.728 + parent: 2 +- proto: PlushieRatvar + entities: + - uid: 4796 + components: + - type: Transform + pos: -117.51508,44.661068 + parent: 2 +- proto: PlushieRouny + entities: + - uid: 7541 + components: + - type: Transform + pos: 98.29341,19.971115 + parent: 2 +- proto: PlushieSharkBlue + entities: + - uid: 37765 + components: + - type: Transform + pos: 108.561195,66.25235 + parent: 2 +- proto: PlushieSlime + entities: + - uid: 20209 + components: + - type: Transform + pos: -83.39797,183.67769 + parent: 2 + - uid: 20920 + components: + - type: Transform + pos: -54.61544,155.99759 + parent: 2 + - uid: 20941 + components: + - type: Transform + pos: -59.240013,159.69836 + parent: 2 +- proto: PlushieSnake + entities: + - uid: 11337 + components: + - type: Transform + pos: -83.45579,168.05905 + parent: 2 +- proto: PlushieSpaceLizard + entities: + - uid: 12260 + components: + - type: Transform + pos: -111.848015,27.513908 + parent: 2 + - uid: 29014 + components: + - type: Transform + pos: 105.504,57.422195 + parent: 2 + - uid: 30839 + components: + - type: Transform + pos: -33.452324,108.3133 + parent: 2 +- proto: PlushieVox + entities: + - uid: 16860 + components: + - type: Transform + pos: -131.61572,105.58053 + parent: 2 + - uid: 23920 + components: + - type: Transform + pos: -40.57216,87.677414 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 4399 + components: + - type: Transform + pos: 71.5,59.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + pos: 59.5,60.5 + parent: 2 + - uid: 18025 + components: + - type: Transform + pos: 59.5,61.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 3060 + components: + - type: Transform + pos: -80.5,144.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: -54.5,87.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: -112.5,55.5 + parent: 2 + - uid: 20710 + components: + - type: Transform + pos: 84.5,52.5 + parent: 2 + - uid: 34521 + components: + - type: Transform + pos: -29.5,178.5 + parent: 2 + - uid: 37332 + components: + - type: Transform + pos: -50.5,170.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 2891 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 36325 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 25308 + components: + - type: Transform + pos: -121.48976,91.37749 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 1654 + components: + - type: Transform + pos: 2.5,211.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: -47.5,68.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 17.5,182.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: -62.5,169.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: -101.5,62.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + pos: -67.5,148.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + pos: -29.5,189.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: 11.5,174.5 + parent: 2 + - uid: 18590 + components: + - type: Transform + pos: -16.5,175.5 + parent: 2 + - uid: 19087 + components: + - type: Transform + pos: -109.5,26.5 + parent: 2 + - uid: 21834 + components: + - type: Transform + pos: -109.5,27.5 + parent: 2 + - uid: 25303 + components: + - type: Transform + pos: 87.5,17.5 + parent: 2 + - uid: 38403 + components: + - type: Transform + pos: -88.5,76.5 + parent: 2 + - uid: 38408 + components: + - type: Transform + pos: -26.5,81.5 + parent: 2 + - uid: 38412 + components: + - type: Transform + pos: -85.5,173.5 + parent: 2 + - uid: 38415 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 38417 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 38428 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 +- proto: PortalArtifact + entities: + - uid: 27855 + components: + - type: Transform + pos: -63.5,165.5 + parent: 2 + - type: TimedDespawn + lifetime: 12000 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 27932 + - uid: 27932 + components: + - type: Transform + pos: 5.5,83.5 + parent: 2 + - type: TimedDespawn + lifetime: 12000 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 27855 +- proto: PortalGatewayBlue + entities: + - uid: 7401 + components: + - type: Transform + pos: -31.5,85.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7402 + - uid: 7404 + components: + - type: Transform + pos: -31.5,77.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7407 + - uid: 7409 + components: + - type: Transform + pos: -40.5,67.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7522 + - uid: 8052 + components: + - type: Transform + pos: -49.5,77.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 8053 + - uid: 8054 + components: + - type: Transform + pos: -49.5,85.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 8055 +- proto: PortalGatewayOrange + entities: + - uid: 7402 + components: + - type: Transform + pos: -13.5,169.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7401 + - uid: 7407 + components: + - type: Transform + pos: 66.5,34.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7404 + - uid: 7522 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 7409 + - uid: 8053 + components: + - type: Transform + pos: -84.5,41.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 8052 + - uid: 8055 + components: + - type: Transform + pos: -64.5,157.5 + parent: 2 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 8054 +- proto: PosterBroken + entities: + - uid: 28232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,153.5 + parent: 2 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 5672 + components: + - type: Transform + pos: -102.5,28.5 + parent: 2 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 8720 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 +- proto: PosterContrabandBorgFancy + entities: + - uid: 20901 + components: + - type: Transform + pos: -67.5,177.5 + parent: 2 +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 20906 + components: + - type: Transform + pos: -67.5,174.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 4771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,44.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + pos: -68.5,92.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,65.5 + parent: 2 +- proto: PosterContrabandHackingGuide + entities: + - uid: 14540 + components: + - type: Transform + pos: -69.5,84.5 + parent: 2 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 27856 + components: + - type: Transform + pos: -81.5,41.5 + parent: 2 +- proto: PosterContrabandKudzu + entities: + - uid: 19734 + components: + - type: Transform + pos: -79.5,153.5 + parent: 2 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 1544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: 102.5,50.5 + parent: 2 +- proto: PosterContrabandPunchShit + entities: + - uid: 4839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,54.5 + parent: 2 +- proto: PosterContrabandRIPBadger + entities: + - uid: 23032 + components: + - type: Transform + pos: 1.5,181.5 + parent: 2 +- proto: PosterContrabandTools + entities: + - uid: 28617 + components: + - type: Transform + pos: -126.5,93.5 + parent: 2 +- proto: PosterLegitCarbonDioxide + entities: + - uid: 19963 + components: + - type: Transform + pos: -90.5,149.5 + parent: 2 +- proto: PosterLegitCarpMount + entities: + - uid: 17591 + components: + - type: Transform + pos: -59.5,160.5 + parent: 2 +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 8719 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 23382 + components: + - type: Transform + pos: -15.5,186.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 28586 + components: + - type: Transform + pos: -117.5,101.5 + parent: 2 +- proto: PosterLegitIan + entities: + - uid: 10459 + components: + - type: Transform + pos: -21.5,84.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + pos: 77.5,23.5 + parent: 2 +- proto: PosterLegitLoveIan + entities: + - uid: 12991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,85.5 + parent: 2 +- proto: PosterLegitMime + entities: + - uid: 13969 + components: + - type: Transform + pos: -61.5,97.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 14000 + components: + - type: Transform + pos: -79.5,108.5 + parent: 2 + - uid: 18118 + components: + - type: Transform + pos: -60.5,112.5 + parent: 2 + - uid: 39425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,170.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 3102 + components: + - type: Transform + pos: -106.5,29.5 + parent: 2 +- proto: PosterLegitRenault + entities: + - uid: 23536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,96.5 + parent: 2 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 19633 + components: + - type: Transform + pos: -113.5,93.5 + parent: 2 + - uid: 23033 + components: + - type: Transform + pos: -16.5,186.5 + parent: 2 +- proto: PosterLegitSafetyInternals + entities: + - uid: 19639 + components: + - type: Transform + pos: -101.5,91.5 + parent: 2 + - uid: 23027 + components: + - type: Transform + pos: 73.5,36.5 + parent: 2 + - uid: 23035 + components: + - type: Transform + pos: -14.5,186.5 + parent: 2 + - uid: 30229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,34.5 + parent: 2 + - uid: 32383 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 25326 + components: + - type: Transform + pos: -102.5,22.5 + parent: 2 +- proto: PosterLegitSafetyReport + entities: + - uid: 3402 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 3417 + components: + - type: Transform + pos: 73.5,42.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,10.5 + parent: 2 + - uid: 24569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,177.5 + parent: 2 +- proto: PosterLegitTheOwl + entities: + - uid: 14001 + components: + - type: Transform + pos: -67.5,65.5 + parent: 2 +- proto: PosterLegitVacation + entities: + - uid: 24170 + components: + - type: Transform + pos: -41.5,96.5 + parent: 2 +- proto: PosterLegitWalk + entities: + - uid: 15297 + components: + - type: Transform + pos: -107.5,101.5 + parent: 2 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 10549 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 +- proto: PottedPlant10 + entities: + - uid: 4347 + components: + - type: Transform + pos: 85.50945,67.47177 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: 79.5,67.5 + parent: 2 +- proto: PottedPlant20 + entities: + - uid: 14105 + components: + - type: Transform + pos: -59.5,99.5 + parent: 2 +- proto: PottedPlant5 + entities: + - uid: 37707 + components: + - type: Transform + pos: -5.5,82.5 + parent: 2 +- proto: PottedPlant7 + entities: + - uid: 18383 + components: + - type: Transform + pos: -83.5,158.5 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 2948 + components: + - type: Transform + pos: -33.5,105.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: -29.5,99.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: -17.5,179.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: -2.5,169.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + pos: -36.5,97.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + pos: -38.5,101.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + pos: -42.5,101.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + pos: -42.5,97.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + pos: -38.5,97.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + pos: -22.5,80.5 + parent: 2 + - uid: 18546 + components: + - type: Transform + pos: -79.5,152.5 + parent: 2 + - uid: 19700 + components: + - type: Transform + pos: -98.5,153.5 + parent: 2 + - uid: 20478 + components: + - type: Transform + pos: -98.5,167.5 + parent: 2 + - uid: 20866 + components: + - type: Transform + pos: -89.5,177.5 + parent: 2 + - uid: 20869 + components: + - type: Transform + pos: -85.5,182.5 + parent: 2 + - uid: 22980 + components: + - type: Transform + pos: -14.5,194.5 + parent: 2 + - uid: 23667 + components: + - type: Transform + pos: 8.5,183.5 + parent: 2 + - uid: 25402 + components: + - type: Transform + pos: 3.5,167.5 + parent: 2 + - uid: 36556 + components: + - type: Transform + pos: -29.5,97.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 265 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -56.5,153.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: 55.5,47.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 64.5,55.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: 74.5,60.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: 102.5,62.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: 114.5,62.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: 53.5,66.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: -58.5,79.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: -65.5,132.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: -65.5,128.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: -57.5,128.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: -57.5,132.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - uid: 10818 + components: + - type: Transform + pos: -17.5,91.5 + parent: 2 + - uid: 11051 + components: + - type: Transform + pos: -23.5,61.5 + parent: 2 + - uid: 11139 + components: + - type: Transform + pos: -11.5,71.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: -54.5,160.5 + parent: 2 + - uid: 11440 + components: + - type: Transform + pos: 111.5,61.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + pos: 105.5,61.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: -43.5,71.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: -37.5,71.5 + parent: 2 + - uid: 11666 + components: + - type: Transform + pos: -45.5,82.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: -56.5,71.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + pos: -61.5,61.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + pos: -57.5,61.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + pos: -30.5,65.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + pos: -44.5,106.5 + parent: 2 + - uid: 13643 + components: + - type: Transform + pos: -36.5,106.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + pos: -68.5,165.5 + parent: 2 + - uid: 14214 + components: + - type: Transform + pos: -73.5,165.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: -73.5,151.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + pos: -60.5,153.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + pos: -72.5,86.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + pos: -68.5,79.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + pos: -56.5,73.5 + parent: 2 + - uid: 16759 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 16863 + components: + - type: Transform + pos: -24.5,73.5 + parent: 2 + - uid: 17173 + components: + - type: Transform + pos: -64.5,69.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + pos: -88.5,44.5 + parent: 2 + - uid: 17363 + components: + - type: Transform + pos: -64.5,69.5 + parent: 2 + - uid: 17587 + components: + - type: Transform + pos: -81.5,186.5 + parent: 2 + - uid: 18534 + components: + - type: Transform + pos: -83.5,169.5 + parent: 2 + - uid: 18671 + components: + - type: Transform + pos: -81.5,160.5 + parent: 2 + - uid: 20068 + components: + - type: Transform + pos: -77.5,167.5 + parent: 2 + - uid: 20088 + components: + - type: Transform + pos: -75.5,173.5 + parent: 2 + - uid: 20127 + components: + - type: Transform + pos: -77.5,186.5 + parent: 2 + - uid: 20140 + components: + - type: Transform + pos: -83.5,177.5 + parent: 2 + - uid: 20144 + components: + - type: Transform + pos: -76.5,185.5 + parent: 2 + - uid: 20145 + components: + - type: Transform + pos: -82.5,185.5 + parent: 2 + - uid: 20502 + components: + - type: Transform + pos: -85.5,175.5 + parent: 2 + - uid: 20503 + components: + - type: Transform + pos: -86.5,167.5 + parent: 2 + - uid: 20900 + components: + - type: Transform + pos: -68.5,178.5 + parent: 2 + - uid: 21033 + components: + - type: Transform + pos: -68.5,167.5 + parent: 2 + - uid: 21456 + components: + - type: Transform + pos: -35.5,82.5 + parent: 2 + - uid: 22121 + components: + - type: Transform + pos: -75.5,151.5 + parent: 2 + - uid: 22763 + components: + - type: Transform + pos: -16.5,187.5 + parent: 2 + - uid: 26437 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 28679 + components: + - type: Transform + pos: 109.5,44.5 + parent: 2 + - uid: 28779 + components: + - type: Transform + pos: -105.5,45.5 + parent: 2 + - uid: 28838 + components: + - type: Transform + pos: -102.5,45.5 + parent: 2 + - uid: 28899 + components: + - type: Transform + pos: -98.5,51.5 + parent: 2 + - uid: 34588 + components: + - type: Transform + pos: -129.5,87.5 + parent: 2 + - uid: 35947 + components: + - type: Transform + pos: -70.5,73.5 + parent: 2 + - uid: 36168 + components: + - type: Transform + pos: -45.5,73.5 + parent: 2 + - uid: 38419 + components: + - type: Transform + pos: -77.5,36.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 14047 + components: + - type: Transform + pos: -61.5,103.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: -59.5,95.5 + parent: 2 + - uid: 14398 + components: + - type: Transform + pos: -60.5,87.5 + parent: 2 + - uid: 14519 + components: + - type: Transform + pos: -66.5,83.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + pos: -37.5,55.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 19954 + components: + - type: Transform + pos: -86.5,156.5 + parent: 2 +- proto: PowerCageMedium + entities: + - uid: 7160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.7983627,-0.6391907 + parent: 13386 + - uid: 7605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.8139877,-0.38919067 + parent: 13386 +- proto: PowerCageRecharger + entities: + - uid: 5410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 13386 +- proto: PowerCellHigh + entities: + - uid: 26406 + components: + - type: Transform + pos: 21.7543,189.20636 + parent: 2 +- proto: PowerCellHyper + entities: + - uid: 24807 + components: + - type: Transform + parent: 24806 + - type: Physics + canCollide: False +- proto: PowerCellMedium + entities: + - uid: 10619 + components: + - type: Transform + pos: -13.676371,79.458405 + parent: 2 + - uid: 20227 + components: + - type: Transform + pos: -75.622734,182.13773 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 10618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,80.5 + parent: 2 + - uid: 11748 + components: + - type: Transform + pos: -46.5,101.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + pos: 74.5,61.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,192.5 + parent: 2 + - uid: 13387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 13386 + - uid: 14109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,43.5 + parent: 2 + - uid: 16892 + components: + - type: Transform + pos: -86.5,79.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + pos: -87.5,154.5 + parent: 2 + - uid: 18293 + components: + - type: Transform + pos: -99.5,40.5 + parent: 2 + - uid: 18642 + components: + - type: Transform + pos: -54.5,156.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,162.5 + parent: 2 + - uid: 20990 + components: + - type: Transform + pos: -73.5,167.5 + parent: 2 + - uid: 24817 + components: + - type: Transform + pos: -98.5,34.5 + parent: 2 + - uid: 28002 + components: + - type: Transform + pos: -91.5,48.5 + parent: 2 + - uid: 30980 + components: + - type: Transform + pos: 3.5,1.5 + parent: 30902 + - uid: 43176 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 +- proto: PowerCellSmall + entities: + - uid: 10622 + components: + - type: Transform + pos: -13.665123,79.70578 + parent: 2 + - uid: 28630 + components: + - type: Transform + parent: 28629 + - type: Physics + canCollide: False +- proto: Poweredlight + entities: + - uid: 14 + components: + - type: Transform + pos: 33.5,61.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,8.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,1.5 + parent: 2 + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,53.5 + parent: 2 + - uid: 682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,37.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-9.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: -116.5,56.5 + parent: 2 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,53.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,34.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,164.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,8.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-15.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,83.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-8.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-12.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-3.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: 72.5,44.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: 76.5,63.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: -11.5,84.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,46.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,82.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,46.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,53.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,67.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,48.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,53.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: 74.5,21.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: -37.5,92.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,58.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,43.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,43.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,57.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,63.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: 74.5,63.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,67.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,67.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -43.5,92.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,50.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,70.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,65.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,63.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,62.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,20.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 111.5,57.5 + parent: 2 + - type: Timer + - uid: 4982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,52.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: 96.5,59.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: 94.5,59.5 + parent: 2 + - type: Timer + - uid: 4987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,47.5 + parent: 2 + - type: Timer + - uid: 4988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,47.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,173.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.5,60.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,57.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.5,60.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: 110.5,62.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: 106.5,62.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,75.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,89.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,47.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,65.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: 56.5,67.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,83.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: 50.5,53.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,61.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: -31.5,87.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,77.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,67.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -31.5,79.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,83.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,75.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,67.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: -49.5,79.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: -49.5,87.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-9.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,34.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,26.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: -86.5,37.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: 84.5,32.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,32.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,207.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,203.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,80.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: -14.5,97.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,99.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,105.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 15.5,172.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,50.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,68.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,41.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,37.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,41.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: 61.5,62.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,58.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,61.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: -67.5,131.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,131.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,129.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,134.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,126.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,126.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,134.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,80.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 9.5,172.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,129.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,150.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,77.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,136.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,155.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,52.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,34.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: 70.5,24.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,83.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,80.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,81.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,109.5 + parent: 2 + - uid: 10869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,78.5 + parent: 2 + - type: Timer + - uid: 11324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,151.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + pos: -90.5,160.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + pos: -74.5,159.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + pos: -79.5,186.5 + parent: 2 + - uid: 11335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,157.5 + parent: 2 + - uid: 11336 + components: + - type: Transform + pos: -83.5,160.5 + parent: 2 + - uid: 11339 + components: + - type: Transform + pos: -81.5,160.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,167.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,167.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,175.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + pos: -83.5,175.5 + parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,180.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,180.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: -84.5,165.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + pos: -90.5,165.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,167.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,167.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,176.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,174.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,174.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,171.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,181.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,177.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,164.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,85.5 + parent: 2 + - uid: 11400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,65.5 + parent: 2 + - uid: 11404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,77.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,205.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,155.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,151.5 + parent: 2 + - uid: 11454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,183.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,202.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + pos: -3.5,172.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,165.5 + parent: 2 + - uid: 11478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,167.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,36.5 + parent: 2 + - uid: 11642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,45.5 + parent: 2 + - uid: 11648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,62.5 + parent: 2 + - uid: 11665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,43.5 + parent: 2 + - uid: 11700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,97.5 + parent: 2 + - uid: 11701 + components: + - type: Transform + pos: -39.5,95.5 + parent: 2 + - uid: 11702 + components: + - type: Transform + pos: -41.5,95.5 + parent: 2 + - uid: 11768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,103.5 + parent: 2 + - uid: 11774 + components: + - type: Transform + pos: -46.5,101.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,89.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + pos: -26.5,91.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,63.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,56.5 + parent: 2 + - uid: 12483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,88.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.5,46.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,189.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + pos: -84.5,43.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,103.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,65.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,65.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,60.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,60.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + pos: -19.5,63.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + pos: -21.5,63.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + pos: -24.5,71.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,66.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,85.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + pos: -11.5,69.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 103.5,46.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,43.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + pos: 116.5,49.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + pos: 111.5,49.5 + parent: 2 + - uid: 13421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,96.5 + parent: 2 + - uid: 13424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,100.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + pos: -107.5,36.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,86.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 13386 + - uid: 13773 + components: + - type: Transform + pos: -13.5,171.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + pos: -76.5,86.5 + parent: 2 + - uid: 14673 + components: + - type: Transform + pos: -74.5,86.5 + parent: 2 + - uid: 14710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,78.5 + parent: 2 + - uid: 14760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,60.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,59.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,164.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,63.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + pos: -54.5,91.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + pos: 48.5,62.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,38.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: 79.5,63.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,80.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 13386 + - uid: 16132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 13386 + - uid: 16349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,57.5 + parent: 2 + - uid: 16418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,49.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + pos: -65.5,75.5 + parent: 2 + - uid: 16763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,58.5 + parent: 2 + - uid: 16950 + components: + - type: Transform + pos: -1.5,5.5 + parent: 13386 + - uid: 16951 + components: + - type: Transform + pos: 1.5,3.5 + parent: 13386 + - uid: 17201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,73.5 + parent: 2 + - uid: 17371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,62.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,44.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,165.5 + parent: 2 + - uid: 17892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,78.5 + parent: 2 + - uid: 18058 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -130.5,101.5 + parent: 2 + - uid: 18069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,39.5 + parent: 2 + - uid: 18218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,44.5 + parent: 2 + - uid: 18251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,30.5 + parent: 2 + - uid: 18358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,150.5 + parent: 2 + - uid: 18661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,36.5 + parent: 2 + - uid: 18677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,164.5 + parent: 2 + - uid: 18686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,36.5 + parent: 2 + - uid: 18954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,32.5 + parent: 2 + - uid: 19070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,22.5 + parent: 2 + - uid: 19105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,33.5 + parent: 2 + - uid: 19211 + components: + - type: Transform + pos: -31.5,98.5 + parent: 2 + - uid: 19257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,44.5 + parent: 2 + - uid: 19268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,147.5 + parent: 2 + - uid: 19453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,155.5 + parent: 2 + - uid: 19623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,85.5 + parent: 2 + - uid: 19651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,169.5 + parent: 2 + - uid: 19814 + components: + - type: Transform + pos: -83.5,156.5 + parent: 2 + - uid: 19817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,154.5 + parent: 2 + - uid: 19949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,155.5 + parent: 2 + - uid: 19971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,151.5 + parent: 2 + - uid: 20048 + components: + - type: Transform + pos: -64.5,153.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,169.5 + parent: 2 + - uid: 20779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,39.5 + parent: 2 + - uid: 20944 + components: + - type: Transform + pos: -64.5,159.5 + parent: 2 + - uid: 20945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,157.5 + parent: 2 + - uid: 20946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,155.5 + parent: 2 + - uid: 20998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,163.5 + parent: 2 + - uid: 21046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,177.5 + parent: 2 + - uid: 21230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,177.5 + parent: 2 + - uid: 21255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,180.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,105.5 + parent: 2 + - uid: 22138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,151.5 + parent: 2 + - uid: 22139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,155.5 + parent: 2 + - uid: 22394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,200.5 + parent: 2 + - uid: 22418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,57.5 + parent: 2 + - uid: 22439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,187.5 + parent: 2 + - uid: 22475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,182.5 + parent: 2 + - uid: 22590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,176.5 + parent: 2 + - uid: 22614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,173.5 + parent: 2 + - uid: 22615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,173.5 + parent: 2 + - uid: 22642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,186.5 + parent: 2 + - uid: 22686 + components: + - type: Transform + pos: -13.5,183.5 + parent: 2 + - uid: 22687 + components: + - type: Transform + pos: -10.5,183.5 + parent: 2 + - uid: 22698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,189.5 + parent: 2 + - uid: 22699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,195.5 + parent: 2 + - uid: 22708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,182.5 + parent: 2 + - uid: 22721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,182.5 + parent: 2 + - uid: 22757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,187.5 + parent: 2 + - uid: 22758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,187.5 + parent: 2 + - uid: 22786 + components: + - type: Transform + pos: -14.5,189.5 + parent: 2 + - uid: 22820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,191.5 + parent: 2 + - uid: 22821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,191.5 + parent: 2 + - uid: 22822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,194.5 + parent: 2 + - uid: 22823 + components: + - type: Transform + pos: -14.5,194.5 + parent: 2 + - uid: 22824 + components: + - type: Transform + pos: -20.5,194.5 + parent: 2 + - uid: 22862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,188.5 + parent: 2 + - uid: 22863 + components: + - type: Transform + pos: -5.5,194.5 + parent: 2 + - uid: 22864 + components: + - type: Transform + pos: -9.5,194.5 + parent: 2 + - uid: 22907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,200.5 + parent: 2 + - uid: 22908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,201.5 + parent: 2 + - uid: 22909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,200.5 + parent: 2 + - uid: 22910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,201.5 + parent: 2 + - uid: 22916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,196.5 + parent: 2 + - uid: 22917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,196.5 + parent: 2 + - uid: 22918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,196.5 + parent: 2 + - uid: 22919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,196.5 + parent: 2 + - uid: 22920 + components: + - type: Transform + pos: -9.5,199.5 + parent: 2 + - uid: 22921 + components: + - type: Transform + pos: -6.5,199.5 + parent: 2 + - uid: 22948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,196.5 + parent: 2 + - uid: 22949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,202.5 + parent: 2 + - uid: 22950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,202.5 + parent: 2 + - uid: 22958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,205.5 + parent: 2 + - uid: 22959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,205.5 + parent: 2 + - uid: 22962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,196.5 + parent: 2 + - uid: 22973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,200.5 + parent: 2 + - uid: 22985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,202.5 + parent: 2 + - uid: 22991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,202.5 + parent: 2 + - uid: 23110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,85.5 + parent: 2 + - uid: 23220 + components: + - type: Transform + pos: -4.5,69.5 + parent: 2 + - uid: 23221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,83.5 + parent: 2 + - uid: 23341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-13.5 + parent: 2 + - uid: 23342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,70.5 + parent: 2 + - uid: 23344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,204.5 + parent: 2 + - uid: 23458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,202.5 + parent: 2 + - uid: 23532 + components: + - type: Transform + pos: -42.5,101.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,190.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,193.5 + parent: 2 + - uid: 23629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,193.5 + parent: 2 + - uid: 23630 + components: + - type: Transform + pos: 20.5,195.5 + parent: 2 + - uid: 23631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,188.5 + parent: 2 + - uid: 23633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,193.5 + parent: 2 + - uid: 23673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,190.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,193.5 + parent: 2 + - uid: 23675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,190.5 + parent: 2 + - uid: 23676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,193.5 + parent: 2 + - uid: 23677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,187.5 + parent: 2 + - uid: 23734 + components: + - type: Transform + pos: -59.5,75.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,63.5 + parent: 2 + - uid: 23859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,61.5 + parent: 2 + - uid: 23865 + components: + - type: Transform + pos: -40.5,75.5 + parent: 2 + - uid: 23994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-7.5 + parent: 2 + - uid: 24137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,199.5 + parent: 2 + - uid: 24372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,178.5 + parent: 2 + - uid: 24501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-7.5 + parent: 2 + - uid: 24578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,178.5 + parent: 2 + - uid: 24798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,70.5 + parent: 2 + - uid: 25051 + components: + - type: Transform + pos: -20.5,71.5 + parent: 2 + - uid: 25053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,65.5 + parent: 2 + - uid: 25056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,62.5 + parent: 2 + - uid: 25059 + components: + - type: Transform + pos: -18.5,71.5 + parent: 2 + - uid: 25061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,98.5 + parent: 2 + - uid: 25065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,165.5 + parent: 2 + - uid: 25135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,70.5 + parent: 2 + - uid: 25136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,77.5 + parent: 2 + - uid: 25153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,83.5 + parent: 2 + - uid: 25192 + components: + - type: Transform + pos: -125.5,60.5 + parent: 2 + - type: Timer + - uid: 25386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,186.5 + parent: 2 + - uid: 25415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,73.5 + parent: 2 + - uid: 25416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,83.5 + parent: 2 + - uid: 25417 + components: + - type: Transform + pos: -78.5,75.5 + parent: 2 + - uid: 25505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,175.5 + parent: 2 + - uid: 25554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,175.5 + parent: 2 + - uid: 25555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,176.5 + parent: 2 + - uid: 25688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,207.5 + parent: 2 + - uid: 25693 + components: + - type: Transform + pos: -40.5,110.5 + parent: 2 + - uid: 25814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,38.5 + parent: 2 + - uid: 25833 + components: + - type: Transform + pos: -7.5,171.5 + parent: 2 + - uid: 26014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,167.5 + parent: 2 + - uid: 26017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,170.5 + parent: 2 + - uid: 26327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,191.5 + parent: 2 + - uid: 26479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,57.5 + parent: 2 + - uid: 26622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,62.5 + parent: 2 + - uid: 27338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,34.5 + parent: 2 + - uid: 27388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,65.5 + parent: 2 + - uid: 27519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,41.5 + parent: 2 + - uid: 27746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,39.5 + parent: 2 + - uid: 27747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,43.5 + parent: 2 + - uid: 27973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 2 + - uid: 28227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,45.5 + parent: 2 + - uid: 28279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,177.5 + parent: 2 + - uid: 28441 + components: + - type: Transform + pos: -120.5,60.5 + parent: 2 + - uid: 28769 + components: + - type: Transform + pos: -93.5,48.5 + parent: 2 + - uid: 28780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,107.5 + parent: 2 + - uid: 28910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,48.5 + parent: 2 + - uid: 28911 + components: + - type: Transform + pos: -100.5,51.5 + parent: 2 + - uid: 29712 + components: + - type: Transform + pos: 73.5,55.5 + parent: 2 + - uid: 29718 + components: + - type: Transform + pos: 69.5,55.5 + parent: 2 + - uid: 30320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,20.5 + parent: 2 + - uid: 30376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,24.5 + parent: 2 + - uid: 30389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,26.5 + parent: 2 + - type: Timer + - uid: 30456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,21.5 + parent: 2 + - uid: 30463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,31.5 + parent: 2 + - uid: 30981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 30902 + - uid: 30982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 30902 + - uid: 30985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 30902 + - uid: 30986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 30902 + - uid: 30996 + components: + - type: Transform + pos: 1.5,4.5 + parent: 30902 + - uid: 32449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,52.5 + parent: 2 + - uid: 32450 + components: + - type: Transform + pos: 98.5,54.5 + parent: 2 + - uid: 32451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,54.5 + parent: 2 + - uid: 34126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,64.5 + parent: 2 + - uid: 34308 + components: + - type: Transform + pos: -127.5,89.5 + parent: 2 + - uid: 34421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,182.5 + parent: 2 + - uid: 34508 + components: + - type: Transform + pos: -24.5,188.5 + parent: 2 + - uid: 34559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 30902 + - uid: 34586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,87.5 + parent: 2 + - uid: 34860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,213.5 + parent: 2 + - uid: 34861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,219.5 + parent: 2 + - uid: 35501 + components: + - type: Transform + pos: -68.5,112.5 + parent: 2 + - uid: 35772 + components: + - type: Transform + pos: -108.5,96.5 + parent: 2 + - uid: 35773 + components: + - type: Transform + pos: -105.5,96.5 + parent: 2 + - uid: 35774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,98.5 + parent: 2 + - uid: 35775 + components: + - type: Transform + pos: -103.5,103.5 + parent: 2 + - uid: 35776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,98.5 + parent: 2 + - uid: 35830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,79.5 + parent: 2 + - uid: 35942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,60.5 + parent: 2 + - uid: 35951 + components: + - type: Transform + pos: -0.5,63.5 + parent: 2 + - uid: 36131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,89.5 + parent: 2 + - uid: 36614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,191.5 + parent: 2 + - uid: 37047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 36996 + - uid: 37959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 37842 + - uid: 37960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 37842 + - uid: 37962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 37842 + - uid: 38086 + components: + - type: Transform + pos: 74.5,40.5 + parent: 2 + - uid: 38087 + components: + - type: Transform + pos: 68.5,40.5 + parent: 2 + - uid: 38260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,171.5 + parent: 2 + - uid: 38261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,168.5 + parent: 2 + - uid: 38288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 37842 + - uid: 38475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 39083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,67.5 + parent: 2 + - uid: 39236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,112.5 + parent: 2 + - uid: 39287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,73.5 + parent: 2 + - uid: 39291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,77.5 + parent: 2 + - uid: 39294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,80.5 + parent: 2 + - uid: 39297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,74.5 + parent: 2 + - uid: 39319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,99.5 + parent: 2 + - uid: 39344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,103.5 + parent: 2 + - uid: 39382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,107.5 + parent: 2 + - uid: 39405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,65.5 + parent: 2 + - uid: 39448 + components: + - type: Transform + pos: 1.5,2.5 + parent: 21114 + - uid: 39449 + components: + - type: Transform + pos: 4.5,2.5 + parent: 21114 + - uid: 39461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 41207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,50.5 + parent: 2 + - uid: 42075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,103.5 + parent: 2 + - uid: 42448 + components: + - type: Transform + pos: 71.5,69.5 + parent: 2 + - uid: 42454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,42.5 + parent: 2 + - uid: 42464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 2 + - uid: 42597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,46.5 + parent: 2 + - uid: 42602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,56.5 + parent: 2 + - uid: 42893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,55.5 + parent: 2 + - uid: 43276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,102.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 2978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 2979 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,147.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,150.5 + parent: 2 + - uid: 17956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,155.5 + parent: 2 + - uid: 18308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,30.5 + parent: 2 + - uid: 18361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,150.5 + parent: 2 + - uid: 19234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,147.5 + parent: 2 + - uid: 19263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,147.5 + parent: 2 + - uid: 19280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,147.5 + parent: 2 + - uid: 19298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,150.5 + parent: 2 + - uid: 20006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,80.5 + parent: 2 + - uid: 20491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,87.5 + parent: 2 + - uid: 23198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,74.5 + parent: 2 + - uid: 23200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,74.5 + parent: 2 + - uid: 23369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,82.5 + parent: 2 + - uid: 23671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,184.5 + parent: 2 + - uid: 23672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,184.5 + parent: 2 + - uid: 31943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-16.5 + parent: 2 + - uid: 32759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,147.5 + parent: 2 +- proto: PoweredlightExterior + entities: + - uid: 1094 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-17.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,100.5 + parent: 2 + - uid: 11763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,94.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,57.5 + parent: 2 + - uid: 19517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,94.5 + parent: 2 + - uid: 22701 + components: + - type: Transform + pos: -8.5,210.5 + parent: 2 + - uid: 30835 + components: + - type: Transform + pos: -76.5,139.5 + parent: 2 + - uid: 30997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 30902 + - uid: 30998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 30902 + - uid: 31855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,177.5 + parent: 2 + - uid: 38708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,73.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 1252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,128.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,136.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,132.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: -58.5,124.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,221.5 + parent: 2 + - uid: 37709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,149.5 + parent: 2 + - uid: 37710 + components: + - type: Transform + pos: 69.5,15.5 + parent: 2 + - uid: 37963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 37842 + - uid: 37964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 37842 +- proto: PoweredlightOrange + entities: + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,86.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: -83.5,84.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 729 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: -141.5,105.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: -94.5,94.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: -91.5,100.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: -133.5,105.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: 83.5,27.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: 67.5,30.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: -132.5,49.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: -123.5,15.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 12136 + components: + - type: Transform + pos: -137.5,38.5 + parent: 2 + - uid: 13356 + components: + - type: Transform + pos: -137.5,47.5 + parent: 2 + - uid: 20910 + components: + - type: Transform + pos: -48.5,107.5 + parent: 2 + - uid: 21454 + components: + - type: Transform + pos: -119.5,9.5 + parent: 2 + - uid: 22645 + components: + - type: Transform + pos: -137.5,51.5 + parent: 2 + - uid: 23053 + components: + - type: Transform + pos: -132.5,41.5 + parent: 2 + - uid: 30665 + components: + - type: Transform + pos: -127.5,15.5 + parent: 2 + - uid: 30667 + components: + - type: Transform + pos: -128.5,9.5 + parent: 2 + - uid: 32879 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 34813 + components: + - type: Transform + pos: -32.5,107.5 + parent: 2 + - uid: 43359 + components: + - type: Transform + pos: -131.5,9.5 + parent: 2 + - uid: 43379 + components: + - type: Transform + pos: -122.5,9.5 + parent: 2 +- proto: PoweredlightSodium + entities: + - uid: 4516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,50.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,30.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,28.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,50.5 + parent: 2 + - uid: 22018 + components: + - type: Transform + pos: -117.5,66.5 + parent: 2 + - type: Timer + - uid: 27179 + components: + - type: Transform + pos: -118.5,51.5 + parent: 2 + - uid: 27180 + components: + - type: Transform + pos: -114.5,51.5 + parent: 2 + - uid: 27984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,44.5 + parent: 2 + - uid: 28496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,49.5 + parent: 2 + - uid: 28497 + components: + - type: Transform + pos: -110.5,60.5 + parent: 2 + - uid: 28678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,39.5 + parent: 2 + - uid: 29021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,44.5 + parent: 2 + - uid: 29458 + components: + - type: Transform + pos: -117.5,35.5 + parent: 2 + - uid: 29459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,27.5 + parent: 2 + - uid: 30007 + components: + - type: Transform + pos: -130.5,28.5 + parent: 2 + - uid: 30008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,24.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 629 + components: + - type: Transform + pos: -75.5,89.5 + parent: 2 + - uid: 664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,15.5 + parent: 2 + - uid: 679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-2.5 + parent: 2 + - uid: 767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-7.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: -68.5,107.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: 32.5,63.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: 36.5,63.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: -22.5,169.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-9.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - type: Timer + - uid: 1915 + components: + - type: Transform + pos: 4.5,88.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,9.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,67.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: -127.5,57.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: 52.5,45.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,63.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,89.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,51.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,208.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: -82.5,145.5 + parent: 2 + - type: Timer + - uid: 4019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,67.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: 61.5,52.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: 61.5,49.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: 70.5,30.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 61.5,46.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 81.5,20.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,37.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,18.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: 90.5,61.5 + parent: 2 + - type: Timer + - uid: 4965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,72.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: -62.5,83.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,81.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: 5.5,81.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -84.5,77.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,21.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,26.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-2.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: 49.5,26.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,21.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 53.5,26.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,208.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,64.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: 118.5,58.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,64.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,191.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,34.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,64.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,64.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: 66.5,62.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,28.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,71.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,18.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,105.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + pos: -33.5,69.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + pos: 6.5,166.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,105.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + pos: -60.5,109.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + pos: -12.5,87.5 + parent: 2 + - uid: 10922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,18.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.5,108.5 + parent: 2 + - uid: 11081 + components: + - type: Transform + pos: -112.5,96.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: -101.5,96.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: 1.5,74.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,67.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,160.5 + parent: 2 + - uid: 11345 + components: + - type: Transform + pos: -110.5,149.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,173.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,178.5 + parent: 2 + - uid: 11403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,23.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,180.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,161.5 + parent: 2 + - uid: 11466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,212.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + pos: 2.5,211.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,202.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + pos: 7.5,205.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,181.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,179.5 + parent: 2 + - uid: 11479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,181.5 + parent: 2 + - uid: 11481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,162.5 + parent: 2 + - uid: 11486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,191.5 + parent: 2 + - uid: 11488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,145.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,162.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,173.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,176.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,144.5 + parent: 2 + - uid: 11652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,66.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,173.5 + parent: 2 + - uid: 11939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,73.5 + parent: 2 + - type: Timer + - uid: 12171 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,15.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,105.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,30.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + pos: -75.5,42.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,169.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,42.5 + parent: 2 + - uid: 13376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,73.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: -75.5,96.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + pos: -60.5,113.5 + parent: 2 + - uid: 14005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,97.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,93.5 + parent: 2 + - uid: 14060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,94.5 + parent: 2 + - uid: 14061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,97.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,101.5 + parent: 2 + - uid: 14065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,98.5 + parent: 2 + - uid: 14066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,91.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,91.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,96.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + pos: -78.5,100.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,105.5 + parent: 2 + - uid: 14288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,105.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + pos: -84.5,100.5 + parent: 2 + - type: PointLight + color: '#E0FFFFFF' + - uid: 14436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,101.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,105.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,92.5 + parent: 2 + - uid: 14441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,100.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,96.5 + parent: 2 + - uid: 14443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,79.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + pos: -22.5,100.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,86.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + pos: -61.5,87.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: -69.5,83.5 + parent: 2 + - uid: 14844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,105.5 + parent: 2 + - uid: 14868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,95.5 + parent: 2 + - uid: 14869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,90.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: -60.5,111.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 112.5,42.5 + parent: 2 + - uid: 15387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,83.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + pos: 81.5,55.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: 81.5,49.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,70.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + pos: -38.5,60.5 + parent: 2 + - type: PointLight + color: '#FFC2C2FF' + - uid: 15558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,58.5 + parent: 2 + - type: PointLight + color: '#C2F5FFFF' + - uid: 15587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,63.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,61.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + pos: -52.5,73.5 + parent: 2 + - uid: 15876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,72.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,81.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + pos: -54.5,87.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + pos: -48.5,81.5 + parent: 2 + - uid: 16307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,47.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + pos: -77.5,64.5 + parent: 2 + - uid: 16553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,89.5 + parent: 2 + - uid: 17444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,65.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,20.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + pos: 118.5,48.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,42.5 + parent: 2 + - uid: 18145 + components: + - type: Transform + pos: -25.5,166.5 + parent: 2 + - uid: 18209 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 18240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,30.5 + parent: 2 + - uid: 18264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,162.5 + parent: 2 + - uid: 18292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,40.5 + parent: 2 + - uid: 18467 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 18558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,159.5 + parent: 2 + - uid: 18581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,155.5 + parent: 2 + - uid: 18619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,177.5 + parent: 2 + - uid: 18804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,162.5 + parent: 2 + - uid: 20488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,188.5 + parent: 2 + - uid: 20768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,22.5 + parent: 2 + - uid: 20890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,171.5 + parent: 2 + - uid: 21027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,20.5 + parent: 2 + - uid: 21231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,28.5 + parent: 2 + - uid: 21233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,26.5 + parent: 2 + - uid: 21296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,18.5 + parent: 2 + - uid: 21603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,143.5 + parent: 2 + - uid: 21956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,142.5 + parent: 2 + - uid: 22209 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 23071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,178.5 + parent: 2 + - uid: 23083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,84.5 + parent: 2 + - uid: 23111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,71.5 + parent: 2 + - uid: 23172 + components: + - type: Transform + pos: -109.5,28.5 + parent: 2 + - uid: 23443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,25.5 + parent: 2 + - uid: 23857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,63.5 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: -112.5,28.5 + parent: 2 + - uid: 25029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,79.5 + parent: 2 + - uid: 25336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,102.5 + parent: 2 + - type: Timer + - uid: 25338 + components: + - type: Transform + pos: -123.5,100.5 + parent: 2 + - type: Timer + - uid: 25340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,98.5 + parent: 2 + - uid: 25341 + components: + - type: Transform + pos: -111.5,100.5 + parent: 2 + - uid: 25342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,98.5 + parent: 2 + - uid: 25343 + components: + - type: Transform + pos: -100.5,100.5 + parent: 2 + - uid: 25432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,76.5 + parent: 2 + - uid: 25461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,173.5 + parent: 2 + - uid: 25689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,205.5 + parent: 2 + - uid: 25778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,70.5 + parent: 2 + - uid: 25800 + components: + - type: Transform + pos: -104.5,64.5 + parent: 2 + - uid: 25807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,57.5 + parent: 2 + - uid: 26462 + components: + - type: Transform + pos: -89.5,58.5 + parent: 2 + - uid: 26862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,98.5 + parent: 2 + - uid: 26863 + components: + - type: Transform + pos: -115.5,100.5 + parent: 2 + - uid: 26864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,102.5 + parent: 2 + - uid: 26870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,101.5 + parent: 2 + - uid: 27487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,34.5 + parent: 2 + - uid: 27703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,35.5 + parent: 2 + - uid: 27759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,48.5 + parent: 2 + - uid: 27777 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 27837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,51.5 + parent: 2 + - type: Timer + - uid: 27996 + components: + - type: Transform + pos: -123.5,92.5 + parent: 2 + - uid: 28132 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 28184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,50.5 + parent: 2 + - uid: 28203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,15.5 + parent: 2 + - uid: 28214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,33.5 + parent: 2 + - uid: 28424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,61.5 + parent: 2 + - uid: 28731 + components: + - type: Transform + pos: -101.5,18.5 + parent: 2 + - uid: 28736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,16.5 + parent: 2 + - uid: 28737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,17.5 + parent: 2 + - uid: 28805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,54.5 + parent: 2 + - uid: 29210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,35.5 + parent: 2 + - uid: 29534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,50.5 + parent: 2 + - uid: 29589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,63.5 + parent: 2 + - uid: 29609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,68.5 + parent: 2 + - uid: 29723 + components: + - type: Transform + pos: 87.5,20.5 + parent: 2 + - uid: 29725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,53.5 + parent: 2 + - uid: 30343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,21.5 + parent: 2 + - uid: 30345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,23.5 + parent: 2 + - uid: 30643 + components: + - type: Transform + pos: -105.5,68.5 + parent: 2 + - uid: 30746 + components: + - type: Transform + pos: -93.5,74.5 + parent: 2 + - uid: 30884 + components: + - type: Transform + pos: -115.5,95.5 + parent: 2 + - uid: 31583 + components: + - type: Transform + pos: -45.5,68.5 + parent: 2 + - uid: 31938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,14.5 + parent: 2 + - uid: 31940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,14.5 + parent: 2 + - uid: 32292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,144.5 + parent: 2 + - uid: 32293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,146.5 + parent: 2 + - uid: 32294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,144.5 + parent: 2 + - uid: 32296 + components: + - type: Transform + pos: -69.5,149.5 + parent: 2 + - uid: 32318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,148.5 + parent: 2 + - uid: 32321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,10.5 + parent: 2 + - uid: 32323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,8.5 + parent: 2 + - uid: 32324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,7.5 + parent: 2 + - uid: 32325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,3.5 + parent: 2 + - uid: 32445 + components: + - type: Transform + pos: -3.5,175.5 + parent: 2 + - uid: 32446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,171.5 + parent: 2 + - uid: 32908 + components: + - type: Transform + pos: -50.5,152.5 + parent: 2 + - uid: 32909 + components: + - type: Transform + pos: -50.5,158.5 + parent: 2 + - uid: 35418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,149.5 + parent: 2 + - uid: 35770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,92.5 + parent: 2 + - uid: 35771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,92.5 + parent: 2 + - uid: 35793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,103.5 + parent: 2 + - uid: 36163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,81.5 + parent: 2 + - uid: 37215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,173.5 + parent: 2 + - uid: 37335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,170.5 + parent: 2 + - uid: 37919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,91.5 + parent: 2 + - uid: 38048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,77.5 + parent: 2 + - uid: 38480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,161.5 + parent: 2 + - uid: 38893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,71.5 + parent: 2 + - uid: 39001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,84.5 + parent: 2 + - uid: 39237 + components: + - type: Transform + pos: -75.5,110.5 + parent: 2 + - uid: 39238 + components: + - type: Transform + pos: -75.5,112.5 + parent: 2 + - uid: 39267 + components: + - type: Transform + pos: 81.5,52.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 3150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,81.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: 78.5,22.5 + parent: 2 + - uid: 11490 + components: + - type: Transform + pos: -41.5,63.5 + parent: 2 + - uid: 11506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,93.5 + parent: 2 + - uid: 25339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,94.5 + parent: 2 + - uid: 28133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,16.5 + parent: 2 + - uid: 28189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,18.5 + parent: 2 + - uid: 28806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,61.5 + parent: 2 + - uid: 29729 + components: + - type: Transform + pos: -100.5,159.5 + parent: 2 + - uid: 30388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,34.5 + parent: 2 + - uid: 36535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,107.5 + parent: 2 + - uid: 38998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,74.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 20976 + components: + - type: Transform + pos: -70.5,169.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 4321 + components: + - type: Transform + pos: -20.5,178.5 + parent: 2 +- proto: Rack + entities: + - uid: 736 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 85.5,47.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-15.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-4.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-4.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -57.5,-0.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,0.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,73.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: -4.5,186.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: 68.5,65.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: 67.5,65.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: -133.5,52.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: 65.5,47.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,60.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,5.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,5.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: 85.5,58.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: 85.5,59.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: 5.5,81.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,70.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,55.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 60.5,58.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,55.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,84.5 + parent: 2 + - uid: 10559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,79.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,84.5 + parent: 2 + - uid: 10566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,84.5 + parent: 2 + - uid: 10576 + components: + - type: Transform + pos: 62.5,58.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,149.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + pos: -137.5,52.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + pos: -11.5,86.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,59.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + pos: -132.5,46.5 + parent: 2 + - uid: 11628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,84.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,83.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,76.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,75.5 + parent: 2 + - uid: 12485 + components: + - type: Transform + pos: -98.5,145.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,61.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: -31.5,183.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,41.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + pos: -47.5,98.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + pos: -70.5,85.5 + parent: 2 + - uid: 15037 + components: + - type: Transform + pos: -48.5,98.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,59.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + pos: -49.5,64.5 + parent: 2 + - uid: 15785 + components: + - type: Transform + pos: -49.5,67.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,70.5 + parent: 2 + - uid: 16338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,64.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + pos: -83.5,75.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + pos: -91.5,52.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + pos: -91.5,51.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + pos: -88.5,78.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + pos: -88.5,79.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,79.5 + parent: 2 + - uid: 17229 + components: + - type: Transform + pos: -77.5,71.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + pos: -75.5,71.5 + parent: 2 + - uid: 17241 + components: + - type: Transform + pos: -72.5,67.5 + parent: 2 + - uid: 17242 + components: + - type: Transform + pos: -72.5,68.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + pos: -66.5,161.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + pos: -87.5,100.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + pos: -87.5,101.5 + parent: 2 + - uid: 18005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,42.5 + parent: 2 + - uid: 18557 + components: + - type: Transform + pos: -95.5,36.5 + parent: 2 + - uid: 19007 + components: + - type: Transform + pos: -96.5,162.5 + parent: 2 + - uid: 19710 + components: + - type: Transform + pos: 116.5,57.5 + parent: 2 + - uid: 19735 + components: + - type: Transform + pos: -81.5,155.5 + parent: 2 + - uid: 19736 + components: + - type: Transform + pos: -81.5,154.5 + parent: 2 + - uid: 20137 + components: + - type: Transform + pos: -83.5,179.5 + parent: 2 + - uid: 20138 + components: + - type: Transform + pos: -83.5,178.5 + parent: 2 + - uid: 20363 + components: + - type: Transform + pos: -82.5,162.5 + parent: 2 + - uid: 20364 + components: + - type: Transform + pos: -83.5,162.5 + parent: 2 + - uid: 20494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,174.5 + parent: 2 + - uid: 20884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,181.5 + parent: 2 + - uid: 21223 + components: + - type: Transform + pos: -60.5,165.5 + parent: 2 + - uid: 21227 + components: + - type: Transform + pos: -96.5,158.5 + parent: 2 + - uid: 21324 + components: + - type: Transform + pos: -60.5,164.5 + parent: 2 + - uid: 22123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,152.5 + parent: 2 + - uid: 22126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,155.5 + parent: 2 + - uid: 22210 + components: + - type: Transform + pos: -130.5,103.5 + parent: 2 + - uid: 22977 + components: + - type: Transform + pos: -0.5,198.5 + parent: 2 + - uid: 23205 + components: + - type: Transform + pos: -0.5,197.5 + parent: 2 + - uid: 23230 + components: + - type: Transform + pos: 54.5,54.5 + parent: 2 + - uid: 23243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,193.5 + parent: 2 + - uid: 23262 + components: + - type: Transform + pos: -0.5,194.5 + parent: 2 + - uid: 24031 + components: + - type: Transform + pos: -17.5,211.5 + parent: 2 + - uid: 24036 + components: + - type: Transform + pos: -25.5,206.5 + parent: 2 + - uid: 24095 + components: + - type: Transform + pos: 5.5,205.5 + parent: 2 + - uid: 24099 + components: + - type: Transform + pos: 12.5,202.5 + parent: 2 + - uid: 24183 + components: + - type: Transform + pos: 23.5,190.5 + parent: 2 + - uid: 24184 + components: + - type: Transform + pos: 23.5,191.5 + parent: 2 + - uid: 24185 + components: + - type: Transform + pos: 23.5,189.5 + parent: 2 + - uid: 24191 + components: + - type: Transform + pos: 23.5,185.5 + parent: 2 + - uid: 24342 + components: + - type: Transform + pos: 23.5,179.5 + parent: 2 + - uid: 24359 + components: + - type: Transform + pos: 23.5,178.5 + parent: 2 + - uid: 25211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.5,91.5 + parent: 2 + - uid: 25422 + components: + - type: Transform + pos: -81.5,76.5 + parent: 2 + - uid: 25677 + components: + - type: Transform + pos: 0.5,172.5 + parent: 2 + - uid: 26019 + components: + - type: Transform + pos: -69.5,-9.5 + parent: 2 + - uid: 26204 + components: + - type: Transform + pos: -33.5,191.5 + parent: 2 + - uid: 27302 + components: + - type: Transform + pos: 116.5,49.5 + parent: 2 + - uid: 27764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,145.5 + parent: 2 + - uid: 27998 + components: + - type: Transform + pos: -95.5,48.5 + parent: 2 + - uid: 28007 + components: + - type: Transform + pos: -94.5,48.5 + parent: 2 + - uid: 28084 + components: + - type: Transform + pos: -89.5,143.5 + parent: 2 + - uid: 28103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,144.5 + parent: 2 + - uid: 29118 + components: + - type: Transform + pos: -115.5,37.5 + parent: 2 + - uid: 29124 + components: + - type: Transform + pos: 77.5,35.5 + parent: 2 + - uid: 29125 + components: + - type: Transform + pos: 78.5,35.5 + parent: 2 + - uid: 29565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,36.5 + parent: 2 + - uid: 29567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,36.5 + parent: 2 + - uid: 34145 + components: + - type: Transform + pos: -93.5,143.5 + parent: 2 + - uid: 34516 + components: + - type: Transform + pos: -31.5,182.5 + parent: 2 + - uid: 34523 + components: + - type: Transform + pos: -30.5,194.5 + parent: 2 + - uid: 35813 + components: + - type: Transform + pos: -102.5,98.5 + parent: 2 + - uid: 35941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,59.5 + parent: 2 + - uid: 36967 + components: + - type: Transform + pos: -20.5,174.5 + parent: 2 + - uid: 36971 + components: + - type: Transform + pos: 17.5,201.5 + parent: 2 + - uid: 37095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,34.5 + parent: 2 + - uid: 37096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,34.5 + parent: 2 + - uid: 37104 + components: + - type: Transform + pos: 79.5,34.5 + parent: 2 + - uid: 37293 + components: + - type: Transform + pos: -41.5,176.5 + parent: 2 + - uid: 37686 + components: + - type: Transform + pos: -100.5,61.5 + parent: 2 + - uid: 40099 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 40151 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 +- proto: RadarConsoleCircuitboard + entities: + - uid: 7191 + components: + - type: Transform + pos: -49.458397,71.52934 + parent: 2 +- proto: RadiationCollector + entities: + - uid: 13380 + components: + - type: Transform + pos: -143.5,18.5 + parent: 2 + - uid: 18092 + components: + - type: Transform + pos: -91.5,147.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 358 + components: + - type: Transform + pos: -39.23418,-12.277147 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -39.34666,-12.479546 + parent: 2 + - uid: 6186 + components: + - type: Transform + pos: -111.7314,34.905823 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -111.54651,34.949833 + parent: 2 + - uid: 8343 + components: + - type: Transform + pos: -111.44966,34.83541 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: -111.308784,34.98504 + parent: 2 + - uid: 24226 + components: + - type: Transform + pos: -43.815796,103.5668 + parent: 2 + - uid: 28880 + components: + - type: Transform + pos: -101.13095,48.86476 + parent: 2 +- proto: Railing + entities: + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,25.5 + parent: 2 + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,59.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-20.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-23.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,61.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,26.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: 1.5,62.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -50.5,55.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,47.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,61.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: -119.5,35.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,29.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,32.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,32.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: -1.5,62.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,42.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,49.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,48.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,50.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,27.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,28.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,29.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,30.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,32.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,33.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,34.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,36.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,30.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: -115.5,29.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,47.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,51.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + pos: 54.5,54.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,39.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,40.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,38.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,38.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,38.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 0.5,62.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,31.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,60.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,41.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,41.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,41.5 + parent: 2 + - uid: 11572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,86.5 + parent: 2 + - uid: 11574 + components: + - type: Transform + pos: -40.5,74.5 + parent: 2 + - uid: 11575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,88.5 + parent: 2 + - uid: 11595 + components: + - type: Transform + pos: -71.5,164.5 + parent: 2 + - uid: 11606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,76.5 + parent: 2 + - uid: 11607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,86.5 + parent: 2 + - uid: 11645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,161.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,162.5 + parent: 2 + - uid: 11672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,22.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,76.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,160.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: 79.5,21.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,163.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,152.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + pos: -32.5,103.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,102.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,102.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,107.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + pos: -41.5,108.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + pos: -40.5,108.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,107.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + pos: -39.5,108.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,106.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,106.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,37.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + pos: -18.5,77.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,101.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: -70.5,164.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + pos: 7.5,74.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,76.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,54.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,159.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,55.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + pos: -71.5,157.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,156.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,156.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + pos: -76.5,89.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + pos: -75.5,89.5 + parent: 2 + - uid: 14832 + components: + - type: Transform + pos: -74.5,89.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + pos: -73.5,89.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: -29.5,67.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,71.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,60.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,57.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,58.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,155.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,81.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,80.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -42.5,52.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: -43.5,52.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -49.5,55.5 + parent: 2 + - uid: 16639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,154.5 + parent: 2 + - uid: 16685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,100.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + pos: -31.5,103.5 + parent: 2 + - uid: 17276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,152.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,162.5 + parent: 2 + - uid: 17297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,159.5 + parent: 2 + - uid: 17388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,154.5 + parent: 2 + - uid: 17403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,153.5 + parent: 2 + - uid: 17509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,185.5 + parent: 2 + - uid: 17523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,51.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: -71.5,116.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + pos: -67.5,117.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: -66.5,117.5 + parent: 2 + - uid: 17622 + components: + - type: Transform + pos: -65.5,117.5 + parent: 2 + - uid: 17623 + components: + - type: Transform + pos: -64.5,117.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,118.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,54.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,54.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,185.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,109.5 + parent: 2 + - uid: 19518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,109.5 + parent: 2 + - uid: 19526 + components: + - type: Transform + pos: -70.5,157.5 + parent: 2 + - uid: 20026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,59.5 + parent: 2 + - uid: 20154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,183.5 + parent: 2 + - uid: 20155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,184.5 + parent: 2 + - uid: 20157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,183.5 + parent: 2 + - uid: 20158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,184.5 + parent: 2 + - uid: 20161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,185.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,155.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,163.5 + parent: 2 + - uid: 20505 + components: + - type: Transform + pos: -89.5,172.5 + parent: 2 + - uid: 20509 + components: + - type: Transform + pos: -90.5,172.5 + parent: 2 + - uid: 20636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,36.5 + parent: 2 + - uid: 20760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,38.5 + parent: 2 + - uid: 20776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,34.5 + parent: 2 + - uid: 20797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,161.5 + parent: 2 + - uid: 20809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,35.5 + parent: 2 + - uid: 20875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,180.5 + parent: 2 + - uid: 20876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,181.5 + parent: 2 + - uid: 20877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,182.5 + parent: 2 + - uid: 20878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,182.5 + parent: 2 + - uid: 20879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,180.5 + parent: 2 + - uid: 20880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,181.5 + parent: 2 + - uid: 21194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,37.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,182.5 + parent: 2 + - uid: 21259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,182.5 + parent: 2 + - uid: 21260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,182.5 + parent: 2 + - uid: 21298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,171.5 + parent: 2 + - uid: 21299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,173.5 + parent: 2 + - uid: 21300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,174.5 + parent: 2 + - uid: 21862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,66.5 + parent: 2 + - uid: 21864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,65.5 + parent: 2 + - uid: 21888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,63.5 + parent: 2 + - uid: 22739 + components: + - type: Transform + pos: -1.5,182.5 + parent: 2 + - uid: 22740 + components: + - type: Transform + pos: 0.5,182.5 + parent: 2 + - uid: 22964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,153.5 + parent: 2 + - uid: 23005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,61.5 + parent: 2 + - uid: 23191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,187.5 + parent: 2 + - uid: 23353 + components: + - type: Transform + pos: -0.5,62.5 + parent: 2 + - uid: 24142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,201.5 + parent: 2 + - uid: 24143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,200.5 + parent: 2 + - uid: 24144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,199.5 + parent: 2 + - uid: 24145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,198.5 + parent: 2 + - uid: 24214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,61.5 + parent: 2 + - uid: 24328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,175.5 + parent: 2 + - uid: 24329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,176.5 + parent: 2 + - uid: 24331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,177.5 + parent: 2 + - uid: 24332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,178.5 + parent: 2 + - uid: 24333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,179.5 + parent: 2 + - uid: 24775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,187.5 + parent: 2 + - uid: 25036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,58.5 + parent: 2 + - uid: 25041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,34.5 + parent: 2 + - uid: 25042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,30.5 + parent: 2 + - uid: 25043 + components: + - type: Transform + pos: -116.5,29.5 + parent: 2 + - uid: 25044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,27.5 + parent: 2 + - uid: 25045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,25.5 + parent: 2 + - uid: 25046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,29.5 + parent: 2 + - uid: 25200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -133.5,103.5 + parent: 2 + - uid: 25210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -133.5,91.5 + parent: 2 + - uid: 25396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,72.5 + parent: 2 + - uid: 25453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,73.5 + parent: 2 + - uid: 25487 + components: + - type: Transform + pos: -9.5,74.5 + parent: 2 + - uid: 25537 + components: + - type: Transform + pos: -8.5,74.5 + parent: 2 + - uid: 26058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,28.5 + parent: 2 + - uid: 26356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,191.5 + parent: 2 + - uid: 26357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,192.5 + parent: 2 + - uid: 26358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,194.5 + parent: 2 + - uid: 26359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,195.5 + parent: 2 + - uid: 26385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,73.5 + parent: 2 + - uid: 27148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,29.5 + parent: 2 + - uid: 27329 + components: + - type: Transform + pos: -118.5,35.5 + parent: 2 + - uid: 27652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,27.5 + parent: 2 + - uid: 27881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,72.5 + parent: 2 + - uid: 28152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,28.5 + parent: 2 + - uid: 28239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,49.5 + parent: 2 + - uid: 28535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,37.5 + parent: 2 + - uid: 28602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,45.5 + parent: 2 + - uid: 28603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,45.5 + parent: 2 + - uid: 28604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,45.5 + parent: 2 + - uid: 28605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,45.5 + parent: 2 + - uid: 28606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,50.5 + parent: 2 + - uid: 28607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,51.5 + parent: 2 + - uid: 28609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,52.5 + parent: 2 + - uid: 28610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,53.5 + parent: 2 + - uid: 28612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,56.5 + parent: 2 + - uid: 28613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,57.5 + parent: 2 + - uid: 28616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,60.5 + parent: 2 + - uid: 28618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,55.5 + parent: 2 + - uid: 28619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,53.5 + parent: 2 + - uid: 28620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,50.5 + parent: 2 + - uid: 28621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,52.5 + parent: 2 + - uid: 28622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,49.5 + parent: 2 + - uid: 28767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,27.5 + parent: 2 + - uid: 28785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,69.5 + parent: 2 + - uid: 29025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,30.5 + parent: 2 + - uid: 29119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,41.5 + parent: 2 + - uid: 29148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,25.5 + parent: 2 + - uid: 29202 + components: + - type: Transform + pos: -125.5,28.5 + parent: 2 + - uid: 29205 + components: + - type: Transform + pos: -124.5,28.5 + parent: 2 + - uid: 29354 + components: + - type: Transform + pos: -126.5,40.5 + parent: 2 + - uid: 29362 + components: + - type: Transform + pos: -128.5,40.5 + parent: 2 + - uid: 29365 + components: + - type: Transform + pos: -127.5,40.5 + parent: 2 + - uid: 29559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,74.5 + parent: 2 + - uid: 29605 + components: + - type: Transform + pos: -123.5,40.5 + parent: 2 + - uid: 29606 + components: + - type: Transform + pos: -122.5,40.5 + parent: 2 + - uid: 29607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,30.5 + parent: 2 + - uid: 29608 + components: + - type: Transform + pos: -120.5,33.5 + parent: 2 + - uid: 30086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,35.5 + parent: 2 + - uid: 30087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,37.5 + parent: 2 + - uid: 30088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,33.5 + parent: 2 + - uid: 30152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,36.5 + parent: 2 + - uid: 30854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,152.5 + parent: 2 + - uid: 30885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,70.5 + parent: 2 + - uid: 31596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,152.5 + parent: 2 + - uid: 31695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,32.5 + parent: 2 + - uid: 31731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,31.5 + parent: 2 + - uid: 31746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,33.5 + parent: 2 + - uid: 33801 + components: + - type: Transform + pos: -30.5,103.5 + parent: 2 + - uid: 34407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,76.5 + parent: 2 + - uid: 34481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,75.5 + parent: 2 + - uid: 34539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,75.5 + parent: 2 + - uid: 34550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,74.5 + parent: 2 + - uid: 34566 + components: + - type: Transform + pos: -17.5,77.5 + parent: 2 + - uid: 34620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,52.5 + parent: 2 + - uid: 36473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,160.5 + parent: 2 + - uid: 36505 + components: + - type: Transform + pos: -106.5,40.5 + parent: 2 + - uid: 36734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,152.5 + parent: 2 + - uid: 36752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,153.5 + parent: 2 + - uid: 36753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,153.5 + parent: 2 + - uid: 37134 + components: + - type: Transform + pos: -105.5,40.5 + parent: 2 + - uid: 39187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,75.5 + parent: 2 + - uid: 39188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,75.5 + parent: 2 + - uid: 39453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,76.5 + parent: 2 + - uid: 43177 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 + - uid: 43181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 37842 + - uid: 43182 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 37842 + - uid: 43183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 37842 + - uid: 43184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 37842 + - uid: 43185 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 37842 + - uid: 43370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,21.5 + parent: 2 + - uid: 43371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,20.5 + parent: 2 + - uid: 43372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,19.5 + parent: 2 + - uid: 43456 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 1057 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,53.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: -123.5,34.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,30.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,41.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,75.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,88.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + pos: -38.5,75.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + pos: -39.5,74.5 + parent: 2 + - uid: 11602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,74.5 + parent: 2 + - uid: 11603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,88.5 + parent: 2 + - uid: 11604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,87.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,87.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,76.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,103.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,105.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,105.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,76.5 + parent: 2 + - uid: 14373 + components: + - type: Transform + pos: 8.5,74.5 + parent: 2 + - uid: 14829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,89.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + pos: -63.5,117.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + pos: -70.5,116.5 + parent: 2 + - uid: 20146 + components: + - type: Transform + pos: -77.5,182.5 + parent: 2 + - uid: 20151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,182.5 + parent: 2 + - uid: 20156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,185.5 + parent: 2 + - uid: 20162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,185.5 + parent: 2 + - uid: 20871 + components: + - type: Transform + pos: -70.5,179.5 + parent: 2 + - uid: 20872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,179.5 + parent: 2 + - uid: 20873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,182.5 + parent: 2 + - uid: 20874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,182.5 + parent: 2 + - uid: 23188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,185.5 + parent: 2 + - uid: 23189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,186.5 + parent: 2 + - uid: 23190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,187.5 + parent: 2 + - uid: 24141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,201.5 + parent: 2 + - uid: 25203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,102.5 + parent: 2 + - uid: 25209 + components: + - type: Transform + pos: -132.5,92.5 + parent: 2 + - uid: 26206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,190.5 + parent: 2 + - uid: 27314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,32.5 + parent: 2 + - uid: 28199 + components: + - type: Transform + pos: -117.5,35.5 + parent: 2 + - uid: 28599 + components: + - type: Transform + pos: -110.5,48.5 + parent: 2 + - uid: 28600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,48.5 + parent: 2 + - uid: 29059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,29.5 + parent: 2 + - uid: 29111 + components: + - type: Transform + pos: -103.5,40.5 + parent: 2 + - uid: 29112 + components: + - type: Transform + pos: -120.5,33.5 + parent: 2 + - uid: 29200 + components: + - type: Transform + pos: -123.5,28.5 + parent: 2 + - uid: 29680 + components: + - type: Transform + pos: -29.5,68.5 + parent: 2 + - uid: 30167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,37.5 + parent: 2 + - uid: 39186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,74.5 + parent: 2 + - uid: 43169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 37842 + - uid: 43175 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 37842 +- proto: RailingCornerSmall + entities: + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-19.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,186.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,55.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,30.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,60.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,53.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,54.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + pos: -16.5,74.5 + parent: 2 + - uid: 11027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,34.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,77.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,21.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,20.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,102.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,103.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,108.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,108.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,105.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: -38.5,105.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,72.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,74.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,103.5 + parent: 2 + - uid: 14222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,185.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,184.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,74.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,21.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + pos: 80.5,20.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,117.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,117.5 + parent: 2 + - uid: 25037 + components: + - type: Transform + pos: -104.5,41.5 + parent: 2 + - uid: 25038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,56.5 + parent: 2 + - uid: 25039 + components: + - type: Transform + pos: -107.5,57.5 + parent: 2 + - uid: 25167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -133.5,102.5 + parent: 2 + - uid: 25205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,92.5 + parent: 2 + - uid: 25299 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 25300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,11.5 + parent: 2 + - uid: 27978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,77.5 + parent: 2 + - uid: 30235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,27.5 + parent: 2 + - uid: 30236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,35.5 + parent: 2 + - uid: 31794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,74.5 + parent: 2 + - uid: 33093 + components: + - type: Transform + pos: -69.5,152.5 + parent: 2 + - uid: 33129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,152.5 + parent: 2 + - uid: 34555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,157.5 + parent: 2 + - uid: 34558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,157.5 + parent: 2 + - uid: 34571 + components: + - type: Transform + pos: -29.5,99.5 + parent: 2 + - uid: 35939 + components: + - type: Transform + pos: -41.5,87.5 + parent: 2 + - uid: 35943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,87.5 + parent: 2 + - uid: 36201 + components: + - type: Transform + pos: -7.5,72.5 + parent: 2 + - uid: 36474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,159.5 + parent: 2 + - uid: 36475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,164.5 + parent: 2 + - uid: 36477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,164.5 + parent: 2 + - uid: 36478 + components: + - type: Transform + pos: -69.5,159.5 + parent: 2 + - uid: 36754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,152.5 + parent: 2 + - uid: 36755 + components: + - type: Transform + pos: -56.5,152.5 + parent: 2 + - uid: 38447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,75.5 + parent: 2 + - uid: 38448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,75.5 + parent: 2 + - uid: 39446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 21114 + - uid: 39447 + components: + - type: Transform + pos: 1.5,0.5 + parent: 21114 + - uid: 39450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 21114 + - uid: 39451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 21114 +- proto: RandomArcade + entities: + - uid: 8427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,21.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: -54.5,83.5 + parent: 2 + - uid: 25504 + components: + - type: Transform + pos: 18.5,174.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 27850 + components: + - type: Transform + pos: -97.5,176.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 4735 + components: + - type: Transform + pos: 72.5,69.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + pos: -27.5,64.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: -40.5,63.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 2518 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: 59.5,67.5 + parent: 2 + - uid: 11017 + components: + - type: Transform + pos: -28.5,64.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + pos: -25.5,64.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 28415 + components: + - type: Transform + pos: 104.5,59.5 + parent: 2 + - uid: 28677 + components: + - type: Transform + pos: 108.5,44.5 + parent: 2 + - uid: 35803 + components: + - type: Transform + pos: -22.5,63.5 + parent: 2 +- proto: RandomFoodBakedSingle + entities: + - uid: 25430 + components: + - type: Transform + pos: -19.5,167.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 12225 + components: + - type: Transform + pos: -77.5,91.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + pos: -19.5,67.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + pos: -19.5,69.5 + parent: 2 + - uid: 14042 + components: + - type: Transform + pos: -59.5,102.5 + parent: 2 + - uid: 23030 + components: + - type: Transform + pos: -6.5,199.5 + parent: 2 + - uid: 25418 + components: + - type: Transform + pos: -78.5,91.5 + parent: 2 + - uid: 27281 + components: + - type: Transform + pos: -117.5,46.5 + parent: 2 + - uid: 27290 + components: + - type: Transform + pos: -115.5,45.5 + parent: 2 + - uid: 27291 + components: + - type: Transform + pos: -117.5,45.5 + parent: 2 + - uid: 27296 + components: + - type: Transform + pos: -115.5,47.5 + parent: 2 + - uid: 27297 + components: + - type: Transform + pos: -117.5,48.5 + parent: 2 + - uid: 27298 + components: + - type: Transform + pos: -115.5,48.5 + parent: 2 + - uid: 28789 + components: + - type: Transform + pos: 112.5,59.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 13155 + components: + - type: Transform + pos: -19.5,68.5 + parent: 2 + - uid: 14363 + components: + - type: Transform + pos: -76.5,94.5 + parent: 2 + - uid: 14369 + components: + - type: Transform + pos: -75.5,94.5 + parent: 2 + - uid: 20232 + components: + - type: Transform + pos: -77.5,180.5 + parent: 2 + - uid: 22129 + components: + - type: Transform + pos: -75.5,154.5 + parent: 2 + - uid: 25809 + components: + - type: Transform + pos: 108.5,61.5 + parent: 2 + - uid: 27328 + components: + - type: Transform + pos: -71.5,96.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 10887 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + pos: -10.5,86.5 + parent: 2 + - uid: 13359 + components: + - type: Transform + pos: -58.5,105.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + pos: -73.5,99.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + pos: -33.5,65.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: -33.5,65.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: -101.5,95.5 + parent: 2 + - uid: 13372 + components: + - type: Transform + pos: -97.5,148.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + pos: -111.5,86.5 + parent: 2 + - uid: 13374 + components: + - type: Transform + pos: -26.5,194.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 4990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.5,56.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: -22.5,64.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + pos: -68.5,104.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + pos: -60.5,100.5 + parent: 2 + - uid: 22944 + components: + - type: Transform + pos: -16.5,208.5 + parent: 2 + - uid: 23515 + components: + - type: Transform + pos: -20.5,207.5 + parent: 2 + - uid: 25534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,175.5 + parent: 2 + - uid: 25545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,177.5 + parent: 2 + - uid: 25599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,176.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 7521 + components: + - type: Transform + pos: 82.5,20.5 + parent: 2 + - uid: 19634 + components: + - type: Transform + pos: -100.5,94.5 + parent: 2 + - uid: 22041 + components: + - type: Transform + pos: -94.5,44.5 + parent: 2 + - uid: 37228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,178.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 1168 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,49.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,57.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: -37.5,61.5 + parent: 2 + - uid: 15585 + components: + - type: Transform + pos: -40.5,56.5 + parent: 2 + - uid: 27149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,143.5 + parent: 2 + - uid: 39260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,85.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 4368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,81.5 + parent: 2 + - uid: 8723 + components: + - type: Transform + pos: 73.5,28.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + pos: -12.5,60.5 + parent: 2 + - uid: 12980 + components: + - type: Transform + pos: -10.5,60.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,72.5 + parent: 2 + - uid: 14058 + components: + - type: Transform + pos: -61.5,104.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: 99.5,56.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: 99.5,50.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: 112.5,49.5 + parent: 2 +- proto: RandomSnacks + entities: + - uid: 5282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,65.5 + parent: 2 + - uid: 19632 + components: + - type: Transform + pos: -108.5,89.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 19628 + components: + - type: Transform + pos: -102.5,87.5 + parent: 2 + - uid: 24245 + components: + - type: Transform + pos: -76.5,106.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 84 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 6058 + components: + - type: Transform + pos: 74.5,40.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,157.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: -35.5,74.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + pos: -54.5,158.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: -79.5,157.5 + parent: 2 + - uid: 14233 + components: + - type: Transform + pos: -54.5,159.5 + parent: 2 + - uid: 27815 + components: + - type: Transform + pos: -83.5,47.5 + parent: 2 + - uid: 27860 + components: + - type: Transform + pos: -85.5,37.5 + parent: 2 + - uid: 27875 + components: + - type: Transform + pos: -84.5,37.5 + parent: 2 + - uid: 27994 + components: + - type: Transform + pos: -91.5,45.5 + parent: 2 + - uid: 38518 + components: + - type: Transform + pos: -64.5,153.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 1215 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: 69.5,63.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: 107.5,63.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + pos: 52.5,65.5 + parent: 2 + - uid: 11660 + components: + - type: Transform + pos: -45.5,74.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: -55.5,79.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 692 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 68.5,63.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: 109.5,63.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: -17.5,101.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + pos: 54.5,62.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + pos: 0.5,205.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: -5.5,73.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + pos: -21.5,167.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: -55.5,81.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + pos: -29.5,91.5 + parent: 2 + - uid: 20645 + components: + - type: Transform + pos: -58.5,91.5 + parent: 2 + - uid: 22035 + components: + - type: Transform + pos: -90.5,43.5 + parent: 2 + - uid: 35661 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 +- proto: Recycler + entities: + - uid: 3942 + components: + - type: Transform + pos: -111.5,92.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: -105.5,92.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: -102.5,92.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,39.5 + parent: 2 + - uid: 19520 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 19521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,64.5 + parent: 2 + - uid: 21214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,173.5 + parent: 2 + - uid: 24323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,176.5 + parent: 2 + - uid: 37597 + components: + - type: Transform + pos: -108.5,92.5 + parent: 2 +- proto: ReinforcedGirder + entities: + - uid: 21334 + components: + - type: Transform + pos: -139.5,104.5 + parent: 2 + - uid: 21608 + components: + - type: Transform + pos: -149.5,90.5 + parent: 2 + - uid: 25735 + components: + - type: Transform + pos: -117.5,107.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,17.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: -57.5,13.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: -72.5,146.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,17.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: -91.5,157.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + pos: -90.5,157.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,33.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,33.5 + parent: 2 + - uid: 11851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,17.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,17.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,17.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,17.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,17.5 + parent: 2 + - uid: 14466 + components: + - type: Transform + pos: 78.5,37.5 + parent: 2 + - uid: 17571 + components: + - type: Transform + pos: -88.5,149.5 + parent: 2 + - uid: 17577 + components: + - type: Transform + pos: -89.5,149.5 + parent: 2 + - uid: 17986 + components: + - type: Transform + pos: -132.5,26.5 + parent: 2 + - uid: 18158 + components: + - type: Transform + pos: -134.5,29.5 + parent: 2 + - uid: 18159 + components: + - type: Transform + pos: -134.5,27.5 + parent: 2 + - uid: 18442 + components: + - type: Transform + pos: -134.5,28.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + pos: -134.5,23.5 + parent: 2 + - uid: 18468 + components: + - type: Transform + pos: -134.5,25.5 + parent: 2 + - uid: 18517 + components: + - type: Transform + pos: -134.5,26.5 + parent: 2 + - uid: 18567 + components: + - type: Transform + pos: -92.5,158.5 + parent: 2 + - uid: 18634 + components: + - type: Transform + pos: -132.5,28.5 + parent: 2 + - uid: 18781 + components: + - type: Transform + pos: -132.5,25.5 + parent: 2 + - uid: 18843 + components: + - type: Transform + pos: -132.5,24.5 + parent: 2 + - uid: 18850 + components: + - type: Transform + pos: -134.5,24.5 + parent: 2 + - uid: 18949 + components: + - type: Transform + pos: -132.5,27.5 + parent: 2 + - uid: 19723 + components: + - type: Transform + pos: -89.5,156.5 + parent: 2 + - uid: 19742 + components: + - type: Transform + pos: -92.5,159.5 + parent: 2 + - uid: 19744 + components: + - type: Transform + pos: -92.5,160.5 + parent: 2 + - uid: 19760 + components: + - type: Transform + pos: -89.5,157.5 + parent: 2 + - uid: 19777 + components: + - type: Transform + pos: -89.5,154.5 + parent: 2 + - uid: 21614 + components: + - type: Transform + pos: -72.5,144.5 + parent: 2 + - uid: 23606 + components: + - type: Transform + pos: 16.5,190.5 + parent: 2 + - uid: 23607 + components: + - type: Transform + pos: 17.5,196.5 + parent: 2 + - uid: 23609 + components: + - type: Transform + pos: 15.5,194.5 + parent: 2 + - uid: 23620 + components: + - type: Transform + pos: 15.5,195.5 + parent: 2 + - uid: 23621 + components: + - type: Transform + pos: 18.5,196.5 + parent: 2 + - uid: 23622 + components: + - type: Transform + pos: 18.5,188.5 + parent: 2 + - uid: 23623 + components: + - type: Transform + pos: 18.5,189.5 + parent: 2 + - uid: 23626 + components: + - type: Transform + pos: 18.5,190.5 + parent: 2 + - uid: 23627 + components: + - type: Transform + pos: 17.5,190.5 + parent: 2 + - uid: 25054 + components: + - type: Transform + pos: 77.5,37.5 + parent: 2 + - uid: 27515 + components: + - type: Transform + pos: -113.5,17.5 + parent: 2 + - uid: 27722 + components: + - type: Transform + pos: -103.5,17.5 + parent: 2 + - uid: 27861 + components: + - type: Transform + pos: -113.5,18.5 + parent: 2 + - uid: 27862 + components: + - type: Transform + pos: -113.5,19.5 + parent: 2 + - uid: 27878 + components: + - type: Transform + pos: -103.5,19.5 + parent: 2 + - uid: 27880 + components: + - type: Transform + pos: -103.5,18.5 + parent: 2 + - uid: 27909 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 27934 + components: + - type: Transform + pos: -102.5,23.5 + parent: 2 + - uid: 27987 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 27995 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 28158 + components: + - type: Transform + pos: 76.5,37.5 + parent: 2 + - uid: 28180 + components: + - type: Transform + pos: 79.5,37.5 + parent: 2 + - uid: 28198 + components: + - type: Transform + pos: -73.5,145.5 + parent: 2 + - uid: 28755 + components: + - type: Transform + pos: -114.5,23.5 + parent: 2 + - uid: 28758 + components: + - type: Transform + pos: -114.5,21.5 + parent: 2 + - uid: 29123 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 29468 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 29471 + components: + - type: Transform + pos: -111.5,37.5 + parent: 2 + - uid: 30829 + components: + - type: Transform + pos: -74.5,145.5 + parent: 2 + - uid: 30832 + components: + - type: Transform + pos: -72.5,145.5 + parent: 2 + - uid: 30837 + components: + - type: Transform + pos: -66.5,147.5 + parent: 2 + - uid: 31873 + components: + - type: Transform + pos: 87.5,14.5 + parent: 2 + - uid: 31885 + components: + - type: Transform + pos: 89.5,16.5 + parent: 2 + - uid: 31886 + components: + - type: Transform + pos: 89.5,15.5 + parent: 2 + - uid: 31887 + components: + - type: Transform + pos: 89.5,14.5 + parent: 2 + - uid: 31888 + components: + - type: Transform + pos: 90.5,16.5 + parent: 2 + - uid: 31889 + components: + - type: Transform + pos: 91.5,16.5 + parent: 2 + - uid: 31890 + components: + - type: Transform + pos: 87.5,16.5 + parent: 2 + - uid: 31891 + components: + - type: Transform + pos: 86.5,16.5 + parent: 2 + - uid: 31892 + components: + - type: Transform + pos: 85.5,16.5 + parent: 2 + - uid: 31893 + components: + - type: Transform + pos: 87.5,15.5 + parent: 2 + - uid: 35546 + components: + - type: Transform + pos: -119.5,58.5 + parent: 2 + - uid: 35547 + components: + - type: Transform + pos: -119.5,59.5 + parent: 2 + - uid: 35548 + components: + - type: Transform + pos: -119.5,60.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 40 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 68.5,55.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 3.5,85.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,89.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,87.5 + parent: 2 + - uid: 686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,88.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,133.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -16.5,92.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -42.5,79.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,133.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: -38.5,83.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: -110.5,101.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: -109.5,101.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: -111.5,101.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: -16.5,94.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: -8.5,89.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: 68.5,52.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,35.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: 64.5,69.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: 65.5,69.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: 65.5,70.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: 66.5,70.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: 67.5,70.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: 68.5,70.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: 69.5,70.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: 70.5,70.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: 72.5,70.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: 73.5,70.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: 74.5,70.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: 75.5,70.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: 76.5,70.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: 77.5,70.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: 77.5,69.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: 78.5,69.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: 81.5,68.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: 82.5,68.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 83.5,68.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: 84.5,68.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: 85.5,68.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: 86.5,68.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: 86.5,67.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: 87.5,67.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: 87.5,66.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: 88.5,66.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: 88.5,65.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 89.5,65.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: 79.5,52.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: 87.5,37.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: 88.5,37.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: 90.5,39.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 91.5,40.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: 91.5,41.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: -105.5,103.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: -88.5,81.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: 93.5,56.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: 68.5,53.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 63.5,55.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: 63.5,52.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 63.5,49.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -99.5,61.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,27.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: 70.5,42.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: 72.5,42.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 74.5,44.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 68.5,44.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: 68.5,43.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: 74.5,43.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: -14.5,163.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 70.5,50.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -10.5,171.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,90.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,89.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: 99.5,51.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: 93.5,50.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: 100.5,52.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: 100.5,54.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: 99.5,55.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,89.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: 100.5,51.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,89.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -100.5,62.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -90.5,51.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -99.5,62.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: 101.5,52.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: 100.5,55.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: 101.5,53.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: 101.5,54.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: 53.5,67.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 53.5,68.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 54.5,68.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: -69.5,129.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: -13.5,166.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: -12.5,166.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,31.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: -31.5,176.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: -69.5,130.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: -69.5,131.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: -69.5,128.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: -30.5,176.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: -25.5,103.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: -31.5,177.5 + parent: 2 + - uid: 5953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,173.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,129.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,130.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,131.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: -69.5,132.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: 10.5,66.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,173.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: 10.5,65.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,135.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,135.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,135.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,125.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,125.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,125.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: 72.5,50.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: 74.5,51.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 74.5,53.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 74.5,55.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: 68.5,54.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: 107.5,42.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: 108.5,42.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: 109.5,42.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: 110.5,42.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,133.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,127.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,127.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,127.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,128.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: -68.5,128.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,132.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,128.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,132.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: -68.5,132.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + pos: 89.5,37.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: 91.5,39.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 90.5,38.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: 89.5,38.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: 9.5,65.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: 7.5,63.5 + parent: 2 + - uid: 8653 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,132.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,128.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + pos: 79.5,49.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + pos: -66.5,113.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + pos: 8.5,63.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + pos: -17.5,80.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: -50.5,92.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + pos: -19.5,80.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + pos: -15.5,163.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + pos: -8.5,163.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + pos: -14.5,166.5 + parent: 2 + - uid: 10754 + components: + - type: Transform + pos: 79.5,55.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + pos: -32.5,178.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + pos: -32.5,177.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + pos: -42.5,93.5 + parent: 2 + - uid: 10884 + components: + - type: Transform + pos: -41.5,93.5 + parent: 2 + - uid: 10888 + components: + - type: Transform + pos: -39.5,93.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + pos: -38.5,93.5 + parent: 2 + - uid: 11241 + components: + - type: Transform + pos: -34.5,79.5 + parent: 2 + - uid: 11242 + components: + - type: Transform + pos: -34.5,75.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: -46.5,75.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: -46.5,79.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: -46.5,83.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + pos: -46.5,87.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: -66.5,114.5 + parent: 2 + - uid: 11430 + components: + - type: Transform + pos: -38.5,70.5 + parent: 2 + - uid: 11431 + components: + - type: Transform + pos: -42.5,70.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: -39.5,86.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + pos: -38.5,79.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + pos: -38.5,78.5 + parent: 2 + - uid: 11568 + components: + - type: Transform + pos: -42.5,83.5 + parent: 2 + - uid: 11569 + components: + - type: Transform + pos: -42.5,84.5 + parent: 2 + - uid: 11571 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 11576 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 11580 + components: + - type: Transform + pos: -32.5,56.5 + parent: 2 + - uid: 11581 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: -40.5,86.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + pos: -41.5,86.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + pos: -41.5,76.5 + parent: 2 + - uid: 11586 + components: + - type: Transform + pos: -39.5,76.5 + parent: 2 + - uid: 11587 + components: + - type: Transform + pos: -42.5,78.5 + parent: 2 + - uid: 11588 + components: + - type: Transform + pos: -38.5,84.5 + parent: 2 + - uid: 11594 + components: + - type: Transform + pos: -31.5,56.5 + parent: 2 + - uid: 11626 + components: + - type: Transform + pos: -56.5,60.5 + parent: 2 + - uid: 11687 + components: + - type: Transform + pos: -42.5,94.5 + parent: 2 + - uid: 11688 + components: + - type: Transform + pos: -42.5,95.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + pos: -38.5,94.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -38.5,95.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + pos: -24.5,103.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + pos: -57.5,60.5 + parent: 2 + - uid: 11908 + components: + - type: Transform + pos: -57.5,59.5 + parent: 2 + - uid: 11909 + components: + - type: Transform + pos: -61.5,59.5 + parent: 2 + - uid: 11911 + components: + - type: Transform + pos: -59.5,59.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + pos: -30.5,92.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: -29.5,92.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: -28.5,92.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: -27.5,92.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + pos: -37.5,98.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: -9.5,89.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: -61.5,60.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: -58.5,59.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: -62.5,60.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + pos: -60.5,59.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: 104.5,56.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + pos: -51.5,92.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,89.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + pos: -105.5,146.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: -142.5,90.5 + parent: 2 + - uid: 12920 + components: + - type: Transform + pos: 52.5,66.5 + parent: 2 + - uid: 12955 + components: + - type: Transform + pos: -144.5,90.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + pos: -18.5,80.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + pos: -69.5,69.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: -27.5,105.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + pos: -26.5,105.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + pos: -45.5,109.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: -34.5,108.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + pos: -42.5,111.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: -37.5,93.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + pos: -43.5,93.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: -65.5,115.5 + parent: 2 + - uid: 13950 + components: + - type: Transform + pos: -64.5,115.5 + parent: 2 + - uid: 14150 + components: + - type: Transform + pos: -81.5,69.5 + parent: 2 + - uid: 14158 + components: + - type: Transform + pos: -65.5,114.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + pos: -63.5,115.5 + parent: 2 + - uid: 14231 + components: + - type: Transform + pos: -24.5,102.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + pos: 51.5,66.5 + parent: 2 + - uid: 14742 + components: + - type: Transform + pos: 51.5,65.5 + parent: 2 + - uid: 14796 + components: + - type: Transform + pos: -31.5,57.5 + parent: 2 + - uid: 14797 + components: + - type: Transform + pos: -30.5,57.5 + parent: 2 + - uid: 14798 + components: + - type: Transform + pos: -30.5,58.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: 110.5,56.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + pos: -105.5,102.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + pos: -70.5,69.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + pos: -88.5,82.5 + parent: 2 + - uid: 15400 + components: + - type: Transform + pos: -88.5,84.5 + parent: 2 + - uid: 15494 + components: + - type: Transform + pos: -132.5,104.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + pos: -133.5,104.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: -134.5,104.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + pos: 80.5,42.5 + parent: 2 + - uid: 16262 + components: + - type: Transform + pos: -89.5,73.5 + parent: 2 + - uid: 16288 + components: + - type: Transform + pos: -86.5,61.5 + parent: 2 + - uid: 16289 + components: + - type: Transform + pos: -85.5,61.5 + parent: 2 + - uid: 16290 + components: + - type: Transform + pos: -85.5,62.5 + parent: 2 + - uid: 16291 + components: + - type: Transform + pos: -84.5,62.5 + parent: 2 + - uid: 16292 + components: + - type: Transform + pos: -90.5,59.5 + parent: 2 + - uid: 16293 + components: + - type: Transform + pos: -91.5,59.5 + parent: 2 + - uid: 16294 + components: + - type: Transform + pos: -91.5,58.5 + parent: 2 + - uid: 16295 + components: + - type: Transform + pos: -92.5,58.5 + parent: 2 + - uid: 16299 + components: + - type: Transform + pos: -80.5,64.5 + parent: 2 + - uid: 16300 + components: + - type: Transform + pos: -79.5,64.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + pos: -79.5,65.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + pos: -78.5,65.5 + parent: 2 + - uid: 16320 + components: + - type: Transform + pos: -81.5,70.5 + parent: 2 + - uid: 16321 + components: + - type: Transform + pos: -80.5,69.5 + parent: 2 + - uid: 16329 + components: + - type: Transform + pos: -90.5,73.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + pos: -91.5,73.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: -91.5,72.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: -95.5,71.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: -95.5,70.5 + parent: 2 + - uid: 16335 + components: + - type: Transform + pos: -96.5,70.5 + parent: 2 + - uid: 16336 + components: + - type: Transform + pos: -97.5,70.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: -97.5,69.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + pos: -92.5,76.5 + parent: 2 + - uid: 16369 + components: + - type: Transform + pos: -92.5,75.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + pos: -96.5,74.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + pos: -96.5,73.5 + parent: 2 + - uid: 16381 + components: + - type: Transform + pos: -97.5,73.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: -98.5,73.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + pos: -98.5,72.5 + parent: 2 + - uid: 16384 + components: + - type: Transform + pos: -91.5,76.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + pos: -102.5,71.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + pos: -102.5,70.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + pos: -103.5,70.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + pos: -104.5,70.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + pos: -104.5,69.5 + parent: 2 + - uid: 16397 + components: + - type: Transform + pos: -108.5,68.5 + parent: 2 + - uid: 16398 + components: + - type: Transform + pos: -108.5,67.5 + parent: 2 + - uid: 16399 + components: + - type: Transform + pos: -109.5,67.5 + parent: 2 + - uid: 16400 + components: + - type: Transform + pos: -110.5,67.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: -77.5,62.5 + parent: 2 + - uid: 16428 + components: + - type: Transform + pos: -78.5,62.5 + parent: 2 + - uid: 16429 + components: + - type: Transform + pos: -78.5,61.5 + parent: 2 + - uid: 16430 + components: + - type: Transform + pos: -79.5,61.5 + parent: 2 + - uid: 16431 + components: + - type: Transform + pos: -83.5,59.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: -84.5,59.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + pos: -84.5,58.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + pos: -85.5,58.5 + parent: 2 + - uid: 16468 + components: + - type: Transform + pos: -52.5,92.5 + parent: 2 + - uid: 16469 + components: + - type: Transform + pos: -53.5,92.5 + parent: 2 + - uid: 16545 + components: + - type: Transform + pos: -42.5,110.5 + parent: 2 + - uid: 16546 + components: + - type: Transform + pos: -46.5,109.5 + parent: 2 + - uid: 16561 + components: + - type: Transform + pos: -38.5,111.5 + parent: 2 + - uid: 16574 + components: + - type: Transform + pos: -44.5,110.5 + parent: 2 + - uid: 16576 + components: + - type: Transform + pos: -35.5,109.5 + parent: 2 + - uid: 16628 + components: + - type: Transform + pos: -37.5,100.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + pos: -29.5,106.5 + parent: 2 + - uid: 16756 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - uid: 16967 + components: + - type: Transform + pos: -141.5,104.5 + parent: 2 + - uid: 16977 + components: + - type: Transform + pos: -26.5,104.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + pos: 108.5,50.5 + parent: 2 + - uid: 17324 + components: + - type: Transform + pos: -90.5,37.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + pos: -59.5,175.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + pos: -58.5,175.5 + parent: 2 + - uid: 17373 + components: + - type: Transform + pos: -140.5,104.5 + parent: 2 + - uid: 17579 + components: + - type: Transform + pos: -14.5,61.5 + parent: 2 + - uid: 17777 + components: + - type: Transform + pos: -103.5,90.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + pos: 110.5,50.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: -75.5,186.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + pos: -110.5,90.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + pos: -104.5,90.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + pos: -109.5,90.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: -106.5,90.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: -107.5,90.5 + parent: 2 + - uid: 17871 + components: + - type: Transform + pos: 51.5,64.5 + parent: 2 + - uid: 17873 + components: + - type: Transform + pos: -83.5,185.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + pos: -126.5,96.5 + parent: 2 + - uid: 17969 + components: + - type: Transform + pos: -118.5,67.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: -119.5,67.5 + parent: 2 + - uid: 17996 + components: + - type: Transform + pos: -120.5,67.5 + parent: 2 + - uid: 18103 + components: + - type: Transform + pos: -126.5,97.5 + parent: 2 + - uid: 18110 + components: + - type: Transform + pos: -126.5,98.5 + parent: 2 + - uid: 18161 + components: + - type: Transform + pos: -58.5,156.5 + parent: 2 + - uid: 18192 + components: + - type: Transform + pos: -51.5,150.5 + parent: 2 + - uid: 18194 + components: + - type: Transform + pos: -52.5,150.5 + parent: 2 + - uid: 18325 + components: + - type: Transform + pos: -129.5,99.5 + parent: 2 + - uid: 18420 + components: + - type: Transform + pos: -79.5,149.5 + parent: 2 + - uid: 18445 + components: + - type: Transform + pos: -129.5,100.5 + parent: 2 + - uid: 18450 + components: + - type: Transform + pos: -58.5,157.5 + parent: 2 + - uid: 18498 + components: + - type: Transform + pos: -83.5,184.5 + parent: 2 + - uid: 18559 + components: + - type: Transform + pos: -58.5,158.5 + parent: 2 + - uid: 18738 + components: + - type: Transform + pos: -51.5,156.5 + parent: 2 + - uid: 18739 + components: + - type: Transform + pos: -51.5,155.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + pos: -51.5,154.5 + parent: 2 + - uid: 18811 + components: + - type: Transform + pos: -102.5,101.5 + parent: 2 + - uid: 18837 + components: + - type: Transform + pos: -101.5,101.5 + parent: 2 + - uid: 18983 + components: + - type: Transform + pos: -88.5,83.5 + parent: 2 + - uid: 19135 + components: + - type: Transform + pos: -22.5,200.5 + parent: 2 + - uid: 19489 + components: + - type: Transform + pos: -36.5,110.5 + parent: 2 + - uid: 19490 + components: + - type: Transform + pos: -35.5,110.5 + parent: 2 + - uid: 19532 + components: + - type: Transform + pos: -99.5,170.5 + parent: 2 + - uid: 19725 + components: + - type: Transform + pos: -84.5,161.5 + parent: 2 + - uid: 19750 + components: + - type: Transform + pos: -86.5,161.5 + parent: 2 + - uid: 19753 + components: + - type: Transform + pos: -87.5,161.5 + parent: 2 + - uid: 19763 + components: + - type: Transform + pos: -89.5,161.5 + parent: 2 + - uid: 19772 + components: + - type: Transform + pos: -88.5,161.5 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: -85.5,161.5 + parent: 2 + - uid: 19942 + components: + - type: Transform + pos: -41.5,111.5 + parent: 2 + - uid: 20094 + components: + - type: Transform + pos: -82.5,186.5 + parent: 2 + - uid: 20095 + components: + - type: Transform + pos: -83.5,186.5 + parent: 2 + - uid: 20096 + components: + - type: Transform + pos: -81.5,187.5 + parent: 2 + - uid: 20097 + components: + - type: Transform + pos: -80.5,187.5 + parent: 2 + - uid: 20099 + components: + - type: Transform + pos: -78.5,187.5 + parent: 2 + - uid: 20100 + components: + - type: Transform + pos: -77.5,187.5 + parent: 2 + - uid: 20101 + components: + - type: Transform + pos: -76.5,187.5 + parent: 2 + - uid: 20102 + components: + - type: Transform + pos: -76.5,186.5 + parent: 2 + - uid: 20104 + components: + - type: Transform + pos: -75.5,185.5 + parent: 2 + - uid: 20105 + components: + - type: Transform + pos: -75.5,184.5 + parent: 2 + - uid: 20117 + components: + - type: Transform + pos: -82.5,187.5 + parent: 2 + - uid: 20330 + components: + - type: Transform + pos: 109.5,50.5 + parent: 2 + - uid: 20443 + components: + - type: Transform + pos: -97.5,171.5 + parent: 2 + - uid: 20444 + components: + - type: Transform + pos: -96.5,171.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + pos: -95.5,171.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + pos: -98.5,171.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + pos: -98.5,170.5 + parent: 2 + - uid: 20461 + components: + - type: Transform + pos: -99.5,169.5 + parent: 2 + - uid: 20462 + components: + - type: Transform + pos: -99.5,168.5 + parent: 2 + - uid: 20463 + components: + - type: Transform + pos: -99.5,167.5 + parent: 2 + - uid: 20469 + components: + - type: Transform + pos: -16.5,61.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + pos: -85.5,183.5 + parent: 2 + - uid: 20530 + components: + - type: Transform + pos: -86.5,183.5 + parent: 2 + - uid: 20531 + components: + - type: Transform + pos: -87.5,183.5 + parent: 2 + - uid: 20532 + components: + - type: Transform + pos: -88.5,183.5 + parent: 2 + - uid: 20533 + components: + - type: Transform + pos: -89.5,183.5 + parent: 2 + - uid: 20534 + components: + - type: Transform + pos: -89.5,182.5 + parent: 2 + - uid: 20535 + components: + - type: Transform + pos: -90.5,182.5 + parent: 2 + - uid: 20536 + components: + - type: Transform + pos: -90.5,181.5 + parent: 2 + - uid: 20537 + components: + - type: Transform + pos: -91.5,181.5 + parent: 2 + - uid: 20538 + components: + - type: Transform + pos: -91.5,180.5 + parent: 2 + - uid: 20598 + components: + - type: Transform + pos: -67.5,180.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + pos: -62.5,150.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + pos: -63.5,150.5 + parent: 2 + - uid: 20847 + components: + - type: Transform + pos: -61.5,150.5 + parent: 2 + - uid: 20856 + components: + - type: Transform + pos: -70.5,183.5 + parent: 2 + - uid: 20857 + components: + - type: Transform + pos: -71.5,183.5 + parent: 2 + - uid: 20858 + components: + - type: Transform + pos: -72.5,183.5 + parent: 2 + - uid: 20859 + components: + - type: Transform + pos: -73.5,183.5 + parent: 2 + - uid: 20863 + components: + - type: Transform + pos: -60.5,175.5 + parent: 2 + - uid: 20864 + components: + - type: Transform + pos: -62.5,175.5 + parent: 2 + - uid: 20924 + components: + - type: Transform + pos: -67.5,155.5 + parent: 2 + - uid: 20925 + components: + - type: Transform + pos: -67.5,159.5 + parent: 2 + - uid: 20928 + components: + - type: Transform + pos: -69.5,182.5 + parent: 2 + - uid: 20929 + components: + - type: Transform + pos: -68.5,182.5 + parent: 2 + - uid: 20933 + components: + - type: Transform + pos: -69.5,183.5 + parent: 2 + - uid: 20934 + components: + - type: Transform + pos: -68.5,181.5 + parent: 2 + - uid: 20935 + components: + - type: Transform + pos: -67.5,181.5 + parent: 2 + - uid: 20938 + components: + - type: Transform + pos: -34.5,87.5 + parent: 2 + - uid: 20939 + components: + - type: Transform + pos: -34.5,83.5 + parent: 2 + - uid: 21196 + components: + - type: Transform + pos: -129.5,94.5 + parent: 2 + - uid: 21353 + components: + - type: Transform + pos: -138.5,39.5 + parent: 2 + - uid: 21358 + components: + - type: Transform + pos: -138.5,41.5 + parent: 2 + - uid: 21369 + components: + - type: Transform + pos: 65.5,37.5 + parent: 2 + - uid: 21388 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 + - uid: 21416 + components: + - type: Transform + pos: 67.5,37.5 + parent: 2 + - uid: 21444 + components: + - type: Transform + pos: 66.5,31.5 + parent: 2 + - uid: 21446 + components: + - type: Transform + pos: 67.5,31.5 + parent: 2 + - uid: 22116 + components: + - type: Transform + pos: -74.5,154.5 + parent: 2 + - uid: 22117 + components: + - type: Transform + pos: -74.5,153.5 + parent: 2 + - uid: 22118 + components: + - type: Transform + pos: -74.5,152.5 + parent: 2 + - uid: 22179 + components: + - type: Transform + pos: 109.5,56.5 + parent: 2 + - uid: 22532 + components: + - type: Transform + pos: -9.5,163.5 + parent: 2 + - uid: 22581 + components: + - type: Transform + pos: -129.5,98.5 + parent: 2 + - uid: 22606 + components: + - type: Transform + pos: -6.5,180.5 + parent: 2 + - uid: 22607 + components: + - type: Transform + pos: -6.5,181.5 + parent: 2 + - uid: 22610 + components: + - type: Transform + pos: -6.5,179.5 + parent: 2 + - uid: 22611 + components: + - type: Transform + pos: -6.5,178.5 + parent: 2 + - uid: 22612 + components: + - type: Transform + pos: -6.5,177.5 + parent: 2 + - uid: 22646 + components: + - type: Transform + pos: -52.5,168.5 + parent: 2 + - uid: 22927 + components: + - type: Transform + pos: 1.5,195.5 + parent: 2 + - uid: 22928 + components: + - type: Transform + pos: 0.5,195.5 + parent: 2 + - uid: 23247 + components: + - type: Transform + pos: -1.5,197.5 + parent: 2 + - uid: 23259 + components: + - type: Transform + pos: -1.5,198.5 + parent: 2 + - uid: 23294 + components: + - type: Transform + pos: -17.5,202.5 + parent: 2 + - uid: 23295 + components: + - type: Transform + pos: -16.5,202.5 + parent: 2 + - uid: 23296 + components: + - type: Transform + pos: -15.5,202.5 + parent: 2 + - uid: 23297 + components: + - type: Transform + pos: -14.5,202.5 + parent: 2 + - uid: 23408 + components: + - type: Transform + pos: -1.5,199.5 + parent: 2 + - uid: 23476 + components: + - type: Transform + pos: -22.5,201.5 + parent: 2 + - uid: 23495 + components: + - type: Transform + pos: 6.5,211.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + pos: -104.5,146.5 + parent: 2 + - uid: 23545 + components: + - type: Transform + pos: 8.5,186.5 + parent: 2 + - uid: 23763 + components: + - type: Transform + pos: 108.5,56.5 + parent: 2 + - uid: 23845 + components: + - type: Transform + pos: 5.5,211.5 + parent: 2 + - uid: 23986 + components: + - type: Transform + pos: 105.5,56.5 + parent: 2 + - uid: 23998 + components: + - type: Transform + pos: -24.5,210.5 + parent: 2 + - uid: 23999 + components: + - type: Transform + pos: -23.5,210.5 + parent: 2 + - uid: 24000 + components: + - type: Transform + pos: -22.5,210.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: -11.5,214.5 + parent: 2 + - uid: 24002 + components: + - type: Transform + pos: -10.5,214.5 + parent: 2 + - uid: 24003 + components: + - type: Transform + pos: -9.5,214.5 + parent: 2 + - uid: 24004 + components: + - type: Transform + pos: -8.5,214.5 + parent: 2 + - uid: 24005 + components: + - type: Transform + pos: -7.5,214.5 + parent: 2 + - uid: 24006 + components: + - type: Transform + pos: -6.5,214.5 + parent: 2 + - uid: 24007 + components: + - type: Transform + pos: -5.5,214.5 + parent: 2 + - uid: 24008 + components: + - type: Transform + pos: -4.5,214.5 + parent: 2 + - uid: 24049 + components: + - type: Transform + pos: 6.5,210.5 + parent: 2 + - uid: 24050 + components: + - type: Transform + pos: 7.5,210.5 + parent: 2 + - uid: 24051 + components: + - type: Transform + pos: 7.5,209.5 + parent: 2 + - uid: 24105 + components: + - type: Transform + pos: 11.5,204.5 + parent: 2 + - uid: 24106 + components: + - type: Transform + pos: 12.5,204.5 + parent: 2 + - uid: 24107 + components: + - type: Transform + pos: 13.5,204.5 + parent: 2 + - uid: 24108 + components: + - type: Transform + pos: 14.5,204.5 + parent: 2 + - uid: 24146 + components: + - type: Transform + pos: 106.5,56.5 + parent: 2 + - uid: 24148 + components: + - type: Transform + pos: 106.5,50.5 + parent: 2 + - uid: 24149 + components: + - type: Transform + pos: 105.5,50.5 + parent: 2 + - uid: 24373 + components: + - type: Transform + pos: 24.5,180.5 + parent: 2 + - uid: 24374 + components: + - type: Transform + pos: 24.5,179.5 + parent: 2 + - uid: 24375 + components: + - type: Transform + pos: 24.5,178.5 + parent: 2 + - uid: 24449 + components: + - type: Transform + pos: -38.5,110.5 + parent: 2 + - uid: 25266 + components: + - type: Transform + pos: -118.5,90.5 + parent: 2 + - uid: 25392 + components: + - type: Transform + pos: 104.5,50.5 + parent: 2 + - uid: 25454 + components: + - type: Transform + pos: 10.5,170.5 + parent: 2 + - uid: 25455 + components: + - type: Transform + pos: 11.5,170.5 + parent: 2 + - uid: 25456 + components: + - type: Transform + pos: 12.5,170.5 + parent: 2 + - uid: 25457 + components: + - type: Transform + pos: 13.5,170.5 + parent: 2 + - uid: 25458 + components: + - type: Transform + pos: 14.5,170.5 + parent: 2 + - uid: 25822 + components: + - type: Transform + pos: -13.5,163.5 + parent: 2 + - uid: 26343 + components: + - type: Transform + pos: -115.5,90.5 + parent: 2 + - uid: 26387 + components: + - type: Transform + pos: -37.5,110.5 + parent: 2 + - uid: 26414 + components: + - type: Transform + pos: -39.5,111.5 + parent: 2 + - uid: 26624 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 26658 + components: + - type: Transform + pos: -26.5,60.5 + parent: 2 + - uid: 26782 + components: + - type: Transform + pos: -116.5,90.5 + parent: 2 + - uid: 26787 + components: + - type: Transform + pos: -117.5,90.5 + parent: 2 + - uid: 27139 + components: + - type: Transform + pos: -117.5,52.5 + parent: 2 + - uid: 27140 + components: + - type: Transform + pos: -116.5,52.5 + parent: 2 + - uid: 27332 + components: + - type: Transform + pos: 69.5,50.5 + parent: 2 + - uid: 27333 + components: + - type: Transform + pos: 68.5,51.5 + parent: 2 + - uid: 27505 + components: + - type: Transform + pos: -75.5,36.5 + parent: 2 + - uid: 27511 + components: + - type: Transform + pos: -75.5,37.5 + parent: 2 + - uid: 27513 + components: + - type: Transform + pos: -75.5,38.5 + parent: 2 + - uid: 27531 + components: + - type: Transform + pos: -75.5,44.5 + parent: 2 + - uid: 27532 + components: + - type: Transform + pos: -75.5,45.5 + parent: 2 + - uid: 27535 + components: + - type: Transform + pos: -75.5,46.5 + parent: 2 + - uid: 27799 + components: + - type: Transform + pos: -87.5,48.5 + parent: 2 + - uid: 27800 + components: + - type: Transform + pos: -86.5,48.5 + parent: 2 + - uid: 27801 + components: + - type: Transform + pos: -85.5,48.5 + parent: 2 + - uid: 27802 + components: + - type: Transform + pos: -84.5,48.5 + parent: 2 + - uid: 27810 + components: + - type: Transform + pos: -93.5,38.5 + parent: 2 + - uid: 27811 + components: + - type: Transform + pos: -92.5,38.5 + parent: 2 + - uid: 27812 + components: + - type: Transform + pos: -91.5,38.5 + parent: 2 + - uid: 27813 + components: + - type: Transform + pos: -90.5,38.5 + parent: 2 + - uid: 27985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 28105 + components: + - type: Transform + pos: 73.5,50.5 + parent: 2 + - uid: 28204 + components: + - type: Transform + pos: -115.5,57.5 + parent: 2 + - uid: 28229 + components: + - type: Transform + pos: -83.5,149.5 + parent: 2 + - uid: 28233 + components: + - type: Transform + pos: -114.5,57.5 + parent: 2 + - uid: 28340 + components: + - type: Transform + pos: 69.5,51.5 + parent: 2 + - uid: 28348 + components: + - type: Transform + pos: -102.5,58.5 + parent: 2 + - uid: 28364 + components: + - type: Transform + pos: -90.5,52.5 + parent: 2 + - uid: 28481 + components: + - type: Transform + pos: -90.5,53.5 + parent: 2 + - uid: 28675 + components: + - type: Transform + pos: -104.5,38.5 + parent: 2 + - uid: 28676 + components: + - type: Transform + pos: -103.5,38.5 + parent: 2 + - uid: 28684 + components: + - type: Transform + pos: -100.5,63.5 + parent: 2 + - uid: 28685 + components: + - type: Transform + pos: -101.5,63.5 + parent: 2 + - uid: 28689 + components: + - type: Transform + pos: -129.5,96.5 + parent: 2 + - uid: 28706 + components: + - type: Transform + pos: 74.5,54.5 + parent: 2 + - uid: 28722 + components: + - type: Transform + pos: 74.5,52.5 + parent: 2 + - uid: 28723 + components: + - type: Transform + pos: 73.5,51.5 + parent: 2 + - uid: 28782 + components: + - type: Transform + pos: -138.5,47.5 + parent: 2 + - uid: 28783 + components: + - type: Transform + pos: -129.5,95.5 + parent: 2 + - uid: 28948 + components: + - type: Transform + pos: -112.5,66.5 + parent: 2 + - uid: 28949 + components: + - type: Transform + pos: -113.5,66.5 + parent: 2 + - uid: 28950 + components: + - type: Transform + pos: -114.5,66.5 + parent: 2 + - uid: 28951 + components: + - type: Transform + pos: -115.5,66.5 + parent: 2 + - uid: 28952 + components: + - type: Transform + pos: -112.5,64.5 + parent: 2 + - uid: 28953 + components: + - type: Transform + pos: -113.5,64.5 + parent: 2 + - uid: 28954 + components: + - type: Transform + pos: -114.5,64.5 + parent: 2 + - uid: 28955 + components: + - type: Transform + pos: -115.5,64.5 + parent: 2 + - uid: 29012 + components: + - type: Transform + pos: -113.5,57.5 + parent: 2 + - uid: 29013 + components: + - type: Transform + pos: -113.5,56.5 + parent: 2 + - uid: 29015 + components: + - type: Transform + pos: -113.5,55.5 + parent: 2 + - uid: 29047 + components: + - type: Transform + pos: -123.5,48.5 + parent: 2 + - uid: 29048 + components: + - type: Transform + pos: -122.5,48.5 + parent: 2 + - uid: 29049 + components: + - type: Transform + pos: -123.5,46.5 + parent: 2 + - uid: 29050 + components: + - type: Transform + pos: -122.5,46.5 + parent: 2 + - uid: 29344 + components: + - type: Transform + pos: -138.5,51.5 + parent: 2 + - uid: 29347 + components: + - type: Transform + pos: -138.5,49.5 + parent: 2 + - uid: 29474 + components: + - type: Transform + pos: -67.5,67.5 + parent: 2 + - uid: 30529 + components: + - type: Transform + pos: -15.5,61.5 + parent: 2 + - uid: 30886 + components: + - type: Transform + pos: -24.5,60.5 + parent: 2 + - uid: 31433 + components: + - type: Transform + pos: -34.5,109.5 + parent: 2 + - uid: 32471 + components: + - type: Transform + pos: -30.5,106.5 + parent: 2 + - uid: 33514 + components: + - type: Transform + pos: -72.5,173.5 + parent: 2 + - uid: 33702 + components: + - type: Transform + pos: -69.5,173.5 + parent: 2 + - uid: 33807 + components: + - type: Transform + pos: -28.5,106.5 + parent: 2 + - uid: 33889 + components: + - type: Transform + pos: -46.5,108.5 + parent: 2 + - uid: 34242 + components: + - type: Transform + pos: -52.5,171.5 + parent: 2 + - uid: 34302 + components: + - type: Transform + pos: -129.5,97.5 + parent: 2 + - uid: 34572 + components: + - type: Transform + pos: -43.5,110.5 + parent: 2 + - uid: 34767 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 34792 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 + - uid: 34794 + components: + - type: Transform + pos: 2.5,60.5 + parent: 2 + - uid: 34795 + components: + - type: Transform + pos: 2.5,61.5 + parent: 2 + - uid: 34797 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 34800 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 34820 + components: + - type: Transform + pos: -25.5,104.5 + parent: 2 + - uid: 34822 + components: + - type: Transform + pos: -45.5,110.5 + parent: 2 + - uid: 35400 + components: + - type: Transform + pos: -107.5,150.5 + parent: 2 + - uid: 35401 + components: + - type: Transform + pos: -106.5,150.5 + parent: 2 + - uid: 35419 + components: + - type: Transform + pos: -105.5,150.5 + parent: 2 + - uid: 35420 + components: + - type: Transform + pos: -104.5,150.5 + parent: 2 + - uid: 35829 + components: + - type: Transform + pos: -27.5,106.5 + parent: 2 + - uid: 35929 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - uid: 36613 + components: + - type: Transform + pos: 73.5,64.5 + parent: 2 + - uid: 36651 + components: + - type: Transform + pos: -31.5,106.5 + parent: 2 + - uid: 36652 + components: + - type: Transform + pos: -32.5,106.5 + parent: 2 + - uid: 36680 + components: + - type: Transform + pos: -18.5,190.5 + parent: 2 + - uid: 36681 + components: + - type: Transform + pos: 1.5,185.5 + parent: 2 + - uid: 36682 + components: + - type: Transform + pos: -20.5,190.5 + parent: 2 + - uid: 36683 + components: + - type: Transform + pos: -19.5,190.5 + parent: 2 + - uid: 36694 + components: + - type: Transform + pos: -4.5,197.5 + parent: 2 + - uid: 36707 + components: + - type: Transform + pos: -14.5,190.5 + parent: 2 + - uid: 36732 + components: + - type: Transform + pos: 69.5,64.5 + parent: 2 + - uid: 36733 + components: + - type: Transform + pos: 1.5,183.5 + parent: 2 + - uid: 36771 + components: + - type: Transform + pos: -92.5,142.5 + parent: 2 + - uid: 36772 + components: + - type: Transform + pos: -91.5,142.5 + parent: 2 + - uid: 36773 + components: + - type: Transform + pos: -90.5,142.5 + parent: 2 + - uid: 36774 + components: + - type: Transform + pos: -89.5,142.5 + parent: 2 + - uid: 36830 + components: + - type: Transform + pos: -7.5,187.5 + parent: 2 + - uid: 36966 + components: + - type: Transform + pos: -8.5,187.5 + parent: 2 + - uid: 37156 + components: + - type: Transform + pos: -44.5,175.5 + parent: 2 + - uid: 37165 + components: + - type: Transform + pos: -34.5,176.5 + parent: 2 + - uid: 37166 + components: + - type: Transform + pos: -34.5,175.5 + parent: 2 + - uid: 37167 + components: + - type: Transform + pos: -35.5,175.5 + parent: 2 + - uid: 37182 + components: + - type: Transform + pos: -47.5,171.5 + parent: 2 + - uid: 37187 + components: + - type: Transform + pos: -46.5,171.5 + parent: 2 + - uid: 37189 + components: + - type: Transform + pos: -45.5,172.5 + parent: 2 + - uid: 37190 + components: + - type: Transform + pos: -45.5,171.5 + parent: 2 + - uid: 37205 + components: + - type: Transform + pos: -43.5,175.5 + parent: 2 + - uid: 37206 + components: + - type: Transform + pos: -42.5,175.5 + parent: 2 + - uid: 37207 + components: + - type: Transform + pos: -44.5,178.5 + parent: 2 + - uid: 37208 + components: + - type: Transform + pos: -43.5,178.5 + parent: 2 + - uid: 37209 + components: + - type: Transform + pos: -42.5,178.5 + parent: 2 + - uid: 37210 + components: + - type: Transform + pos: -40.5,171.5 + parent: 2 + - uid: 37211 + components: + - type: Transform + pos: -39.5,171.5 + parent: 2 + - uid: 37212 + components: + - type: Transform + pos: -38.5,171.5 + parent: 2 + - uid: 37213 + components: + - type: Transform + pos: -37.5,171.5 + parent: 2 + - uid: 37216 + components: + - type: Transform + pos: -4.5,198.5 + parent: 2 + - uid: 37224 + components: + - type: Transform + pos: -50.5,171.5 + parent: 2 + - uid: 37225 + components: + - type: Transform + pos: -51.5,171.5 + parent: 2 + - uid: 37226 + components: + - type: Transform + pos: -51.5,168.5 + parent: 2 + - uid: 37322 + components: + - type: Transform + pos: -50.5,168.5 + parent: 2 + - uid: 37568 + components: + - type: Transform + pos: -8.5,200.5 + parent: 2 + - uid: 37678 + components: + - type: Transform + pos: -7.5,200.5 + parent: 2 + - uid: 37681 + components: + - type: Transform + pos: -6.5,200.5 + parent: 2 + - uid: 37683 + components: + - type: Transform + pos: -6.5,187.5 + parent: 2 + - uid: 37696 + components: + - type: Transform + pos: -90.5,50.5 + parent: 2 + - uid: 37703 + components: + - type: Transform + pos: -88.5,48.5 + parent: 2 + - uid: 38052 + components: + - type: Transform + pos: -16.5,190.5 + parent: 2 + - uid: 38246 + components: + - type: Transform + pos: 1.5,184.5 + parent: 2 + - uid: 38814 + components: + - type: Transform + pos: -86.5,149.5 + parent: 2 + - uid: 38832 + components: + - type: Transform + pos: -92.5,149.5 + parent: 2 + - uid: 39264 + components: + - type: Transform + pos: 81.5,42.5 + parent: 2 + - uid: 39266 + components: + - type: Transform + pos: -91.5,175.5 + parent: 2 + - uid: 39413 + components: + - type: Transform + pos: -10.5,167.5 + parent: 2 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 5721 + components: + - type: Transform + pos: -69.5,133.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,127.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,128.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: -70.5,132.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 20230 + components: + - type: Transform + pos: -75.31904,182.91359 + parent: 2 + - uid: 32476 + components: + - type: Transform + pos: -75.21423,183.33795 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 17949 + components: + - type: Transform + pos: -90.5,156.5 + parent: 2 +- proto: Retractor + entities: + - uid: 15636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5418983,73.60834 + parent: 2 + - uid: 23203 + components: + - type: Transform + rot: 8.881784197001252E-16 rad + pos: 3.5341187,182.6485 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 6002 + components: + - type: Transform + pos: 37.48349,63.71048 + parent: 2 + - uid: 42945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.60591,47.147537 + parent: 2 +- proto: RiceBushel + entities: + - uid: 5290 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15615 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26500 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RightArmBorg + entities: + - uid: 38282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.96949,166.53644 + parent: 2 +- proto: RightFootSkeleton + entities: + - uid: 26332 + components: + - type: Transform + pos: -129.75058,82.76152 + parent: 2 +- proto: RightLegArachnid + entities: + - uid: 35973 + components: + - type: Transform + pos: -43.763634,54.1556 + parent: 2 +- proto: RightLegBorg + entities: + - uid: 11270 + components: + - type: Transform + pos: -70.76047,179.90793 + parent: 2 +- proto: RipleyCentralElectronics + entities: + - uid: 3057 + components: + - type: Transform + pos: -21.34799,-9.323975 + parent: 2 +- proto: RipleyChassis + entities: + - uid: 3059 + components: + - type: Transform + pos: -13.543303,0.5368974 + parent: 2 +- proto: RipleyPeripheralsElectronics + entities: + - uid: 518 + components: + - type: Transform + parent: 1816 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RobustHarvestChemistryBottle + entities: + - uid: 11333 + components: + - type: Transform + pos: -8.61179,59.628777 + parent: 2 +- proto: RollerBed + entities: + - uid: 23395 + components: + - type: Transform + pos: -10.37249,205.57013 + parent: 2 +- proto: RollerBedSpawnFolded + entities: + - uid: 34562 + components: + - type: Transform + pos: 0.42192793,-1.5316925 + parent: 30902 +- proto: RubberStampApproved + entities: + - uid: 1154 + components: + - type: Transform + pos: -25.962366,-1.2591503 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: 69.81573,69.71759 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: -17.970901,84.4801 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 1155 + components: + - type: Transform + pos: -26.056116,-1.4154003 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: 70.18691,69.54892 + parent: 2 + - uid: 8042 + components: + - type: Transform + pos: -17.970901,84.73872 + parent: 2 + - uid: 28130 + components: + - type: Transform + pos: -83.69974,143.33191 + parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 7412 + components: + - type: Transform + pos: -131.5,22.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: -36.5,53.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + pos: -133.5,30.5 + parent: 2 + - uid: 26384 + components: + - type: Transform + pos: -37.5,198.5 + parent: 2 + - uid: 26829 + components: + - type: Transform + pos: -119.5,92.5 + parent: 2 + - uid: 29209 + components: + - type: Transform + pos: -107.5,49.5 + parent: 2 + - uid: 39508 + components: + - type: Transform + pos: -86.5,151.5 + parent: 2 +- proto: SalvageLootSpawner + entities: + - uid: 29676 + components: + - type: Transform + pos: -119.5,94.5 + parent: 2 + - uid: 37057 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 36996 +- proto: SalvageMagnet + entities: + - uid: 13733 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 24181 + components: + - type: Transform + pos: 19.5,197.5 + parent: 2 +- proto: SalvageMobSpawner + entities: + - uid: 9613 + components: + - type: Transform + pos: -117.5,99.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + pos: -114.5,103.5 + parent: 2 +- proto: Saw + entities: + - uid: 15535 + components: + - type: Transform + pos: -37.56848,57.61797 + parent: 2 +- proto: SawElectric + entities: + - uid: 22744 + components: + - type: Transform + pos: 2.4470596,183.61462 + parent: 2 +- proto: Scalpel + entities: + - uid: 11083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.429418,73.36096 + parent: 2 + - uid: 15520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.36904,57.52794 + parent: 2 + - uid: 17398 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22746 + components: + - type: Transform + rot: 8.881784197001252E-16 rad + pos: 3.5341187,182.32037 + parent: 2 + - uid: 23385 + components: + - type: Transform + pos: -8.590963,210.66316 + parent: 2 +- proto: ScrapPAIGold + entities: + - uid: 8925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.318085,20.440796 + parent: 2 +- proto: Screwdriver + entities: + - uid: 7769 + components: + - type: Transform + pos: -60.340996,129.4942 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: -111.53426,34.49627 + parent: 2 + - uid: 31682 + components: + - type: Transform + pos: 56.495033,55.363583 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 4487 + components: + - type: Transform + pos: 57.5,62.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 5784 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 16332 + components: + - type: Transform + pos: -79.5,140.5 + parent: 2 + - uid: 25443 + components: + - type: Transform + pos: -2.5,69.5 + parent: 2 +- proto: ShardCrystalPink + entities: + - uid: 290 + components: + - type: Transform + pos: 6.2057686,83.269356 + parent: 2 +- proto: ShardGlass + entities: + - uid: 2770 + components: + - type: Transform + pos: 29.800478,18.673101 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: 26.378603,14.852791 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: 29.378603,15.040291 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: 28.112978,12.180916 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: 32.636414,15.063728 + parent: 2 + - uid: 5949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.30624,197.35341 + parent: 2 + - uid: 12149 + components: + - type: Transform + pos: 23.71788,199.26343 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: -49.619476,70.265686 + parent: 2 + - uid: 15833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.24829,70.98532 + parent: 2 + - uid: 15834 + components: + - type: Transform + pos: -51.631298,70.726166 + parent: 2 + - uid: 17147 + components: + - type: Transform + pos: 21.436768,201.48734 + parent: 2 + - uid: 17468 + components: + - type: Transform + pos: -120.91832,65.06194 + parent: 2 + - uid: 17508 + components: + - type: Transform + pos: -118.74811,64.402374 + parent: 2 + - uid: 17980 + components: + - type: Transform + pos: -125.31942,98.905045 + parent: 2 + - uid: 18067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.555626,99.399796 + parent: 2 + - uid: 18111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.35102,95.36307 + parent: 2 + - uid: 18151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.745766,95.73413 + parent: 2 + - uid: 19246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.412056,151.18748 + parent: 2 + - uid: 19247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.11854,150.64777 + parent: 2 + - uid: 19284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.704506,150.54655 + parent: 2 + - uid: 19684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.53127,147.81192 + parent: 2 + - uid: 19685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.69892,148.18298 + parent: 2 + - uid: 19686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.327736,147.59827 + parent: 2 + - uid: 19687 + components: + - type: Transform + pos: -94.652855,147.56454 + parent: 2 + - uid: 24119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4014225,198.61287 + parent: 2 + - uid: 24120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5803194,199.29878 + parent: 2 + - uid: 24121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.6038866,201.01918 + parent: 2 + - uid: 24122 + components: + - type: Transform + pos: 4.366607,202.42471 + parent: 2 + - uid: 24123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.7276154,199.4562 + parent: 2 + - uid: 28248 + components: + - type: Transform + pos: -84.896355,143.96944 + parent: 2 + - uid: 28249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.526245,142.63135 + parent: 2 + - uid: 28250 + components: + - type: Transform + pos: -86.11114,143.41846 + parent: 2 + - uid: 28251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.00669,141.86673 + parent: 2 + - uid: 28252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.030266,142.60886 + parent: 2 + - uid: 28253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.882965,143.48592 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 13342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -143.46736,90.312195 + parent: 2 + - uid: 24147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.309841,201.45242 + parent: 2 + - uid: 29571 + components: + - type: Transform + pos: -112.82814,34.65273 + parent: 2 + - uid: 29572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.488434,35.3307 + parent: 2 +- proto: ShardGlassUranium + entities: + - uid: 17148 + components: + - type: Transform + pos: 24.093018,202.72171 + parent: 2 +- proto: SheetGlass + entities: + - uid: 2820 + components: + - type: Transform + pos: -100.92729,48.205933 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: -100.359406,48.694424 + parent: 2 + - uid: 8949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.49889,177.14505 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 9033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.56445,180.57016 + parent: 2 +- proto: SheetPlasma1 + entities: + - uid: 2961 + components: + - type: Transform + pos: 32.88313,15.717176 + parent: 2 + - uid: 17640 + components: + - type: Transform + parent: 34638 + - type: Stack + count: 3 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23363 + components: + - type: Transform + pos: -17.523806,192.45837 + parent: 2 + - uid: 23420 + components: + - type: Transform + pos: -17.46001,192.72333 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 8728 + components: + - type: Transform + pos: -102.42247,47.6941 + parent: 2 + - uid: 43369 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasteel10 + entities: + - uid: 28494 + components: + - type: Transform + pos: 116.556946,49.349663 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 8930 + components: + - type: Transform + pos: -101.548004,48.535995 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: -100.61034,49.301735 + parent: 2 +- proto: SheetPlastic10 + entities: + - uid: 9034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.35011,181.90802 + parent: 2 + - uid: 30896 + components: + - type: Transform + pos: -114.40638,93.405464 + parent: 2 +- proto: SheetSteel + entities: + - uid: 2795 + components: + - type: Transform + pos: -100.91409,47.58542 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -100.359406,48.060707 + parent: 2 + - uid: 9036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.64276,167.66763 + parent: 2 + - uid: 43366 + components: + - type: Transform + parent: 43362 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel10 + entities: + - uid: 2479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.445499,79.45635 + parent: 2 + - uid: 12487 + components: + - type: Transform + pos: 116.52092,49.5034 + parent: 2 + - type: Stack + count: 20 +- proto: ShellShotgunBeanbag + entities: + - uid: 37933 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 37937 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 37957 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38026 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38027 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38028 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38029 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38030 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShipBattlemap + entities: + - uid: 25684 + components: + - type: Transform + pos: -32.49058,4.594513 + parent: 2 +- proto: Shiv + entities: + - uid: 5331 + components: + - type: Transform + parent: 4151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Shovel + entities: + - uid: 1105 + components: + - type: Transform + pos: -46.254536,-2.480135 + parent: 2 + - uid: 25265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.67612,86.814896 + parent: 2 + - uid: 26205 + components: + - type: Transform + pos: -33.515373,191.54562 + parent: 2 +- proto: ShowcaseRobot + entities: + - uid: 4641 + components: + - type: Transform + pos: 66.5,65.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 16492 + components: + - type: Transform + pos: -25.5,64.5 + parent: 2 + - uid: 16494 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 16496 + components: + - type: Transform + pos: -24.5,64.5 + parent: 2 + - uid: 22725 + components: + - type: Transform + pos: -27.5,64.5 + parent: 2 + - uid: 22952 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 23036 + components: + - type: Transform + pos: -28.5,64.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 25334 + components: + - type: Transform + pos: -125.495964,95.51763 + parent: 2 +- proto: ShuttleGunPerforator + entities: + - uid: 5749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 13386 +- proto: ShuttleWindow + entities: + - uid: 13642 + components: + - type: Transform + pos: 2.5,3.5 + parent: 13386 + - uid: 13723 + components: + - type: Transform + pos: 1.5,4.5 + parent: 13386 + - uid: 13725 + components: + - type: Transform + pos: 0.5,4.5 + parent: 13386 + - uid: 13729 + components: + - type: Transform + pos: -0.5,4.5 + parent: 13386 + - uid: 13731 + components: + - type: Transform + pos: -0.5,5.5 + parent: 13386 + - uid: 14044 + components: + - type: Transform + pos: -0.5,6.5 + parent: 13386 + - uid: 14152 + components: + - type: Transform + pos: -1.5,6.5 + parent: 13386 + - uid: 14155 + components: + - type: Transform + pos: -2.5,6.5 + parent: 13386 + - uid: 14311 + components: + - type: Transform + pos: -2.5,5.5 + parent: 13386 + - uid: 14399 + components: + - type: Transform + pos: -2.5,4.5 + parent: 13386 + - uid: 14563 + components: + - type: Transform + pos: -2.5,3.5 + parent: 13386 + - uid: 14780 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 13386 + - uid: 15223 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 13386 + - uid: 15804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 13386 + - uid: 22079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 21114 + - uid: 22080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 21114 + - uid: 22081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 21114 + - uid: 22082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 21114 + - uid: 31001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 30902 + - uid: 31002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 30902 + - uid: 31003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 30902 + - uid: 31004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 30902 + - uid: 31005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 30902 + - uid: 31006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 30902 + - uid: 31007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 30902 + - uid: 31008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 30902 + - uid: 31009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 30902 + - uid: 37008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 36996 + - uid: 37009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 36996 + - uid: 37010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 36996 + - uid: 37026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 36996 + - uid: 37033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 36996 + - uid: 37593 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 36996 + - uid: 37935 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 37842 + - uid: 37967 + components: + - type: Transform + pos: -0.5,2.5 + parent: 37842 + - uid: 37968 + components: + - type: Transform + pos: 1.5,2.5 + parent: 37842 + - uid: 37969 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 37842 + - uid: 37970 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 37842 + - uid: 37971 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 37842 + - uid: 37972 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 37842 + - uid: 37973 + components: + - type: Transform + pos: 0.5,2.5 + parent: 37842 + - uid: 37990 + components: + - type: Transform + pos: -1.5,2.5 + parent: 37842 + - uid: 37992 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 37842 + - uid: 37999 + components: + - type: Transform + pos: 2.5,1.5 + parent: 37842 + - uid: 38007 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 37842 + - uid: 38008 + components: + - type: Transform + pos: -1.5,1.5 + parent: 37842 + - uid: 38009 + components: + - type: Transform + pos: 2.5,2.5 + parent: 37842 +- proto: ShuttleWindowDiagonal + entities: + - uid: 28317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 30902 + - uid: 28319 + components: + - type: Transform + pos: -0.5,5.5 + parent: 30902 +- proto: SignAi + entities: + - uid: 7844 + components: + - type: Transform + pos: -58.5,150.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,125.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,136.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 7843 + components: + - type: Transform + pos: -60.5,150.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,62.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 195: + - Pressed: Toggle + 198: + - Pressed: Toggle + 625: + - Pressed: Toggle + - uid: 452 + components: + - type: Transform + pos: 66.5,63.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3916: + - Pressed: Toggle + - uid: 1049 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: -94.73944,171.50468 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4962: + - Pressed: Toggle + 4698: + - Pressed: Toggle + 4629: + - Pressed: Toggle + - uid: 1924 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 64: + - Pressed: Toggle + 68: + - Pressed: Toggle + 26: + - Pressed: Toggle + 920: + - Pressed: Toggle + - uid: 4115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28827: + - Pressed: Toggle + 28918: + - Pressed: Toggle + 38358: + - Pressed: Toggle + 38360: + - Pressed: Toggle + 38361: + - Pressed: Toggle + 38362: + - Pressed: Toggle + 26313: + - Pressed: Toggle + - uid: 4897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4879: + - Pressed: Toggle + 4878: + - Pressed: Toggle + 4877: + - Pressed: Toggle + - uid: 10633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,83.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10411: + - Pressed: Toggle + 10413: + - Pressed: Toggle + 10412: + - Pressed: Toggle + - uid: 12042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4240: + - Pressed: Toggle + - uid: 16968 + components: + - type: Transform + pos: -1.5009613,5.678486 + parent: 13386 + - type: DeviceLinkSource + linkedPorts: + 5749: + - Pressed: Trigger + - uid: 22888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16494: + - Pressed: Toggle + 23036: + - Pressed: Toggle + 22725: + - Pressed: Toggle + 22952: + - Pressed: Toggle + 16492: + - Pressed: Toggle + 16496: + - Pressed: Toggle + - uid: 26586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,149.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21273: + - Pressed: Toggle + 32470: + - Pressed: Toggle + - uid: 27198 + components: + - type: Transform + pos: -94.25616,171.50409 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1203: + - Pressed: Toggle + - uid: 28304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4882: + - Pressed: Toggle + 4881: + - Pressed: Toggle + 4880: + - Pressed: Toggle + - uid: 28311 + components: + - type: Transform + pos: 98.5,55.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4883: + - Pressed: Toggle + 4884: + - Pressed: Toggle + 4885: + - Pressed: Toggle + - uid: 28527 + components: + - type: Transform + pos: 92.5,55.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4886: + - Pressed: Toggle + 4887: + - Pressed: Toggle + 4888: + - Pressed: Toggle + - uid: 29457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29455: + - Pressed: Toggle + - uid: 31010 + components: + - type: Transform + pos: 0.5,4.5 + parent: 30902 + - type: DeviceLinkSource + linkedPorts: + 30997: + - Pressed: Toggle + 30986: + - Pressed: Toggle + 30985: + - Pressed: Toggle + 30998: + - Pressed: Toggle + - uid: 37974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.649444,1.2243648 + parent: 37842 + - type: DeviceLinkSource + linkedPorts: + 38019: + - Pressed: Toggle + - Pressed: AutoClose + - uid: 37975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.49717999,1.4584147 + parent: 37842 + - type: DeviceLinkSource + linkedPorts: + 37963: + - Pressed: Toggle + 37964: + - Pressed: Toggle + - uid: 37976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.34616482,1.2243648 + parent: 37842 + - type: DeviceLinkSource + linkedPorts: + 38020: + - Pressed: Toggle + - Pressed: AutoClose + - uid: 38301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,159.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38297: + - Pressed: Toggle + 38296: + - Pressed: Toggle + 38294: + - Pressed: Toggle + 38295: + - Pressed: Toggle + 38293: + - Pressed: Toggle + 38292: + - Pressed: Toggle + 38298: + - Pressed: Toggle + 38299: + - Pressed: Toggle + 38300: + - Pressed: Toggle + - uid: 38303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,80.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38302: + - Pressed: Toggle + 36845: + - Pressed: Toggle + 4370: + - Pressed: Toggle + 1740: + - Pressed: Toggle + - uid: 38323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38322: + - Pressed: Toggle + 38321: + - Pressed: Toggle + 38320: + - Pressed: Toggle + 38319: + - Pressed: Toggle + 38318: + - Pressed: Toggle + 38317: + - Pressed: Toggle + 38316: + - Pressed: Toggle + 38315: + - Pressed: Toggle + 38314: + - Pressed: Toggle + 38313: + - Pressed: Toggle + 38312: + - Pressed: Toggle + 38311: + - Pressed: Toggle + 38310: + - Pressed: Toggle + 38325: + - Pressed: Toggle + 38371: + - Pressed: Toggle + 38326: + - Pressed: Toggle + - uid: 38344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,69.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38328: + - Pressed: Toggle + 38327: + - Pressed: Toggle + 38329: + - Pressed: Toggle + 38330: + - Pressed: Toggle + 38331: + - Pressed: Toggle + 38332: + - Pressed: Toggle + 38333: + - Pressed: Toggle + 38334: + - Pressed: Toggle + 38336: + - Pressed: Toggle + 38337: + - Pressed: Toggle + 38338: + - Pressed: Toggle + 38339: + - Pressed: Toggle + 38340: + - Pressed: Toggle + 38341: + - Pressed: Toggle + 38342: + - Pressed: Toggle + 38343: + - Pressed: Toggle + - uid: 38346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,67.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38345: + - Pressed: Toggle + 38347: + - Pressed: Toggle + 38348: + - Pressed: Toggle + 38349: + - Pressed: Toggle + 38350: + - Pressed: Toggle + 38351: + - Pressed: Toggle + 38352: + - Pressed: Toggle + 38353: + - Pressed: Toggle + 38354: + - Pressed: Toggle + 38355: + - Pressed: Toggle + 38356: + - Pressed: Toggle + 38357: + - Pressed: Toggle + - uid: 38376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,206.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 38372: + - Pressed: Toggle + 38373: + - Pressed: Toggle + 38374: + - Pressed: Toggle + 38375: + - Pressed: Toggle +- proto: SignalButtonBridge + entities: + - uid: 18365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,107.5 + parent: 2 +- proto: SignalButtonDirectional + entities: + - uid: 6532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,177.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7828: + - Pressed: Toggle +- proto: SignAnomaly + entities: + - uid: 20074 + components: + - type: Transform + pos: -84.5,169.5 + parent: 2 + - uid: 20075 + components: + - type: Transform + pos: -84.5,173.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 20070 + components: + - type: Transform + pos: -81.5,176.5 + parent: 2 + - uid: 20071 + components: + - type: Transform + pos: -77.5,176.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 4814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,60.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 1625 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 19092 + components: + - type: Transform + pos: -101.5,37.5 + parent: 2 + - uid: 25570 + components: + - type: Transform + pos: 11.5,173.5 + parent: 2 + - uid: 28343 + components: + - type: Transform + pos: 13.5,173.5 + parent: 2 + - uid: 32314 + components: + - type: Transform + pos: -71.5,149.5 + parent: 2 + - uid: 32315 + components: + - type: Transform + pos: -59.5,11.5 + parent: 2 + - uid: 32320 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 32375 + components: + - type: Transform + pos: 87.5,25.5 + parent: 2 + - uid: 32376 + components: + - type: Transform + pos: 89.5,25.5 + parent: 2 +- proto: SignBar + entities: + - uid: 1894 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 31450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,72.5 + parent: 2 + - uid: 38251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,59.5 + parent: 2 +- proto: SignBath + entities: + - uid: 9038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,96.5 + parent: 2 +- proto: SignBio + entities: + - uid: 31452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,156.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 19251 + components: + - type: Transform + pos: -81.5,153.5 + parent: 2 + - uid: 23252 + components: + - type: Transform + pos: 3.5,190.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 14391 + components: + - type: Transform + pos: -82.5,100.5 + parent: 2 + - uid: 31493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,102.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 1620 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 31472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - uid: 31473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 12126 + components: + - type: Transform + pos: -62.5,72.5 + parent: 2 + - uid: 12127 + components: + - type: Transform + pos: -56.5,72.5 + parent: 2 +- proto: SignChem + entities: + - uid: 13734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,191.5 + parent: 2 + - uid: 22826 + components: + - type: Transform + pos: -24.5,189.5 + parent: 2 + - uid: 23001 + components: + - type: Transform + pos: -22.5,189.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 23459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,198.5 + parent: 2 +- proto: SignConference + entities: + - uid: 37711 + components: + - type: Transform + pos: -34.5,103.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 23482 + components: + - type: Transform + pos: -22.5,202.5 + parent: 2 +- proto: SignDirectionalBar + entities: + - uid: 25826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,59.5 + parent: 2 + - uid: 31440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.482185,92.457794 + parent: 2 + - uid: 31441 + components: + - type: Transform + pos: -21.475113,88.485565 + parent: 2 + - uid: 31442 + components: + - type: Transform + pos: -21.490673,78.852264 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 13634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.544315,92.34421 + parent: 2 + - uid: 38468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,102.5 + parent: 2 +- proto: SignDirectionalBrig + entities: + - uid: 4038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,46.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,74.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: -34.5,80.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: 43.5,67.5 + parent: 2 + - uid: 27952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + - uid: 27965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - uid: 39462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,40.5 + parent: 2 + - uid: 39463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,40.5 + parent: 2 + - uid: 39464 + components: + - type: Transform + pos: 104.5,66.5 + parent: 2 + - uid: 39465 + components: + - type: Transform + pos: 112.5,66.5 + parent: 2 + - uid: 39466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 119.5,57.5 + parent: 2 + - uid: 39467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 119.5,49.5 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 39470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,92.5 + parent: 2 + - uid: 39472 + components: + - type: Transform + pos: -59.5,88.5 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 3504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,105.5 + parent: 2 + - uid: 31491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,200.5 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 31468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.546516,92.56604 + parent: 2 + - uid: 31469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5081,92.67451 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 3506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,33.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,74.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -46.5,80.5 + parent: 2 + - uid: 38424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,41.5 + parent: 2 + - uid: 38444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,49.5 + parent: 2 + - uid: 38446 + components: + - type: Transform + pos: -81.5,52.5 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 3704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,50.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,50.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,50.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,41.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.50172,80.26968 + parent: 2 + - uid: 31532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.50273,74.7162 + parent: 2 + - uid: 31533 + components: + - type: Transform + pos: -34.504406,88.29006 + parent: 2 + - uid: 31534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.53082,37.690735 + parent: 2 + - uid: 31535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.54093,37.734978 + parent: 2 +- proto: SignDirectionalFood + entities: + - uid: 31465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.49287,92.684166 + parent: 2 + - uid: 31466 + components: + - type: Transform + pos: -21.494486,87.82267 + parent: 2 + - uid: 31467 + components: + - type: Transform + pos: -21.494541,78.39329 + parent: 2 + - uid: 38253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,59.5 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 31438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.481594,92.687164 + parent: 2 + - uid: 31439 + components: + - type: Transform + pos: -21.465631,88.71186 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 31445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.48117,92.2387 + parent: 2 + - uid: 31446 + components: + - type: Transform + pos: -21.47358,88.268745 + parent: 2 + - uid: 31447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.496876,78.628624 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 10751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,82.5 + parent: 2 + - uid: 31526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.494884,92.46461 + parent: 2 + - uid: 31527 + components: + - type: Transform + pos: -21.488787,87.61441 + parent: 2 + - uid: 31528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.482487,79.168465 + parent: 2 + - uid: 31529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.488787,76.30786 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 31443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.548126,92.79969 + parent: 2 + - uid: 31444 + components: + - type: Transform + pos: -59.516987,88.74401 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 4873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,160.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -34.5,88.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,82.5 + parent: 2 + - uid: 37220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,170.5 + parent: 2 + - uid: 38462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,161.5 + parent: 2 + - uid: 38463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,167.5 + parent: 2 + - uid: 38464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,165.5 + parent: 2 + - uid: 38466 + components: + - type: Transform + pos: -28.5,212.5 + parent: 2 +- proto: SignDirectionalSalvage + entities: + - uid: 1547 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 38476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-15.5 + parent: 2 + - uid: 39174 + components: + - type: Transform + pos: -36.50723,1.2728882 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 7182 + components: + - type: Transform + pos: -46.5,88.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,82.5 + parent: 2 + - uid: 18635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,160.5 + parent: 2 + - uid: 37145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,179.5 + parent: 2 + - uid: 38477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,160.5 + parent: 2 + - uid: 38481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,151.5 + parent: 2 + - uid: 38483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,157.5 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 4336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,204.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: 82.5,37.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,32.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,149.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,184.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,1.5 + parent: 2 + - uid: 18049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,175.5 + parent: 2 + - uid: 31509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,150.5 + parent: 2 + - uid: 31510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,145.5 + parent: 2 + - uid: 31511 + components: + - type: Transform + pos: -98.5,166.5 + parent: 2 + - uid: 31512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-1.5 + parent: 2 + - uid: 34864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,212.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 683 + components: + - type: Transform + pos: 57.5,35.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 59.5,35.5 + parent: 2 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-6.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-10.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: -43.5,70.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + pos: -37.5,70.5 + parent: 2 + - uid: 36558 + components: + - type: Transform + pos: -46.50833,88.72705 + parent: 2 + - uid: 36559 + components: + - type: Transform + pos: -46.485836,82.28139 + parent: 2 + - uid: 36560 + components: + - type: Transform + pos: -46.485836,74.27142 + parent: 2 + - uid: 36561 + components: + - type: Transform + pos: -34.471264,74.29211 + parent: 2 + - uid: 36562 + components: + - type: Transform + pos: -34.508755,82.28164 + parent: 2 + - uid: 36563 + components: + - type: Transform + pos: -34.50126,88.71904 + parent: 2 + - uid: 38465 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 38470 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 38471 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 38473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 17816 + components: + - type: Transform + pos: -108.5,97.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + pos: -105.5,97.5 + parent: 2 + - uid: 17966 + components: + - type: Transform + pos: -111.5,64.5 + parent: 2 + - uid: 31503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,44.5 + parent: 2 + - uid: 31504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-16.5 + parent: 2 + - uid: 31505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,170.5 + parent: 2 + - uid: 31506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,177.5 + parent: 2 +- proto: SignDoors + entities: + - uid: 1229 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 29320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - uid: 43413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,16.5 + parent: 2 +- proto: SignEngine + entities: + - uid: 31463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,24.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-7.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,25.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 6547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 + - uid: 10538 + components: + - type: Transform + pos: -13.5,76.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + pos: -9.5,76.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: 75.5,37.5 + parent: 2 + - uid: 21413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,162.5 + parent: 2 + - uid: 37536 + components: + - type: Transform + pos: 0.5,168.5 + parent: 2 +- proto: SignFire + entities: + - uid: 14366 + components: + - type: Transform + pos: -71.5,105.5 + parent: 2 + - uid: 30074 + components: + - type: Transform + pos: -114.5,24.5 + parent: 2 +- proto: SignFlammable + entities: + - uid: 31542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,45.5 + parent: 2 + - uid: 31543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,61.5 + parent: 2 + - uid: 31544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,36.5 + parent: 2 + - uid: 31545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -114.5,29.5 + parent: 2 +- proto: SignFlammableMed + entities: + - uid: 18974 + components: + - type: Transform + pos: -71.5,150.5 + parent: 2 +- proto: SignHead + entities: + - uid: 2968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 78.5,67.5 + parent: 2 + - uid: 23332 + components: + - type: Transform + pos: -12.5,203.5 + parent: 2 + - uid: 31457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,80.5 + parent: 2 + - uid: 31458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,96.5 + parent: 2 + - uid: 31459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,52.5 + parent: 2 + - uid: 31460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,160.5 + parent: 2 + - uid: 31461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,161.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 13263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,70.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 12904 + components: + - type: Transform + pos: 64.5,47.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 31451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,84.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 22696 + components: + - type: Transform + pos: -10.5,184.5 + parent: 2 + - uid: 22697 + components: + - type: Transform + pos: -13.5,184.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 14367 + components: + - type: Transform + pos: -75.5,97.5 + parent: 2 + - uid: 23387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,206.5 + parent: 2 + - uid: 23388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,206.5 + parent: 2 +- proto: SignNews + entities: + - uid: 9165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,83.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 1542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 38108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 37842 +- proto: SignRadiationMed + entities: + - uid: 29685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,32.5 + parent: 2 + - uid: 31507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,23.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 22778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,190.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 22779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,190.5 + parent: 2 +- proto: SignRND + entities: + - uid: 20586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,161.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 20072 + components: + - type: Transform + pos: -74.5,173.5 + parent: 2 + - uid: 20073 + components: + - type: Transform + pos: -74.5,169.5 + parent: 2 +- proto: SignSecurearea + entities: + - uid: 4389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,59.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: 79.5,68.5 + parent: 2 + - uid: 22620 + components: + - type: Transform + pos: -6.5,176.5 + parent: 2 + - uid: 22626 + components: + - type: Transform + pos: -6.5,182.5 + parent: 2 +- proto: SignSecureMed + entities: + - uid: 28230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,149.5 + parent: 2 + - uid: 28231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,149.5 + parent: 2 +- proto: SignSecureMedRed + entities: + - uid: 17764 + components: + - type: Transform + pos: -74.5,156.5 + parent: 2 +- proto: SignSecureSmallRed + entities: + - uid: 31536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,52.5 + parent: 2 + - uid: 31537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,36.5 + parent: 2 + - uid: 31538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,175.5 + parent: 2 + - uid: 31539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-13.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,43.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,210.5 + parent: 2 + - uid: 27366 + components: + - type: Transform + pos: -17.5,163.5 + parent: 2 + - uid: 31500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,49.5 + parent: 2 + - uid: 31513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - uid: 31514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,59.5 + parent: 2 + - uid: 31515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,63.5 + parent: 2 + - uid: 31517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,207.5 + parent: 2 + - uid: 31518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,153.5 + parent: 2 + - uid: 31519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,163.5 + parent: 2 + - uid: 31520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,99.5 + parent: 2 + - uid: 31523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,35.5 + parent: 2 +- proto: SignShock + entities: + - uid: 1186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,41.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -130.5,37.5 + parent: 2 + - uid: 14393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-2.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + pos: -121.5,46.5 + parent: 2 + - uid: 31455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,149.5 + parent: 2 + - uid: 31456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,145.5 + parent: 2 + - uid: 34862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,212.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 7152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,40.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,70.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + pos: -78.5,101.5 + parent: 2 + - uid: 34648 + components: + - type: Transform + pos: -126.5,101.5 + parent: 2 + - uid: 35819 + components: + - type: Transform + pos: -21.5,170.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 24055 + components: + - type: Transform + pos: -127.5,107.5 + parent: 2 + - uid: 37946 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 37842 +- proto: SignSomethingOld2 + entities: + - uid: 23997 + components: + - type: Transform + pos: -133.5,110.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 1139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-13.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,44.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,37.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: -22.5,61.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,167.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + pos: -81.5,94.5 + parent: 2 + - uid: 15880 + components: + - type: Transform + pos: -49.5,59.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,154.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,166.5 + parent: 2 + - uid: 21203 + components: + - type: Transform + pos: -65.5,174.5 + parent: 2 + - uid: 31475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,101.5 + parent: 2 + - uid: 31479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,34.5 + parent: 2 + - uid: 31480 + components: + - type: Transform + pos: -110.5,27.5 + parent: 2 + - uid: 31481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,36.5 + parent: 2 + - uid: 31482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,1.5 + parent: 2 + - uid: 31483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-3.5 + parent: 2 + - uid: 31484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-2.5 + parent: 2 + - uid: 31485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 + - uid: 31486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-10.5 + parent: 2 + - uid: 31487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 2 + - uid: 31490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,62.5 + parent: 2 + - uid: 31497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,147.5 + parent: 2 + - uid: 31501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,190.5 + parent: 2 + - uid: 31502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,204.5 + parent: 2 + - uid: 34863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,217.5 + parent: 2 + - uid: 37221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,168.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 1316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,187.5 + parent: 2 +- proto: SignTheater + entities: + - uid: 9000 + components: + - type: Transform + pos: -32.5,65.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 23427 + components: + - type: Transform + pos: -2.5,202.5 + parent: 2 + - uid: 23428 + components: + - type: Transform + pos: -2.5,205.5 + parent: 2 + - uid: 31508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,44.5 + parent: 2 + - uid: 34632 + components: + - type: Transform + pos: -115.5,97.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 23253 + components: + - type: Transform + pos: 3.5,193.5 + parent: 2 +- proto: SilverOre1 + entities: + - uid: 1486 + components: + - type: Transform + pos: -57.501976,-12.509216 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: -43.368702,3.3432157 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -42.288895,3.5456145 + parent: 2 + - uid: 12928 + components: + - type: Transform + pos: -48.385197,94.56774 + parent: 2 +- proto: SingularityGenerator + entities: + - uid: 9164 + components: + - type: Transform + pos: -144.5,26.5 + parent: 2 +- proto: Sink + entities: + - uid: 8525 + components: + - type: Transform + pos: 56.5,26.5 + parent: 2 + - uid: 38053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,38.5 + parent: 2 + - uid: 39422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,169.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 10771 + components: + - type: Transform + pos: -0.5,82.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,65.5 + parent: 2 + - uid: 11759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,60.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,57.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,67.5 + parent: 2 + - uid: 22844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,184.5 + parent: 2 + - uid: 23037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,67.5 + parent: 2 + - uid: 23249 + components: + - type: Transform + pos: 5.5,193.5 + parent: 2 + - uid: 31561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,61.5 + parent: 2 + - uid: 34141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,61.5 + parent: 2 + - uid: 35794 + components: + - type: Transform + pos: -1.5,63.5 + parent: 2 + - uid: 35946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,64.5 + parent: 2 + - uid: 36487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,193.5 + parent: 2 + - uid: 39271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,110.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 15547 + components: + - type: Transform + pos: -37.5,60.5 + parent: 2 + - uid: 22724 + components: + - type: Transform + pos: 5.5,186.5 + parent: 2 + - uid: 22770 + components: + - type: Transform + pos: -17.5,194.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 5783 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + pos: -128.5,53.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: -126.5,54.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + pos: 66.5,21.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: -47.5,66.5 + parent: 2 + - uid: 14968 + components: + - type: Transform + pos: -46.5,66.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + pos: -48.5,105.5 + parent: 2 + - uid: 28429 + components: + - type: Transform + pos: -125.5,59.5 + parent: 2 + - uid: 33314 + components: + - type: Transform + pos: -1.5,215.5 + parent: 2 + - uid: 33315 + components: + - type: Transform + pos: -0.5,215.5 + parent: 2 + - uid: 35388 + components: + - type: Transform + pos: -105.5,147.5 + parent: 2 + - uid: 35389 + components: + - type: Transform + pos: -105.5,149.5 + parent: 2 + - uid: 37552 + components: + - type: Transform + pos: -126.5,53.5 + parent: 2 + - uid: 43268 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 37842 +- proto: SMESMachineCircuitboard + entities: + - uid: 17762 + components: + - type: Transform + pos: -107.44263,34.793495 + parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 7434 + components: + - type: Transform + pos: 51.670654,42.548653 + parent: 2 +- proto: SmokingPipeFilledTobacco + entities: + - uid: 10702 + components: + - type: Transform + pos: -5.6069064,86.39575 + parent: 2 +- proto: Soap + entities: + - uid: 38382 + components: + - type: Transform + parent: 38381 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SodaDispenser + entities: + - uid: 11109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,61.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 607 + components: + - type: Transform + pos: 4.5,227.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 3.5,227.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 5.5,225.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 6.5,225.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: 6.5,227.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 4.5,233.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: 5.5,229.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: 6.5,231.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 6.5,233.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 6.5,223.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 4.5,223.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: -4.5,225.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: -3.5,225.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -1.5,229.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -3.5,229.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: -4.5,229.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: -4.5,227.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: -5.5,227.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: -77.5,-4.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: -79.5,-12.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -75.5,-10.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -81.5,-10.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: -81.5,-11.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -77.5,-12.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -79.5,-6.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -75.5,-5.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -79.5,-10.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: -77.5,-5.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -1.5,223.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -2.5,231.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: -3.5,231.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: -81.5,-12.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: -81.5,-4.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: -1.5,231.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -4.5,231.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: -2.5,223.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: -5.5,231.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -2.5,229.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: -3.5,223.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: -5.5,223.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: -5.5,225.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 2.5,231.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 3.5,231.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 6.5,229.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: -5.5,233.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: -5.5,229.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: -4.5,233.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: -1.5,233.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: -3.5,233.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: -2.5,233.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: 5.5,231.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: 4.5,231.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 3.5,225.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: 2.5,225.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 5.5,233.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 76.5,9.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 72.5,7.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: 74.5,9.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + pos: 75.5,11.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 76.5,11.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: 66.5,11.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: 72.5,13.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: 68.5,7.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + pos: 5.5,227.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + pos: -122.5,142.5 + parent: 2 + - uid: 17953 + components: + - type: Transform + pos: 3.5,223.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + pos: -126.5,151.5 + parent: 2 + - uid: 17992 + components: + - type: Transform + pos: 2.5,223.5 + parent: 2 + - uid: 18006 + components: + - type: Transform + pos: -128.5,153.5 + parent: 2 + - uid: 18033 + components: + - type: Transform + pos: -126.5,150.5 + parent: 2 + - uid: 18041 + components: + - type: Transform + pos: -126.5,152.5 + parent: 2 + - uid: 18065 + components: + - type: Transform + pos: -128.5,154.5 + parent: 2 + - uid: 18232 + components: + - type: Transform + pos: -128.5,152.5 + parent: 2 + - uid: 18235 + components: + - type: Transform + pos: -79.5,-5.5 + parent: 2 + - uid: 18236 + components: + - type: Transform + pos: -77.5,-6.5 + parent: 2 + - uid: 18238 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 18628 + components: + - type: Transform + pos: -1.5,225.5 + parent: 2 + - uid: 18643 + components: + - type: Transform + pos: 6.5,229.5 + parent: 2 + - uid: 18751 + components: + - type: Transform + pos: -128.5,151.5 + parent: 2 + - uid: 19125 + components: + - type: Transform + pos: 2.5,229.5 + parent: 2 + - uid: 23873 + components: + - type: Transform + pos: -79.5,-11.5 + parent: 2 + - uid: 24301 + components: + - type: Transform + pos: -81.5,-5.5 + parent: 2 + - uid: 24384 + components: + - type: Transform + pos: 2.5,227.5 + parent: 2 + - uid: 24781 + components: + - type: Transform + pos: -4.5,237.5 + parent: 2 + - uid: 24784 + components: + - type: Transform + pos: -3.5,237.5 + parent: 2 + - uid: 24785 + components: + - type: Transform + pos: -1.5,237.5 + parent: 2 + - uid: 24786 + components: + - type: Transform + pos: -4.5,235.5 + parent: 2 + - uid: 24787 + components: + - type: Transform + pos: 2.5,237.5 + parent: 2 + - uid: 24788 + components: + - type: Transform + pos: 3.5,237.5 + parent: 2 + - uid: 25715 + components: + - type: Transform + pos: 5.5,237.5 + parent: 2 + - uid: 25729 + components: + - type: Transform + pos: 4.5,237.5 + parent: 2 + - uid: 26751 + components: + - type: Transform + pos: 6.5,235.5 + parent: 2 + - uid: 26771 + components: + - type: Transform + pos: 6.5,237.5 + parent: 2 + - uid: 26772 + components: + - type: Transform + pos: -5.5,235.5 + parent: 2 + - uid: 26773 + components: + - type: Transform + pos: -3.5,235.5 + parent: 2 + - uid: 26774 + components: + - type: Transform + pos: -5.5,237.5 + parent: 2 + - uid: 26775 + components: + - type: Transform + pos: 2.5,233.5 + parent: 2 + - uid: 26776 + components: + - type: Transform + pos: 4.5,235.5 + parent: 2 + - uid: 26777 + components: + - type: Transform + pos: 3.5,235.5 + parent: 2 + - uid: 26778 + components: + - type: Transform + pos: 2.5,235.5 + parent: 2 + - uid: 26779 + components: + - type: Transform + pos: -1.5,235.5 + parent: 2 + - uid: 26781 + components: + - type: Transform + pos: -2.5,235.5 + parent: 2 + - uid: 29416 + components: + - type: Transform + pos: -1.5,227.5 + parent: 2 + - uid: 29417 + components: + - type: Transform + pos: -2.5,227.5 + parent: 2 + - uid: 35055 + components: + - type: Transform + pos: -126.5,153.5 + parent: 2 + - uid: 35056 + components: + - type: Transform + pos: -126.5,154.5 + parent: 2 + - uid: 35057 + components: + - type: Transform + pos: -124.5,154.5 + parent: 2 + - uid: 35058 + components: + - type: Transform + pos: -124.5,153.5 + parent: 2 + - uid: 35059 + components: + - type: Transform + pos: -124.5,152.5 + parent: 2 + - uid: 35060 + components: + - type: Transform + pos: -124.5,151.5 + parent: 2 + - uid: 35061 + components: + - type: Transform + pos: -124.5,150.5 + parent: 2 + - uid: 35062 + components: + - type: Transform + pos: -122.5,154.5 + parent: 2 + - uid: 35063 + components: + - type: Transform + pos: -122.5,153.5 + parent: 2 + - uid: 35064 + components: + - type: Transform + pos: -122.5,152.5 + parent: 2 + - uid: 35066 + components: + - type: Transform + pos: -122.5,150.5 + parent: 2 + - uid: 35067 + components: + - type: Transform + pos: -120.5,154.5 + parent: 2 + - uid: 35068 + components: + - type: Transform + pos: -120.5,153.5 + parent: 2 + - uid: 35069 + components: + - type: Transform + pos: -120.5,152.5 + parent: 2 + - uid: 35070 + components: + - type: Transform + pos: -120.5,151.5 + parent: 2 + - uid: 35071 + components: + - type: Transform + pos: -120.5,150.5 + parent: 2 + - uid: 35072 + components: + - type: Transform + pos: -118.5,154.5 + parent: 2 + - uid: 35073 + components: + - type: Transform + pos: -118.5,153.5 + parent: 2 + - uid: 35074 + components: + - type: Transform + pos: -118.5,152.5 + parent: 2 + - uid: 35075 + components: + - type: Transform + pos: -118.5,151.5 + parent: 2 + - uid: 35076 + components: + - type: Transform + pos: -118.5,150.5 + parent: 2 + - uid: 35077 + components: + - type: Transform + pos: -116.5,154.5 + parent: 2 + - uid: 35078 + components: + - type: Transform + pos: -116.5,153.5 + parent: 2 + - uid: 35079 + components: + - type: Transform + pos: -116.5,152.5 + parent: 2 + - uid: 35080 + components: + - type: Transform + pos: -116.5,151.5 + parent: 2 + - uid: 35081 + components: + - type: Transform + pos: -116.5,150.5 + parent: 2 + - uid: 35082 + components: + - type: Transform + pos: -114.5,154.5 + parent: 2 + - uid: 35083 + components: + - type: Transform + pos: -114.5,153.5 + parent: 2 + - uid: 35084 + components: + - type: Transform + pos: -114.5,152.5 + parent: 2 + - uid: 35085 + components: + - type: Transform + pos: -114.5,151.5 + parent: 2 + - uid: 35086 + components: + - type: Transform + pos: -114.5,150.5 + parent: 2 + - uid: 35087 + components: + - type: Transform + pos: -116.5,146.5 + parent: 2 + - uid: 35088 + components: + - type: Transform + pos: -116.5,145.5 + parent: 2 + - uid: 35089 + components: + - type: Transform + pos: -116.5,144.5 + parent: 2 + - uid: 35090 + components: + - type: Transform + pos: -116.5,143.5 + parent: 2 + - uid: 35091 + components: + - type: Transform + pos: -116.5,142.5 + parent: 2 + - uid: 35092 + components: + - type: Transform + pos: -114.5,146.5 + parent: 2 + - uid: 35093 + components: + - type: Transform + pos: -114.5,145.5 + parent: 2 + - uid: 35094 + components: + - type: Transform + pos: -114.5,144.5 + parent: 2 + - uid: 35095 + components: + - type: Transform + pos: -114.5,143.5 + parent: 2 + - uid: 35096 + components: + - type: Transform + pos: -114.5,142.5 + parent: 2 + - uid: 35097 + components: + - type: Transform + pos: -118.5,146.5 + parent: 2 + - uid: 35098 + components: + - type: Transform + pos: -118.5,145.5 + parent: 2 + - uid: 35100 + components: + - type: Transform + pos: -118.5,143.5 + parent: 2 + - uid: 35101 + components: + - type: Transform + pos: -118.5,142.5 + parent: 2 + - uid: 35102 + components: + - type: Transform + pos: -120.5,146.5 + parent: 2 + - uid: 35103 + components: + - type: Transform + pos: -120.5,145.5 + parent: 2 + - uid: 35104 + components: + - type: Transform + pos: -120.5,144.5 + parent: 2 + - uid: 35105 + components: + - type: Transform + pos: -120.5,143.5 + parent: 2 + - uid: 35106 + components: + - type: Transform + pos: -120.5,142.5 + parent: 2 + - uid: 35107 + components: + - type: Transform + pos: -122.5,143.5 + parent: 2 + - uid: 35110 + components: + - type: Transform + pos: -122.5,146.5 + parent: 2 + - uid: 35111 + components: + - type: Transform + pos: -126.5,142.5 + parent: 2 + - uid: 35112 + components: + - type: Transform + pos: -124.5,142.5 + parent: 2 + - uid: 35113 + components: + - type: Transform + pos: -124.5,143.5 + parent: 2 + - uid: 35114 + components: + - type: Transform + pos: -124.5,144.5 + parent: 2 + - uid: 35115 + components: + - type: Transform + pos: -124.5,145.5 + parent: 2 + - uid: 35116 + components: + - type: Transform + pos: -124.5,146.5 + parent: 2 + - uid: 35117 + components: + - type: Transform + pos: -126.5,143.5 + parent: 2 + - uid: 35118 + components: + - type: Transform + pos: -126.5,144.5 + parent: 2 + - uid: 35119 + components: + - type: Transform + pos: -126.5,145.5 + parent: 2 + - uid: 35120 + components: + - type: Transform + pos: -126.5,146.5 + parent: 2 + - uid: 35121 + components: + - type: Transform + pos: -128.5,142.5 + parent: 2 + - uid: 35122 + components: + - type: Transform + pos: -128.5,143.5 + parent: 2 + - uid: 35123 + components: + - type: Transform + pos: -128.5,144.5 + parent: 2 + - uid: 35124 + components: + - type: Transform + pos: -128.5,145.5 + parent: 2 + - uid: 35125 + components: + - type: Transform + pos: -128.5,146.5 + parent: 2 +- proto: SolarPanelBroken + entities: + - uid: 572 + components: + - type: Transform + pos: -2.5,237.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 5.5,223.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-6.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-6.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-10.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-11.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 3.5,229.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: 4.5,225.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 3.5,233.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: 66.5,13.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: 73.5,7.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: 67.5,9.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + pos: -3.5,227.5 + parent: 2 + - uid: 18435 + components: + - type: Transform + pos: -128.5,150.5 + parent: 2 + - uid: 18631 + components: + - type: Transform + pos: 4.5,229.5 + parent: 2 + - uid: 24748 + components: + - type: Transform + pos: -2.5,225.5 + parent: 2 + - uid: 24783 + components: + - type: Transform + pos: -4.5,223.5 + parent: 2 + - uid: 26780 + components: + - type: Transform + pos: 5.5,235.5 + parent: 2 + - uid: 35065 + components: + - type: Transform + pos: -122.5,151.5 + parent: 2 + - uid: 35099 + components: + - type: Transform + pos: -118.5,144.5 + parent: 2 + - uid: 35108 + components: + - type: Transform + pos: -122.5,144.5 + parent: 2 + - uid: 35109 + components: + - type: Transform + pos: -122.5,145.5 + parent: 2 + - uid: 35442 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 1304 + components: + - type: Transform + pos: -84.5,-8.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 24782 + components: + - type: Transform + pos: 0.5,240.5 + parent: 2 + - uid: 35127 + components: + - type: Transform + pos: -131.5,148.5 + parent: 2 +- proto: SolidSecretDoor + entities: + - uid: 11591 + components: + - type: Transform + pos: -36.5,56.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + pos: -40.5,61.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + pos: 80.5,23.5 + parent: 2 +- proto: SpaceCash10 + entities: + - uid: 9039 + components: + - type: Transform + pos: -29.39834,105.56616 + parent: 2 + - uid: 11411 + components: + - type: Transform + pos: -28.624065,-13.148628 + parent: 2 + - uid: 37240 + components: + - type: Transform + pos: -37.381187,172.81274 + parent: 2 + - uid: 37241 + components: + - type: Transform + pos: -38.11231,172.55412 + parent: 2 + - uid: 38033 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38034 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 38040 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 39184 + components: + - type: Transform + pos: -77.97112,91.60706 + parent: 2 + - uid: 42463 + components: + - type: Transform + pos: -65.49792,113.6684 + parent: 2 +- proto: SpaceCash500 + entities: + - uid: 1591 + components: + - type: Transform + parent: 1589 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpawnMobAlexander + entities: + - uid: 31592 + components: + - type: Transform + pos: -14.5,67.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 13355 + components: + - type: Transform + pos: -0.5,62.5 + parent: 2 +- proto: SpawnMobBee + entities: + - uid: 5433 + components: + - type: Transform + pos: -96.5,148.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: -98.5,149.5 + parent: 2 + - uid: 36781 + components: + - type: Transform + pos: -98.5,150.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 1369 + components: + - type: Transform + pos: -65.5,103.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: -64.5,103.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: -63.5,103.5 + parent: 2 + - uid: 17356 + components: + - type: Transform + pos: -75.5,168.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + pos: -81.5,167.5 + parent: 2 + - uid: 17451 + components: + - type: Transform + pos: -82.5,175.5 + parent: 2 + - uid: 18585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,164.5 + parent: 2 + - uid: 18586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,169.5 + parent: 2 +- proto: SpawnMobCatBingus + entities: + - uid: 31597 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 +- proto: SpawnMobCatGeneric + entities: + - uid: 12656 + components: + - type: Transform + pos: -20.5,205.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 10455 + components: + - type: Transform + pos: -19.5,84.5 + parent: 2 +- proto: SpawnMobCow + entities: + - uid: 13247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,63.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 1598 + components: + - type: Transform + pos: -106.5,25.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + pos: -102.5,36.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 36199 + components: + - type: Transform + pos: -35.5,97.5 + parent: 2 +- proto: SpawnMobLizard + entities: + - uid: 14059 + components: + - type: Transform + pos: -66.5,101.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 29706 + components: + - type: Transform + pos: 69.5,54.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 14766 + components: + - type: Transform + pos: -8.5,192.5 + parent: 2 +- proto: SpawnMobMonkey + entities: + - uid: 17601 + components: + - type: Transform + pos: -97.5,152.5 + parent: 2 + - uid: 18189 + components: + - type: Transform + pos: -87.5,151.5 + parent: 2 + - uid: 21341 + components: + - type: Transform + pos: -60.5,169.5 + parent: 2 + - uid: 21357 + components: + - type: Transform + pos: -63.5,161.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 10971 + components: + - type: Transform + pos: -25.5,63.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 1030 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: 3.5,71.5 + parent: 2 + - uid: 13382 + components: + - type: Transform + pos: -17.5,75.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + pos: -109.5,96.5 + parent: 2 + - uid: 27803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,145.5 + parent: 2 + - uid: 31594 + components: + - type: Transform + pos: -26.5,73.5 + parent: 2 + - uid: 32464 + components: + - type: Transform + pos: -49.5,70.5 + parent: 2 + - uid: 36205 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 +- proto: SpawnMobParrot + entities: + - uid: 2051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,151.5 + parent: 2 +- proto: SpawnMobPenguin + entities: + - uid: 24804 + components: + - type: Transform + pos: -7.5,197.5 + parent: 2 +- proto: SpawnMobPossumMorty + entities: + - uid: 36662 + components: + - type: Transform + pos: -26.5,202.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 4656 + components: + - type: Transform + pos: 71.5,67.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 36736 + components: + - type: Transform + pos: -63.5,85.5 + parent: 2 +- proto: SpawnMobSlug + entities: + - uid: 2176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,149.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 21036 + components: + - type: Transform + pos: -88.5,178.5 + parent: 2 +- proto: SpawnMobSpaceSpider + entities: + - uid: 3001 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 30752 + components: + - type: Transform + pos: -20.5,193.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 25558 + components: + - type: Transform + pos: -105.5,36.5 + parent: 2 + - uid: 35532 + components: + - type: Transform + pos: -104.5,36.5 + parent: 2 + - uid: 35536 + components: + - type: Transform + pos: -103.5,36.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 5110 + components: + - type: Transform + pos: -32.5,59.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 20903 + components: + - type: Transform + pos: -68.5,174.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 10852 + components: + - type: Transform + pos: 0.5,67.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + pos: -10.5,66.5 + parent: 2 + - uid: 16692 + components: + - type: Transform + pos: -2.5,66.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 24224 + components: + - type: Transform + pos: -31.5,97.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 1562 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 25685 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 26005 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 15476 + components: + - type: Transform + pos: -53.5,63.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 13190 + components: + - type: Transform + pos: -16.5,66.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + pos: -14.5,69.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 10952 + components: + - type: Transform + pos: -19.5,191.5 + parent: 2 + - uid: 22422 + components: + - type: Transform + pos: -22.5,193.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 32469 + components: + - type: Transform + pos: -28.5,98.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 15027 + components: + - type: Transform + pos: -25.5,101.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 9035 + components: + - type: Transform + pos: -28.5,99.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: -70.5,91.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 18692 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 13632 + components: + - type: Transform + pos: -25.5,99.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 13637 + components: + - type: Transform + pos: -28.5,100.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 10765 + components: + - type: Transform + pos: -1.5,81.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 14007 + components: + - type: Transform + pos: 110.5,44.5 + parent: 2 + - uid: 38561 + components: + - type: Transform + pos: 107.5,44.5 + parent: 2 + - uid: 38562 + components: + - type: Transform + pos: 106.5,45.5 + parent: 2 + - uid: 38563 + components: + - type: Transform + pos: 104.5,45.5 + parent: 2 + - uid: 38564 + components: + - type: Transform + pos: 111.5,45.5 + parent: 2 + - uid: 38565 + components: + - type: Transform + pos: 113.5,45.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 14737 + components: + - type: Transform + pos: -75.5,74.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 14543 + components: + - type: Transform + pos: -69.5,82.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 22889 + components: + - type: Transform + pos: -7.5,199.5 + parent: 2 + - uid: 26488 + components: + - type: Transform + pos: -5.5,196.5 + parent: 2 + - uid: 26489 + components: + - type: Transform + pos: 4.5,183.5 + parent: 2 + - uid: 26491 + components: + - type: Transform + pos: -13.5,191.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 22967 + components: + - type: Transform + pos: -5.5,198.5 + parent: 2 + - uid: 22968 + components: + - type: Transform + pos: 0.5,204.5 + parent: 2 + - uid: 22969 + components: + - type: Transform + pos: -15.5,191.5 + parent: 2 + - uid: 23048 + components: + - type: Transform + pos: -6.5,192.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 14088 + components: + - type: Transform + pos: -59.5,98.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 4153 + components: + - type: Transform + pos: -33.5,66.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + pos: -59.5,106.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 19625 + components: + - type: Transform + pos: -40.5,90.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 25378 + components: + - type: Transform + pos: -3.5,171.5 + parent: 2 + - uid: 25379 + components: + - type: Transform + pos: -2.5,170.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 14092 + components: + - type: Transform + pos: -72.5,99.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: -60.5,102.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + pos: -58.5,94.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + pos: -64.5,100.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: -65.5,101.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: -66.5,100.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 13169 + components: + - type: Transform + pos: -20.5,179.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 16578 + components: + - type: Transform + pos: -28.5,101.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 10687 + components: + - type: Transform + pos: -0.5,85.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 21014 + components: + - type: Transform + pos: -90.5,164.5 + parent: 2 + - uid: 21042 + components: + - type: Transform + pos: -84.5,163.5 + parent: 2 + - uid: 23229 + components: + - type: Transform + pos: -69.5,155.5 + parent: 2 + - uid: 25438 + components: + - type: Transform + pos: -71.5,176.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 13630 + components: + - type: Transform + pos: -25.5,100.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 2091 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 14713 + components: + - type: Transform + pos: -72.5,155.5 + parent: 2 + - uid: 21048 + components: + - type: Transform + pos: -79.5,179.5 + parent: 2 + - uid: 21069 + components: + - type: Transform + pos: -71.5,169.5 + parent: 2 + - uid: 39430 + components: + - type: Transform + pos: -69.5,160.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 4566 + components: + - type: Transform + pos: -92.5,35.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + pos: 78.5,62.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + pos: 60.5,65.5 + parent: 2 + - uid: 26386 + components: + - type: Transform + pos: 58.5,67.5 + parent: 2 + - uid: 26481 + components: + - type: Transform + pos: 69.5,58.5 + parent: 2 + - uid: 26483 + components: + - type: Transform + pos: 75.5,66.5 + parent: 2 + - uid: 26484 + components: + - type: Transform + pos: 68.5,68.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 3425 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 25831 + components: + - type: Transform + pos: 72.5,35.5 + parent: 2 + - uid: 26003 + components: + - type: Transform + pos: 72.5,33.5 + parent: 2 + - uid: 26467 + components: + - type: Transform + pos: 71.5,43.5 + parent: 2 + - uid: 26469 + components: + - type: Transform + pos: 72.5,67.5 + parent: 2 + - uid: 26470 + components: + - type: Transform + pos: 67.5,66.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 13194 + components: + - type: Transform + pos: -18.5,70.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + pos: -27.5,63.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + pos: -24.5,62.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + pos: -15.5,64.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 9344 + components: + - type: Transform + pos: -99.5,49.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + pos: -92.5,46.5 + parent: 2 + - uid: 31799 + components: + - type: Transform + pos: -114.5,47.5 + parent: 2 + - uid: 31802 + components: + - type: Transform + pos: -96.5,41.5 + parent: 2 + - uid: 36376 + components: + - type: Transform + pos: -114.5,45.5 + parent: 2 + - uid: 36380 + components: + - type: Transform + pos: -93.5,47.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 18177 + components: + - type: Transform + pos: -88.5,43.5 + parent: 2 + - uid: 26006 + components: + - type: Transform + pos: -91.5,39.5 + parent: 2 + - uid: 36388 + components: + - type: Transform + pos: -113.5,42.5 + parent: 2 + - uid: 36389 + components: + - type: Transform + pos: -103.5,48.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 29707 + components: + - type: Transform + pos: 71.5,51.5 + parent: 2 +- proto: SpawnPointZookeeper + entities: + - uid: 14180 + components: + - type: Transform + pos: -64.5,66.5 + parent: 2 +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 1253 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 +- proto: SpeedLoaderMagnum + entities: + - uid: 3542 + components: + - type: Transform + pos: 0.5574074,76.50379 + parent: 2 +- proto: SpeedLoaderMagnumPractice + entities: + - uid: 4830 + components: + - type: Transform + pos: 51.658813,56.551514 + parent: 2 +- proto: SpiderWeb + entities: + - uid: 3400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,44.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,43.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: 80.5,43.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: 57.5,50.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 15382 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 21601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 2 + - uid: 25404 + components: + - type: Transform + pos: 8.5,73.5 + parent: 2 + - uid: 25439 + components: + - type: Transform + pos: 5.5,76.5 + parent: 2 + - uid: 28352 + components: + - type: Transform + pos: 51.5,45.5 + parent: 2 + - uid: 33706 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 + - uid: 33708 + components: + - type: Transform + pos: 8.5,74.5 + parent: 2 + - uid: 33712 + components: + - type: Transform + pos: 7.5,73.5 + parent: 2 + - uid: 36797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,76.5 + parent: 2 + - uid: 36798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,74.5 + parent: 2 + - uid: 36799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,76.5 + parent: 2 + - uid: 39323 + components: + - type: Transform + pos: 79.5,44.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 38383 + components: + - type: Transform + parent: 38381 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SS13Memorial + entities: + - uid: 4581 + components: + - type: Transform + pos: 71.5,60.5 + parent: 2 + - uid: 22644 + components: + - type: MetaData + desc: 'Somewhere around here: Ed, Arcanis, Jojo Cat, Jeb, Zarxis, Xomak404, NikaVich' + name: monument to the architects of the station + - type: Transform + pos: -0.5,179.5 + parent: 2 +- proto: Stairs + entities: + - uid: 39147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 37842 + - uid: 43457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,64.5 + parent: 2 + - uid: 43458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,64.5 + parent: 2 + - uid: 43459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,64.5 + parent: 2 + - uid: 43460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,64.5 + parent: 2 + - uid: 43461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,64.5 + parent: 2 + - uid: 43462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,64.5 + parent: 2 + - uid: 43463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,64.5 + parent: 2 + - uid: 43467 + components: + - type: Transform + pos: -40.5,105.5 + parent: 2 + - uid: 43468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,53.5 + parent: 2 + - uid: 43469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,52.5 + parent: 2 + - uid: 43470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,51.5 + parent: 2 + - uid: 43471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,50.5 + parent: 2 + - uid: 43472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,49.5 + parent: 2 + - uid: 43473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,48.5 + parent: 2 + - uid: 43474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,47.5 + parent: 2 + - uid: 43475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,54.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 5735 + components: + - type: Transform + pos: -5.5,189.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + pos: -5.5,188.5 + parent: 2 + - uid: 31011 + components: + - type: Transform + pos: 3.5,0.5 + parent: 30902 + - uid: 31012 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 30902 +- proto: StationAiBrain + entities: + - uid: 7920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.642565,182.4048 + parent: 2 + - type: MindContainer + - type: MobMover + - type: MovementSpeedModifier + - type: Emoting + missingComponents: + - ActionGrant + - UserInterface + - IntrinsicRadioReceiver + - IntrinsicRadioTransmitter + - ActiveRadio +- proto: StationAiUploadCircuitboard + entities: + - uid: 8694 + components: + - type: Transform + pos: -107.39902,30.598766 + parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 7756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,130.5 + parent: 2 +- proto: StationAnchor + entities: + - uid: 1649 + components: + - type: Transform + pos: -84.5,72.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: 75.5,19.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 21.5,172.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 2729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.234913,129.47021 + parent: 2 +- proto: StationMap + entities: + - uid: 6986 + components: + - type: Transform + pos: -79.5,172.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 36533 + components: + - type: Transform + pos: -62.5,92.5 + parent: 2 + - uid: 36551 + components: + - type: Transform + pos: -65.5,154.5 + parent: 2 + - uid: 36552 + components: + - type: Transform + pos: -10.5,186.5 + parent: 2 + - uid: 36553 + components: + - type: Transform + pos: -95.5,39.5 + parent: 2 + - uid: 36554 + components: + - type: Transform + pos: 74.5,41.5 + parent: 2 + - uid: 36710 + components: + - type: Transform + pos: -119.5,51.5 + parent: 2 + - uid: 39173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 2 +- proto: StationMapAssembly + entities: + - uid: 38421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,19.5 + parent: 2 +- proto: StationMapBroken + entities: + - uid: 39507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,149.5 + parent: 2 +- proto: StatueBananiumClown + entities: + - uid: 25466 + components: + - type: Transform + pos: 8.5,75.5 + parent: 2 +- proto: StatueVenusBlue + entities: + - uid: 13718 + components: + - type: Transform + pos: -43.5,94.5 + parent: 2 +- proto: StatueVenusRed + entities: + - uid: 13719 + components: + - type: Transform + pos: -37.5,94.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-3.5 + parent: 2 + - uid: 709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,94.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,95.5 + parent: 2 + - uid: 10598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,97.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,98.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,100.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,101.5 + parent: 2 + - uid: 11483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,155.5 + parent: 2 + - uid: 11484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,160.5 + parent: 2 + - uid: 11485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,155.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 113.5,45.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 111.5,45.5 + parent: 2 + - uid: 11678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 106.5,45.5 + parent: 2 + - uid: 11679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,45.5 + parent: 2 + - uid: 11699 + components: + - type: Transform + pos: 109.5,59.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,153.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,153.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,78.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,86.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,162.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 103.5,45.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,78.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,78.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,39.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,39.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 107.5,59.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,83.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,79.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,77.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,77.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,83.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,84.5 + parent: 2 + - uid: 14712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,151.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,151.5 + parent: 2 + - uid: 20175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,85.5 + parent: 2 + - uid: 21044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,79.5 + parent: 2 + - uid: 22895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,160.5 + parent: 2 + - uid: 23224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,162.5 + parent: 2 + - uid: 25692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,39.5 + parent: 2 + - uid: 25815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,84.5 + parent: 2 + - uid: 25816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,85.5 + parent: 2 + - uid: 25828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,199.5 + parent: 2 + - uid: 25829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,199.5 + parent: 2 + - uid: 26013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,87.5 + parent: 2 + - uid: 26015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 26471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 109.5,61.5 + parent: 2 + - uid: 32084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,43.5 + parent: 2 + - uid: 37090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.5,61.5 + parent: 2 + - uid: 37117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 112.5,61.5 + parent: 2 + - uid: 37130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 2 + - uid: 37219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 104.5,61.5 + parent: 2 + - uid: 38274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,79.5 + parent: 2 + - uid: 38529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,38.5 + parent: 2 + - uid: 38580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,38.5 + parent: 2 + - uid: 39301 + components: + - type: Transform + pos: 105.5,49.5 + parent: 2 + - uid: 39314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,38.5 + parent: 2 + - uid: 39454 + components: + - type: Transform + pos: -23.5,94.5 + parent: 2 + - uid: 39511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,38.5 + parent: 2 +- proto: SteelOre1 + entities: + - uid: 2975 + components: + - type: Transform + pos: -132.51938,22.593283 + parent: 2 + - uid: 27311 + components: + - type: Transform + pos: -132.72183,22.357151 + parent: 2 + - uid: 29414 + components: + - type: Transform + pos: -133.3967,29.306177 + parent: 2 + - uid: 29432 + components: + - type: Transform + pos: -132.28317,30.531815 + parent: 2 + - uid: 29644 + components: + - type: Transform + pos: -131.68375,30.431812 + parent: 2 + - uid: 29653 + components: + - type: Transform + pos: -131.46207,30.554302 + parent: 2 + - uid: 29657 + components: + - type: Transform + pos: -133.55417,25.89913 + parent: 2 + - uid: 30605 + components: + - type: Transform + pos: -132.41815,22.334661 + parent: 2 + - uid: 30606 + components: + - type: Transform + pos: -131.7995,30.610525 + parent: 2 +- proto: Stool + entities: + - uid: 13016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,71.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 5328 + components: + - type: Transform + pos: -28.5,65.5 + parent: 2 + - uid: 11023 + components: + - type: Transform + pos: -26.5,65.5 + parent: 2 + - uid: 11058 + components: + - type: Transform + pos: -27.5,65.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: -25.5,65.5 + parent: 2 + - uid: 38264 + components: + - type: Transform + pos: -9.5,59.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 5827 + components: + - type: Transform + pos: -74.5,149.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: 15.5,175.5 + parent: 2 + - uid: 29693 + components: + - type: Transform + pos: -91.5,152.5 + parent: 2 + - uid: 29922 + components: + - type: Transform + pos: -94.5,147.5 + parent: 2 + - uid: 35574 + components: + - type: Transform + pos: -73.5,149.5 + parent: 2 +- proto: StrangePill + entities: + - uid: 22075 + components: + - type: Transform + pos: -47.427376,64.59432 + parent: 2 + - uid: 22076 + components: + - type: Transform + pos: -47.517357,64.45939 + parent: 2 + - uid: 22109 + components: + - type: Transform + pos: -47.32614,64.54935 + parent: 2 +- proto: Stunbaton + entities: + - uid: 15540 + components: + - type: Transform + parent: 6467 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationBasic + entities: + - uid: 4573 + components: + - type: Transform + pos: -44.5,68.5 + parent: 2 + - uid: 7164 + components: + - type: MetaData + name: AME Substation + - type: Transform + pos: -128.5,56.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: -55.5,132.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + pos: 82.5,60.5 + parent: 2 + - uid: 15059 + components: + - type: MetaData + name: AME Bridge + - type: Transform + pos: -47.5,105.5 + parent: 2 + - uid: 16729 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 13386 + - uid: 16931 + components: + - type: MetaData + name: AME Service (left) + - type: Transform + pos: -83.5,79.5 + parent: 2 + - uid: 17308 + components: + - type: Transform + pos: 6.5,81.5 + parent: 2 + - uid: 17965 + components: + - type: MetaData + name: AME Cargo + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 18233 + components: + - type: MetaData + name: AME Gravgen + - type: Transform + pos: -125.5,58.5 + parent: 2 + - uid: 19100 + components: + - type: Transform + pos: -129.5,33.5 + parent: 2 + - uid: 29935 + components: + - type: MetaData + name: AME Engineering + - type: Transform + pos: -95.5,50.5 + parent: 2 + - uid: 33330 + components: + - type: MetaData + name: AME medical + - type: Transform + pos: -1.5,213.5 + parent: 2 + - uid: 35392 + components: + - type: MetaData + name: AME sci + - type: Transform + pos: -103.5,147.5 + parent: 2 + - uid: 35451 + components: + - type: MetaData + name: AME Engineering + - type: Transform + pos: 67.5,23.5 + parent: 2 +- proto: SubstationBasicEmpty + entities: + - uid: 34492 + components: + - type: MetaData + name: AME ??? + - type: Transform + pos: -119.5,108.5 + parent: 2 +- proto: SubstationMachineCircuitboard + entities: + - uid: 12289 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationWallBasic + entities: + - uid: 1714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,29.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,32.5 + parent: 2 + - uid: 22083 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 21114 + - uid: 30490 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 31013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 30902 + - uid: 37978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 37842 +- proto: SuitStorageBase + entities: + - uid: 4372 + components: + - type: Transform + pos: -129.5,109.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6449 + components: + - type: Transform + pos: -130.5,109.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: SuitStorageBasic + entities: + - uid: 1004 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 70.5,26.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 13662 + components: + - type: Transform + pos: -31.5,98.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 8324 + components: + - type: Transform + pos: -124.5,55.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 23300 + components: + - type: Transform + pos: -20.5,206.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 1206 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 4510 + components: + - type: Transform + pos: -13.5,78.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: -13.5,81.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + pos: -13.5,80.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + pos: -13.5,77.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + pos: -9.5,80.5 + parent: 2 + - uid: 14226 + components: + - type: Transform + pos: -9.5,78.5 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: -9.5,81.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + pos: -9.5,77.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + pos: -9.5,84.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + pos: -13.5,84.5 + parent: 2 +- proto: SuitStorageEVAAlternate + entities: + - uid: 15032 + components: + - type: Transform + pos: -46.5,98.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + pos: -45.5,98.5 + parent: 2 + - uid: 15039 + components: + - type: Transform + pos: -44.5,98.5 + parent: 2 +- proto: SuitStorageEVAEmergency + entities: + - uid: 982 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: -1.5,167.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 15501 + components: + - type: Transform + pos: -131.5,109.5 + parent: 2 + - uid: 18260 + components: + - type: Transform + pos: -96.5,159.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 18303 + components: + - type: Transform + pos: -96.5,160.5 + parent: 2 + - uid: 18312 + components: + - type: Transform + pos: -96.5,161.5 + parent: 2 + - uid: 20043 + components: + - type: Transform + pos: -75.5,162.5 + parent: 2 + - uid: 20044 + components: + - type: Transform + pos: -75.5,164.5 + parent: 2 + - uid: 22717 + components: + - type: Transform + pos: -75.5,163.5 + parent: 2 + - uid: 22722 + components: + - type: Transform + pos: 0.5,167.5 + parent: 2 + - uid: 22727 + components: + - type: Transform + pos: -0.5,167.5 + parent: 2 + - uid: 37525 + components: + - type: Transform + pos: 1.5,167.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 4686 + components: + - type: Transform + pos: 81.5,62.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 18387 + components: + - type: Transform + pos: -84.5,156.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 1022 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1027 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1126 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1133 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageSec + entities: + - uid: 18673 + components: + - type: Transform + pos: 74.5,34.5 + parent: 2 + - uid: 18676 + components: + - type: Transform + pos: 74.5,35.5 + parent: 2 + - uid: 18679 + components: + - type: Transform + pos: 74.5,36.5 + parent: 2 + - uid: 18684 + components: + - type: Transform + pos: 81.5,34.5 + parent: 2 + - uid: 18687 + components: + - type: Transform + pos: 81.5,35.5 + parent: 2 + - uid: 18688 + components: + - type: Transform + pos: 81.5,36.5 + parent: 2 + - uid: 26161 + components: + - type: Transform + pos: 74.5,33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26162 + components: + - type: Transform + pos: 81.5,33.5 + parent: 2 + - uid: 41238 + components: + - type: Transform + pos: 45.5,58.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageWarden + entities: + - uid: 28762 + components: + - type: Transform + pos: 73.5,55.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 7874 + components: + - type: Transform + pos: -67.5,136.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,161.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,124.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,129.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,127.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,133.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,175.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,160.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,165.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,165.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + pos: -86.5,177.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + pos: -96.5,167.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,100.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,98.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,98.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,82.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: -61.5,128.5 + parent: 2 + - uid: 27447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,80.5 + parent: 2 + - type: SurveillanceCamera + id: Storage EVA + - uid: 33805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,98.5 + parent: 2 + - type: SurveillanceCamera + id: Cap room + - uid: 34568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,109.5 + parent: 2 + - type: SurveillanceCamera + id: Bridge + - uid: 34569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,99.5 + parent: 2 + - type: SurveillanceCamera + id: Evacuation + - uid: 34570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,95.5 + parent: 2 + - type: SurveillanceCamera + id: Bridge entrance +- proto: SurveillanceCameraEngineering + entities: + - uid: 1165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.5,29.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: -85.5,39.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,37.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: -84.5,45.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,46.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,37.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,34.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,33.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,26.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,26.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,37.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,60.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,54.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,51.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,41.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,58.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,45.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,54.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,54.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,67.5 + parent: 2 + - uid: 31209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,43.5 + parent: 2 + - type: SurveillanceCamera + id: Gate hall + - uid: 31210 + components: + - type: Transform + pos: -102.5,45.5 + parent: 2 + - type: SurveillanceCamera + id: Dressing room + - uid: 31211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,56.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 31212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,46.5 + parent: 2 + - type: SurveillanceCamera + id: Rest room + - uid: 31213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,48.5 + parent: 2 + - type: SurveillanceCamera + id: AME + - uid: 31214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,36.5 + parent: 2 + - type: SurveillanceCamera + id: Circuit storage + - uid: 31216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,41.5 + parent: 2 + - type: SurveillanceCamera + id: Docks +- proto: SurveillanceCameraGeneral + entities: + - uid: 2239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,100.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,103.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -114.5,94.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,63.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,59.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: -101.5,69.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,74.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: -122.5,105.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,101.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,106.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,103.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,95.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,93.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -130.5,103.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -130.5,93.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -109.5,98.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,103.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,96.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,78.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -63.5,73.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,84.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,83.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,80.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: -65.5,109.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: -45.5,93.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,91.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,84.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,76.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,76.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,84.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: -57.5,73.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,66.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,63.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + pos: -41.5,65.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,96.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,96.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: -93.5,94.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,155.5 + parent: 2 + - uid: 27449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,82.5 + parent: 2 + - type: SurveillanceCamera + id: Gate room + - uid: 27450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,82.5 + parent: 2 + - type: SurveillanceCamera + id: Gate room + - uid: 27451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,75.5 + parent: 2 + - type: SurveillanceCamera + id: Gate room + - uid: 27457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,101.5 + parent: 2 + - type: SurveillanceCamera + id: Dorms + - uid: 27458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,91.5 + parent: 2 + - type: SurveillanceCamera + id: Left side + - uid: 27459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,91.5 + parent: 2 + - type: SurveillanceCamera + id: Right side +- proto: SurveillanceCameraMedical + entities: + - uid: 7913 + components: + - type: Transform + pos: -11.5,167.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + pos: 2.5,165.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,167.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,171.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,162.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,163.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,179.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: -15.5,175.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,198.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,181.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,194.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: -16.5,196.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: 4.5,190.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,200.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,200.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: -19.5,204.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,194.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,162.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,190.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: 15.5,197.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,186.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,186.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,204.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,176.5 + parent: 2 + - uid: 19256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,182.5 + parent: 2 + - type: SurveillanceCamera + id: Gate + - uid: 27419 + components: + - type: Transform + pos: -14.5,191.5 + parent: 2 + - type: SurveillanceCamera + id: Reception + - uid: 27420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,190.5 + parent: 2 + - type: SurveillanceCamera + id: Med + - uid: 27422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,206.5 + parent: 2 + - type: SurveillanceCamera + id: Morgue + - uid: 27423 + components: + - type: Transform + pos: -16.5,203.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 27424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,198.5 + parent: 2 + - type: SurveillanceCamera + id: Storage + - uid: 27425 + components: + - type: Transform + pos: 18.5,191.5 + parent: 2 + - type: SurveillanceCamera + id: Virology +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 8110 + components: + - type: Transform + pos: -94.5,156.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 8126 + components: + - type: Transform + pos: -93.5,156.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 8123 + components: + - type: Transform + pos: -92.5,156.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 8122 + components: + - type: Transform + pos: -94.5,154.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 8117 + components: + - type: Transform + pos: -93.5,154.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 8121 + components: + - type: Transform + pos: -92.5,154.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 8118 + components: + - type: Transform + pos: -91.5,154.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 8116 + components: + - type: Transform + pos: -90.5,154.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 7902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,154.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,146.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,156.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + pos: -79.5,157.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: -84.5,185.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,179.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: -74.5,185.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: -65.5,180.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,152.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,152.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,160.5 + parent: 2 + - type: SurveillanceCamera + id: Gate + - uid: 27428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,160.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 27429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,170.5 + parent: 2 + - type: SurveillanceCamera + id: Xenoarch + - uid: 27430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,181.5 + parent: 2 + - type: SurveillanceCamera + id: Anomaly + - uid: 27431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,178.5 + parent: 2 + - type: SurveillanceCamera + id: Robotech + - uid: 27433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,170.5 + parent: 2 + - type: SurveillanceCamera + id: Reception +- proto: SurveillanceCameraSecurity + entities: + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,21.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 77.5,33.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 56.5,65.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 48.5,60.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,62.5 + parent: 2 + - type: SurveillanceCamera + id: Armory + - uid: 4787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,51.5 + parent: 2 + - type: SurveillanceCamera + id: Right side + - uid: 5841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,26.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,56.5 + parent: 2 + - type: SurveillanceCamera + id: Pilote room + - uid: 7512 + components: + - type: Transform + pos: 68.5,65.5 + parent: 2 + - type: SurveillanceCamera + id: Cabin + - uid: 7944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,62.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 87.5,63.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: 91.5,57.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,47.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,52.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,43.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: 86.5,38.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,32.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,33.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: 89.5,26.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,20.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: 64.5,38.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,55.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,60.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: 69.5,57.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 74.5,65.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,24.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,15.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,44.5 + parent: 2 + - type: SurveillanceCamera + id: Interrogation room + - uid: 8725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,30.5 + parent: 2 + - uid: 8726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,23.5 + parent: 2 + - uid: 10553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.5,48.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals + - uid: 12790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,76.5 + parent: 2 + - type: SurveillanceCamera + id: Detective's office + - uid: 13833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,40.5 + parent: 2 + - type: SurveillanceCamera + id: Gate + - uid: 18533 + components: + - type: Transform + pos: 107.5,57.5 + parent: 2 + - type: SurveillanceCamera + id: Evacuation + - uid: 19205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,67.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 22415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,51.5 + parent: 2 + - type: SurveillanceCamera + id: Left side + - uid: 36827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,59.5 + parent: 2 + - type: SurveillanceCamera + id: Sec dressing +- proto: SurveillanceCameraService + entities: + - uid: 1195 + components: + - type: Transform + pos: -27.5,61.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,68.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: -2.5,84.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: -1.5,60.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,71.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,58.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,105.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,69.5 + parent: 2 + - type: SurveillanceCamera + id: Botanic + - uid: 22417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,69.5 + parent: 2 + - type: SurveillanceCamera + id: Zookeeper office + - uid: 27440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,78.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 27442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,64.5 + parent: 2 + - type: SurveillanceCamera + id: Kitchen + - uid: 27445 + components: + - type: Transform + pos: -2.5,80.5 + parent: 2 + - type: SurveillanceCamera + id: Janitor's office + - uid: 27452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,81.5 + parent: 2 + - type: SurveillanceCamera + id: Library + - uid: 27453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,65.5 + parent: 2 + - type: SurveillanceCamera + id: Chapel + - uid: 27454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,67.5 + parent: 2 + - type: SurveillanceCamera + id: Crematorium + - uid: 27456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,80.5 + parent: 2 + - type: SurveillanceCamera + id: Courtroom +- proto: SurveillanceCameraSupply + entities: + - uid: 1655 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - type: SurveillanceCamera + id: Salvage + - uid: 7965 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-14.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-7.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-7.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-2.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-9.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,7.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,6.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,8.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 19440 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - type: SurveillanceCamera + id: Gate + - uid: 27434 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - type: SurveillanceCamera + id: Docking + - uid: 27435 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: Storage + - uid: 27437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 + - type: SurveillanceCamera + id: Head room + - uid: 27439 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 5782 + components: + - type: Transform + pos: 0.5,84.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 10685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,86.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,85.5 + parent: 2 + - uid: 21419 + components: + - type: Transform + pos: -106.5,87.5 + parent: 2 +- proto: Syringe + entities: + - uid: 2650 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 372.10287 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: Desoxyephedrine + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2855 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 372.10287 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: Desoxyephedrine + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2991 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2992 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2993 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2994 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2995 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2996 + components: + - type: Transform + parent: 2625 + - type: Injector + toggleState: Inject + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23665 + components: + - type: Transform + pos: 8.425763,185.64502 + parent: 2 + - uid: 23666 + components: + - type: Transform + pos: 8.571987,185.49884 + parent: 2 + - uid: 24118 + components: + - type: Transform + pos: 4.3811035,198.6691 + parent: 2 +- proto: SyringeBicaridine + entities: + - uid: 13014 + components: + - type: Transform + pos: -5.4878044,190.50526 + parent: 2 +- proto: SyringeDermaline + entities: + - uid: 13416 + components: + - type: Transform + pos: -31.454132,182.58287 + parent: 2 +- proto: Table + entities: + - uid: 251 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,169.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,44.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 109.5,44.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,34.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,107.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,44.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: 72.5,69.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: 73.5,69.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: 71.5,69.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: 70.5,69.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: 69.5,69.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: 67.5,67.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: 68.5,67.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: 69.5,67.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: 73.5,67.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: 74.5,67.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: 75.5,67.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 110.5,49.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,49.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 108.5,44.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 109.5,43.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 108.5,43.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: -15.5,67.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: 114.5,49.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,26.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,70.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,70.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,70.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,70.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,69.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: -17.5,102.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + pos: -91.5,55.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + pos: -92.5,55.5 + parent: 2 + - uid: 10755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,80.5 + parent: 2 + - uid: 10756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,80.5 + parent: 2 + - uid: 10955 + components: + - type: Transform + pos: -17.5,69.5 + parent: 2 + - uid: 10965 + components: + - type: Transform + pos: -16.5,65.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + pos: -17.5,67.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + pos: -13.5,70.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: -13.5,69.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + pos: -16.5,67.5 + parent: 2 + - uid: 11436 + components: + - type: Transform + pos: 108.5,61.5 + parent: 2 + - uid: 11438 + components: + - type: Transform + pos: 108.5,59.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + pos: -13.5,71.5 + parent: 2 + - uid: 12070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,70.5 + parent: 2 + - uid: 12925 + components: + - type: Transform + pos: -15.5,65.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,61.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + pos: -11.5,62.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,65.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + pos: -9.5,191.5 + parent: 2 + - uid: 13193 + components: + - type: Transform + pos: -5.5,192.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + pos: -3.5,69.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,65.5 + parent: 2 + - uid: 13259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,65.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,65.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + pos: -0.5,69.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + pos: 0.5,69.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: -4.5,69.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + pos: 1.5,65.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: -54.5,155.5 + parent: 2 + - uid: 14213 + components: + - type: Transform + pos: -54.5,156.5 + parent: 2 + - uid: 14671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,86.5 + parent: 2 + - uid: 14703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,77.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,57.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -39.5,57.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,58.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,57.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + pos: -35.5,57.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,73.5 + parent: 2 + - uid: 16437 + components: + - type: Transform + pos: 115.5,49.5 + parent: 2 + - uid: 16495 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - uid: 16884 + components: + - type: Transform + pos: -86.5,79.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + pos: -87.5,79.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + pos: -110.5,91.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + pos: 99.5,52.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + pos: 99.5,54.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + pos: -109.5,91.5 + parent: 2 + - uid: 17890 + components: + - type: Transform + pos: -64.5,151.5 + parent: 2 + - uid: 17972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,168.5 + parent: 2 + - uid: 19102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,45.5 + parent: 2 + - uid: 19601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,91.5 + parent: 2 + - uid: 19602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,91.5 + parent: 2 + - uid: 19603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,91.5 + parent: 2 + - uid: 19604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,91.5 + parent: 2 + - uid: 19667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,61.5 + parent: 2 + - uid: 22113 + components: + - type: Transform + pos: -75.5,154.5 + parent: 2 + - uid: 22122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,153.5 + parent: 2 + - uid: 22522 + components: + - type: Transform + pos: -9.5,189.5 + parent: 2 + - uid: 22583 + components: + - type: Transform + pos: -5.5,190.5 + parent: 2 + - uid: 23009 + components: + - type: Transform + pos: -8.5,199.5 + parent: 2 + - uid: 23021 + components: + - type: Transform + pos: -5.5,197.5 + parent: 2 + - uid: 23614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,195.5 + parent: 2 + - uid: 23615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,195.5 + parent: 2 + - uid: 23616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,193.5 + parent: 2 + - uid: 23617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,193.5 + parent: 2 + - uid: 23708 + components: + - type: Transform + pos: -88.5,38.5 + parent: 2 + - uid: 24020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,212.5 + parent: 2 + - uid: 24021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,212.5 + parent: 2 + - uid: 25062 + components: + - type: Transform + pos: -14.5,71.5 + parent: 2 + - uid: 25423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,167.5 + parent: 2 + - uid: 27781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,36.5 + parent: 2 + - uid: 27823 + components: + - type: Transform + pos: -79.5,33.5 + parent: 2 + - uid: 27824 + components: + - type: Transform + pos: -80.5,33.5 + parent: 2 + - uid: 27887 + components: + - type: Transform + pos: -95.5,45.5 + parent: 2 + - uid: 28009 + components: + - type: Transform + pos: -91.5,48.5 + parent: 2 + - uid: 28268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,33.5 + parent: 2 + - uid: 28285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,34.5 + parent: 2 + - uid: 28287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,35.5 + parent: 2 + - uid: 28784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 112.5,59.5 + parent: 2 + - uid: 28876 + components: + - type: Transform + pos: 104.5,59.5 + parent: 2 + - uid: 29876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,34.5 + parent: 2 + - uid: 29877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,34.5 + parent: 2 + - uid: 30771 + components: + - type: Transform + pos: -110.5,66.5 + parent: 2 + - uid: 30772 + components: + - type: Transform + pos: -109.5,66.5 + parent: 2 + - uid: 34580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,88.5 + parent: 2 + - uid: 34581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,87.5 + parent: 2 + - uid: 34582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,87.5 + parent: 2 + - uid: 35479 + components: + - type: Transform + pos: -19.5,197.5 + parent: 2 + - uid: 37746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,79.5 + parent: 2 + - uid: 39412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,167.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 1842 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: -88.5,86.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: -65.5,113.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: -84.5,90.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: -86.5,85.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: -85.5,85.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + pos: -88.5,88.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: -83.5,90.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: -85.5,90.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: -84.5,89.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: -88.5,89.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: -83.5,89.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: -84.5,85.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: -85.5,89.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + pos: -61.5,86.5 + parent: 2 + - uid: 14457 + components: + - type: Transform + pos: -62.5,86.5 + parent: 2 + - uid: 14552 + components: + - type: Transform + pos: -63.5,86.5 + parent: 2 + - uid: 25276 + components: + - type: Transform + pos: -62.5,87.5 + parent: 2 + - uid: 25279 + components: + - type: Transform + pos: -63.5,87.5 + parent: 2 + - uid: 36851 + components: + - type: Transform + pos: -61.5,87.5 + parent: 2 + - uid: 37245 + components: + - type: Transform + pos: -38.5,172.5 + parent: 2 + - uid: 37246 + components: + - type: Transform + pos: -37.5,172.5 + parent: 2 + - uid: 37247 + components: + - type: Transform + pos: -37.5,173.5 + parent: 2 + - uid: 37248 + components: + - type: Transform + pos: -38.5,173.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,4.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: -136.5,37.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,109.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,109.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: -49.5,65.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: -49.5,66.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: 80.5,41.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,23.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,84.5 + parent: 2 + - uid: 11047 + components: + - type: Transform + pos: -31.5,58.5 + parent: 2 + - uid: 11107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,61.5 + parent: 2 + - uid: 11108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,61.5 + parent: 2 + - uid: 11158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,61.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,61.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,105.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,105.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + pos: -81.5,100.5 + parent: 2 + - uid: 14284 + components: + - type: Transform + pos: -80.5,100.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: -79.5,100.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + pos: -81.5,98.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,199.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,105.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: -55.5,80.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,63.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,63.5 + parent: 2 + - uid: 15566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,63.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + pos: -38.5,52.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: -37.5,52.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: -54.5,74.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: -54.5,73.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: -54.5,84.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: -54.5,85.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + pos: -33.5,91.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -136.5,105.5 + parent: 2 + - uid: 17277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-4.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-4.5 + parent: 2 + - uid: 17897 + components: + - type: Transform + pos: 81.5,41.5 + parent: 2 + - uid: 18130 + components: + - type: Transform + pos: -103.5,57.5 + parent: 2 + - uid: 18157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,108.5 + parent: 2 + - uid: 18268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,109.5 + parent: 2 + - uid: 18269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,109.5 + parent: 2 + - uid: 20357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,165.5 + parent: 2 + - uid: 20358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,165.5 + parent: 2 + - uid: 20359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,165.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,162.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,162.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,162.5 + parent: 2 + - uid: 20996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,200.5 + parent: 2 + - uid: 22096 + components: + - type: Transform + pos: -46.5,64.5 + parent: 2 + - uid: 22101 + components: + - type: Transform + pos: -47.5,64.5 + parent: 2 + - uid: 22413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,196.5 + parent: 2 + - uid: 22445 + components: + - type: Transform + pos: 3.5,182.5 + parent: 2 + - uid: 22731 + components: + - type: Transform + pos: 5.5,182.5 + parent: 2 + - uid: 22861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,183.5 + parent: 2 + - uid: 22914 + components: + - type: Transform + pos: -32.5,91.5 + parent: 2 + - uid: 22947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,197.5 + parent: 2 + - uid: 22981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,196.5 + parent: 2 + - uid: 23374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,200.5 + parent: 2 + - uid: 23379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,196.5 + parent: 2 + - uid: 23381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,199.5 + parent: 2 + - uid: 23414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,196.5 + parent: 2 + - uid: 24139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,202.5 + parent: 2 + - uid: 24140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,201.5 + parent: 2 + - uid: 25309 + components: + - type: Transform + pos: -127.5,94.5 + parent: 2 + - uid: 25310 + components: + - type: Transform + pos: -127.5,95.5 + parent: 2 + - uid: 25311 + components: + - type: Transform + pos: -127.5,96.5 + parent: 2 + - uid: 25312 + components: + - type: Transform + pos: -127.5,98.5 + parent: 2 + - uid: 25313 + components: + - type: Transform + pos: -127.5,99.5 + parent: 2 + - uid: 25314 + components: + - type: Transform + pos: -127.5,100.5 + parent: 2 + - uid: 25544 + components: + - type: Transform + pos: 5.5,177.5 + parent: 2 + - uid: 26873 + components: + - type: Transform + pos: -119.5,97.5 + parent: 2 + - uid: 26874 + components: + - type: Transform + pos: -118.5,97.5 + parent: 2 + - uid: 26875 + components: + - type: Transform + pos: -117.5,97.5 + parent: 2 + - uid: 27187 + components: + - type: Transform + pos: -116.5,97.5 + parent: 2 + - uid: 28031 + components: + - type: Transform + pos: -114.5,102.5 + parent: 2 + - uid: 28050 + components: + - type: Transform + pos: -115.5,102.5 + parent: 2 + - uid: 28611 + components: + - type: Transform + pos: -103.5,58.5 + parent: 2 + - uid: 32474 + components: + - type: Transform + pos: -68.5,96.5 + parent: 2 + - uid: 32475 + components: + - type: Transform + pos: -68.5,97.5 + parent: 2 + - uid: 35414 + components: + - type: Transform + pos: -104.5,149.5 + parent: 2 + - uid: 35415 + components: + - type: Transform + pos: -103.5,149.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 15484 + components: + - type: Transform + pos: -34.5,65.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + pos: -33.5,65.5 + parent: 2 + - uid: 16858 + components: + - type: Transform + pos: -17.5,182.5 + parent: 2 + - uid: 22628 + components: + - type: Transform + pos: -5.5,180.5 + parent: 2 + - uid: 22629 + components: + - type: Transform + pos: -5.5,179.5 + parent: 2 + - uid: 23204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,182.5 + parent: 2 + - uid: 29695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,71.5 + parent: 2 + - uid: 29696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,71.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 2841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,142.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,99.5 + parent: 2 + - uid: 19281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,150.5 + parent: 2 + - uid: 19563 + components: + - type: Transform + pos: -125.5,94.5 + parent: 2 + - uid: 19680 + components: + - type: Transform + pos: -96.5,147.5 + parent: 2 + - uid: 19681 + components: + - type: Transform + pos: -95.5,147.5 + parent: 2 + - uid: 23662 + components: + - type: Transform + pos: 9.5,185.5 + parent: 2 + - uid: 23664 + components: + - type: Transform + pos: 8.5,184.5 + parent: 2 + - uid: 28240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,141.5 + parent: 2 + - uid: 28241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,143.5 + parent: 2 + - uid: 28242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,142.5 + parent: 2 + - uid: 29562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,35.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 3774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,193.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,190.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,46.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + pos: -4.5,172.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,129.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,129.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,131.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,131.5 + parent: 2 + - uid: 18030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,95.5 + parent: 2 + - uid: 18071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,98.5 + parent: 2 + - uid: 18441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,96.5 + parent: 2 + - uid: 19217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,150.5 + parent: 2 + - uid: 19279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,151.5 + parent: 2 + - uid: 19564 + components: + - type: Transform + pos: -124.5,94.5 + parent: 2 + - uid: 19643 + components: + - type: Transform + pos: -125.5,100.5 + parent: 2 + - uid: 19682 + components: + - type: Transform + pos: -97.5,147.5 + parent: 2 + - uid: 20118 + components: + - type: Transform + pos: -83.5,183.5 + parent: 2 + - uid: 20119 + components: + - type: Transform + pos: -83.5,182.5 + parent: 2 + - uid: 20120 + components: + - type: Transform + pos: -83.5,181.5 + parent: 2 + - uid: 20121 + components: + - type: Transform + pos: -75.5,183.5 + parent: 2 + - uid: 20122 + components: + - type: Transform + pos: -75.5,182.5 + parent: 2 + - uid: 20123 + components: + - type: Transform + pos: -75.5,181.5 + parent: 2 + - uid: 20166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,180.5 + parent: 2 + - uid: 20167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,180.5 + parent: 2 + - uid: 20168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,180.5 + parent: 2 + - uid: 20169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,180.5 + parent: 2 + - uid: 20474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,169.5 + parent: 2 + - uid: 20476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,170.5 + parent: 2 + - uid: 20477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,169.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + pos: -92.5,167.5 + parent: 2 + - uid: 20493 + components: + - type: Transform + pos: -93.5,167.5 + parent: 2 + - uid: 20499 + components: + - type: Transform + pos: -91.5,167.5 + parent: 2 + - uid: 20895 + components: + - type: Transform + pos: -68.5,175.5 + parent: 2 + - uid: 20896 + components: + - type: Transform + pos: -68.5,176.5 + parent: 2 + - uid: 20897 + components: + - type: Transform + pos: -68.5,177.5 + parent: 2 + - uid: 20987 + components: + - type: Transform + pos: -73.5,169.5 + parent: 2 + - uid: 20988 + components: + - type: Transform + pos: -73.5,168.5 + parent: 2 + - uid: 20989 + components: + - type: Transform + pos: -73.5,167.5 + parent: 2 + - uid: 21052 + components: + - type: Transform + pos: -68.5,169.5 + parent: 2 + - uid: 21053 + components: + - type: Transform + pos: -68.5,170.5 + parent: 2 + - uid: 21054 + components: + - type: Transform + pos: -68.5,171.5 + parent: 2 + - uid: 23318 + components: + - type: Transform + pos: -16.5,203.5 + parent: 2 + - uid: 23319 + components: + - type: Transform + pos: -15.5,203.5 + parent: 2 + - uid: 23320 + components: + - type: Transform + pos: -17.5,203.5 + parent: 2 + - uid: 23321 + components: + - type: Transform + pos: -16.5,207.5 + parent: 2 + - uid: 23322 + components: + - type: Transform + pos: -15.5,207.5 + parent: 2 + - uid: 23323 + components: + - type: Transform + pos: -15.5,206.5 + parent: 2 + - uid: 23324 + components: + - type: Transform + pos: -16.5,206.5 + parent: 2 + - uid: 24054 + components: + - type: Transform + pos: -124.5,100.5 + parent: 2 + - uid: 24303 + components: + - type: Transform + pos: -119.5,94.5 + parent: 2 + - uid: 25083 + components: + - type: Transform + pos: -118.5,95.5 + parent: 2 + - uid: 25117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,172.5 + parent: 2 + - uid: 25118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,172.5 + parent: 2 + - uid: 25119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,169.5 + parent: 2 + - uid: 25138 + components: + - type: Transform + pos: -119.5,95.5 + parent: 2 + - uid: 25150 + components: + - type: Transform + pos: -119.5,93.5 + parent: 2 + - uid: 25389 + components: + - type: Transform + pos: -3.5,165.5 + parent: 2 + - uid: 25390 + components: + - type: Transform + pos: -4.5,165.5 + parent: 2 + - uid: 28246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,141.5 + parent: 2 + - uid: 28247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,143.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 19835 + components: + - type: Transform + pos: -86.5,154.5 + parent: 2 + - uid: 19919 + components: + - type: Transform + pos: -87.5,154.5 + parent: 2 + - uid: 23637 + components: + - type: Transform + pos: 21.5,189.5 + parent: 2 + - uid: 23640 + components: + - type: Transform + pos: 21.5,188.5 + parent: 2 + - uid: 23641 + components: + - type: Transform + pos: 20.5,188.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 826 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 37.5,63.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-11.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-12.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,201.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: -123.5,32.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 38.5,63.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: 67.5,61.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,50.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,52.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 116.5,59.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: -70.5,149.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,60.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 71.5,42.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,50.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: 74.5,62.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: 74.5,61.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: -69.5,147.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: 74.5,63.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,56.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,50.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,56.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,56.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,53.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,53.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,53.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: -41.5,79.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,52.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 59.5,67.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: 59.5,65.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,59.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: -19.5,70.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,202.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,202.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,202.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,200.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,202.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,80.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + pos: -13.5,79.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,79.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,80.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,81.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + pos: -11.5,82.5 + parent: 2 + - uid: 11007 + components: + - type: Transform + pos: -8.5,70.5 + parent: 2 + - uid: 11009 + components: + - type: Transform + pos: -28.5,64.5 + parent: 2 + - uid: 11010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,70.5 + parent: 2 + - uid: 11029 + components: + - type: Transform + pos: -44.5,103.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + pos: -19.5,66.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + pos: -24.5,64.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + pos: -19.5,68.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: -19.5,69.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + pos: -27.5,64.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: -26.5,64.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + pos: -19.5,67.5 + parent: 2 + - uid: 11758 + components: + - type: Transform + pos: -44.5,101.5 + parent: 2 + - uid: 11762 + components: + - type: Transform + pos: -46.5,96.5 + parent: 2 + - uid: 11914 + components: + - type: Transform + pos: -17.5,62.5 + parent: 2 + - uid: 11935 + components: + - type: Transform + pos: -16.5,62.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,68.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,67.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + pos: -25.5,64.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,63.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,63.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + pos: -39.5,79.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: 60.5,60.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: 57.5,59.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: 57.5,61.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + pos: -43.5,109.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,107.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,107.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,103.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,103.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,103.5 + parent: 2 + - uid: 13688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,103.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + pos: -46.5,101.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + pos: -45.5,101.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: 73.5,43.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,36.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: -44.5,100.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: -45.5,96.5 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: -45.5,94.5 + parent: 2 + - uid: 14234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,38.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: -45.5,95.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,93.5 + parent: 2 + - uid: 15041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,94.5 + parent: 2 + - uid: 16064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,60.5 + parent: 2 + - uid: 16087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 13386 + - uid: 16088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 13386 + - uid: 16089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 13386 + - uid: 16486 + components: + - type: Transform + pos: -50.5,91.5 + parent: 2 + - uid: 16711 + components: + - type: Transform + pos: -2.5,1.5 + parent: 13386 + - uid: 17606 + components: + - type: Transform + pos: 52.5,57.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,50.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + pos: 69.5,55.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + pos: 61.5,60.5 + parent: 2 + - uid: 18004 + components: + - type: Transform + pos: 57.5,60.5 + parent: 2 + - uid: 18877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,91.5 + parent: 2 + - uid: 18915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,91.5 + parent: 2 + - uid: 19029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,37.5 + parent: 2 + - uid: 20927 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 20994 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 22440 + components: + - type: Transform + pos: -17.5,192.5 + parent: 2 + - uid: 22747 + components: + - type: Transform + pos: -15.5,190.5 + parent: 2 + - uid: 22749 + components: + - type: Transform + pos: -13.5,190.5 + parent: 2 + - uid: 22788 + components: + - type: Transform + pos: -17.5,193.5 + parent: 2 + - uid: 22838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,192.5 + parent: 2 + - uid: 22839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,191.5 + parent: 2 + - uid: 22845 + components: + - type: Transform + pos: -22.5,194.5 + parent: 2 + - uid: 22851 + components: + - type: Transform + pos: -23.5,194.5 + parent: 2 + - uid: 22998 + components: + - type: Transform + pos: -12.5,194.5 + parent: 2 + - uid: 22999 + components: + - type: Transform + pos: -13.5,194.5 + parent: 2 + - uid: 23022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,199.5 + parent: 2 + - uid: 23023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,199.5 + parent: 2 + - uid: 23046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,198.5 + parent: 2 + - uid: 23304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,49.5 + parent: 2 + - uid: 23404 + components: + - type: Transform + pos: -8.5,210.5 + parent: 2 + - uid: 23407 + components: + - type: Transform + pos: -9.5,210.5 + parent: 2 + - uid: 23449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,199.5 + parent: 2 + - uid: 23519 + components: + - type: Transform + pos: -93.5,37.5 + parent: 2 + - uid: 23551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,55.5 + parent: 2 + - uid: 28131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,43.5 + parent: 2 + - uid: 29476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,51.5 + parent: 2 + - uid: 29563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,35.5 + parent: 2 + - uid: 29564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,34.5 + parent: 2 + - uid: 29569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,34.5 + parent: 2 + - uid: 29570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,35.5 + parent: 2 + - uid: 30863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,12.5 + parent: 2 + - uid: 30864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,11.5 + parent: 2 + - uid: 31014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 30902 + - uid: 31015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 30902 + - uid: 31016 + components: + - type: Transform + pos: -0.5,1.5 + parent: 30902 + - uid: 31017 + components: + - type: Transform + pos: 3.5,1.5 + parent: 30902 + - uid: 31021 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 30902 + - uid: 31022 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 30902 + - uid: 31930 + components: + - type: Transform + pos: 91.5,17.5 + parent: 2 + - uid: 34138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,62.5 + parent: 2 + - uid: 34567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,93.5 + parent: 2 + - uid: 34621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,51.5 + parent: 2 + - uid: 34623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,93.5 + parent: 2 + - uid: 35789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,63.5 + parent: 2 + - uid: 35797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,63.5 + parent: 2 + - uid: 36014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,62.5 + parent: 2 + - uid: 36557 + components: + - type: Transform + pos: 56.5,55.5 + parent: 2 + - uid: 36602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,55.5 + parent: 2 + - uid: 36711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 37842 + - uid: 37712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,48.5 + parent: 2 + - uid: 37981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 37842 + - uid: 37982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 37842 + - uid: 39569 + components: + - type: Transform + pos: 51.5,57.5 + parent: 2 + - uid: 39570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,53.5 + parent: 2 + - uid: 41914 + components: + - type: Transform + pos: 51.5,56.5 + parent: 2 + - uid: 43170 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 37842 +- proto: TableReinforcedGlass + entities: + - uid: 654 + components: + - type: Transform + pos: -107.5,32.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -107.5,31.5 + parent: 2 + - uid: 6197 + components: + - type: Transform + pos: -124.5,53.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: -123.5,53.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: -107.5,30.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + pos: -18.5,81.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: -19.5,81.5 + parent: 2 + - uid: 10476 + components: + - type: Transform + pos: -18.5,84.5 + parent: 2 + - uid: 10479 + components: + - type: Transform + pos: -17.5,84.5 + parent: 2 + - uid: 14394 + components: + - type: Transform + pos: -27.5,99.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + pos: -75.5,85.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + pos: -26.5,98.5 + parent: 2 + - uid: 16588 + components: + - type: Transform + pos: -26.5,101.5 + parent: 2 + - uid: 18315 + components: + - type: Transform + pos: -27.5,98.5 + parent: 2 + - uid: 19480 + components: + - type: Transform + pos: -27.5,100.5 + parent: 2 + - uid: 19481 + components: + - type: Transform + pos: -27.5,101.5 + parent: 2 + - uid: 20952 + components: + - type: Transform + pos: -70.5,166.5 + parent: 2 + - uid: 20956 + components: + - type: Transform + pos: -69.5,166.5 + parent: 2 + - uid: 20957 + components: + - type: Transform + pos: -71.5,166.5 + parent: 2 + - uid: 27130 + components: + - type: Transform + pos: -34.5,101.5 + parent: 2 + - uid: 27655 + components: + - type: Transform + pos: -115.5,56.5 + parent: 2 + - uid: 28315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,55.5 + parent: 2 + - uid: 28698 + components: + - type: Transform + pos: -117.5,56.5 + parent: 2 + - uid: 28744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,55.5 + parent: 2 + - uid: 28746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,55.5 + parent: 2 + - uid: 28756 + components: + - type: Transform + pos: -116.5,56.5 + parent: 2 + - uid: 29561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,34.5 + parent: 2 + - uid: 29635 + components: + - type: Transform + pos: -107.5,35.5 + parent: 2 + - uid: 29636 + components: + - type: Transform + pos: -107.5,34.5 + parent: 2 + - uid: 31437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,105.5 + parent: 2 + - uid: 32295 + components: + - type: Transform + pos: -26.5,99.5 + parent: 2 + - uid: 33797 + components: + - type: Transform + pos: -26.5,100.5 + parent: 2 + - uid: 34815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,105.5 + parent: 2 + - uid: 37980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 37842 +- proto: TableStone + entities: + - uid: 1722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,49.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,48.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,46.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,46.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,48.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,48.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + pos: 88.5,64.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,67.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,67.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,67.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,67.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,43.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: 88.5,63.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,42.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + pos: -87.5,82.5 + parent: 2 + - uid: 8884 + components: + - type: Transform + pos: -87.5,81.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + pos: -86.5,81.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: -85.5,81.5 + parent: 2 + - uid: 8887 + components: + - type: Transform + pos: -84.5,81.5 + parent: 2 + - uid: 13995 + components: + - type: Transform + pos: -58.5,98.5 + parent: 2 + - uid: 13996 + components: + - type: Transform + pos: -58.5,97.5 + parent: 2 + - uid: 19093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,147.5 + parent: 2 + - uid: 19127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,147.5 + parent: 2 + - uid: 19151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,147.5 + parent: 2 + - uid: 19213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,147.5 + parent: 2 + - uid: 19459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,147.5 + parent: 2 + - uid: 23663 + components: + - type: Transform + pos: 8.5,185.5 + parent: 2 + - uid: 27629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,42.5 + parent: 2 + - uid: 27630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 27975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,41.5 + parent: 2 + - uid: 27976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,40.5 + parent: 2 + - uid: 28078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,42.5 + parent: 2 + - uid: 28113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,47.5 + parent: 2 + - uid: 28114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,44.5 + parent: 2 + - uid: 28144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,47.5 + parent: 2 + - uid: 28146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,45.5 + parent: 2 + - uid: 28346 + components: + - type: Transform + pos: -104.5,59.5 + parent: 2 + - uid: 28404 + components: + - type: Transform + pos: -101.5,48.5 + parent: 2 + - uid: 28449 + components: + - type: Transform + pos: -102.5,47.5 + parent: 2 + - uid: 28489 + components: + - type: Transform + pos: -106.5,59.5 + parent: 2 + - uid: 28623 + components: + - type: Transform + pos: 87.5,65.5 + parent: 2 + - uid: 28627 + components: + - type: Transform + pos: 86.5,66.5 + parent: 2 + - uid: 28657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,59.5 + parent: 2 + - uid: 28770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,45.5 + parent: 2 + - uid: 28818 + components: + - type: Transform + pos: -102.5,48.5 + parent: 2 + - uid: 28830 + components: + - type: Transform + pos: -100.5,47.5 + parent: 2 + - uid: 28843 + components: + - type: Transform + pos: -102.5,49.5 + parent: 2 + - uid: 28845 + components: + - type: Transform + pos: -100.5,49.5 + parent: 2 + - uid: 28846 + components: + - type: Transform + pos: -100.5,48.5 + parent: 2 + - uid: 28878 + components: + - type: Transform + pos: -101.5,47.5 + parent: 2 + - uid: 29092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,44.5 + parent: 2 + - uid: 29094 + components: + - type: Transform + pos: -120.5,43.5 + parent: 2 +- proto: TableWood + entities: + - uid: 1773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: -101.5,102.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: 81.5,18.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: 80.5,18.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,67.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -100.5,103.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + pos: -64.5,65.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + pos: -58.5,105.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: -52.5,63.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,85.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,86.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,86.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,86.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,76.5 + parent: 2 + - uid: 10953 + components: + - type: Transform + pos: -19.5,178.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + pos: -0.5,76.5 + parent: 2 + - uid: 11173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,70.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + pos: 0.5,76.5 + parent: 2 + - uid: 11934 + components: + - type: Transform + pos: -72.5,96.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,62.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + pos: -23.5,66.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + pos: -23.5,69.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,67.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: -78.5,91.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + pos: -59.5,102.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: -58.5,95.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: -70.5,92.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + pos: -73.5,99.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + pos: -76.5,91.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + pos: -77.5,94.5 + parent: 2 + - uid: 14276 + components: + - type: Transform + pos: -75.5,103.5 + parent: 2 + - uid: 14289 + components: + - type: Transform + pos: -80.5,103.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + pos: -80.5,107.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + pos: -81.5,104.5 + parent: 2 + - uid: 14293 + components: + - type: Transform + pos: -79.5,107.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: -81.5,105.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + pos: -79.5,103.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + pos: -81.5,106.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: -72.5,103.5 + parent: 2 + - uid: 14319 + components: + - type: Transform + pos: -81.5,103.5 + parent: 2 + - uid: 14320 + components: + - type: Transform + pos: -72.5,104.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + pos: -73.5,103.5 + parent: 2 + - uid: 14322 + components: + - type: Transform + pos: -74.5,103.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + pos: -78.5,103.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + pos: -80.5,106.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,94.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: -66.5,85.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + pos: -65.5,81.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + pos: -65.5,82.5 + parent: 2 + - uid: 14453 + components: + - type: Transform + pos: -65.5,83.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + pos: -73.5,83.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + pos: -70.5,81.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: -70.5,82.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: -74.5,83.5 + parent: 2 + - uid: 14630 + components: + - type: Transform + pos: -76.5,83.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + pos: -77.5,83.5 + parent: 2 + - uid: 14719 + components: + - type: Transform + pos: -75.5,75.5 + parent: 2 + - uid: 14720 + components: + - type: Transform + pos: -74.5,75.5 + parent: 2 + - uid: 14722 + components: + - type: Transform + pos: -74.5,74.5 + parent: 2 + - uid: 14723 + components: + - type: Transform + pos: -76.5,75.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: -77.5,91.5 + parent: 2 + - uid: 14771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,67.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + pos: -71.5,90.5 + parent: 2 + - uid: 16441 + components: + - type: Transform + pos: -102.5,102.5 + parent: 2 + - uid: 17326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,159.5 + parent: 2 + - uid: 17327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,159.5 + parent: 2 + - uid: 17682 + components: + - type: Transform + pos: -100.5,102.5 + parent: 2 + - uid: 18197 + components: + - type: Transform + pos: -60.5,155.5 + parent: 2 + - uid: 19803 + components: + - type: Transform + pos: -87.5,160.5 + parent: 2 + - uid: 19804 + components: + - type: Transform + pos: -86.5,160.5 + parent: 2 + - uid: 19807 + components: + - type: Transform + pos: -88.5,160.5 + parent: 2 + - uid: 20551 + components: + - type: Transform + pos: -85.5,180.5 + parent: 2 + - uid: 20552 + components: + - type: Transform + pos: -87.5,182.5 + parent: 2 + - uid: 20622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,180.5 + parent: 2 + - uid: 21375 + components: + - type: Transform + pos: -60.5,156.5 + parent: 2 + - uid: 21376 + components: + - type: Transform + pos: -59.5,155.5 + parent: 2 + - uid: 21632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,159.5 + parent: 2 + - uid: 23064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,177.5 + parent: 2 + - uid: 23065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,177.5 + parent: 2 + - uid: 23074 + components: + - type: Transform + pos: -17.5,178.5 + parent: 2 + - uid: 23080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,177.5 + parent: 2 + - uid: 25114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,204.5 + parent: 2 + - uid: 28680 + components: + - type: Transform + pos: -120.5,52.5 + parent: 2 + - uid: 30745 + components: + - type: Transform + pos: -60.5,63.5 + parent: 2 + - uid: 30901 + components: + - type: Transform + pos: -31.5,68.5 + parent: 2 + - uid: 31939 + components: + - type: Transform + pos: -58.5,63.5 + parent: 2 + - uid: 36709 + components: + - type: Transform + pos: -76.5,94.5 + parent: 2 + - uid: 36786 + components: + - type: Transform + pos: -78.5,92.5 + parent: 2 + - uid: 36849 + components: + - type: Transform + pos: -68.5,83.5 + parent: 2 + - uid: 38265 + components: + - type: Transform + pos: -8.5,59.5 + parent: 2 + - uid: 39180 + components: + - type: Transform + pos: -71.5,96.5 + parent: 2 +- proto: TaikoInstrument + entities: + - uid: 13213 + components: + - type: Transform + pos: -59.5,107.5 + parent: 2 +- proto: TargetClown + entities: + - uid: 34619 + components: + - type: Transform + rot: -3.141592351598195 rad + pos: 46.648773,49.035885 + parent: 2 +- proto: TargetHuman + entities: + - uid: 5316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,47.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.561897,53.507374 + parent: 2 + - uid: 36097 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 +- proto: TargetSyndicate + entities: + - uid: 1009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.499847,53.498817 + parent: 2 + - uid: 7185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.004158,53.29522 + parent: 2 +- proto: TegCenter + entities: + - uid: 1051 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -105.5,31.5 + parent: 2 + - type: ApcPowerReceiver + powerDisabled: True + - type: Physics + bodyType: Dynamic +- proto: TegCirculator + entities: + - uid: 770 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -105.5,30.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - type: Physics + bodyType: Dynamic + - uid: 5489 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -105.5,32.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - type: Physics + bodyType: Dynamic +- proto: TelecomServer + entities: + - uid: 5478 + components: + - type: Transform + pos: -114.5,53.5 + parent: 2 +- proto: TelecomServerFilledCargo + entities: + - uid: 8379 + components: + - type: Transform + pos: -111.5,30.5 + parent: 2 +- proto: TelecomServerFilledCommand + entities: + - uid: 8378 + components: + - type: Transform + pos: -112.5,30.5 + parent: 2 +- proto: TelecomServerFilledCommon + entities: + - uid: 8380 + components: + - type: Transform + pos: -113.5,30.5 + parent: 2 +- proto: TelecomServerFilledEngineering + entities: + - uid: 8377 + components: + - type: Transform + pos: -109.5,32.5 + parent: 2 +- proto: TelecomServerFilledMedical + entities: + - uid: 8540 + components: + - type: Transform + pos: -109.5,30.5 + parent: 2 +- proto: TelecomServerFilledScience + entities: + - uid: 8338 + components: + - type: Transform + pos: -111.5,32.5 + parent: 2 +- proto: TelecomServerFilledSecurity + entities: + - uid: 184 + components: + - type: Transform + pos: -112.5,32.5 + parent: 2 +- proto: TelecomServerFilledService + entities: + - uid: 7766 + components: + - type: Transform + pos: -113.5,32.5 + parent: 2 +- proto: Thruster + entities: + - uid: 15674 + components: + - type: Transform + pos: 3.5,3.5 + parent: 13386 + - uid: 15678 + components: + - type: Transform + pos: -3.5,3.5 + parent: 13386 + - uid: 15679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 13386 + - uid: 15680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 13386 + - uid: 15681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 13386 + - uid: 15682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 13386 + - uid: 15684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 13386 + - uid: 15771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 13386 + - uid: 19236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-17.5 + parent: 2 + - uid: 19237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-17.5 + parent: 2 + - uid: 19527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 21114 + - uid: 19530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 21114 + - uid: 22084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 21114 + - uid: 22086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 21114 + - uid: 22088 + components: + - type: Transform + pos: 0.5,4.5 + parent: 21114 + - uid: 22089 + components: + - type: Transform + pos: 5.5,4.5 + parent: 21114 + - uid: 31023 + components: + - type: Transform + pos: -2.5,0.5 + parent: 30902 + - uid: 31024 + components: + - type: Transform + pos: 5.5,0.5 + parent: 30902 + - uid: 31025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 30902 + - uid: 31026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 30902 + - uid: 31027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 30902 + - uid: 31028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 30902 + - uid: 37039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 36996 + - uid: 37040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 36996 + - uid: 37983 + components: + - type: Transform + pos: 3.5,2.5 + parent: 37842 + - uid: 37984 + components: + - type: Transform + pos: -2.5,2.5 + parent: 37842 + - uid: 37985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 37842 + - uid: 37986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 37842 + - uid: 37987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 37842 + - uid: 37988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 37842 +- proto: TintedWindow + entities: + - uid: 37585 + components: + - type: Transform + pos: -64.5,62.5 + parent: 2 +- proto: TobaccoSeeds + entities: + - uid: 15612 + components: + - type: Transform + pos: -80.483154,140.47917 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 2546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,169.5 + parent: 2 + - uid: 17528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,110.5 + parent: 2 + - uid: 25832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,171.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 12855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,41.5 + parent: 2 + - uid: 17565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,112.5 + parent: 2 +- proto: ToolboxArtistic + entities: + - uid: 10567 + components: + - type: Transform + pos: -130.51793,103.77196 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 1226 + components: + - type: Transform + pos: -56.595947,-4.5583954 + parent: 2 + - uid: 3930 + components: + - type: Transform + parent: 11269 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24182 + components: + - type: Transform + pos: 23.356367,190.51512 + parent: 2 + - uid: 28686 + components: + - type: Transform + pos: 5.5351677,81.6223 + parent: 2 + - uid: 29737 + components: + - type: Transform + pos: -113.47805,36.536823 + parent: 2 + - uid: 30861 + components: + - type: Transform + pos: -110.35789,66.52527 + parent: 2 + - uid: 36419 + components: + - type: Transform + pos: -125.60061,105.56065 + parent: 2 + - uid: 36969 + components: + - type: Transform + pos: 4.219364,208.81953 + parent: 2 + - uid: 36970 + components: + - type: Transform + pos: 17.401558,201.52988 + parent: 2 + - uid: 40445 + components: + - type: Transform + pos: 46.52841,55.733616 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 756 + components: + - type: Transform + pos: -50.53337,3.634224 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -35.718227,-10.322052 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -29.605646,-6.4254856 + parent: 2 + - uid: 14847 + components: + - type: Transform + pos: -70.63176,85.7171 + parent: 2 + - uid: 15786 + components: + - type: Transform + pos: -49.476448,64.58074 + parent: 2 + - uid: 16480 + components: + - type: Transform + pos: -81.61885,76.59455 + parent: 2 + - uid: 17305 + components: + - type: Transform + pos: -92.00946,55.562565 + parent: 2 + - uid: 23263 + components: + - type: Transform + pos: -0.6587577,194.74225 + parent: 2 + - uid: 24032 + components: + - type: Transform + pos: -17.58209,211.59784 + parent: 2 + - uid: 31156 + components: + - type: Transform + pos: 23.437965,185.68268 + parent: 2 + - uid: 31157 + components: + - type: Transform + pos: 23.55198,191.46512 + parent: 2 + - uid: 32430 + components: + - type: Transform + pos: -25.430298,206.48688 + parent: 2 + - uid: 32951 + components: + - type: Transform + pos: -33.5841,191.69588 + parent: 2 + - uid: 32953 + components: + - type: Transform + pos: -60.42721,165.54169 + parent: 2 + - uid: 32955 + components: + - type: Transform + pos: -90.46791,152.71614 + parent: 2 + - uid: 32957 + components: + - type: Transform + pos: -92.52644,145.67578 + parent: 2 + - uid: 32964 + components: + - type: Transform + pos: -107.40548,60.47017 + parent: 2 + - uid: 33092 + components: + - type: Transform + pos: -107.364105,48.700848 + parent: 2 + - uid: 33094 + components: + - type: Transform + pos: -115.52953,63.394157 + parent: 2 + - uid: 33096 + components: + - type: Transform + pos: -139.96475,19.74096 + parent: 2 + - uid: 33099 + components: + - type: Transform + pos: -27.531826,75.747246 + parent: 2 + - uid: 33100 + components: + - type: Transform + pos: -40.96862,63.527565 + parent: 2 + - uid: 33101 + components: + - type: Transform + pos: -46.441204,63.774944 + parent: 2 + - uid: 34517 + components: + - type: Transform + pos: -31.541485,183.68501 + parent: 2 + - uid: 34634 + components: + - type: Transform + pos: -98.58045,145.65045 + parent: 2 + - uid: 35416 + components: + - type: Transform + pos: -104.35223,149.63913 + parent: 2 + - uid: 38097 + components: + - type: Transform + pos: -91.471466,52.567764 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 1221 + components: + - type: Transform + pos: -57.470947,-4.4333954 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -35.41453,-10.512276 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 57.363823,48.573128 + parent: 2 + - uid: 11280 + components: + - type: Transform + pos: -137.42819,52.67915 + parent: 2 + - uid: 15787 + components: + - type: Transform + pos: -49.678913,67.50428 + parent: 2 + - uid: 16621 + components: + - type: Transform + pos: 3.4974442,1.7561369 + parent: 13386 + - uid: 17227 + components: + - type: Transform + pos: -81.41638,76.71824 + parent: 2 + - uid: 17583 + components: + - type: Transform + pos: -110.345345,91.71141 + parent: 2 + - uid: 17686 + components: + - type: Transform + pos: 73.509,52.66552 + parent: 2 + - uid: 23264 + components: + - type: Transform + pos: -0.3888054,194.51736 + parent: 2 + - uid: 25218 + components: + - type: Transform + pos: -130.51793,103.47508 + parent: 2 + - uid: 25315 + components: + - type: Transform + pos: -127.50042,95.571175 + parent: 2 + - uid: 25316 + components: + - type: Transform + pos: -127.50042,100.39501 + parent: 2 + - uid: 25678 + components: + - type: Transform + pos: 0.52395487,172.65623 + parent: 2 + - uid: 28147 + components: + - type: Transform + pos: -78.62292,144.41803 + parent: 2 + - uid: 30851 + components: + - type: Transform + pos: -110.49851,66.71277 + parent: 2 + - uid: 33105 + components: + - type: Transform + pos: -60.429897,165.24466 + parent: 2 + - uid: 33106 + components: + - type: Transform + pos: -83.384705,143.20491 + parent: 2 + - uid: 33107 + components: + - type: Transform + pos: -93.55449,143.46024 + parent: 2 + - uid: 34533 + components: + - type: Transform + pos: -98.55917,145.37386 + parent: 2 + - uid: 36565 + components: + - type: Transform + pos: -27.593124,75.450455 + parent: 2 + - uid: 36779 + components: + - type: Transform + pos: -40.99174,63.674095 + parent: 2 + - uid: 36968 + components: + - type: Transform + pos: -20.487823,174.59323 + parent: 2 + - uid: 37356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.56977,177.497 + parent: 2 + - uid: 38038 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40524 + components: + - type: Transform + pos: 46.52841,55.37191 + parent: 2 +- proto: ToyAi + entities: + - uid: 7842 + components: + - type: Transform + pos: -60.341904,129.89326 + parent: 2 +- proto: ToyAmongPequeno + entities: + - uid: 9083 + components: + - type: Transform + pos: 6.6331215,188.51001 + parent: 2 + - uid: 36371 + components: + - type: Transform + pos: -32.381207,4.547638 + parent: 2 +- proto: ToyDurand + entities: + - uid: 15870 + components: + - type: Transform + pos: -54.50034,85.78469 + parent: 2 +- proto: ToyFigurineAtmosTech + entities: + - uid: 11235 + components: + - type: Transform + pos: -105.50725,33.656605 + parent: 2 +- proto: ToyFigurineBartender + entities: + - uid: 13158 + components: + - type: Transform + pos: -26.884592,61.63367 + parent: 2 +- proto: ToyFigurineBotanist + entities: + - uid: 13346 + components: + - type: Transform + pos: -8.496202,70.62888 + parent: 2 +- proto: ToyFigurineCaptain + entities: + - uid: 25598 + components: + - type: Transform + pos: -32.539093,96.99742 + parent: 2 +- proto: ToyFigurineCargoTech + entities: + - uid: 10768 + components: + - type: Transform + pos: -5.535946,-4.223362 + parent: 2 +- proto: ToyFigurineChaplain + entities: + - uid: 14469 + components: + - type: Transform + pos: -52.358,63.41378 + parent: 2 +- proto: ToyFigurineChef + entities: + - uid: 14468 + components: + - type: Transform + pos: -14.21763,71.6815 + parent: 2 +- proto: ToyFigurineChemist + entities: + - uid: 23044 + components: + - type: Transform + pos: -22.30231,194.7969 + parent: 2 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 19303 + components: + - type: Transform + pos: -117.59441,56.729626 + parent: 2 + - uid: 34602 + components: + - type: Transform + pos: -125.91395,87.79847 + parent: 2 +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 23340 + components: + - type: Transform + pos: -15.415056,203.79047 + parent: 2 +- proto: ToyFigurineDetective + entities: + - uid: 12891 + components: + - type: Transform + pos: 0.46578956,74.06053 + parent: 2 +- proto: ToyFigurineEngineer + entities: + - uid: 18742 + components: + - type: Transform + pos: -99.382126,41.74925 + parent: 2 +- proto: ToyFigurineHamlet + entities: + - uid: 4357 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one wears glasses and pretends to be smart. + name: seventh Hamlet figurine + - type: Transform + pos: -71.445625,155.63577 + parent: 2 + - uid: 10613 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one's full and lying on his belly. + name: first Hamlet figurine + - type: Transform + pos: -17.516815,102.77845 + parent: 2 + - uid: 10614 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one's chewing on a wrench. + name: fifth Hamlet figurine! + - type: Transform + pos: -91.43581,55.843674 + parent: 2 + - uid: 17081 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one looks like the unfortunate victim of a clown. + name: eighth Hamlet figurine + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.388084,93.57832 + parent: 2 + - uid: 17101 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one looks hungry and lonely. + name: fourth Hamlet figurine + - type: Transform + pos: 115.6748,49.773445 + parent: 2 + - uid: 20692 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one looks hurt and ready to bite. + name: sixth Hamlet figurine + - type: Transform + pos: -78.640625,86.64981 + parent: 2 + - uid: 20788 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one's happy and in a spacesuit. + name: third Hamlet figurine + - type: Transform + pos: -17.49073,6.491913 + parent: 2 + - uid: 23419 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one looks embarrassed and flirtatious. + name: second Hamlet figurine + - type: Transform + pos: -60.491615,111.68542 + parent: 2 + - uid: 38104 + components: + - type: MetaData + desc: One of ten figures of the magnificent grumpy Hamlet! This one is disheveled and has puffy cheeks. + name: ninth Hamlet figurine + - type: Transform + pos: -26.530703,193.3324 + parent: 2 +- proto: ToyFigurineHeadOfPersonnel + entities: + - uid: 10478 + components: + - type: Transform + pos: -18.312418,81.99234 + parent: 2 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 4705 + components: + - type: Transform + pos: 82.52039,66.49927 + parent: 2 +- proto: ToyFigurineHoloClown + entities: + - uid: 5008 + components: + - type: Transform + pos: 8.48819,77.530235 + parent: 2 +- proto: ToyFigurineJanitor + entities: + - uid: 10758 + components: + - type: Transform + pos: -1.3964744,80.94918 + parent: 2 +- proto: ToyFigurineLawyer + entities: + - uid: 22887 + components: + - type: Transform + pos: -75.409996,75.65042 + parent: 2 +- proto: ToyFigurineLibrarian + entities: + - uid: 14463 + components: + - type: Transform + pos: -65.41716,83.57734 + parent: 2 +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 23045 + components: + - type: Transform + pos: -13.163654,194.64453 + parent: 2 +- proto: ToyFigurineMime + entities: + - uid: 14465 + components: + - type: Transform + pos: -58.591904,98.34595 + parent: 2 +- proto: ToyFigurineMouse + entities: + - uid: 17244 + components: + - type: Transform + pos: -13.285582,70.68941 + parent: 2 +- proto: ToyFigurineMusician + entities: + - uid: 14515 + components: + - type: Transform + pos: -33.8991,65.89598 + parent: 2 +- proto: ToyFigurineNukie + entities: + - uid: 21062 + components: + - type: Transform + pos: -48.219852,107.56736 + parent: 2 +- proto: ToyFigurineNukieElite + entities: + - uid: 14504 + components: + - type: Transform + pos: -48.235146,93.998116 + parent: 2 +- proto: ToyFigurineParamedic + entities: + - uid: 25380 + components: + - type: Transform + pos: -2.4269748,172.69862 + parent: 2 +- proto: ToyFigurinePassenger + entities: + - uid: 32432 + components: + - type: Transform + pos: -59.497166,102.0468 + parent: 2 + - uid: 32434 + components: + - type: Transform + pos: -73.50193,100.7947 + parent: 2 +- proto: ToyFigurineQuartermaster + entities: + - uid: 1737 + components: + - type: Transform + pos: -29.643015,-13.115172 + parent: 2 +- proto: ToyFigurineRatKing + entities: + - uid: 10770 + components: + - type: Transform + pos: -103.728584,91.725464 + parent: 2 +- proto: ToyFigurineRatServant + entities: + - uid: 13157 + components: + - type: Transform + pos: -103.28991,91.70298 + parent: 2 + - uid: 14514 + components: + - type: Transform + pos: -104.223495,92.01782 + parent: 2 +- proto: ToyFigurineResearchDirector + entities: + - uid: 18385 + components: + - type: Transform + pos: -84.530014,155.00575 + parent: 2 +- proto: ToyFigurineSalvage + entities: + - uid: 29090 + components: + - type: Transform + pos: -40.485214,-15.284172 + parent: 2 +- proto: ToyFigurineScientist + entities: + - uid: 21034 + components: + - type: Transform + pos: -88.062416,162.90915 + parent: 2 +- proto: ToyFigurineSecurity + entities: + - uid: 4638 + components: + - type: Transform + pos: 75.729836,67.92833 + parent: 2 +- proto: ToyFigurineSlime + entities: + - uid: 21035 + components: + - type: Transform + pos: -87.31781,182.63678 + parent: 2 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 13160 + components: + - type: Transform + pos: 5.5172763,164.16153 + parent: 2 + - uid: 20486 + components: + - type: Transform + pos: -80.19525,36.286007 + parent: 2 +- proto: ToyFigurineWarden + entities: + - uid: 32436 + components: + - type: Transform + pos: 70.59013,51.92549 + parent: 2 +- proto: ToyFigurineWizard + entities: + - uid: 6442 + components: + - type: Transform + pos: -60.364788,156.66792 + parent: 2 + - uid: 25361 + components: + - type: Transform + pos: -79.6596,35.64603 + parent: 2 +- proto: ToyGriffin + entities: + - uid: 1079 + components: + - type: Transform + pos: 26.42986,16.932518 + parent: 2 +- proto: ToyHonk + entities: + - uid: 10781 + components: + - type: Transform + pos: -18.631903,75.422806 + parent: 2 +- proto: ToyMouse + entities: + - uid: 10779 + components: + - type: Transform + pos: -2.9451065,81.482506 + parent: 2 + - uid: 10780 + components: + - type: Transform + pos: -3.383779,81.831085 + parent: 2 + - uid: 13744 + components: + - type: Transform + pos: -30.598701,101.215836 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: -64.47846,67.821106 + parent: 2 +- proto: ToyNuke + entities: + - uid: 22960 + components: + - type: Transform + pos: -33.303967,91.63701 + parent: 2 +- proto: ToyOwlman + entities: + - uid: 12853 + components: + - type: Transform + pos: 69.55601,55.605793 + parent: 2 +- proto: ToyRipley + entities: + - uid: 1874 + components: + - type: Transform + pos: 4.7172523,0.17708182 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 14383 + components: + - type: Transform + pos: -77.95344,106.81387 + parent: 2 +- proto: ToySkeleton + entities: + - uid: 14470 + components: + - type: Transform + pos: -62.945625,87.880875 + parent: 2 +- proto: ToySpawner + entities: + - uid: 1793 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: -59.5,105.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: -59.5,103.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + pos: -59.5,93.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: -71.5,98.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: -60.5,97.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: -71.5,161.5 + parent: 2 + - uid: 14318 + components: + - type: Transform + pos: -60.5,77.5 + parent: 2 + - uid: 14574 + components: + - type: Transform + pos: -66.5,85.5 + parent: 2 + - uid: 14575 + components: + - type: Transform + pos: -66.5,85.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + pos: -24.5,86.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + pos: -70.5,160.5 + parent: 2 + - uid: 20069 + components: + - type: Transform + pos: -75.5,174.5 + parent: 2 + - uid: 20089 + components: + - type: Transform + pos: -82.5,167.5 + parent: 2 + - uid: 20848 + components: + - type: Transform + pos: -87.5,180.5 + parent: 2 + - uid: 28213 + components: + - type: Transform + pos: -78.5,144.5 + parent: 2 + - uid: 28647 + components: + - type: Transform + pos: 110.5,43.5 + parent: 2 + - uid: 28648 + components: + - type: Transform + pos: 107.5,43.5 + parent: 2 + - uid: 37846 + components: + - type: Transform + pos: -71.5,156.5 + parent: 2 +- proto: TrainingBomb + entities: + - uid: 14518 + components: + - type: Transform + pos: 55.5,56.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + pos: 58.5,55.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + pos: 58.5,54.5 + parent: 2 +- proto: TrashBag + entities: + - uid: 7390 + components: + - type: Transform + pos: 55.576614,41.619625 + parent: 2 + - uid: 10759 + components: + - type: Transform + pos: -2.0019374,80.61185 + parent: 2 + - uid: 17705 + components: + - type: Transform + pos: -117.34551,63.616394 + parent: 2 + - uid: 17712 + components: + - type: Transform + pos: -117.55923,63.413994 + parent: 2 + - uid: 21306 + components: + - type: Transform + pos: -57.641296,171.40204 + parent: 2 + - uid: 21307 + components: + - type: Transform + pos: -57.3376,171.61569 + parent: 2 + - uid: 21308 + components: + - type: Transform + pos: -57.27011,171.34583 + parent: 2 + - uid: 24322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.442743,180.48955 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 5035 + components: + - type: Transform + pos: 82.49935,64.44148 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: -70.45905,92.79113 + parent: 2 +- proto: TrashBananiumPeel + entities: + - uid: 33707 + components: + - type: Transform + pos: 4.504265,75.477264 + parent: 2 +- proto: trayScanner + entities: + - uid: 15842 + components: + - type: Transform + pos: -45.547413,70.646576 + parent: 2 + - uid: 25322 + components: + - type: Transform + pos: -127.48907,94.497154 + parent: 2 + - uid: 28006 + components: + - type: Transform + pos: -95.417015,48.643307 + parent: 2 + - uid: 28101 + components: + - type: Transform + pos: -76.38605,45.552673 + parent: 2 +- proto: TreasureCoinGold + entities: + - uid: 3306 + components: + - type: Transform + pos: -84.00142,90.03376 + parent: 2 + - uid: 8863 + components: + - type: Transform + pos: -84.87306,89.7169 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: -88.67659,88.85874 + parent: 2 +- proto: TrumpetInstrument + entities: + - uid: 12278 + components: + - type: Transform + pos: -112.45739,27.326408 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 689 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1808: + - Right: Forward + - Left: Reverse + - Middle: Off + 1807: + - Left: Reverse + - Right: Forward + - Middle: Off + 70: + - Left: Reverse + - Right: Forward + - Middle: Off + 60: + - Right: Forward + - Left: Reverse + - Middle: Off + 98: + - Left: Reverse + - Right: Forward + - Middle: Off + 65: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 1050 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1048: + - Right: Forward + - Left: Reverse + - Middle: Off + 1047: + - Right: Forward + - Left: Reverse + - Middle: Off + 1043: + - Right: Forward + - Left: Reverse + - Middle: Off + 1040: + - Right: Forward + - Left: Reverse + - Middle: Off + 1041: + - Right: Forward + - Left: Reverse + - Middle: Off + 1042: + - Right: Forward + - Left: Reverse + - Middle: Off + 1104: + - Right: Forward + - Left: Reverse + - Middle: Off + 19520: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 2112 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 277: + - Left: Forward + - Right: Reverse + - Middle: Off + 273: + - Left: Forward + - Right: Reverse + - Middle: Off + 274: + - Left: Forward + - Right: Reverse + - Middle: Off + 275: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 2538 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1806: + - Left: Reverse + - Right: Forward + - Middle: Off + 1805: + - Left: Reverse + - Right: Forward + - Middle: Off + 1801: + - Right: Forward + - Left: Reverse + - Middle: Off + 1803: + - Left: Reverse + - Right: Forward + - Middle: Off + 1802: + - Left: Reverse + - Right: Forward + - Middle: Off + 1804: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 7301 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 7450: + - Left: Forward + - Right: Reverse + - Middle: Off + 7229: + - Left: Forward + - Right: Reverse + - Middle: Off + 7296: + - Left: Forward + - Right: Reverse + - Middle: Off + 7226: + - Left: Forward + - Right: Reverse + - Middle: Off + 7223: + - Left: Forward + - Right: Reverse + - Middle: Off + 5027: + - Left: Forward + - Right: Reverse + - Middle: Off + 7216: + - Left: Forward + - Right: Reverse + - Middle: Off + 7206: + - Left: Forward + - Right: Reverse + - Middle: Off + 7198: + - Left: Forward + - Right: Reverse + - Middle: Off + 7197: + - Left: Forward + - Right: Reverse + - Middle: Off + 7195: + - Left: Forward + - Right: Reverse + - Middle: Off + 7193: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 10915 + components: + - type: Transform + pos: -39.5,69.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11311: + - Left: Forward + - Right: Reverse + - Middle: Off + 11312: + - Left: Forward + - Right: Reverse + - Middle: Off + 11313: + - Left: Forward + - Right: Reverse + - Middle: Off + 11314: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11050 + components: + - type: Transform + pos: -33.5,76.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11231: + - Left: Forward + - Right: Reverse + - Middle: Off + 11232: + - Left: Forward + - Right: Reverse + - Middle: Off + 11233: + - Left: Forward + - Right: Reverse + - Middle: Off + 11234: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11093 + components: + - type: Transform + pos: -33.5,84.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11296: + - Left: Forward + - Right: Reverse + - Middle: Off + 11298: + - Left: Forward + - Right: Reverse + - Middle: Off + 11299: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11179 + components: + - type: Transform + pos: -48.5,84.5 + parent: 2 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 11304: + - Left: Forward + - Right: Reverse + - Middle: Off + 11303: + - Left: Forward + - Right: Reverse + - Middle: Off + 11302: + - Left: Forward + - Right: Reverse + - Middle: Off + 11301: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11206 + components: + - type: Transform + pos: -48.5,76.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11309: + - Left: Forward + - Right: Reverse + - Middle: Off + 11308: + - Left: Forward + - Right: Reverse + - Middle: Off + 11307: + - Left: Forward + - Right: Reverse + - Middle: Off + 11306: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 14714 + components: + - type: Transform + pos: -11.5,168.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15397: + - Left: Forward + - Right: Reverse + - Middle: Off + 15893: + - Left: Forward + - Right: Reverse + - Middle: Off + 16638: + - Left: Forward + - Right: Reverse + - Middle: Off + 15210: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 14762 + components: + - type: Transform + pos: 68.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5521: + - Left: Forward + - Right: Reverse + - Middle: Off + 7049: + - Left: Forward + - Right: Reverse + - Middle: Off + 7581: + - Left: Forward + - Right: Reverse + - Middle: Off + 7580: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 18149 + components: + - type: Transform + pos: -118.5,66.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17834: + - Left: Forward + - Right: Reverse + - Middle: Off + 17721: + - Left: Forward + - Right: Reverse + - Middle: Off + 17393: + - Left: Forward + - Right: Reverse + - Middle: Off + 17745: + - Left: Forward + - Right: Reverse + - Middle: Off + 15331: + - Left: Forward + - Right: Reverse + - Middle: Off + 17396: + - Left: Forward + - Right: Reverse + - Middle: Off + 17772: + - Left: Forward + - Right: Reverse + - Middle: Off + 18304: + - Left: Forward + - Right: Reverse + - Middle: Off + 18200: + - Left: Forward + - Right: Reverse + - Middle: Off + 18626: + - Left: Forward + - Right: Reverse + - Middle: Off + 18994: + - Left: Forward + - Right: Reverse + - Middle: Off + 18565: + - Left: Forward + - Right: Reverse + - Middle: Off + 18685: + - Left: Forward + - Right: Reverse + - Middle: Off + 18990: + - Left: Forward + - Right: Reverse + - Middle: Off + 18042: + - Left: Forward + - Right: Reverse + - Middle: Off + 19521: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 20947 + components: + - type: Transform + pos: -66.5,158.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 20882: + - Left: Forward + - Right: Reverse + - Middle: Off + 20881: + - Left: Forward + - Right: Reverse + - Middle: Off + 20883: + - Left: Forward + - Right: Reverse + - Middle: Off + 20885: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 21320 + components: + - type: Transform + pos: -59.5,173.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21208: + - Left: Forward + - Right: Reverse + - Middle: Off + 21211: + - Left: Forward + - Right: Reverse + - Middle: Off + 21212: + - Left: Forward + - Right: Reverse + - Middle: Off + 21213: + - Left: Forward + - Right: Reverse + - Middle: Off + 21215: + - Left: Forward + - Right: Reverse + - Middle: Off + 21214: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 24377 + components: + - type: Transform + pos: 22.5,178.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 24201: + - Left: Forward + - Right: Reverse + - Middle: Off + 24200: + - Left: Forward + - Right: Reverse + - Middle: Off + 24199: + - Left: Forward + - Right: Reverse + - Middle: Off + 24198: + - Left: Forward + - Right: Reverse + - Middle: Off + 24197: + - Left: Forward + - Right: Reverse + - Middle: Off + 24196: + - Left: Forward + - Right: Reverse + - Middle: Off + 24323: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 36183 + components: + - type: Transform + pos: -110.5,93.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 35749: + - Left: Forward + - Right: Reverse + - Middle: Off + 35741: + - Left: Forward + - Right: Reverse + - Middle: Off + 35740: + - Left: Forward + - Right: Reverse + - Middle: Off + 17426: + - Left: Forward + - Right: Reverse + - Middle: Off + 35734: + - Left: Forward + - Right: Reverse + - Middle: Off + 35735: + - Left: Forward + - Right: Reverse + - Middle: Off + 12948: + - Left: Forward + - Right: Reverse + - Middle: Off + 35739: + - Left: Forward + - Right: Reverse + - Middle: Off + 35737: + - Left: Forward + - Right: Reverse + - Middle: Off + 35736: + - Left: Forward + - Right: Reverse + - Middle: Off + 17561: + - Left: Forward + - Right: Reverse + - Middle: Off + 35747: + - Left: Forward + - Right: Reverse + - Middle: Off + 35742: + - Left: Forward + - Right: Reverse + - Middle: Off + 35748: + - Left: Forward + - Right: Reverse + - Middle: Off + 3942: + - Left: Forward + - Right: Reverse + - Middle: Off + 37597: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 36184 + components: + - type: Transform + pos: -104.5,93.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 35738: + - Left: Forward + - Right: Reverse + - Middle: Off + 35733: + - Left: Forward + - Right: Reverse + - Middle: Off + 35732: + - Left: Forward + - Right: Reverse + - Middle: Off + 17570: + - Left: Forward + - Right: Reverse + - Middle: Off + 35746: + - Left: Forward + - Right: Reverse + - Middle: Off + 35743: + - Left: Forward + - Right: Reverse + - Middle: Off + 35750: + - Left: Forward + - Right: Reverse + - Middle: Off + 35751: + - Left: Forward + - Right: Reverse + - Middle: Off + 35744: + - Left: Forward + - Right: Reverse + - Middle: Off + 35745: + - Left: Forward + - Right: Reverse + - Middle: Off + 17820: + - Left: Forward + - Right: Reverse + - Middle: Off + 35731: + - Left: Forward + - Right: Reverse + - Middle: Off + 35730: + - Left: Forward + - Right: Reverse + - Middle: Off + 35729: + - Left: Forward + - Right: Reverse + - Middle: Off + 4517: + - Left: Forward + - Right: Reverse + - Middle: Off + 4569: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 43227 + components: + - type: Transform + pos: 48.5,51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17145: + - Left: Forward + - Right: Reverse + - Middle: Off + 5164: + - Left: Forward + - Right: Reverse + - Middle: Off + 5226: + - Left: Forward + - Right: Reverse + - Middle: Off + 23384: + - Left: Forward + - Right: Reverse + - Middle: Off + 4824: + - Left: Forward + - Right: Reverse + - Middle: Off + 23291: + - Left: Forward + - Right: Reverse + - Middle: Off + 4825: + - Left: Forward + - Right: Reverse + - Middle: Off + 7362: + - Left: Forward + - Right: Reverse + - Middle: Off + 4823: + - Left: Forward + - Right: Reverse + - Middle: Off + 4842: + - Left: Forward + - Right: Reverse + - Middle: Off + 5173: + - Left: Forward + - Right: Reverse + - Middle: Off + 4828: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 23448 + components: + - type: Transform + pos: -24.5,198.5 + parent: 2 + - uid: 37052 + components: + - type: Transform + pos: 1.5,0.5 + parent: 36996 +- proto: UniformPrinter + entities: + - uid: 10475 + components: + - type: Transform + pos: -20.5,81.5 + parent: 2 +- proto: UniformShortsRed + entities: + - uid: 1021 + components: + - type: Transform + pos: -80.15831,100.41541 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: -79.681015,100.38168 + parent: 2 + - uid: 20379 + components: + - type: Transform + pos: -79.87222,100.55035 + parent: 2 + - uid: 24114 + components: + - type: Transform + pos: -79.39981,100.55035 + parent: 2 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 38267 + components: + - type: Transform + pos: -8.389982,59.73606 + parent: 2 +- proto: UraniumOre1 + entities: + - uid: 1482 + components: + - type: Transform + pos: -51.365433,-12.3053665 + parent: 2 +- proto: Vaccinator + entities: + - uid: 23638 + components: + - type: Transform + pos: 21.5,190.5 + parent: 2 +- proto: Vape + entities: + - uid: 38590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.074394226,-5.470194 + parent: 37842 +- proto: VariantCubeBox + entities: + - uid: 13184 + components: + - type: Transform + pos: -8.806694,62.205544 + parent: 2 + - uid: 20517 + components: + - type: Transform + pos: -92.64765,167.77615 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 11102 + components: + - type: Transform + pos: -33.5,57.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 22205 + components: + - type: Transform + pos: -102.5,37.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 8895 + components: + - type: Transform + pos: -83.5,81.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + pos: -25.5,61.5 + parent: 2 + - uid: 36570 + components: + - type: Transform + pos: -24.5,97.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 937 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 10550 + components: + - type: Transform + pos: -20.5,83.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 4964 + components: + - type: Transform + pos: -53.5,64.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 13183 + components: + - type: Transform + pos: -13.5,62.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 12972 + components: + - type: Transform + pos: -10.5,61.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 35464 + components: + - type: Transform + pos: -19.5,196.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 35465 + components: + - type: Transform + pos: -19.5,194.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 13364 + components: + - type: Transform + pos: 103.5,49.5 + parent: 2 + - uid: 14362 + components: + - type: Transform + pos: -75.5,91.5 + parent: 2 + - uid: 20936 + components: + - type: Transform + pos: -78.5,157.5 + parent: 2 + - uid: 30693 + components: + - type: Transform + pos: -89.5,47.5 + parent: 2 + - uid: 37421 + components: + - type: Transform + pos: -52.5,91.5 + parent: 2 + - uid: 37422 + components: + - type: Transform + pos: -65.5,75.5 + parent: 2 + - uid: 37423 + components: + - type: Transform + pos: -24.5,74.5 + parent: 2 + - uid: 37430 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 38391 + components: + - type: Transform + pos: -54.5,157.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 4923 + components: + - type: Transform + pos: 108.5,63.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: -64.5,114.5 + parent: 2 +- proto: VendingMachineCola + entities: + - uid: 20849 + components: + - type: Transform + pos: -85.5,178.5 + parent: 2 +- proto: VendingMachineColaBlack + entities: + - uid: 24246 + components: + - type: Transform + pos: -78.5,100.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 12995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,70.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 11418 + components: + - type: Transform + pos: -2.5,78.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 20041 + components: + - type: Transform + pos: -18.5,65.5 + parent: 2 +- proto: VendingMachineDiscount + entities: + - uid: 20554 + components: + - type: Transform + pos: -85.5,177.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 28877 + components: + - type: Transform + pos: -105.5,49.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 28753 + components: + - type: Transform + pos: -100.5,45.5 + parent: 2 +- proto: VendingMachineGeneDrobe + entities: + - uid: 23481 + components: + - type: Transform + pos: -23.5,201.5 + parent: 2 + - uid: 23661 + components: + - type: Transform + pos: 12.5,185.5 + parent: 2 +- proto: VendingMachineHappyHonk + entities: + - uid: 13549 + components: + - type: Transform + pos: -14.5,62.5 + parent: 2 + - uid: 37748 + components: + - type: Transform + pos: -26.5,83.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 13281 + components: + - type: Transform + pos: 1.5,66.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 10763 + components: + - type: Transform + pos: -1.5,82.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 14740 + components: + - type: Transform + pos: -78.5,75.5 + parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 18625 + components: + - type: Transform + pos: -123.5,44.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 4795 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 19492 + components: + - type: Transform + pos: -0.5,202.5 + parent: 2 + - uid: 23207 + components: + - type: Transform + pos: -11.5,194.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 24286 + components: + - type: Transform + pos: -0.5,205.5 + parent: 2 + - uid: 26466 + components: + - type: Transform + pos: -13.5,171.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 11676 + components: + - type: Transform + pos: -8.5,65.5 + parent: 2 +- proto: VendingMachinePwrGame + entities: + - uid: 10805 + components: + - type: Transform + pos: -5.5,78.5 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 20892 + components: + - type: Transform + pos: -73.5,176.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 18516 + components: + - type: Transform + pos: -73.5,175.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 9159 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 20352 + components: + - type: Transform + pos: -89.5,165.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 31464 + components: + - type: Transform + pos: 79.5,63.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 6206 + components: + - type: Transform + pos: 79.5,62.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + pos: -39.5,83.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 11644 + components: + - type: Transform + pos: -7.5,65.5 + parent: 2 +- proto: VendingMachineSnackGreen + entities: + - uid: 20027 + components: + - type: Transform + pos: -83.5,175.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 16415 + components: + - type: Transform + pos: -103.5,64.5 + parent: 2 + - uid: 28196 + components: + - type: Transform + pos: -84.5,145.5 + parent: 2 + - uid: 36847 + components: + - type: Transform + pos: -99.5,145.5 + parent: 2 + - uid: 37223 + components: + - type: Transform + pos: -40.5,174.5 + parent: 2 +- proto: VendingMachineSpaceUp + entities: + - uid: 17163 + components: + - type: Transform + pos: -88.5,77.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 407 + components: + - type: Transform + pos: 67.5,51.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 31790 + components: + - type: Transform + pos: -100.5,51.5 + parent: 2 + - uid: 35578 + components: + - type: Transform + pos: -121.5,94.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1116 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: 88.5,14.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 70.5,30.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: 15.5,176.5 + parent: 2 + - uid: 11757 + components: + - type: Transform + pos: -48.5,101.5 + parent: 2 + - uid: 16086 + components: + - type: Transform + pos: -3.5,1.5 + parent: 13386 + - uid: 17077 + components: + - type: Transform + pos: -11.5,78.5 + parent: 2 + - uid: 22290 + components: + - type: Transform + pos: -81.5,49.5 + parent: 2 + - uid: 24777 + components: + - type: Transform + pos: -100.5,37.5 + parent: 2 + - uid: 28197 + components: + - type: Transform + pos: 79.5,35.5 + parent: 2 + - uid: 30862 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 32280 + components: + - type: Transform + pos: -71.5,145.5 + parent: 2 + - uid: 35569 + components: + - type: Transform + pos: -117.5,37.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 13212 + components: + - type: Transform + pos: -34.5,67.5 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: -63.5,114.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 14767 + components: + - type: Transform + pos: -50.5,67.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 15544 + components: + - type: Transform + pos: -9.5,195.5 + parent: 2 + - uid: 25250 + components: + - type: Transform + pos: 2.5,201.5 + parent: 2 + - uid: 35480 + components: + - type: Transform + pos: -13.5,198.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 8312 + components: + - type: Transform + pos: -62.5,114.5 + parent: 2 + - uid: 22957 + components: + - type: Transform + pos: -16.5,188.5 + parent: 2 + - uid: 23985 + components: + - type: Transform + pos: -23.5,206.5 + parent: 2 + - uid: 36381 + components: + - type: Transform + pos: -12.5,171.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 16880 + components: + - type: Transform + pos: -85.5,79.5 + parent: 2 + - uid: 28839 + components: + - type: Transform + pos: -101.5,45.5 + parent: 2 + - uid: 38090 + components: + - type: Transform + pos: -91.5,47.5 + parent: 2 +- proto: WallmountGeneratorAPUElectronics + entities: + - uid: 43267 + components: + - type: Transform + pos: -125.50791,100.50188 + parent: 2 +- proto: WallPlastitanium + entities: + - uid: 455 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: -64.5,9.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: -65.5,10.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: -65.5,9.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: -65.5,11.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: -66.5,11.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: -66.5,10.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: -68.5,11.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: -69.5,12.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: -69.5,13.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: -70.5,12.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: -70.5,14.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: -70.5,13.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: -71.5,14.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: -71.5,13.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: -62.5,8.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + pos: 47.5,33.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 10967 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: -137.5,89.5 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: -74.5,15.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + pos: -138.5,89.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: -137.5,88.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + pos: -138.5,88.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + pos: -138.5,87.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + pos: -136.5,86.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + pos: -136.5,85.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + pos: -137.5,85.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -137.5,86.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + pos: -136.5,84.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -137.5,84.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: -137.5,87.5 + parent: 2 + - uid: 20278 + components: + - type: Transform + pos: -48.5,181.5 + parent: 2 + - uid: 20283 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 20284 + components: + - type: Transform + pos: -128.5,64.5 + parent: 2 + - uid: 20286 + components: + - type: Transform + pos: -108.5,133.5 + parent: 2 + - uid: 20287 + components: + - type: Transform + pos: -107.5,133.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + pos: -107.5,134.5 + parent: 2 + - uid: 20289 + components: + - type: Transform + pos: -106.5,133.5 + parent: 2 + - uid: 20290 + components: + - type: Transform + pos: -106.5,134.5 + parent: 2 + - uid: 20291 + components: + - type: Transform + pos: -105.5,135.5 + parent: 2 + - uid: 20292 + components: + - type: Transform + pos: -107.5,132.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + pos: -108.5,132.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + pos: -108.5,131.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + pos: -108.5,130.5 + parent: 2 + - uid: 20296 + components: + - type: Transform + pos: -109.5,131.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + pos: -109.5,130.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + pos: -109.5,129.5 + parent: 2 + - uid: 20299 + components: + - type: Transform + pos: -109.5,128.5 + parent: 2 + - uid: 20300 + components: + - type: Transform + pos: -109.5,127.5 + parent: 2 + - uid: 20301 + components: + - type: Transform + pos: -110.5,128.5 + parent: 2 + - uid: 20302 + components: + - type: Transform + pos: -110.5,127.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + pos: -110.5,126.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + pos: -110.5,125.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + pos: -111.5,126.5 + parent: 2 + - uid: 20306 + components: + - type: Transform + pos: -111.5,125.5 + parent: 2 + - uid: 20307 + components: + - type: Transform + pos: -111.5,124.5 + parent: 2 + - uid: 20308 + components: + - type: Transform + pos: -111.5,123.5 + parent: 2 + - uid: 20309 + components: + - type: Transform + pos: -112.5,124.5 + parent: 2 + - uid: 20310 + components: + - type: Transform + pos: -112.5,123.5 + parent: 2 + - uid: 20311 + components: + - type: Transform + pos: -112.5,122.5 + parent: 2 + - uid: 20312 + components: + - type: Transform + pos: -112.5,121.5 + parent: 2 + - uid: 20313 + components: + - type: Transform + pos: -112.5,120.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + pos: -113.5,121.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + pos: -113.5,120.5 + parent: 2 + - uid: 20316 + components: + - type: Transform + pos: -113.5,119.5 + parent: 2 + - uid: 20317 + components: + - type: Transform + pos: -113.5,118.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + pos: -113.5,117.5 + parent: 2 + - uid: 20319 + components: + - type: Transform + pos: -114.5,118.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + pos: -114.5,117.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + pos: -114.5,116.5 + parent: 2 + - uid: 20322 + components: + - type: Transform + pos: -114.5,115.5 + parent: 2 + - uid: 20323 + components: + - type: Transform + pos: -114.5,114.5 + parent: 2 + - uid: 20324 + components: + - type: Transform + pos: -115.5,115.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + pos: -115.5,114.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + pos: -115.5,113.5 + parent: 2 + - uid: 21080 + components: + - type: Transform + pos: -115.5,112.5 + parent: 2 + - uid: 21145 + components: + - type: Transform + pos: -115.5,111.5 + parent: 2 + - uid: 21146 + components: + - type: Transform + pos: -116.5,112.5 + parent: 2 + - uid: 21147 + components: + - type: Transform + pos: -116.5,111.5 + parent: 2 + - uid: 21148 + components: + - type: Transform + pos: -58.5,179.5 + parent: 2 + - uid: 21149 + components: + - type: Transform + pos: -56.5,180.5 + parent: 2 + - uid: 21150 + components: + - type: Transform + pos: -56.5,181.5 + parent: 2 + - uid: 21151 + components: + - type: Transform + pos: -55.5,180.5 + parent: 2 + - uid: 21152 + components: + - type: Transform + pos: -55.5,181.5 + parent: 2 + - uid: 21153 + components: + - type: Transform + pos: -54.5,180.5 + parent: 2 + - uid: 21154 + components: + - type: Transform + pos: -54.5,181.5 + parent: 2 + - uid: 21155 + components: + - type: Transform + pos: -53.5,180.5 + parent: 2 + - uid: 21156 + components: + - type: Transform + pos: -53.5,181.5 + parent: 2 + - uid: 21157 + components: + - type: Transform + pos: -52.5,180.5 + parent: 2 + - uid: 21158 + components: + - type: Transform + pos: -52.5,181.5 + parent: 2 + - uid: 21159 + components: + - type: Transform + pos: -51.5,181.5 + parent: 2 + - uid: 21160 + components: + - type: Transform + pos: -51.5,182.5 + parent: 2 + - uid: 21161 + components: + - type: Transform + pos: -50.5,181.5 + parent: 2 + - uid: 21162 + components: + - type: Transform + pos: -50.5,182.5 + parent: 2 + - uid: 21163 + components: + - type: Transform + pos: -49.5,181.5 + parent: 2 + - uid: 21164 + components: + - type: Transform + pos: -49.5,182.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + pos: -48.5,182.5 + parent: 2 + - uid: 21166 + components: + - type: Transform + pos: -47.5,182.5 + parent: 2 + - uid: 21167 + components: + - type: Transform + pos: -47.5,183.5 + parent: 2 + - uid: 21168 + components: + - type: Transform + pos: -46.5,182.5 + parent: 2 + - uid: 21169 + components: + - type: Transform + pos: -46.5,183.5 + parent: 2 + - uid: 21170 + components: + - type: Transform + pos: -45.5,182.5 + parent: 2 + - uid: 21171 + components: + - type: Transform + pos: -45.5,183.5 + parent: 2 + - uid: 21172 + components: + - type: Transform + pos: -44.5,182.5 + parent: 2 + - uid: 21173 + components: + - type: Transform + pos: -44.5,183.5 + parent: 2 + - uid: 21174 + components: + - type: Transform + pos: -43.5,182.5 + parent: 2 + - uid: 21228 + components: + - type: Transform + pos: -43.5,183.5 + parent: 2 + - uid: 21245 + components: + - type: Transform + pos: -57.5,180.5 + parent: 2 + - uid: 22213 + components: + - type: Transform + pos: -58.5,180.5 + parent: 2 + - uid: 22214 + components: + - type: Transform + pos: -57.5,179.5 + parent: 2 + - uid: 22222 + components: + - type: Transform + pos: -135.5,80.5 + parent: 2 + - uid: 22225 + components: + - type: Transform + pos: -126.5,65.5 + parent: 2 + - uid: 22227 + components: + - type: Transform + pos: -127.5,66.5 + parent: 2 + - uid: 22237 + components: + - type: Transform + pos: -128.5,67.5 + parent: 2 + - uid: 22239 + components: + - type: Transform + pos: -133.5,73.5 + parent: 2 + - uid: 22242 + components: + - type: Transform + pos: -132.5,72.5 + parent: 2 + - uid: 22247 + components: + - type: Transform + pos: -132.5,74.5 + parent: 2 + - uid: 22252 + components: + - type: Transform + pos: -133.5,77.5 + parent: 2 + - uid: 22253 + components: + - type: Transform + pos: -132.5,73.5 + parent: 2 + - uid: 22256 + components: + - type: Transform + pos: -135.5,77.5 + parent: 2 + - uid: 22257 + components: + - type: Transform + pos: -127.5,64.5 + parent: 2 + - uid: 22258 + components: + - type: Transform + pos: -126.5,64.5 + parent: 2 + - uid: 22259 + components: + - type: Transform + pos: -127.5,65.5 + parent: 2 + - uid: 22260 + components: + - type: Transform + pos: -128.5,65.5 + parent: 2 + - uid: 22261 + components: + - type: Transform + pos: -128.5,66.5 + parent: 2 + - uid: 22263 + components: + - type: Transform + pos: -129.5,66.5 + parent: 2 + - uid: 22264 + components: + - type: Transform + pos: -129.5,67.5 + parent: 2 + - uid: 22266 + components: + - type: Transform + pos: -129.5,68.5 + parent: 2 + - uid: 22267 + components: + - type: Transform + pos: -130.5,68.5 + parent: 2 + - uid: 22268 + components: + - type: Transform + pos: -129.5,69.5 + parent: 2 + - uid: 22270 + components: + - type: Transform + pos: -130.5,69.5 + parent: 2 + - uid: 22271 + components: + - type: Transform + pos: -131.5,69.5 + parent: 2 + - uid: 22272 + components: + - type: Transform + pos: -130.5,70.5 + parent: 2 + - uid: 22273 + components: + - type: Transform + pos: -131.5,70.5 + parent: 2 + - uid: 22274 + components: + - type: Transform + pos: -132.5,70.5 + parent: 2 + - uid: 22275 + components: + - type: Transform + pos: -132.5,71.5 + parent: 2 + - uid: 22276 + components: + - type: Transform + pos: -131.5,71.5 + parent: 2 + - uid: 22277 + components: + - type: Transform + pos: -133.5,74.5 + parent: 2 + - uid: 22279 + components: + - type: Transform + pos: -131.5,72.5 + parent: 2 + - uid: 22280 + components: + - type: Transform + pos: -131.5,73.5 + parent: 2 + - uid: 22283 + components: + - type: Transform + pos: -134.5,75.5 + parent: 2 + - uid: 22284 + components: + - type: Transform + pos: -133.5,76.5 + parent: 2 + - uid: 22285 + components: + - type: Transform + pos: -134.5,76.5 + parent: 2 + - uid: 22286 + components: + - type: Transform + pos: -134.5,77.5 + parent: 2 + - uid: 22287 + components: + - type: Transform + pos: -134.5,78.5 + parent: 2 + - uid: 22304 + components: + - type: Transform + pos: -135.5,78.5 + parent: 2 + - uid: 22305 + components: + - type: Transform + pos: -134.5,74.5 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: -135.5,79.5 + parent: 2 + - uid: 22330 + components: + - type: Transform + pos: -134.5,79.5 + parent: 2 + - uid: 22331 + components: + - type: Transform + pos: -134.5,80.5 + parent: 2 + - uid: 22332 + components: + - type: Transform + pos: -130.5,67.5 + parent: 2 + - uid: 22333 + components: + - type: Transform + pos: -133.5,75.5 + parent: 2 + - uid: 22334 + components: + - type: Transform + pos: -42.5,184.5 + parent: 2 + - uid: 22335 + components: + - type: Transform + pos: -42.5,183.5 + parent: 2 + - uid: 22336 + components: + - type: Transform + pos: -41.5,184.5 + parent: 2 + - uid: 22337 + components: + - type: Transform + pos: -41.5,183.5 + parent: 2 + - uid: 22338 + components: + - type: Transform + pos: -40.5,184.5 + parent: 2 + - uid: 22339 + components: + - type: Transform + pos: -40.5,183.5 + parent: 2 + - uid: 22340 + components: + - type: Transform + pos: -39.5,184.5 + parent: 2 + - uid: 22341 + components: + - type: Transform + pos: -39.5,183.5 + parent: 2 + - uid: 22342 + components: + - type: Transform + pos: -38.5,184.5 + parent: 2 + - uid: 22343 + components: + - type: Transform + pos: -38.5,183.5 + parent: 2 + - uid: 22344 + components: + - type: Transform + pos: -37.5,184.5 + parent: 2 + - uid: 22345 + components: + - type: Transform + pos: -37.5,183.5 + parent: 2 + - uid: 22346 + components: + - type: Transform + pos: -36.5,184.5 + parent: 2 + - uid: 22347 + components: + - type: Transform + pos: -36.5,183.5 + parent: 2 + - uid: 22348 + components: + - type: Transform + pos: -35.5,184.5 + parent: 2 + - uid: 22349 + components: + - type: Transform + pos: -35.5,183.5 + parent: 2 + - uid: 24800 + components: + - type: Transform + pos: -34.5,184.5 + parent: 2 + - uid: 24808 + components: + - type: Transform + pos: -34.5,183.5 + parent: 2 + - uid: 24809 + components: + - type: Transform + pos: -33.5,184.5 + parent: 2 + - uid: 25181 + components: + - type: Transform + pos: -33.5,183.5 + parent: 2 + - uid: 25332 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 26344 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 26345 + components: + - type: Transform + pos: -72.5,14.5 + parent: 2 + - uid: 26374 + components: + - type: Transform + pos: -116.5,108.5 + parent: 2 + - uid: 26487 + components: + - type: Transform + pos: -116.5,109.5 + parent: 2 + - uid: 27132 + components: + - type: Transform + pos: -117.5,110.5 + parent: 2 + - uid: 27199 + components: + - type: Transform + pos: -72.5,15.5 + parent: 2 + - uid: 27200 + components: + - type: Transform + pos: -73.5,14.5 + parent: 2 + - uid: 27201 + components: + - type: Transform + pos: -73.5,15.5 + parent: 2 + - uid: 27228 + components: + - type: Transform + pos: -74.5,16.5 + parent: 2 + - uid: 27229 + components: + - type: Transform + pos: -73.5,16.5 + parent: 2 + - uid: 27230 + components: + - type: Transform + pos: -75.5,16.5 + parent: 2 + - uid: 27231 + components: + - type: Transform + pos: -75.5,17.5 + parent: 2 + - uid: 27232 + components: + - type: Transform + pos: -76.5,16.5 + parent: 2 + - uid: 27233 + components: + - type: Transform + pos: -76.5,17.5 + parent: 2 + - uid: 27234 + components: + - type: Transform + pos: -76.5,18.5 + parent: 2 + - uid: 27235 + components: + - type: Transform + pos: -77.5,18.5 + parent: 2 + - uid: 27236 + components: + - type: Transform + pos: -77.5,17.5 + parent: 2 + - uid: 27237 + components: + - type: Transform + pos: -77.5,19.5 + parent: 2 + - uid: 27238 + components: + - type: Transform + pos: -78.5,19.5 + parent: 2 + - uid: 27239 + components: + - type: Transform + pos: -78.5,18.5 + parent: 2 + - uid: 27240 + components: + - type: Transform + pos: -79.5,20.5 + parent: 2 + - uid: 27241 + components: + - type: Transform + pos: -79.5,19.5 + parent: 2 + - uid: 27242 + components: + - type: Transform + pos: -80.5,20.5 + parent: 2 + - uid: 27243 + components: + - type: Transform + pos: -80.5,19.5 + parent: 2 + - uid: 27244 + components: + - type: Transform + pos: -80.5,21.5 + parent: 2 + - uid: 27245 + components: + - type: Transform + pos: -81.5,21.5 + parent: 2 + - uid: 27246 + components: + - type: Transform + pos: -81.5,20.5 + parent: 2 + - uid: 27247 + components: + - type: Transform + pos: -81.5,22.5 + parent: 2 + - uid: 27248 + components: + - type: Transform + pos: -82.5,22.5 + parent: 2 + - uid: 27249 + components: + - type: Transform + pos: -82.5,21.5 + parent: 2 + - uid: 27250 + components: + - type: Transform + pos: -82.5,23.5 + parent: 2 + - uid: 27251 + components: + - type: Transform + pos: -83.5,23.5 + parent: 2 + - uid: 27252 + components: + - type: Transform + pos: -83.5,22.5 + parent: 2 + - uid: 27253 + components: + - type: Transform + pos: -83.5,24.5 + parent: 2 + - uid: 27254 + components: + - type: Transform + pos: -84.5,24.5 + parent: 2 + - uid: 27255 + components: + - type: Transform + pos: -84.5,23.5 + parent: 2 + - uid: 28326 + components: + - type: Transform + pos: -135.5,81.5 + parent: 2 + - uid: 28327 + components: + - type: Transform + pos: -135.5,82.5 + parent: 2 + - uid: 28329 + components: + - type: Transform + pos: -136.5,81.5 + parent: 2 + - uid: 28409 + components: + - type: Transform + pos: -135.5,83.5 + parent: 2 + - uid: 28421 + components: + - type: Transform + pos: -136.5,83.5 + parent: 2 + - uid: 28425 + components: + - type: Transform + pos: -136.5,82.5 + parent: 2 + - uid: 29037 + components: + - type: Transform + pos: -116.5,110.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 5 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: -84.5,92.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 32.5,64.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 31.5,63.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 33.5,64.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 76.5,16.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 31.5,62.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,20.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -37.5,1.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 34.5,64.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: 35.5,64.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: -62.5,125.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: -60.5,125.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 36.5,64.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 73.5,22.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 50.5,57.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 67.5,62.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 37.5,64.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 38.5,64.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 34.5,62.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -56.5,16.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -55.5,16.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -54.5,16.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -53.5,16.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: -52.5,14.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -52.5,10.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -61.5,7.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -61.5,8.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -61.5,4.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: -61.5,3.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: -61.5,2.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: -61.5,1.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: -58.5,3.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -58.5,1.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -60.5,-0.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -61.5,-0.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: -58.5,-0.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: -55.5,-5.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -64.5,-11.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -62.5,-0.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: -68.5,-7.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -68.5,-10.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: -68.5,-9.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: -64.5,-12.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: -64.5,-13.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: -64.5,-14.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: -68.5,-14.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: -68.5,-13.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -68.5,-12.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -68.5,-11.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -72.5,-7.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -72.5,-9.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: -72.5,-10.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -69.5,-10.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: -70.5,-10.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: -71.5,-10.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: -63.5,125.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 38.5,58.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: -58.5,125.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 58.5,28.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -56.5,125.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -18.5,87.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -18.5,86.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -57.5,125.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -58.5,135.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -54.5,150.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: -51.5,160.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: -52.5,161.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -48.5,59.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 114.5,56.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -56.5,135.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: -56.5,133.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -57.5,135.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: -56.5,150.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 80.5,50.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -75.5,160.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 74.5,16.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: -137.5,109.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 71.5,70.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 73.5,16.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -56.5,134.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -61.5,125.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -136.5,110.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -56.5,126.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -126.5,58.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 77.5,16.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: 58.5,30.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -17.5,104.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -6.5,89.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -16.5,90.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -85.5,92.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -53.5,60.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 36.5,58.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 33.5,58.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: -68.5,-3.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: -103.5,150.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: -57.5,133.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: 35.5,58.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: 34.5,58.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -51.5,161.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 33.5,62.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: -57.5,127.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: -131.5,37.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: -101.5,97.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 58.5,31.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: 114.5,50.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -86.5,92.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: -56.5,127.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: 99.5,60.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 68.5,37.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 81.5,23.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: -129.5,54.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: -67.5,125.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: -48.5,58.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: -67.5,127.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: -58.5,12.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: -63.5,135.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,70.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,71.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: -98.5,98.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: -51.5,61.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: -83.5,92.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: -24.5,95.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: -89.5,86.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: -54.5,60.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: -5.5,89.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: -114.5,27.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: -67.5,135.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,70.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: -137.5,90.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -93.5,91.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: -91.5,91.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,71.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,74.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,70.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 78.5,17.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 72.5,18.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 72.5,19.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: -58.5,16.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: -52.5,60.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: -93.5,92.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: -93.5,93.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: -91.5,93.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: -100.5,101.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: -16.5,104.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: -58.5,13.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: -83.5,93.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: -58.5,15.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: -55.5,9.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: -60.5,11.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: -59.5,11.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: -75.5,142.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: -76.5,143.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: -78.5,140.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: -129.5,53.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: -125.5,57.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,36.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,35.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: -91.5,92.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 69.5,37.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 68.5,31.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 69.5,32.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: -87.5,92.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: -88.5,92.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 64.5,45.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: 50.5,44.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: 51.5,44.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: 52.5,44.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: 77.5,32.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: 58.5,68.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: 57.5,68.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: 56.5,68.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -89.5,92.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,35.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: 41.5,59.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: 40.5,59.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: 81.5,50.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 75.5,16.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: 50.5,63.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: 46.5,59.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: 48.5,59.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: 41.5,66.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: 43.5,63.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: 49.5,59.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: 48.5,63.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: 44.5,59.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: 50.5,56.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: 43.5,59.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: 56.5,37.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: 41.5,65.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: 56.5,58.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: 56.5,59.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: 56.5,61.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: 56.5,62.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: 56.5,63.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: 56.5,64.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: 51.5,63.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,36.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,35.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: 60.5,37.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: 63.5,37.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: 46.5,63.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: 50.5,59.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: 47.5,63.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 55.5,46.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: 53.5,46.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: 57.5,57.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: 52.5,58.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: 64.5,68.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: 64.5,67.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: 67.5,64.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: 67.5,63.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: 66.5,64.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 66.5,63.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: 65.5,64.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: 65.5,63.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: 64.5,63.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: 63.5,64.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: 62.5,64.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: 62.5,63.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 61.5,64.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: 61.5,63.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 60.5,64.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: 59.5,64.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: 58.5,64.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: 57.5,64.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: 57.5,63.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: 57.5,58.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: 54.5,58.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: 55.5,58.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: 78.5,67.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: 78.5,68.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: 80.5,68.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: 79.5,68.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: 51.5,59.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: 58.5,57.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: 58.5,56.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: 59.5,57.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: 59.5,56.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: 60.5,57.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: 60.5,56.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: 61.5,57.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: 62.5,57.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 62.5,56.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 63.5,57.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: 63.5,56.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: 64.5,57.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: 64.5,56.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: 59.5,68.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: 78.5,41.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: 78.5,43.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: 73.5,42.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: 59.5,51.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: 59.5,50.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: 59.5,54.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: 59.5,49.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: 59.5,53.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 59.5,52.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: 59.5,55.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: 60.5,53.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: 62.5,53.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: 61.5,53.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: 61.5,50.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: 60.5,50.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: 89.5,64.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: 89.5,63.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: 90.5,64.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: 90.5,63.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: 91.5,63.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: 62.5,50.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 64.5,47.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: 91.5,62.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: 92.5,62.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: 91.5,60.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: 92.5,60.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: 93.5,60.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: 94.5,60.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: 95.5,60.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: 96.5,60.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: 97.5,60.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: 98.5,60.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: 100.5,60.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: 101.5,60.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: 101.5,61.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: 101.5,62.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: 101.5,63.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: 102.5,63.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: 102.5,64.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: 102.5,65.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: 104.5,63.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: 104.5,64.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: 104.5,65.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: 104.5,66.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: 106.5,63.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: 106.5,64.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: 106.5,65.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: 106.5,66.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: 107.5,64.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: 108.5,64.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: 109.5,64.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: 110.5,64.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 110.5,63.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: 110.5,65.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: 110.5,66.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: 112.5,63.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: 112.5,64.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: 112.5,65.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: 112.5,66.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: 114.5,66.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: 114.5,65.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: 114.5,64.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: 114.5,63.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: 115.5,63.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: 115.5,62.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: 115.5,61.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: 115.5,60.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: 116.5,60.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: 117.5,60.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 117.5,59.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: 118.5,59.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: 119.5,59.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: 119.5,57.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: 118.5,57.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: 117.5,57.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: 117.5,56.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 116.5,56.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 115.5,56.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: 115.5,50.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: 65.5,41.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: 64.5,41.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: 116.5,50.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: 117.5,50.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: 117.5,49.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: 118.5,49.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: 119.5,49.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: 113.5,50.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: 113.5,56.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: 64.5,42.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: 112.5,56.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: 111.5,56.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: 107.5,56.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: 103.5,56.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: 102.5,56.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: 101.5,56.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: 100.5,56.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: 99.5,56.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: 98.5,56.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: 74.5,42.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 100.5,50.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 101.5,50.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: 102.5,50.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: 103.5,50.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: 111.5,50.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: 112.5,50.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: 74.5,41.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: 68.5,41.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: 68.5,45.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: 67.5,60.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: 67.5,59.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: 55.5,60.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: 68.5,64.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: 74.5,45.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: 82.5,34.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: 75.5,37.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,72.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: 82.5,37.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: 82.5,36.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: 82.5,35.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: 82.5,33.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: 84.5,33.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 84.5,34.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 84.5,35.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 84.5,36.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: 84.5,37.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: 85.5,37.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: 86.5,37.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 91.5,42.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: 91.5,43.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 91.5,44.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: 91.5,45.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 91.5,46.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: 92.5,46.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: 68.5,18.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: 94.5,46.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: 95.5,46.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: 96.5,46.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: 97.5,46.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: 98.5,46.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: 99.5,46.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: 100.5,46.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: 101.5,46.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: 102.5,46.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 69.5,36.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: 102.5,45.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: 102.5,44.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: 103.5,44.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: 104.5,44.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 104.5,43.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 104.5,42.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 104.5,41.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 104.5,40.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 106.5,40.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 106.5,41.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: 106.5,42.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 106.5,43.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 106.5,44.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 72.5,17.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 72.5,16.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 111.5,42.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 111.5,44.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 111.5,43.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 111.5,41.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: 111.5,40.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: 113.5,40.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: 113.5,41.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: 113.5,42.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: 113.5,43.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 113.5,44.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 114.5,44.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: 115.5,44.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: 115.5,46.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 115.5,45.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: 116.5,46.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 117.5,46.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 117.5,47.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 118.5,47.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: 119.5,47.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: 55.5,59.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: 50.5,58.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: 55.5,62.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: 61.5,68.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: 60.5,68.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: 4.5,89.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: -89.5,91.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: 55.5,63.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: 43.5,66.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: 41.5,64.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 43.5,65.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: 39.5,63.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: 73.5,45.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: 72.5,45.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: 78.5,45.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: 77.5,41.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: 78.5,42.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: 82.5,53.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: -77.5,41.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 83.5,49.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 83.5,50.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 83.5,51.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 83.5,52.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: 83.5,53.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 83.5,57.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: 83.5,56.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 83.5,55.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 83.5,54.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: 82.5,50.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: 75.5,61.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: 75.5,59.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: 75.5,62.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: 75.5,64.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: 74.5,64.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: 80.5,62.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: 80.5,61.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: 80.5,64.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: 76.5,64.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: 78.5,64.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: 80.5,63.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: 77.5,64.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 79.5,64.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 89.5,62.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 90.5,62.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: 78.5,19.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: -16.5,170.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: 83.5,48.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: 81.5,59.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: 88.5,62.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: 85.5,62.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: 87.5,62.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: 84.5,62.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: 98.5,50.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: 99.5,50.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: 107.5,50.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 91.5,52.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: 91.5,50.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: 92.5,50.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: 91.5,54.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: 91.5,56.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: 92.5,56.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: 64.5,65.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: 81.5,56.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: 67.5,56.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: -67.5,133.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 41.5,67.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: 44.5,47.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: 81.5,47.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: 68.5,56.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: 74.5,56.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: 51.5,46.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: -131.5,29.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: -131.5,46.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: 79.5,56.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: 75.5,56.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 78.5,56.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: 75.5,63.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -131.5,47.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: 75.5,60.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 83.5,59.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 83.5,58.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 82.5,59.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,70.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: 78.5,65.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: 63.5,47.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 65.5,45.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: -107.5,104.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,70.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: -128.5,110.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -129.5,110.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -144.5,104.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: -131.5,104.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: -135.5,104.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -136.5,104.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: -130.5,104.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -137.5,104.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 59.5,45.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: -138.5,104.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 58.5,63.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 59.5,63.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: -51.5,58.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: -51.5,60.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: -51.5,57.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 41.5,63.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: 60.5,63.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: -68.5,126.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: 39.5,59.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: -134.5,37.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: -68.5,127.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: -68.5,133.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: -51.5,59.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: 55.5,61.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,73.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: 57.5,56.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: 44.5,50.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: -138.5,110.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: -68.5,134.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: 56.5,48.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: 56.5,57.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: 43.5,64.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: 50.5,46.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 52.5,46.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: 54.5,46.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: 43.5,67.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: 63.5,68.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: 84.5,61.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: 83.5,61.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: 82.5,61.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: 81.5,61.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: 84.5,63.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: 84.5,64.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 83.5,64.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: 81.5,64.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: 5.5,89.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: -20.5,60.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -102.5,53.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -13.5,202.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: 78.5,16.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -14.5,98.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: -21.5,160.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: 92.5,55.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,28.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: 107.5,49.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: -17.5,208.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: 92.5,51.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: 20.5,170.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: 4.5,78.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -66.5,149.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: 112.5,49.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -18.5,208.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 102.5,66.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: -101.5,68.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: -101.5,67.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -102.5,67.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: -103.5,67.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -103.5,66.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: 56.5,52.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: 50.5,54.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: -78.5,139.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: 44.5,52.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 39.5,60.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 62.5,68.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 44.5,57.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: -15.5,166.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: -89.5,56.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: -90.5,55.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: -90.5,56.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: 48.5,54.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: 50.5,55.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 45.5,54.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: 47.5,54.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: 85.5,12.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: 80.5,32.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: 69.5,19.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: 22.5,170.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: 68.5,16.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: 71.5,16.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: 68.5,17.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 74.5,22.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: 23.5,172.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 73.5,24.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: 70.5,31.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: 68.5,24.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 67.5,24.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 66.5,24.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,28.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: 56.5,28.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 69.5,25.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: 72.5,25.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: 63.5,36.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: 23.5,173.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: -20.5,207.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: 23.5,170.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 66.5,19.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 83.5,19.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 83.5,20.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: 83.5,18.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: 83.5,17.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: 83.5,16.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: 83.5,15.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: 83.5,14.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: 84.5,20.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: 84.5,19.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: 84.5,18.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: 84.5,17.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: 84.5,16.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: 84.5,15.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: 84.5,14.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: 84.5,13.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: 85.5,13.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: 85.5,14.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: 86.5,12.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: 86.5,13.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: 87.5,12.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: 87.5,13.5 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: 88.5,12.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: 88.5,13.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: 89.5,12.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: 89.5,13.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: 90.5,12.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: 90.5,13.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: 91.5,13.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: 91.5,14.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: 92.5,13.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: 92.5,14.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 93.5,14.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: 93.5,15.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: 93.5,16.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: 93.5,17.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: 93.5,18.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: 93.5,19.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: 92.5,15.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: 92.5,16.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: 92.5,17.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: 92.5,18.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: 92.5,19.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: 92.5,20.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: 92.5,21.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: 91.5,20.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: 91.5,21.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: 89.5,21.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: 90.5,21.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 90.5,22.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: 91.5,22.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: 87.5,21.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: 86.5,21.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: 85.5,21.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: 85.5,22.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: 85.5,20.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: 84.5,21.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: 86.5,23.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 86.5,24.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 87.5,25.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 89.5,25.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 90.5,25.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: 90.5,24.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: 90.5,23.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,198.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: 67.5,19.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: -102.5,55.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: -100.5,56.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 6.5,82.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: 74.5,37.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: -98.5,52.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: 21.5,170.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: -19.5,207.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: -11.5,166.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 68.5,19.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 23.5,171.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: 71.5,19.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: 44.5,54.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 44.5,55.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: 49.5,54.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: 91.5,51.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: 91.5,55.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: 93.5,46.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: 80.5,47.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: -22.5,205.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: 32.5,58.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: 56.5,56.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: 72.5,22.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: -147.5,104.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: 78.5,18.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: 75.5,22.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + pos: -53.5,170.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: 81.5,60.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: -10.5,166.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,126.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,134.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,127.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: 73.5,56.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: 73.5,32.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: 64.5,60.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: 63.5,33.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: 63.5,31.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 63.5,32.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: 73.5,33.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: 73.5,37.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: 49.5,63.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: -137.5,105.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,127.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: 46.5,54.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,127.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: 70.5,56.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -22.5,204.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,128.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,129.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: 73.5,35.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,130.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,131.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,132.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,133.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,133.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: -18.5,202.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,133.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,129.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,128.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: 73.5,36.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: 73.5,34.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,131.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,132.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: 82.5,56.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,133.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,127.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,135.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,135.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,135.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,136.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,136.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,149.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,149.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,127.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,132.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,199.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,173.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,172.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,132.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,52.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,153.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,157.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,153.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,155.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,156.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + pos: 57.5,23.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: 69.5,26.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -114.5,33.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + pos: 73.5,26.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,33.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: 58.5,26.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,33.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,33.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,33.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,33.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,30.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,23.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,25.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,59.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,60.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,61.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: -32.5,99.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 73.5,25.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,90.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: -31.5,195.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: -33.5,197.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: -31.5,196.5 + parent: 2 + - uid: 8543 + components: + - type: Transform + pos: -32.5,197.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: -31.5,194.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: -31.5,197.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,89.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,90.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,90.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,90.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,87.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,88.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 55.5,20.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: 58.5,27.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: -108.5,101.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + pos: -16.5,166.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 8671 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: 73.5,31.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,60.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,59.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + pos: -31.5,99.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -51.5,82.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: -52.5,84.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,174.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,128.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,133.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,128.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,79.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,79.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,79.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,79.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,79.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,79.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,79.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,78.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,73.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,72.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,72.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,72.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,72.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,72.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,72.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,72.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,76.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,77.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,78.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,72.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,73.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,74.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,73.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,74.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,75.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + pos: -113.5,101.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: -112.5,101.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + pos: -18.5,203.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: -104.5,101.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + pos: -67.5,113.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + pos: -59.5,111.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + pos: -71.5,113.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + pos: -59.5,112.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: -59.5,110.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + pos: -68.5,113.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: 10.5,69.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + pos: -21.5,85.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + pos: -20.5,85.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + pos: -19.5,85.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + pos: -18.5,85.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + pos: -18.5,88.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + pos: -17.5,88.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + pos: -16.5,88.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: -15.5,88.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: -14.5,88.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + pos: -14.5,85.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + pos: -13.5,85.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: -12.5,85.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + pos: -11.5,85.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + pos: -10.5,85.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + pos: -9.5,85.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + pos: -8.5,85.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: -8.5,84.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + pos: -8.5,83.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + pos: -8.5,81.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + pos: -8.5,80.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + pos: -8.5,79.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: -8.5,78.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: -8.5,77.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + pos: -8.5,76.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + pos: -9.5,76.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + pos: -13.5,76.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + pos: -14.5,76.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: -14.5,78.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + pos: -14.5,79.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: -15.5,80.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: -20.5,80.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + pos: -21.5,80.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: -21.5,81.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: -21.5,83.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: -21.5,84.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + pos: -21.5,88.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + pos: -21.5,86.5 + parent: 2 + - uid: 10477 + components: + - type: Transform + pos: -21.5,87.5 + parent: 2 + - uid: 10480 + components: + - type: Transform + pos: -20.5,88.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + pos: -19.5,88.5 + parent: 2 + - uid: 10556 + components: + - type: Transform + pos: -22.5,163.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + pos: -19.5,203.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + pos: -57.5,106.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + pos: -95.5,143.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + pos: -20.5,203.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + pos: -131.5,48.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + pos: -9.5,172.5 + parent: 2 + - uid: 10813 + components: + - type: Transform + pos: -16.5,100.5 + parent: 2 + - uid: 10820 + components: + - type: Transform + pos: -15.5,96.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + pos: -34.5,193.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + pos: -57.5,104.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + pos: -16.5,172.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + pos: -12.5,163.5 + parent: 2 + - uid: 10861 + components: + - type: Transform + pos: -11.5,163.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: -35.5,92.5 + parent: 2 + - uid: 10871 + components: + - type: Transform + pos: 2.5,89.5 + parent: 2 + - uid: 10872 + components: + - type: Transform + pos: 3.5,89.5 + parent: 2 + - uid: 10875 + components: + - type: Transform + pos: -20.5,103.5 + parent: 2 + - uid: 10889 + components: + - type: Transform + pos: -19.5,106.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + pos: -20.5,104.5 + parent: 2 + - uid: 10891 + components: + - type: Transform + pos: -19.5,105.5 + parent: 2 + - uid: 10892 + components: + - type: Transform + pos: -19.5,104.5 + parent: 2 + - uid: 10893 + components: + - type: Transform + pos: -17.5,105.5 + parent: 2 + - uid: 10894 + components: + - type: Transform + pos: -17.5,106.5 + parent: 2 + - uid: 10902 + components: + - type: Transform + pos: -16.5,91.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + pos: -15.5,90.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: -14.5,96.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + pos: -12.5,100.5 + parent: 2 + - uid: 10910 + components: + - type: Transform + pos: -16.5,96.5 + parent: 2 + - uid: 10914 + components: + - type: Transform + pos: -16.5,95.5 + parent: 2 + - uid: 10935 + components: + - type: Transform + pos: 3.5,84.5 + parent: 2 + - uid: 10938 + components: + - type: Transform + pos: -55.5,61.5 + parent: 2 + - uid: 10943 + components: + - type: Transform + pos: -16.5,102.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + pos: -15.5,172.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + pos: -7.5,60.5 + parent: 2 + - uid: 11011 + components: + - type: Transform + pos: -30.5,60.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + pos: -10.5,60.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + pos: -11.5,60.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + pos: -12.5,60.5 + parent: 2 + - uid: 11064 + components: + - type: Transform + pos: -28.5,60.5 + parent: 2 + - uid: 11065 + components: + - type: Transform + pos: -29.5,60.5 + parent: 2 + - uid: 11070 + components: + - type: Transform + pos: -16.5,101.5 + parent: 2 + - uid: 11071 + components: + - type: Transform + pos: -6.5,163.5 + parent: 2 + - uid: 11076 + components: + - type: Transform + pos: -23.5,60.5 + parent: 2 + - uid: 11079 + components: + - type: Transform + pos: -23.5,163.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + pos: -18.5,61.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + pos: -18.5,60.5 + parent: 2 + - uid: 11103 + components: + - type: Transform + pos: -20.5,59.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: -33.5,56.5 + parent: 2 + - uid: 11141 + components: + - type: Transform + pos: -30.5,96.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: -22.5,61.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: -17.5,61.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + pos: -27.5,60.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: -22.5,60.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: -33.5,61.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: -30.5,61.5 + parent: 2 + - uid: 11225 + components: + - type: Transform + pos: 63.5,35.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + pos: -15.5,98.5 + parent: 2 + - uid: 11259 + components: + - type: Transform + pos: -21.5,203.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: -31.5,193.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: -131.5,49.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: -31.5,61.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + pos: -18.5,59.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: -22.5,59.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + pos: -38.5,82.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + pos: -42.5,85.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + pos: -40.5,76.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + pos: -38.5,85.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: -38.5,80.5 + parent: 2 + - uid: 11559 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + pos: -42.5,82.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + pos: -42.5,80.5 + parent: 2 + - uid: 11590 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 11618 + components: + - type: Transform + pos: -49.5,102.5 + parent: 2 + - uid: 11623 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 11627 + components: + - type: Transform + pos: -65.5,62.5 + parent: 2 + - uid: 11658 + components: + - type: Transform + pos: -131.5,44.5 + parent: 2 + - uid: 11670 + components: + - type: Transform + pos: 3.5,86.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: -41.5,96.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: -42.5,96.5 + parent: 2 + - uid: 11693 + components: + - type: Transform + pos: -43.5,96.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: -39.5,96.5 + parent: 2 + - uid: 11695 + components: + - type: Transform + pos: -38.5,96.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + pos: -37.5,96.5 + parent: 2 + - uid: 11711 + components: + - type: Transform + pos: 3.5,63.5 + parent: 2 + - uid: 11713 + components: + - type: Transform + pos: -131.5,43.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + pos: -34.5,56.5 + parent: 2 + - uid: 11732 + components: + - type: Transform + pos: -106.5,65.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: -35.5,56.5 + parent: 2 + - uid: 11760 + components: + - type: Transform + pos: -48.5,106.5 + parent: 2 + - uid: 11767 + components: + - type: Transform + pos: -94.5,143.5 + parent: 2 + - uid: 11770 + components: + - type: Transform + pos: 4.5,63.5 + parent: 2 + - uid: 11785 + components: + - type: Transform + pos: 5.5,63.5 + parent: 2 + - uid: 11910 + components: + - type: Transform + pos: -63.5,62.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + pos: -34.5,92.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + pos: -33.5,92.5 + parent: 2 + - uid: 11970 + components: + - type: Transform + pos: -36.5,93.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: -31.5,92.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + pos: -32.5,92.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + pos: -26.5,92.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + pos: -25.5,92.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: -24.5,92.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: -23.5,92.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: -22.5,92.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + pos: -21.5,92.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: -20.5,92.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + pos: 3.5,87.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + pos: -20.5,102.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + pos: -12.5,90.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + pos: -13.5,90.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: -16.5,103.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + pos: -20.5,97.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + pos: -21.5,97.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + pos: 10.5,67.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + pos: -105.5,65.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + pos: -65.5,61.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -67.5,64.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: -65.5,63.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + pos: -69.5,64.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: -70.5,64.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + pos: -71.5,64.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + pos: 64.5,64.5 + parent: 2 + - uid: 12133 + components: + - type: Transform + pos: 4.5,82.5 + parent: 2 + - uid: 12137 + components: + - type: Transform + pos: -40.5,56.5 + parent: 2 + - uid: 12139 + components: + - type: Transform + pos: -37.5,56.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + pos: -30.5,59.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + pos: -39.5,56.5 + parent: 2 + - uid: 12156 + components: + - type: Transform + pos: -38.5,56.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + pos: 10.5,68.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + pos: -81.5,60.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + pos: -63.5,60.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + pos: -22.5,203.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + pos: 6.5,63.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: -9.5,60.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + pos: -8.5,60.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: 4.5,83.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + pos: 3.5,83.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + pos: -36.5,92.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,15.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,17.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,17.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,16.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + pos: 5.5,87.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + pos: -126.5,57.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + pos: -16.5,167.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + pos: -13.5,203.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + pos: -18.5,206.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + pos: -18.5,207.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + pos: -16.5,208.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + pos: -15.5,208.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + pos: -14.5,208.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + pos: -13.5,208.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + pos: -13.5,207.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + pos: -74.5,43.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + pos: -77.5,43.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + pos: -77.5,39.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + pos: -32.5,193.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + pos: -32.5,100.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + pos: -136.5,90.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + pos: -107.5,102.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + pos: -107.5,101.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + pos: -145.5,104.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + pos: 44.5,63.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + pos: -147.5,90.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: -82.5,60.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + pos: -14.5,90.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + pos: -16.5,168.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + pos: -80.5,60.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: 44.5,58.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + pos: -130.5,87.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: -68.5,64.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + pos: 9.5,72.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + pos: 2.5,63.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + pos: -59.5,114.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + pos: -130.5,37.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + pos: 2.5,65.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + pos: -16.5,169.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + pos: -33.5,101.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + pos: -25.5,95.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + pos: 10.5,70.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: 10.5,71.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: 10.5,72.5 + parent: 2 + - uid: 13320 + components: + - type: Transform + pos: 5.5,78.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: -3.5,89.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + pos: -129.5,101.5 + parent: 2 + - uid: 13426 + components: + - type: Transform + pos: -59.5,109.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + pos: -20.5,94.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + pos: -20.5,96.5 + parent: 2 + - uid: 13434 + components: + - type: Transform + pos: -20.5,93.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + pos: -13.5,96.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + pos: -13.5,98.5 + parent: 2 + - uid: 13437 + components: + - type: Transform + pos: -12.5,98.5 + parent: 2 + - uid: 13438 + components: + - type: Transform + pos: -13.5,100.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + pos: -14.5,100.5 + parent: 2 + - uid: 13440 + components: + - type: Transform + pos: -15.5,100.5 + parent: 2 + - uid: 13441 + components: + - type: Transform + pos: -10.5,89.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + pos: -2.5,89.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + pos: -1.5,89.5 + parent: 2 + - uid: 13456 + components: + - type: Transform + pos: -11.5,89.5 + parent: 2 + - uid: 13457 + components: + - type: Transform + pos: -12.5,89.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + pos: -4.5,89.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + pos: -12.5,96.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + pos: -20.5,101.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + pos: -22.5,101.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: -23.5,101.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + pos: -30.5,99.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + pos: -30.5,98.5 + parent: 2 + - uid: 13477 + components: + - type: Transform + pos: -31.5,100.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + pos: -34.5,106.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: -23.5,97.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + pos: -22.5,97.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + pos: -33.5,102.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + pos: -32.5,101.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + pos: -34.5,103.5 + parent: 2 + - uid: 13502 + components: + - type: Transform + pos: -34.5,102.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + pos: -34.5,107.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + pos: -46.5,107.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: -46.5,106.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + pos: -46.5,105.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: -46.5,104.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: -46.5,103.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + pos: -46.5,102.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: -47.5,106.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: -45.5,102.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + pos: -44.5,102.5 + parent: 2 + - uid: 13517 + components: + - type: Transform + pos: -43.5,102.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + pos: -42.5,102.5 + parent: 2 + - uid: 13519 + components: + - type: Transform + pos: -43.5,101.5 + parent: 2 + - uid: 13520 + components: + - type: Transform + pos: -43.5,100.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + pos: -38.5,102.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + pos: -37.5,102.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: -36.5,102.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: -35.5,102.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + pos: -37.5,101.5 + parent: 2 + - uid: 13528 + components: + - type: Transform + pos: -43.5,98.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + pos: -36.5,96.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + pos: -35.5,96.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + pos: -34.5,96.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + pos: -33.5,95.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: -34.5,95.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + pos: -32.5,95.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + pos: -31.5,95.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: -30.5,95.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + pos: -29.5,95.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: -27.5,95.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + pos: -26.5,95.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: -43.5,97.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: -28.5,95.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: -48.5,102.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: -49.5,101.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: -49.5,99.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: -49.5,98.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: -49.5,103.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + pos: -45.5,106.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + pos: -45.5,103.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: -35.5,106.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: -35.5,103.5 + parent: 2 + - uid: 13644 + components: + - type: Transform + pos: -23.5,98.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + pos: -20.5,100.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + pos: -33.5,107.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + pos: -7.5,58.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: -6.5,58.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + pos: -13.5,206.5 + parent: 2 + - uid: 13715 + components: + - type: Transform + pos: -49.5,105.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: -22.5,206.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: -75.5,43.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + pos: -23.5,96.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + pos: -54.5,92.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + pos: -55.5,92.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: -56.5,92.5 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: -56.5,93.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + pos: -56.5,94.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + pos: -56.5,95.5 + parent: 2 + - uid: 13770 + components: + - type: Transform + pos: -56.5,96.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + pos: -57.5,96.5 + parent: 2 + - uid: 13772 + components: + - type: Transform + pos: -57.5,97.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + pos: -57.5,99.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + pos: -57.5,100.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: -58.5,100.5 + parent: 2 + - uid: 13777 + components: + - type: Transform + pos: -58.5,101.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + pos: -58.5,102.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: -58.5,103.5 + parent: 2 + - uid: 13780 + components: + - type: Transform + pos: -58.5,104.5 + parent: 2 + - uid: 13781 + components: + - type: Transform + pos: -69.5,113.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + pos: -57.5,105.5 + parent: 2 + - uid: 13784 + components: + - type: Transform + pos: -57.5,108.5 + parent: 2 + - uid: 13790 + components: + - type: Transform + pos: -57.5,107.5 + parent: 2 + - uid: 13792 + components: + - type: Transform + pos: -70.5,113.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + pos: -60.5,115.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: -71.5,108.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: -71.5,109.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: -72.5,109.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: -73.5,109.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: -74.5,109.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: -78.5,109.5 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: -79.5,109.5 + parent: 2 + - uid: 13815 + components: + - type: Transform + pos: -80.5,109.5 + parent: 2 + - uid: 13816 + components: + - type: Transform + pos: -81.5,109.5 + parent: 2 + - uid: 13817 + components: + - type: Transform + pos: -82.5,109.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: -82.5,108.5 + parent: 2 + - uid: 13819 + components: + - type: Transform + pos: -83.5,108.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + pos: -83.5,107.5 + parent: 2 + - uid: 13821 + components: + - type: Transform + pos: -83.5,106.5 + parent: 2 + - uid: 13822 + components: + - type: Transform + pos: -83.5,105.5 + parent: 2 + - uid: 13823 + components: + - type: Transform + pos: -83.5,104.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + pos: -83.5,103.5 + parent: 2 + - uid: 13825 + components: + - type: Transform + pos: -83.5,102.5 + parent: 2 + - uid: 13826 + components: + - type: Transform + pos: -59.5,113.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + pos: -82.5,97.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + pos: -82.5,96.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + pos: -82.5,94.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + pos: -82.5,93.5 + parent: 2 + - uid: 13935 + components: + - type: Transform + pos: -71.5,112.5 + parent: 2 + - uid: 13976 + components: + - type: Transform + pos: -59.5,115.5 + parent: 2 + - uid: 13998 + components: + - type: Transform + pos: -62.5,115.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: -58.5,108.5 + parent: 2 + - uid: 14011 + components: + - type: Transform + pos: 63.5,58.5 + parent: 2 + - uid: 14084 + components: + - type: Transform + pos: -76.5,39.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + pos: -94.5,142.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: -49.5,106.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: -145.5,90.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + pos: -107.5,103.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + pos: -74.5,41.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: -75.5,39.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + pos: -49.5,104.5 + parent: 2 + - uid: 14229 + components: + - type: Transform + pos: 4.5,73.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: -84.5,101.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + pos: -85.5,101.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + pos: -83.5,101.5 + parent: 2 + - uid: 14338 + components: + - type: Transform + pos: -86.5,101.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: -86.5,100.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: -86.5,99.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + pos: -86.5,98.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: -86.5,97.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + pos: -85.5,97.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: -84.5,97.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + pos: -83.5,97.5 + parent: 2 + - uid: 14374 + components: + - type: Transform + pos: -72.5,113.5 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: -33.5,98.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + pos: 64.5,62.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + pos: -131.5,110.5 + parent: 2 + - uid: 14736 + components: + - type: Transform + pos: -22.5,207.5 + parent: 2 + - uid: 14779 + components: + - type: Transform + pos: -82.5,80.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + pos: -84.5,80.5 + parent: 2 + - uid: 14782 + components: + - type: Transform + pos: -85.5,80.5 + parent: 2 + - uid: 14785 + components: + - type: Transform + pos: -88.5,80.5 + parent: 2 + - uid: 14786 + components: + - type: Transform + pos: -89.5,80.5 + parent: 2 + - uid: 14787 + components: + - type: Transform + pos: -89.5,79.5 + parent: 2 + - uid: 14788 + components: + - type: Transform + pos: -89.5,78.5 + parent: 2 + - uid: 14789 + components: + - type: Transform + pos: -89.5,77.5 + parent: 2 + - uid: 14790 + components: + - type: Transform + pos: -89.5,76.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: -90.5,77.5 + parent: 2 + - uid: 14792 + components: + - type: Transform + pos: -90.5,76.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + pos: -89.5,74.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + pos: -88.5,74.5 + parent: 2 + - uid: 14803 + components: + - type: Transform + pos: -87.5,74.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + pos: -86.5,74.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + pos: -85.5,74.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + pos: -83.5,74.5 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: -82.5,74.5 + parent: 2 + - uid: 14809 + components: + - type: Transform + pos: -82.5,73.5 + parent: 2 + - uid: 14810 + components: + - type: Transform + pos: -82.5,72.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + pos: -33.5,193.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: -31.5,191.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: -53.5,171.5 + parent: 2 + - uid: 14814 + components: + - type: Transform + pos: 4.5,74.5 + parent: 2 + - uid: 14864 + components: + - type: Transform + pos: -113.5,102.5 + parent: 2 + - uid: 14879 + components: + - type: Transform + pos: 4.5,76.5 + parent: 2 + - uid: 14880 + components: + - type: Transform + pos: 4.5,77.5 + parent: 2 + - uid: 14884 + components: + - type: Transform + pos: -80.5,143.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: -80.5,139.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + pos: -133.5,110.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: -76.5,43.5 + parent: 2 + - uid: 14910 + components: + - type: Transform + pos: -33.5,96.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + pos: -49.5,57.5 + parent: 2 + - uid: 14935 + components: + - type: Transform + pos: -49.5,58.5 + parent: 2 + - uid: 14936 + components: + - type: Transform + pos: -49.5,59.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + pos: -48.5,60.5 + parent: 2 + - uid: 14939 + components: + - type: Transform + pos: -47.5,60.5 + parent: 2 + - uid: 14940 + components: + - type: Transform + pos: -46.5,60.5 + parent: 2 + - uid: 14941 + components: + - type: Transform + pos: -45.5,60.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + pos: -44.5,60.5 + parent: 2 + - uid: 14943 + components: + - type: Transform + pos: -44.5,59.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + pos: -44.5,58.5 + parent: 2 + - uid: 14945 + components: + - type: Transform + pos: -44.5,57.5 + parent: 2 + - uid: 14946 + components: + - type: Transform + pos: -43.5,57.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + pos: -43.5,56.5 + parent: 2 + - uid: 14948 + components: + - type: Transform + pos: -42.5,56.5 + parent: 2 + - uid: 14949 + components: + - type: Transform + pos: -41.5,56.5 + parent: 2 + - uid: 15030 + components: + - type: Transform + pos: -33.5,99.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + pos: -25.5,175.5 + parent: 2 + - uid: 15051 + components: + - type: Transform + pos: -59.5,108.5 + parent: 2 + - uid: 15214 + components: + - type: Transform + pos: -125.5,110.5 + parent: 2 + - uid: 15215 + components: + - type: Transform + pos: -61.5,115.5 + parent: 2 + - uid: 15298 + components: + - type: Transform + pos: -138.5,90.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + pos: -139.5,90.5 + parent: 2 + - uid: 15325 + components: + - type: Transform + pos: -130.5,110.5 + parent: 2 + - uid: 15337 + components: + - type: Transform + pos: -97.5,143.5 + parent: 2 + - uid: 15338 + components: + - type: Transform + pos: -143.5,104.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + pos: -146.5,90.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + pos: -148.5,90.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + pos: -135.5,110.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + pos: -134.5,110.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + pos: -132.5,110.5 + parent: 2 + - uid: 15374 + components: + - type: Transform + pos: 78.5,47.5 + parent: 2 + - uid: 15378 + components: + - type: Transform + pos: -146.5,104.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: -86.5,80.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + pos: 82.5,47.5 + parent: 2 + - uid: 15490 + components: + - type: Transform + pos: -145.5,105.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + pos: -21.5,207.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + pos: -137.5,110.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + pos: -27.5,176.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: -29.5,176.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: -28.5,176.5 + parent: 2 + - uid: 15654 + components: + - type: Transform + pos: 6.5,86.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + pos: 58.5,52.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: -49.5,93.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: -76.5,160.5 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: -92.5,72.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: -71.5,110.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: -141.5,90.5 + parent: 2 + - uid: 15881 + components: + - type: Transform + pos: -140.5,90.5 + parent: 2 + - uid: 16254 + components: + - type: Transform + pos: -83.5,63.5 + parent: 2 + - uid: 16255 + components: + - type: Transform + pos: -82.5,63.5 + parent: 2 + - uid: 16256 + components: + - type: Transform + pos: -81.5,63.5 + parent: 2 + - uid: 16257 + components: + - type: Transform + pos: -81.5,64.5 + parent: 2 + - uid: 16258 + components: + - type: Transform + pos: -83.5,62.5 + parent: 2 + - uid: 16259 + components: + - type: Transform + pos: -93.5,72.5 + parent: 2 + - uid: 16260 + components: + - type: Transform + pos: -93.5,71.5 + parent: 2 + - uid: 16261 + components: + - type: Transform + pos: -94.5,71.5 + parent: 2 + - uid: 16264 + components: + - type: Transform + pos: -98.5,69.5 + parent: 2 + - uid: 16265 + components: + - type: Transform + pos: -99.5,69.5 + parent: 2 + - uid: 16266 + components: + - type: Transform + pos: -99.5,68.5 + parent: 2 + - uid: 16267 + components: + - type: Transform + pos: -100.5,68.5 + parent: 2 + - uid: 16270 + components: + - type: Transform + pos: -93.5,58.5 + parent: 2 + - uid: 16271 + components: + - type: Transform + pos: -93.5,57.5 + parent: 2 + - uid: 16272 + components: + - type: Transform + pos: -94.5,57.5 + parent: 2 + - uid: 16273 + components: + - type: Transform + pos: -95.5,57.5 + parent: 2 + - uid: 16274 + components: + - type: Transform + pos: -95.5,56.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + pos: -89.5,59.5 + parent: 2 + - uid: 16284 + components: + - type: Transform + pos: -89.5,60.5 + parent: 2 + - uid: 16285 + components: + - type: Transform + pos: -88.5,60.5 + parent: 2 + - uid: 16286 + components: + - type: Transform + pos: -87.5,60.5 + parent: 2 + - uid: 16287 + components: + - type: Transform + pos: -87.5,61.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + pos: -77.5,65.5 + parent: 2 + - uid: 16304 + components: + - type: Transform + pos: -77.5,66.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: -76.5,66.5 + parent: 2 + - uid: 16306 + components: + - type: Transform + pos: -75.5,66.5 + parent: 2 + - uid: 16308 + components: + - type: Transform + pos: -74.5,67.5 + parent: 2 + - uid: 16309 + components: + - type: Transform + pos: -74.5,68.5 + parent: 2 + - uid: 16310 + components: + - type: Transform + pos: -74.5,69.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + pos: -75.5,69.5 + parent: 2 + - uid: 16312 + components: + - type: Transform + pos: -76.5,69.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: -77.5,69.5 + parent: 2 + - uid: 16314 + components: + - type: Transform + pos: -78.5,69.5 + parent: 2 + - uid: 16315 + components: + - type: Transform + pos: -79.5,69.5 + parent: 2 + - uid: 16323 + components: + - type: Transform + pos: -72.5,64.5 + parent: 2 + - uid: 16324 + components: + - type: Transform + pos: -73.5,64.5 + parent: 2 + - uid: 16325 + components: + - type: Transform + pos: -74.5,64.5 + parent: 2 + - uid: 16340 + components: + - type: Transform + pos: -105.5,62.5 + parent: 2 + - uid: 16341 + components: + - type: Transform + pos: -103.5,61.5 + parent: 2 + - uid: 16342 + components: + - type: Transform + pos: -103.5,62.5 + parent: 2 + - uid: 16344 + components: + - type: Transform + pos: -102.5,65.5 + parent: 2 + - uid: 16345 + components: + - type: Transform + pos: -103.5,65.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + pos: -94.5,75.5 + parent: 2 + - uid: 16354 + components: + - type: Transform + pos: -95.5,74.5 + parent: 2 + - uid: 16361 + components: + - type: Transform + pos: -105.5,69.5 + parent: 2 + - uid: 16362 + components: + - type: Transform + pos: -106.5,69.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + pos: -106.5,68.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + pos: -100.5,72.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + pos: -101.5,71.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + pos: -93.5,75.5 + parent: 2 + - uid: 16378 + components: + - type: Transform + pos: -94.5,74.5 + parent: 2 + - uid: 16385 + components: + - type: Transform + pos: -107.5,68.5 + parent: 2 + - uid: 16386 + components: + - type: Transform + pos: -104.5,66.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + pos: -105.5,66.5 + parent: 2 + - uid: 16393 + components: + - type: Transform + pos: -82.5,59.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + pos: -100.5,71.5 + parent: 2 + - uid: 16401 + components: + - type: Transform + pos: -80.5,61.5 + parent: 2 + - uid: 16402 + components: + - type: Transform + pos: -86.5,58.5 + parent: 2 + - uid: 16403 + components: + - type: Transform + pos: -76.5,62.5 + parent: 2 + - uid: 16404 + components: + - type: Transform + pos: -76.5,63.5 + parent: 2 + - uid: 16405 + components: + - type: Transform + pos: -75.5,63.5 + parent: 2 + - uid: 16406 + components: + - type: Transform + pos: -74.5,63.5 + parent: 2 + - uid: 16407 + components: + - type: Transform + pos: -86.5,57.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + pos: -87.5,57.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + pos: -88.5,57.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + pos: -88.5,56.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + pos: -92.5,54.5 + parent: 2 + - uid: 16413 + components: + - type: Transform + pos: -93.5,54.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + pos: -94.5,54.5 + parent: 2 + - uid: 16439 + components: + - type: Transform + pos: -74.5,66.5 + parent: 2 + - uid: 16464 + components: + - type: Transform + pos: 2.5,64.5 + parent: 2 + - uid: 16580 + components: + - type: Transform + pos: -23.5,100.5 + parent: 2 + - uid: 16581 + components: + - type: Transform + pos: -20.5,99.5 + parent: 2 + - uid: 16660 + components: + - type: Transform + pos: -34.5,105.5 + parent: 2 + - uid: 16665 + components: + - type: Transform + pos: -30.5,97.5 + parent: 2 + - uid: 16724 + components: + - type: Transform + pos: -83.5,80.5 + parent: 2 + - uid: 16725 + components: + - type: Transform + pos: -49.5,171.5 + parent: 2 + - uid: 16726 + components: + - type: Transform + pos: -48.5,92.5 + parent: 2 + - uid: 16758 + components: + - type: Transform + pos: 42.5,59.5 + parent: 2 + - uid: 16764 + components: + - type: Transform + pos: -81.5,80.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + pos: -91.5,54.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + pos: -90.5,54.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + pos: -47.5,97.5 + parent: 2 + - uid: 17196 + components: + - type: Transform + pos: -45.5,97.5 + parent: 2 + - uid: 17197 + components: + - type: Transform + pos: -46.5,97.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + pos: -49.5,92.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + pos: -105.5,101.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + pos: -102.5,149.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + pos: -45.5,92.5 + parent: 2 + - uid: 17312 + components: + - type: Transform + pos: -101.5,65.5 + parent: 2 + - uid: 17315 + components: + - type: Transform + pos: -78.5,154.5 + parent: 2 + - uid: 17346 + components: + - type: Transform + pos: -15.5,85.5 + parent: 2 + - uid: 17358 + components: + - type: Transform + pos: -121.5,61.5 + parent: 2 + - uid: 17361 + components: + - type: Transform + pos: -126.5,61.5 + parent: 2 + - uid: 17372 + components: + - type: Transform + pos: -97.5,101.5 + parent: 2 + - uid: 17376 + components: + - type: Transform + pos: -125.5,61.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + pos: -132.5,34.5 + parent: 2 + - uid: 17385 + components: + - type: Transform + pos: -134.5,34.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: -76.5,112.5 + parent: 2 + - uid: 17431 + components: + - type: Transform + pos: -73.5,113.5 + parent: 2 + - uid: 17473 + components: + - type: Transform + pos: -112.5,150.5 + parent: 2 + - uid: 17476 + components: + - type: Transform + pos: -124.5,63.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + pos: -134.5,18.5 + parent: 2 + - uid: 17492 + components: + - type: Transform + pos: -96.5,143.5 + parent: 2 + - uid: 17504 + components: + - type: Transform + pos: -76.5,111.5 + parent: 2 + - uid: 17506 + components: + - type: Transform + pos: -75.5,111.5 + parent: 2 + - uid: 17510 + components: + - type: Transform + pos: -76.5,109.5 + parent: 2 + - uid: 17511 + components: + - type: Transform + pos: -77.5,109.5 + parent: 2 + - uid: 17515 + components: + - type: Transform + pos: -76.5,110.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + pos: -74.5,111.5 + parent: 2 + - uid: 17534 + components: + - type: Transform + pos: -112.5,147.5 + parent: 2 + - uid: 17543 + components: + - type: Transform + pos: -109.5,149.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + pos: 2.5,212.5 + parent: 2 + - uid: 17560 + components: + - type: Transform + pos: 1.5,212.5 + parent: 2 + - uid: 17562 + components: + - type: Transform + pos: -44.5,96.5 + parent: 2 + - uid: 17563 + components: + - type: Transform + pos: -75.5,109.5 + parent: 2 + - uid: 17569 + components: + - type: Transform + pos: -65.5,178.5 + parent: 2 + - uid: 17584 + components: + - type: Transform + pos: -65.5,177.5 + parent: 2 + - uid: 17595 + components: + - type: Transform + pos: -98.5,101.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + pos: -123.5,109.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + pos: -126.5,110.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + pos: -64.5,175.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + pos: -101.5,90.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + pos: 59.5,46.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + pos: 7.5,78.5 + parent: 2 + - uid: 17698 + components: + - type: Transform + pos: 9.5,78.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + pos: 78.5,23.5 + parent: 2 + - uid: 17719 + components: + - type: Transform + pos: 77.5,23.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + pos: -124.5,110.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + pos: 79.5,23.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: -127.5,110.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: -118.5,104.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + pos: -116.5,104.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -39.5,178.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: -126.5,62.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: -125.5,63.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: -108.5,146.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: -112.5,146.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: -111.5,150.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + pos: -111.5,146.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + pos: -99.5,97.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + pos: -98.5,100.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + pos: -98.5,97.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + pos: -126.5,28.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + pos: -97.5,97.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + pos: -49.5,97.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + pos: -113.5,90.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + pos: -87.5,141.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + pos: -110.5,146.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: -120.5,90.5 + parent: 2 + - uid: 17813 + components: + - type: Transform + pos: -44.5,93.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + pos: -46.5,65.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: -126.5,63.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + pos: -134.5,90.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + pos: -130.5,90.5 + parent: 2 + - uid: 17875 + components: + - type: Transform + pos: -99.5,101.5 + parent: 2 + - uid: 17884 + components: + - type: Transform + pos: -127.5,62.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + pos: -113.5,103.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + pos: -100.5,91.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + pos: -131.5,90.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + pos: -109.5,97.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + pos: -49.5,94.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + pos: -129.5,90.5 + parent: 2 + - uid: 17942 + components: + - type: Transform + pos: -44.5,95.5 + parent: 2 + - uid: 17947 + components: + - type: Transform + pos: -114.5,104.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + pos: -113.5,94.5 + parent: 2 + - uid: 17959 + components: + - type: Transform + pos: -113.5,95.5 + parent: 2 + - uid: 17961 + components: + - type: Transform + pos: -123.5,56.5 + parent: 2 + - uid: 17968 + components: + - type: Transform + pos: -133.5,90.5 + parent: 2 + - uid: 17971 + components: + - type: Transform + pos: -135.5,90.5 + parent: 2 + - uid: 17983 + components: + - type: Transform + pos: -134.5,31.5 + parent: 2 + - uid: 17993 + components: + - type: Transform + pos: -102.5,54.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + pos: -102.5,97.5 + parent: 2 + - uid: 18018 + components: + - type: Transform + pos: -113.5,104.5 + parent: 2 + - uid: 18039 + components: + - type: Transform + pos: -101.5,143.5 + parent: 2 + - uid: 18040 + components: + - type: Transform + pos: -55.5,173.5 + parent: 2 + - uid: 18083 + components: + - type: Transform + pos: -100.5,97.5 + parent: 2 + - uid: 18090 + components: + - type: Transform + pos: -105.5,97.5 + parent: 2 + - uid: 18091 + components: + - type: Transform + pos: -131.5,23.5 + parent: 2 + - uid: 18098 + components: + - type: Transform + pos: -128.5,33.5 + parent: 2 + - uid: 18099 + components: + - type: Transform + pos: -44.5,92.5 + parent: 2 + - uid: 18100 + components: + - type: Transform + pos: -124.5,56.5 + parent: 2 + - uid: 18112 + components: + - type: Transform + pos: -44.5,94.5 + parent: 2 + - uid: 18117 + components: + - type: Transform + pos: -127.5,23.5 + parent: 2 + - uid: 18124 + components: + - type: Transform + pos: -44.5,97.5 + parent: 2 + - uid: 18127 + components: + - type: Transform + pos: -49.5,95.5 + parent: 2 + - uid: 18128 + components: + - type: Transform + pos: -48.5,97.5 + parent: 2 + - uid: 18133 + components: + - type: Transform + pos: -112.5,149.5 + parent: 2 + - uid: 18135 + components: + - type: Transform + pos: -98.5,143.5 + parent: 2 + - uid: 18137 + components: + - type: Transform + pos: -100.5,143.5 + parent: 2 + - uid: 18140 + components: + - type: Transform + pos: -99.5,143.5 + parent: 2 + - uid: 18141 + components: + - type: Transform + pos: -100.5,92.5 + parent: 2 + - uid: 18155 + components: + - type: Transform + pos: -130.5,21.5 + parent: 2 + - uid: 18160 + components: + - type: Transform + pos: -127.5,19.5 + parent: 2 + - uid: 18162 + components: + - type: Transform + pos: -123.5,110.5 + parent: 2 + - uid: 18163 + components: + - type: Transform + pos: -114.5,90.5 + parent: 2 + - uid: 18165 + components: + - type: Transform + pos: -122.5,104.5 + parent: 2 + - uid: 18168 + components: + - type: Transform + pos: -113.5,97.5 + parent: 2 + - uid: 18180 + components: + - type: Transform + pos: -127.5,20.5 + parent: 2 + - uid: 18202 + components: + - type: Transform + pos: -124.5,62.5 + parent: 2 + - uid: 18213 + components: + - type: Transform + pos: -100.5,58.5 + parent: 2 + - uid: 18216 + components: + - type: Transform + pos: -89.5,85.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + pos: -135.5,35.5 + parent: 2 + - uid: 18243 + components: + - type: Transform + pos: -127.5,61.5 + parent: 2 + - uid: 18244 + components: + - type: Transform + pos: -49.5,96.5 + parent: 2 + - uid: 18245 + components: + - type: Transform + pos: -67.5,179.5 + parent: 2 + - uid: 18257 + components: + - type: Transform + pos: -130.5,22.5 + parent: 2 + - uid: 18266 + components: + - type: Transform + pos: -108.5,150.5 + parent: 2 + - uid: 18271 + components: + - type: Transform + pos: -127.5,33.5 + parent: 2 + - uid: 18284 + components: + - type: Transform + pos: -128.5,34.5 + parent: 2 + - uid: 18322 + components: + - type: Transform + pos: -75.5,141.5 + parent: 2 + - uid: 18324 + components: + - type: Transform + pos: -127.5,109.5 + parent: 2 + - uid: 18333 + components: + - type: Transform + pos: -75.5,41.5 + parent: 2 + - uid: 18340 + components: + - type: Transform + pos: -73.5,41.5 + parent: 2 + - uid: 18353 + components: + - type: Transform + pos: -76.5,41.5 + parent: 2 + - uid: 18368 + components: + - type: Transform + pos: -113.5,92.5 + parent: 2 + - uid: 18370 + components: + - type: Transform + pos: -127.5,108.5 + parent: 2 + - uid: 18374 + components: + - type: Transform + pos: -127.5,29.5 + parent: 2 + - uid: 18375 + components: + - type: Transform + pos: -55.5,170.5 + parent: 2 + - uid: 18378 + components: + - type: Transform + pos: 7.5,182.5 + parent: 2 + - uid: 18380 + components: + - type: Transform + pos: -100.5,93.5 + parent: 2 + - uid: 18386 + components: + - type: Transform + pos: -123.5,106.5 + parent: 2 + - uid: 18399 + components: + - type: Transform + pos: -103.5,97.5 + parent: 2 + - uid: 18400 + components: + - type: Transform + pos: -110.5,97.5 + parent: 2 + - uid: 18403 + components: + - type: Transform + pos: -104.5,97.5 + parent: 2 + - uid: 18409 + components: + - type: Transform + pos: -113.5,93.5 + parent: 2 + - uid: 18412 + components: + - type: Transform + pos: -108.5,97.5 + parent: 2 + - uid: 18414 + components: + - type: Transform + pos: -123.5,104.5 + parent: 2 + - uid: 18416 + components: + - type: Transform + pos: 7.5,183.5 + parent: 2 + - uid: 18431 + components: + - type: Transform + pos: 6.5,189.5 + parent: 2 + - uid: 18447 + components: + - type: Transform + pos: 5.5,189.5 + parent: 2 + - uid: 18449 + components: + - type: Transform + pos: -133.5,31.5 + parent: 2 + - uid: 18451 + components: + - type: Transform + pos: -47.5,65.5 + parent: 2 + - uid: 18455 + components: + - type: Transform + pos: 4.5,189.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + pos: 3.5,190.5 + parent: 2 + - uid: 18459 + components: + - type: Transform + pos: 7.5,190.5 + parent: 2 + - uid: 18461 + components: + - type: Transform + pos: -44.5,65.5 + parent: 2 + - uid: 18462 + components: + - type: Transform + pos: 7.5,193.5 + parent: 2 + - uid: 18464 + components: + - type: Transform + pos: 6.5,194.5 + parent: 2 + - uid: 18466 + components: + - type: Transform + pos: 4.5,194.5 + parent: 2 + - uid: 18469 + components: + - type: Transform + pos: -132.5,90.5 + parent: 2 + - uid: 18470 + components: + - type: Transform + pos: 5.5,194.5 + parent: 2 + - uid: 18472 + components: + - type: Transform + pos: 3.5,193.5 + parent: 2 + - uid: 18477 + components: + - type: Transform + pos: 7.5,197.5 + parent: 2 + - uid: 18478 + components: + - type: Transform + pos: -123.5,105.5 + parent: 2 + - uid: 18480 + components: + - type: Transform + pos: 7.5,198.5 + parent: 2 + - uid: 18483 + components: + - type: Transform + pos: -111.5,97.5 + parent: 2 + - uid: 18484 + components: + - type: Transform + pos: -112.5,97.5 + parent: 2 + - uid: 18485 + components: + - type: Transform + pos: 8.5,198.5 + parent: 2 + - uid: 18487 + components: + - type: Transform + pos: -113.5,96.5 + parent: 2 + - uid: 18489 + components: + - type: Transform + pos: -115.5,104.5 + parent: 2 + - uid: 18490 + components: + - type: Transform + pos: 8.5,199.5 + parent: 2 + - uid: 18491 + components: + - type: Transform + pos: 8.5,200.5 + parent: 2 + - uid: 18492 + components: + - type: Transform + pos: 9.5,199.5 + parent: 2 + - uid: 18493 + components: + - type: Transform + pos: 9.5,200.5 + parent: 2 + - uid: 18494 + components: + - type: Transform + pos: 7.5,200.5 + parent: 2 + - uid: 18496 + components: + - type: Transform + pos: 7.5,187.5 + parent: 2 + - uid: 18497 + components: + - type: Transform + pos: 7.5,185.5 + parent: 2 + - uid: 18501 + components: + - type: Transform + pos: 7.5,186.5 + parent: 2 + - uid: 18502 + components: + - type: Transform + pos: 7.5,184.5 + parent: 2 + - uid: 18503 + components: + - type: Transform + pos: 7.5,188.5 + parent: 2 + - uid: 18505 + components: + - type: Transform + pos: 7.5,189.5 + parent: 2 + - uid: 18506 + components: + - type: Transform + pos: 3.5,194.5 + parent: 2 + - uid: 18507 + components: + - type: Transform + pos: -120.5,104.5 + parent: 2 + - uid: 18508 + components: + - type: Transform + pos: 3.5,189.5 + parent: 2 + - uid: 18509 + components: + - type: Transform + pos: -46.5,175.5 + parent: 2 + - uid: 18510 + components: + - type: Transform + pos: -35.5,179.5 + parent: 2 + - uid: 18512 + components: + - type: Transform + pos: -73.5,166.5 + parent: 2 + - uid: 18513 + components: + - type: Transform + pos: -85.5,166.5 + parent: 2 + - uid: 18519 + components: + - type: Transform + pos: -86.5,166.5 + parent: 2 + - uid: 18523 + components: + - type: Transform + pos: -79.5,153.5 + parent: 2 + - uid: 18524 + components: + - type: Transform + pos: -94.5,146.5 + parent: 2 + - uid: 18526 + components: + - type: Transform + pos: -97.5,146.5 + parent: 2 + - uid: 18527 + components: + - type: Transform + pos: -95.5,146.5 + parent: 2 + - uid: 18529 + components: + - type: Transform + pos: -78.5,149.5 + parent: 2 + - uid: 18539 + components: + - type: Transform + pos: 13.5,186.5 + parent: 2 + - uid: 18541 + components: + - type: Transform + pos: 13.5,183.5 + parent: 2 + - uid: 18542 + components: + - type: Transform + pos: 13.5,184.5 + parent: 2 + - uid: 18544 + components: + - type: Transform + pos: 12.5,186.5 + parent: 2 + - uid: 18548 + components: + - type: Transform + pos: -93.5,147.5 + parent: 2 + - uid: 18549 + components: + - type: Transform + pos: -91.5,146.5 + parent: 2 + - uid: 18552 + components: + - type: Transform + pos: -96.5,146.5 + parent: 2 + - uid: 18553 + components: + - type: Transform + pos: -81.5,153.5 + parent: 2 + - uid: 18568 + components: + - type: Transform + pos: 13.5,185.5 + parent: 2 + - uid: 18569 + components: + - type: Transform + pos: 14.5,190.5 + parent: 2 + - uid: 18572 + components: + - type: Transform + pos: 15.5,190.5 + parent: 2 + - uid: 18573 + components: + - type: Transform + pos: 18.5,187.5 + parent: 2 + - uid: 18575 + components: + - type: Transform + pos: 19.5,187.5 + parent: 2 + - uid: 18576 + components: + - type: Transform + pos: 20.5,187.5 + parent: 2 + - uid: 18579 + components: + - type: Transform + pos: -92.5,153.5 + parent: 2 + - uid: 18580 + components: + - type: Transform + pos: -86.5,153.5 + parent: 2 + - uid: 18582 + components: + - type: Transform + pos: 21.5,187.5 + parent: 2 + - uid: 18583 + components: + - type: Transform + pos: 64.5,59.5 + parent: 2 + - uid: 18584 + components: + - type: Transform + pos: 22.5,187.5 + parent: 2 + - uid: 18587 + components: + - type: Transform + pos: 22.5,188.5 + parent: 2 + - uid: 18595 + components: + - type: Transform + pos: -102.5,29.5 + parent: 2 + - uid: 18599 + components: + - type: Transform + pos: -119.5,90.5 + parent: 2 + - uid: 18600 + components: + - type: Transform + pos: -69.5,143.5 + parent: 2 + - uid: 18612 + components: + - type: Transform + pos: -102.5,150.5 + parent: 2 + - uid: 18615 + components: + - type: Transform + pos: -119.5,104.5 + parent: 2 + - uid: 18632 + components: + - type: Transform + pos: -126.5,60.5 + parent: 2 + - uid: 18636 + components: + - type: Transform + pos: -45.5,65.5 + parent: 2 + - uid: 18637 + components: + - type: Transform + pos: -126.5,59.5 + parent: 2 + - uid: 18645 + components: + - type: Transform + pos: -125.5,104.5 + parent: 2 + - uid: 18650 + components: + - type: Transform + pos: -126.5,104.5 + parent: 2 + - uid: 18651 + components: + - type: Transform + pos: -127.5,104.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + pos: -120.5,61.5 + parent: 2 + - uid: 18669 + components: + - type: Transform + pos: -117.5,104.5 + parent: 2 + - uid: 18689 + components: + - type: Transform + pos: -14.5,83.5 + parent: 2 + - uid: 18691 + components: + - type: Transform + pos: -14.5,80.5 + parent: 2 + - uid: 18695 + components: + - type: Transform + pos: -14.5,81.5 + parent: 2 + - uid: 18699 + components: + - type: Transform + pos: -17.5,85.5 + parent: 2 + - uid: 18701 + components: + - type: Transform + pos: -102.5,28.5 + parent: 2 + - uid: 18702 + components: + - type: Transform + pos: -14.5,84.5 + parent: 2 + - uid: 18703 + components: + - type: Transform + pos: -21.5,79.5 + parent: 2 + - uid: 18714 + components: + - type: Transform + pos: -126.5,24.5 + parent: 2 + - uid: 18720 + components: + - type: Transform + pos: -99.5,102.5 + parent: 2 + - uid: 18723 + components: + - type: Transform + pos: -99.5,103.5 + parent: 2 + - uid: 18732 + components: + - type: Transform + pos: -126.5,29.5 + parent: 2 + - uid: 18754 + components: + - type: Transform + pos: -132.5,23.5 + parent: 2 + - uid: 18763 + components: + - type: Transform + pos: -127.5,31.5 + parent: 2 + - uid: 18766 + components: + - type: Transform + pos: -64.5,150.5 + parent: 2 + - uid: 18768 + components: + - type: Transform + pos: -131.5,18.5 + parent: 2 + - uid: 18769 + components: + - type: Transform + pos: -127.5,32.5 + parent: 2 + - uid: 18770 + components: + - type: Transform + pos: -133.5,18.5 + parent: 2 + - uid: 18787 + components: + - type: Transform + pos: -21.5,78.5 + parent: 2 + - uid: 18788 + components: + - type: Transform + pos: -131.5,34.5 + parent: 2 + - uid: 18789 + components: + - type: Transform + pos: 4.5,81.5 + parent: 2 + - uid: 18792 + components: + - type: Transform + pos: -132.5,18.5 + parent: 2 + - uid: 18794 + components: + - type: Transform + pos: 4.5,79.5 + parent: 2 + - uid: 18797 + components: + - type: Transform + pos: -130.5,34.5 + parent: 2 + - uid: 18798 + components: + - type: Transform + pos: -79.5,187.5 + parent: 2 + - uid: 18806 + components: + - type: Transform + pos: -133.5,34.5 + parent: 2 + - uid: 18809 + components: + - type: Transform + pos: -48.5,66.5 + parent: 2 + - uid: 18810 + components: + - type: Transform + pos: -64.5,64.5 + parent: 2 + - uid: 18817 + components: + - type: Transform + pos: -63.5,64.5 + parent: 2 + - uid: 18820 + components: + - type: Transform + pos: -129.5,34.5 + parent: 2 + - uid: 18836 + components: + - type: Transform + pos: -48.5,67.5 + parent: 2 + - uid: 18838 + components: + - type: Transform + pos: -71.5,143.5 + parent: 2 + - uid: 18845 + components: + - type: Transform + pos: -75.5,140.5 + parent: 2 + - uid: 18849 + components: + - type: Transform + pos: 7.5,79.5 + parent: 2 + - uid: 18852 + components: + - type: Transform + pos: -123.5,108.5 + parent: 2 + - uid: 18854 + components: + - type: Transform + pos: -99.5,104.5 + parent: 2 + - uid: 18855 + components: + - type: Transform + pos: -133.5,21.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + pos: -101.5,104.5 + parent: 2 + - uid: 18858 + components: + - type: Transform + pos: -100.5,104.5 + parent: 2 + - uid: 18859 + components: + - type: Transform + pos: -103.5,104.5 + parent: 2 + - uid: 18860 + components: + - type: Transform + pos: -102.5,104.5 + parent: 2 + - uid: 18863 + components: + - type: Transform + pos: -48.5,68.5 + parent: 2 + - uid: 18867 + components: + - type: Transform + pos: -130.5,29.5 + parent: 2 + - uid: 18869 + components: + - type: Transform + pos: -130.5,23.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + pos: -129.5,18.5 + parent: 2 + - uid: 18872 + components: + - type: Transform + pos: -127.5,21.5 + parent: 2 + - uid: 18874 + components: + - type: Transform + pos: -105.5,104.5 + parent: 2 + - uid: 18875 + components: + - type: Transform + pos: -127.5,22.5 + parent: 2 + - uid: 18878 + components: + - type: Transform + pos: -130.5,30.5 + parent: 2 + - uid: 18881 + components: + - type: Transform + pos: -134.5,22.5 + parent: 2 + - uid: 18882 + components: + - type: Transform + pos: -132.5,31.5 + parent: 2 + - uid: 18883 + components: + - type: Transform + pos: -127.5,30.5 + parent: 2 + - uid: 18884 + components: + - type: Transform + pos: -87.5,80.5 + parent: 2 + - uid: 18887 + components: + - type: Transform + pos: -104.5,104.5 + parent: 2 + - uid: 18891 + components: + - type: Transform + pos: -128.5,19.5 + parent: 2 + - uid: 18895 + components: + - type: Transform + pos: -128.5,18.5 + parent: 2 + - uid: 18899 + components: + - type: Transform + pos: -131.5,31.5 + parent: 2 + - uid: 18910 + components: + - type: Transform + pos: -134.5,30.5 + parent: 2 + - uid: 18916 + components: + - type: Transform + pos: -134.5,21.5 + parent: 2 + - uid: 18942 + components: + - type: Transform + pos: -132.5,21.5 + parent: 2 + - uid: 18943 + components: + - type: Transform + pos: -131.5,21.5 + parent: 2 + - uid: 18945 + components: + - type: Transform + pos: -130.5,18.5 + parent: 2 + - uid: 18946 + components: + - type: Transform + pos: -130.5,31.5 + parent: 2 + - uid: 18953 + components: + - type: Transform + pos: -105.5,29.5 + parent: 2 + - uid: 18958 + components: + - type: Transform + pos: -102.5,27.5 + parent: 2 + - uid: 18969 + components: + - type: Transform + pos: -101.5,150.5 + parent: 2 + - uid: 18976 + components: + - type: Transform + pos: -126.5,23.5 + parent: 2 + - uid: 18981 + components: + - type: Transform + pos: -132.5,29.5 + parent: 2 + - uid: 19004 + components: + - type: Transform + pos: -100.5,150.5 + parent: 2 + - uid: 19033 + components: + - type: Transform + pos: -87.5,146.5 + parent: 2 + - uid: 19043 + components: + - type: Transform + pos: -56.5,171.5 + parent: 2 + - uid: 19051 + components: + - type: Transform + pos: -49.5,159.5 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: 23.5,182.5 + parent: 2 + - uid: 19072 + components: + - type: Transform + pos: 24.5,182.5 + parent: 2 + - uid: 19076 + components: + - type: Transform + pos: 23.5,183.5 + parent: 2 + - uid: 19104 + components: + - type: Transform + pos: 79.5,47.5 + parent: 2 + - uid: 19110 + components: + - type: Transform + pos: -68.5,173.5 + parent: 2 + - uid: 19114 + components: + - type: Transform + pos: 22.5,189.5 + parent: 2 + - uid: 19118 + components: + - type: Transform + pos: 64.5,58.5 + parent: 2 + - uid: 19120 + components: + - type: Transform + pos: 22.5,190.5 + parent: 2 + - uid: 19121 + components: + - type: Transform + pos: -87.5,149.5 + parent: 2 + - uid: 19122 + components: + - type: Transform + pos: 22.5,191.5 + parent: 2 + - uid: 19129 + components: + - type: Transform + pos: 22.5,192.5 + parent: 2 + - uid: 19165 + components: + - type: Transform + pos: -48.5,69.5 + parent: 2 + - uid: 19168 + components: + - type: Transform + pos: -19.5,208.5 + parent: 2 + - uid: 19170 + components: + - type: Transform + pos: 15.5,178.5 + parent: 2 + - uid: 19172 + components: + - type: Transform + pos: -84.5,153.5 + parent: 2 + - uid: 19184 + components: + - type: Transform + pos: -93.5,149.5 + parent: 2 + - uid: 19185 + components: + - type: Transform + pos: 22.5,193.5 + parent: 2 + - uid: 19186 + components: + - type: Transform + pos: 22.5,194.5 + parent: 2 + - uid: 19187 + components: + - type: Transform + pos: 22.5,195.5 + parent: 2 + - uid: 19192 + components: + - type: Transform + pos: 22.5,196.5 + parent: 2 + - uid: 19193 + components: + - type: Transform + pos: -87.5,153.5 + parent: 2 + - uid: 19194 + components: + - type: Transform + pos: -101.5,91.5 + parent: 2 + - uid: 19195 + components: + - type: Transform + pos: -100.5,96.5 + parent: 2 + - uid: 19196 + components: + - type: Transform + pos: -100.5,95.5 + parent: 2 + - uid: 19202 + components: + - type: Transform + pos: 21.5,196.5 + parent: 2 + - uid: 19203 + components: + - type: Transform + pos: 10.5,179.5 + parent: 2 + - uid: 19204 + components: + - type: Transform + pos: -82.5,75.5 + parent: 2 + - uid: 19207 + components: + - type: Transform + pos: 20.5,196.5 + parent: 2 + - uid: 19208 + components: + - type: Transform + pos: 19.5,196.5 + parent: 2 + - uid: 19212 + components: + - type: Transform + pos: -17.5,160.5 + parent: 2 + - uid: 19215 + components: + - type: Transform + pos: 16.5,196.5 + parent: 2 + - uid: 19219 + components: + - type: Transform + pos: -19.5,160.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + pos: -112.5,90.5 + parent: 2 + - uid: 19226 + components: + - type: Transform + pos: -85.5,153.5 + parent: 2 + - uid: 19239 + components: + - type: Transform + pos: -93.5,153.5 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: -26.5,176.5 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: -88.5,153.5 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: -16.5,163.5 + parent: 2 + - uid: 19264 + components: + - type: Transform + pos: -77.5,156.5 + parent: 2 + - uid: 19287 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 19288 + components: + - type: Transform + pos: 7.5,81.5 + parent: 2 + - uid: 19290 + components: + - type: Transform + pos: 15.5,196.5 + parent: 2 + - uid: 19291 + components: + - type: Transform + pos: -78.5,156.5 + parent: 2 + - uid: 19292 + components: + - type: Transform + pos: -112.5,91.5 + parent: 2 + - uid: 19295 + components: + - type: Transform + pos: 15.5,193.5 + parent: 2 + - uid: 19322 + components: + - type: Transform + pos: -78.5,155.5 + parent: 2 + - uid: 19323 + components: + - type: Transform + pos: 14.5,193.5 + parent: 2 + - uid: 19338 + components: + - type: Transform + pos: 20.5,197.5 + parent: 2 + - uid: 19349 + components: + - type: Transform + pos: 19.5,199.5 + parent: 2 + - uid: 19354 + components: + - type: Transform + pos: -91.5,153.5 + parent: 2 + - uid: 19374 + components: + - type: Transform + pos: 18.5,199.5 + parent: 2 + - uid: 19391 + components: + - type: Transform + pos: 18.5,200.5 + parent: 2 + - uid: 19392 + components: + - type: Transform + pos: 17.5,200.5 + parent: 2 + - uid: 19395 + components: + - type: Transform + pos: 16.5,200.5 + parent: 2 + - uid: 19396 + components: + - type: Transform + pos: 16.5,201.5 + parent: 2 + - uid: 19397 + components: + - type: Transform + pos: -92.5,146.5 + parent: 2 + - uid: 19399 + components: + - type: Transform + pos: 15.5,201.5 + parent: 2 + - uid: 19400 + components: + - type: Transform + pos: 14.5,201.5 + parent: 2 + - uid: 19401 + components: + - type: Transform + pos: 13.5,201.5 + parent: 2 + - uid: 19402 + components: + - type: Transform + pos: 12.5,201.5 + parent: 2 + - uid: 19403 + components: + - type: Transform + pos: 21.5,186.5 + parent: 2 + - uid: 19414 + components: + - type: Transform + pos: 20.5,186.5 + parent: 2 + - uid: 19444 + components: + - type: Transform + pos: -51.5,159.5 + parent: 2 + - uid: 19450 + components: + - type: Transform + pos: -57.5,98.5 + parent: 2 + - uid: 19465 + components: + - type: Transform + pos: -100.5,94.5 + parent: 2 + - uid: 19469 + components: + - type: Transform + pos: -113.5,91.5 + parent: 2 + - uid: 19487 + components: + - type: Transform + pos: -33.5,100.5 + parent: 2 + - uid: 19538 + components: + - type: Transform + pos: -73.5,173.5 + parent: 2 + - uid: 19598 + components: + - type: Transform + pos: -93.5,50.5 + parent: 2 + - uid: 19600 + components: + - type: Transform + pos: -93.5,52.5 + parent: 2 + - uid: 19641 + components: + - type: Transform + pos: -83.5,153.5 + parent: 2 + - uid: 19697 + components: + - type: Transform + pos: -82.5,153.5 + parent: 2 + - uid: 19699 + components: + - type: Transform + pos: 8.5,78.5 + parent: 2 + - uid: 19701 + components: + - type: Transform + pos: -90.5,153.5 + parent: 2 + - uid: 19706 + components: + - type: Transform + pos: -96.5,52.5 + parent: 2 + - uid: 19707 + components: + - type: Transform + pos: -99.5,58.5 + parent: 2 + - uid: 19719 + components: + - type: Transform + pos: -89.5,153.5 + parent: 2 + - uid: 19724 + components: + - type: Transform + pos: -82.5,154.5 + parent: 2 + - uid: 19726 + components: + - type: Transform + pos: 20.5,185.5 + parent: 2 + - uid: 19727 + components: + - type: Transform + pos: 19.5,185.5 + parent: 2 + - uid: 19728 + components: + - type: Transform + pos: -78.5,153.5 + parent: 2 + - uid: 19729 + components: + - type: Transform + pos: -78.5,150.5 + parent: 2 + - uid: 19730 + components: + - type: Transform + pos: -78.5,152.5 + parent: 2 + - uid: 19731 + components: + - type: Transform + pos: -78.5,151.5 + parent: 2 + - uid: 19743 + components: + - type: Transform + pos: -93.5,157.5 + parent: 2 + - uid: 19747 + components: + - type: Transform + pos: -82.5,161.5 + parent: 2 + - uid: 19748 + components: + - type: Transform + pos: -92.5,161.5 + parent: 2 + - uid: 19749 + components: + - type: Transform + pos: -83.5,161.5 + parent: 2 + - uid: 19752 + components: + - type: Transform + pos: -82.5,160.5 + parent: 2 + - uid: 19754 + components: + - type: Transform + pos: -82.5,157.5 + parent: 2 + - uid: 19756 + components: + - type: Transform + pos: -82.5,156.5 + parent: 2 + - uid: 19757 + components: + - type: Transform + pos: -82.5,155.5 + parent: 2 + - uid: 19758 + components: + - type: Transform + pos: -93.5,161.5 + parent: 2 + - uid: 19762 + components: + - type: Transform + pos: -92.5,157.5 + parent: 2 + - uid: 19764 + components: + - type: Transform + pos: -85.5,156.5 + parent: 2 + - uid: 19766 + components: + - type: Transform + pos: -85.5,154.5 + parent: 2 + - uid: 19769 + components: + - type: Transform + pos: -82.5,158.5 + parent: 2 + - uid: 19771 + components: + - type: Transform + pos: -90.5,161.5 + parent: 2 + - uid: 19779 + components: + - type: Transform + pos: -83.5,157.5 + parent: 2 + - uid: 19780 + components: + - type: Transform + pos: -84.5,157.5 + parent: 2 + - uid: 19781 + components: + - type: Transform + pos: -85.5,157.5 + parent: 2 + - uid: 19802 + components: + - type: Transform + pos: -98.5,56.5 + parent: 2 + - uid: 19821 + components: + - type: Transform + pos: -105.5,146.5 + parent: 2 + - uid: 19839 + components: + - type: Transform + pos: 19.5,184.5 + parent: 2 + - uid: 19841 + components: + - type: Transform + pos: 18.5,184.5 + parent: 2 + - uid: 19843 + components: + - type: Transform + pos: -93.5,163.5 + parent: 2 + - uid: 19844 + components: + - type: Transform + pos: -93.5,162.5 + parent: 2 + - uid: 19845 + components: + - type: Transform + pos: -93.5,165.5 + parent: 2 + - uid: 19846 + components: + - type: Transform + pos: -93.5,164.5 + parent: 2 + - uid: 19847 + components: + - type: Transform + pos: -94.5,166.5 + parent: 2 + - uid: 19848 + components: + - type: Transform + pos: 18.5,183.5 + parent: 2 + - uid: 19849 + components: + - type: Transform + pos: 17.5,183.5 + parent: 2 + - uid: 19850 + components: + - type: Transform + pos: 16.5,183.5 + parent: 2 + - uid: 19851 + components: + - type: Transform + pos: 16.5,182.5 + parent: 2 + - uid: 19852 + components: + - type: Transform + pos: -93.5,166.5 + parent: 2 + - uid: 19853 + components: + - type: Transform + pos: -95.5,166.5 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: -96.5,166.5 + parent: 2 + - uid: 19855 + components: + - type: Transform + pos: -96.5,165.5 + parent: 2 + - uid: 19856 + components: + - type: Transform + pos: -96.5,164.5 + parent: 2 + - uid: 19857 + components: + - type: Transform + pos: -96.5,163.5 + parent: 2 + - uid: 19858 + components: + - type: Transform + pos: -95.5,163.5 + parent: 2 + - uid: 19859 + components: + - type: Transform + pos: -95.5,162.5 + parent: 2 + - uid: 19860 + components: + - type: Transform + pos: -95.5,161.5 + parent: 2 + - uid: 19861 + components: + - type: Transform + pos: -95.5,160.5 + parent: 2 + - uid: 19862 + components: + - type: Transform + pos: -95.5,159.5 + parent: 2 + - uid: 19863 + components: + - type: Transform + pos: -95.5,158.5 + parent: 2 + - uid: 19864 + components: + - type: Transform + pos: -95.5,157.5 + parent: 2 + - uid: 19865 + components: + - type: Transform + pos: -96.5,157.5 + parent: 2 + - uid: 19866 + components: + - type: Transform + pos: -96.5,156.5 + parent: 2 + - uid: 19868 + components: + - type: Transform + pos: -98.5,155.5 + parent: 2 + - uid: 19869 + components: + - type: Transform + pos: -98.5,156.5 + parent: 2 + - uid: 19870 + components: + - type: Transform + pos: -98.5,157.5 + parent: 2 + - uid: 19871 + components: + - type: Transform + pos: -99.5,157.5 + parent: 2 + - uid: 19872 + components: + - type: Transform + pos: -99.5,158.5 + parent: 2 + - uid: 19873 + components: + - type: Transform + pos: -100.5,158.5 + parent: 2 + - uid: 19874 + components: + - type: Transform + pos: -101.5,158.5 + parent: 2 + - uid: 19875 + components: + - type: Transform + pos: -101.5,160.5 + parent: 2 + - uid: 19876 + components: + - type: Transform + pos: -100.5,160.5 + parent: 2 + - uid: 19877 + components: + - type: Transform + pos: -99.5,160.5 + parent: 2 + - uid: 19878 + components: + - type: Transform + pos: -101.5,162.5 + parent: 2 + - uid: 19879 + components: + - type: Transform + pos: -100.5,162.5 + parent: 2 + - uid: 19880 + components: + - type: Transform + pos: -99.5,162.5 + parent: 2 + - uid: 19881 + components: + - type: Transform + pos: -99.5,163.5 + parent: 2 + - uid: 19882 + components: + - type: Transform + pos: -98.5,163.5 + parent: 2 + - uid: 19883 + components: + - type: Transform + pos: -98.5,164.5 + parent: 2 + - uid: 19884 + components: + - type: Transform + pos: -98.5,165.5 + parent: 2 + - uid: 19885 + components: + - type: Transform + pos: -98.5,166.5 + parent: 2 + - uid: 19886 + components: + - type: Transform + pos: -99.5,166.5 + parent: 2 + - uid: 19965 + components: + - type: Transform + pos: -77.5,150.5 + parent: 2 + - uid: 19967 + components: + - type: Transform + pos: -75.5,150.5 + parent: 2 + - uid: 19968 + components: + - type: Transform + pos: -76.5,150.5 + parent: 2 + - uid: 19969 + components: + - type: Transform + pos: -74.5,150.5 + parent: 2 + - uid: 19970 + components: + - type: Transform + pos: -74.5,151.5 + parent: 2 + - uid: 19973 + components: + - type: Transform + pos: -74.5,155.5 + parent: 2 + - uid: 19974 + components: + - type: Transform + pos: -74.5,156.5 + parent: 2 + - uid: 19975 + components: + - type: Transform + pos: -75.5,156.5 + parent: 2 + - uid: 19981 + components: + - type: Transform + pos: 15.5,182.5 + parent: 2 + - uid: 19982 + components: + - type: Transform + pos: 14.5,182.5 + parent: 2 + - uid: 19983 + components: + - type: Transform + pos: 13.5,182.5 + parent: 2 + - uid: 19984 + components: + - type: Transform + pos: 12.5,182.5 + parent: 2 + - uid: 19985 + components: + - type: Transform + pos: 11.5,182.5 + parent: 2 + - uid: 19986 + components: + - type: Transform + pos: 7.5,196.5 + parent: 2 + - uid: 19987 + components: + - type: Transform + pos: 7.5,195.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: 7.5,194.5 + parent: 2 + - uid: 19993 + components: + - type: Transform + pos: 10.5,186.5 + parent: 2 + - uid: 19994 + components: + - type: Transform + pos: 10.5,182.5 + parent: 2 + - uid: 19995 + components: + - type: Transform + pos: 9.5,182.5 + parent: 2 + - uid: 19996 + components: + - type: Transform + pos: 8.5,182.5 + parent: 2 + - uid: 19997 + components: + - type: Transform + pos: 23.5,196.5 + parent: 2 + - uid: 19998 + components: + - type: Transform + pos: 10.5,200.5 + parent: 2 + - uid: 19999 + components: + - type: Transform + pos: 11.5,200.5 + parent: 2 + - uid: 20000 + components: + - type: Transform + pos: 11.5,201.5 + parent: 2 + - uid: 20002 + components: + - type: Transform + pos: -84.5,146.5 + parent: 2 + - uid: 20003 + components: + - type: Transform + pos: -83.5,146.5 + parent: 2 + - uid: 20004 + components: + - type: Transform + pos: -82.5,146.5 + parent: 2 + - uid: 20009 + components: + - type: Transform + pos: -74.5,166.5 + parent: 2 + - uid: 20014 + components: + - type: Transform + pos: -81.5,146.5 + parent: 2 + - uid: 20015 + components: + - type: Transform + pos: -84.5,147.5 + parent: 2 + - uid: 20016 + components: + - type: Transform + pos: -90.5,146.5 + parent: 2 + - uid: 20017 + components: + - type: Transform + pos: -93.5,148.5 + parent: 2 + - uid: 20018 + components: + - type: Transform + pos: -80.5,146.5 + parent: 2 + - uid: 20019 + components: + - type: Transform + pos: -93.5,146.5 + parent: 2 + - uid: 20020 + components: + - type: Transform + pos: -84.5,148.5 + parent: 2 + - uid: 20021 + components: + - type: Transform + pos: -84.5,149.5 + parent: 2 + - uid: 20022 + components: + - type: Transform + pos: -99.5,147.5 + parent: 2 + - uid: 20023 + components: + - type: Transform + pos: -99.5,146.5 + parent: 2 + - uid: 20024 + components: + - type: Transform + pos: -98.5,146.5 + parent: 2 + - uid: 20025 + components: + - type: Transform + pos: -79.5,146.5 + parent: 2 + - uid: 20037 + components: + - type: Transform + pos: -77.5,160.5 + parent: 2 + - uid: 20038 + components: + - type: Transform + pos: -77.5,161.5 + parent: 2 + - uid: 20045 + components: + - type: Transform + pos: -74.5,160.5 + parent: 2 + - uid: 20066 + components: + - type: Transform + pos: -78.5,148.5 + parent: 2 + - uid: 20091 + components: + - type: Transform + pos: -129.5,37.5 + parent: 2 + - uid: 20106 + components: + - type: Transform + pos: -82.5,76.5 + parent: 2 + - uid: 20107 + components: + - type: Transform + pos: -82.5,78.5 + parent: 2 + - uid: 20108 + components: + - type: Transform + pos: -82.5,79.5 + parent: 2 + - uid: 20178 + components: + - type: Transform + pos: -42.5,77.5 + parent: 2 + - uid: 20192 + components: + - type: Transform + pos: -104.5,146.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + pos: -74.5,163.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + pos: -109.5,147.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + pos: -94.5,176.5 + parent: 2 + - uid: 20427 + components: + - type: Transform + pos: -93.5,176.5 + parent: 2 + - uid: 20428 + components: + - type: Transform + pos: -92.5,176.5 + parent: 2 + - uid: 20433 + components: + - type: Transform + pos: -93.5,171.5 + parent: 2 + - uid: 20434 + components: + - type: Transform + pos: -91.5,176.5 + parent: 2 + - uid: 20435 + components: + - type: Transform + pos: -91.5,177.5 + parent: 2 + - uid: 20436 + components: + - type: Transform + pos: -91.5,178.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + pos: -91.5,179.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + pos: -94.5,171.5 + parent: 2 + - uid: 20450 + components: + - type: Transform + pos: -78.5,147.5 + parent: 2 + - uid: 20451 + components: + - type: Transform + pos: -85.5,146.5 + parent: 2 + - uid: 20452 + components: + - type: Transform + pos: -78.5,146.5 + parent: 2 + - uid: 20453 + components: + - type: Transform + pos: -86.5,146.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + pos: -74.5,165.5 + parent: 2 + - uid: 20470 + components: + - type: Transform + pos: -90.5,148.5 + parent: 2 + - uid: 20471 + components: + - type: Transform + pos: -90.5,147.5 + parent: 2 + - uid: 20472 + components: + - type: Transform + pos: -88.5,146.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + pos: -77.5,162.5 + parent: 2 + - uid: 20511 + components: + - type: Transform + pos: -76.5,140.5 + parent: 2 + - uid: 20578 + components: + - type: Transform + pos: -47.5,69.5 + parent: 2 + - uid: 20579 + components: + - type: Transform + pos: -89.5,146.5 + parent: 2 + - uid: 20581 + components: + - type: Transform + pos: -90.5,149.5 + parent: 2 + - uid: 20582 + components: + - type: Transform + pos: -81.5,156.5 + parent: 2 + - uid: 20583 + components: + - type: Transform + pos: -79.5,156.5 + parent: 2 + - uid: 20584 + components: + - type: Transform + pos: -81.5,161.5 + parent: 2 + - uid: 20585 + components: + - type: Transform + pos: -81.5,162.5 + parent: 2 + - uid: 20587 + components: + - type: Transform + pos: -89.5,166.5 + parent: 2 + - uid: 20588 + components: + - type: Transform + pos: -90.5,166.5 + parent: 2 + - uid: 20589 + components: + - type: Transform + pos: -91.5,166.5 + parent: 2 + - uid: 20591 + components: + - type: Transform + pos: -92.5,166.5 + parent: 2 + - uid: 20592 + components: + - type: Transform + pos: -81.5,166.5 + parent: 2 + - uid: 20593 + components: + - type: Transform + pos: -82.5,166.5 + parent: 2 + - uid: 20594 + components: + - type: Transform + pos: -83.5,166.5 + parent: 2 + - uid: 20595 + components: + - type: Transform + pos: -84.5,166.5 + parent: 2 + - uid: 20596 + components: + - type: Transform + pos: -84.5,167.5 + parent: 2 + - uid: 20603 + components: + - type: Transform + pos: -74.5,161.5 + parent: 2 + - uid: 20604 + components: + - type: Transform + pos: -99.5,154.5 + parent: 2 + - uid: 20606 + components: + - type: Transform + pos: -99.5,150.5 + parent: 2 + - uid: 20607 + components: + - type: Transform + pos: -99.5,153.5 + parent: 2 + - uid: 20609 + components: + - type: Transform + pos: -99.5,152.5 + parent: 2 + - uid: 20610 + components: + - type: Transform + pos: -99.5,151.5 + parent: 2 + - uid: 20624 + components: + - type: Transform + pos: -103.5,145.5 + parent: 2 + - uid: 20630 + components: + - type: Transform + pos: -107.5,146.5 + parent: 2 + - uid: 20631 + components: + - type: Transform + pos: -103.5,146.5 + parent: 2 + - uid: 20635 + components: + - type: Transform + pos: -106.5,146.5 + parent: 2 + - uid: 20637 + components: + - type: Transform + pos: 6.5,78.5 + parent: 2 + - uid: 20638 + components: + - type: Transform + pos: -84.5,168.5 + parent: 2 + - uid: 20642 + components: + - type: Transform + pos: -84.5,169.5 + parent: 2 + - uid: 20644 + components: + - type: Transform + pos: 9.5,76.5 + parent: 2 + - uid: 20651 + components: + - type: Transform + pos: -93.5,142.5 + parent: 2 + - uid: 20671 + components: + - type: Transform + pos: -45.5,69.5 + parent: 2 + - uid: 20672 + components: + - type: Transform + pos: -44.5,69.5 + parent: 2 + - uid: 20673 + components: + - type: Transform + pos: -84.5,79.5 + parent: 2 + - uid: 20674 + components: + - type: Transform + pos: -84.5,78.5 + parent: 2 + - uid: 20675 + components: + - type: Transform + pos: -84.5,183.5 + parent: 2 + - uid: 20676 + components: + - type: Transform + pos: -20.5,208.5 + parent: 2 + - uid: 20679 + components: + - type: Transform + pos: 9.5,179.5 + parent: 2 + - uid: 20680 + components: + - type: Transform + pos: -124.5,104.5 + parent: 2 + - uid: 20681 + components: + - type: Transform + pos: 12.5,179.5 + parent: 2 + - uid: 20682 + components: + - type: Transform + pos: 11.5,179.5 + parent: 2 + - uid: 20683 + components: + - type: Transform + pos: 13.5,179.5 + parent: 2 + - uid: 20684 + components: + - type: Transform + pos: 9.5,178.5 + parent: 2 + - uid: 20685 + components: + - type: Transform + pos: 8.5,178.5 + parent: 2 + - uid: 20687 + components: + - type: Transform + pos: 8.5,177.5 + parent: 2 + - uid: 20688 + components: + - type: Transform + pos: 8.5,176.5 + parent: 2 + - uid: 20689 + components: + - type: Transform + pos: 8.5,175.5 + parent: 2 + - uid: 20690 + components: + - type: Transform + pos: 8.5,174.5 + parent: 2 + - uid: 20691 + components: + - type: Transform + pos: 8.5,173.5 + parent: 2 + - uid: 20695 + components: + - type: Transform + pos: -58.5,150.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + pos: -57.5,150.5 + parent: 2 + - uid: 20702 + components: + - type: Transform + pos: 14.5,179.5 + parent: 2 + - uid: 20703 + components: + - type: Transform + pos: 15.5,179.5 + parent: 2 + - uid: 20704 + components: + - type: Transform + pos: 16.5,179.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: 16.5,178.5 + parent: 2 + - uid: 20706 + components: + - type: Transform + pos: 16.5,177.5 + parent: 2 + - uid: 20707 + components: + - type: Transform + pos: -55.5,150.5 + parent: 2 + - uid: 20708 + components: + - type: Transform + pos: 16.5,176.5 + parent: 2 + - uid: 20714 + components: + - type: Transform + pos: -53.5,150.5 + parent: 2 + - uid: 20715 + components: + - type: Transform + pos: -51.5,151.5 + parent: 2 + - uid: 20716 + components: + - type: Transform + pos: -50.5,151.5 + parent: 2 + - uid: 20717 + components: + - type: Transform + pos: -49.5,153.5 + parent: 2 + - uid: 20718 + components: + - type: Transform + pos: -51.5,153.5 + parent: 2 + - uid: 20719 + components: + - type: Transform + pos: -50.5,153.5 + parent: 2 + - uid: 20722 + components: + - type: Transform + pos: -51.5,157.5 + parent: 2 + - uid: 20724 + components: + - type: Transform + pos: -54.5,161.5 + parent: 2 + - uid: 20725 + components: + - type: Transform + pos: -50.5,157.5 + parent: 2 + - uid: 20726 + components: + - type: Transform + pos: -49.5,157.5 + parent: 2 + - uid: 20727 + components: + - type: Transform + pos: -55.5,161.5 + parent: 2 + - uid: 20729 + components: + - type: Transform + pos: -50.5,159.5 + parent: 2 + - uid: 20730 + components: + - type: Transform + pos: -84.5,173.5 + parent: 2 + - uid: 20732 + components: + - type: Transform + pos: -55.5,158.5 + parent: 2 + - uid: 20733 + components: + - type: Transform + pos: -55.5,157.5 + parent: 2 + - uid: 20734 + components: + - type: Transform + pos: -55.5,159.5 + parent: 2 + - uid: 20735 + components: + - type: Transform + pos: -55.5,160.5 + parent: 2 + - uid: 20736 + components: + - type: Transform + pos: -55.5,154.5 + parent: 2 + - uid: 20737 + components: + - type: Transform + pos: -55.5,155.5 + parent: 2 + - uid: 20738 + components: + - type: Transform + pos: -57.5,154.5 + parent: 2 + - uid: 20739 + components: + - type: Transform + pos: -56.5,154.5 + parent: 2 + - uid: 20740 + components: + - type: Transform + pos: -55.5,156.5 + parent: 2 + - uid: 20741 + components: + - type: Transform + pos: -58.5,154.5 + parent: 2 + - uid: 20742 + components: + - type: Transform + pos: -58.5,159.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + pos: -58.5,155.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + pos: -84.5,174.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + pos: -58.5,160.5 + parent: 2 + - uid: 20746 + components: + - type: Transform + pos: -84.5,175.5 + parent: 2 + - uid: 20747 + components: + - type: Transform + pos: -84.5,176.5 + parent: 2 + - uid: 20748 + components: + - type: Transform + pos: -58.5,161.5 + parent: 2 + - uid: 20750 + components: + - type: Transform + pos: -58.5,162.5 + parent: 2 + - uid: 20751 + components: + - type: Transform + pos: -58.5,164.5 + parent: 2 + - uid: 20752 + components: + - type: Transform + pos: -58.5,163.5 + parent: 2 + - uid: 20753 + components: + - type: Transform + pos: -58.5,166.5 + parent: 2 + - uid: 20754 + components: + - type: Transform + pos: -58.5,165.5 + parent: 2 + - uid: 20755 + components: + - type: Transform + pos: -58.5,168.5 + parent: 2 + - uid: 20756 + components: + - type: Transform + pos: -58.5,167.5 + parent: 2 + - uid: 20758 + components: + - type: Transform + pos: -57.5,168.5 + parent: 2 + - uid: 20759 + components: + - type: Transform + pos: -55.5,168.5 + parent: 2 + - uid: 20761 + components: + - type: Transform + pos: -56.5,168.5 + parent: 2 + - uid: 20762 + components: + - type: Transform + pos: -54.5,168.5 + parent: 2 + - uid: 20765 + components: + - type: Transform + pos: -53.5,168.5 + parent: 2 + - uid: 20766 + components: + - type: Transform + pos: 16.5,175.5 + parent: 2 + - uid: 20767 + components: + - type: Transform + pos: -56.5,173.5 + parent: 2 + - uid: 20769 + components: + - type: Transform + pos: -56.5,170.5 + parent: 2 + - uid: 20772 + components: + - type: Transform + pos: -83.5,176.5 + parent: 2 + - uid: 20774 + components: + - type: Transform + pos: -129.5,41.5 + parent: 2 + - uid: 20775 + components: + - type: Transform + pos: -56.5,172.5 + parent: 2 + - uid: 20778 + components: + - type: Transform + pos: -57.5,175.5 + parent: 2 + - uid: 20781 + components: + - type: Transform + pos: -56.5,174.5 + parent: 2 + - uid: 20782 + components: + - type: Transform + pos: -56.5,175.5 + parent: 2 + - uid: 20783 + components: + - type: Transform + pos: -63.5,175.5 + parent: 2 + - uid: 20784 + components: + - type: Transform + pos: -65.5,175.5 + parent: 2 + - uid: 20785 + components: + - type: Transform + pos: -65.5,176.5 + parent: 2 + - uid: 20787 + components: + - type: Transform + pos: -65.5,179.5 + parent: 2 + - uid: 20792 + components: + - type: Transform + pos: 16.5,174.5 + parent: 2 + - uid: 20793 + components: + - type: Transform + pos: 16.5,173.5 + parent: 2 + - uid: 20795 + components: + - type: Transform + pos: 15.5,173.5 + parent: 2 + - uid: 20796 + components: + - type: Transform + pos: -82.5,176.5 + parent: 2 + - uid: 20800 + components: + - type: Transform + pos: -49.5,151.5 + parent: 2 + - uid: 20802 + components: + - type: Transform + pos: -66.5,150.5 + parent: 2 + - uid: 20803 + components: + - type: Transform + pos: -66.5,148.5 + parent: 2 + - uid: 20805 + components: + - type: Transform + pos: -65.5,150.5 + parent: 2 + - uid: 20806 + components: + - type: Transform + pos: -60.5,150.5 + parent: 2 + - uid: 20807 + components: + - type: Transform + pos: -98.5,154.5 + parent: 2 + - uid: 20808 + components: + - type: Transform + pos: -66.5,145.5 + parent: 2 + - uid: 20810 + components: + - type: Transform + pos: 9.5,77.5 + parent: 2 + - uid: 20811 + components: + - type: Transform + pos: -66.5,146.5 + parent: 2 + - uid: 20812 + components: + - type: Transform + pos: -67.5,143.5 + parent: 2 + - uid: 20813 + components: + - type: Transform + pos: -66.5,144.5 + parent: 2 + - uid: 20814 + components: + - type: Transform + pos: -67.5,144.5 + parent: 2 + - uid: 20816 + components: + - type: Transform + pos: -72.5,143.5 + parent: 2 + - uid: 20817 + components: + - type: Transform + pos: -73.5,143.5 + parent: 2 + - uid: 20820 + components: + - type: Transform + pos: -68.5,143.5 + parent: 2 + - uid: 20822 + components: + - type: Transform + pos: -75.5,143.5 + parent: 2 + - uid: 20823 + components: + - type: Transform + pos: -74.5,143.5 + parent: 2 + - uid: 20824 + components: + - type: Transform + pos: 9.5,74.5 + parent: 2 + - uid: 20825 + components: + - type: Transform + pos: -81.5,143.5 + parent: 2 + - uid: 20828 + components: + - type: Transform + pos: -78.5,143.5 + parent: 2 + - uid: 20832 + components: + - type: Transform + pos: -87.5,142.5 + parent: 2 + - uid: 20833 + components: + - type: Transform + pos: -83.5,139.5 + parent: 2 + - uid: 20835 + components: + - type: Transform + pos: -86.5,139.5 + parent: 2 + - uid: 20836 + components: + - type: Transform + pos: -85.5,139.5 + parent: 2 + - uid: 20837 + components: + - type: Transform + pos: -87.5,140.5 + parent: 2 + - uid: 20838 + components: + - type: Transform + pos: -87.5,139.5 + parent: 2 + - uid: 20839 + components: + - type: Transform + pos: -81.5,140.5 + parent: 2 + - uid: 20841 + components: + - type: Transform + pos: -81.5,176.5 + parent: 2 + - uid: 20860 + components: + - type: Transform + pos: -81.5,141.5 + parent: 2 + - uid: 20865 + components: + - type: Transform + pos: -81.5,142.5 + parent: 2 + - uid: 21047 + components: + - type: Transform + pos: -12.5,190.5 + parent: 2 + - uid: 21097 + components: + - type: Transform + pos: 2.5,162.5 + parent: 2 + - uid: 21179 + components: + - type: Transform + pos: -125.5,67.5 + parent: 2 + - uid: 21266 + components: + - type: Transform + pos: -76.5,113.5 + parent: 2 + - uid: 21267 + components: + - type: Transform + pos: -75.5,113.5 + parent: 2 + - uid: 21333 + components: + - type: Transform + pos: -43.5,70.5 + parent: 2 + - uid: 21345 + components: + - type: Transform + pos: -82.5,139.5 + parent: 2 + - uid: 21346 + components: + - type: Transform + pos: -81.5,139.5 + parent: 2 + - uid: 21351 + components: + - type: Transform + pos: -88.5,142.5 + parent: 2 + - uid: 21352 + components: + - type: Transform + pos: -131.5,53.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: -84.5,139.5 + parent: 2 + - uid: 21464 + components: + - type: Transform + pos: -103.5,144.5 + parent: 2 + - uid: 21553 + components: + - type: Transform + pos: -78.5,142.5 + parent: 2 + - uid: 21610 + components: + - type: Transform + pos: -78.5,141.5 + parent: 2 + - uid: 21621 + components: + - type: Transform + pos: -73.5,33.5 + parent: 2 + - uid: 21827 + components: + - type: Transform + pos: -77.5,176.5 + parent: 2 + - uid: 22078 + components: + - type: Transform + pos: -23.5,169.5 + parent: 2 + - uid: 22211 + components: + - type: Transform + pos: -81.5,44.5 + parent: 2 + - uid: 22212 + components: + - type: Transform + pos: -81.5,38.5 + parent: 2 + - uid: 22224 + components: + - type: Transform + pos: -76.5,176.5 + parent: 2 + - uid: 22245 + components: + - type: Transform + pos: -127.5,63.5 + parent: 2 + - uid: 22251 + components: + - type: Transform + pos: -122.5,61.5 + parent: 2 + - uid: 22327 + components: + - type: Transform + pos: 17.5,204.5 + parent: 2 + - uid: 22328 + components: + - type: Transform + pos: 18.5,206.5 + parent: 2 + - uid: 22388 + components: + - type: Transform + pos: -102.5,14.5 + parent: 2 + - uid: 22410 + components: + - type: Transform + pos: -131.5,45.5 + parent: 2 + - uid: 22460 + components: + - type: Transform + pos: 2.5,163.5 + parent: 2 + - uid: 22510 + components: + - type: Transform + pos: -75.5,176.5 + parent: 2 + - uid: 22573 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 22578 + components: + - type: Transform + pos: -40.5,111.5 + parent: 2 + - uid: 22585 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 22594 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 22616 + components: + - type: Transform + pos: -34.5,199.5 + parent: 2 + - uid: 22618 + components: + - type: Transform + pos: 11.5,173.5 + parent: 2 + - uid: 22633 + components: + - type: Transform + pos: 9.5,173.5 + parent: 2 + - uid: 22635 + components: + - type: Transform + pos: -84.5,184.5 + parent: 2 + - uid: 22720 + components: + - type: Transform + pos: -74.5,164.5 + parent: 2 + - uid: 22736 + components: + - type: Transform + pos: -74.5,162.5 + parent: 2 + - uid: 22791 + components: + - type: Transform + pos: -7.5,163.5 + parent: 2 + - uid: 22883 + components: + - type: Transform + pos: -47.5,107.5 + parent: 2 + - uid: 22956 + components: + - type: Transform + pos: -131.5,50.5 + parent: 2 + - uid: 22983 + components: + - type: Transform + pos: -16.5,213.5 + parent: 2 + - uid: 23007 + components: + - type: Transform + pos: -16.5,212.5 + parent: 2 + - uid: 23018 + components: + - type: Transform + pos: -17.5,212.5 + parent: 2 + - uid: 23026 + components: + - type: Transform + pos: -108.5,37.5 + parent: 2 + - uid: 23042 + components: + - type: Transform + pos: -130.5,53.5 + parent: 2 + - uid: 23047 + components: + - type: Transform + pos: -18.5,211.5 + parent: 2 + - uid: 23049 + components: + - type: Transform + pos: -19.5,211.5 + parent: 2 + - uid: 23076 + components: + - type: Transform + pos: -25.5,172.5 + parent: 2 + - uid: 23108 + components: + - type: Transform + pos: -23.5,172.5 + parent: 2 + - uid: 23118 + components: + - type: Transform + pos: -127.5,106.5 + parent: 2 + - uid: 23119 + components: + - type: Transform + pos: -31.5,187.5 + parent: 2 + - uid: 23120 + components: + - type: Transform + pos: -31.5,188.5 + parent: 2 + - uid: 23121 + components: + - type: Transform + pos: -31.5,189.5 + parent: 2 + - uid: 23122 + components: + - type: Transform + pos: 17.5,206.5 + parent: 2 + - uid: 23123 + components: + - type: Transform + pos: 15.5,204.5 + parent: 2 + - uid: 23126 + components: + - type: Transform + pos: -74.5,184.5 + parent: 2 + - uid: 23136 + components: + - type: Transform + pos: -24.5,172.5 + parent: 2 + - uid: 23137 + components: + - type: Transform + pos: -74.5,183.5 + parent: 2 + - uid: 23141 + components: + - type: Transform + pos: -31.5,208.5 + parent: 2 + - uid: 23143 + components: + - type: Transform + pos: -67.5,160.5 + parent: 2 + - uid: 23145 + components: + - type: Transform + pos: -66.5,160.5 + parent: 2 + - uid: 23154 + components: + - type: Transform + pos: -129.5,91.5 + parent: 2 + - uid: 23217 + components: + - type: Transform + pos: -18.5,212.5 + parent: 2 + - uid: 23430 + components: + - type: Transform + pos: -65.5,160.5 + parent: 2 + - uid: 23433 + components: + - type: Transform + pos: -20.5,210.5 + parent: 2 + - uid: 23434 + components: + - type: Transform + pos: -21.5,210.5 + parent: 2 + - uid: 23435 + components: + - type: Transform + pos: -20.5,211.5 + parent: 2 + - uid: 23436 + components: + - type: Transform + pos: -34.5,201.5 + parent: 2 + - uid: 23437 + components: + - type: Transform + pos: -34.5,198.5 + parent: 2 + - uid: 23438 + components: + - type: Transform + pos: -34.5,200.5 + parent: 2 + - uid: 23439 + components: + - type: Transform + pos: -64.5,160.5 + parent: 2 + - uid: 23440 + components: + - type: Transform + pos: -34.5,202.5 + parent: 2 + - uid: 23442 + components: + - type: Transform + pos: -25.5,210.5 + parent: 2 + - uid: 23450 + components: + - type: Transform + pos: -104.5,14.5 + parent: 2 + - uid: 23467 + components: + - type: Transform + pos: -113.5,15.5 + parent: 2 + - uid: 23472 + components: + - type: Transform + pos: -2.5,212.5 + parent: 2 + - uid: 23484 + components: + - type: Transform + pos: -15.5,213.5 + parent: 2 + - uid: 23485 + components: + - type: Transform + pos: -14.5,213.5 + parent: 2 + - uid: 23486 + components: + - type: Transform + pos: -13.5,213.5 + parent: 2 + - uid: 23487 + components: + - type: Transform + pos: -13.5,214.5 + parent: 2 + - uid: 23488 + components: + - type: Transform + pos: -12.5,214.5 + parent: 2 + - uid: 23489 + components: + - type: Transform + pos: -25.5,173.5 + parent: 2 + - uid: 23491 + components: + - type: Transform + pos: -65.5,-3.5 + parent: 2 + - uid: 23492 + components: + - type: Transform + pos: 3.5,211.5 + parent: 2 + - uid: 23498 + components: + - type: Transform + pos: -67.5,-3.5 + parent: 2 + - uid: 23499 + components: + - type: Transform + pos: 8.5,206.5 + parent: 2 + - uid: 23500 + components: + - type: Transform + pos: 7.5,206.5 + parent: 2 + - uid: 23501 + components: + - type: Transform + pos: 8.5,205.5 + parent: 2 + - uid: 23505 + components: + - type: Transform + pos: 9.5,205.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + pos: -132.5,37.5 + parent: 2 + - uid: 23726 + components: + - type: Transform + pos: 4.5,170.5 + parent: 2 + - uid: 23727 + components: + - type: Transform + pos: 5.5,170.5 + parent: 2 + - uid: 23728 + components: + - type: Transform + pos: 6.5,170.5 + parent: 2 + - uid: 23729 + components: + - type: Transform + pos: 7.5,170.5 + parent: 2 + - uid: 23730 + components: + - type: Transform + pos: 8.5,170.5 + parent: 2 + - uid: 23731 + components: + - type: Transform + pos: 9.5,170.5 + parent: 2 + - uid: 23736 + components: + - type: Transform + pos: 4.5,169.5 + parent: 2 + - uid: 23737 + components: + - type: Transform + pos: 4.5,168.5 + parent: 2 + - uid: 23739 + components: + - type: Transform + pos: -125.5,62.5 + parent: 2 + - uid: 23758 + components: + - type: Transform + pos: 15.5,170.5 + parent: 2 + - uid: 23759 + components: + - type: Transform + pos: 17.5,170.5 + parent: 2 + - uid: 23760 + components: + - type: Transform + pos: 16.5,170.5 + parent: 2 + - uid: 23761 + components: + - type: Transform + pos: 18.5,170.5 + parent: 2 + - uid: 23764 + components: + - type: Transform + pos: 19.5,170.5 + parent: 2 + - uid: 23765 + components: + - type: Transform + pos: 19.5,171.5 + parent: 2 + - uid: 23767 + components: + - type: Transform + pos: 19.5,173.5 + parent: 2 + - uid: 23768 + components: + - type: Transform + pos: 19.5,174.5 + parent: 2 + - uid: 23771 + components: + - type: Transform + pos: -63.5,160.5 + parent: 2 + - uid: 23772 + components: + - type: Transform + pos: -62.5,160.5 + parent: 2 + - uid: 23784 + components: + - type: Transform + pos: 24.5,181.5 + parent: 2 + - uid: 23788 + components: + - type: Transform + pos: 24.5,177.5 + parent: 2 + - uid: 23790 + components: + - type: Transform + pos: 24.5,175.5 + parent: 2 + - uid: 23791 + components: + - type: Transform + pos: 24.5,174.5 + parent: 2 + - uid: 23792 + components: + - type: Transform + pos: 23.5,174.5 + parent: 2 + - uid: 23793 + components: + - type: Transform + pos: 22.5,174.5 + parent: 2 + - uid: 23794 + components: + - type: Transform + pos: 21.5,174.5 + parent: 2 + - uid: 23795 + components: + - type: Transform + pos: 20.5,174.5 + parent: 2 + - uid: 23796 + components: + - type: Transform + pos: 23.5,184.5 + parent: 2 + - uid: 23797 + components: + - type: Transform + pos: 24.5,185.5 + parent: 2 + - uid: 23799 + components: + - type: Transform + pos: 24.5,184.5 + parent: 2 + - uid: 23800 + components: + - type: Transform + pos: 25.5,185.5 + parent: 2 + - uid: 23801 + components: + - type: Transform + pos: 25.5,186.5 + parent: 2 + - uid: 23802 + components: + - type: Transform + pos: 25.5,187.5 + parent: 2 + - uid: 23803 + components: + - type: Transform + pos: 25.5,188.5 + parent: 2 + - uid: 23804 + components: + - type: Transform + pos: 25.5,189.5 + parent: 2 + - uid: 23805 + components: + - type: Transform + pos: 25.5,190.5 + parent: 2 + - uid: 23807 + components: + - type: Transform + pos: 25.5,192.5 + parent: 2 + - uid: 23808 + components: + - type: Transform + pos: 25.5,193.5 + parent: 2 + - uid: 23809 + components: + - type: Transform + pos: 25.5,194.5 + parent: 2 + - uid: 23810 + components: + - type: Transform + pos: 25.5,195.5 + parent: 2 + - uid: 23811 + components: + - type: Transform + pos: 25.5,196.5 + parent: 2 + - uid: 23812 + components: + - type: Transform + pos: 25.5,197.5 + parent: 2 + - uid: 23814 + components: + - type: Transform + pos: 22.5,203.5 + parent: 2 + - uid: 23815 + components: + - type: Transform + pos: 21.5,203.5 + parent: 2 + - uid: 23816 + components: + - type: Transform + pos: 24.5,203.5 + parent: 2 + - uid: 23817 + components: + - type: Transform + pos: 23.5,203.5 + parent: 2 + - uid: 23818 + components: + - type: Transform + pos: 25.5,202.5 + parent: 2 + - uid: 23819 + components: + - type: Transform + pos: 25.5,203.5 + parent: 2 + - uid: 23820 + components: + - type: Transform + pos: 25.5,200.5 + parent: 2 + - uid: 23821 + components: + - type: Transform + pos: 25.5,201.5 + parent: 2 + - uid: 23823 + components: + - type: Transform + pos: 20.5,203.5 + parent: 2 + - uid: 23824 + components: + - type: Transform + pos: 19.5,203.5 + parent: 2 + - uid: 23825 + components: + - type: Transform + pos: 18.5,203.5 + parent: 2 + - uid: 23826 + components: + - type: Transform + pos: 18.5,204.5 + parent: 2 + - uid: 23832 + components: + - type: Transform + pos: -61.5,160.5 + parent: 2 + - uid: 23833 + components: + - type: Transform + pos: 10.5,204.5 + parent: 2 + - uid: 23834 + components: + - type: Transform + pos: -61.5,154.5 + parent: 2 + - uid: 23835 + components: + - type: Transform + pos: 9.5,204.5 + parent: 2 + - uid: 23837 + components: + - type: Transform + pos: 25.5,199.5 + parent: 2 + - uid: 23838 + components: + - type: Transform + pos: 25.5,198.5 + parent: 2 + - uid: 23841 + components: + - type: Transform + pos: 7.5,207.5 + parent: 2 + - uid: 23850 + components: + - type: Transform + pos: -2.5,213.5 + parent: 2 + - uid: 23851 + components: + - type: Transform + pos: -2.5,214.5 + parent: 2 + - uid: 23852 + components: + - type: Transform + pos: -3.5,214.5 + parent: 2 + - uid: 23853 + components: + - type: Transform + pos: -62.5,154.5 + parent: 2 + - uid: 23856 + components: + - type: Transform + pos: -23.5,168.5 + parent: 2 + - uid: 23889 + components: + - type: Transform + pos: -34.5,203.5 + parent: 2 + - uid: 23890 + components: + - type: Transform + pos: -34.5,204.5 + parent: 2 + - uid: 23891 + components: + - type: Transform + pos: -34.5,205.5 + parent: 2 + - uid: 23892 + components: + - type: Transform + pos: -33.5,207.5 + parent: 2 + - uid: 23893 + components: + - type: Transform + pos: -63.5,154.5 + parent: 2 + - uid: 23894 + components: + - type: Transform + pos: -34.5,207.5 + parent: 2 + - uid: 23895 + components: + - type: Transform + pos: -64.5,154.5 + parent: 2 + - uid: 23896 + components: + - type: Transform + pos: -34.5,206.5 + parent: 2 + - uid: 23897 + components: + - type: Transform + pos: -31.5,207.5 + parent: 2 + - uid: 23898 + components: + - type: Transform + pos: -31.5,210.5 + parent: 2 + - uid: 23899 + components: + - type: Transform + pos: -32.5,207.5 + parent: 2 + - uid: 23900 + components: + - type: Transform + pos: -30.5,210.5 + parent: 2 + - uid: 23901 + components: + - type: Transform + pos: -30.5,211.5 + parent: 2 + - uid: 23902 + components: + - type: Transform + pos: -30.5,212.5 + parent: 2 + - uid: 23903 + components: + - type: Transform + pos: -28.5,212.5 + parent: 2 + - uid: 23904 + components: + - type: Transform + pos: -28.5,211.5 + parent: 2 + - uid: 23905 + components: + - type: Transform + pos: -28.5,210.5 + parent: 2 + - uid: 23906 + components: + - type: Transform + pos: -26.5,212.5 + parent: 2 + - uid: 23907 + components: + - type: Transform + pos: -26.5,211.5 + parent: 2 + - uid: 23908 + components: + - type: Transform + pos: -26.5,210.5 + parent: 2 + - uid: 23910 + components: + - type: Transform + pos: -65.5,154.5 + parent: 2 + - uid: 23911 + components: + - type: Transform + pos: -66.5,154.5 + parent: 2 + - uid: 23912 + components: + - type: Transform + pos: -67.5,154.5 + parent: 2 + - uid: 23913 + components: + - type: Transform + pos: -61.5,155.5 + parent: 2 + - uid: 23914 + components: + - type: Transform + pos: -61.5,156.5 + parent: 2 + - uid: 23915 + components: + - type: Transform + pos: -61.5,157.5 + parent: 2 + - uid: 23937 + components: + - type: Transform + pos: -131.5,42.5 + parent: 2 + - uid: 23939 + components: + - type: Transform + pos: -131.5,51.5 + parent: 2 + - uid: 24052 + components: + - type: Transform + pos: 7.5,208.5 + parent: 2 + - uid: 24053 + components: + - type: Transform + pos: 4.5,211.5 + parent: 2 + - uid: 24109 + components: + - type: Transform + pos: -61.5,158.5 + parent: 2 + - uid: 24110 + components: + - type: Transform + pos: -61.5,159.5 + parent: 2 + - uid: 24450 + components: + - type: Transform + pos: -64.5,-3.5 + parent: 2 + - uid: 24739 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 24753 + components: + - type: Transform + pos: -0.5,212.5 + parent: 2 + - uid: 24754 + components: + - type: Transform + pos: -1.5,212.5 + parent: 2 + - uid: 25034 + components: + - type: Transform + pos: -99.5,56.5 + parent: 2 + - uid: 25049 + components: + - type: Transform + pos: -23.5,164.5 + parent: 2 + - uid: 25055 + components: + - type: Transform + pos: -99.5,72.5 + parent: 2 + - uid: 25066 + components: + - type: Transform + pos: -6.5,164.5 + parent: 2 + - uid: 25067 + components: + - type: Transform + pos: -5.5,164.5 + parent: 2 + - uid: 25068 + components: + - type: Transform + pos: -4.5,164.5 + parent: 2 + - uid: 25069 + components: + - type: Transform + pos: -3.5,164.5 + parent: 2 + - uid: 25070 + components: + - type: Transform + pos: -2.5,164.5 + parent: 2 + - uid: 25071 + components: + - type: Transform + pos: -1.5,164.5 + parent: 2 + - uid: 25072 + components: + - type: Transform + pos: 5.5,165.5 + parent: 2 + - uid: 25073 + components: + - type: Transform + pos: 0.5,164.5 + parent: 2 + - uid: 25074 + components: + - type: Transform + pos: 6.5,165.5 + parent: 2 + - uid: 25075 + components: + - type: Transform + pos: 2.5,164.5 + parent: 2 + - uid: 25076 + components: + - type: Transform + pos: 3.5,164.5 + parent: 2 + - uid: 25077 + components: + - type: Transform + pos: 4.5,164.5 + parent: 2 + - uid: 25078 + components: + - type: Transform + pos: 4.5,165.5 + parent: 2 + - uid: 25079 + components: + - type: Transform + pos: 4.5,167.5 + parent: 2 + - uid: 25080 + components: + - type: Transform + pos: -23.5,167.5 + parent: 2 + - uid: 25081 + components: + - type: Transform + pos: -23.5,165.5 + parent: 2 + - uid: 25082 + components: + - type: Transform + pos: 2.5,161.5 + parent: 2 + - uid: 25085 + components: + - type: Transform + pos: 0.5,161.5 + parent: 2 + - uid: 25086 + components: + - type: Transform + pos: 0.5,162.5 + parent: 2 + - uid: 25087 + components: + - type: Transform + pos: 0.5,163.5 + parent: 2 + - uid: 25089 + components: + - type: Transform + pos: -1.5,161.5 + parent: 2 + - uid: 25090 + components: + - type: Transform + pos: -1.5,162.5 + parent: 2 + - uid: 25091 + components: + - type: Transform + pos: -1.5,163.5 + parent: 2 + - uid: 25092 + components: + - type: Transform + pos: 6.5,167.5 + parent: 2 + - uid: 25093 + components: + - type: Transform + pos: 5.5,167.5 + parent: 2 + - uid: 25102 + components: + - type: Transform + pos: 7.5,165.5 + parent: 2 + - uid: 25103 + components: + - type: Transform + pos: 7.5,167.5 + parent: 2 + - uid: 25105 + components: + - type: Transform + pos: -34.5,80.5 + parent: 2 + - uid: 25106 + components: + - type: Transform + pos: -21.5,161.5 + parent: 2 + - uid: 25107 + components: + - type: Transform + pos: -33.5,80.5 + parent: 2 + - uid: 25109 + components: + - type: Transform + pos: -32.5,80.5 + parent: 2 + - uid: 25116 + components: + - type: Transform + pos: -31.5,80.5 + parent: 2 + - uid: 25120 + components: + - type: Transform + pos: -21.5,162.5 + parent: 2 + - uid: 25121 + components: + - type: Transform + pos: -21.5,163.5 + parent: 2 + - uid: 25122 + components: + - type: Transform + pos: -19.5,161.5 + parent: 2 + - uid: 25123 + components: + - type: Transform + pos: -19.5,162.5 + parent: 2 + - uid: 25124 + components: + - type: Transform + pos: -19.5,163.5 + parent: 2 + - uid: 25125 + components: + - type: Transform + pos: -17.5,161.5 + parent: 2 + - uid: 25126 + components: + - type: Transform + pos: -17.5,162.5 + parent: 2 + - uid: 25127 + components: + - type: Transform + pos: -17.5,163.5 + parent: 2 + - uid: 25129 + components: + - type: Transform + pos: -24.5,165.5 + parent: 2 + - uid: 25130 + components: + - type: Transform + pos: -25.5,165.5 + parent: 2 + - uid: 25131 + components: + - type: Transform + pos: -26.5,165.5 + parent: 2 + - uid: 25132 + components: + - type: Transform + pos: -26.5,167.5 + parent: 2 + - uid: 25133 + components: + - type: Transform + pos: -25.5,167.5 + parent: 2 + - uid: 25134 + components: + - type: Transform + pos: -24.5,167.5 + parent: 2 + - uid: 25141 + components: + - type: Transform + pos: -130.5,88.5 + parent: 2 + - uid: 25146 + components: + - type: Transform + pos: -128.5,86.5 + parent: 2 + - uid: 25149 + components: + - type: Transform + pos: -129.5,86.5 + parent: 2 + - uid: 25151 + components: + - type: Transform + pos: -130.5,86.5 + parent: 2 + - uid: 25156 + components: + - type: Transform + pos: -127.5,86.5 + parent: 2 + - uid: 25157 + components: + - type: Transform + pos: -126.5,86.5 + parent: 2 + - uid: 25158 + components: + - type: Transform + pos: -125.5,86.5 + parent: 2 + - uid: 25159 + components: + - type: Transform + pos: -124.5,86.5 + parent: 2 + - uid: 25163 + components: + - type: Transform + pos: -130.5,89.5 + parent: 2 + - uid: 25189 + components: + - type: Transform + pos: -125.5,56.5 + parent: 2 + - uid: 25195 + components: + - type: Transform + pos: -119.5,61.5 + parent: 2 + - uid: 25204 + components: + - type: Transform + pos: -129.5,103.5 + parent: 2 + - uid: 25228 + components: + - type: Transform + pos: -32.5,185.5 + parent: 2 + - uid: 25229 + components: + - type: Transform + pos: -32.5,186.5 + parent: 2 + - uid: 25230 + components: + - type: Transform + pos: -32.5,184.5 + parent: 2 + - uid: 25232 + components: + - type: Transform + pos: -32.5,183.5 + parent: 2 + - uid: 25249 + components: + - type: Transform + pos: -127.5,105.5 + parent: 2 + - uid: 25291 + components: + - type: Transform + pos: -30.5,80.5 + parent: 2 + - uid: 25295 + components: + - type: Transform + pos: -128.5,57.5 + parent: 2 + - uid: 25298 + components: + - type: Transform + pos: -129.5,55.5 + parent: 2 + - uid: 25331 + components: + - type: Transform + pos: -120.5,109.5 + parent: 2 + - uid: 25391 + components: + - type: Transform + pos: 18.5,205.5 + parent: 2 + - uid: 25405 + components: + - type: Transform + pos: -29.5,80.5 + parent: 2 + - uid: 25406 + components: + - type: Transform + pos: -28.5,80.5 + parent: 2 + - uid: 25407 + components: + - type: Transform + pos: -28.5,79.5 + parent: 2 + - uid: 25409 + components: + - type: Transform + pos: -28.5,77.5 + parent: 2 + - uid: 25410 + components: + - type: Transform + pos: -28.5,76.5 + parent: 2 + - uid: 25411 + components: + - type: Transform + pos: -28.5,75.5 + parent: 2 + - uid: 25412 + components: + - type: Transform + pos: -28.5,74.5 + parent: 2 + - uid: 25413 + components: + - type: Transform + pos: -29.5,74.5 + parent: 2 + - uid: 25414 + components: + - type: Transform + pos: -30.5,74.5 + parent: 2 + - uid: 25441 + components: + - type: Transform + pos: -133.5,37.5 + parent: 2 + - uid: 25481 + components: + - type: Transform + pos: -74.5,176.5 + parent: 2 + - uid: 25482 + components: + - type: Transform + pos: -74.5,175.5 + parent: 2 + - uid: 25697 + components: + - type: Transform + pos: -31.5,74.5 + parent: 2 + - uid: 25698 + components: + - type: Transform + pos: -32.5,74.5 + parent: 2 + - uid: 25716 + components: + - type: Transform + pos: -119.5,109.5 + parent: 2 + - uid: 25722 + components: + - type: Transform + pos: -121.5,109.5 + parent: 2 + - uid: 25727 + components: + - type: Transform + pos: -122.5,109.5 + parent: 2 + - uid: 25733 + components: + - type: Transform + pos: -117.5,105.5 + parent: 2 + - uid: 25734 + components: + - type: Transform + pos: -117.5,106.5 + parent: 2 + - uid: 25736 + components: + - type: Transform + pos: -117.5,109.5 + parent: 2 + - uid: 25737 + components: + - type: Transform + pos: -117.5,108.5 + parent: 2 + - uid: 25738 + components: + - type: Transform + pos: -118.5,109.5 + parent: 2 + - uid: 25749 + components: + - type: Transform + pos: -129.5,93.5 + parent: 2 + - uid: 25773 + components: + - type: Transform + pos: -95.5,32.5 + parent: 2 + - uid: 25774 + components: + - type: Transform + pos: -94.5,32.5 + parent: 2 + - uid: 25776 + components: + - type: Transform + pos: -93.5,32.5 + parent: 2 + - uid: 25780 + components: + - type: Transform + pos: -92.5,32.5 + parent: 2 + - uid: 25808 + components: + - type: Transform + pos: -96.5,32.5 + parent: 2 + - uid: 25818 + components: + - type: Transform + pos: -38.5,77.5 + parent: 2 + - uid: 25825 + components: + - type: Transform + pos: -23.5,170.5 + parent: 2 + - uid: 26164 + components: + - type: Transform + pos: 76.5,32.5 + parent: 2 + - uid: 26165 + components: + - type: Transform + pos: 74.5,32.5 + parent: 2 + - uid: 26166 + components: + - type: Transform + pos: 75.5,32.5 + parent: 2 + - uid: 26168 + components: + - type: Transform + pos: -35.5,193.5 + parent: 2 + - uid: 26169 + components: + - type: Transform + pos: -31.5,190.5 + parent: 2 + - uid: 26170 + components: + - type: Transform + pos: -32.5,190.5 + parent: 2 + - uid: 26174 + components: + - type: Transform + pos: -33.5,190.5 + parent: 2 + - uid: 26187 + components: + - type: Transform + pos: -34.5,190.5 + parent: 2 + - uid: 26188 + components: + - type: Transform + pos: -35.5,190.5 + parent: 2 + - uid: 26189 + components: + - type: Transform + pos: -35.5,191.5 + parent: 2 + - uid: 26190 + components: + - type: Transform + pos: -67.5,150.5 + parent: 2 + - uid: 26267 + components: + - type: Transform + pos: 82.5,32.5 + parent: 2 + - uid: 26328 + components: + - type: Transform + pos: -33.5,74.5 + parent: 2 + - uid: 26368 + components: + - type: Transform + pos: -32.5,181.5 + parent: 2 + - uid: 26370 + components: + - type: Transform + pos: -34.5,74.5 + parent: 2 + - uid: 26371 + components: + - type: Transform + pos: -33.5,181.5 + parent: 2 + - uid: 26373 + components: + - type: Transform + pos: -45.5,174.5 + parent: 2 + - uid: 26377 + components: + - type: Transform + pos: 79.5,32.5 + parent: 2 + - uid: 26383 + components: + - type: Transform + pos: 81.5,32.5 + parent: 2 + - uid: 26430 + components: + - type: Transform + pos: -34.5,82.5 + parent: 2 + - uid: 26463 + components: + - type: Transform + pos: -102.5,59.5 + parent: 2 + - uid: 26573 + components: + - type: Transform + pos: -74.5,174.5 + parent: 2 + - uid: 26582 + components: + - type: Transform + pos: 79.5,53.5 + parent: 2 + - uid: 26602 + components: + - type: Transform + pos: -79.5,139.5 + parent: 2 + - uid: 26604 + components: + - type: Transform + pos: -74.5,173.5 + parent: 2 + - uid: 26607 + components: + - type: Transform + pos: -74.5,177.5 + parent: 2 + - uid: 26608 + components: + - type: Transform + pos: -74.5,178.5 + parent: 2 + - uid: 26609 + components: + - type: Transform + pos: 81.5,53.5 + parent: 2 + - uid: 26783 + components: + - type: Transform + pos: -25.5,174.5 + parent: 2 + - uid: 26786 + components: + - type: Transform + pos: -25.5,176.5 + parent: 2 + - uid: 26799 + components: + - type: Transform + pos: -68.5,150.5 + parent: 2 + - uid: 26821 + components: + - type: Transform + pos: 15.5,205.5 + parent: 2 + - uid: 26824 + components: + - type: Transform + pos: 15.5,206.5 + parent: 2 + - uid: 26826 + components: + - type: Transform + pos: -127.5,107.5 + parent: 2 + - uid: 26836 + components: + - type: Transform + pos: -10.5,163.5 + parent: 2 + - uid: 26845 + components: + - type: Transform + pos: -2.5,58.5 + parent: 2 + - uid: 26848 + components: + - type: Transform + pos: -33.5,82.5 + parent: 2 + - uid: 26849 + components: + - type: Transform + pos: -32.5,82.5 + parent: 2 + - uid: 26851 + components: + - type: Transform + pos: -69.5,150.5 + parent: 2 + - uid: 26852 + components: + - type: Transform + pos: -70.5,150.5 + parent: 2 + - uid: 26853 + components: + - type: Transform + pos: -71.5,150.5 + parent: 2 + - uid: 26854 + components: + - type: Transform + pos: -73.5,150.5 + parent: 2 + - uid: 26869 + components: + - type: Transform + pos: -31.5,82.5 + parent: 2 + - uid: 27075 + components: + - type: Transform + pos: 2.5,66.5 + parent: 2 + - uid: 27133 + components: + - type: Transform + pos: -98.5,58.5 + parent: 2 + - uid: 27141 + components: + - type: Transform + pos: -122.5,56.5 + parent: 2 + - uid: 27142 + components: + - type: Transform + pos: -127.5,58.5 + parent: 2 + - uid: 27143 + components: + - type: Transform + pos: -120.5,56.5 + parent: 2 + - uid: 27144 + components: + - type: Transform + pos: -119.5,56.5 + parent: 2 + - uid: 27152 + components: + - type: Transform + pos: -113.5,54.5 + parent: 2 + - uid: 27153 + components: + - type: Transform + pos: -113.5,53.5 + parent: 2 + - uid: 27154 + components: + - type: Transform + pos: -119.5,55.5 + parent: 2 + - uid: 27155 + components: + - type: Transform + pos: -119.5,54.5 + parent: 2 + - uid: 27159 + components: + - type: Transform + pos: -122.5,52.5 + parent: 2 + - uid: 27160 + components: + - type: Transform + pos: -122.5,51.5 + parent: 2 + - uid: 27161 + components: + - type: Transform + pos: -121.5,51.5 + parent: 2 + - uid: 27162 + components: + - type: Transform + pos: -119.5,51.5 + parent: 2 + - uid: 27163 + components: + - type: Transform + pos: -120.5,51.5 + parent: 2 + - uid: 27164 + components: + - type: Transform + pos: -119.5,52.5 + parent: 2 + - uid: 27165 + components: + - type: Transform + pos: -118.5,52.5 + parent: 2 + - uid: 27166 + components: + - type: Transform + pos: -114.5,52.5 + parent: 2 + - uid: 27167 + components: + - type: Transform + pos: -113.5,52.5 + parent: 2 + - uid: 27168 + components: + - type: Transform + pos: -113.5,51.5 + parent: 2 + - uid: 27169 + components: + - type: Transform + pos: -112.5,51.5 + parent: 2 + - uid: 27170 + components: + - type: Transform + pos: -112.5,50.5 + parent: 2 + - uid: 27171 + components: + - type: Transform + pos: -111.5,50.5 + parent: 2 + - uid: 27172 + components: + - type: Transform + pos: -111.5,49.5 + parent: 2 + - uid: 27173 + components: + - type: Transform + pos: -111.5,48.5 + parent: 2 + - uid: 27174 + components: + - type: Transform + pos: -120.5,50.5 + parent: 2 + - uid: 27175 + components: + - type: Transform + pos: -121.5,50.5 + parent: 2 + - uid: 27176 + components: + - type: Transform + pos: -121.5,49.5 + parent: 2 + - uid: 27177 + components: + - type: Transform + pos: -121.5,48.5 + parent: 2 + - uid: 27178 + components: + - type: Transform + pos: -121.5,46.5 + parent: 2 + - uid: 27181 + components: + - type: Transform + pos: -96.5,56.5 + parent: 2 + - uid: 27188 + components: + - type: Transform + pos: -134.5,35.5 + parent: 2 + - uid: 27258 + components: + - type: Transform + pos: -121.5,45.5 + parent: 2 + - uid: 27259 + components: + - type: Transform + pos: -121.5,44.5 + parent: 2 + - uid: 27260 + components: + - type: Transform + pos: -121.5,43.5 + parent: 2 + - uid: 27261 + components: + - type: Transform + pos: -121.5,42.5 + parent: 2 + - uid: 27262 + components: + - type: Transform + pos: -121.5,41.5 + parent: 2 + - uid: 27263 + components: + - type: Transform + pos: -120.5,41.5 + parent: 2 + - uid: 27264 + components: + - type: Transform + pos: -120.5,40.5 + parent: 2 + - uid: 27265 + components: + - type: Transform + pos: -119.5,40.5 + parent: 2 + - uid: 27266 + components: + - type: Transform + pos: -119.5,39.5 + parent: 2 + - uid: 27267 + components: + - type: Transform + pos: -118.5,39.5 + parent: 2 + - uid: 27268 + components: + - type: Transform + pos: -117.5,39.5 + parent: 2 + - uid: 27269 + components: + - type: Transform + pos: -115.5,39.5 + parent: 2 + - uid: 27270 + components: + - type: Transform + pos: -114.5,39.5 + parent: 2 + - uid: 27271 + components: + - type: Transform + pos: -113.5,39.5 + parent: 2 + - uid: 27272 + components: + - type: Transform + pos: -113.5,40.5 + parent: 2 + - uid: 27273 + components: + - type: Transform + pos: -112.5,40.5 + parent: 2 + - uid: 27274 + components: + - type: Transform + pos: -112.5,41.5 + parent: 2 + - uid: 27275 + components: + - type: Transform + pos: -111.5,41.5 + parent: 2 + - uid: 27276 + components: + - type: Transform + pos: -111.5,42.5 + parent: 2 + - uid: 27277 + components: + - type: Transform + pos: -111.5,43.5 + parent: 2 + - uid: 27278 + components: + - type: Transform + pos: -111.5,44.5 + parent: 2 + - uid: 27279 + components: + - type: Transform + pos: -111.5,45.5 + parent: 2 + - uid: 27310 + components: + - type: Transform + pos: -129.5,57.5 + parent: 2 + - uid: 27342 + components: + - type: Transform + pos: 80.5,53.5 + parent: 2 + - uid: 27376 + components: + - type: Transform + pos: 98.5,55.5 + parent: 2 + - uid: 27379 + components: + - type: Transform + pos: 81.5,37.5 + parent: 2 + - uid: 27471 + components: + - type: Transform + pos: -135.5,36.5 + parent: 2 + - uid: 27472 + components: + - type: Transform + pos: -75.5,35.5 + parent: 2 + - uid: 27473 + components: + - type: Transform + pos: -74.5,33.5 + parent: 2 + - uid: 27475 + components: + - type: Transform + pos: -73.5,35.5 + parent: 2 + - uid: 27476 + components: + - type: Transform + pos: -74.5,179.5 + parent: 2 + - uid: 27479 + components: + - type: Transform + pos: -77.5,35.5 + parent: 2 + - uid: 27480 + components: + - type: Transform + pos: -76.5,33.5 + parent: 2 + - uid: 27482 + components: + - type: Transform + pos: -74.5,35.5 + parent: 2 + - uid: 27483 + components: + - type: Transform + pos: -74.5,180.5 + parent: 2 + - uid: 27484 + components: + - type: Transform + pos: -74.5,181.5 + parent: 2 + - uid: 27485 + components: + - type: Transform + pos: -103.5,14.5 + parent: 2 + - uid: 27489 + components: + - type: Transform + pos: -77.5,33.5 + parent: 2 + - uid: 27490 + components: + - type: Transform + pos: -90.5,36.5 + parent: 2 + - uid: 27492 + components: + - type: Transform + pos: -74.5,182.5 + parent: 2 + - uid: 27493 + components: + - type: Transform + pos: -75.5,33.5 + parent: 2 + - uid: 27496 + components: + - type: Transform + pos: -76.5,35.5 + parent: 2 + - uid: 27499 + components: + - type: Transform + pos: -101.5,14.5 + parent: 2 + - uid: 27501 + components: + - type: Transform + pos: -100.5,14.5 + parent: 2 + - uid: 27503 + components: + - type: Transform + pos: -101.5,144.5 + parent: 2 + - uid: 27507 + components: + - type: Transform + pos: -107.5,14.5 + parent: 2 + - uid: 27508 + components: + - type: Transform + pos: -84.5,177.5 + parent: 2 + - uid: 27509 + components: + - type: Transform + pos: -78.5,33.5 + parent: 2 + - uid: 27517 + components: + - type: Transform + pos: -99.5,14.5 + parent: 2 + - uid: 27523 + components: + - type: Transform + pos: -111.5,14.5 + parent: 2 + - uid: 27527 + components: + - type: Transform + pos: -98.5,14.5 + parent: 2 + - uid: 27528 + components: + - type: Transform + pos: -102.5,26.5 + parent: 2 + - uid: 27529 + components: + - type: Transform + pos: -98.5,16.5 + parent: 2 + - uid: 27530 + components: + - type: Transform + pos: -98.5,18.5 + parent: 2 + - uid: 27533 + components: + - type: Transform + pos: -84.5,178.5 + parent: 2 + - uid: 27536 + components: + - type: Transform + pos: -84.5,179.5 + parent: 2 + - uid: 27545 + components: + - type: Transform + pos: -80.5,32.5 + parent: 2 + - uid: 27546 + components: + - type: Transform + pos: -81.5,32.5 + parent: 2 + - uid: 27547 + components: + - type: Transform + pos: -82.5,32.5 + parent: 2 + - uid: 27548 + components: + - type: Transform + pos: -79.5,32.5 + parent: 2 + - uid: 27549 + components: + - type: Transform + pos: -78.5,32.5 + parent: 2 + - uid: 27551 + components: + - type: Transform + pos: -136.5,36.5 + parent: 2 + - uid: 27554 + components: + - type: Transform + pos: -84.5,180.5 + parent: 2 + - uid: 27555 + components: + - type: Transform + pos: -84.5,181.5 + parent: 2 + - uid: 27556 + components: + - type: Transform + pos: -84.5,182.5 + parent: 2 + - uid: 27557 + components: + - type: Transform + pos: -81.5,165.5 + parent: 2 + - uid: 27558 + components: + - type: Transform + pos: -91.5,174.5 + parent: 2 + - uid: 27559 + components: + - type: Transform + pos: -91.5,173.5 + parent: 2 + - uid: 27560 + components: + - type: Transform + pos: -91.5,172.5 + parent: 2 + - uid: 27561 + components: + - type: Transform + pos: -87.5,39.5 + parent: 2 + - uid: 27563 + components: + - type: Transform + pos: -91.5,171.5 + parent: 2 + - uid: 27565 + components: + - type: Transform + pos: -75.5,47.5 + parent: 2 + - uid: 27566 + components: + - type: Transform + pos: -73.5,47.5 + parent: 2 + - uid: 27567 + components: + - type: Transform + pos: -74.5,47.5 + parent: 2 + - uid: 27568 + components: + - type: Transform + pos: -76.5,47.5 + parent: 2 + - uid: 27569 + components: + - type: Transform + pos: -77.5,47.5 + parent: 2 + - uid: 27570 + components: + - type: Transform + pos: -73.5,49.5 + parent: 2 + - uid: 27571 + components: + - type: Transform + pos: -74.5,49.5 + parent: 2 + - uid: 27572 + components: + - type: Transform + pos: -75.5,49.5 + parent: 2 + - uid: 27573 + components: + - type: Transform + pos: -76.5,49.5 + parent: 2 + - uid: 27574 + components: + - type: Transform + pos: -77.5,49.5 + parent: 2 + - uid: 27575 + components: + - type: Transform + pos: -78.5,49.5 + parent: 2 + - uid: 27576 + components: + - type: Transform + pos: -78.5,50.5 + parent: 2 + - uid: 27577 + components: + - type: Transform + pos: -79.5,50.5 + parent: 2 + - uid: 27578 + components: + - type: Transform + pos: -79.5,51.5 + parent: 2 + - uid: 27579 + components: + - type: Transform + pos: -79.5,52.5 + parent: 2 + - uid: 27580 + components: + - type: Transform + pos: -81.5,52.5 + parent: 2 + - uid: 27581 + components: + - type: Transform + pos: -81.5,51.5 + parent: 2 + - uid: 27582 + components: + - type: Transform + pos: -81.5,50.5 + parent: 2 + - uid: 27583 + components: + - type: Transform + pos: -82.5,50.5 + parent: 2 + - uid: 27584 + components: + - type: Transform + pos: -82.5,49.5 + parent: 2 + - uid: 27585 + components: + - type: Transform + pos: -82.5,48.5 + parent: 2 + - uid: 27586 + components: + - type: Transform + pos: -83.5,48.5 + parent: 2 + - uid: 27592 + components: + - type: Transform + pos: -89.5,48.5 + parent: 2 + - uid: 27593 + components: + - type: Transform + pos: -82.5,33.5 + parent: 2 + - uid: 27594 + components: + - type: Transform + pos: -82.5,34.5 + parent: 2 + - uid: 27595 + components: + - type: Transform + pos: -83.5,34.5 + parent: 2 + - uid: 27596 + components: + - type: Transform + pos: -84.5,34.5 + parent: 2 + - uid: 27600 + components: + - type: Transform + pos: -88.5,34.5 + parent: 2 + - uid: 27601 + components: + - type: Transform + pos: -89.5,34.5 + parent: 2 + - uid: 27602 + components: + - type: Transform + pos: -87.5,38.5 + parent: 2 + - uid: 27603 + components: + - type: Transform + pos: -86.5,38.5 + parent: 2 + - uid: 27604 + components: + - type: Transform + pos: -85.5,38.5 + parent: 2 + - uid: 27605 + components: + - type: Transform + pos: -84.5,38.5 + parent: 2 + - uid: 27606 + components: + - type: Transform + pos: -83.5,38.5 + parent: 2 + - uid: 27607 + components: + - type: Transform + pos: -82.5,38.5 + parent: 2 + - uid: 27608 + components: + - type: Transform + pos: -137.5,36.5 + parent: 2 + - uid: 27609 + components: + - type: Transform + pos: -81.5,39.5 + parent: 2 + - uid: 27610 + components: + - type: Transform + pos: -81.5,40.5 + parent: 2 + - uid: 27611 + components: + - type: Transform + pos: -81.5,41.5 + parent: 2 + - uid: 27612 + components: + - type: Transform + pos: -81.5,42.5 + parent: 2 + - uid: 27613 + components: + - type: Transform + pos: -81.5,43.5 + parent: 2 + - uid: 27614 + components: + - type: Transform + pos: -138.5,36.5 + parent: 2 + - uid: 27615 + components: + - type: Transform + pos: -82.5,44.5 + parent: 2 + - uid: 27616 + components: + - type: Transform + pos: -83.5,44.5 + parent: 2 + - uid: 27617 + components: + - type: Transform + pos: -84.5,44.5 + parent: 2 + - uid: 27618 + components: + - type: Transform + pos: -85.5,44.5 + parent: 2 + - uid: 27619 + components: + - type: Transform + pos: -86.5,44.5 + parent: 2 + - uid: 27620 + components: + - type: Transform + pos: -87.5,44.5 + parent: 2 + - uid: 27624 + components: + - type: Transform + pos: -95.5,38.5 + parent: 2 + - uid: 27625 + components: + - type: Transform + pos: -96.5,38.5 + parent: 2 + - uid: 27627 + components: + - type: Transform + pos: -96.5,37.5 + parent: 2 + - uid: 27628 + components: + - type: Transform + pos: -95.5,39.5 + parent: 2 + - uid: 27632 + components: + - type: Transform + pos: -95.5,43.5 + parent: 2 + - uid: 27633 + components: + - type: Transform + pos: -94.5,44.5 + parent: 2 + - uid: 27634 + components: + - type: Transform + pos: -95.5,44.5 + parent: 2 + - uid: 27635 + components: + - type: Transform + pos: -96.5,44.5 + parent: 2 + - uid: 27637 + components: + - type: Transform + pos: -96.5,45.5 + parent: 2 + - uid: 27638 + components: + - type: Transform + pos: -91.5,44.5 + parent: 2 + - uid: 27639 + components: + - type: Transform + pos: -90.5,44.5 + parent: 2 + - uid: 27640 + components: + - type: Transform + pos: -90.5,45.5 + parent: 2 + - uid: 27641 + components: + - type: Transform + pos: -90.5,46.5 + parent: 2 + - uid: 27642 + components: + - type: Transform + pos: -90.5,47.5 + parent: 2 + - uid: 27643 + components: + - type: Transform + pos: -90.5,48.5 + parent: 2 + - uid: 27644 + components: + - type: Transform + pos: -90.5,49.5 + parent: 2 + - uid: 27645 + components: + - type: Transform + pos: -91.5,49.5 + parent: 2 + - uid: 27647 + components: + - type: Transform + pos: -93.5,49.5 + parent: 2 + - uid: 27648 + components: + - type: Transform + pos: -94.5,49.5 + parent: 2 + - uid: 27649 + components: + - type: Transform + pos: -95.5,49.5 + parent: 2 + - uid: 27650 + components: + - type: Transform + pos: -96.5,49.5 + parent: 2 + - uid: 27653 + components: + - type: Transform + pos: -118.5,57.5 + parent: 2 + - uid: 27654 + components: + - type: Transform + pos: -117.5,57.5 + parent: 2 + - uid: 27657 + components: + - type: Transform + pos: -96.5,48.5 + parent: 2 + - uid: 27660 + components: + - type: Transform + pos: -102.5,44.5 + parent: 2 + - uid: 27661 + components: + - type: Transform + pos: -101.5,44.5 + parent: 2 + - uid: 27662 + components: + - type: Transform + pos: -100.5,44.5 + parent: 2 + - uid: 27663 + components: + - type: Transform + pos: -100.5,43.5 + parent: 2 + - uid: 27664 + components: + - type: Transform + pos: -100.5,42.5 + parent: 2 + - uid: 27665 + components: + - type: Transform + pos: -100.5,41.5 + parent: 2 + - uid: 27666 + components: + - type: Transform + pos: -100.5,40.5 + parent: 2 + - uid: 27667 + components: + - type: Transform + pos: -100.5,39.5 + parent: 2 + - uid: 27668 + components: + - type: Transform + pos: -100.5,38.5 + parent: 2 + - uid: 27669 + components: + - type: Transform + pos: -101.5,38.5 + parent: 2 + - uid: 27670 + components: + - type: Transform + pos: -102.5,38.5 + parent: 2 + - uid: 27671 + components: + - type: Transform + pos: -85.5,33.5 + parent: 2 + - uid: 27672 + components: + - type: Transform + pos: -85.5,34.5 + parent: 2 + - uid: 27673 + components: + - type: Transform + pos: -105.5,38.5 + parent: 2 + - uid: 27674 + components: + - type: Transform + pos: -101.5,37.5 + parent: 2 + - uid: 27675 + components: + - type: Transform + pos: -101.5,34.5 + parent: 2 + - uid: 27676 + components: + - type: Transform + pos: -96.5,34.5 + parent: 2 + - uid: 27677 + components: + - type: Transform + pos: -90.5,34.5 + parent: 2 + - uid: 27678 + components: + - type: Transform + pos: -90.5,33.5 + parent: 2 + - uid: 27679 + components: + - type: Transform + pos: -91.5,33.5 + parent: 2 + - uid: 27680 + components: + - type: Transform + pos: -92.5,33.5 + parent: 2 + - uid: 27684 + components: + - type: Transform + pos: -96.5,33.5 + parent: 2 + - uid: 27685 + components: + - type: Transform + pos: -97.5,33.5 + parent: 2 + - uid: 27686 + components: + - type: Transform + pos: -98.5,33.5 + parent: 2 + - uid: 27687 + components: + - type: Transform + pos: -99.5,33.5 + parent: 2 + - uid: 27688 + components: + - type: Transform + pos: -100.5,33.5 + parent: 2 + - uid: 27689 + components: + - type: Transform + pos: -101.5,33.5 + parent: 2 + - uid: 27690 + components: + - type: Transform + pos: -111.5,66.5 + parent: 2 + - uid: 27691 + components: + - type: Transform + pos: -106.5,38.5 + parent: 2 + - uid: 27692 + components: + - type: Transform + pos: -106.5,37.5 + parent: 2 + - uid: 27693 + components: + - type: Transform + pos: -106.5,36.5 + parent: 2 + - uid: 27704 + components: + - type: Transform + pos: -114.5,37.5 + parent: 2 + - uid: 27705 + components: + - type: Transform + pos: -114.5,38.5 + parent: 2 + - uid: 27707 + components: + - type: Transform + pos: -115.5,36.5 + parent: 2 + - uid: 27708 + components: + - type: Transform + pos: -117.5,36.5 + parent: 2 + - uid: 27709 + components: + - type: Transform + pos: -118.5,36.5 + parent: 2 + - uid: 27710 + components: + - type: Transform + pos: -118.5,37.5 + parent: 2 + - uid: 27711 + components: + - type: Transform + pos: -118.5,38.5 + parent: 2 + - uid: 27712 + components: + - type: Transform + pos: -98.5,15.5 + parent: 2 + - uid: 27714 + components: + - type: Transform + pos: -98.5,17.5 + parent: 2 + - uid: 27715 + components: + - type: Transform + pos: -98.5,19.5 + parent: 2 + - uid: 27716 + components: + - type: Transform + pos: -99.5,19.5 + parent: 2 + - uid: 27717 + components: + - type: Transform + pos: -100.5,19.5 + parent: 2 + - uid: 27723 + components: + - type: Transform + pos: -85.5,176.5 + parent: 2 + - uid: 27726 + components: + - type: Transform + pos: -110.5,14.5 + parent: 2 + - uid: 27728 + components: + - type: Transform + pos: -29.5,82.5 + parent: 2 + - uid: 27729 + components: + - type: Transform + pos: -28.5,82.5 + parent: 2 + - uid: 27730 + components: + - type: Transform + pos: -28.5,83.5 + parent: 2 + - uid: 27731 + components: + - type: Transform + pos: -28.5,84.5 + parent: 2 + - uid: 27732 + components: + - type: Transform + pos: -28.5,85.5 + parent: 2 + - uid: 27733 + components: + - type: Transform + pos: -28.5,86.5 + parent: 2 + - uid: 27734 + components: + - type: Transform + pos: -28.5,87.5 + parent: 2 + - uid: 27735 + components: + - type: Transform + pos: -28.5,88.5 + parent: 2 + - uid: 27736 + components: + - type: Transform + pos: -29.5,88.5 + parent: 2 + - uid: 27743 + components: + - type: Transform + pos: -101.5,19.5 + parent: 2 + - uid: 27754 + components: + - type: Transform + pos: -102.5,20.5 + parent: 2 + - uid: 27756 + components: + - type: Transform + pos: -96.5,50.5 + parent: 2 + - uid: 27758 + components: + - type: Transform + pos: -113.5,14.5 + parent: 2 + - uid: 27763 + components: + - type: Transform + pos: -86.5,176.5 + parent: 2 + - uid: 27766 + components: + - type: Transform + pos: -102.5,21.5 + parent: 2 + - uid: 27773 + components: + - type: Transform + pos: -105.5,14.5 + parent: 2 + - uid: 27774 + components: + - type: Transform + pos: -102.5,22.5 + parent: 2 + - uid: 27775 + components: + - type: Transform + pos: -112.5,14.5 + parent: 2 + - uid: 27776 + components: + - type: Transform + pos: -113.5,16.5 + parent: 2 + - uid: 27789 + components: + - type: Transform + pos: -89.5,176.5 + parent: 2 + - uid: 27792 + components: + - type: Transform + pos: -109.5,14.5 + parent: 2 + - uid: 27795 + components: + - type: Transform + pos: -96.5,51.5 + parent: 2 + - uid: 27805 + components: + - type: Transform + pos: -108.5,14.5 + parent: 2 + - uid: 27806 + components: + - type: Transform + pos: -106.5,14.5 + parent: 2 + - uid: 27807 + components: + - type: Transform + pos: -102.5,144.5 + parent: 2 + - uid: 27841 + components: + - type: Transform + pos: -90.5,176.5 + parent: 2 + - uid: 27847 + components: + - type: Transform + pos: -103.5,16.5 + parent: 2 + - uid: 27848 + components: + - type: Transform + pos: -103.5,15.5 + parent: 2 + - uid: 27858 + components: + - type: Transform + pos: -102.5,19.5 + parent: 2 + - uid: 27895 + components: + - type: Transform + pos: -96.5,36.5 + parent: 2 + - uid: 27904 + components: + - type: Transform + pos: -114.5,19.5 + parent: 2 + - uid: 27906 + components: + - type: Transform + pos: -114.5,20.5 + parent: 2 + - uid: 27910 + components: + - type: Transform + pos: -114.5,24.5 + parent: 2 + - uid: 27911 + components: + - type: Transform + pos: -114.5,25.5 + parent: 2 + - uid: 27912 + components: + - type: Transform + pos: -114.5,26.5 + parent: 2 + - uid: 27913 + components: + - type: Transform + pos: -113.5,26.5 + parent: 2 + - uid: 27914 + components: + - type: Transform + pos: -112.5,26.5 + parent: 2 + - uid: 27915 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 27916 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 27929 + components: + - type: Transform + pos: -30.5,88.5 + parent: 2 + - uid: 27936 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 27979 + components: + - type: Transform + pos: -106.5,32.5 + parent: 2 + - uid: 28079 + components: + - type: Transform + pos: -23.5,171.5 + parent: 2 + - uid: 28091 + components: + - type: Transform + pos: -31.5,88.5 + parent: 2 + - uid: 28118 + components: + - type: Transform + pos: -144.5,16.5 + parent: 2 + - uid: 28119 + components: + - type: Transform + pos: -143.5,16.5 + parent: 2 + - uid: 28120 + components: + - type: Transform + pos: -142.5,16.5 + parent: 2 + - uid: 28121 + components: + - type: Transform + pos: -141.5,16.5 + parent: 2 + - uid: 28124 + components: + - type: Transform + pos: -110.5,27.5 + parent: 2 + - uid: 28127 + components: + - type: Transform + pos: -140.5,16.5 + parent: 2 + - uid: 28134 + components: + - type: Transform + pos: -139.5,16.5 + parent: 2 + - uid: 28136 + components: + - type: Transform + pos: -138.5,16.5 + parent: 2 + - uid: 28137 + components: + - type: Transform + pos: -137.5,16.5 + parent: 2 + - uid: 28139 + components: + - type: Transform + pos: -136.5,16.5 + parent: 2 + - uid: 28140 + components: + - type: Transform + pos: -135.5,16.5 + parent: 2 + - uid: 28141 + components: + - type: Transform + pos: -135.5,17.5 + parent: 2 + - uid: 28142 + components: + - type: Transform + pos: -134.5,17.5 + parent: 2 + - uid: 28164 + components: + - type: Transform + pos: -101.5,29.5 + parent: 2 + - uid: 28165 + components: + - type: Transform + pos: -101.5,30.5 + parent: 2 + - uid: 28166 + components: + - type: Transform + pos: -101.5,31.5 + parent: 2 + - uid: 28167 + components: + - type: Transform + pos: -101.5,32.5 + parent: 2 + - uid: 28168 + components: + - type: Transform + pos: -110.5,29.5 + parent: 2 + - uid: 28169 + components: + - type: Transform + pos: -109.5,29.5 + parent: 2 + - uid: 28170 + components: + - type: Transform + pos: -108.5,29.5 + parent: 2 + - uid: 28171 + components: + - type: Transform + pos: -107.5,29.5 + parent: 2 + - uid: 28173 + components: + - type: Transform + pos: -106.5,29.5 + parent: 2 + - uid: 28174 + components: + - type: Transform + pos: -106.5,30.5 + parent: 2 + - uid: 28176 + components: + - type: Transform + pos: -107.5,37.5 + parent: 2 + - uid: 28178 + components: + - type: Transform + pos: -112.5,37.5 + parent: 2 + - uid: 28186 + components: + - type: Transform + pos: -111.5,29.5 + parent: 2 + - uid: 28191 + components: + - type: Transform + pos: -114.5,29.5 + parent: 2 + - uid: 28192 + components: + - type: Transform + pos: -113.5,29.5 + parent: 2 + - uid: 28194 + components: + - type: Transform + pos: -114.5,30.5 + parent: 2 + - uid: 28195 + components: + - type: Transform + pos: -112.5,29.5 + parent: 2 + - uid: 28200 + components: + - type: Transform + pos: -85.5,32.5 + parent: 2 + - uid: 28208 + components: + - type: Transform + pos: -87.5,34.5 + parent: 2 + - uid: 28209 + components: + - type: Transform + pos: -87.5,33.5 + parent: 2 + - uid: 28210 + components: + - type: Transform + pos: -87.5,32.5 + parent: 2 + - uid: 28211 + components: + - type: Transform + pos: -87.5,31.5 + parent: 2 + - uid: 28212 + components: + - type: Transform + pos: -85.5,31.5 + parent: 2 + - uid: 28215 + components: + - type: Transform + pos: -83.5,32.5 + parent: 2 + - uid: 28219 + components: + - type: Transform + pos: -105.5,44.5 + parent: 2 + - uid: 28220 + components: + - type: Transform + pos: -106.5,44.5 + parent: 2 + - uid: 28221 + components: + - type: Transform + pos: -106.5,45.5 + parent: 2 + - uid: 28222 + components: + - type: Transform + pos: -106.5,48.5 + parent: 2 + - uid: 28223 + components: + - type: Transform + pos: -106.5,49.5 + parent: 2 + - uid: 28224 + components: + - type: Transform + pos: -102.5,52.5 + parent: 2 + - uid: 28225 + components: + - type: Transform + pos: -109.5,146.5 + parent: 2 + - uid: 28236 + components: + - type: Transform + pos: -103.5,60.5 + parent: 2 + - uid: 28237 + components: + - type: Transform + pos: -103.5,59.5 + parent: 2 + - uid: 28286 + components: + - type: Transform + pos: -104.5,62.5 + parent: 2 + - uid: 28303 + components: + - type: Transform + pos: 98.5,51.5 + parent: 2 + - uid: 28308 + components: + - type: Transform + pos: -111.5,67.5 + parent: 2 + - uid: 28309 + components: + - type: Transform + pos: -126.5,52.5 + parent: 2 + - uid: 28316 + components: + - type: Transform + pos: -107.5,61.5 + parent: 2 + - uid: 28349 + components: + - type: Transform + pos: -99.5,59.5 + parent: 2 + - uid: 28359 + components: + - type: Transform + pos: -99.5,60.5 + parent: 2 + - uid: 28403 + components: + - type: Transform + pos: -103.5,52.5 + parent: 2 + - uid: 28410 + components: + - type: Transform + pos: -106.5,50.5 + parent: 2 + - uid: 28418 + components: + - type: Transform + pos: -114.5,32.5 + parent: 2 + - uid: 28446 + components: + - type: Transform + pos: -116.5,57.5 + parent: 2 + - uid: 28459 + components: + - type: Transform + pos: -106.5,52.5 + parent: 2 + - uid: 28477 + components: + - type: Transform + pos: -97.5,56.5 + parent: 2 + - uid: 28480 + components: + - type: Transform + pos: -99.5,54.5 + parent: 2 + - uid: 28485 + components: + - type: Transform + pos: -124.5,61.5 + parent: 2 + - uid: 28486 + components: + - type: Transform + pos: -123.5,61.5 + parent: 2 + - uid: 28495 + components: + - type: Transform + pos: -101.5,64.5 + parent: 2 + - uid: 28502 + components: + - type: Transform + pos: -110.5,61.5 + parent: 2 + - uid: 28503 + components: + - type: Transform + pos: -111.5,61.5 + parent: 2 + - uid: 28504 + components: + - type: Transform + pos: -111.5,62.5 + parent: 2 + - uid: 28505 + components: + - type: Transform + pos: -111.5,63.5 + parent: 2 + - uid: 28507 + components: + - type: Transform + pos: -106.5,61.5 + parent: 2 + - uid: 28508 + components: + - type: Transform + pos: -106.5,62.5 + parent: 2 + - uid: 28510 + components: + - type: Transform + pos: -106.5,64.5 + parent: 2 + - uid: 28514 + components: + - type: Transform + pos: -111.5,64.5 + parent: 2 + - uid: 28525 + components: + - type: Transform + pos: -32.5,88.5 + parent: 2 + - uid: 28526 + components: + - type: Transform + pos: -33.5,88.5 + parent: 2 + - uid: 28534 + components: + - type: Transform + pos: -34.5,88.5 + parent: 2 + - uid: 28593 + components: + - type: Transform + pos: -106.5,51.5 + parent: 2 + - uid: 28634 + components: + - type: Transform + pos: -99.5,55.5 + parent: 2 + - uid: 28636 + components: + - type: Transform + pos: -97.5,52.5 + parent: 2 + - uid: 28642 + components: + - type: Transform + pos: 78.5,32.5 + parent: 2 + - uid: 28701 + components: + - type: Transform + pos: -105.5,52.5 + parent: 2 + - uid: 28705 + components: + - type: Transform + pos: -104.5,52.5 + parent: 2 + - uid: 28725 + components: + - type: Transform + pos: 69.5,56.5 + parent: 2 + - uid: 28726 + components: + - type: Transform + pos: 72.5,56.5 + parent: 2 + - uid: 28739 + components: + - type: Transform + pos: -119.5,57.5 + parent: 2 + - uid: 28742 + components: + - type: Transform + pos: -106.5,31.5 + parent: 2 + - uid: 28775 + components: + - type: Transform + pos: -87.5,43.5 + parent: 2 + - uid: 28836 + components: + - type: Transform + pos: -101.5,52.5 + parent: 2 + - uid: 28848 + components: + - type: Transform + pos: -131.5,41.5 + parent: 2 + - uid: 28849 + components: + - type: Transform + pos: -130.5,50.5 + parent: 2 + - uid: 28850 + components: + - type: Transform + pos: -130.5,48.5 + parent: 2 + - uid: 28851 + components: + - type: Transform + pos: -130.5,49.5 + parent: 2 + - uid: 28852 + components: + - type: Transform + pos: -130.5,46.5 + parent: 2 + - uid: 28853 + components: + - type: Transform + pos: -130.5,47.5 + parent: 2 + - uid: 28855 + components: + - type: Transform + pos: -130.5,44.5 + parent: 2 + - uid: 28856 + components: + - type: Transform + pos: -130.5,45.5 + parent: 2 + - uid: 28857 + components: + - type: Transform + pos: -129.5,52.5 + parent: 2 + - uid: 28859 + components: + - type: Transform + pos: -130.5,51.5 + parent: 2 + - uid: 28860 + components: + - type: Transform + pos: -130.5,52.5 + parent: 2 + - uid: 28863 + components: + - type: Transform + pos: -125.5,54.5 + parent: 2 + - uid: 28866 + components: + - type: Transform + pos: -125.5,55.5 + parent: 2 + - uid: 28868 + components: + - type: Transform + pos: -129.5,56.5 + parent: 2 + - uid: 28871 + components: + - type: Transform + pos: -124.5,51.5 + parent: 2 + - uid: 28872 + components: + - type: Transform + pos: -124.5,50.5 + parent: 2 + - uid: 28873 + components: + - type: Transform + pos: -125.5,52.5 + parent: 2 + - uid: 28874 + components: + - type: Transform + pos: -124.5,52.5 + parent: 2 + - uid: 28875 + components: + - type: Transform + pos: -125.5,53.5 + parent: 2 + - uid: 28879 + components: + - type: Transform + pos: -124.5,49.5 + parent: 2 + - uid: 28881 + components: + - type: Transform + pos: -130.5,43.5 + parent: 2 + - uid: 28882 + components: + - type: Transform + pos: -130.5,42.5 + parent: 2 + - uid: 28883 + components: + - type: Transform + pos: -129.5,42.5 + parent: 2 + - uid: 28884 + components: + - type: Transform + pos: -128.5,42.5 + parent: 2 + - uid: 28891 + components: + - type: Transform + pos: -124.5,44.5 + parent: 2 + - uid: 28892 + components: + - type: Transform + pos: -124.5,43.5 + parent: 2 + - uid: 28893 + components: + - type: Transform + pos: -124.5,45.5 + parent: 2 + - uid: 28894 + components: + - type: Transform + pos: -124.5,42.5 + parent: 2 + - uid: 28895 + components: + - type: Transform + pos: -125.5,42.5 + parent: 2 + - uid: 28896 + components: + - type: Transform + pos: -126.5,42.5 + parent: 2 + - uid: 28897 + components: + - type: Transform + pos: -127.5,42.5 + parent: 2 + - uid: 28905 + components: + - type: Transform + pos: -100.5,52.5 + parent: 2 + - uid: 28907 + components: + - type: Transform + pos: -124.5,48.5 + parent: 2 + - uid: 28908 + components: + - type: Transform + pos: -124.5,46.5 + parent: 2 + - uid: 28937 + components: + - type: Transform + pos: -108.5,66.5 + parent: 2 + - uid: 28938 + components: + - type: Transform + pos: -108.5,65.5 + parent: 2 + - uid: 28956 + components: + - type: Transform + pos: -128.5,52.5 + parent: 2 + - uid: 29026 + components: + - type: Transform + pos: -116.5,64.5 + parent: 2 + - uid: 29027 + components: + - type: Transform + pos: -116.5,63.5 + parent: 2 + - uid: 29028 + components: + - type: Transform + pos: -116.5,62.5 + parent: 2 + - uid: 29029 + components: + - type: Transform + pos: -117.5,62.5 + parent: 2 + - uid: 29030 + components: + - type: Transform + pos: -118.5,62.5 + parent: 2 + - uid: 29031 + components: + - type: Transform + pos: -119.5,62.5 + parent: 2 + - uid: 29032 + components: + - type: Transform + pos: -120.5,62.5 + parent: 2 + - uid: 29033 + components: + - type: Transform + pos: -121.5,62.5 + parent: 2 + - uid: 29034 + components: + - type: Transform + pos: -122.5,62.5 + parent: 2 + - uid: 29035 + components: + - type: Transform + pos: -123.5,62.5 + parent: 2 + - uid: 29036 + components: + - type: Transform + pos: -123.5,63.5 + parent: 2 + - uid: 29038 + components: + - type: Transform + pos: -123.5,65.5 + parent: 2 + - uid: 29039 + components: + - type: Transform + pos: -123.5,66.5 + parent: 2 + - uid: 29040 + components: + - type: Transform + pos: -123.5,67.5 + parent: 2 + - uid: 29041 + components: + - type: Transform + pos: -116.5,67.5 + parent: 2 + - uid: 29042 + components: + - type: Transform + pos: -116.5,66.5 + parent: 2 + - uid: 29043 + components: + - type: Transform + pos: -117.5,67.5 + parent: 2 + - uid: 29044 + components: + - type: Transform + pos: -122.5,67.5 + parent: 2 + - uid: 29120 + components: + - type: Transform + pos: -114.5,36.5 + parent: 2 + - uid: 29122 + components: + - type: Transform + pos: -114.5,31.5 + parent: 2 + - uid: 29134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,35.5 + parent: 2 + - uid: 29334 + components: + - type: Transform + pos: -46.5,74.5 + parent: 2 + - uid: 29338 + components: + - type: Transform + pos: -131.5,52.5 + parent: 2 + - uid: 29339 + components: + - type: Transform + pos: -118.5,23.5 + parent: 2 + - uid: 29348 + components: + - type: Transform + pos: -135.5,37.5 + parent: 2 + - uid: 29351 + components: + - type: Transform + pos: -118.5,21.5 + parent: 2 + - uid: 29377 + components: + - type: Transform + pos: -94.5,52.5 + parent: 2 + - uid: 29396 + components: + - type: Transform + pos: -93.5,51.5 + parent: 2 + - uid: 29463 + components: + - type: Transform + pos: -113.5,37.5 + parent: 2 + - uid: 29702 + components: + - type: Transform + pos: -47.5,74.5 + parent: 2 + - uid: 29705 + components: + - type: Transform + pos: -48.5,74.5 + parent: 2 + - uid: 29849 + components: + - type: Transform + pos: -49.5,74.5 + parent: 2 + - uid: 29852 + components: + - type: Transform + pos: -50.5,74.5 + parent: 2 + - uid: 29853 + components: + - type: Transform + pos: -51.5,74.5 + parent: 2 + - uid: 29861 + components: + - type: Transform + pos: -52.5,74.5 + parent: 2 + - uid: 29862 + components: + - type: Transform + pos: -52.5,75.5 + parent: 2 + - uid: 29863 + components: + - type: Transform + pos: -52.5,76.5 + parent: 2 + - uid: 29879 + components: + - type: Transform + pos: -52.5,77.5 + parent: 2 + - uid: 29882 + components: + - type: Transform + pos: -52.5,79.5 + parent: 2 + - uid: 29883 + components: + - type: Transform + pos: -52.5,80.5 + parent: 2 + - uid: 29886 + components: + - type: Transform + pos: -51.5,80.5 + parent: 2 + - uid: 29887 + components: + - type: Transform + pos: -50.5,80.5 + parent: 2 + - uid: 29888 + components: + - type: Transform + pos: -49.5,80.5 + parent: 2 + - uid: 29898 + components: + - type: Transform + pos: -48.5,80.5 + parent: 2 + - uid: 29903 + components: + - type: Transform + pos: -47.5,80.5 + parent: 2 + - uid: 29914 + components: + - type: Transform + pos: -46.5,80.5 + parent: 2 + - uid: 29917 + components: + - type: Transform + pos: -46.5,82.5 + parent: 2 + - uid: 29918 + components: + - type: Transform + pos: -47.5,82.5 + parent: 2 + - uid: 29926 + components: + - type: Transform + pos: -48.5,82.5 + parent: 2 + - uid: 29927 + components: + - type: Transform + pos: -49.5,82.5 + parent: 2 + - uid: 30025 + components: + - type: Transform + pos: -67.5,161.5 + parent: 2 + - uid: 30037 + components: + - type: Transform + pos: -52.5,82.5 + parent: 2 + - uid: 30062 + components: + - type: Transform + pos: -67.5,163.5 + parent: 2 + - uid: 30089 + components: + - type: Transform + pos: -43.5,65.5 + parent: 2 + - uid: 30127 + components: + - type: Transform + pos: -67.5,164.5 + parent: 2 + - uid: 30128 + components: + - type: Transform + pos: -67.5,165.5 + parent: 2 + - uid: 30129 + components: + - type: Transform + pos: -67.5,166.5 + parent: 2 + - uid: 30189 + components: + - type: Transform + pos: -52.5,83.5 + parent: 2 + - uid: 30222 + components: + - type: Transform + pos: -52.5,85.5 + parent: 2 + - uid: 30223 + components: + - type: Transform + pos: -52.5,86.5 + parent: 2 + - uid: 30234 + components: + - type: Transform + pos: -52.5,87.5 + parent: 2 + - uid: 30237 + components: + - type: Transform + pos: -52.5,88.5 + parent: 2 + - uid: 30238 + components: + - type: Transform + pos: -51.5,88.5 + parent: 2 + - uid: 30239 + components: + - type: Transform + pos: -50.5,88.5 + parent: 2 + - uid: 30242 + components: + - type: Transform + pos: -49.5,88.5 + parent: 2 + - uid: 30243 + components: + - type: Transform + pos: -48.5,88.5 + parent: 2 + - uid: 30244 + components: + - type: Transform + pos: -47.5,88.5 + parent: 2 + - uid: 30246 + components: + - type: Transform + pos: -46.5,88.5 + parent: 2 + - uid: 30247 + components: + - type: Transform + pos: -43.5,69.5 + parent: 2 + - uid: 30258 + components: + - type: Transform + pos: -43.5,68.5 + parent: 2 + - uid: 30259 + components: + - type: Transform + pos: -43.5,67.5 + parent: 2 + - uid: 30263 + components: + - type: Transform + pos: -43.5,66.5 + parent: 2 + - uid: 30266 + components: + - type: Transform + pos: -43.5,64.5 + parent: 2 + - uid: 30267 + components: + - type: Transform + pos: -42.5,64.5 + parent: 2 + - uid: 30270 + components: + - type: Transform + pos: -130.5,41.5 + parent: 2 + - uid: 30295 + components: + - type: Transform + pos: -41.5,64.5 + parent: 2 + - uid: 30513 + components: + - type: Transform + pos: 81.5,22.5 + parent: 2 + - uid: 30544 + components: + - type: Transform + pos: -13.5,61.5 + parent: 2 + - uid: 30593 + components: + - type: Transform + pos: 82.5,21.5 + parent: 2 + - uid: 30680 + components: + - type: Transform + pos: -67.5,167.5 + parent: 2 + - uid: 30743 + components: + - type: Transform + pos: -40.5,64.5 + parent: 2 + - uid: 30827 + components: + - type: Transform + pos: 9.5,75.5 + parent: 2 + - uid: 30836 + components: + - type: Transform + pos: -70.5,143.5 + parent: 2 + - uid: 30883 + components: + - type: Transform + pos: 81.5,21.5 + parent: 2 + - uid: 31094 + components: + - type: Transform + pos: -77.5,165.5 + parent: 2 + - uid: 31183 + components: + - type: Transform + pos: -77.5,166.5 + parent: 2 + - uid: 31198 + components: + - type: Transform + pos: 82.5,20.5 + parent: 2 + - uid: 31238 + components: + - type: Transform + pos: -76.5,166.5 + parent: 2 + - uid: 31240 + components: + - type: Transform + pos: -75.5,166.5 + parent: 2 + - uid: 31499 + components: + - type: Transform + pos: -75.5,144.5 + parent: 2 + - uid: 31524 + components: + - type: Transform + pos: -67.5,169.5 + parent: 2 + - uid: 31548 + components: + - type: Transform + pos: -109.5,150.5 + parent: 2 + - uid: 31572 + components: + - type: Transform + pos: -100.5,54.5 + parent: 2 + - uid: 31598 + components: + - type: Transform + pos: -67.5,170.5 + parent: 2 + - uid: 31642 + components: + - type: Transform + pos: 76.5,22.5 + parent: 2 + - uid: 31983 + components: + - type: Transform + pos: -67.5,171.5 + parent: 2 + - uid: 32043 + components: + - type: Transform + pos: 5.5,86.5 + parent: 2 + - uid: 32045 + components: + - type: Transform + pos: 7.5,86.5 + parent: 2 + - uid: 32095 + components: + - type: Transform + pos: -12.5,172.5 + parent: 2 + - uid: 32096 + components: + - type: Transform + pos: -11.5,172.5 + parent: 2 + - uid: 32116 + components: + - type: Transform + pos: 4.5,86.5 + parent: 2 + - uid: 32169 + components: + - type: Transform + pos: 76.5,23.5 + parent: 2 + - uid: 32204 + components: + - type: Transform + pos: -67.5,173.5 + parent: 2 + - uid: 32205 + components: + - type: Transform + pos: -67.5,174.5 + parent: 2 + - uid: 32217 + components: + - type: Transform + pos: -67.5,175.5 + parent: 2 + - uid: 32220 + components: + - type: Transform + pos: -67.5,176.5 + parent: 2 + - uid: 32222 + components: + - type: Transform + pos: -67.5,177.5 + parent: 2 + - uid: 32253 + components: + - type: Transform + pos: -67.5,178.5 + parent: 2 + - uid: 32444 + components: + - type: Transform + pos: -10.5,172.5 + parent: 2 + - uid: 32466 + components: + - type: Transform + pos: -20.5,98.5 + parent: 2 + - uid: 32613 + components: + - type: Transform + pos: -81.5,144.5 + parent: 2 + - uid: 32777 + components: + - type: Transform + pos: 80.5,17.5 + parent: 2 + - uid: 32778 + components: + - type: Transform + pos: 81.5,17.5 + parent: 2 + - uid: 32939 + components: + - type: Transform + pos: 79.5,18.5 + parent: 2 + - uid: 33025 + components: + - type: Transform + pos: -0.5,220.5 + parent: 2 + - uid: 33026 + components: + - type: Transform + pos: -1.5,220.5 + parent: 2 + - uid: 33027 + components: + - type: Transform + pos: -1.5,219.5 + parent: 2 + - uid: 33028 + components: + - type: Transform + pos: 1.5,220.5 + parent: 2 + - uid: 33030 + components: + - type: Transform + pos: 2.5,220.5 + parent: 2 + - uid: 33031 + components: + - type: Transform + pos: 2.5,219.5 + parent: 2 + - uid: 33032 + components: + - type: Transform + pos: 2.5,218.5 + parent: 2 + - uid: 33033 + components: + - type: Transform + pos: 2.5,217.5 + parent: 2 + - uid: 33034 + components: + - type: Transform + pos: 1.5,217.5 + parent: 2 + - uid: 33035 + components: + - type: Transform + pos: -0.5,217.5 + parent: 2 + - uid: 33036 + components: + - type: Transform + pos: -1.5,217.5 + parent: 2 + - uid: 33037 + components: + - type: Transform + pos: -1.5,218.5 + parent: 2 + - uid: 33038 + components: + - type: Transform + pos: 3.5,217.5 + parent: 2 + - uid: 33039 + components: + - type: Transform + pos: 3.5,216.5 + parent: 2 + - uid: 33040 + components: + - type: Transform + pos: 3.5,215.5 + parent: 2 + - uid: 33041 + components: + - type: Transform + pos: 3.5,214.5 + parent: 2 + - uid: 33042 + components: + - type: Transform + pos: 3.5,213.5 + parent: 2 + - uid: 33043 + components: + - type: Transform + pos: 3.5,212.5 + parent: 2 + - uid: 33044 + components: + - type: Transform + pos: -2.5,217.5 + parent: 2 + - uid: 33045 + components: + - type: Transform + pos: -2.5,216.5 + parent: 2 + - uid: 33066 + components: + - type: Transform + pos: 45.5,63.5 + parent: 2 + - uid: 33071 + components: + - type: Transform + pos: -2.5,215.5 + parent: 2 + - uid: 33098 + components: + - type: Transform + pos: -38.5,64.5 + parent: 2 + - uid: 33159 + components: + - type: Transform + pos: -37.5,97.5 + parent: 2 + - uid: 33414 + components: + - type: Transform + pos: -87.5,143.5 + parent: 2 + - uid: 33806 + components: + - type: Transform + pos: -23.5,102.5 + parent: 2 + - uid: 33904 + components: + - type: Transform + pos: -33.5,106.5 + parent: 2 + - uid: 34139 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 + - uid: 34283 + components: + - type: Transform + pos: -54.5,173.5 + parent: 2 + - uid: 34284 + components: + - type: Transform + pos: -129.5,104.5 + parent: 2 + - uid: 34310 + components: + - type: Transform + pos: -53.5,173.5 + parent: 2 + - uid: 34462 + components: + - type: Transform + pos: -52.5,173.5 + parent: 2 + - uid: 34463 + components: + - type: Transform + pos: -34.5,181.5 + parent: 2 + - uid: 34465 + components: + - type: Transform + pos: -32.5,182.5 + parent: 2 + - uid: 34493 + components: + - type: Transform + pos: -31.5,186.5 + parent: 2 + - uid: 34633 + components: + - type: Transform + pos: -74.5,113.5 + parent: 2 + - uid: 34641 + components: + - type: Transform + pos: -87.5,145.5 + parent: 2 + - uid: 34706 + components: + - type: Transform + pos: -37.5,64.5 + parent: 2 + - uid: 34764 + components: + - type: Transform + pos: 2.5,62.5 + parent: 2 + - uid: 34766 + components: + - type: Transform + pos: -23.5,95.5 + parent: 2 + - uid: 34793 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 + - uid: 34796 + components: + - type: Transform + pos: -1.5,58.5 + parent: 2 + - uid: 34929 + components: + - type: Transform + pos: -7.5,218.5 + parent: 2 + - uid: 34930 + components: + - type: Transform + pos: 8.5,218.5 + parent: 2 + - uid: 35052 + components: + - type: Transform + pos: -110.5,150.5 + parent: 2 + - uid: 35505 + components: + - type: Transform + pos: -128.5,58.5 + parent: 2 + - uid: 35509 + components: + - type: Transform + pos: -128.5,62.5 + parent: 2 + - uid: 35510 + components: + - type: Transform + pos: -128.5,63.5 + parent: 2 + - uid: 35601 + components: + - type: Transform + pos: -94.5,145.5 + parent: 2 + - uid: 35695 + components: + - type: Transform + pos: -75.5,145.5 + parent: 2 + - uid: 35795 + components: + - type: Transform + pos: -7.5,59.5 + parent: 2 + - uid: 35818 + components: + - type: Transform + pos: -16.5,171.5 + parent: 2 + - uid: 35909 + components: + - type: Transform + pos: -37.5,65.5 + parent: 2 + - uid: 36187 + components: + - type: Transform + pos: -55.5,60.5 + parent: 2 + - uid: 36195 + components: + - type: Transform + pos: -37.5,181.5 + parent: 2 + - uid: 36361 + components: + - type: Transform + pos: 79.5,17.5 + parent: 2 + - uid: 36362 + components: + - type: Transform + pos: -75.5,146.5 + parent: 2 + - uid: 36363 + components: + - type: Transform + pos: -75.5,147.5 + parent: 2 + - uid: 36378 + components: + - type: Transform + pos: -13.5,172.5 + parent: 2 + - uid: 36379 + components: + - type: Transform + pos: -14.5,172.5 + parent: 2 + - uid: 36679 + components: + - type: Transform + pos: -37.5,66.5 + parent: 2 + - uid: 36686 + components: + - type: Transform + pos: -65.5,64.5 + parent: 2 + - uid: 36702 + components: + - type: Transform + pos: -125.5,66.5 + parent: 2 + - uid: 36735 + components: + - type: Transform + pos: -75.5,149.5 + parent: 2 + - uid: 36762 + components: + - type: Transform + pos: -37.5,67.5 + parent: 2 + - uid: 36765 + components: + - type: Transform + pos: -37.5,68.5 + parent: 2 + - uid: 36766 + components: + - type: Transform + pos: -68.5,166.5 + parent: 2 + - uid: 36784 + components: + - type: Transform + pos: -67.5,168.5 + parent: 2 + - uid: 36785 + components: + - type: Transform + pos: 5.5,72.5 + parent: 2 + - uid: 36787 + components: + - type: Transform + pos: 6.5,72.5 + parent: 2 + - uid: 36790 + components: + - type: Transform + pos: 9.5,73.5 + parent: 2 + - uid: 36791 + components: + - type: Transform + pos: -37.5,69.5 + parent: 2 + - uid: 36795 + components: + - type: Transform + pos: 7.5,72.5 + parent: 2 + - uid: 36796 + components: + - type: Transform + pos: 8.5,72.5 + parent: 2 + - uid: 36802 + components: + - type: Transform + pos: 4.5,72.5 + parent: 2 + - uid: 36954 + components: + - type: Transform + pos: -66.5,64.5 + parent: 2 + - uid: 36978 + components: + - type: Transform + pos: -125.5,65.5 + parent: 2 + - uid: 36983 + components: + - type: Transform + pos: -35.5,181.5 + parent: 2 + - uid: 36984 + components: + - type: Transform + pos: -37.5,179.5 + parent: 2 + - uid: 36993 + components: + - type: Transform + pos: -38.5,178.5 + parent: 2 + - uid: 36995 + components: + - type: Transform + pos: -37.5,178.5 + parent: 2 + - uid: 37080 + components: + - type: Transform + pos: -36.5,181.5 + parent: 2 + - uid: 37125 + components: + - type: Transform + pos: 83.5,47.5 + parent: 2 + - uid: 37142 + components: + - type: Transform + pos: -37.5,180.5 + parent: 2 + - uid: 37146 + components: + - type: Transform + pos: -48.5,177.5 + parent: 2 + - uid: 37147 + components: + - type: Transform + pos: -40.5,178.5 + parent: 2 + - uid: 37148 + components: + - type: Transform + pos: -41.5,178.5 + parent: 2 + - uid: 37152 + components: + - type: Transform + pos: -45.5,178.5 + parent: 2 + - uid: 37153 + components: + - type: Transform + pos: -46.5,178.5 + parent: 2 + - uid: 37154 + components: + - type: Transform + pos: -74.5,147.5 + parent: 2 + - uid: 37155 + components: + - type: Transform + pos: -45.5,175.5 + parent: 2 + - uid: 37159 + components: + - type: Transform + pos: -41.5,175.5 + parent: 2 + - uid: 37160 + components: + - type: Transform + pos: -73.5,147.5 + parent: 2 + - uid: 37162 + components: + - type: Transform + pos: -72.5,147.5 + parent: 2 + - uid: 37163 + components: + - type: Transform + pos: -71.5,147.5 + parent: 2 + - uid: 37164 + components: + - type: Transform + pos: -36.5,175.5 + parent: 2 + - uid: 37168 + components: + - type: Transform + pos: -34.5,177.5 + parent: 2 + - uid: 37169 + components: + - type: Transform + pos: -34.5,178.5 + parent: 2 + - uid: 37170 + components: + - type: Transform + pos: -34.5,179.5 + parent: 2 + - uid: 37171 + components: + - type: Transform + pos: -32.5,179.5 + parent: 2 + - uid: 37172 + components: + - type: Transform + pos: -33.5,179.5 + parent: 2 + - uid: 37173 + components: + - type: Transform + pos: -48.5,178.5 + parent: 2 + - uid: 37174 + components: + - type: Transform + pos: -47.5,178.5 + parent: 2 + - uid: 37175 + components: + - type: Transform + pos: -48.5,176.5 + parent: 2 + - uid: 37176 + components: + - type: Transform + pos: -48.5,175.5 + parent: 2 + - uid: 37177 + components: + - type: Transform + pos: -48.5,174.5 + parent: 2 + - uid: 37178 + components: + - type: Transform + pos: -48.5,173.5 + parent: 2 + - uid: 37179 + components: + - type: Transform + pos: -49.5,173.5 + parent: 2 + - uid: 37180 + components: + - type: Transform + pos: -50.5,173.5 + parent: 2 + - uid: 37181 + components: + - type: Transform + pos: -51.5,173.5 + parent: 2 + - uid: 37184 + components: + - type: Transform + pos: -71.5,149.5 + parent: 2 + - uid: 37188 + components: + - type: Transform + pos: -45.5,173.5 + parent: 2 + - uid: 37193 + components: + - type: Transform + pos: -41.5,174.5 + parent: 2 + - uid: 37194 + components: + - type: Transform + pos: -41.5,173.5 + parent: 2 + - uid: 37195 + components: + - type: Transform + pos: -41.5,172.5 + parent: 2 + - uid: 37196 + components: + - type: Transform + pos: -41.5,171.5 + parent: 2 + - uid: 37200 + components: + - type: Transform + pos: -37.5,70.5 + parent: 2 + - uid: 37201 + components: + - type: Transform + pos: -36.5,171.5 + parent: 2 + - uid: 37202 + components: + - type: Transform + pos: -36.5,172.5 + parent: 2 + - uid: 37203 + components: + - type: Transform + pos: -36.5,173.5 + parent: 2 + - uid: 37204 + components: + - type: Transform + pos: -36.5,174.5 + parent: 2 + - uid: 37227 + components: + - type: Transform + pos: -48.5,171.5 + parent: 2 + - uid: 37325 + components: + - type: Transform + pos: -49.5,168.5 + parent: 2 + - uid: 37326 + components: + - type: Transform + pos: -49.5,170.5 + parent: 2 + - uid: 37363 + components: + - type: Transform + pos: -125.5,64.5 + parent: 2 + - uid: 37583 + components: + - type: Transform + pos: -64.5,60.5 + parent: 2 + - uid: 37584 + components: + - type: Transform + pos: -65.5,60.5 + parent: 2 + - uid: 37653 + components: + - type: Transform + pos: -104.5,65.5 + parent: 2 + - uid: 37694 + components: + - type: Transform + pos: -102.5,57.5 + parent: 2 + - uid: 37704 + components: + - type: Transform + pos: -102.5,56.5 + parent: 2 + - uid: 37715 + components: + - type: Transform + pos: 5.5,82.5 + parent: 2 + - uid: 37719 + components: + - type: Transform + pos: 7.5,82.5 + parent: 2 + - uid: 38368 + components: + - type: Transform + pos: -48.5,65.5 + parent: 2 + - uid: 38422 + components: + - type: Transform + pos: -73.5,43.5 + parent: 2 + - uid: 38442 + components: + - type: Transform + pos: -74.5,39.5 + parent: 2 + - uid: 38443 + components: + - type: Transform + pos: -73.5,39.5 + parent: 2 + - uid: 38803 + components: + - type: Transform + pos: 82.5,17.5 + parent: 2 + - uid: 39268 + components: + - type: Transform + pos: 80.5,56.5 + parent: 2 + - uid: 41268 + components: + - type: Transform + pos: -95.5,154.5 + parent: 2 + - uid: 41543 + components: + - type: Transform + pos: 56.5,47.5 + parent: 2 + - uid: 41699 + components: + - type: Transform + pos: -96.5,155.5 + parent: 2 + - uid: 41811 + components: + - type: Transform + pos: 56.5,49.5 + parent: 2 + - uid: 41846 + components: + - type: Transform + pos: 56.5,50.5 + parent: 2 + - uid: 41847 + components: + - type: Transform + pos: 57.5,52.5 + parent: 2 + - uid: 41883 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 42457 + components: + - type: Transform + pos: -96.5,154.5 + parent: 2 + - uid: 42458 + components: + - type: Transform + pos: -74.5,169.5 + parent: 2 + - uid: 42459 + components: + - type: Transform + pos: -74.5,168.5 + parent: 2 + - uid: 42460 + components: + - type: Transform + pos: -74.5,167.5 + parent: 2 + - uid: 42892 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 +- proto: WallReinforcedDiagonal + entities: + - uid: 4232 + components: + - type: Transform + pos: -68.5,135.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,125.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,125.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,126.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,135.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,134.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,75.5 + parent: 2 +- proto: WallRock + entities: + - uid: 185 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 82.5,23.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 83.5,21.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: -88.5,103.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 67.5,26.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: -92.5,101.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -94.5,93.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -85.5,104.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -89.5,102.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: -91.5,101.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: -90.5,102.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -88.5,102.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: -91.5,102.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: -93.5,103.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -87.5,103.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 67.5,18.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: -95.5,93.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: -97.5,94.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -146.5,110.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -146.5,109.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: 63.5,30.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 63.5,21.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 63.5,23.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: 62.5,31.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: 62.5,30.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 92.5,63.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: 93.5,63.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: 93.5,62.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: -95.5,104.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: 82.5,22.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -96.5,104.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: -95.5,95.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: -96.5,95.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: -95.5,94.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -96.5,94.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -97.5,93.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -96.5,93.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: -94.5,92.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: 55.5,36.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: -62.5,123.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: -97.5,105.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: -145.5,110.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: -99.5,105.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: -100.5,105.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: 74.5,31.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: -90.5,92.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: 79.5,31.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: -94.5,103.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: -97.5,104.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: -98.5,104.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -98.5,105.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: -86.5,104.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: 82.5,19.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 81.5,31.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: 82.5,16.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + pos: 80.5,31.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: 85.5,35.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: 85.5,36.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: 86.5,36.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: 85.5,34.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + pos: 79.5,24.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: 78.5,24.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: 77.5,24.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: 76.5,24.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: 75.5,24.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 75.5,23.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: 79.5,25.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: 78.5,25.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: 77.5,25.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: 76.5,25.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 75.5,25.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 74.5,26.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 68.5,26.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: 75.5,26.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 76.5,26.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: 49.5,40.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: 48.5,38.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: 46.5,38.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: 80.5,16.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: 81.5,16.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: 82.5,18.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: 82.5,15.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: 83.5,13.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: 83.5,12.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: 84.5,12.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: 83.5,11.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: 67.5,25.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: 61.5,33.5 + parent: 2 + - uid: 5702 + components: + - type: Transform + pos: -94.5,99.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + pos: 94.5,62.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 66.5,27.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: 66.5,26.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: 92.5,42.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: 92.5,43.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: 93.5,43.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: 94.5,43.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 96.5,44.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: 97.5,45.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 98.5,45.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 95.5,43.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: 97.5,44.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 98.5,44.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 99.5,45.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + pos: 100.5,45.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: 101.5,45.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: 65.5,26.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 93.5,45.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: 92.5,45.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: 93.5,26.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: 93.5,27.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: 94.5,25.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: 95.5,24.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: 96.5,23.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: 96.5,22.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: 97.5,21.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: 97.5,22.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: 92.5,44.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: 94.5,44.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: 93.5,44.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -89.5,93.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: 83.5,22.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: -87.5,97.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + pos: -63.5,121.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + pos: -63.5,122.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + pos: -62.5,122.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: -63.5,123.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: -61.5,123.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: -62.5,124.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + pos: -61.5,124.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: -63.5,120.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: -62.5,121.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: -63.5,119.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: -134.5,81.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: 74.5,24.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 74.5,23.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + pos: 68.5,25.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: -123.5,86.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: -123.5,87.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: -122.5,86.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: -122.5,87.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: -123.5,89.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: -123.5,88.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: -122.5,89.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: -122.5,88.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: -120.5,89.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: -121.5,88.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: -121.5,89.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: 60.5,23.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 8657 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + pos: 59.5,27.5 + parent: 2 + - uid: 8664 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + pos: 58.5,22.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 8696 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: -57.5,109.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: -58.5,114.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: -58.5,110.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + pos: -58.5,111.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + pos: -58.5,112.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + pos: -58.5,113.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + pos: -84.5,102.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + pos: -84.5,103.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + pos: -86.5,102.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + pos: -86.5,103.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + pos: -85.5,102.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: -139.5,107.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + pos: -90.5,91.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + pos: -95.5,101.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + pos: 79.5,20.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: -90.5,100.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + pos: -59.5,116.5 + parent: 2 + - uid: 13938 + components: + - type: Transform + pos: -58.5,109.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: -57.5,110.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + pos: -96.5,96.5 + parent: 2 + - uid: 14156 + components: + - type: Transform + pos: -85.5,103.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: -98.5,94.5 + parent: 2 + - uid: 15013 + components: + - type: Transform + pos: -98.5,96.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: -97.5,95.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + pos: -136.5,87.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + pos: -84.5,93.5 + parent: 2 + - uid: 17367 + components: + - type: Transform + pos: -99.5,94.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + pos: -99.5,93.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + pos: -80.5,110.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + pos: -80.5,111.5 + parent: 2 + - uid: 17482 + components: + - type: Transform + pos: -79.5,110.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + pos: -79.5,111.5 + parent: 2 + - uid: 17486 + components: + - type: Transform + pos: -78.5,110.5 + parent: 2 + - uid: 17487 + components: + - type: Transform + pos: -78.5,111.5 + parent: 2 + - uid: 17516 + components: + - type: Transform + pos: -79.5,112.5 + parent: 2 + - uid: 17517 + components: + - type: Transform + pos: -78.5,112.5 + parent: 2 + - uid: 17518 + components: + - type: Transform + pos: -77.5,112.5 + parent: 2 + - uid: 17525 + components: + - type: Transform + pos: -97.5,96.5 + parent: 2 + - uid: 17530 + components: + - type: Transform + pos: -77.5,111.5 + parent: 2 + - uid: 17537 + components: + - type: Transform + pos: -58.5,115.5 + parent: 2 + - uid: 17544 + components: + - type: Transform + pos: -60.5,116.5 + parent: 2 + - uid: 17545 + components: + - type: Transform + pos: -61.5,116.5 + parent: 2 + - uid: 17547 + components: + - type: Transform + pos: -59.5,117.5 + parent: 2 + - uid: 17548 + components: + - type: Transform + pos: -62.5,116.5 + parent: 2 + - uid: 17549 + components: + - type: Transform + pos: -60.5,117.5 + parent: 2 + - uid: 17551 + components: + - type: Transform + pos: -98.5,95.5 + parent: 2 + - uid: 17553 + components: + - type: Transform + pos: -70.5,114.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + pos: -71.5,114.5 + parent: 2 + - uid: 17558 + components: + - type: Transform + pos: -72.5,114.5 + parent: 2 + - uid: 17559 + components: + - type: Transform + pos: -73.5,114.5 + parent: 2 + - uid: 17564 + components: + - type: Transform + pos: -77.5,110.5 + parent: 2 + - uid: 17573 + components: + - type: Transform + pos: -87.5,98.5 + parent: 2 + - uid: 17575 + components: + - type: Transform + pos: -139.5,87.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + pos: -136.5,88.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + pos: -136.5,89.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + pos: -139.5,89.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + pos: -139.5,88.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + pos: -81.5,110.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: -55.5,93.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + pos: -81.5,111.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + pos: -130.5,80.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + pos: -131.5,80.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: -131.5,79.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + pos: -131.5,81.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: -114.5,110.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: -115.5,110.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + pos: -130.5,79.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: 79.5,19.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + pos: -133.5,82.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: -133.5,81.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + pos: 94.5,26.5 + parent: 2 + - uid: 17872 + components: + - type: Transform + pos: 94.5,27.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + pos: -137.5,82.5 + parent: 2 + - uid: 17881 + components: + - type: Transform + pos: 93.5,28.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + pos: 95.5,25.5 + parent: 2 + - uid: 17887 + components: + - type: Transform + pos: 96.5,24.5 + parent: 2 + - uid: 18064 + components: + - type: Transform + pos: -84.5,104.5 + parent: 2 + - uid: 18242 + components: + - type: Transform + pos: -82.5,111.5 + parent: 2 + - uid: 18318 + components: + - type: Transform + pos: -136.5,80.5 + parent: 2 + - uid: 18328 + components: + - type: Transform + pos: -137.5,80.5 + parent: 2 + - uid: 18334 + components: + - type: Transform + pos: -138.5,80.5 + parent: 2 + - uid: 18354 + components: + - type: Transform + pos: -120.5,111.5 + parent: 2 + - uid: 18532 + components: + - type: Transform + pos: -138.5,82.5 + parent: 2 + - uid: 18550 + components: + - type: Transform + pos: -137.5,81.5 + parent: 2 + - uid: 18611 + components: + - type: Transform + pos: -82.5,110.5 + parent: 2 + - uid: 18724 + components: + - type: Transform + pos: -139.5,82.5 + parent: 2 + - uid: 18735 + components: + - type: Transform + pos: -99.5,95.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + pos: -99.5,92.5 + parent: 2 + - uid: 18778 + components: + - type: Transform + pos: -87.5,93.5 + parent: 2 + - uid: 18782 + components: + - type: Transform + pos: -85.5,93.5 + parent: 2 + - uid: 18783 + components: + - type: Transform + pos: -99.5,96.5 + parent: 2 + - uid: 18791 + components: + - type: Transform + pos: -87.5,102.5 + parent: 2 + - uid: 18911 + components: + - type: Transform + pos: -122.5,110.5 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: -138.5,81.5 + parent: 2 + - uid: 19014 + components: + - type: Transform + pos: -134.5,82.5 + parent: 2 + - uid: 19086 + components: + - type: Transform + pos: -148.5,109.5 + parent: 2 + - uid: 19309 + components: + - type: Transform + pos: -119.5,110.5 + parent: 2 + - uid: 19341 + components: + - type: Transform + pos: -118.5,110.5 + parent: 2 + - uid: 19344 + components: + - type: Transform + pos: -119.5,111.5 + parent: 2 + - uid: 19375 + components: + - type: Transform + pos: -132.5,81.5 + parent: 2 + - uid: 19376 + components: + - type: Transform + pos: -132.5,82.5 + parent: 2 + - uid: 19528 + components: + - type: Transform + pos: -118.5,111.5 + parent: 2 + - uid: 21335 + components: + - type: Transform + pos: -88.5,93.5 + parent: 2 + - uid: 21342 + components: + - type: Transform + pos: -95.5,100.5 + parent: 2 + - uid: 21592 + components: + - type: Transform + pos: -88.5,94.5 + parent: 2 + - uid: 22177 + components: + - type: Transform + pos: -96.5,101.5 + parent: 2 + - uid: 22255 + components: + - type: Transform + pos: -94.5,100.5 + parent: 2 + - uid: 24265 + components: + - type: Transform + pos: -90.5,101.5 + parent: 2 + - uid: 24266 + components: + - type: Transform + pos: -89.5,101.5 + parent: 2 + - uid: 24267 + components: + - type: Transform + pos: -89.5,103.5 + parent: 2 + - uid: 24279 + components: + - type: Transform + pos: -148.5,108.5 + parent: 2 + - uid: 24280 + components: + - type: Transform + pos: -147.5,109.5 + parent: 2 + - uid: 24281 + components: + - type: Transform + pos: -147.5,108.5 + parent: 2 + - uid: 24282 + components: + - type: Transform + pos: -116.5,105.5 + parent: 2 + - uid: 24283 + components: + - type: Transform + pos: -116.5,106.5 + parent: 2 + - uid: 24284 + components: + - type: Transform + pos: -116.5,107.5 + parent: 2 + - uid: 24288 + components: + - type: Transform + pos: -115.5,105.5 + parent: 2 + - uid: 24289 + components: + - type: Transform + pos: -115.5,106.5 + parent: 2 + - uid: 24290 + components: + - type: Transform + pos: -115.5,107.5 + parent: 2 + - uid: 24292 + components: + - type: Transform + pos: -115.5,108.5 + parent: 2 + - uid: 24293 + components: + - type: Transform + pos: -115.5,109.5 + parent: 2 + - uid: 24295 + components: + - type: Transform + pos: -140.5,106.5 + parent: 2 + - uid: 24296 + components: + - type: Transform + pos: -145.5,109.5 + parent: 2 + - uid: 24297 + components: + - type: Transform + pos: -114.5,105.5 + parent: 2 + - uid: 24300 + components: + - type: Transform + pos: -140.5,107.5 + parent: 2 + - uid: 24334 + components: + - type: Transform + pos: -144.5,109.5 + parent: 2 + - uid: 24367 + components: + - type: Transform + pos: -147.5,107.5 + parent: 2 + - uid: 24380 + components: + - type: Transform + pos: -143.5,109.5 + parent: 2 + - uid: 24391 + components: + - type: Transform + pos: -143.5,108.5 + parent: 2 + - uid: 24399 + components: + - type: Transform + pos: -142.5,109.5 + parent: 2 + - uid: 24402 + components: + - type: Transform + pos: -142.5,108.5 + parent: 2 + - uid: 24403 + components: + - type: Transform + pos: -142.5,110.5 + parent: 2 + - uid: 24405 + components: + - type: Transform + pos: -143.5,110.5 + parent: 2 + - uid: 24408 + components: + - type: Transform + pos: -144.5,110.5 + parent: 2 + - uid: 24418 + components: + - type: Transform + pos: -147.5,110.5 + parent: 2 + - uid: 24421 + components: + - type: Transform + pos: -147.5,111.5 + parent: 2 + - uid: 24426 + components: + - type: Transform + pos: -146.5,111.5 + parent: 2 + - uid: 24429 + components: + - type: Transform + pos: -145.5,111.5 + parent: 2 + - uid: 24660 + components: + - type: Transform + pos: -144.5,111.5 + parent: 2 + - uid: 24718 + components: + - type: Transform + pos: -143.5,111.5 + parent: 2 + - uid: 24778 + components: + - type: Transform + pos: -144.5,112.5 + parent: 2 + - uid: 24779 + components: + - type: Transform + pos: -145.5,112.5 + parent: 2 + - uid: 24801 + components: + - type: Transform + pos: -146.5,112.5 + parent: 2 + - uid: 24811 + components: + - type: Transform + pos: -146.5,108.5 + parent: 2 + - uid: 25177 + components: + - type: Transform + pos: -139.5,83.5 + parent: 2 + - uid: 25178 + components: + - type: Transform + pos: -139.5,84.5 + parent: 2 + - uid: 25179 + components: + - type: Transform + pos: -139.5,85.5 + parent: 2 + - uid: 25180 + components: + - type: Transform + pos: -139.5,86.5 + parent: 2 + - uid: 25182 + components: + - type: Transform + pos: -138.5,83.5 + parent: 2 + - uid: 25183 + components: + - type: Transform + pos: -138.5,84.5 + parent: 2 + - uid: 25184 + components: + - type: Transform + pos: -138.5,85.5 + parent: 2 + - uid: 25185 + components: + - type: Transform + pos: -138.5,86.5 + parent: 2 + - uid: 25187 + components: + - type: Transform + pos: -137.5,83.5 + parent: 2 + - uid: 25202 + components: + - type: Transform + pos: -134.5,83.5 + parent: 2 + - uid: 25207 + components: + - type: Transform + pos: -133.5,83.5 + parent: 2 + - uid: 25236 + components: + - type: Transform + pos: -130.5,85.5 + parent: 2 + - uid: 25239 + components: + - type: Transform + pos: -129.5,84.5 + parent: 2 + - uid: 25240 + components: + - type: Transform + pos: -129.5,85.5 + parent: 2 + - uid: 25243 + components: + - type: Transform + pos: -128.5,84.5 + parent: 2 + - uid: 25244 + components: + - type: Transform + pos: -128.5,85.5 + parent: 2 + - uid: 25247 + components: + - type: Transform + pos: -127.5,84.5 + parent: 2 + - uid: 25248 + components: + - type: Transform + pos: -127.5,85.5 + parent: 2 + - uid: 25251 + components: + - type: Transform + pos: -126.5,84.5 + parent: 2 + - uid: 25252 + components: + - type: Transform + pos: -126.5,85.5 + parent: 2 + - uid: 25253 + components: + - type: Transform + pos: -131.5,86.5 + parent: 2 + - uid: 25254 + components: + - type: Transform + pos: -134.5,84.5 + parent: 2 + - uid: 25255 + components: + - type: Transform + pos: -125.5,84.5 + parent: 2 + - uid: 25256 + components: + - type: Transform + pos: -125.5,85.5 + parent: 2 + - uid: 25258 + components: + - type: Transform + pos: -124.5,83.5 + parent: 2 + - uid: 25259 + components: + - type: Transform + pos: -124.5,84.5 + parent: 2 + - uid: 25260 + components: + - type: Transform + pos: -124.5,85.5 + parent: 2 + - uid: 25262 + components: + - type: Transform + pos: -123.5,83.5 + parent: 2 + - uid: 25263 + components: + - type: Transform + pos: -123.5,84.5 + parent: 2 + - uid: 25264 + components: + - type: Transform + pos: -123.5,85.5 + parent: 2 + - uid: 25269 + components: + - type: Transform + pos: -122.5,85.5 + parent: 2 + - uid: 25739 + components: + - type: Transform + pos: -131.5,88.5 + parent: 2 + - uid: 25740 + components: + - type: Transform + pos: -131.5,89.5 + parent: 2 + - uid: 25741 + components: + - type: Transform + pos: -131.5,87.5 + parent: 2 + - uid: 25742 + components: + - type: Transform + pos: -128.5,80.5 + parent: 2 + - uid: 25743 + components: + - type: Transform + pos: -135.5,84.5 + parent: 2 + - uid: 25744 + components: + - type: Transform + pos: -132.5,79.5 + parent: 2 + - uid: 25746 + components: + - type: Transform + pos: -135.5,88.5 + parent: 2 + - uid: 25748 + components: + - type: Transform + pos: -127.5,80.5 + parent: 2 + - uid: 25751 + components: + - type: Transform + pos: -132.5,89.5 + parent: 2 + - uid: 25752 + components: + - type: Transform + pos: -135.5,89.5 + parent: 2 + - uid: 25753 + components: + - type: Transform + pos: -134.5,89.5 + parent: 2 + - uid: 25754 + components: + - type: Transform + pos: -129.5,80.5 + parent: 2 + - uid: 25756 + components: + - type: Transform + pos: -126.5,80.5 + parent: 2 + - uid: 26035 + components: + - type: Transform + pos: -126.5,81.5 + parent: 2 + - uid: 26036 + components: + - type: Transform + pos: -125.5,81.5 + parent: 2 + - uid: 26038 + components: + - type: Transform + pos: -132.5,78.5 + parent: 2 + - uid: 26039 + components: + - type: Transform + pos: -129.5,79.5 + parent: 2 + - uid: 26042 + components: + - type: Transform + pos: -135.5,85.5 + parent: 2 + - uid: 26043 + components: + - type: Transform + pos: -135.5,86.5 + parent: 2 + - uid: 26047 + components: + - type: Transform + pos: -132.5,80.5 + parent: 2 + - uid: 26330 + components: + - type: Transform + pos: -133.5,80.5 + parent: 2 + - uid: 26340 + components: + - type: Transform + pos: -127.5,83.5 + parent: 2 + - uid: 26341 + components: + - type: Transform + pos: -125.5,83.5 + parent: 2 + - uid: 26342 + components: + - type: Transform + pos: -126.5,83.5 + parent: 2 + - uid: 27151 + components: + - type: Transform + pos: -86.5,93.5 + parent: 2 + - uid: 28662 + components: + - type: Transform + pos: -98.5,102.5 + parent: 2 + - uid: 28663 + components: + - type: Transform + pos: -98.5,103.5 + parent: 2 + - uid: 28861 + components: + - type: Transform + pos: -97.5,102.5 + parent: 2 + - uid: 28864 + components: + - type: Transform + pos: -97.5,103.5 + parent: 2 + - uid: 29106 + components: + - type: Transform + pos: -96.5,102.5 + parent: 2 + - uid: 29108 + components: + - type: Transform + pos: -96.5,103.5 + parent: 2 + - uid: 29352 + components: + - type: Transform + pos: -95.5,102.5 + parent: 2 + - uid: 29363 + components: + - type: Transform + pos: -95.5,103.5 + parent: 2 + - uid: 29397 + components: + - type: Transform + pos: -94.5,102.5 + parent: 2 + - uid: 29408 + components: + - type: Transform + pos: -92.5,102.5 + parent: 2 + - uid: 29409 + components: + - type: Transform + pos: -93.5,102.5 + parent: 2 + - uid: 29411 + components: + - type: Transform + pos: -93.5,101.5 + parent: 2 + - uid: 29412 + components: + - type: Transform + pos: -94.5,101.5 + parent: 2 + - uid: 30647 + components: + - type: Transform + pos: 79.5,16.5 + parent: 2 + - uid: 31636 + components: + - type: Transform + pos: 82.5,24.5 + parent: 2 + - uid: 32718 + components: + - type: Transform + pos: 81.5,24.5 + parent: 2 + - uid: 36164 + components: + - type: Transform + pos: 42.5,58.5 + parent: 2 + - uid: 36166 + components: + - type: Transform + pos: 43.5,58.5 + parent: 2 + - uid: 36817 + components: + - type: Transform + pos: 43.5,55.5 + parent: 2 + - uid: 36824 + components: + - type: Transform + pos: 43.5,56.5 + parent: 2 + - uid: 36828 + components: + - type: Transform + pos: 42.5,57.5 + parent: 2 + - uid: 36829 + components: + - type: Transform + pos: 41.5,58.5 + parent: 2 + - uid: 37915 + components: + - type: Transform + pos: -88.5,97.5 + parent: 2 +- proto: WallRockArtifactFragment + entities: + - uid: 5574 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 +- proto: WallRockBasalt + entities: + - uid: 189 + components: + - type: Transform + pos: -39.5,200.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: -36.5,205.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 26.5,173.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: -21.5,96.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: -21.5,93.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: -39.5,199.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: -40.5,200.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: -38.5,199.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: -121.5,18.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: 32.5,22.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: -69.5,142.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: -69.5,141.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: -123.5,20.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: -115.5,26.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: -139.5,14.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: -126.5,41.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: -115.5,27.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: -130.5,56.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: -130.5,54.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: -130.5,55.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: -146.5,9.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: -147.5,9.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: -140.5,15.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: -138.5,15.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: -144.5,10.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: -118.5,20.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: -39.5,201.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: -38.5,201.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: -39.5,202.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: 49.5,40.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: -38.5,202.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: -38.5,200.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: 48.5,38.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: 46.5,38.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: -38.5,203.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: -127.5,41.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: 85.5,35.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: -128.5,41.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: 85.5,36.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: 86.5,36.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: -37.5,204.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: -37.5,202.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: -37.5,203.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: -120.5,17.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: -122.5,19.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: -133.5,15.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: -134.5,15.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: -33.5,94.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: -32.5,94.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: -103.5,143.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + pos: -74.5,141.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: -73.5,141.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: -73.5,142.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: -74.5,142.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: -32.5,196.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: -35.5,197.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: -34.5,197.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: -34.5,196.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: -32.5,194.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: -32.5,195.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + pos: -33.5,194.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: -33.5,196.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: -33.5,195.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: -15.5,102.5 + parent: 2 + - uid: 10815 + components: + - type: Transform + pos: -14.5,101.5 + parent: 2 + - uid: 10816 + components: + - type: Transform + pos: -15.5,101.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + pos: -15.5,103.5 + parent: 2 + - uid: 10819 + components: + - type: Transform + pos: -14.5,102.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + pos: -66.5,61.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + pos: -121.5,16.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: -116.5,25.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + pos: -123.5,23.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + pos: -123.5,22.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: -120.5,20.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: -121.5,20.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: -123.5,21.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + pos: -122.5,20.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + pos: -116.5,26.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + pos: -123.5,18.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: -118.5,19.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + pos: -120.5,25.5 + parent: 2 + - uid: 14153 + components: + - type: Transform + pos: -22.5,96.5 + parent: 2 + - uid: 14159 + components: + - type: Transform + pos: -95.5,142.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: -102.5,143.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + pos: -97.5,142.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: -98.5,140.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + pos: -60.5,179.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + pos: -63.5,179.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + pos: -62.5,180.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + pos: -62.5,179.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + pos: -61.5,180.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + pos: -98.5,141.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: -96.5,142.5 + parent: 2 + - uid: 14242 + components: + - type: Transform + pos: -26.5,174.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + pos: -97.5,141.5 + parent: 2 + - uid: 14800 + components: + - type: Transform + pos: -45.5,53.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 14866 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 14924 + components: + - type: Transform + pos: -45.5,52.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 14998 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + pos: -96.5,141.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: -35.5,54.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + pos: -45.5,51.5 + parent: 2 + - uid: 15578 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: 9.5,79.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + pos: 10.5,75.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + pos: 10.5,76.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + pos: 10.5,77.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + pos: 10.5,78.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + pos: 8.5,79.5 + parent: 2 + - uid: 15624 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + pos: 11.5,76.5 + parent: 2 + - uid: 15655 + components: + - type: Transform + pos: 7.5,83.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + pos: 7.5,84.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + pos: 8.5,83.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: 8.5,84.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: 8.5,85.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: 7.5,85.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: 9.5,83.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: 8.5,82.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: 9.5,84.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: 9.5,82.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: -41.5,55.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: -41.5,54.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: -42.5,55.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + pos: -42.5,54.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: -35.5,53.5 + parent: 2 + - uid: 15700 + components: + - type: Transform + pos: -35.5,52.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + pos: -36.5,52.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + pos: -39.5,52.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: -40.5,53.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: -40.5,52.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: -41.5,53.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: -41.5,52.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: -40.5,51.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + pos: -40.5,50.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: -39.5,51.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: -39.5,50.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: -38.5,51.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: -38.5,50.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + pos: -37.5,51.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: -37.5,50.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: -36.5,51.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: -36.5,50.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: -35.5,51.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + pos: -35.5,50.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: -34.5,50.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: -34.5,49.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: -35.5,49.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: -36.5,49.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: -37.5,49.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: -38.5,49.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: -37.5,48.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: -36.5,48.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: -35.5,48.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: -39.5,49.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: -35.5,47.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: -34.5,47.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: -33.5,47.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: -34.5,46.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: -33.5,46.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: -33.5,45.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: -32.5,45.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -33.5,44.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: -32.5,44.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -32.5,43.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -31.5,43.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -31.5,42.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + pos: -46.5,52.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + pos: -46.5,53.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + pos: -46.5,54.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + pos: -46.5,55.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + pos: -47.5,53.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + pos: -47.5,54.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + pos: -47.5,55.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: -44.5,53.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: -44.5,52.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: -45.5,54.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: -47.5,52.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + pos: -48.5,52.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: -48.5,53.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -48.5,54.5 + parent: 2 + - uid: 16339 + components: + - type: Transform + pos: -104.5,61.5 + parent: 2 + - uid: 16472 + components: + - type: Transform + pos: -69.5,63.5 + parent: 2 + - uid: 16501 + components: + - type: Transform + pos: -70.5,63.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: -68.5,62.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: -38.5,185.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + pos: -36.5,185.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + pos: -34.5,185.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + pos: -123.5,17.5 + parent: 2 + - uid: 17124 + components: + - type: Transform + pos: -121.5,17.5 + parent: 2 + - uid: 17131 + components: + - type: Transform + pos: -122.5,17.5 + parent: 2 + - uid: 17136 + components: + - type: Transform + pos: -121.5,24.5 + parent: 2 + - uid: 17137 + components: + - type: Transform + pos: -117.5,25.5 + parent: 2 + - uid: 17140 + components: + - type: Transform + pos: -118.5,25.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + pos: -120.5,24.5 + parent: 2 + - uid: 17142 + components: + - type: Transform + pos: -119.5,24.5 + parent: 2 + - uid: 17143 + components: + - type: Transform + pos: -118.5,24.5 + parent: 2 + - uid: 17149 + components: + - type: Transform + pos: -123.5,24.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + pos: -119.5,25.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: -119.5,19.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + pos: -119.5,20.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + pos: -119.5,18.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + pos: -121.5,19.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + pos: -31.5,94.5 + parent: 2 + - uid: 17287 + components: + - type: Transform + pos: -120.5,18.5 + parent: 2 + - uid: 17288 + components: + - type: Transform + pos: -26.5,94.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + pos: -122.5,24.5 + parent: 2 + - uid: 17298 + components: + - type: Transform + pos: -123.5,19.5 + parent: 2 + - uid: 17330 + components: + - type: Transform + pos: -59.5,180.5 + parent: 2 + - uid: 17349 + components: + - type: Transform + pos: -117.5,24.5 + parent: 2 + - uid: 17378 + components: + - type: Transform + pos: -123.5,41.5 + parent: 2 + - uid: 17399 + components: + - type: Transform + pos: -27.5,175.5 + parent: 2 + - uid: 17435 + components: + - type: Transform + pos: -30.5,94.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + pos: -123.5,42.5 + parent: 2 + - uid: 17501 + components: + - type: Transform + pos: -27.5,173.5 + parent: 2 + - uid: 17520 + components: + - type: Transform + pos: -29.5,94.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + pos: -28.5,94.5 + parent: 2 + - uid: 17680 + components: + - type: Transform + pos: -102.5,142.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: -107.5,141.5 + parent: 2 + - uid: 18035 + components: + - type: Transform + pos: -98.5,142.5 + parent: 2 + - uid: 18134 + components: + - type: Transform + pos: -100.5,142.5 + parent: 2 + - uid: 18204 + components: + - type: Transform + pos: -99.5,142.5 + parent: 2 + - uid: 18212 + components: + - type: Transform + pos: -71.5,141.5 + parent: 2 + - uid: 18214 + components: + - type: Transform + pos: -101.5,142.5 + parent: 2 + - uid: 18230 + components: + - type: Transform + pos: -88.5,141.5 + parent: 2 + - uid: 18287 + components: + - type: Transform + pos: -107.5,145.5 + parent: 2 + - uid: 18299 + components: + - type: Transform + pos: -106.5,145.5 + parent: 2 + - uid: 18319 + components: + - type: Transform + pos: -82.5,134.5 + parent: 2 + - uid: 18696 + components: + - type: Transform + pos: 29.5,168.5 + parent: 2 + - uid: 18866 + components: + - type: Transform + pos: -56.5,167.5 + parent: 2 + - uid: 18868 + components: + - type: Transform + pos: -57.5,166.5 + parent: 2 + - uid: 18889 + components: + - type: Transform + pos: -100.5,152.5 + parent: 2 + - uid: 18898 + components: + - type: Transform + pos: -57.5,167.5 + parent: 2 + - uid: 18963 + components: + - type: Transform + pos: -100.5,151.5 + parent: 2 + - uid: 19126 + components: + - type: Transform + pos: -26.5,173.5 + parent: 2 + - uid: 19275 + components: + - type: Transform + pos: 26.5,171.5 + parent: 2 + - uid: 19293 + components: + - type: Transform + pos: 26.5,172.5 + parent: 2 + - uid: 19302 + components: + - type: Transform + pos: 26.5,170.5 + parent: 2 + - uid: 20036 + components: + - type: Transform + pos: -66.5,62.5 + parent: 2 + - uid: 20629 + components: + - type: Transform + pos: -101.5,151.5 + parent: 2 + - uid: 21079 + components: + - type: Transform + pos: -59.5,181.5 + parent: 2 + - uid: 21081 + components: + - type: Transform + pos: -57.5,178.5 + parent: 2 + - uid: 21083 + components: + - type: Transform + pos: -64.5,176.5 + parent: 2 + - uid: 21084 + components: + - type: Transform + pos: -64.5,177.5 + parent: 2 + - uid: 21085 + components: + - type: Transform + pos: -63.5,176.5 + parent: 2 + - uid: 21087 + components: + - type: Transform + pos: -56.5,178.5 + parent: 2 + - uid: 21088 + components: + - type: Transform + pos: -55.5,178.5 + parent: 2 + - uid: 21089 + components: + - type: Transform + pos: -54.5,178.5 + parent: 2 + - uid: 21090 + components: + - type: Transform + pos: -53.5,178.5 + parent: 2 + - uid: 21091 + components: + - type: Transform + pos: -55.5,177.5 + parent: 2 + - uid: 21092 + components: + - type: Transform + pos: -56.5,177.5 + parent: 2 + - uid: 21093 + components: + - type: Transform + pos: -57.5,177.5 + parent: 2 + - uid: 21094 + components: + - type: Transform + pos: -58.5,177.5 + parent: 2 + - uid: 21095 + components: + - type: Transform + pos: -58.5,178.5 + parent: 2 + - uid: 21096 + components: + - type: Transform + pos: -59.5,178.5 + parent: 2 + - uid: 21098 + components: + - type: Transform + pos: -59.5,179.5 + parent: 2 + - uid: 21099 + components: + - type: Transform + pos: -61.5,181.5 + parent: 2 + - uid: 21100 + components: + - type: Transform + pos: -59.5,182.5 + parent: 2 + - uid: 21101 + components: + - type: Transform + pos: -59.5,183.5 + parent: 2 + - uid: 21102 + components: + - type: Transform + pos: -59.5,184.5 + parent: 2 + - uid: 21103 + components: + - type: Transform + pos: -58.5,185.5 + parent: 2 + - uid: 21104 + components: + - type: Transform + pos: -58.5,186.5 + parent: 2 + - uid: 21105 + components: + - type: Transform + pos: -59.5,185.5 + parent: 2 + - uid: 21106 + components: + - type: Transform + pos: -57.5,187.5 + parent: 2 + - uid: 21107 + components: + - type: Transform + pos: -60.5,184.5 + parent: 2 + - uid: 21109 + components: + - type: Transform + pos: -60.5,182.5 + parent: 2 + - uid: 21110 + components: + - type: Transform + pos: -61.5,183.5 + parent: 2 + - uid: 21111 + components: + - type: Transform + pos: -61.5,182.5 + parent: 2 + - uid: 21112 + components: + - type: Transform + pos: -60.5,181.5 + parent: 2 + - uid: 21113 + components: + - type: Transform + pos: -62.5,181.5 + parent: 2 + - uid: 21115 + components: + - type: Transform + pos: -64.5,179.5 + parent: 2 + - uid: 21116 + components: + - type: Transform + pos: -60.5,180.5 + parent: 2 + - uid: 21182 + components: + - type: Transform + pos: -55.5,174.5 + parent: 2 + - uid: 21183 + components: + - type: Transform + pos: -54.5,174.5 + parent: 2 + - uid: 21185 + components: + - type: Transform + pos: -54.5,175.5 + parent: 2 + - uid: 21186 + components: + - type: Transform + pos: -53.5,175.5 + parent: 2 + - uid: 21187 + components: + - type: Transform + pos: -52.5,175.5 + parent: 2 + - uid: 21188 + components: + - type: Transform + pos: -52.5,176.5 + parent: 2 + - uid: 21238 + components: + - type: Transform + pos: -56.5,163.5 + parent: 2 + - uid: 21239 + components: + - type: Transform + pos: -56.5,162.5 + parent: 2 + - uid: 21240 + components: + - type: Transform + pos: -55.5,162.5 + parent: 2 + - uid: 21246 + components: + - type: Transform + pos: -57.5,165.5 + parent: 2 + - uid: 21297 + components: + - type: Transform + pos: -53.5,174.5 + parent: 2 + - uid: 21469 + components: + - type: Transform + pos: -105.5,141.5 + parent: 2 + - uid: 21472 + components: + - type: Transform + pos: -105.5,139.5 + parent: 2 + - uid: 21473 + components: + - type: Transform + pos: -106.5,139.5 + parent: 2 + - uid: 21474 + components: + - type: Transform + pos: -106.5,140.5 + parent: 2 + - uid: 21475 + components: + - type: Transform + pos: -107.5,140.5 + parent: 2 + - uid: 21476 + components: + - type: Transform + pos: -107.5,139.5 + parent: 2 + - uid: 21477 + components: + - type: Transform + pos: -108.5,139.5 + parent: 2 + - uid: 21478 + components: + - type: Transform + pos: -108.5,138.5 + parent: 2 + - uid: 21479 + components: + - type: Transform + pos: -106.5,135.5 + parent: 2 + - uid: 21480 + components: + - type: Transform + pos: -107.5,135.5 + parent: 2 + - uid: 21481 + components: + - type: Transform + pos: -105.5,136.5 + parent: 2 + - uid: 21482 + components: + - type: Transform + pos: -104.5,136.5 + parent: 2 + - uid: 21483 + components: + - type: Transform + pos: -106.5,136.5 + parent: 2 + - uid: 21484 + components: + - type: Transform + pos: -105.5,137.5 + parent: 2 + - uid: 21485 + components: + - type: Transform + pos: -104.5,137.5 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: -105.5,138.5 + parent: 2 + - uid: 21488 + components: + - type: Transform + pos: -106.5,138.5 + parent: 2 + - uid: 21489 + components: + - type: Transform + pos: -106.5,137.5 + parent: 2 + - uid: 21490 + components: + - type: Transform + pos: -107.5,137.5 + parent: 2 + - uid: 21491 + components: + - type: Transform + pos: -107.5,136.5 + parent: 2 + - uid: 21492 + components: + - type: Transform + pos: -103.5,136.5 + parent: 2 + - uid: 21493 + components: + - type: Transform + pos: -103.5,137.5 + parent: 2 + - uid: 21494 + components: + - type: Transform + pos: -102.5,137.5 + parent: 2 + - uid: 21495 + components: + - type: Transform + pos: -102.5,138.5 + parent: 2 + - uid: 21496 + components: + - type: Transform + pos: -103.5,138.5 + parent: 2 + - uid: 21497 + components: + - type: Transform + pos: -101.5,138.5 + parent: 2 + - uid: 21498 + components: + - type: Transform + pos: -101.5,139.5 + parent: 2 + - uid: 21499 + components: + - type: Transform + pos: -102.5,139.5 + parent: 2 + - uid: 21500 + components: + - type: Transform + pos: -104.5,139.5 + parent: 2 + - uid: 21501 + components: + - type: Transform + pos: -103.5,140.5 + parent: 2 + - uid: 21502 + components: + - type: Transform + pos: -103.5,139.5 + parent: 2 + - uid: 21504 + components: + - type: Transform + pos: -101.5,141.5 + parent: 2 + - uid: 21505 + components: + - type: Transform + pos: -102.5,141.5 + parent: 2 + - uid: 21507 + components: + - type: Transform + pos: -101.5,140.5 + parent: 2 + - uid: 21508 + components: + - type: Transform + pos: -100.5,141.5 + parent: 2 + - uid: 21509 + components: + - type: Transform + pos: -100.5,140.5 + parent: 2 + - uid: 21510 + components: + - type: Transform + pos: -100.5,139.5 + parent: 2 + - uid: 21511 + components: + - type: Transform + pos: -99.5,141.5 + parent: 2 + - uid: 21512 + components: + - type: Transform + pos: -99.5,140.5 + parent: 2 + - uid: 21513 + components: + - type: Transform + pos: -99.5,139.5 + parent: 2 + - uid: 21514 + components: + - type: Transform + pos: -107.5,142.5 + parent: 2 + - uid: 21515 + components: + - type: Transform + pos: -106.5,141.5 + parent: 2 + - uid: 21516 + components: + - type: Transform + pos: -106.5,142.5 + parent: 2 + - uid: 21517 + components: + - type: Transform + pos: -106.5,143.5 + parent: 2 + - uid: 21518 + components: + - type: Transform + pos: -106.5,144.5 + parent: 2 + - uid: 21519 + components: + - type: Transform + pos: -105.5,142.5 + parent: 2 + - uid: 21521 + components: + - type: Transform + pos: -105.5,144.5 + parent: 2 + - uid: 21522 + components: + - type: Transform + pos: -105.5,145.5 + parent: 2 + - uid: 21523 + components: + - type: Transform + pos: -104.5,142.5 + parent: 2 + - uid: 21524 + components: + - type: Transform + pos: -104.5,143.5 + parent: 2 + - uid: 21525 + components: + - type: Transform + pos: -104.5,144.5 + parent: 2 + - uid: 21526 + components: + - type: Transform + pos: -104.5,145.5 + parent: 2 + - uid: 21527 + components: + - type: Transform + pos: -109.5,136.5 + parent: 2 + - uid: 21528 + components: + - type: Transform + pos: -108.5,135.5 + parent: 2 + - uid: 21529 + components: + - type: Transform + pos: -108.5,137.5 + parent: 2 + - uid: 21530 + components: + - type: Transform + pos: -108.5,136.5 + parent: 2 + - uid: 21531 + components: + - type: Transform + pos: -110.5,135.5 + parent: 2 + - uid: 21532 + components: + - type: Transform + pos: -109.5,135.5 + parent: 2 + - uid: 21533 + components: + - type: Transform + pos: -111.5,134.5 + parent: 2 + - uid: 21535 + components: + - type: Transform + pos: -89.5,141.5 + parent: 2 + - uid: 21536 + components: + - type: Transform + pos: -90.5,141.5 + parent: 2 + - uid: 21537 + components: + - type: Transform + pos: -89.5,140.5 + parent: 2 + - uid: 21538 + components: + - type: Transform + pos: -88.5,140.5 + parent: 2 + - uid: 22314 + components: + - type: Transform + pos: -37.5,185.5 + parent: 2 + - uid: 22315 + components: + - type: Transform + pos: -35.5,185.5 + parent: 2 + - uid: 22316 + components: + - type: Transform + pos: -33.5,185.5 + parent: 2 + - uid: 22319 + components: + - type: Transform + pos: -35.5,182.5 + parent: 2 + - uid: 22326 + components: + - type: Transform + pos: -36.5,182.5 + parent: 2 + - uid: 22673 + components: + - type: Transform + pos: -28.5,175.5 + parent: 2 + - uid: 22732 + components: + - type: Transform + pos: -67.5,62.5 + parent: 2 + - uid: 22735 + components: + - type: Transform + pos: 22.5,169.5 + parent: 2 + - uid: 23124 + components: + - type: Transform + pos: 29.5,169.5 + parent: 2 + - uid: 23146 + components: + - type: Transform + pos: -26.5,175.5 + parent: 2 + - uid: 23786 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 24774 + components: + - type: Transform + pos: -26.5,172.5 + parent: 2 + - uid: 24780 + components: + - type: Transform + pos: -27.5,174.5 + parent: 2 + - uid: 25096 + components: + - type: Transform + pos: -83.5,31.5 + parent: 2 + - uid: 25176 + components: + - type: Transform + pos: -83.5,28.5 + parent: 2 + - uid: 25234 + components: + - type: Transform + pos: -84.5,28.5 + parent: 2 + - uid: 25387 + components: + - type: Transform + pos: -82.5,27.5 + parent: 2 + - uid: 25424 + components: + - type: Transform + pos: -84.5,29.5 + parent: 2 + - uid: 25434 + components: + - type: Transform + pos: -83.5,29.5 + parent: 2 + - uid: 25694 + components: + - type: Transform + pos: -84.5,30.5 + parent: 2 + - uid: 25695 + components: + - type: Transform + pos: -82.5,30.5 + parent: 2 + - uid: 25769 + components: + - type: Transform + pos: -81.5,31.5 + parent: 2 + - uid: 25772 + components: + - type: Transform + pos: -83.5,30.5 + parent: 2 + - uid: 25819 + components: + - type: Transform + pos: -85.5,30.5 + parent: 2 + - uid: 26172 + components: + - type: Transform + pos: -32.5,188.5 + parent: 2 + - uid: 26173 + components: + - type: Transform + pos: -32.5,187.5 + parent: 2 + - uid: 26175 + components: + - type: Transform + pos: -33.5,189.5 + parent: 2 + - uid: 26176 + components: + - type: Transform + pos: -33.5,188.5 + parent: 2 + - uid: 26177 + components: + - type: Transform + pos: -34.5,187.5 + parent: 2 + - uid: 26178 + components: + - type: Transform + pos: -33.5,186.5 + parent: 2 + - uid: 26179 + components: + - type: Transform + pos: -34.5,186.5 + parent: 2 + - uid: 26181 + components: + - type: Transform + pos: -34.5,188.5 + parent: 2 + - uid: 26182 + components: + - type: Transform + pos: -34.5,189.5 + parent: 2 + - uid: 26183 + components: + - type: Transform + pos: -35.5,187.5 + parent: 2 + - uid: 26184 + components: + - type: Transform + pos: -35.5,186.5 + parent: 2 + - uid: 26185 + components: + - type: Transform + pos: -36.5,186.5 + parent: 2 + - uid: 26186 + components: + - type: Transform + pos: -37.5,186.5 + parent: 2 + - uid: 26209 + components: + - type: Transform + pos: -35.5,198.5 + parent: 2 + - uid: 26210 + components: + - type: Transform + pos: -35.5,199.5 + parent: 2 + - uid: 26211 + components: + - type: Transform + pos: -35.5,200.5 + parent: 2 + - uid: 26212 + components: + - type: Transform + pos: -35.5,201.5 + parent: 2 + - uid: 26213 + components: + - type: Transform + pos: -35.5,202.5 + parent: 2 + - uid: 26214 + components: + - type: Transform + pos: -35.5,203.5 + parent: 2 + - uid: 26215 + components: + - type: Transform + pos: -35.5,204.5 + parent: 2 + - uid: 26216 + components: + - type: Transform + pos: -36.5,197.5 + parent: 2 + - uid: 26217 + components: + - type: Transform + pos: -36.5,198.5 + parent: 2 + - uid: 26218 + components: + - type: Transform + pos: -36.5,199.5 + parent: 2 + - uid: 26219 + components: + - type: Transform + pos: -36.5,200.5 + parent: 2 + - uid: 26220 + components: + - type: Transform + pos: -36.5,201.5 + parent: 2 + - uid: 26221 + components: + - type: Transform + pos: -36.5,202.5 + parent: 2 + - uid: 26222 + components: + - type: Transform + pos: -37.5,199.5 + parent: 2 + - uid: 26223 + components: + - type: Transform + pos: -37.5,200.5 + parent: 2 + - uid: 26224 + components: + - type: Transform + pos: -37.5,201.5 + parent: 2 + - uid: 26320 + components: + - type: Transform + pos: -35.5,205.5 + parent: 2 + - uid: 26321 + components: + - type: Transform + pos: -35.5,206.5 + parent: 2 + - uid: 26323 + components: + - type: Transform + pos: -36.5,204.5 + parent: 2 + - uid: 26324 + components: + - type: Transform + pos: -36.5,203.5 + parent: 2 + - uid: 26367 + components: + - type: Transform + pos: -34.5,182.5 + parent: 2 + - uid: 26369 + components: + - type: Transform + pos: -33.5,182.5 + parent: 2 + - uid: 26510 + components: + - type: Transform + pos: -82.5,31.5 + parent: 2 + - uid: 26511 + components: + - type: Transform + pos: -84.5,31.5 + parent: 2 + - uid: 26571 + components: + - type: Transform + pos: 30.5,170.5 + parent: 2 + - uid: 26574 + components: + - type: Transform + pos: 29.5,170.5 + parent: 2 + - uid: 26576 + components: + - type: Transform + pos: 28.5,170.5 + parent: 2 + - uid: 26577 + components: + - type: Transform + pos: 27.5,169.5 + parent: 2 + - uid: 26578 + components: + - type: Transform + pos: 27.5,170.5 + parent: 2 + - uid: 26583 + components: + - type: Transform + pos: 24.5,168.5 + parent: 2 + - uid: 26589 + components: + - type: Transform + pos: 26.5,169.5 + parent: 2 + - uid: 26591 + components: + - type: Transform + pos: 24.5,171.5 + parent: 2 + - uid: 26592 + components: + - type: Transform + pos: 25.5,171.5 + parent: 2 + - uid: 26611 + components: + - type: Transform + pos: 27.5,171.5 + parent: 2 + - uid: 26612 + components: + - type: Transform + pos: 27.5,172.5 + parent: 2 + - uid: 26613 + components: + - type: Transform + pos: 28.5,171.5 + parent: 2 + - uid: 26614 + components: + - type: Transform + pos: 28.5,172.5 + parent: 2 + - uid: 26615 + components: + - type: Transform + pos: 29.5,171.5 + parent: 2 + - uid: 26616 + components: + - type: Transform + pos: 29.5,172.5 + parent: 2 + - uid: 26617 + components: + - type: Transform + pos: 30.5,171.5 + parent: 2 + - uid: 26620 + components: + - type: Transform + pos: 27.5,173.5 + parent: 2 + - uid: 26623 + components: + - type: Transform + pos: 26.5,174.5 + parent: 2 + - uid: 26625 + components: + - type: Transform + pos: 25.5,174.5 + parent: 2 + - uid: 26626 + components: + - type: Transform + pos: 28.5,173.5 + parent: 2 + - uid: 26627 + components: + - type: Transform + pos: 25.5,175.5 + parent: 2 + - uid: 26628 + components: + - type: Transform + pos: 25.5,181.5 + parent: 2 + - uid: 26629 + components: + - type: Transform + pos: 25.5,182.5 + parent: 2 + - uid: 26630 + components: + - type: Transform + pos: 25.5,183.5 + parent: 2 + - uid: 26631 + components: + - type: Transform + pos: 25.5,184.5 + parent: 2 + - uid: 26632 + components: + - type: Transform + pos: 29.5,183.5 + parent: 2 + - uid: 26633 + components: + - type: Transform + pos: 26.5,181.5 + parent: 2 + - uid: 26634 + components: + - type: Transform + pos: 26.5,182.5 + parent: 2 + - uid: 26635 + components: + - type: Transform + pos: 26.5,183.5 + parent: 2 + - uid: 26636 + components: + - type: Transform + pos: 26.5,184.5 + parent: 2 + - uid: 26638 + components: + - type: Transform + pos: 27.5,181.5 + parent: 2 + - uid: 26639 + components: + - type: Transform + pos: 27.5,182.5 + parent: 2 + - uid: 26641 + components: + - type: Transform + pos: 27.5,184.5 + parent: 2 + - uid: 26644 + components: + - type: Transform + pos: 28.5,182.5 + parent: 2 + - uid: 26645 + components: + - type: Transform + pos: 28.5,183.5 + parent: 2 + - uid: 26650 + components: + - type: Transform + pos: 29.5,182.5 + parent: 2 + - uid: 26651 + components: + - type: Transform + pos: 27.5,180.5 + parent: 2 + - uid: 26652 + components: + - type: Transform + pos: 26.5,180.5 + parent: 2 + - uid: 26654 + components: + - type: Transform + pos: 27.5,187.5 + parent: 2 + - uid: 26655 + components: + - type: Transform + pos: 27.5,188.5 + parent: 2 + - uid: 26656 + components: + - type: Transform + pos: 27.5,189.5 + parent: 2 + - uid: 26662 + components: + - type: Transform + pos: 27.5,195.5 + parent: 2 + - uid: 26663 + components: + - type: Transform + pos: 27.5,196.5 + parent: 2 + - uid: 26665 + components: + - type: Transform + pos: 26.5,187.5 + parent: 2 + - uid: 26666 + components: + - type: Transform + pos: 26.5,188.5 + parent: 2 + - uid: 26667 + components: + - type: Transform + pos: 26.5,189.5 + parent: 2 + - uid: 26672 + components: + - type: Transform + pos: 26.5,194.5 + parent: 2 + - uid: 26673 + components: + - type: Transform + pos: 26.5,195.5 + parent: 2 + - uid: 26674 + components: + - type: Transform + pos: 26.5,196.5 + parent: 2 + - uid: 26675 + components: + - type: Transform + pos: 28.5,189.5 + parent: 2 + - uid: 26676 + components: + - type: Transform + pos: 28.5,190.5 + parent: 2 + - uid: 26677 + components: + - type: Transform + pos: 28.5,191.5 + parent: 2 + - uid: 26679 + components: + - type: Transform + pos: 28.5,193.5 + parent: 2 + - uid: 26680 + components: + - type: Transform + pos: 28.5,194.5 + parent: 2 + - uid: 26681 + components: + - type: Transform + pos: 28.5,195.5 + parent: 2 + - uid: 26682 + components: + - type: Transform + pos: 29.5,189.5 + parent: 2 + - uid: 26683 + components: + - type: Transform + pos: 29.5,190.5 + parent: 2 + - uid: 26684 + components: + - type: Transform + pos: 29.5,191.5 + parent: 2 + - uid: 26685 + components: + - type: Transform + pos: 29.5,192.5 + parent: 2 + - uid: 26686 + components: + - type: Transform + pos: 29.5,193.5 + parent: 2 + - uid: 26687 + components: + - type: Transform + pos: 29.5,194.5 + parent: 2 + - uid: 26688 + components: + - type: Transform + pos: 29.5,195.5 + parent: 2 + - uid: 26689 + components: + - type: Transform + pos: 28.5,188.5 + parent: 2 + - uid: 26690 + components: + - type: Transform + pos: 28.5,187.5 + parent: 2 + - uid: 26691 + components: + - type: Transform + pos: 30.5,191.5 + parent: 2 + - uid: 26692 + components: + - type: Transform + pos: 30.5,192.5 + parent: 2 + - uid: 26693 + components: + - type: Transform + pos: 30.5,193.5 + parent: 2 + - uid: 26694 + components: + - type: Transform + pos: 30.5,194.5 + parent: 2 + - uid: 26695 + components: + - type: Transform + pos: 31.5,193.5 + parent: 2 + - uid: 26696 + components: + - type: Transform + pos: 31.5,192.5 + parent: 2 + - uid: 26697 + components: + - type: Transform + pos: 26.5,197.5 + parent: 2 + - uid: 26698 + components: + - type: Transform + pos: 26.5,198.5 + parent: 2 + - uid: 26699 + components: + - type: Transform + pos: 26.5,199.5 + parent: 2 + - uid: 26700 + components: + - type: Transform + pos: 26.5,200.5 + parent: 2 + - uid: 26701 + components: + - type: Transform + pos: 26.5,201.5 + parent: 2 + - uid: 26702 + components: + - type: Transform + pos: 27.5,198.5 + parent: 2 + - uid: 26703 + components: + - type: Transform + pos: 27.5,197.5 + parent: 2 + - uid: 26704 + components: + - type: Transform + pos: 27.5,196.5 + parent: 2 + - uid: 26705 + components: + - type: Transform + pos: 28.5,196.5 + parent: 2 + - uid: 26706 + components: + - type: Transform + pos: 26.5,202.5 + parent: 2 + - uid: 26707 + components: + - type: Transform + pos: 25.5,204.5 + parent: 2 + - uid: 26708 + components: + - type: Transform + pos: 24.5,204.5 + parent: 2 + - uid: 26709 + components: + - type: Transform + pos: 23.5,204.5 + parent: 2 + - uid: 26710 + components: + - type: Transform + pos: 22.5,204.5 + parent: 2 + - uid: 26711 + components: + - type: Transform + pos: 21.5,204.5 + parent: 2 + - uid: 26712 + components: + - type: Transform + pos: 20.5,204.5 + parent: 2 + - uid: 26713 + components: + - type: Transform + pos: 19.5,204.5 + parent: 2 + - uid: 26714 + components: + - type: Transform + pos: 24.5,205.5 + parent: 2 + - uid: 26715 + components: + - type: Transform + pos: 23.5,205.5 + parent: 2 + - uid: 26716 + components: + - type: Transform + pos: 22.5,205.5 + parent: 2 + - uid: 26717 + components: + - type: Transform + pos: 21.5,205.5 + parent: 2 + - uid: 26718 + components: + - type: Transform + pos: 20.5,205.5 + parent: 2 + - uid: 26719 + components: + - type: Transform + pos: 26.5,206.5 + parent: 2 + - uid: 26720 + components: + - type: Transform + pos: 25.5,206.5 + parent: 2 + - uid: 26721 + components: + - type: Transform + pos: 24.5,206.5 + parent: 2 + - uid: 26722 + components: + - type: Transform + pos: 23.5,206.5 + parent: 2 + - uid: 26723 + components: + - type: Transform + pos: 22.5,206.5 + parent: 2 + - uid: 26724 + components: + - type: Transform + pos: 25.5,205.5 + parent: 2 + - uid: 26725 + components: + - type: Transform + pos: 26.5,205.5 + parent: 2 + - uid: 26726 + components: + - type: Transform + pos: 27.5,205.5 + parent: 2 + - uid: 26727 + components: + - type: Transform + pos: 26.5,204.5 + parent: 2 + - uid: 26728 + components: + - type: Transform + pos: 26.5,203.5 + parent: 2 + - uid: 26729 + components: + - type: Transform + pos: 27.5,204.5 + parent: 2 + - uid: 26730 + components: + - type: Transform + pos: 28.5,205.5 + parent: 2 + - uid: 26731 + components: + - type: Transform + pos: 27.5,206.5 + parent: 2 + - uid: 26732 + components: + - type: Transform + pos: 28.5,206.5 + parent: 2 + - uid: 26733 + components: + - type: Transform + pos: 29.5,206.5 + parent: 2 + - uid: 26734 + components: + - type: Transform + pos: 27.5,207.5 + parent: 2 + - uid: 26735 + components: + - type: Transform + pos: 26.5,207.5 + parent: 2 + - uid: 26736 + components: + - type: Transform + pos: 25.5,207.5 + parent: 2 + - uid: 26737 + components: + - type: Transform + pos: 27.5,203.5 + parent: 2 + - uid: 26738 + components: + - type: Transform + pos: 27.5,201.5 + parent: 2 + - uid: 26739 + components: + - type: Transform + pos: 27.5,200.5 + parent: 2 + - uid: 26740 + components: + - type: Transform + pos: 27.5,202.5 + parent: 2 + - uid: 26741 + components: + - type: Transform + pos: 28.5,204.5 + parent: 2 + - uid: 26742 + components: + - type: Transform + pos: 28.5,202.5 + parent: 2 + - uid: 26743 + components: + - type: Transform + pos: 28.5,203.5 + parent: 2 + - uid: 26744 + components: + - type: Transform + pos: 29.5,205.5 + parent: 2 + - uid: 26745 + components: + - type: Transform + pos: 29.5,204.5 + parent: 2 + - uid: 26746 + components: + - type: Transform + pos: 10.5,207.5 + parent: 2 + - uid: 26747 + components: + - type: Transform + pos: 10.5,208.5 + parent: 2 + - uid: 26748 + components: + - type: Transform + pos: 10.5,209.5 + parent: 2 + - uid: 26749 + components: + - type: Transform + pos: 11.5,207.5 + parent: 2 + - uid: 26750 + components: + - type: Transform + pos: 11.5,208.5 + parent: 2 + - uid: 26752 + components: + - type: Transform + pos: 12.5,207.5 + parent: 2 + - uid: 26753 + components: + - type: Transform + pos: 12.5,208.5 + parent: 2 + - uid: 26754 + components: + - type: Transform + pos: 12.5,209.5 + parent: 2 + - uid: 26755 + components: + - type: Transform + pos: 13.5,207.5 + parent: 2 + - uid: 26756 + components: + - type: Transform + pos: 13.5,208.5 + parent: 2 + - uid: 26757 + components: + - type: Transform + pos: 13.5,209.5 + parent: 2 + - uid: 26758 + components: + - type: Transform + pos: 14.5,208.5 + parent: 2 + - uid: 26759 + components: + - type: Transform + pos: 14.5,209.5 + parent: 2 + - uid: 26760 + components: + - type: Transform + pos: 15.5,209.5 + parent: 2 + - uid: 26761 + components: + - type: Transform + pos: 15.5,208.5 + parent: 2 + - uid: 26762 + components: + - type: Transform + pos: 9.5,208.5 + parent: 2 + - uid: 26763 + components: + - type: Transform + pos: 9.5,209.5 + parent: 2 + - uid: 26764 + components: + - type: Transform + pos: 10.5,210.5 + parent: 2 + - uid: 26765 + components: + - type: Transform + pos: 11.5,210.5 + parent: 2 + - uid: 26766 + components: + - type: Transform + pos: 12.5,210.5 + parent: 2 + - uid: 26767 + components: + - type: Transform + pos: 13.5,210.5 + parent: 2 + - uid: 26768 + components: + - type: Transform + pos: 14.5,210.5 + parent: 2 + - uid: 26769 + components: + - type: Transform + pos: 13.5,211.5 + parent: 2 + - uid: 26770 + components: + - type: Transform + pos: 12.5,211.5 + parent: 2 + - uid: 27197 + components: + - type: Transform + pos: -144.5,13.5 + parent: 2 + - uid: 27280 + components: + - type: Transform + pos: -144.5,12.5 + parent: 2 + - uid: 27282 + components: + - type: Transform + pos: -130.5,36.5 + parent: 2 + - uid: 27284 + components: + - type: Transform + pos: -129.5,35.5 + parent: 2 + - uid: 27308 + components: + - type: Transform + pos: -141.5,15.5 + parent: 2 + - uid: 27318 + components: + - type: Transform + pos: -136.5,14.5 + parent: 2 + - uid: 27321 + components: + - type: Transform + pos: -143.5,13.5 + parent: 2 + - uid: 27322 + components: + - type: Transform + pos: -135.5,15.5 + parent: 2 + - uid: 27330 + components: + - type: Transform + pos: -139.5,11.5 + parent: 2 + - uid: 27697 + components: + - type: Transform + pos: -147.5,8.5 + parent: 2 + - uid: 27706 + components: + - type: Transform + pos: -145.5,12.5 + parent: 2 + - uid: 27884 + components: + - type: Transform + pos: -148.5,8.5 + parent: 2 + - uid: 27903 + components: + - type: Transform + pos: -143.5,10.5 + parent: 2 + - uid: 27940 + components: + - type: Transform + pos: -130.5,58.5 + parent: 2 + - uid: 27982 + components: + - type: Transform + pos: -146.5,8.5 + parent: 2 + - uid: 28071 + components: + - type: Transform + pos: -72.5,141.5 + parent: 2 + - uid: 28076 + components: + - type: Transform + pos: -71.5,142.5 + parent: 2 + - uid: 28104 + components: + - type: Transform + pos: -139.5,15.5 + parent: 2 + - uid: 28106 + components: + - type: Transform + pos: -138.5,14.5 + parent: 2 + - uid: 28109 + components: + - type: Transform + pos: -146.5,11.5 + parent: 2 + - uid: 28110 + components: + - type: Transform + pos: -137.5,13.5 + parent: 2 + - uid: 28157 + components: + - type: Transform + pos: -145.5,11.5 + parent: 2 + - uid: 28217 + components: + - type: Transform + pos: -101.5,39.5 + parent: 2 + - uid: 28218 + components: + - type: Transform + pos: -72.5,142.5 + parent: 2 + - uid: 28289 + components: + - type: Transform + pos: -103.5,53.5 + parent: 2 + - uid: 28345 + components: + - type: Transform + pos: -104.5,60.5 + parent: 2 + - uid: 28355 + components: + - type: Transform + pos: -103.5,54.5 + parent: 2 + - uid: 28356 + components: + - type: Transform + pos: -105.5,61.5 + parent: 2 + - uid: 28360 + components: + - type: Transform + pos: -104.5,53.5 + parent: 2 + - uid: 28362 + components: + - type: Transform + pos: -106.5,60.5 + parent: 2 + - uid: 28365 + components: + - type: Transform + pos: -103.5,55.5 + parent: 2 + - uid: 28402 + components: + - type: Transform + pos: -137.5,14.5 + parent: 2 + - uid: 28473 + components: + - type: Transform + pos: -139.5,12.5 + parent: 2 + - uid: 28596 + components: + - type: Transform + pos: -101.5,40.5 + parent: 2 + - uid: 28638 + components: + - type: Transform + pos: -101.5,43.5 + parent: 2 + - uid: 28641 + components: + - type: Transform + pos: -102.5,39.5 + parent: 2 + - uid: 28691 + components: + - type: Transform + pos: -131.5,17.5 + parent: 2 + - uid: 28692 + components: + - type: Transform + pos: -134.5,16.5 + parent: 2 + - uid: 28699 + components: + - type: Transform + pos: -133.5,16.5 + parent: 2 + - uid: 28700 + components: + - type: Transform + pos: -141.5,10.5 + parent: 2 + - uid: 28759 + components: + - type: Transform + pos: -137.5,15.5 + parent: 2 + - uid: 29333 + components: + - type: Transform + pos: -124.5,41.5 + parent: 2 + - uid: 29336 + components: + - type: Transform + pos: -125.5,41.5 + parent: 2 + - uid: 29355 + components: + - type: Transform + pos: -130.5,35.5 + parent: 2 + - uid: 29356 + components: + - type: Transform + pos: -131.5,35.5 + parent: 2 + - uid: 29357 + components: + - type: Transform + pos: -132.5,35.5 + parent: 2 + - uid: 29358 + components: + - type: Transform + pos: -133.5,35.5 + parent: 2 + - uid: 29359 + components: + - type: Transform + pos: -131.5,36.5 + parent: 2 + - uid: 29360 + components: + - type: Transform + pos: -132.5,36.5 + parent: 2 + - uid: 29361 + components: + - type: Transform + pos: -133.5,36.5 + parent: 2 + - uid: 29364 + components: + - type: Transform + pos: -134.5,36.5 + parent: 2 + - uid: 29423 + components: + - type: Transform + pos: -130.5,14.5 + parent: 2 + - uid: 29424 + components: + - type: Transform + pos: -130.5,15.5 + parent: 2 + - uid: 29427 + components: + - type: Transform + pos: -131.5,14.5 + parent: 2 + - uid: 29428 + components: + - type: Transform + pos: -131.5,15.5 + parent: 2 + - uid: 29431 + components: + - type: Transform + pos: -131.5,16.5 + parent: 2 + - uid: 29433 + components: + - type: Transform + pos: -126.5,30.5 + parent: 2 + - uid: 29434 + components: + - type: Transform + pos: -126.5,31.5 + parent: 2 + - uid: 29436 + components: + - type: Transform + pos: -125.5,32.5 + parent: 2 + - uid: 29437 + components: + - type: Transform + pos: -126.5,32.5 + parent: 2 + - uid: 29438 + components: + - type: Transform + pos: -126.5,33.5 + parent: 2 + - uid: 29439 + components: + - type: Transform + pos: -127.5,34.5 + parent: 2 + - uid: 29440 + components: + - type: Transform + pos: -126.5,34.5 + parent: 2 + - uid: 29441 + components: + - type: Transform + pos: -127.5,35.5 + parent: 2 + - uid: 29442 + components: + - type: Transform + pos: -128.5,35.5 + parent: 2 + - uid: 29597 + components: + - type: Transform + pos: -130.5,57.5 + parent: 2 + - uid: 29642 + components: + - type: Transform + pos: -136.5,15.5 + parent: 2 + - uid: 29643 + components: + - type: Transform + pos: -140.5,14.5 + parent: 2 + - uid: 29645 + components: + - type: Transform + pos: -142.5,14.5 + parent: 2 + - uid: 29646 + components: + - type: Transform + pos: -143.5,14.5 + parent: 2 + - uid: 29647 + components: + - type: Transform + pos: -142.5,13.5 + parent: 2 + - uid: 29648 + components: + - type: Transform + pos: -141.5,13.5 + parent: 2 + - uid: 29649 + components: + - type: Transform + pos: -140.5,13.5 + parent: 2 + - uid: 29650 + components: + - type: Transform + pos: -139.5,13.5 + parent: 2 + - uid: 29651 + components: + - type: Transform + pos: -138.5,13.5 + parent: 2 + - uid: 29652 + components: + - type: Transform + pos: -143.5,12.5 + parent: 2 + - uid: 29654 + components: + - type: Transform + pos: -141.5,12.5 + parent: 2 + - uid: 29655 + components: + - type: Transform + pos: -140.5,12.5 + parent: 2 + - uid: 29656 + components: + - type: Transform + pos: -144.5,11.5 + parent: 2 + - uid: 29658 + components: + - type: Transform + pos: -142.5,11.5 + parent: 2 + - uid: 29659 + components: + - type: Transform + pos: -141.5,11.5 + parent: 2 + - uid: 29660 + components: + - type: Transform + pos: -142.5,10.5 + parent: 2 + - uid: 29661 + components: + - type: Transform + pos: -145.5,9.5 + parent: 2 + - uid: 29662 + components: + - type: Transform + pos: -144.5,9.5 + parent: 2 + - uid: 29663 + components: + - type: Transform + pos: -146.5,10.5 + parent: 2 + - uid: 29664 + components: + - type: Transform + pos: -143.5,9.5 + parent: 2 + - uid: 29665 + components: + - type: Transform + pos: -138.5,12.5 + parent: 2 + - uid: 29666 + components: + - type: Transform + pos: -137.5,12.5 + parent: 2 + - uid: 29668 + components: + - type: Transform + pos: -135.5,13.5 + parent: 2 + - uid: 29669 + components: + - type: Transform + pos: -135.5,14.5 + parent: 2 + - uid: 29670 + components: + - type: Transform + pos: -134.5,14.5 + parent: 2 + - uid: 29671 + components: + - type: Transform + pos: -132.5,16.5 + parent: 2 + - uid: 29672 + components: + - type: Transform + pos: -132.5,17.5 + parent: 2 + - uid: 29673 + components: + - type: Transform + pos: -133.5,17.5 + parent: 2 + - uid: 30773 + components: + - type: Transform + pos: -100.5,30.5 + parent: 2 + - uid: 30774 + components: + - type: Transform + pos: -100.5,31.5 + parent: 2 + - uid: 30775 + components: + - type: Transform + pos: -100.5,32.5 + parent: 2 + - uid: 30777 + components: + - type: Transform + pos: -99.5,31.5 + parent: 2 + - uid: 30778 + components: + - type: Transform + pos: -99.5,32.5 + parent: 2 + - uid: 30779 + components: + - type: Transform + pos: -98.5,30.5 + parent: 2 + - uid: 30780 + components: + - type: Transform + pos: -98.5,31.5 + parent: 2 + - uid: 30781 + components: + - type: Transform + pos: -98.5,32.5 + parent: 2 + - uid: 30782 + components: + - type: Transform + pos: -97.5,30.5 + parent: 2 + - uid: 30783 + components: + - type: Transform + pos: -97.5,31.5 + parent: 2 + - uid: 30784 + components: + - type: Transform + pos: -97.5,32.5 + parent: 2 + - uid: 30785 + components: + - type: Transform + pos: -96.5,30.5 + parent: 2 + - uid: 30786 + components: + - type: Transform + pos: -96.5,31.5 + parent: 2 + - uid: 30789 + components: + - type: Transform + pos: -95.5,31.5 + parent: 2 + - uid: 30791 + components: + - type: Transform + pos: -94.5,31.5 + parent: 2 + - uid: 30793 + components: + - type: Transform + pos: -93.5,31.5 + parent: 2 + - uid: 30795 + components: + - type: Transform + pos: -92.5,31.5 + parent: 2 + - uid: 30797 + components: + - type: Transform + pos: -91.5,31.5 + parent: 2 + - uid: 30798 + components: + - type: Transform + pos: -91.5,32.5 + parent: 2 + - uid: 30799 + components: + - type: Transform + pos: -90.5,32.5 + parent: 2 + - uid: 30800 + components: + - type: Transform + pos: -89.5,32.5 + parent: 2 + - uid: 30801 + components: + - type: Transform + pos: -88.5,32.5 + parent: 2 + - uid: 30802 + components: + - type: Transform + pos: -89.5,33.5 + parent: 2 + - uid: 30803 + components: + - type: Transform + pos: -88.5,33.5 + parent: 2 + - uid: 30804 + components: + - type: Transform + pos: -100.5,29.5 + parent: 2 + - uid: 30805 + components: + - type: Transform + pos: -101.5,28.5 + parent: 2 + - uid: 30806 + components: + - type: Transform + pos: -99.5,29.5 + parent: 2 + - uid: 30807 + components: + - type: Transform + pos: -84.5,25.5 + parent: 2 + - uid: 30808 + components: + - type: Transform + pos: -84.5,26.5 + parent: 2 + - uid: 30809 + components: + - type: Transform + pos: -84.5,27.5 + parent: 2 + - uid: 30810 + components: + - type: Transform + pos: -85.5,25.5 + parent: 2 + - uid: 30811 + components: + - type: Transform + pos: -85.5,26.5 + parent: 2 + - uid: 30812 + components: + - type: Transform + pos: -85.5,27.5 + parent: 2 + - uid: 30813 + components: + - type: Transform + pos: -86.5,25.5 + parent: 2 + - uid: 30814 + components: + - type: Transform + pos: -86.5,26.5 + parent: 2 + - uid: 30815 + components: + - type: Transform + pos: -82.5,133.5 + parent: 2 + - uid: 30816 + components: + - type: Transform + pos: -85.5,23.5 + parent: 2 + - uid: 30817 + components: + - type: Transform + pos: -85.5,24.5 + parent: 2 + - uid: 30818 + components: + - type: Transform + pos: -86.5,23.5 + parent: 2 + - uid: 30819 + components: + - type: Transform + pos: -86.5,24.5 + parent: 2 + - uid: 30820 + components: + - type: Transform + pos: -87.5,23.5 + parent: 2 + - uid: 30821 + components: + - type: Transform + pos: -87.5,24.5 + parent: 2 + - uid: 30822 + components: + - type: Transform + pos: -88.5,23.5 + parent: 2 + - uid: 30823 + components: + - type: Transform + pos: -88.5,24.5 + parent: 2 + - uid: 30824 + components: + - type: Transform + pos: -87.5,25.5 + parent: 2 + - uid: 30825 + components: + - type: Transform + pos: -71.5,140.5 + parent: 2 + - uid: 30826 + components: + - type: Transform + pos: -83.5,133.5 + parent: 2 + - uid: 30828 + components: + - type: Transform + pos: -73.5,139.5 + parent: 2 + - uid: 30830 + components: + - type: Transform + pos: -72.5,139.5 + parent: 2 + - uid: 30831 + components: + - type: Transform + pos: -68.5,142.5 + parent: 2 + - uid: 30833 + components: + - type: Transform + pos: -73.5,140.5 + parent: 2 + - uid: 30834 + components: + - type: Transform + pos: -72.5,140.5 + parent: 2 + - uid: 30844 + components: + - type: Transform + pos: -70.5,142.5 + parent: 2 + - uid: 30845 + components: + - type: Transform + pos: -70.5,141.5 + parent: 2 + - uid: 30848 + components: + - type: Transform + pos: -83.5,26.5 + parent: 2 + - uid: 30849 + components: + - type: Transform + pos: -83.5,27.5 + parent: 2 + - uid: 30850 + components: + - type: Transform + pos: -82.5,26.5 + parent: 2 + - uid: 30853 + components: + - type: Transform + pos: -74.5,140.5 + parent: 2 + - uid: 30866 + components: + - type: Transform + pos: -86.5,22.5 + parent: 2 + - uid: 30892 + components: + - type: Transform + pos: -129.5,16.5 + parent: 2 + - uid: 30906 + components: + - type: Transform + pos: -130.5,17.5 + parent: 2 + - uid: 30907 + components: + - type: Transform + pos: -130.5,16.5 + parent: 2 + - uid: 31060 + components: + - type: Transform + pos: -64.5,59.5 + parent: 2 + - uid: 31063 + components: + - type: Transform + pos: -66.5,60.5 + parent: 2 + - uid: 32228 + components: + - type: Transform + pos: -83.5,134.5 + parent: 2 + - uid: 32229 + components: + - type: Transform + pos: -81.5,134.5 + parent: 2 + - uid: 32231 + components: + - type: Transform + pos: -81.5,135.5 + parent: 2 + - uid: 32233 + components: + - type: Transform + pos: -82.5,135.5 + parent: 2 + - uid: 32234 + components: + - type: Transform + pos: -82.5,136.5 + parent: 2 + - uid: 32235 + components: + - type: Transform + pos: -81.5,136.5 + parent: 2 + - uid: 32236 + components: + - type: Transform + pos: -80.5,136.5 + parent: 2 + - uid: 32237 + components: + - type: Transform + pos: -80.5,135.5 + parent: 2 + - uid: 33058 + components: + - type: Transform + pos: -85.5,131.5 + parent: 2 + - uid: 33059 + components: + - type: Transform + pos: -84.5,133.5 + parent: 2 + - uid: 33060 + components: + - type: Transform + pos: -84.5,132.5 + parent: 2 + - uid: 33061 + components: + - type: Transform + pos: -83.5,132.5 + parent: 2 + - uid: 33062 + components: + - type: Transform + pos: -85.5,132.5 + parent: 2 + - uid: 33063 + components: + - type: Transform + pos: -84.5,131.5 + parent: 2 + - uid: 33064 + components: + - type: Transform + pos: -85.5,130.5 + parent: 2 + - uid: 33065 + components: + - type: Transform + pos: -86.5,130.5 + parent: 2 + - uid: 34420 + components: + - type: Transform + pos: -65.5,59.5 + parent: 2 + - uid: 35421 + components: + - type: Transform + pos: -102.5,151.5 + parent: 2 + - uid: 35422 + components: + - type: Transform + pos: -101.5,152.5 + parent: 2 + - uid: 35511 + components: + - type: Transform + pos: -129.5,58.5 + parent: 2 + - uid: 35512 + components: + - type: Transform + pos: -129.5,59.5 + parent: 2 + - uid: 35513 + components: + - type: Transform + pos: -129.5,60.5 + parent: 2 + - uid: 35514 + components: + - type: Transform + pos: -129.5,61.5 + parent: 2 + - uid: 35515 + components: + - type: Transform + pos: -129.5,62.5 + parent: 2 + - uid: 35516 + components: + - type: Transform + pos: -129.5,63.5 + parent: 2 + - uid: 35517 + components: + - type: Transform + pos: -129.5,64.5 + parent: 2 + - uid: 36769 + components: + - type: Transform + pos: 21.5,169.5 + parent: 2 + - uid: 36823 + components: + - type: Transform + pos: 23.5,168.5 + parent: 2 + - uid: 36826 + components: + - type: Transform + pos: 25.5,168.5 + parent: 2 + - uid: 36863 + components: + - type: Transform + pos: -67.5,63.5 + parent: 2 + - uid: 37025 + components: + - type: Transform + pos: 23.5,169.5 + parent: 2 + - uid: 37042 + components: + - type: Transform + pos: -67.5,61.5 + parent: 2 + - uid: 37348 + components: + - type: Transform + pos: -33.5,178.5 + parent: 2 + - uid: 37541 + components: + - type: Transform + pos: 24.5,173.5 + parent: 2 + - uid: 37554 + components: + - type: Transform + pos: 25.5,169.5 + parent: 2 + - uid: 37555 + components: + - type: Transform + pos: 25.5,173.5 + parent: 2 + - uid: 37556 + components: + - type: Transform + pos: 24.5,169.5 + parent: 2 + - uid: 37557 + components: + - type: Transform + pos: 25.5,172.5 + parent: 2 + - uid: 37618 + components: + - type: Transform + pos: 24.5,172.5 + parent: 2 + - uid: 37823 + components: + - type: Transform + pos: 24.5,167.5 + parent: 2 + - uid: 38263 + components: + - type: Transform + pos: -0.5,58.5 + parent: 2 + - uid: 38791 + components: + - type: Transform + pos: 25.5,166.5 + parent: 2 + - uid: 38802 + components: + - type: Transform + pos: 25.5,170.5 + parent: 2 + - uid: 38807 + components: + - type: Transform + pos: 24.5,170.5 + parent: 2 + - uid: 38864 + components: + - type: Transform + pos: 28.5,167.5 + parent: 2 + - uid: 38865 + components: + - type: Transform + pos: 27.5,167.5 + parent: 2 + - uid: 38866 + components: + - type: Transform + pos: 28.5,168.5 + parent: 2 + - uid: 38867 + components: + - type: Transform + pos: 27.5,168.5 + parent: 2 + - uid: 38868 + components: + - type: Transform + pos: 26.5,168.5 + parent: 2 + - uid: 38869 + components: + - type: Transform + pos: 26.5,167.5 + parent: 2 + - uid: 38870 + components: + - type: Transform + pos: 26.5,166.5 + parent: 2 + - uid: 38871 + components: + - type: Transform + pos: 25.5,167.5 + parent: 2 + - uid: 38872 + components: + - type: Transform + pos: 23.5,167.5 + parent: 2 + - uid: 38873 + components: + - type: Transform + pos: 22.5,168.5 + parent: 2 +- proto: WallRockBasaltArtifactFragment + entities: + - uid: 3317 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 +- proto: WallRockBasaltGold + entities: + - uid: 2587 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 +- proto: WallRockBasaltPlasma + entities: + - uid: 2720 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - uid: 20628 + components: + - type: Transform + pos: -100.5,153.5 + parent: 2 + - uid: 21108 + components: + - type: Transform + pos: -60.5,183.5 + parent: 2 + - uid: 21184 + components: + - type: Transform + pos: -55.5,175.5 + parent: 2 + - uid: 21261 + components: + - type: Transform + pos: -92.5,177.5 + parent: 2 + - uid: 21263 + components: + - type: Transform + pos: -95.5,165.5 + parent: 2 + - uid: 21467 + components: + - type: Transform + pos: -105.5,140.5 + parent: 2 + - uid: 21468 + components: + - type: Transform + pos: -107.5,138.5 + parent: 2 + - uid: 21486 + components: + - type: Transform + pos: -104.5,138.5 + parent: 2 + - uid: 21503 + components: + - type: Transform + pos: -105.5,143.5 + parent: 2 + - uid: 21520 + components: + - type: Transform + pos: -102.5,140.5 + parent: 2 +- proto: WallRockBasaltQuartz + entities: + - uid: 5255 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + pos: -68.5,63.5 + parent: 2 + - uid: 17274 + components: + - type: Transform + pos: -75.5,68.5 + parent: 2 + - uid: 17275 + components: + - type: Transform + pos: -76.5,68.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + pos: -75.5,67.5 + parent: 2 + - uid: 26171 + components: + - type: Transform + pos: -32.5,189.5 + parent: 2 + - uid: 26180 + components: + - type: Transform + pos: -33.5,187.5 + parent: 2 + - uid: 26317 + components: + - type: Transform + pos: -35.5,207.5 + parent: 2 + - uid: 26517 + components: + - type: Transform + pos: 28.5,197.5 + parent: 2 + - uid: 26575 + components: + - type: Transform + pos: 27.5,174.5 + parent: 2 + - uid: 26621 + components: + - type: Transform + pos: 28.5,169.5 + parent: 2 + - uid: 26640 + components: + - type: Transform + pos: 27.5,193.5 + parent: 2 + - uid: 26643 + components: + - type: Transform + pos: 27.5,194.5 + parent: 2 + - uid: 26648 + components: + - type: Transform + pos: 24.5,183.5 + parent: 2 + - uid: 26657 + components: + - type: Transform + pos: 28.5,192.5 + parent: 2 + - uid: 26660 + components: + - type: Transform + pos: 28.5,181.5 + parent: 2 + - uid: 26661 + components: + - type: Transform + pos: 27.5,183.5 + parent: 2 + - uid: 26678 + components: + - type: Transform + pos: 27.5,190.5 + parent: 2 + - uid: 26791 + components: + - type: Transform + pos: 11.5,209.5 + parent: 2 + - uid: 26794 + components: + - type: Transform + pos: 30.5,206.5 + parent: 2 + - uid: 26795 + components: + - type: Transform + pos: 21.5,206.5 + parent: 2 + - uid: 26796 + components: + - type: Transform + pos: 16.5,209.5 + parent: 2 +- proto: WallRockBasaltSilver + entities: + - uid: 2612 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 +- proto: WallRockBasaltTin + entities: + - uid: 2616 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 +- proto: WallRockBasaltUranium + entities: + - uid: 2919 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + pos: -100.5,28.5 + parent: 2 + - uid: 19791 + components: + - type: Transform + pos: -131.5,55.5 + parent: 2 + - uid: 19805 + components: + - type: Transform + pos: -105.5,60.5 + parent: 2 + - uid: 29667 + components: + - type: Transform + pos: -136.5,13.5 + parent: 2 + - uid: 29915 + components: + - type: Transform + pos: -125.5,31.5 + parent: 2 + - uid: 30509 + components: + - type: Transform + pos: -132.5,15.5 + parent: 2 + - uid: 30608 + components: + - type: Transform + pos: -145.5,10.5 + parent: 2 + - uid: 30609 + components: + - type: Transform + pos: -143.5,11.5 + parent: 2 + - uid: 30640 + components: + - type: Transform + pos: -142.5,12.5 + parent: 2 + - uid: 30641 + components: + - type: Transform + pos: -142.5,15.5 + parent: 2 + - uid: 30684 + components: + - type: Transform + pos: -141.5,14.5 + parent: 2 + - uid: 30737 + components: + - type: Transform + pos: -140.5,11.5 + parent: 2 + - uid: 30788 + components: + - type: Transform + pos: -99.5,30.5 + parent: 2 + - uid: 30838 + components: + - type: Transform + pos: -87.5,22.5 + parent: 2 +- proto: WallRockGold + entities: + - uid: 805 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 74.5,25.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 +- proto: WallRockPlasma + entities: + - uid: 5549 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: 94.5,45.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: 95.5,45.5 + parent: 2 + - uid: 19221 + components: + - type: Transform + pos: 86.5,35.5 + parent: 2 + - uid: 19225 + components: + - type: Transform + pos: 96.5,45.5 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: 95.5,44.5 + parent: 2 +- proto: WallRockQuartz + entities: + - uid: 5420 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 +- proto: WallRockSand + entities: + - uid: 740 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -62.5,13.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -62.5,15.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -63.5,14.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -63.5,15.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -61.5,-12.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -69.5,-11.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: -55.5,-6.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: -61.5,14.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: -60.5,12.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: -61.5,16.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: -60.5,13.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: -60.5,17.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: -50.5,13.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: -45.5,13.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: -59.5,12.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: -61.5,12.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -59.5,15.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: -60.5,16.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: -59.5,14.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -56.5,17.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: -58.5,17.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: -62.5,-12.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -62.5,-11.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: -62.5,16.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 26316 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 26318 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 26322 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 26325 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 26360 + components: + - type: Transform + pos: -56.5,4.5 + parent: 2 + - uid: 26361 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 + - uid: 26362 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 26363 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - uid: 26365 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 26375 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 26381 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 26408 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 26411 + components: + - type: Transform + pos: -60.5,15.5 + parent: 2 + - uid: 26426 + components: + - type: Transform + pos: -61.5,15.5 + parent: 2 + - uid: 26444 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 26448 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 26493 + components: + - type: Transform + pos: -57.5,-9.5 + parent: 2 + - uid: 26497 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 26503 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 26504 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 26505 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 +- proto: WallRockSandGold + entities: + - uid: 778 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 26334 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - uid: 26446 + components: + - type: Transform + pos: -62.5,14.5 + parent: 2 +- proto: WallRockSandSilver + entities: + - uid: 744 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: -61.5,-13.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 +- proto: WallRockSandTin + entities: + - uid: 739 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: -59.5,17.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 26319 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 26364 + components: + - type: Transform + pos: -59.5,16.5 + parent: 2 + - uid: 26366 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 26372 + components: + - type: Transform + pos: -63.5,16.5 + parent: 2 + - uid: 26382 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 26389 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 + - uid: 26447 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 26472 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 +- proto: WallRockSilver + entities: + - uid: 5610 + components: + - type: Transform + pos: 66.5,25.5 + parent: 2 +- proto: WallRockSnow + entities: + - uid: 7866 + components: + - type: Transform + pos: 4.5,195.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: 6.5,195.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: 6.5,196.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: 5.5,195.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: -24.5,179.5 + parent: 2 + - uid: 16078 + components: + - type: Transform + pos: -27.5,187.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + pos: -28.5,182.5 + parent: 2 + - uid: 16080 + components: + - type: Transform + pos: -27.5,180.5 + parent: 2 + - uid: 16081 + components: + - type: Transform + pos: -28.5,181.5 + parent: 2 + - uid: 17125 + components: + - type: Transform + pos: -25.5,179.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + pos: -28.5,180.5 + parent: 2 + - uid: 17446 + components: + - type: Transform + pos: -28.5,183.5 + parent: 2 + - uid: 17447 + components: + - type: Transform + pos: -28.5,185.5 + parent: 2 + - uid: 17449 + components: + - type: Transform + pos: -28.5,186.5 + parent: 2 + - uid: 22535 + components: + - type: Transform + pos: -1.5,208.5 + parent: 2 + - uid: 22537 + components: + - type: Transform + pos: -0.5,207.5 + parent: 2 + - uid: 22538 + components: + - type: Transform + pos: 0.5,207.5 + parent: 2 + - uid: 22539 + components: + - type: Transform + pos: 4.5,203.5 + parent: 2 + - uid: 22541 + components: + - type: Transform + pos: 5.5,202.5 + parent: 2 + - uid: 22544 + components: + - type: Transform + pos: 6.5,200.5 + parent: 2 + - uid: 22545 + components: + - type: Transform + pos: 7.5,199.5 + parent: 2 + - uid: 22547 + components: + - type: Transform + pos: 6.5,198.5 + parent: 2 + - uid: 22557 + components: + - type: Transform + pos: 4.5,180.5 + parent: 2 + - uid: 22559 + components: + - type: Transform + pos: 3.5,179.5 + parent: 2 + - uid: 22561 + components: + - type: Transform + pos: 2.5,178.5 + parent: 2 + - uid: 22563 + components: + - type: Transform + pos: 1.5,177.5 + parent: 2 + - uid: 22565 + components: + - type: Transform + pos: 0.5,176.5 + parent: 2 + - uid: 22566 + components: + - type: Transform + pos: -0.5,176.5 + parent: 2 + - uid: 22575 + components: + - type: Transform + pos: -11.5,173.5 + parent: 2 + - uid: 22576 + components: + - type: Transform + pos: -14.5,174.5 + parent: 2 + - uid: 22577 + components: + - type: Transform + pos: -13.5,174.5 + parent: 2 + - uid: 22631 + components: + - type: Transform + pos: 6.5,201.5 + parent: 2 + - uid: 22982 + components: + - type: Transform + pos: -1.5,207.5 + parent: 2 + - uid: 23194 + components: + - type: Transform + pos: -22.5,179.5 + parent: 2 + - uid: 23473 + components: + - type: Transform + pos: -2.5,208.5 + parent: 2 + - uid: 23735 + components: + - type: Transform + pos: 1.5,176.5 + parent: 2 + - uid: 23757 + components: + - type: Transform + pos: 2.5,177.5 + parent: 2 + - uid: 23775 + components: + - type: Transform + pos: 3.5,178.5 + parent: 2 + - uid: 23854 + components: + - type: Transform + pos: 4.5,179.5 + parent: 2 + - uid: 24275 + components: + - type: Transform + pos: -28.5,184.5 + parent: 2 + - uid: 29515 + components: + - type: Transform + pos: -27.5,179.5 + parent: 2 + - uid: 30742 + components: + - type: Transform + pos: -26.5,179.5 + parent: 2 + - uid: 32136 + components: + - type: Transform + pos: -12.5,174.5 + parent: 2 + - uid: 34490 + components: + - type: Transform + pos: -28.5,187.5 + parent: 2 + - uid: 34491 + components: + - type: Transform + pos: -23.5,179.5 + parent: 2 + - uid: 34505 + components: + - type: Transform + pos: -27.5,188.5 + parent: 2 +- proto: WallRockTin + entities: + - uid: 13842 + components: + - type: Transform + pos: -57.5,111.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + pos: -58.5,116.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 1549 + components: + - type: Transform + pos: -58.5,-16.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 2 + - uid: 13388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 13386 + - uid: 13389 + components: + - type: Transform + pos: -4.5,1.5 + parent: 13386 + - uid: 13391 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 13386 + - uid: 13394 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 13386 + - uid: 13395 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 13386 + - uid: 13405 + components: + - type: Transform + pos: 2.5,2.5 + parent: 13386 + - uid: 13409 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 13386 + - uid: 13411 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 13386 + - uid: 13463 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 13386 + - uid: 13482 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 13386 + - uid: 13491 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 13386 + - uid: 13521 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 13386 + - uid: 13527 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 13386 + - uid: 13575 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 13386 + - uid: 13623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 13386 + - uid: 13628 + components: + - type: Transform + pos: 3.5,2.5 + parent: 13386 + - uid: 13703 + components: + - type: Transform + pos: -2.5,2.5 + parent: 13386 + - uid: 14769 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 13386 + - uid: 14776 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 13386 + - uid: 14777 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 13386 + - uid: 14778 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 13386 + - uid: 14783 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 13386 + - uid: 14784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 13386 + - uid: 14937 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 13386 + - uid: 15020 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 13386 + - uid: 15222 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 13386 + - uid: 15410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 13386 + - uid: 15487 + components: + - type: Transform + pos: -3.5,2.5 + parent: 13386 + - uid: 15673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 13386 + - uid: 15811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 13386 + - uid: 22090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 21114 + - uid: 22091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 21114 + - uid: 22092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 21114 + - uid: 22093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 21114 + - uid: 22094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 21114 + - uid: 22095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 21114 + - uid: 22097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 21114 + - uid: 22098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 21114 + - uid: 22099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 21114 + - uid: 22100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 21114 + - uid: 31029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 30902 + - uid: 31030 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 30902 + - uid: 31031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 30902 + - uid: 31032 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 30902 + - uid: 31033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 30902 + - uid: 31034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 30902 + - uid: 31035 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 30902 + - uid: 31036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 30902 + - uid: 31037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 30902 + - uid: 31038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 30902 + - uid: 31039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 30902 + - uid: 31040 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 30902 + - uid: 31041 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 30902 + - uid: 31042 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 30902 + - uid: 31043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 30902 + - uid: 31044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 30902 + - uid: 31046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 30902 + - uid: 31047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 30902 + - uid: 34564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 30902 + - uid: 34762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 21114 + - uid: 36723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 21114 + - uid: 36724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 21114 + - uid: 36729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 21114 + - uid: 37001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 36996 + - uid: 37002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 36996 + - uid: 37003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 36996 + - uid: 37004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 36996 + - uid: 37015 + components: + - type: Transform + pos: -2.5,0.5 + parent: 36996 + - uid: 37016 + components: + - type: Transform + pos: 3.5,0.5 + parent: 36996 + - uid: 37019 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 36996 + - uid: 37020 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 36996 + - uid: 37021 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 36996 + - uid: 37024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 36996 + - uid: 37029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 36996 + - uid: 37030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 36996 + - uid: 37031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 36996 + - uid: 37032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 36996 + - uid: 37034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 36996 + - uid: 37035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 36996 + - uid: 37036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 36996 + - uid: 37037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 36996 + - uid: 37038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 36996 + - uid: 37991 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 37842 + - uid: 37993 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 37842 + - uid: 37994 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 37842 + - uid: 37995 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 37842 + - uid: 37996 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 37842 + - uid: 37998 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 37842 + - uid: 38000 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 37842 + - uid: 38001 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 37842 + - uid: 38002 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 37842 + - uid: 38003 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 37842 + - uid: 38004 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 37842 + - uid: 38005 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 37842 + - uid: 38006 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 37842 +- proto: WallShuttleDiagonal + entities: + - uid: 1554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-14.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 13386 + - uid: 16133 + components: + - type: Transform + pos: -4.5,2.5 + parent: 13386 + - uid: 16134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 13386 + - uid: 22102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 21114 + - uid: 22103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 21114 + - uid: 22104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 21114 + - uid: 22105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 21114 + - uid: 22106 + components: + - type: Transform + pos: 1.5,5.5 + parent: 21114 + - uid: 22107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 21114 + - uid: 31049 + components: + - type: Transform + pos: -1.5,2.5 + parent: 30902 + - uid: 31050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 30902 + - uid: 36997 + components: + - type: Transform + pos: -1.5,3.5 + parent: 36996 + - uid: 36998 + components: + - type: Transform + pos: -2.5,2.5 + parent: 36996 + - uid: 36999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 36996 + - uid: 37000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 36996 + - uid: 37006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 36996 + - uid: 37007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 36996 + - uid: 37013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 36996 + - uid: 37014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 36996 + - uid: 37017 + components: + - type: Transform + pos: -3.5,0.5 + parent: 36996 + - uid: 37018 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 36996 + - uid: 37022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 36996 + - uid: 37023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 36996 + - uid: 38010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 37842 + - uid: 38011 + components: + - type: Transform + pos: -2.5,1.5 + parent: 37842 + - uid: 38012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 37842 + - uid: 38013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 37842 + - uid: 38014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 37842 + - uid: 38015 + components: + - type: Transform + pos: -1.5,3.5 + parent: 37842 + - uid: 38016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 37842 + - uid: 38017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 37842 +- proto: WallSilver + entities: + - uid: 9996 + components: + - type: Transform + pos: -22.5,189.5 + parent: 2 + - uid: 17557 + components: + - type: Transform + pos: -4.5,193.5 + parent: 2 + - uid: 18122 + components: + - type: Transform + pos: -4.5,189.5 + parent: 2 + - uid: 18139 + components: + - type: Transform + pos: -4.5,192.5 + parent: 2 + - uid: 18211 + components: + - type: Transform + pos: -4.5,191.5 + parent: 2 + - uid: 18291 + components: + - type: Transform + pos: -5.5,187.5 + parent: 2 + - uid: 18762 + components: + - type: Transform + pos: -9.5,187.5 + parent: 2 + - uid: 19063 + components: + - type: Transform + pos: -4.5,190.5 + parent: 2 + - uid: 22356 + components: + - type: Transform + pos: -1.5,201.5 + parent: 2 + - uid: 22406 + components: + - type: Transform + pos: 2.5,201.5 + parent: 2 + - uid: 22407 + components: + - type: Transform + pos: -0.5,201.5 + parent: 2 + - uid: 22411 + components: + - type: Transform + pos: -1.5,200.5 + parent: 2 + - uid: 22491 + components: + - type: Transform + pos: 1.5,181.5 + parent: 2 + - uid: 22492 + components: + - type: Transform + pos: 2.5,181.5 + parent: 2 + - uid: 22493 + components: + - type: Transform + pos: 3.5,181.5 + parent: 2 + - uid: 22494 + components: + - type: Transform + pos: 4.5,181.5 + parent: 2 + - uid: 22495 + components: + - type: Transform + pos: 5.5,181.5 + parent: 2 + - uid: 22496 + components: + - type: Transform + pos: 6.5,181.5 + parent: 2 + - uid: 22498 + components: + - type: Transform + pos: 1.5,182.5 + parent: 2 + - uid: 22530 + components: + - type: Transform + pos: 1.5,186.5 + parent: 2 + - uid: 22531 + components: + - type: Transform + pos: 1.5,187.5 + parent: 2 + - uid: 22540 + components: + - type: Transform + pos: 3.5,187.5 + parent: 2 + - uid: 22542 + components: + - type: Transform + pos: 4.5,187.5 + parent: 2 + - uid: 22546 + components: + - type: Transform + pos: 5.5,187.5 + parent: 2 + - uid: 22549 + components: + - type: Transform + pos: 6.5,187.5 + parent: 2 + - uid: 22580 + components: + - type: Transform + pos: 3.5,205.5 + parent: 2 + - uid: 22582 + components: + - type: Transform + pos: 3.5,206.5 + parent: 2 + - uid: 22613 + components: + - type: Transform + pos: 2.5,206.5 + parent: 2 + - uid: 22648 + components: + - type: Transform + pos: -10.5,184.5 + parent: 2 + - uid: 22649 + components: + - type: Transform + pos: -10.5,185.5 + parent: 2 + - uid: 22650 + components: + - type: Transform + pos: -10.5,186.5 + parent: 2 + - uid: 22651 + components: + - type: Transform + pos: -10.5,187.5 + parent: 2 + - uid: 22658 + components: + - type: Transform + pos: -10.5,189.5 + parent: 2 + - uid: 22660 + components: + - type: Transform + pos: -13.5,184.5 + parent: 2 + - uid: 22661 + components: + - type: Transform + pos: -13.5,185.5 + parent: 2 + - uid: 22662 + components: + - type: Transform + pos: -13.5,186.5 + parent: 2 + - uid: 22663 + components: + - type: Transform + pos: -14.5,186.5 + parent: 2 + - uid: 22664 + components: + - type: Transform + pos: -15.5,186.5 + parent: 2 + - uid: 22665 + components: + - type: Transform + pos: -16.5,186.5 + parent: 2 + - uid: 22666 + components: + - type: Transform + pos: -17.5,186.5 + parent: 2 + - uid: 22667 + components: + - type: Transform + pos: -17.5,187.5 + parent: 2 + - uid: 22668 + components: + - type: Transform + pos: -17.5,188.5 + parent: 2 + - uid: 22669 + components: + - type: Transform + pos: -17.5,189.5 + parent: 2 + - uid: 22670 + components: + - type: Transform + pos: -17.5,190.5 + parent: 2 + - uid: 22671 + components: + - type: Transform + pos: -10.5,190.5 + parent: 2 + - uid: 22676 + components: + - type: Transform + pos: -4.5,194.5 + parent: 2 + - uid: 22677 + components: + - type: Transform + pos: -4.5,195.5 + parent: 2 + - uid: 22678 + components: + - type: Transform + pos: -5.5,195.5 + parent: 2 + - uid: 22679 + components: + - type: Transform + pos: -6.5,195.5 + parent: 2 + - uid: 22680 + components: + - type: Transform + pos: -9.5,195.5 + parent: 2 + - uid: 22681 + components: + - type: Transform + pos: -10.5,195.5 + parent: 2 + - uid: 22682 + components: + - type: Transform + pos: -10.5,194.5 + parent: 2 + - uid: 22683 + components: + - type: Transform + pos: -10.5,193.5 + parent: 2 + - uid: 22685 + components: + - type: Transform + pos: -10.5,191.5 + parent: 2 + - uid: 22691 + components: + - type: Transform + pos: -4.5,199.5 + parent: 2 + - uid: 22707 + components: + - type: Transform + pos: 6.5,184.5 + parent: 2 + - uid: 22710 + components: + - type: Transform + pos: 6.5,183.5 + parent: 2 + - uid: 22711 + components: + - type: Transform + pos: 6.5,182.5 + parent: 2 + - uid: 22718 + components: + - type: Transform + pos: 6.5,185.5 + parent: 2 + - uid: 22719 + components: + - type: Transform + pos: 6.5,186.5 + parent: 2 + - uid: 22769 + components: + - type: Transform + pos: -17.5,191.5 + parent: 2 + - uid: 22771 + components: + - type: Transform + pos: -11.5,195.5 + parent: 2 + - uid: 22772 + components: + - type: Transform + pos: -12.5,195.5 + parent: 2 + - uid: 22773 + components: + - type: Transform + pos: -13.5,195.5 + parent: 2 + - uid: 22774 + components: + - type: Transform + pos: -14.5,195.5 + parent: 2 + - uid: 22775 + components: + - type: Transform + pos: -19.5,195.5 + parent: 2 + - uid: 22776 + components: + - type: Transform + pos: -16.5,195.5 + parent: 2 + - uid: 22777 + components: + - type: Transform + pos: -17.5,195.5 + parent: 2 + - uid: 22792 + components: + - type: Transform + pos: -20.5,195.5 + parent: 2 + - uid: 22793 + components: + - type: Transform + pos: -20.5,196.5 + parent: 2 + - uid: 22794 + components: + - type: Transform + pos: -20.5,197.5 + parent: 2 + - uid: 22795 + components: + - type: Transform + pos: -20.5,198.5 + parent: 2 + - uid: 22796 + components: + - type: Transform + pos: -19.5,198.5 + parent: 2 + - uid: 22797 + components: + - type: Transform + pos: -18.5,198.5 + parent: 2 + - uid: 22798 + components: + - type: Transform + pos: -17.5,198.5 + parent: 2 + - uid: 22799 + components: + - type: Transform + pos: -16.5,198.5 + parent: 2 + - uid: 22800 + components: + - type: Transform + pos: -15.5,198.5 + parent: 2 + - uid: 22801 + components: + - type: Transform + pos: -14.5,198.5 + parent: 2 + - uid: 22802 + components: + - type: Transform + pos: -13.5,198.5 + parent: 2 + - uid: 22803 + components: + - type: Transform + pos: -21.5,195.5 + parent: 2 + - uid: 22804 + components: + - type: Transform + pos: -22.5,195.5 + parent: 2 + - uid: 22805 + components: + - type: Transform + pos: -23.5,195.5 + parent: 2 + - uid: 22806 + components: + - type: Transform + pos: -24.5,195.5 + parent: 2 + - uid: 22807 + components: + - type: Transform + pos: -25.5,195.5 + parent: 2 + - uid: 22808 + components: + - type: Transform + pos: -25.5,194.5 + parent: 2 + - uid: 22809 + components: + - type: Transform + pos: -25.5,193.5 + parent: 2 + - uid: 22810 + components: + - type: Transform + pos: -25.5,192.5 + parent: 2 + - uid: 22811 + components: + - type: Transform + pos: -25.5,191.5 + parent: 2 + - uid: 22812 + components: + - type: Transform + pos: -25.5,190.5 + parent: 2 + - uid: 22814 + components: + - type: Transform + pos: -24.5,189.5 + parent: 2 + - uid: 22815 + components: + - type: Transform + pos: -21.5,189.5 + parent: 2 + - uid: 22816 + components: + - type: Transform + pos: -21.5,190.5 + parent: 2 + - uid: 22859 + components: + - type: Transform + pos: -4.5,187.5 + parent: 2 + - uid: 22860 + components: + - type: Transform + pos: -4.5,188.5 + parent: 2 + - uid: 22890 + components: + - type: Transform + pos: -4.5,196.5 + parent: 2 + - uid: 22893 + components: + - type: Transform + pos: -4.5,200.5 + parent: 2 + - uid: 22894 + components: + - type: Transform + pos: -5.5,200.5 + parent: 2 + - uid: 22898 + components: + - type: Transform + pos: -9.5,200.5 + parent: 2 + - uid: 22899 + components: + - type: Transform + pos: -10.5,200.5 + parent: 2 + - uid: 22900 + components: + - type: Transform + pos: -10.5,199.5 + parent: 2 + - uid: 22901 + components: + - type: Transform + pos: -10.5,198.5 + parent: 2 + - uid: 22902 + components: + - type: Transform + pos: -13.5,199.5 + parent: 2 + - uid: 22924 + components: + - type: Transform + pos: -1.5,196.5 + parent: 2 + - uid: 22925 + components: + - type: Transform + pos: -1.5,195.5 + parent: 2 + - uid: 22926 + components: + - type: Transform + pos: -0.5,195.5 + parent: 2 + - uid: 22929 + components: + - type: Transform + pos: 2.5,195.5 + parent: 2 + - uid: 22930 + components: + - type: Transform + pos: 3.5,195.5 + parent: 2 + - uid: 22931 + components: + - type: Transform + pos: 3.5,196.5 + parent: 2 + - uid: 22932 + components: + - type: Transform + pos: 3.5,197.5 + parent: 2 + - uid: 22933 + components: + - type: Transform + pos: 3.5,198.5 + parent: 2 + - uid: 22934 + components: + - type: Transform + pos: 3.5,199.5 + parent: 2 + - uid: 22935 + components: + - type: Transform + pos: 3.5,200.5 + parent: 2 + - uid: 22936 + components: + - type: Transform + pos: 3.5,201.5 + parent: 2 + - uid: 22937 + components: + - type: Transform + pos: 3.5,202.5 + parent: 2 + - uid: 22938 + components: + - type: Transform + pos: 3.5,203.5 + parent: 2 + - uid: 22939 + components: + - type: Transform + pos: 3.5,204.5 + parent: 2 + - uid: 22940 + components: + - type: Transform + pos: 1.5,206.5 + parent: 2 + - uid: 22941 + components: + - type: Transform + pos: 0.5,206.5 + parent: 2 + - uid: 22942 + components: + - type: Transform + pos: -0.5,206.5 + parent: 2 + - uid: 22943 + components: + - type: Transform + pos: -1.5,206.5 + parent: 2 + - uid: 22946 + components: + - type: Transform + pos: -1.5,202.5 + parent: 2 + - uid: 22951 + components: + - type: Transform + pos: -1.5,205.5 + parent: 2 + - uid: 23371 + components: + - type: Transform + pos: -25.5,189.5 + parent: 2 + - uid: 23425 + components: + - type: Transform + pos: -2.5,202.5 + parent: 2 + - uid: 23426 + components: + - type: Transform + pos: -2.5,205.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 78 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,173.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: -67.5,72.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: 56.5,38.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 56.5,42.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 56.5,43.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: 56.5,44.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: 55.5,44.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: 53.5,44.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: 59.5,40.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: 90.5,60.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: 89.5,60.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: 88.5,60.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: 87.5,60.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 86.5,60.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: 86.5,59.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: 86.5,58.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: 86.5,57.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: 86.5,56.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: 86.5,55.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: 86.5,54.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: 86.5,53.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: 86.5,52.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: 86.5,50.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 86.5,49.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: 86.5,48.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 86.5,47.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: 86.5,46.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: 86.5,44.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: 86.5,43.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: 86.5,42.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: 86.5,41.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: 85.5,41.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: 83.5,44.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 85.5,49.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: 84.5,53.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: 85.5,57.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: -79.5,79.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: -66.5,70.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: -81.5,87.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: -49.5,68.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: -67.5,70.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: 83.5,46.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,204.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,203.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,203.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,203.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: -82.5,92.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: -88.5,85.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: -87.5,85.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: -81.5,82.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: -81.5,81.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: -81.5,92.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: -81.5,85.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: -81.5,84.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: -83.5,85.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,204.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,204.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,204.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: -81.5,91.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: -68.5,108.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + pos: -81.5,90.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: -59.5,104.5 + parent: 2 + - uid: 8737 + components: + - type: Transform + pos: -81.5,86.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: -60.5,104.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: -6.5,173.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: -6.5,172.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + pos: -33.5,70.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + pos: -26.5,207.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: -67.5,108.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + pos: -69.5,108.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + pos: -70.5,108.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + pos: -61.5,107.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: -61.5,105.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + pos: -55.5,74.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: -55.5,77.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + pos: -61.5,112.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + pos: -27.5,207.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: -28.5,207.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: -27.5,206.5 + parent: 2 + - uid: 10470 + components: + - type: Transform + pos: -25.5,207.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + pos: 19.5,177.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: -7.5,83.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: -4.5,83.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + pos: -3.5,83.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + pos: -2.5,83.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + pos: -1.5,83.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + pos: -0.5,83.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + pos: 0.5,83.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + pos: 1.5,83.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: 1.5,84.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + pos: 1.5,85.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 1.5,86.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + pos: 1.5,87.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + pos: 0.5,87.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + pos: -0.5,87.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: -1.5,87.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: -2.5,87.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + pos: -3.5,87.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: -4.5,87.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: -5.5,87.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: -7.5,87.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + pos: -8.5,87.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + pos: -8.5,86.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + pos: -4.5,82.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: 1.5,80.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + pos: 1.5,81.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: 1.5,82.5 + parent: 2 + - uid: 10825 + components: + - type: Transform + pos: -12.5,88.5 + parent: 2 + - uid: 10834 + components: + - type: Transform + pos: 19.5,178.5 + parent: 2 + - uid: 10956 + components: + - type: Transform + pos: -12.5,70.5 + parent: 2 + - uid: 10964 + components: + - type: Transform + pos: -4.5,70.5 + parent: 2 + - uid: 10966 + components: + - type: Transform + pos: -19.5,71.5 + parent: 2 + - uid: 10968 + components: + - type: Transform + pos: -20.5,72.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + pos: -12.5,62.5 + parent: 2 + - uid: 10973 + components: + - type: Transform + pos: -24.5,72.5 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: -25.5,72.5 + parent: 2 + - uid: 10975 + components: + - type: Transform + pos: -26.5,72.5 + parent: 2 + - uid: 10976 + components: + - type: Transform + pos: -27.5,72.5 + parent: 2 + - uid: 10977 + components: + - type: Transform + pos: -25.5,73.5 + parent: 2 + - uid: 10978 + components: + - type: Transform + pos: -25.5,74.5 + parent: 2 + - uid: 10979 + components: + - type: Transform + pos: -25.5,75.5 + parent: 2 + - uid: 10980 + components: + - type: Transform + pos: -25.5,77.5 + parent: 2 + - uid: 10981 + components: + - type: Transform + pos: -25.5,78.5 + parent: 2 + - uid: 10982 + components: + - type: Transform + pos: -25.5,79.5 + parent: 2 + - uid: 10983 + components: + - type: Transform + pos: -25.5,80.5 + parent: 2 + - uid: 10984 + components: + - type: Transform + pos: -25.5,81.5 + parent: 2 + - uid: 10985 + components: + - type: Transform + pos: -25.5,82.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + pos: -25.5,83.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + pos: -25.5,84.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + pos: -25.5,85.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + pos: -25.5,86.5 + parent: 2 + - uid: 10990 + components: + - type: Transform + pos: -25.5,87.5 + parent: 2 + - uid: 10991 + components: + - type: Transform + pos: -25.5,88.5 + parent: 2 + - uid: 10992 + components: + - type: Transform + pos: -26.5,88.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + pos: -26.5,84.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + pos: -12.5,64.5 + parent: 2 + - uid: 11008 + components: + - type: Transform + pos: -12.5,61.5 + parent: 2 + - uid: 11013 + components: + - type: Transform + pos: -19.5,72.5 + parent: 2 + - uid: 11026 + components: + - type: Transform + pos: -3.5,70.5 + parent: 2 + - uid: 11034 + components: + - type: Transform + pos: -66.5,104.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + pos: -29.5,64.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + pos: -1.5,70.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + pos: -52.5,68.5 + parent: 2 + - uid: 11062 + components: + - type: Transform + pos: -52.5,67.5 + parent: 2 + - uid: 11067 + components: + - type: Transform + pos: -34.5,58.5 + parent: 2 + - uid: 11069 + components: + - type: Transform + pos: -52.5,71.5 + parent: 2 + - uid: 11080 + components: + - type: Transform + pos: -18.5,172.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + pos: -9.5,64.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + pos: -34.5,59.5 + parent: 2 + - uid: 11095 + components: + - type: Transform + pos: -11.5,64.5 + parent: 2 + - uid: 11096 + components: + - type: Transform + pos: -22.5,64.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + pos: -21.5,64.5 + parent: 2 + - uid: 11120 + components: + - type: Transform + pos: -12.5,65.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + pos: -79.5,89.5 + parent: 2 + - uid: 11125 + components: + - type: Transform + pos: -18.5,64.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + pos: -52.5,70.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: -52.5,69.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + pos: -12.5,72.5 + parent: 2 + - uid: 11142 + components: + - type: Transform + pos: -12.5,71.5 + parent: 2 + - uid: 11152 + components: + - type: Transform + pos: -39.5,61.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: -28.5,72.5 + parent: 2 + - uid: 11166 + components: + - type: Transform + pos: -29.5,72.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: -30.5,72.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: -31.5,72.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: -32.5,72.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: -32.5,71.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: -32.5,70.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: -32.5,68.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: -32.5,64.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: -34.5,61.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + pos: -34.5,63.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + pos: -34.5,64.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: -33.5,64.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + pos: -10.5,64.5 + parent: 2 + - uid: 11226 + components: + - type: Transform + pos: -11.5,70.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: -34.5,73.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + pos: -45.5,64.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + pos: -23.5,64.5 + parent: 2 + - uid: 11712 + components: + - type: Transform + pos: -8.5,64.5 + parent: 2 + - uid: 11714 + components: + - type: Transform + pos: -44.5,70.5 + parent: 2 + - uid: 11715 + components: + - type: Transform + pos: -46.5,73.5 + parent: 2 + - uid: 11716 + components: + - type: Transform + pos: -46.5,72.5 + parent: 2 + - uid: 11717 + components: + - type: Transform + pos: -45.5,71.5 + parent: 2 + - uid: 11718 + components: + - type: Transform + pos: -36.5,70.5 + parent: 2 + - uid: 11719 + components: + - type: Transform + pos: -35.5,71.5 + parent: 2 + - uid: 11720 + components: + - type: Transform + pos: -34.5,72.5 + parent: 2 + - uid: 11721 + components: + - type: Transform + pos: -48.5,63.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + pos: -48.5,64.5 + parent: 2 + - uid: 11723 + components: + - type: Transform + pos: -2.5,211.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + pos: -19.5,64.5 + parent: 2 + - uid: 11739 + components: + - type: Transform + pos: -37.5,63.5 + parent: 2 + - uid: 11742 + components: + - type: Transform + pos: -34.5,57.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + pos: -35.5,64.5 + parent: 2 + - uid: 11913 + components: + - type: Transform + pos: -29.5,207.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: -30.5,207.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: -7.5,63.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + pos: -63.5,65.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: -63.5,66.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + pos: -63.5,67.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + pos: -63.5,68.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: -63.5,69.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: -63.5,70.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + pos: -63.5,71.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + pos: -63.5,72.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + pos: -62.5,72.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + pos: -61.5,72.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + pos: -57.5,72.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + pos: -56.5,72.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + pos: -55.5,72.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + pos: -55.5,71.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + pos: -55.5,70.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + pos: -51.5,62.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + pos: -55.5,67.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + pos: -55.5,66.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + pos: -55.5,65.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + pos: -55.5,64.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + pos: -55.5,63.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + pos: -55.5,68.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + pos: -51.5,63.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: -51.5,64.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + pos: -51.5,65.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: -52.5,65.5 + parent: 2 + - uid: 12113 + components: + - type: Transform + pos: -53.5,65.5 + parent: 2 + - uid: 12118 + components: + - type: Transform + pos: -7.5,64.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + pos: -51.5,72.5 + parent: 2 + - uid: 12120 + components: + - type: Transform + pos: -52.5,72.5 + parent: 2 + - uid: 12121 + components: + - type: Transform + pos: -53.5,72.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + pos: -54.5,72.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + pos: -35.5,61.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + pos: -36.5,61.5 + parent: 2 + - uid: 12159 + components: + - type: Transform + pos: -38.5,61.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + pos: -37.5,61.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + pos: -50.5,68.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: -48.5,70.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: -34.5,60.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: -6.5,171.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + pos: -0.5,173.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + pos: -6.5,167.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + pos: -6.5,165.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + pos: -0.5,208.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: 0.5,208.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + pos: 1.5,208.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + pos: -0.5,209.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + pos: -1.5,209.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + pos: -2.5,209.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + pos: -5.5,211.5 + parent: 2 + - uid: 12505 + components: + - type: Transform + pos: -6.5,211.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + pos: -7.5,211.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + pos: -8.5,211.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + pos: -9.5,211.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + pos: -10.5,211.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + pos: -11.5,211.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + pos: -12.5,211.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + pos: -14.5,210.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + pos: -15.5,210.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + pos: -15.5,209.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: -16.5,209.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + pos: -17.5,209.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + pos: -22.5,198.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: -22.5,197.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: -23.5,197.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + pos: -24.5,197.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: -25.5,197.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + pos: -26.5,197.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + pos: -28.5,194.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + pos: -18.5,175.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + pos: -19.5,175.5 + parent: 2 + - uid: 12555 + components: + - type: Transform + pos: -17.5,175.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + pos: -17.5,174.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + pos: -16.5,174.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + pos: -15.5,174.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + pos: -15.5,173.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + pos: -14.5,173.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + pos: -13.5,173.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + pos: -12.5,173.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: -7.5,172.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + pos: -5.5,173.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + pos: -4.5,173.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + pos: -3.5,173.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + pos: -2.5,173.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + pos: -0.5,175.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + pos: 0.5,175.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + pos: 1.5,175.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + pos: 2.5,176.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + pos: 3.5,177.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 4.5,178.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + pos: 5.5,179.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + pos: 5.5,180.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: 6.5,180.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: 7.5,181.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + pos: 7.5,202.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + pos: 6.5,202.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + pos: 6.5,203.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + pos: 5.5,203.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + pos: 5.5,204.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + pos: 4.5,204.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + pos: 4.5,205.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + pos: 2.5,207.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + pos: 1.5,207.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + pos: -30.5,197.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + pos: -4.5,210.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + pos: -5.5,210.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + pos: -12.5,210.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + pos: -13.5,210.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + pos: -27.5,199.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + pos: -27.5,202.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + pos: -27.5,198.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + pos: -22.5,178.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + pos: -20.5,175.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + pos: -21.5,175.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: -22.5,175.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + pos: -22.5,177.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + pos: -22.5,176.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: 58.5,42.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: -1.5,69.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + pos: -32.5,67.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + pos: -32.5,65.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + pos: -30.5,64.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + pos: -1.5,67.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + pos: -1.5,66.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: -0.5,70.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + pos: 0.5,70.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: 2.5,67.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: 2.5,68.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: 2.5,69.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: 2.5,70.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + pos: -60.5,108.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + pos: -54.5,82.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: 3.5,70.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: 4.5,70.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: -57.5,92.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: -60.5,96.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: -58.5,92.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: -60.5,92.5 + parent: 2 + - uid: 13561 + components: + - type: Transform + pos: -60.5,93.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: -60.5,95.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: -48.5,71.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: -48.5,72.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + pos: -49.5,72.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: -58.5,96.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + pos: -59.5,96.5 + parent: 2 + - uid: 13751 + components: + - type: Transform + pos: -61.5,96.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: -61.5,97.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: -61.5,99.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: -61.5,100.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: -59.5,100.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: -60.5,100.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: -62.5,100.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: -62.5,101.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: -62.5,103.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: -62.5,104.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: -61.5,104.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + pos: -60.5,112.5 + parent: 2 + - uid: 13789 + components: + - type: Transform + pos: -61.5,108.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + pos: -65.5,108.5 + parent: 2 + - uid: 13800 + components: + - type: Transform + pos: -61.5,110.5 + parent: 2 + - uid: 13827 + components: + - type: Transform + pos: -66.5,108.5 + parent: 2 + - uid: 13828 + components: + - type: Transform + pos: -66.5,107.5 + parent: 2 + - uid: 13829 + components: + - type: Transform + pos: -70.5,107.5 + parent: 2 + - uid: 13830 + components: + - type: Transform + pos: -70.5,106.5 + parent: 2 + - uid: 13831 + components: + - type: Transform + pos: -70.5,105.5 + parent: 2 + - uid: 13832 + components: + - type: Transform + pos: -70.5,104.5 + parent: 2 + - uid: 13834 + components: + - type: Transform + pos: -66.5,105.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + pos: -67.5,104.5 + parent: 2 + - uid: 13836 + components: + - type: Transform + pos: -68.5,104.5 + parent: 2 + - uid: 13837 + components: + - type: Transform + pos: -69.5,104.5 + parent: 2 + - uid: 13838 + components: + - type: Transform + pos: -70.5,103.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + pos: -70.5,102.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + pos: -70.5,101.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + pos: -70.5,100.5 + parent: 2 + - uid: 13843 + components: + - type: Transform + pos: -71.5,101.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + pos: -72.5,101.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + pos: -73.5,101.5 + parent: 2 + - uid: 13846 + components: + - type: Transform + pos: -74.5,101.5 + parent: 2 + - uid: 13847 + components: + - type: Transform + pos: -75.5,101.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: -74.5,100.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + pos: -74.5,99.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + pos: -74.5,98.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + pos: -75.5,97.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + pos: -74.5,97.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + pos: -73.5,97.5 + parent: 2 + - uid: 13860 + components: + - type: Transform + pos: -72.5,97.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + pos: -71.5,97.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + pos: -70.5,97.5 + parent: 2 + - uid: 13863 + components: + - type: Transform + pos: -70.5,98.5 + parent: 2 + - uid: 13864 + components: + - type: Transform + pos: -69.5,97.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + pos: -69.5,96.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: -69.5,93.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: -68.5,93.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + pos: -68.5,92.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + pos: -70.5,93.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + pos: -71.5,93.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + pos: -72.5,93.5 + parent: 2 + - uid: 13873 + components: + - type: Transform + pos: -69.5,94.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + pos: -72.5,92.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: -72.5,91.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + pos: -76.5,90.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: -79.5,91.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + pos: -79.5,92.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + pos: -79.5,93.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + pos: -79.5,94.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + pos: -79.5,96.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + pos: -79.5,97.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + pos: -79.5,95.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + pos: -80.5,97.5 + parent: 2 + - uid: 13894 + components: + - type: Transform + pos: -55.5,73.5 + parent: 2 + - uid: 13902 + components: + - type: Transform + pos: -81.5,94.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + pos: -78.5,97.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + pos: -61.5,92.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + pos: -62.5,92.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + pos: -62.5,80.5 + parent: 2 + - uid: 13939 + components: + - type: Transform + pos: -61.5,114.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + pos: -60.5,114.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: -59.5,88.5 + parent: 2 + - uid: 13953 + components: + - type: Transform + pos: -60.5,88.5 + parent: 2 + - uid: 13954 + components: + - type: Transform + pos: -61.5,88.5 + parent: 2 + - uid: 13955 + components: + - type: Transform + pos: -62.5,88.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + pos: -63.5,88.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + pos: -64.5,88.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + pos: -65.5,88.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: -66.5,88.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + pos: -67.5,88.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + pos: -68.5,88.5 + parent: 2 + - uid: 13962 + components: + - type: Transform + pos: -68.5,89.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: -68.5,90.5 + parent: 2 + - uid: 13964 + components: + - type: Transform + pos: -69.5,89.5 + parent: 2 + - uid: 13965 + components: + - type: Transform + pos: -71.5,89.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + pos: -72.5,89.5 + parent: 2 + - uid: 13967 + components: + - type: Transform + pos: -72.5,90.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: -62.5,84.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: -55.5,76.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + pos: -67.5,68.5 + parent: 2 + - uid: 14228 + components: + - type: Transform + pos: -27.5,77.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + pos: -81.5,97.5 + parent: 2 + - uid: 14337 + components: + - type: Transform + pos: -67.5,65.5 + parent: 2 + - uid: 14364 + components: + - type: Transform + pos: -77.5,90.5 + parent: 2 + - uid: 14396 + components: + - type: Transform + pos: -59.5,87.5 + parent: 2 + - uid: 14397 + components: + - type: Transform + pos: -59.5,86.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + pos: -59.5,84.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: -59.5,80.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + pos: -59.5,79.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: -59.5,78.5 + parent: 2 + - uid: 14404 + components: + - type: Transform + pos: -59.5,77.5 + parent: 2 + - uid: 14405 + components: + - type: Transform + pos: -59.5,76.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: -60.5,76.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: -61.5,76.5 + parent: 2 + - uid: 14408 + components: + - type: Transform + pos: -62.5,76.5 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: -63.5,76.5 + parent: 2 + - uid: 14410 + components: + - type: Transform + pos: -64.5,76.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + pos: -65.5,76.5 + parent: 2 + - uid: 14412 + components: + - type: Transform + pos: -66.5,76.5 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: -67.5,76.5 + parent: 2 + - uid: 14414 + components: + - type: Transform + pos: -67.5,77.5 + parent: 2 + - uid: 14415 + components: + - type: Transform + pos: -67.5,78.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + pos: -67.5,79.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + pos: -67.5,80.5 + parent: 2 + - uid: 14419 + components: + - type: Transform + pos: -67.5,83.5 + parent: 2 + - uid: 14420 + components: + - type: Transform + pos: -67.5,84.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + pos: -67.5,85.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + pos: -67.5,86.5 + parent: 2 + - uid: 14423 + components: + - type: Transform + pos: -68.5,86.5 + parent: 2 + - uid: 14424 + components: + - type: Transform + pos: -68.5,80.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + pos: -69.5,80.5 + parent: 2 + - uid: 14426 + components: + - type: Transform + pos: -70.5,80.5 + parent: 2 + - uid: 14427 + components: + - type: Transform + pos: -71.5,80.5 + parent: 2 + - uid: 14428 + components: + - type: Transform + pos: -71.5,81.5 + parent: 2 + - uid: 14429 + components: + - type: Transform + pos: -71.5,82.5 + parent: 2 + - uid: 14432 + components: + - type: Transform + pos: -70.5,84.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + pos: -69.5,84.5 + parent: 2 + - uid: 14434 + components: + - type: Transform + pos: -68.5,84.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + pos: -59.5,85.5 + parent: 2 + - uid: 14577 + components: + - type: Transform + pos: -79.5,80.5 + parent: 2 + - uid: 14578 + components: + - type: Transform + pos: -79.5,81.5 + parent: 2 + - uid: 14579 + components: + - type: Transform + pos: -79.5,82.5 + parent: 2 + - uid: 14580 + components: + - type: Transform + pos: -79.5,86.5 + parent: 2 + - uid: 14581 + components: + - type: Transform + pos: -79.5,85.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + pos: -79.5,84.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + pos: -79.5,83.5 + parent: 2 + - uid: 14585 + components: + - type: Transform + pos: -78.5,87.5 + parent: 2 + - uid: 14586 + components: + - type: Transform + pos: -77.5,87.5 + parent: 2 + - uid: 14587 + components: + - type: Transform + pos: -76.5,87.5 + parent: 2 + - uid: 14588 + components: + - type: Transform + pos: -75.5,87.5 + parent: 2 + - uid: 14589 + components: + - type: Transform + pos: -74.5,87.5 + parent: 2 + - uid: 14590 + components: + - type: Transform + pos: -73.5,87.5 + parent: 2 + - uid: 14591 + components: + - type: Transform + pos: -72.5,87.5 + parent: 2 + - uid: 14592 + components: + - type: Transform + pos: -71.5,87.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + pos: -71.5,86.5 + parent: 2 + - uid: 14594 + components: + - type: Transform + pos: -71.5,85.5 + parent: 2 + - uid: 14595 + components: + - type: Transform + pos: -70.5,86.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + pos: -79.5,77.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + pos: -79.5,76.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + pos: -79.5,75.5 + parent: 2 + - uid: 14601 + components: + - type: Transform + pos: -79.5,74.5 + parent: 2 + - uid: 14602 + components: + - type: Transform + pos: -79.5,73.5 + parent: 2 + - uid: 14603 + components: + - type: Transform + pos: -79.5,72.5 + parent: 2 + - uid: 14604 + components: + - type: Transform + pos: -78.5,72.5 + parent: 2 + - uid: 14605 + components: + - type: Transform + pos: -77.5,72.5 + parent: 2 + - uid: 14606 + components: + - type: Transform + pos: -76.5,72.5 + parent: 2 + - uid: 14607 + components: + - type: Transform + pos: -75.5,72.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + pos: -74.5,72.5 + parent: 2 + - uid: 14609 + components: + - type: Transform + pos: -72.5,72.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + pos: -73.5,72.5 + parent: 2 + - uid: 14611 + components: + - type: Transform + pos: -71.5,72.5 + parent: 2 + - uid: 14612 + components: + - type: Transform + pos: -71.5,73.5 + parent: 2 + - uid: 14614 + components: + - type: Transform + pos: -70.5,72.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: -71.5,75.5 + parent: 2 + - uid: 14617 + components: + - type: Transform + pos: -71.5,76.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: -72.5,76.5 + parent: 2 + - uid: 14624 + components: + - type: Transform + pos: -78.5,76.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + pos: -68.5,76.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + pos: -70.5,76.5 + parent: 2 + - uid: 14634 + components: + - type: Transform + pos: -71.5,83.5 + parent: 2 + - uid: 14636 + components: + - type: Transform + pos: -71.5,84.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + pos: 86.5,45.5 + parent: 2 + - uid: 14761 + components: + - type: Transform + pos: -79.5,90.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: -74.5,90.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + pos: -116.5,96.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + pos: -120.5,92.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: -75.5,90.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + pos: -54.5,80.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + pos: -54.5,81.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + pos: -54.5,79.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + pos: -55.5,82.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + pos: -55.5,83.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + pos: -55.5,84.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: -55.5,85.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: -55.5,86.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + pos: -55.5,87.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + pos: -55.5,88.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + pos: -54.5,88.5 + parent: 2 + - uid: 14950 + components: + - type: Transform + pos: -41.5,61.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + pos: -42.5,61.5 + parent: 2 + - uid: 14952 + components: + - type: Transform + pos: -43.5,61.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + pos: -43.5,60.5 + parent: 2 + - uid: 14954 + components: + - type: Transform + pos: -45.5,62.5 + parent: 2 + - uid: 14955 + components: + - type: Transform + pos: -45.5,63.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + pos: -48.5,62.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + pos: -60.5,110.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + pos: -35.5,72.5 + parent: 2 + - uid: 15388 + components: + - type: Transform + pos: -44.5,71.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: -71.5,66.5 + parent: 2 + - uid: 15390 + components: + - type: Transform + pos: -71.5,65.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + pos: -71.5,68.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + pos: -71.5,69.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + pos: -71.5,67.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + pos: -72.5,69.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + pos: -54.5,78.5 + parent: 2 + - uid: 15402 + components: + - type: Transform + pos: -55.5,78.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + pos: 82.5,42.5 + parent: 2 + - uid: 15426 + components: + - type: Transform + pos: 83.5,42.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: 83.5,41.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + pos: -35.5,65.5 + parent: 2 + - uid: 15478 + components: + - type: Transform + pos: -35.5,66.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: -35.5,67.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: -35.5,68.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: -34.5,68.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: -23.5,178.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + pos: -45.5,72.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: -36.5,71.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + pos: -40.5,175.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: -38.5,175.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: -37.5,175.5 + parent: 2 + - uid: 15978 + components: + - type: Transform + pos: -126.5,90.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + pos: -25.5,178.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + pos: -27.5,178.5 + parent: 2 + - uid: 16481 + components: + - type: Transform + pos: -125.5,90.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + pos: -29.5,180.5 + parent: 2 + - uid: 16895 + components: + - type: Transform + pos: -29.5,182.5 + parent: 2 + - uid: 16904 + components: + - type: Transform + pos: -29.5,185.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: -29.5,186.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + pos: -26.5,178.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - uid: 17243 + components: + - type: Transform + pos: -24.5,178.5 + parent: 2 + - uid: 17360 + components: + - type: Transform + pos: -62.5,108.5 + parent: 2 + - uid: 17368 + components: + - type: Transform + pos: -29.5,184.5 + parent: 2 + - uid: 17369 + components: + - type: Transform + pos: -29.5,183.5 + parent: 2 + - uid: 17425 + components: + - type: Transform + pos: -29.5,179.5 + parent: 2 + - uid: 17433 + components: + - type: Transform + pos: -29.5,181.5 + parent: 2 + - uid: 17458 + components: + - type: Transform + pos: -29.5,187.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + pos: -123.5,101.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: -121.5,101.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: -125.5,93.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + pos: -124.5,93.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + pos: -126.5,103.5 + parent: 2 + - uid: 17958 + components: + - type: Transform + pos: -126.5,94.5 + parent: 2 + - uid: 17962 + components: + - type: Transform + pos: -120.5,91.5 + parent: 2 + - uid: 18013 + components: + - type: Transform + pos: -120.5,101.5 + parent: 2 + - uid: 18017 + components: + - type: Transform + pos: -126.5,93.5 + parent: 2 + - uid: 18029 + components: + - type: Transform + pos: -126.5,95.5 + parent: 2 + - uid: 18120 + components: + - type: Transform + pos: -59.5,92.5 + parent: 2 + - uid: 18179 + components: + - type: Transform + pos: -126.5,100.5 + parent: 2 + - uid: 18188 + components: + - type: Transform + pos: -125.5,101.5 + parent: 2 + - uid: 18217 + components: + - type: Transform + pos: -6.5,168.5 + parent: 2 + - uid: 18234 + components: + - type: Transform + pos: -6.5,169.5 + parent: 2 + - uid: 18239 + components: + - type: Transform + pos: -27.5,200.5 + parent: 2 + - uid: 18261 + components: + - type: Transform + pos: -126.5,99.5 + parent: 2 + - uid: 18329 + components: + - type: Transform + pos: -18.5,204.5 + parent: 2 + - uid: 18348 + components: + - type: Transform + pos: -126.5,101.5 + parent: 2 + - uid: 18350 + components: + - type: Transform + pos: -12.5,206.5 + parent: 2 + - uid: 18355 + components: + - type: Transform + pos: -11.5,206.5 + parent: 2 + - uid: 18377 + components: + - type: Transform + pos: -12.5,203.5 + parent: 2 + - uid: 18389 + components: + - type: Transform + pos: -4.5,209.5 + parent: 2 + - uid: 18391 + components: + - type: Transform + pos: -22.5,202.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + pos: -4.5,208.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + pos: -4.5,207.5 + parent: 2 + - uid: 18395 + components: + - type: Transform + pos: -4.5,206.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + pos: -5.5,206.5 + parent: 2 + - uid: 18397 + components: + - type: Transform + pos: -6.5,206.5 + parent: 2 + - uid: 18401 + components: + - type: Transform + pos: -13.5,209.5 + parent: 2 + - uid: 18405 + components: + - type: Transform + pos: -27.5,204.5 + parent: 2 + - uid: 18406 + components: + - type: Transform + pos: -27.5,197.5 + parent: 2 + - uid: 18424 + components: + - type: Transform + pos: -27.5,203.5 + parent: 2 + - uid: 18425 + components: + - type: Transform + pos: 1.5,209.5 + parent: 2 + - uid: 18430 + components: + - type: Transform + pos: 5.5,206.5 + parent: 2 + - uid: 18434 + components: + - type: Transform + pos: 3.5,207.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: 4.5,207.5 + parent: 2 + - uid: 18439 + components: + - type: Transform + pos: 4.5,206.5 + parent: 2 + - uid: 18452 + components: + - type: Transform + pos: -28.5,197.5 + parent: 2 + - uid: 18471 + components: + - type: Transform + pos: -124.5,101.5 + parent: 2 + - uid: 18488 + components: + - type: Transform + pos: -127.5,90.5 + parent: 2 + - uid: 18530 + components: + - type: Transform + pos: -27.5,194.5 + parent: 2 + - uid: 18555 + components: + - type: Transform + pos: -27.5,196.5 + parent: 2 + - uid: 18556 + components: + - type: Transform + pos: -27.5,195.5 + parent: 2 + - uid: 18601 + components: + - type: Transform + pos: -113.5,100.5 + parent: 2 + - uid: 18603 + components: + - type: Transform + pos: -126.5,91.5 + parent: 2 + - uid: 18662 + components: + - type: Transform + pos: -123.5,93.5 + parent: 2 + - uid: 18706 + components: + - type: Transform + pos: 3.5,168.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + pos: 1.5,168.5 + parent: 2 + - uid: 18711 + components: + - type: Transform + pos: 0.5,168.5 + parent: 2 + - uid: 18758 + components: + - type: Transform + pos: -0.5,168.5 + parent: 2 + - uid: 18767 + components: + - type: Transform + pos: -1.5,168.5 + parent: 2 + - uid: 18780 + components: + - type: Transform + pos: -5.5,168.5 + parent: 2 + - uid: 18873 + components: + - type: Transform + pos: 19.5,175.5 + parent: 2 + - uid: 18879 + components: + - type: Transform + pos: 19.5,179.5 + parent: 2 + - uid: 18901 + components: + - type: Transform + pos: 18.5,179.5 + parent: 2 + - uid: 18913 + components: + - type: Transform + pos: 19.5,180.5 + parent: 2 + - uid: 18920 + components: + - type: Transform + pos: 19.5,181.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + pos: 21.5,181.5 + parent: 2 + - uid: 18956 + components: + - type: Transform + pos: 21.5,182.5 + parent: 2 + - uid: 19012 + components: + - type: Transform + pos: 22.5,182.5 + parent: 2 + - uid: 19116 + components: + - type: Transform + pos: 20.5,202.5 + parent: 2 + - uid: 19119 + components: + - type: Transform + pos: 20.5,201.5 + parent: 2 + - uid: 19128 + components: + - type: Transform + pos: -28.5,196.5 + parent: 2 + - uid: 19134 + components: + - type: Transform + pos: 7.5,180.5 + parent: 2 + - uid: 19140 + components: + - type: Transform + pos: -1.5,173.5 + parent: 2 + - uid: 19144 + components: + - type: Transform + pos: -0.5,169.5 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: -0.5,170.5 + parent: 2 + - uid: 19146 + components: + - type: Transform + pos: -0.5,171.5 + parent: 2 + - uid: 19147 + components: + - type: Transform + pos: -0.5,172.5 + parent: 2 + - uid: 19148 + components: + - type: Transform + pos: 4.5,173.5 + parent: 2 + - uid: 19149 + components: + - type: Transform + pos: 3.5,173.5 + parent: 2 + - uid: 19153 + components: + - type: Transform + pos: 2.5,172.5 + parent: 2 + - uid: 19154 + components: + - type: Transform + pos: 0.5,173.5 + parent: 2 + - uid: 19156 + components: + - type: Transform + pos: 2.5,173.5 + parent: 2 + - uid: 19157 + components: + - type: Transform + pos: 2.5,171.5 + parent: 2 + - uid: 19158 + components: + - type: Transform + pos: 3.5,170.5 + parent: 2 + - uid: 19159 + components: + - type: Transform + pos: 2.5,170.5 + parent: 2 + - uid: 19161 + components: + - type: Transform + pos: 6.5,173.5 + parent: 2 + - uid: 19162 + components: + - type: Transform + pos: 7.5,178.5 + parent: 2 + - uid: 19163 + components: + - type: Transform + pos: 5.5,178.5 + parent: 2 + - uid: 19164 + components: + - type: Transform + pos: 13.5,173.5 + parent: 2 + - uid: 19179 + components: + - type: Transform + pos: 3.5,175.5 + parent: 2 + - uid: 19180 + components: + - type: Transform + pos: 3.5,176.5 + parent: 2 + - uid: 19206 + components: + - type: Transform + pos: 2.5,175.5 + parent: 2 + - uid: 19209 + components: + - type: Transform + pos: 4.5,177.5 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: -121.5,93.5 + parent: 2 + - uid: 19318 + components: + - type: Transform + pos: -99.5,149.5 + parent: 2 + - uid: 19537 + components: + - type: Transform + pos: -64.5,70.5 + parent: 2 + - uid: 19562 + components: + - type: Transform + pos: -120.5,93.5 + parent: 2 + - uid: 19964 + components: + - type: Transform + pos: -79.5,172.5 + parent: 2 + - uid: 19966 + components: + - type: Transform + pos: -80.5,171.5 + parent: 2 + - uid: 19976 + components: + - type: Transform + pos: -78.5,171.5 + parent: 2 + - uid: 20001 + components: + - type: Transform + pos: -28.5,195.5 + parent: 2 + - uid: 20473 + components: + - type: Transform + pos: -68.5,72.5 + parent: 2 + - uid: 20539 + components: + - type: Transform + pos: -60.5,170.5 + parent: 2 + - uid: 20542 + components: + - type: Transform + pos: -59.5,170.5 + parent: 2 + - uid: 20559 + components: + - type: Transform + pos: -61.5,170.5 + parent: 2 + - uid: 20575 + components: + - type: Transform + pos: -65.5,170.5 + parent: 2 + - uid: 20599 + components: + - type: Transform + pos: -65.5,171.5 + parent: 2 + - uid: 20600 + components: + - type: Transform + pos: -65.5,172.5 + parent: 2 + - uid: 20601 + components: + - type: Transform + pos: -65.5,173.5 + parent: 2 + - uid: 20602 + components: + - type: Transform + pos: -65.5,174.5 + parent: 2 + - uid: 20627 + components: + - type: Transform + pos: -57.5,170.5 + parent: 2 + - uid: 20632 + components: + - type: Transform + pos: -62.5,170.5 + parent: 2 + - uid: 20633 + components: + - type: Transform + pos: -63.5,170.5 + parent: 2 + - uid: 20634 + components: + - type: Transform + pos: -64.5,170.5 + parent: 2 + - uid: 20659 + components: + - type: Transform + pos: -61.5,165.5 + parent: 2 + - uid: 20663 + components: + - type: Transform + pos: -62.5,167.5 + parent: 2 + - uid: 20677 + components: + - type: Transform + pos: -59.5,154.5 + parent: 2 + - uid: 20678 + components: + - type: Transform + pos: -60.5,154.5 + parent: 2 + - uid: 20780 + components: + - type: Transform + pos: -102.5,147.5 + parent: 2 + - uid: 20840 + components: + - type: Transform + pos: -59.5,160.5 + parent: 2 + - uid: 22387 + components: + - type: Transform + pos: 83.5,43.5 + parent: 2 + - uid: 22395 + components: + - type: Transform + pos: -79.5,87.5 + parent: 2 + - uid: 23147 + components: + - type: Transform + pos: 0.5,64.5 + parent: 2 + - uid: 23206 + components: + - type: Transform + pos: -0.5,64.5 + parent: 2 + - uid: 23270 + components: + - type: Transform + pos: -7.5,61.5 + parent: 2 + - uid: 23365 + components: + - type: Transform + pos: -1.5,64.5 + parent: 2 + - uid: 23372 + components: + - type: Transform + pos: -13.5,72.5 + parent: 2 + - uid: 23373 + components: + - type: Transform + pos: -18.5,72.5 + parent: 2 + - uid: 23418 + components: + - type: Transform + pos: -67.5,81.5 + parent: 2 + - uid: 23932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,203.5 + parent: 2 + - uid: 23933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,204.5 + parent: 2 + - uid: 23941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,206.5 + parent: 2 + - uid: 24056 + components: + - type: Transform + pos: -7.5,62.5 + parent: 2 + - uid: 24217 + components: + - type: Transform + pos: 1.5,64.5 + parent: 2 + - uid: 24273 + components: + - type: Transform + pos: -28.5,188.5 + parent: 2 + - uid: 24277 + components: + - type: Transform + pos: -28.5,191.5 + parent: 2 + - uid: 25088 + components: + - type: Transform + pos: -117.5,96.5 + parent: 2 + - uid: 25139 + components: + - type: Transform + pos: -119.5,96.5 + parent: 2 + - uid: 25140 + components: + - type: Transform + pos: -118.5,96.5 + parent: 2 + - uid: 25142 + components: + - type: Transform + pos: -120.5,95.5 + parent: 2 + - uid: 25143 + components: + - type: Transform + pos: -120.5,100.5 + parent: 2 + - uid: 25144 + components: + - type: Transform + pos: -120.5,97.5 + parent: 2 + - uid: 25145 + components: + - type: Transform + pos: -120.5,99.5 + parent: 2 + - uid: 25147 + components: + - type: Transform + pos: -115.5,96.5 + parent: 2 + - uid: 25148 + components: + - type: Transform + pos: -113.5,98.5 + parent: 2 + - uid: 25152 + components: + - type: Transform + pos: -120.5,98.5 + parent: 2 + - uid: 25154 + components: + - type: Transform + pos: -120.5,96.5 + parent: 2 + - uid: 25155 + components: + - type: Transform + pos: -120.5,94.5 + parent: 2 + - uid: 25227 + components: + - type: Transform + pos: -29.5,188.5 + parent: 2 + - uid: 26512 + components: + - type: Transform + pos: -19.5,65.5 + parent: 2 + - uid: 26642 + components: + - type: Transform + pos: -22.5,172.5 + parent: 2 + - uid: 26646 + components: + - type: Transform + pos: -19.5,172.5 + parent: 2 + - uid: 26647 + components: + - type: Transform + pos: -20.5,172.5 + parent: 2 + - uid: 26649 + components: + - type: Transform + pos: -22.5,168.5 + parent: 2 + - uid: 26653 + components: + - type: Transform + pos: -21.5,168.5 + parent: 2 + - uid: 26664 + components: + - type: Transform + pos: -20.5,168.5 + parent: 2 + - uid: 26819 + components: + - type: Transform + pos: -19.5,168.5 + parent: 2 + - uid: 26831 + components: + - type: Transform + pos: -21.5,172.5 + parent: 2 + - uid: 26859 + components: + - type: Transform + pos: -117.5,101.5 + parent: 2 + - uid: 26860 + components: + - type: Transform + pos: -117.5,102.5 + parent: 2 + - uid: 26866 + components: + - type: Transform + pos: -115.5,97.5 + parent: 2 + - uid: 27443 + components: + - type: Transform + pos: -2.5,70.5 + parent: 2 + - uid: 27839 + components: + - type: Transform + pos: -102.5,146.5 + parent: 2 + - uid: 27851 + components: + - type: Transform + pos: -61.5,164.5 + parent: 2 + - uid: 27852 + components: + - type: Transform + pos: -61.5,163.5 + parent: 2 + - uid: 27853 + components: + - type: Transform + pos: -62.5,163.5 + parent: 2 + - uid: 27854 + components: + - type: Transform + pos: -63.5,163.5 + parent: 2 + - uid: 27867 + components: + - type: Transform + pos: -64.5,167.5 + parent: 2 + - uid: 27868 + components: + - type: Transform + pos: -65.5,167.5 + parent: 2 + - uid: 27927 + components: + - type: Transform + pos: -65.5,166.5 + parent: 2 + - uid: 27928 + components: + - type: Transform + pos: -65.5,164.5 + parent: 2 + - uid: 27930 + components: + - type: Transform + pos: -65.5,163.5 + parent: 2 + - uid: 28216 + components: + - type: Transform + pos: -19.5,170.5 + parent: 2 + - uid: 28745 + components: + - type: Transform + pos: -19.5,169.5 + parent: 2 + - uid: 32447 + components: + - type: Transform + pos: -21.5,170.5 + parent: 2 + - uid: 32448 + components: + - type: Transform + pos: -22.5,170.5 + parent: 2 + - uid: 32648 + components: + - type: Transform + pos: -79.5,170.5 + parent: 2 + - uid: 33206 + components: + - type: Transform + pos: -28.5,178.5 + parent: 2 + - uid: 33433 + components: + - type: Transform + pos: -79.5,101.5 + parent: 2 + - uid: 33434 + components: + - type: Transform + pos: -80.5,101.5 + parent: 2 + - uid: 33478 + components: + - type: Transform + pos: -81.5,101.5 + parent: 2 + - uid: 33479 + components: + - type: Transform + pos: -82.5,101.5 + parent: 2 + - uid: 33480 + components: + - type: Transform + pos: -82.5,98.5 + parent: 2 + - uid: 33481 + components: + - type: Transform + pos: -82.5,100.5 + parent: 2 + - uid: 33690 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 34457 + components: + - type: Transform + pos: -14.5,209.5 + parent: 2 + - uid: 34506 + components: + - type: Transform + pos: -28.5,189.5 + parent: 2 + - uid: 34507 + components: + - type: Transform + pos: -28.5,192.5 + parent: 2 + - uid: 34510 + components: + - type: Transform + pos: -28.5,193.5 + parent: 2 + - uid: 35933 + components: + - type: Transform + pos: -12.5,69.5 + parent: 2 + - uid: 36974 + components: + - type: Transform + pos: -78.5,90.5 + parent: 2 + - uid: 37389 + components: + - type: Transform + pos: -78.5,101.5 + parent: 2 + - uid: 37390 + components: + - type: Transform + pos: 85.5,44.5 + parent: 2 + - uid: 38041 + components: + - type: Transform + pos: -73.5,90.5 + parent: 2 + - uid: 38366 + components: + - type: Transform + pos: -28.5,179.5 + parent: 2 + - uid: 38559 + components: + - type: Transform + pos: -79.5,171.5 + parent: 2 +- proto: WallSolidDiagonal + entities: + - uid: 257 + components: + - type: Transform + pos: 31.5,64.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,58.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: 55.5,64.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,65.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: 77.5,65.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: 63.5,65.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,67.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: 54.5,59.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,59.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,11.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,58.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,86.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + pos: -42.5,86.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,100.5 + parent: 2 + - uid: 14356 + components: + - type: Transform + pos: -83.5,98.5 + parent: 2 + - uid: 19977 + components: + - type: Transform + pos: -80.5,172.5 + parent: 2 + - uid: 19978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,172.5 + parent: 2 + - uid: 19979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,170.5 + parent: 2 + - uid: 19980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,170.5 + parent: 2 + - uid: 20422 + components: + - type: Transform + pos: -98.5,177.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,173.5 + parent: 2 + - uid: 20425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,177.5 + parent: 2 + - uid: 21045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,76.5 + parent: 2 + - uid: 25817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,76.5 + parent: 2 + - uid: 31556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,64.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 462 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 20937 + components: + - type: Transform + pos: 25.5,191.5 + parent: 2 + - uid: 29552 + components: + - type: Transform + pos: -84.5,32.5 + parent: 2 + - uid: 36567 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 16090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 13386 +- proto: WallWood + entities: + - uid: 1741 + components: + - type: Transform + pos: -6.5,174.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: -6.5,175.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: -82.5,102.5 + parent: 2 + - uid: 13891 + components: + - type: Transform + pos: -71.5,103.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + pos: -81.5,102.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + pos: -82.5,103.5 + parent: 2 + - uid: 14258 + components: + - type: Transform + pos: -82.5,104.5 + parent: 2 + - uid: 14259 + components: + - type: Transform + pos: -82.5,105.5 + parent: 2 + - uid: 14260 + components: + - type: Transform + pos: -82.5,106.5 + parent: 2 + - uid: 14261 + components: + - type: Transform + pos: -82.5,107.5 + parent: 2 + - uid: 14262 + components: + - type: Transform + pos: -81.5,108.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: -80.5,108.5 + parent: 2 + - uid: 14264 + components: + - type: Transform + pos: -79.5,108.5 + parent: 2 + - uid: 14265 + components: + - type: Transform + pos: -78.5,108.5 + parent: 2 + - uid: 14266 + components: + - type: Transform + pos: -77.5,108.5 + parent: 2 + - uid: 14267 + components: + - type: Transform + pos: -76.5,108.5 + parent: 2 + - uid: 14268 + components: + - type: Transform + pos: -75.5,108.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + pos: -74.5,108.5 + parent: 2 + - uid: 14270 + components: + - type: Transform + pos: -73.5,108.5 + parent: 2 + - uid: 14271 + components: + - type: Transform + pos: -72.5,108.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: -71.5,107.5 + parent: 2 + - uid: 14273 + components: + - type: Transform + pos: -71.5,106.5 + parent: 2 + - uid: 14274 + components: + - type: Transform + pos: -71.5,105.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + pos: -71.5,104.5 + parent: 2 + - uid: 14277 + components: + - type: Transform + pos: -72.5,102.5 + parent: 2 + - uid: 14278 + components: + - type: Transform + pos: -73.5,102.5 + parent: 2 + - uid: 14279 + components: + - type: Transform + pos: -74.5,102.5 + parent: 2 + - uid: 14280 + components: + - type: Transform + pos: -75.5,102.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + pos: -78.5,102.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + pos: -79.5,102.5 + parent: 2 + - uid: 14283 + components: + - type: Transform + pos: -71.5,102.5 + parent: 2 + - uid: 14285 + components: + - type: Transform + pos: -81.5,107.5 + parent: 2 + - uid: 14286 + components: + - type: Transform + pos: -72.5,107.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + pos: -80.5,102.5 + parent: 2 + - uid: 22481 + components: + - type: Transform + pos: -21.5,177.5 + parent: 2 + - uid: 22482 + components: + - type: Transform + pos: -16.5,176.5 + parent: 2 + - uid: 22483 + components: + - type: Transform + pos: -21.5,179.5 + parent: 2 + - uid: 22484 + components: + - type: Transform + pos: -21.5,178.5 + parent: 2 + - uid: 22485 + components: + - type: Transform + pos: -18.5,181.5 + parent: 2 + - uid: 22486 + components: + - type: Transform + pos: -16.5,177.5 + parent: 2 + - uid: 22592 + components: + - type: Transform + pos: -6.5,176.5 + parent: 2 + - uid: 22593 + components: + - type: Transform + pos: -5.5,176.5 + parent: 2 + - uid: 22595 + components: + - type: Transform + pos: -3.5,176.5 + parent: 2 + - uid: 22596 + components: + - type: Transform + pos: -2.5,176.5 + parent: 2 + - uid: 22597 + components: + - type: Transform + pos: -2.5,177.5 + parent: 2 + - uid: 22598 + components: + - type: Transform + pos: -2.5,178.5 + parent: 2 + - uid: 22599 + components: + - type: Transform + pos: -2.5,179.5 + parent: 2 + - uid: 22600 + components: + - type: Transform + pos: -2.5,181.5 + parent: 2 + - uid: 22601 + components: + - type: Transform + pos: -2.5,182.5 + parent: 2 + - uid: 22602 + components: + - type: Transform + pos: -3.5,182.5 + parent: 2 + - uid: 22603 + components: + - type: Transform + pos: -4.5,182.5 + parent: 2 + - uid: 22604 + components: + - type: Transform + pos: -5.5,182.5 + parent: 2 + - uid: 22605 + components: + - type: Transform + pos: -6.5,182.5 + parent: 2 + - uid: 22621 + components: + - type: Transform + pos: -2.5,175.5 + parent: 2 + - uid: 22622 + components: + - type: Transform + pos: -21.5,180.5 + parent: 2 + - uid: 22652 + components: + - type: Transform + pos: -20.5,176.5 + parent: 2 + - uid: 22653 + components: + - type: Transform + pos: -18.5,176.5 + parent: 2 + - uid: 22654 + components: + - type: Transform + pos: -21.5,176.5 + parent: 2 + - uid: 22994 + components: + - type: Transform + pos: -17.5,176.5 + parent: 2 + - uid: 23050 + components: + - type: Transform + pos: -16.5,180.5 + parent: 2 + - uid: 23052 + components: + - type: Transform + pos: -17.5,181.5 + parent: 2 + - uid: 23066 + components: + - type: Transform + pos: -21.5,181.5 + parent: 2 + - uid: 23069 + components: + - type: Transform + pos: -19.5,176.5 + parent: 2 + - uid: 23073 + components: + - type: Transform + pos: -16.5,181.5 + parent: 2 + - uid: 23510 + components: + - type: Transform + pos: -2.5,174.5 + parent: 2 + - uid: 23511 + components: + - type: Transform + pos: -3.5,174.5 + parent: 2 + - uid: 23512 + components: + - type: Transform + pos: -4.5,174.5 + parent: 2 + - uid: 23513 + components: + - type: Transform + pos: -5.5,174.5 + parent: 2 + - uid: 29611 + components: + - type: Transform + pos: -19.5,181.5 + parent: 2 + - uid: 30301 + components: + - type: Transform + pos: -19.5,180.5 + parent: 2 +- proto: WardrobeBlack + entities: + - uid: 14137 + components: + - type: Transform + pos: -75.5,100.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + pos: -75.5,99.5 + parent: 2 + - uid: 18697 + components: + - type: Transform + pos: -75.5,98.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 18705 + components: + - type: Transform + pos: -79.5,98.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 18709 + components: + - type: Transform + pos: -80.5,98.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 18719 + components: + - type: Transform + pos: -78.5,98.5 + parent: 2 +- proto: WardrobeBlackFilled + entities: + - uid: 13787 + components: + - type: Transform + pos: -68.5,109.5 + parent: 2 +- proto: WardrobeBlueFilled + entities: + - uid: 15216 + components: + - type: Transform + pos: -70.5,112.5 + parent: 2 +- proto: WardrobeCargoFilled + entities: + - uid: 299 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 12140 + components: + - type: Transform + pos: -52.5,64.5 + parent: 2 +- proto: WardrobeGeneticsFilled + entities: + - uid: 23688 + components: + - type: Transform + pos: 12.5,183.5 + parent: 2 +- proto: WardrobeGreenFilled + entities: + - uid: 16479 + components: + - type: Transform + pos: -69.5,112.5 + parent: 2 +- proto: WardrobeGreyFilled + entities: + - uid: 3943 + components: + - type: Transform + pos: -68.5,105.5 + parent: 2 + - uid: 11705 + components: + - type: Transform + pos: -66.5,109.5 + parent: 2 +- proto: WardrobeMedicalDoctorFilled + entities: + - uid: 23361 + components: + - type: Transform + pos: 2.5,202.5 + parent: 2 + - uid: 23423 + components: + - type: Transform + pos: 2.5,203.5 + parent: 2 +- proto: WardrobeMixedFilled + entities: + - uid: 10305 + components: + - type: Transform + pos: -70.5,109.5 + parent: 2 + - uid: 10853 + components: + - type: Transform + pos: -67.5,109.5 + parent: 2 + - uid: 17354 + components: + - type: Transform + pos: -68.5,112.5 + parent: 2 +- proto: WardrobePinkFilled + entities: + - uid: 17350 + components: + - type: Transform + pos: -66.5,112.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 4066 + components: + - type: Transform + pos: 82.5,48.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: 82.5,54.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 60.5,54.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4151 + components: + - type: Transform + pos: 60.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5331 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4152 + components: + - type: Transform + pos: 60.5,48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19720 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6506 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: 82.5,51.5 + parent: 2 +- proto: WardrobeRoboticsFilled + entities: + - uid: 20893 + components: + - type: Transform + pos: -73.5,177.5 + parent: 2 +- proto: WardrobeSalvageFilled + entities: + - uid: 309 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 +- proto: WardrobeVirologyFilled + entities: + - uid: 24152 + components: + - type: Transform + pos: 22.5,197.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 42462 + components: + - type: Transform + pos: 23.5,197.5 + parent: 2 +- proto: WardrobeWhite + entities: + - uid: 38386 + components: + - type: Transform + pos: -6.5,210.5 + parent: 2 +- proto: WardrobeWhiteFilled + entities: + - uid: 10304 + components: + - type: Transform + pos: -69.5,109.5 + parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 14096 + components: + - type: Transform + pos: -67.5,112.5 + parent: 2 +- proto: WarningAir + entities: + - uid: 20573 + components: + - type: Transform + pos: -102.5,19.5 + parent: 2 + - uid: 28829 + components: + - type: Transform + pos: -106.5,48.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 12321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,17.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,16.5 + parent: 2 + - uid: 25347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,14.5 + parent: 2 + - uid: 25355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,147.5 + parent: 2 + - uid: 32379 + components: + - type: Transform + pos: 11.5,179.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 12317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,17.5 + parent: 2 + - uid: 21749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,143.5 + parent: 2 + - uid: 25215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,16.5 + parent: 2 + - uid: 25346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,14.5 + parent: 2 + - uid: 32381 + components: + - type: Transform + pos: 13.5,179.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 30857 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 + - uid: 32380 + components: + - type: Transform + pos: 12.5,179.5 + parent: 2 + - uid: 32382 + components: + - type: Transform + pos: -66.5,148.5 + parent: 2 +- proto: WarpPointBombing + entities: + - uid: 228 + components: + - type: Transform + pos: 83.5,65.5 + parent: 2 + - type: WarpPoint + location: Brig - HoS + - uid: 16953 + components: + - type: Transform + pos: 0.5,0.5 + parent: 13386 + - type: WarpPoint + location: Brig - Shuttle + - uid: 36102 + components: + - type: Transform + pos: 3.5,1.5 + parent: 21114 + - type: WarpPoint + location: Command - Shuttle + - uid: 39148 + components: + - type: Transform + pos: -91.5,155.5 + parent: 2 + - type: WarpPoint + location: Sci - Servers + - uid: 39149 + components: + - type: Transform + pos: -110.5,33.5 + parent: 2 + - type: WarpPoint + location: Eng - storage + - uid: 39150 + components: + - type: Transform + pos: -40.5,81.5 + parent: 2 + - type: WarpPoint + location: Center - Gateways + - uid: 39151 + components: + - type: Transform + pos: -127.5,47.5 + parent: 2 + - type: WarpPoint + location: Eng - AME + - uid: 39152 + components: + - type: Transform + pos: -40.5,106.5 + parent: 2 + - type: WarpPoint + location: Center - Bridge + - uid: 39153 + components: + - type: Transform + pos: -76.5,104.5 + parent: 2 + - type: WarpPoint + location: Center - Bathhouse + - uid: 39154 + components: + - type: Transform + pos: -25.5,200.5 + parent: 2 + - type: WarpPoint + location: Med - Cryo + - uid: 39155 + components: + - type: Transform + pos: -11.5,77.5 + parent: 2 + - type: WarpPoint + location: Center - EVA + - uid: 39162 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - type: WarpPoint + location: Brig - Armory + - uid: 41501 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - type: WarpPoint + location: Cargo - QM + - uid: 42887 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 30902 + - type: WarpPoint + location: Med - Shuttle + - uid: 42888 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 37842 + - type: WarpPoint + location: Cargo - Taxi Shuttle +- proto: WaterCooler + entities: + - uid: 454 + components: + - type: Transform + pos: 74.5,59.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + pos: -72.5,73.5 + parent: 2 + - uid: 20942 + components: + - type: Transform + pos: -89.5,181.5 + parent: 2 + - uid: 22391 + components: + - type: Transform + pos: -9.5,199.5 + parent: 2 + - uid: 22569 + components: + - type: Transform + pos: -20.5,177.5 + parent: 2 + - uid: 23827 + components: + - type: Transform + pos: -61.5,75.5 + parent: 2 + - uid: 27816 + components: + - type: Transform + pos: -81.5,33.5 + parent: 2 + - uid: 29086 + components: + - type: Transform + pos: -112.5,44.5 + parent: 2 +- proto: WaterTank + entities: + - uid: 30895 + components: + - type: Transform + pos: -116.5,95.5 + parent: 2 + - uid: 38289 + components: + - type: Transform + pos: -74.5,91.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 4361 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + pos: 0.5,80.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + pos: -16.5,173.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + pos: -73.5,107.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: -54.5,77.5 + parent: 2 + - uid: 17220 + components: + - type: Transform + pos: -81.5,73.5 + parent: 2 + - uid: 19238 + components: + - type: Transform + pos: -72.5,65.5 + parent: 2 + - uid: 23196 + components: + - type: Transform + pos: 2.5,194.5 + parent: 2 + - uid: 23984 + components: + - type: Transform + pos: -26.5,206.5 + parent: 2 + - uid: 29878 + components: + - type: Transform + anchored: True + pos: -100.5,34.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 36800 + components: + - type: Transform + pos: -76.5,144.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 13367 + components: + - type: Transform + pos: -11.5,69.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + pos: -2.5,59.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + pos: 18.5,171.5 + parent: 2 + - uid: 19683 + components: + - type: Transform + pos: -98.5,147.5 + parent: 2 + - uid: 21338 + components: + - type: Transform + pos: -60.5,166.5 + parent: 2 + - uid: 30191 + components: + - type: Transform + pos: -66.5,69.5 + parent: 2 + - uid: 35940 + components: + - type: Transform + pos: -6.5,59.5 + parent: 2 + - uid: 35950 + components: + - type: Transform + pos: -6.5,69.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 14314 + components: + - type: Transform + pos: -74.5,107.5 + parent: 2 +- proto: WeakKudzu + entities: + - uid: 7751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,148.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,147.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,147.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,148.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,148.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,147.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,147.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,148.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,148.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,147.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 4841 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,67.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: 53.5,50.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,79.5 + parent: 2 + - uid: 11747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,100.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,43.5 + parent: 2 + - uid: 16712 + components: + - type: Transform + pos: -2.5,1.5 + parent: 13386 + - uid: 20008 + components: + - type: Transform + pos: -41.5,79.5 + parent: 2 + - uid: 22419 + components: + - type: Transform + pos: -93.5,37.5 + parent: 2 + - uid: 23151 + components: + - type: Transform + pos: 70.5,69.5 + parent: 2 + - uid: 23312 + components: + - type: Transform + pos: 53.5,53.5 + parent: 2 + - uid: 25063 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 26403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,52.5 + parent: 2 + - uid: 36321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,153.5 + parent: 2 + - uid: 36677 + components: + - type: Transform + pos: -5.5,180.5 + parent: 2 + - uid: 36833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 37842 +- proto: WeaponDisabler + entities: + - uid: 5016 + components: + - type: Transform + pos: 99.42166,52.76584 + parent: 2 + - uid: 11631 + components: + - type: Transform + pos: -41.409542,84.50304 + parent: 2 + - uid: 15541 + components: + - type: Transform + parent: 6467 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15542 + components: + - type: Transform + parent: 6467 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17450 + components: + - type: Transform + pos: -95.4293,36.500168 + parent: 2 + - uid: 37071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.45848,60.607796 + parent: 2 + - uid: 37074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.28827,60.607796 + parent: 2 + - uid: 37123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.62869,60.607796 + parent: 2 +- proto: WeaponDisablerPractice + entities: + - uid: 28702 + components: + - type: Transform + pos: 54.488632,54.599472 + parent: 2 + - uid: 31488 + components: + - type: Transform + pos: 54.634857,54.397076 + parent: 2 + - uid: 35938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.241585,87.691795 + parent: 2 +- proto: WeaponFlareGun + entities: + - uid: 14238 + components: + - type: Transform + pos: -47.493874,98.66459 + parent: 2 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 4827 + components: + - type: Transform + pos: 53.487526,54.541885 + parent: 2 + - uid: 16135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.8272247,3.5609512 + parent: 13386 + - uid: 41337 + components: + - type: Transform + pos: 53.532516,54.373222 + parent: 2 +- proto: WeaponLaserGun + entities: + - uid: 5111 + components: + - type: Transform + pos: 57.43447,61.500374 + parent: 2 + - uid: 11616 + components: + - type: Transform + pos: 57.411232,61.147995 + parent: 2 +- proto: WeaponProtoKineticAccelerator + entities: + - uid: 1455 + components: + - type: Transform + pos: -53.548035,5.678314 + parent: 2 +- proto: WeaponRifleAk + entities: + - uid: 8593 + components: + - type: Transform + pos: 60.64942,60.59375 + parent: 2 +- proto: WeaponRifleFoam + entities: + - uid: 8336 + components: + - type: Transform + pos: 5.52166,70.744514 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: 5.52166,70.66398 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: 5.52166,70.58344 + parent: 2 + - uid: 8904 + components: + - type: Transform + pos: 5.52166,70.5029 + parent: 2 +- proto: WeaponShotgunEnforcer + entities: + - uid: 925 + components: + - type: Transform + pos: 62.616096,58.656624 + parent: 2 +- proto: WeaponShotgunKammerer + entities: + - uid: 12801 + components: + - type: Transform + pos: 62.543526,58.359512 + parent: 2 +- proto: WeaponShotgunSawnEmpty + entities: + - uid: 38035 + components: + - type: Transform + parent: 37932 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 1811 + components: + - type: Transform + pos: 88.57862,64.742065 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 7714 + components: + - type: Transform + pos: -69.5,126.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: -69.5,134.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: -56.5,136.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: -56.5,124.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -64.5,132.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: -67.5,134.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: -67.5,126.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: -65.5,131.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: -65.5,129.5 + parent: 2 +- proto: WeaponWaterBlaster + entities: + - uid: 4715 + components: + - type: Transform + pos: 81.36902,63.645935 + parent: 2 +- proto: WeaponWaterPistol + entities: + - uid: 12895 + components: + - type: Transform + pos: 69.30601,55.621418 + parent: 2 + - uid: 13848 + components: + - type: Transform + pos: 80.545906,41.320927 + parent: 2 + - uid: 14188 + components: + - type: Transform + pos: 81.51324,41.545815 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: 81.40076,41.388393 + parent: 2 + - uid: 14190 + components: + - type: Transform + pos: 80.70338,41.51208 + parent: 2 +- proto: WeedSpray + entities: + - uid: 16497 + components: + - type: Transform + pos: -10.77765,65.62955 + parent: 2 + - uid: 19704 + components: + - type: Transform + pos: -79.23213,150.86443 + parent: 2 + - uid: 20510 + components: + - type: Transform + pos: -92.31157,167.58257 + parent: 2 +- proto: Welder + entities: + - uid: 17394 + components: + - type: Transform + parent: 17390 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19662 + components: + - type: Transform + pos: -106.55451,91.578865 + parent: 2 + - uid: 20482 + components: + - type: Transform + pos: -97.73932,170.50157 + parent: 2 +- proto: WelderIndustrial + entities: + - uid: 4101 + components: + - type: Transform + pos: -70.35846,149.53973 + parent: 2 + - uid: 25268 + components: + - type: Transform + parent: 25246 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WelderIndustrialAdvanced + entities: + - uid: 12292 + components: + - type: Transform + parent: 12288 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WelderMini + entities: + - uid: 3747 + components: + - type: Transform + pos: -84.05515,143.44208 + parent: 2 + - uid: 18224 + components: + - type: Transform + pos: -80.62125,42.55195 + parent: 2 + - uid: 25219 + components: + - type: Transform + pos: -130.29013,96.89704 + parent: 2 + - uid: 38278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.01047,180.98605 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 1179 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: 85.5,43.5 + parent: 2 + - uid: 10885 + components: + - type: Transform + pos: -9.5,86.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: -38.5,63.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: -54.5,76.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + pos: -76.5,71.5 + parent: 2 + - uid: 20919 + components: + - type: Transform + pos: -73.5,174.5 + parent: 2 + - uid: 22303 + components: + - type: Transform + anchored: True + pos: -99.5,34.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 24096 + components: + - type: Transform + pos: 14.5,202.5 + parent: 2 + - uid: 24180 + components: + - type: Transform + pos: 23.5,195.5 + parent: 2 + - uid: 26668 + components: + - type: Transform + pos: -18.5,174.5 + parent: 2 + - uid: 27869 + components: + - type: Transform + pos: -88.5,47.5 + parent: 2 + - uid: 36207 + components: + - type: Transform + pos: -51.5,71.5 + parent: 2 + - uid: 37291 + components: + - type: Transform + pos: -35.5,176.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 17720 + components: + - type: Transform + pos: -108.5,96.5 + parent: 2 +- proto: WetFloorSign + entities: + - uid: 16542 + components: + - type: Transform + pos: 0.31672645,81.82936 + parent: 2 + - uid: 16544 + components: + - type: Transform + pos: 0.59792566,81.615715 + parent: 2 + - uid: 31492 + components: + - type: Transform + pos: 0.32797337,81.48078 + parent: 2 +- proto: WheatBushel + entities: + - uid: 8519 + components: + - type: Transform + pos: 57.591072,25.70927 + parent: 2 + - uid: 8707 + components: + - type: Transform + pos: 57.535515,25.83427 + parent: 2 + - uid: 21391 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27307 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28226 + components: + - type: Transform + parent: 4407 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WhoopieCushion + entities: + - uid: 19720 + components: + - type: Transform + parent: 4152 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Windoor + entities: + - uid: 10440 + components: + - type: Transform + pos: -16.5,80.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,78.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,78.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,59.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,180.5 + parent: 2 + - uid: 17998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,42.5 + parent: 2 + - uid: 18171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,168.5 + parent: 2 + - uid: 18294 + components: + - type: Transform + pos: -83.5,174.5 + parent: 2 + - uid: 18545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,168.5 + parent: 2 + - uid: 20083 + components: + - type: Transform + pos: -75.5,174.5 + parent: 2 + - uid: 20969 + components: + - type: Transform + pos: -72.5,166.5 + parent: 2 + - uid: 20971 + components: + - type: Transform + pos: -71.5,166.5 + parent: 2 + - uid: 20972 + components: + - type: Transform + pos: -70.5,166.5 + parent: 2 + - uid: 20974 + components: + - type: Transform + pos: -69.5,166.5 + parent: 2 + - uid: 35934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,70.5 + parent: 2 + - uid: 35936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,70.5 + parent: 2 + - uid: 38018 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 37842 +- proto: WindoorBarLocked + entities: + - uid: 12937 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 35802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,63.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 38019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 37842 + - uid: 38020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 37842 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 11057 + components: + - type: Transform + pos: -8.5,70.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,67.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,68.5 + parent: 2 + - uid: 11121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,68.5 + parent: 2 + - uid: 12117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,67.5 + parent: 2 + - uid: 12134 + components: + - type: Transform + pos: -7.5,70.5 + parent: 2 +- proto: WindoorKitchenLocked + entities: + - uid: 19714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,66.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-2.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,53.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 27334 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 2432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,59.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: 60.5,60.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: 61.5,60.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,64.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,60.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,59.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,61.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,58.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,58.5 + parent: 2 + - uid: 12919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,61.5 + parent: 2 + - uid: 29464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,50.5 + parent: 2 + - uid: 29736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,53.5 + parent: 2 + - uid: 38073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,58.5 + parent: 2 +- proto: WindoorSecureBrigLocked + entities: + - uid: 14495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,61.5 + parent: 2 + - uid: 17540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,38.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 848 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 2 + - uid: 38021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 37842 + - uid: 38022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 37842 + - uid: 38023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 37842 +- proto: WindoorSecureChapelLocked + entities: + - uid: 12152 + components: + - type: Transform + pos: -54.5,70.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 22831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,192.5 + parent: 2 + - uid: 22843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,193.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 7750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,130.5 + parent: 2 + - uid: 15040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,98.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,98.5 + parent: 2 + - uid: 15056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,98.5 + parent: 2 + - uid: 19249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,100.5 + parent: 2 + - uid: 29192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,35.5 + parent: 2 + - uid: 29193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,35.5 + parent: 2 + - uid: 36725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 21114 + - uid: 36726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 21114 + - uid: 37097 + components: + - type: Transform + pos: 77.5,34.5 + parent: 2 + - uid: 37098 + components: + - type: Transform + pos: 78.5,34.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 22293 + components: + - type: Transform + pos: -81.5,49.5 + parent: 2 + - uid: 24066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,208.5 + parent: 2 + - uid: 24067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,209.5 + parent: 2 + - uid: 27786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,42.5 + parent: 2 + - uid: 27787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,41.5 + parent: 2 + - uid: 28123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,40.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 8868 + components: + - type: Transform + pos: 9.5,70.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,80.5 + parent: 2 +- proto: WindoorSecureKitchenLocked + entities: + - uid: 35798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,63.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 22753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,190.5 + parent: 2 + - uid: 22755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,190.5 + parent: 2 + - uid: 23608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,194.5 + parent: 2 + - uid: 31051 + components: + - type: Transform + pos: -0.5,1.5 + parent: 30902 + - uid: 31052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 30902 + - uid: 34557 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 30902 + - uid: 34565 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 30902 + - uid: 37532 + components: + - type: Transform + pos: -1.5,167.5 + parent: 2 + - uid: 37533 + components: + - type: Transform + pos: -0.5,167.5 + parent: 2 + - uid: 37534 + components: + - type: Transform + pos: 0.5,167.5 + parent: 2 + - uid: 37535 + components: + - type: Transform + pos: 1.5,167.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 1044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 20965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,166.5 + parent: 2 + - uid: 20966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,166.5 + parent: 2 + - uid: 20967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,166.5 + parent: 2 + - uid: 20968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,166.5 + parent: 2 + - uid: 26587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,164.5 + parent: 2 + - uid: 27681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,163.5 + parent: 2 + - uid: 27683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,162.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 240 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,42.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,50.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,50.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,50.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: 94.5,56.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: 95.5,56.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: 96.5,56.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,48.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,54.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,51.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 13386 + - uid: 13627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 13386 + - uid: 35598 + components: + - type: Transform + pos: -94.5,38.5 + parent: 2 + - uid: 39381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,74.5 + parent: 2 + - uid: 41915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,54.5 + parent: 2 + - uid: 41925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,51.5 + parent: 2 + - uid: 41974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,48.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 10704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,86.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,85.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,84.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,82.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,80.5 + parent: 2 + - uid: 14663 + components: + - type: Transform + pos: -75.5,81.5 + parent: 2 + - uid: 14669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,84.5 + parent: 2 + - uid: 16471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,60.5 + parent: 2 + - uid: 22884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,63.5 + parent: 2 +- proto: Window + entities: + - uid: 173 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: 111.5,60.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: -16.5,179.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: -16.5,178.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + pos: -5.5,83.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + pos: -4.5,80.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + pos: -4.5,76.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + pos: -4.5,75.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - uid: 11948 + components: + - type: Transform + pos: -5.5,70.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: -76.5,76.5 + parent: 2 + - uid: 14430 + components: + - type: Transform + pos: -75.5,76.5 + parent: 2 + - uid: 14431 + components: + - type: Transform + pos: -74.5,76.5 + parent: 2 + - uid: 14460 + components: + - type: Transform + pos: -73.5,76.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + pos: -77.5,76.5 + parent: 2 + - uid: 16508 + components: + - type: Transform + pos: -14.5,72.5 + parent: 2 + - uid: 16864 + components: + - type: Transform + pos: -17.5,72.5 + parent: 2 + - uid: 23031 + components: + - type: Transform + pos: -4.5,168.5 + parent: 2 + - uid: 23130 + components: + - type: Transform + pos: -2.5,168.5 + parent: 2 + - uid: 27808 + components: + - type: Transform + pos: 112.5,60.5 + parent: 2 + - uid: 28472 + components: + - type: Transform + pos: -116.5,101.5 + parent: 2 + - uid: 28492 + components: + - type: Transform + pos: -115.5,101.5 + parent: 2 + - uid: 28493 + components: + - type: Transform + pos: -114.5,101.5 + parent: 2 + - uid: 28813 + components: + - type: Transform + pos: 109.5,60.5 + parent: 2 + - uid: 28831 + components: + - type: Transform + pos: 108.5,60.5 + parent: 2 + - uid: 28832 + components: + - type: Transform + pos: 107.5,60.5 + parent: 2 + - uid: 36615 + components: + - type: Transform + pos: 105.5,60.5 + parent: 2 + - uid: 39318 + components: + - type: Transform + pos: 104.5,60.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 4098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,59.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,61.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,62.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,69.5 + parent: 2 + - uid: 11752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,70.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,68.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,67.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,106.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,107.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,107.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,106.5 + parent: 2 + - uid: 14379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,107.5 + parent: 2 + - uid: 14380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,107.5 + parent: 2 + - uid: 14381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,107.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,107.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,81.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,83.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,168.5 + parent: 2 + - uid: 18432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,42.5 + parent: 2 + - uid: 19056 + components: + - type: Transform + pos: -80.5,41.5 + parent: 2 + - uid: 19816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,167.5 + parent: 2 + - uid: 20028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,168.5 + parent: 2 + - uid: 20077 + components: + - type: Transform + pos: -76.5,174.5 + parent: 2 + - uid: 20078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,174.5 + parent: 2 + - uid: 20079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,175.5 + parent: 2 + - uid: 20080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,175.5 + parent: 2 + - uid: 20081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,174.5 + parent: 2 + - uid: 20082 + components: + - type: Transform + pos: -82.5,174.5 + parent: 2 + - uid: 20084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,167.5 + parent: 2 + - uid: 20085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,168.5 + parent: 2 + - uid: 20086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,168.5 + parent: 2 + - uid: 28151 + components: + - type: Transform + pos: -88.5,47.5 + parent: 2 + - uid: 28161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,47.5 + parent: 2 + - uid: 28162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,47.5 + parent: 2 + - uid: 28163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,47.5 + parent: 2 + - uid: 29714 + components: + - type: Transform + pos: -19.5,67.5 + parent: 2 + - uid: 36011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,62.5 + parent: 2 + - uid: 36013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,62.5 + parent: 2 + - uid: 38281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,166.5 + parent: 2 + - uid: 39403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,84.5 + parent: 2 + - uid: 39404 + components: + - type: Transform + pos: -7.5,86.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 2962 + components: + - type: Transform + pos: 7.5,70.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: 5.5,70.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: 6.5,70.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,131.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,131.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: -67.5,129.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,129.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,130.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,131.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,131.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,129.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: -68.5,129.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,131.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,69.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: 8.5,70.5 + parent: 2 + - uid: 8781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,68.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,67.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + pos: 7.5,68.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + pos: 8.5,67.5 + parent: 2 + - uid: 8786 + components: + - type: Transform + pos: 7.5,67.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: 6.5,68.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: 7.5,69.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,69.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,68.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,67.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + pos: 6.5,66.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,66.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + pos: 3.5,68.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: 4.5,69.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + pos: 4.5,67.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: 5.5,66.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,65.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + pos: 4.5,65.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + pos: 5.5,65.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: 6.5,65.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: -66.5,129.5 + parent: 2 + - uid: 22609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,74.5 + parent: 2 + - uid: 22689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,74.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,61.5 + parent: 2 + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - uid: 613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,59.5 + parent: 2 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,61.5 + parent: 2 + - uid: 704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-6.5 + parent: 2 + - uid: 834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,59.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,61.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,59.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,61.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,188.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,51.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,60.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: 88.5,64.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,60.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: -13.5,80.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: 75.5,55.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,41.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,42.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,43.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,21.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,22.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,60.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,26.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,60.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,58.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,78.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,78.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,78.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,78.5 + parent: 2 + - uid: 10590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,84.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,84.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,84.5 + parent: 2 + - uid: 10594 + components: + - type: Transform + pos: -9.5,80.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,78.5 + parent: 2 + - uid: 10596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,78.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + pos: -72.5,81.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + pos: -73.5,81.5 + parent: 2 + - uid: 14659 + components: + - type: Transform + pos: -76.5,81.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + pos: -77.5,81.5 + parent: 2 + - uid: 14661 + components: + - type: Transform + pos: -78.5,81.5 + parent: 2 + - uid: 14662 + components: + - type: Transform + pos: -74.5,81.5 + parent: 2 + - uid: 14666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,84.5 + parent: 2 + - uid: 14667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,85.5 + parent: 2 + - uid: 14668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,86.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,34.5 + parent: 2 + - uid: 17821 + components: + - type: Transform + pos: -95.5,41.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,60.5 + parent: 2 + - uid: 18007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,58.5 + parent: 2 + - uid: 18683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,47.5 + parent: 2 + - uid: 19276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,84.5 + parent: 2 + - uid: 21414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,35.5 + parent: 2 + - uid: 21425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,47.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,47.5 + parent: 2 + - uid: 21428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,47.5 + parent: 2 + - uid: 21429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,46.5 + parent: 2 + - uid: 21430 + components: + - type: Transform + pos: -79.5,46.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: -80.5,46.5 + parent: 2 + - uid: 21434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,46.5 + parent: 2 + - uid: 21854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,36.5 + parent: 2 + - uid: 21857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,35.5 + parent: 2 + - uid: 21858 + components: + - type: Transform + pos: -80.5,35.5 + parent: 2 + - uid: 21859 + components: + - type: Transform + pos: -79.5,35.5 + parent: 2 + - uid: 21860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,36.5 + parent: 2 + - uid: 21942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,36.5 + parent: 2 + - uid: 21943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,36.5 + parent: 2 + - uid: 22292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,49.5 + parent: 2 + - uid: 23091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,81.5 + parent: 2 + - uid: 23228 + components: + - type: Transform + pos: -75.5,163.5 + parent: 2 + - uid: 23508 + components: + - type: Transform + pos: -75.5,162.5 + parent: 2 + - uid: 23995 + components: + - type: Transform + pos: -75.5,164.5 + parent: 2 + - uid: 24068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,209.5 + parent: 2 + - uid: 24069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,209.5 + parent: 2 + - uid: 24070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,209.5 + parent: 2 + - uid: 25058 + components: + - type: Transform + pos: -75.5,165.5 + parent: 2 + - uid: 26160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,34.5 + parent: 2 + - uid: 28625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,66.5 + parent: 2 + - uid: 28626 + components: + - type: Transform + pos: 86.5,66.5 + parent: 2 + - uid: 28631 + components: + - type: Transform + pos: 87.5,65.5 + parent: 2 + - uid: 28633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,65.5 + parent: 2 + - uid: 28912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,50.5 + parent: 2 + - uid: 28914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,56.5 + parent: 2 + - uid: 28916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,50.5 + parent: 2 + - uid: 28917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,56.5 + parent: 2 + - uid: 29128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,35.5 + parent: 2 + - uid: 29129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,35.5 + parent: 2 + - uid: 29130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,35.5 + parent: 2 + - uid: 29131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,35.5 + parent: 2 + - uid: 29139 + components: + - type: Transform + pos: 77.5,35.5 + parent: 2 + - uid: 29140 + components: + - type: Transform + pos: 78.5,35.5 + parent: 2 + - uid: 31454 + components: + - type: Transform + pos: -53.5,70.5 + parent: 2 + - uid: 37053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 36996 + - uid: 37054 + components: + - type: Transform + pos: -0.5,0.5 + parent: 36996 + - uid: 37055 + components: + - type: Transform + pos: 1.5,0.5 + parent: 36996 + - uid: 37056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 36996 + - uid: 37091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,34.5 + parent: 2 + - uid: 37092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,34.5 + parent: 2 + - uid: 37093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,34.5 + parent: 2 + - uid: 37094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,34.5 + parent: 2 + - uid: 37527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,167.5 + parent: 2 + - uid: 37528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,167.5 + parent: 2 + - uid: 37529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,167.5 + parent: 2 + - uid: 37530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,167.5 + parent: 2 + - uid: 37531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,167.5 + parent: 2 + - uid: 38099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,81.5 + parent: 2 + - uid: 39170 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 39171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-2.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 4829 + components: + - type: Transform + pos: -49.53069,9.540436 + parent: 2 + - uid: 8579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.36228,23.252716 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: -37.426147,58.146378 + parent: 2 + - uid: 17674 + components: + - type: Transform + pos: -87.45816,101.66297 + parent: 2 + - uid: 24188 + components: + - type: Transform + pos: 23.476677,189.69386 + parent: 2 + - uid: 25321 + components: + - type: Transform + pos: -127.54105,94.80617 + parent: 2 + - uid: 36684 + components: + - type: Transform + pos: 56.4312,55.555073 + parent: 2 +- proto: WoodDoor + entities: + - uid: 15467 + components: + - type: Transform + pos: -63.5,61.5 + parent: 2 + - uid: 23572 + components: + - type: Transform + pos: -4.5,176.5 + parent: 2 + - uid: 25437 + components: + - type: Transform + pos: -63.5,63.5 + parent: 2 +- proto: WoodenBuckler + entities: + - uid: 15850 + components: + - type: Transform + pos: -54.65697,73.54395 + parent: 2 +- proto: WoodenSign + entities: + - uid: 7318 + components: + - type: Transform + pos: 68.49022,28.233894 + parent: 2 +- proto: Wrench + entities: + - uid: 951 + components: + - type: Transform + pos: -29.493166,-5.4584694 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -17.126015,-5.4111032 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: -50.693993,9.677284 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 56.260986,55.618904 + parent: 2 + - uid: 5482 + components: + - type: Transform + rot: -2.220446049250313E-16 rad + pos: -24.58217,191.73366 + parent: 2 + - uid: 8592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.50755,23.52996 + parent: 2 + - uid: 20171 + components: + - type: Transform + pos: -83.415,179.59505 + parent: 2 + - uid: 20173 + components: + - type: Transform + pos: -83.44874,178.62802 + parent: 2 + - uid: 24189 + components: + - type: Transform + pos: 23.600405,189.66014 + parent: 2 + - uid: 25214 + components: + - type: Transform + pos: -132.60162,91.596085 + parent: 2 + - uid: 25320 + components: + - type: Transform + pos: -127.61979,95.02936 + parent: 2 + - uid: 26407 + components: + - type: Transform + pos: 18.519924,195.56573 + parent: 2 + - uid: 38275 + components: + - type: Transform + pos: -72.68234,181.68918 + parent: 2 +- proto: Zipties + entities: + - uid: 15531 + components: + - type: Transform + pos: -42.33674,60.705826 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: -42.5392,60.773293 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: -42.55045,60.323517 + parent: 2 +... diff --git a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml index 397a2a8e03..094e3b4579 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml @@ -14,3 +14,19 @@ - HighRiskItem - type: StealTarget stealGroup: HandTeleporter + +- type: entity + id: HandTeleporterAdmeme + suffix: Admeme + parent: BaseItem + name: interdimensional teleporter + description: allows you to open stable portal gates that are not limited by distance + components: + - type: Sprite + sprite: /Textures/Objects/Devices/hand_teleporter.rsi + layers: + - state: icon + color: green + - type: HandTeleporter + firstPortalPrototype: PortalGatewayBlue + secondPortalPrototype: PortalGatewayOrange \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index 08c14e3915..4edee5b7cb 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -324,6 +324,15 @@ - type: Sprite state: bar +- type: entity + parent: BaseSign + id: SignBath + name: bathroom sign + description: A sign indicating the bathroom. + components: + - type: Sprite + state: bath + - type: entity parent: BaseSign id: SignKitchen diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index ab7e3d4361..8f5ae66ccb 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -7,6 +7,7 @@ - Cog - Core - Fland + #- Gate - Marathon - Meta - Oasis diff --git a/Resources/Prototypes/Maps/gate.yml b/Resources/Prototypes/Maps/gate.yml new file mode 100644 index 0000000000..246baa9551 --- /dev/null +++ b/Resources/Prototypes/Maps/gate.yml @@ -0,0 +1,65 @@ +- type: gameMap + id: Gate + mapName: 'Gate Station' + mapPath: /Maps/gate.yml + minPlayers: 55 + stations: + Gate: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Gate Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'ED' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_raven.yml + - type: StationJobs + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] + Chef: [ 2, 2 ] + Janitor: [ 2, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + Zookeeper: [ 1, 1 ] + Reporter: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 4, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + Paramedic: [ 2, 2 ] + MedicalIntern: [ 4, 4 ] + Psychologist: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 4, 4 ] + ResearchAssistant: [ 4, 4 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 6, 6 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 4, 4 ] + Lawyer: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 6, 6 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + #silicon + StationAi: [ 1, 1 ] + Borg: [ 2, 2 ] \ No newline at end of file diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/bath.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/bath.png new file mode 100644 index 0000000000000000000000000000000000000000..ec2d3db0f026e4a1fa6d07ecf79859e090e96e25 GIT binary patch literal 458 zcmV;*0X6=KP)Px$gh@m}R9J=Wmpx9yFc^kk5GP36AreCu@KA{hH5=$j6zV5n#=?r)7SN zEX$IaYproSyv`tI0A#*lcgf62JM}z+xHkQmvgfXLZ&DhRyZ~p%zAV)et?aCIk^zu; zRjdA8BLJYVLKuf2MpJVDsA@He$hQELyg(xu0H6^JB`<>NUpxe@?9j^L8+Gniqmo3x z^!zb^=>&7l`s4ty#w4#f&C)A!+$JbYdZ0E{;lN--)^y7{DCG(aQR zWUICJ&ZqZ509CC=&Hrs4FA7c1Mk zU#DEyO<0ilDU7%bT#|e2eQGdN+f`=%>V!Z07*qoM6N<$g3d+F A*8l(j literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json index 268f528e07..8f6e861b9f 100644 --- a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json @@ -70,6 +70,9 @@ { "name": "bar" }, + { + "name": "bath" + }, { "name": "biblio" }, From 67e5cc21048be655436f760f560a9344ac22e6fc Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Dec 2024 10:07:40 +0000 Subject: [PATCH 104/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c7403f13b..091e8e94a3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: SaphireLattice - changes: - - message: Safety Moth poster graphics for hardhats and pipes are no longer swapped - around - type: Fix - id: 7221 - time: '2024-08-27T11:32:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31507 - author: Winkarst-cpu changes: - message: Explosive ammunition is now marked as a contraband. @@ -3929,3 +3921,10 @@ id: 7720 time: '2024-12-17T03:53:17.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32294 +- author: TheShuEd + changes: + - message: Added new map Gate + type: Add + id: 7721 + time: '2024-12-17T10:06:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32032 From 8f2d16aabf8fd29e077f59099ccbc9f5a5402d4d Mon Sep 17 00:00:00 2001 From: Patrik Caes-Sayrs Date: Tue, 17 Dec 2024 04:56:47 -0700 Subject: [PATCH 105/263] Zombies keep their anomalies on zombification (#33867) * Zombies keep their anomalies on zombification * Refactor anombies to isolate anomalies and zombies InnerBodyAnomalies now send an event when the host dies. Zombies cancels this event if the host is turning into a zombie. * Anomazombies: deprecate CancellableEntityEventArgs CancellableEntityEventArgs is deprecated. Use structs with bool Cancelled instead. --- .../Anomaly/Effects/InnerBodyAnomalySystem.cs | 5 +++++ Content.Server/Zombies/ZombieSystem.cs | 10 ++++++++++ .../Anomaly/Components/InnerBodyAnomalyComponent.cs | 8 ++++++++ 3 files changed, 23 insertions(+) diff --git a/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs index 38c4c51d87..b75be37638 100644 --- a/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs @@ -186,6 +186,11 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem if (args.NewMobState != MobState.Dead) return; + var ev = new BeforeRemoveAnomalyOnDeathEvent(); + RaiseLocalEvent(args.Target, ref ev); + if (ev.Cancelled) + return; + _anomaly.ChangeAnomalyHealth(ent, -2); //Shutdown it } diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index 371c6f1222..ec50e11a0c 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -5,6 +5,7 @@ using Content.Server.Chat; using Content.Server.Chat.Systems; using Content.Server.Emoting.Systems; using Content.Server.Speech.EntitySystems; +using Content.Shared.Anomaly.Components; using Content.Shared.Bed.Sleep; using Content.Shared.Cloning; using Content.Shared.Damage; @@ -64,10 +65,19 @@ namespace Content.Server.Zombies SubscribeLocalEvent(OnGetCharacterDeadIC); SubscribeLocalEvent(OnPendingMapInit); + SubscribeLocalEvent(OnBeforeRemoveAnomalyOnDeath); SubscribeLocalEvent(OnPendingMapInit); SubscribeLocalEvent(OnDamageChanged); + + } + + private void OnBeforeRemoveAnomalyOnDeath(Entity ent, ref BeforeRemoveAnomalyOnDeathEvent args) + { + // Pending zombies (e.g. infected non-zombies) do not remove their hosted anomaly on death. + // Current zombies DO remove the anomaly on death. + args.Cancelled = true; } private void OnPendingMapInit(EntityUid uid, IncurableZombieComponent component, MapInitEvent args) diff --git a/Content.Shared/Anomaly/Components/InnerBodyAnomalyComponent.cs b/Content.Shared/Anomaly/Components/InnerBodyAnomalyComponent.cs index e88cedb18e..a7e07ae2b5 100644 --- a/Content.Shared/Anomaly/Components/InnerBodyAnomalyComponent.cs +++ b/Content.Shared/Anomaly/Components/InnerBodyAnomalyComponent.cs @@ -70,3 +70,11 @@ public sealed partial class InnerBodyAnomalyComponent : Component [DataField] public string LayerMap = "inner_anomaly_layer"; } + +/// +/// Event broadcast when an anomaly is being removed because the host is dying. +/// Raised directed at the host entity with the anomaly. +/// Cancel this if you want to prevent the host from losing their anomaly on death. +/// +[ByRefEvent] +public record struct BeforeRemoveAnomalyOnDeathEvent(bool Cancelled = false); From 0d31b8c37acfe526fb596fa87aa4e1eecc3fa279 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Dec 2024 11:57:55 +0000 Subject: [PATCH 106/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 091e8e94a3..67f9cb6db6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Explosive ammunition is now marked as a contraband. - type: Fix - id: 7222 - time: '2024-08-27T11:37:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31508 - author: Winkarst-cpu changes: - message: Now the syndicate raid helmet is marked as a Syndicate contraband. @@ -3928,3 +3921,10 @@ id: 7721 time: '2024-12-17T10:06:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32032 +- author: pcaessayrs + changes: + - message: Anomaly hosts keep their anomaly when turning into a zombie. + type: Tweak + id: 7722 + time: '2024-12-17T11:56:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33867 From 32164c2ab8dfa8e668d2bb38aa9664e0688413e2 Mon Sep 17 00:00:00 2001 From: Tiniest Shark Date: Tue, 17 Dec 2024 08:35:23 -0500 Subject: [PATCH 107/263] Anomaly Scanner In-hand Sprites (#33427) * Adds in-hand sprites to the Anomaly Scanner. * Revert "Adds in-hand sprites to the Anomaly Scanner." This reverts commit 257efd032a15d6459043f47106bd537abfe18fad. im very stupid and need to undo my dumb commit. * okay actually making sure these are committed this time like a smart boi * Better version of the sprites based off of /tg station's health analyzer. * Updated copyright to include link to sprite * Updated copyright license and commit link * Update Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json Co-authored-by: Thomas <87614336+Aeshus@users.noreply.github.com> * Update Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json Aeshus adjusted indentation to better match original file. Co-authored-by: Thomas <87614336+Aeshus@users.noreply.github.com> --------- Co-authored-by: Thomas <87614336+Aeshus@users.noreply.github.com> --- .../Research/anomalyscanner.rsi/inhand-left.png | Bin 0 -> 633 bytes .../Research/anomalyscanner.rsi/inhand-right.png | Bin 0 -> 643 bytes .../Research/anomalyscanner.rsi/meta.json | 12 ++++++++++-- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/inhand-right.png diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..b80c46c2664bfa7d37a31db084a41761521c4d48 GIT binary patch literal 633 zcmV-<0*3vGP)Px%Gf6~2RCt{2+C6LAP!tB>*Cu043^h?9L$Y*pka4mbDoZ4okilz-%?0NN1O#0@ zcc8E?UFD?;wUw*QiU|PdHhNlBI$~j{N=J7ay-dOt2_PE2bO^k9 zJi_YFkf@mtfQX2Qh=_=Yh=^z=Nv_7TK1b|+K&0E~>9AVFW^+5!5H_3J zdPUW+TTAy>ym$c7HuwI#A^s*rTPIcN=tngNAK!QYfZdv#_yUD!0Bz;!Xq9a{7Q$*V z4k69TEZRDqdtR<=nmVi&@xK2q{(Syk5tA=LqQFH1Fe@g)eINC$!c+)l)70mlmrJ@n z`>`Dc0IaP#upJB5lO}>m5DyXVCwqs#!)rr4zbC|oh z`P_Ky0{~W34VPCJiH8RO(LFveeP77m_#R5qp?`Nq7PUo0uX>itQZ8bNh$y{pno{W} T0|VLe00000NkvXXu0mjf+!GtI literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..5557d7e7c25c39da220fc56ea611345694d3ca87 GIT binary patch literal 643 zcmV-}0(||6P)Px%JxN4CRCt{2+P`ZWVHgMS?}=k12bEaJkSyH{?_s+ORgVM-4z4AYgX&x7Xy zh=_=Yh=_=Yh@Mq3s`6j2A!xB#0}RcSwPIZYfY3zblTa(xrJh^ z<>2JBC6mqQC!v#a08BP+p7B!?(Cc^6NjWI!Ijptf`0(is(zmZ8orHp(!#Ja2V|{b3 z@lz9EwHwN>(NA1nTw}2Ph^zAlE&`FA2wo z_lSK=F1^sO47ML}d2x*+>p%%~VnZ`!#i+`Y)0T|t@drZwr%DSE>EJ_^7UE?F{#3=N zzT6W4{GV@vL_|bHL_|bHL`39=pHg%bzh`D`aGL#WRc;ws?3VXJO~P(@PmVJx+&+aM zEtG&-u`c(slN!N~GaK)-y0=3?SC9Yx7Uihx29l&nei%k8jrJD#UMpX(;z;4@tHzl}pC!6qs54`aq2w@gY-RB7l dvqVG`yg$GX<$$=stVjR=002ovPDHLkV1n7@C8+=a literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json index 76eff64a56..289c6bb269 100644 --- a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json @@ -4,11 +4,19 @@ "x": 32, "y": 32 }, - "license": "CC0-1.0", - "copyright": "Created by EmoGarbage", + "license": "CC-BY-SA-3.0", + "copyright": "Created by EmoGarbage, Inhands by TiniestShark based off of /tg station's health analyzer at https://github.com/tgstation/tgstation/commit/c7e5ca401c91cb1351c2f68cda3fe35634c4dba2", "states": [ { "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] } From ab8447956c8634e24b745214107826145f448b42 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Dec 2024 13:36:36 +0000 Subject: [PATCH 108/263] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 67f9cb6db6..7b0a35ebbd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now the syndicate raid helmet is marked as a Syndicate contraband. - type: Fix - id: 7223 - time: '2024-08-27T13:01:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31512 - author: Winkarst-cpu changes: - message: The explorer gas mask is now restricted to the cargo. @@ -3928,3 +3921,10 @@ id: 7722 time: '2024-12-17T11:56:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33867 +- author: TiniestShark + changes: + - message: Adds in-hand sprites to the Anomaly Scanner. + type: Add + id: 7723 + time: '2024-12-17T13:35:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33427 From 0fc2cca10ce8f85fa24119969a06ce2b82e0e1f6 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Tue, 17 Dec 2024 14:37:53 +0100 Subject: [PATCH 109/263] HOTFIX: Add [MRP] tag to the hostname for Salamander (#33909) --- Resources/ConfigPresets/WizardsDen/salamander.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/ConfigPresets/WizardsDen/salamander.toml b/Resources/ConfigPresets/WizardsDen/salamander.toml index e233dd95ca..bb3810b56c 100644 --- a/Resources/ConfigPresets/WizardsDen/salamander.toml +++ b/Resources/ConfigPresets/WizardsDen/salamander.toml @@ -2,7 +2,7 @@ [game] desc = "Official English Space Station 14 servers. Medium roleplay ruleset. you must be whitelisted by playing on other Wizard's Den servers if there are more than 15 online players." -hostname = "[EN] Wizard's Den Salamander [US West RP]" +hostname = "[EN][MRP] Wizard's Den Salamander [US West]" round_restart_time = 300 [server] From 332f870304cda7e3efbcf2fcf09feabd551699a2 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Tue, 17 Dec 2024 20:07:27 +0100 Subject: [PATCH 110/263] Oasis - remove vox box (#33912) remove oasis vox box --- Resources/Maps/oasis.yml | 668 +++++++++++++-------------------------- 1 file changed, 221 insertions(+), 447 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 95a93d9e63..1a95d64743 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -2,68 +2,61 @@ meta: format: 6 postmapinit: false tilemap: - 0: Space - 2: FloorArcadeBlue2 - 4: FloorAsteroidIronsand - 7: FloorAsteroidSand - 9: FloorAsteroidSandRed - 12: FloorAstroGrass - 13: FloorAstroIce - 14: FloorAstroSnow - 15: FloorBar - 17: FloorBlue - 18: FloorBlueCircuit - 5: FloorBoxing - 22: FloorBrokenWood - 23: FloorCarpetClown - 28: FloorClown - 29: FloorConcrete - 31: FloorConcreteSmooth - 32: FloorDark - 33: FloorDarkDiagonal - 36: FloorDarkMini - 37: FloorDarkMono - 38: FloorDarkOffset - 39: FloorDarkPavement - 41: FloorDarkPlastic - 3: FloorDirt - 47: FloorFreezer - 48: FloorGlass - 50: FloorGrass - 54: FloorGrayConcrete - 55: FloorGrayConcreteMono - 57: FloorGreenCircuit - 61: FloorHydro - 63: FloorJungleAstroGrass - 64: FloorKitchen - 66: FloorLino - 67: FloorLowDesert - 68: FloorMetalDiamond - 74: FloorMowedAstroGrass - 79: FloorPlanetGrass - 82: FloorReinforced - 83: FloorReinforcedHardened - 6: FloorSnow - 96: FloorSteel - 101: FloorSteelDiagonal - 106: FloorSteelMini - 108: FloorSteelOffset - 111: FloorTechMaint - 112: FloorTechMaint2 - 113: FloorTechMaint3 - 115: FloorWhite - 119: FloorWhiteMini - 120: FloorWhiteMono - 121: FloorWhiteOffset - 123: FloorWhitePavementVertical - 124: FloorWhitePlastic - 125: FloorWood - 1: FloorWoodLarge - 127: FloorWoodTile - 128: Lattice - 129: Plating - 132: PlatingBurnt - 133: PlatingDamaged + 42: Space + 88: FloorArcadeBlue2 + 95: FloorAsteroidIronsand + 85: FloorAsteroidSand + 77: FloorAstroGrass + 26: FloorAstroIce + 16: FloorAstroSnow + 21: FloorBar + 90: FloorBlue + 94: FloorBlueCircuit + 93: FloorBoxing + 87: FloorBrokenWood + 80: FloorClown + 10: FloorConcrete + 8: FloorConcreteSmooth + 44: FloorDark + 62: FloorDarkDiagonal + 84: FloorDarkMini + 69: FloorDarkMono + 73: FloorDarkOffset + 81: FloorDarkPavement + 51: FloorDarkPlastic + 30: FloorDirt + 34: FloorFreezer + 72: FloorGlass + 19: FloorGrass + 20: FloorGrayConcrete + 27: FloorGrayConcreteMono + 49: FloorGreenCircuit + 58: FloorHydro + 56: FloorJungleAstroGrass + 40: FloorKitchen + 89: FloorLino + 53: FloorLowDesert + 60: FloorMetalDiamond + 24: FloorMowedAstroGrass + 70: FloorReinforced + 91: FloorReinforcedHardened + 98: FloorSnow + 45: FloorSteel + 59: FloorSteelDiagonal + 76: FloorSteelOffset + 43: FloorTechMaint + 52: FloorTechMaint2 + 86: FloorTechMaint3 + 71: FloorWhite + 75: FloorWhiteMini + 78: FloorWhiteOffset + 46: FloorWhitePlastic + 35: FloorWood + 25: FloorWoodLarge + 65: FloorWoodTile + 92: Lattice + 11: Plating + 97: PlatingDamaged entities: - proto: "" entities: @@ -92,339 +85,339 @@ entities: chunks: 0,0: ind: 0,0 - tiles: HwAAAAADHwAAAAADHwAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHwAAAAAAHwAAAAABHwAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHwAAAAACHwAAAAACHwAAAAADHQAAAAABHQAAAAAAgQAAAAAADgAAAAADDgAAAAAADgAAAAAAgQAAAAAADgAAAAAADgAAAAAANgAAAAABNgAAAAADDgAAAAAAgQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACgQAAAAAADgAAAAAADgAAAAAHDgAAAAAADgAAAAAADgAAAAAKDgAAAAAJDgAAAAAANgAAAAAANgAAAAADDgAAAAAADgAAAAAAHQAAAAACHQAAAAAAHQAAAAABgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAGDgAAAAAADgAAAAAADgAAAAAAHQAAAAADHQAAAAADgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAACHQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAADHQAAAAABHQAAAAAADgAAAAAADgAAAAAADgAAAAAEDgAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAACHQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAKDgAAAAAKHQAAAAADHQAAAAABMgAAAAAADgAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAADHQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAJHQAAAAAAHQAAAAACNgAAAAADNgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAABHQAAAAADNgAAAAACNgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAMDgAAAAACDgAAAAAAHQAAAAADHQAAAAACDgAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAFDgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAGDgAAAAACDgAAAAAAHQAAAAACHQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAALDgAAAAAADgAAAAAADgAAAAAAHQAAAAACHQAAAAABgQAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAFDgAAAAAADgAAAAAA + tiles: CAAAAAADCAAAAAADCAAAAAABCgAAAAADCgAAAAACCgAAAAABCgAAAAABCgAAAAADCgAAAAABCgAAAAADCgAAAAACCgAAAAADCgAAAAACCgAAAAACCgAAAAACCgAAAAAACAAAAAAACAAAAAABCAAAAAACCgAAAAAACgAAAAAACgAAAAADCgAAAAABCgAAAAAACgAAAAACCgAAAAACCgAAAAABCgAAAAABCgAAAAACCgAAAAAACgAAAAACCgAAAAABCAAAAAACCAAAAAACCAAAAAADCgAAAAABCgAAAAAACwAAAAAAEAAAAAADEAAAAAAAEAAAAAAACwAAAAAAEAAAAAAAEAAAAAAAFAAAAAABFAAAAAADEAAAAAAACwAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAACCwAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAKEAAAAAAJEAAAAAAAFAAAAAAAFAAAAAADEAAAAAAAEAAAAAAACgAAAAACCgAAAAAACgAAAAABCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAAAEAAAAAAACgAAAAADCgAAAAADCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADCgAAAAABCgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAKEAAAAAAKCgAAAAADCgAAAAABEwAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAADCgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJCgAAAAAACgAAAAACFAAAAAADFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAABCgAAAAADFAAAAAACFAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAMEAAAAAACEAAAAAAACgAAAAADCgAAAAACEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAGEAAAAAACEAAAAAAACgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAACgAAAAACCgAAAAABCwAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: HQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHwAAAAABHwAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACHwAAAAAAHwAAAAAADwAAAAADgQAAAAAADgAAAAAJDgAAAAAANgAAAAACNgAAAAADDgAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHwAAAAADHwAAAAADDwAAAAAADwAAAAAADgAAAAAADgAAAAAANgAAAAACNgAAAAADDgAAAAAKDgAAAAAADgAAAAAADgAAAAAFDgAAAAAJDgAAAAAAgQAAAAAAHQAAAAADHQAAAAAAHQAAAAACDwAAAAAADwAAAAADDwAAAAACDgAAAAAANgAAAAAANgAAAAACNgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAIDgAAAAAAgQAAAAAAHQAAAAAAHQAAAAABDwAAAAACDwAAAAAADwAAAAACNgAAAAACNgAAAAAANgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAAADgAAAAAAgQAAAAAAHQAAAAABDwAAAAAADwAAAAAADwAAAAABNgAAAAACNgAAAAADNgAAAAABDgAAAAALDgAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAAADgAAAAAGDgAAAAAADgAAAAACHQAAAAADDwAAAAABDwAAAAAADwAAAAACNgAAAAABNgAAAAACNgAAAAACDgAAAAAADgAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAADDgAAAAAADgAAAAAADgAAAAAAHQAAAAADDwAAAAABDwAAAAABDwAAAAADDgAAAAAGNgAAAAADNgAAAAADDgAAAAAADgAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAACDgAAAAABDgAAAAAADgAAAAAAHQAAAAABDwAAAAABDwAAAAABDwAAAAACDgAAAAAANgAAAAADNgAAAAAADgAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAHQAAAAADDwAAAAAADwAAAAABDgAAAAAADgAAAAAANgAAAAACNgAAAAADNgAAAAADNgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAALDgAAAAAAHQAAAAACDwAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAACNgAAAAADNgAAAAAANgAAAAACNgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAKHQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAHNgAAAAABNgAAAAADNgAAAAAANgAAAAACNgAAAAABNgAAAAAANgAAAAABNgAAAAABNgAAAAADNgAAAAAAHQAAAAACDgAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAAADgAAAAAKNgAAAAAANgAAAAABNgAAAAAANgAAAAADNgAAAAABNgAAAAACNgAAAAABNgAAAAABNgAAAAAAHQAAAAAASgAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAADDgAAAAAANgAAAAACNgAAAAACDgAAAAAIDgAAAAAADgAAAAAADgAAAAAANgAAAAAANgAAAAAADgAAAAAAHQAAAAAADgAAAAAGAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADDgAAAAAANgAAAAABNgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAACNgAAAAAAgQAAAAAAHQAAAAAC + tiles: CgAAAAADCgAAAAADCgAAAAACCgAAAAAACgAAAAADCgAAAAADCgAAAAADCgAAAAABCgAAAAAACgAAAAABCgAAAAABCgAAAAADCgAAAAADCgAAAAAACAAAAAABCAAAAAACCgAAAAACCgAAAAACCgAAAAAACgAAAAACCgAAAAAACgAAAAACCgAAAAACCgAAAAACCgAAAAACCgAAAAAACgAAAAADCgAAAAABCgAAAAADCgAAAAACCAAAAAAACAAAAAAAFQAAAAADCwAAAAAAEAAAAAAJEAAAAAAAFAAAAAACFAAAAAADEAAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAAACgAAAAAACAAAAAADCAAAAAADFQAAAAAAFQAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAADEAAAAAAKEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAJEAAAAAAACwAAAAAACgAAAAADCgAAAAAACgAAAAACFQAAAAAAFQAAAAADFQAAAAACEAAAAAAAFAAAAAAAFAAAAAACFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAIEAAAAAAACwAAAAAACgAAAAAACgAAAAABFQAAAAACFQAAAAAAFQAAAAACFAAAAAACFAAAAAAAFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAACwAAAAAACgAAAAABFQAAAAAAFQAAAAAAFQAAAAABFAAAAAACFAAAAAADFAAAAAABEAAAAAALEAAAAAAAFQAAAAADFQAAAAACFQAAAAACFQAAAAAAEAAAAAAGEAAAAAAAEAAAAAACCgAAAAADFQAAAAABFQAAAAAAFQAAAAACFAAAAAABFAAAAAACFAAAAAACEAAAAAAAEAAAAAAAFQAAAAABFQAAAAAAFQAAAAADFQAAAAADEAAAAAAAEAAAAAAAEAAAAAAACgAAAAADFQAAAAABFQAAAAABFQAAAAADEAAAAAAGFAAAAAADFAAAAAADEAAAAAAAEAAAAAAAFQAAAAABFQAAAAAAFQAAAAADFQAAAAACEAAAAAABEAAAAAAAEAAAAAAACgAAAAABFQAAAAABFQAAAAABFQAAAAACEAAAAAAAFAAAAAADFAAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAADFQAAAAAAFQAAAAABEAAAAAAAEAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAALEAAAAAAACgAAAAACFQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAKCgAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAACgAAAAACEAAAAAACGQAAAAACGQAAAAADGQAAAAAAGQAAAAAAEAAAAAAKFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAACgAAAAAAGAAAAAAAGQAAAAABGQAAAAAAGQAAAAADGQAAAAADEAAAAAAAFAAAAAACFAAAAAACEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAAAFAAAAAAAEAAAAAAACgAAAAAAEAAAAAAGGQAAAAADGQAAAAAAGQAAAAAAGQAAAAADEAAAAAAAFAAAAAABFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAAACwAAAAAACgAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: HQAAAAACHQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAABHQAAAAACgQAAAAAADgAAAAAADgAAAAAADgAAAAAFDgAAAAAADgAAAAAIDgAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAALDgAAAAAADgAAAAAAHQAAAAADHQAAAAADNgAAAAAANgAAAAAANgAAAAABNgAAAAABDgAAAAAADgAAAAAIDgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAFDgAAAAAADgAAAAAAHQAAAAADHQAAAAADNgAAAAACNgAAAAABNgAAAAABNgAAAAACNgAAAAADNgAAAAADNgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAFDgAAAAADDgAAAAAADgAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAABNgAAAAAANgAAAAABNgAAAAABNgAAAAAADgAAAAAADgAAAAABDgAAAAALDgAAAAAAHQAAAAACHQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAADNgAAAAADNgAAAAABNgAAAAADNgAAAAAANgAAAAABDgAAAAADDgAAAAAADgAAAAAAHQAAAAABHQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAABNgAAAAAANgAAAAAANgAAAAAADgAAAAAGDgAAAAAADgAAAAAAHQAAAAADHQAAAAABgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAACNgAAAAACNgAAAAACDgAAAAAADgAAAAAADgAAAAABHQAAAAACHQAAAAAADgAAAAAADgAAAAAADgAAAAAFDgAAAAAFDQAAAAAADQAAAAAADQAAAAAADgAAAAACDgAAAAAANgAAAAAANgAAAAABNgAAAAACDgAAAAAADgAAAAAAHQAAAAACHQAAAAADDgAAAAAADgAAAAAADgAAAAAEDgAAAAAADQAAAAAANwAAAAADDQAAAAAADgAAAAAADgAAAAAANgAAAAACNgAAAAABNgAAAAABDgAAAAAADgAAAAABHQAAAAADHQAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAEDgAAAAAADgAAAAAANgAAAAAANgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAACgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAABNgAAAAADNgAAAAABDgAAAAAHHQAAAAACHQAAAAADHQAAAAABgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAHDgAAAAAADgAAAAAADgAAAAAANgAAAAACNgAAAAACNgAAAAAADgAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABgQAAAAAADgAAAAAADgAAAAAADgAAAAAKDgAAAAAMDgAAAAAADgAAAAAADgAAAAAANgAAAAACNgAAAAACNgAAAAAADgAAAAAFHwAAAAAAHwAAAAABHwAAAAABHQAAAAADHQAAAAADgQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAADgAAAAACDgAAAAAADgAAAAALNgAAAAABNgAAAAABgQAAAAAAHwAAAAABHwAAAAABHwAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAA + tiles: CgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAABCgAAAAACCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAIEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAALEAAAAAAAEAAAAAAACgAAAAADCgAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABEAAAAAAAEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAACgAAAAADCgAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAADEAAAAAAAEAAAAAAACgAAAAAACgAAAAAAEAAAAAAAEAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAEAAAAAAAEAAAAAABEAAAAAALEAAAAAAACgAAAAACCgAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAABEAAAAAADEAAAAAAAEAAAAAAACgAAAAABCgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAEAAAAAAGEAAAAAAAEAAAAAAACgAAAAADCgAAAAABCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAACFAAAAAACEAAAAAAAEAAAAAAAEAAAAAABCgAAAAACCgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAFGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAACEAAAAAAAFAAAAAAAFAAAAAABFAAAAAACEAAAAAAAEAAAAAAACgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAAGgAAAAAAGwAAAAADGgAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAABFAAAAAABEAAAAAAAEAAAAAABCgAAAAADCgAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAAEEAAAAAAAEAAAAAAAFAAAAAAAFAAAAAAAEAAAAAAAEAAAAAAACgAAAAAACgAAAAACCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAABFAAAAAADFAAAAAABEAAAAAAHCgAAAAACCgAAAAADCgAAAAABCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAACFAAAAAAAEAAAAAAACgAAAAADCgAAAAAACgAAAAAACgAAAAABCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAKEAAAAAAMEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAACFAAAAAAAEAAAAAAFCAAAAAAACAAAAAABCAAAAAABCgAAAAADCgAAAAADCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAEAAAAAACEAAAAAAAEAAAAAALFAAAAAABFAAAAAABCwAAAAAACAAAAAABCAAAAAABCAAAAAADCgAAAAACCgAAAAAACgAAAAABCgAAAAAACgAAAAABCgAAAAAACgAAAAADCgAAAAACCgAAAAACCgAAAAADCgAAAAAACgAAAAAACgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: NgAAAAACNgAAAAADNgAAAAACNgAAAAAANgAAAAAANgAAAAACNgAAAAAANgAAAAAANgAAAAADNgAAAAAANgAAAAACNgAAAAACNgAAAAABNgAAAAABNgAAAAACHQAAAAADNgAAAAABMgAAAAAADQAAAAAADQAAAAAAMgAAAAAANgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAHQAAAAADNgAAAAADDQAAAAAADQAAAAAADQAAAAAADgAAAAAANgAAAAACDgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAADMgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAANgAAAAACDQAAAAAADQAAAAAADgAAAAAADgAAAAAANgAAAAACDgAAAAAADgAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAACNgAAAAAAMgAAAAAADQAAAAAADgAAAAAAMgAAAAAANgAAAAACNgAAAAACDgAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAANgAAAAADNgAAAAAANgAAAAABNgAAAAADNgAAAAAANgAAAAAADgAAAAAMMgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAANgAAAAAANgAAAAABNgAAAAACHQAAAAAANgAAAAAADgAAAAAADgAAAAADDgAAAAAANgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAADNgAAAAAANgAAAAAANgAAAAADNgAAAAABHQAAAAACNgAAAAACDgAAAAAAMgAAAAAADgAAAAAADgAAAAAAMgAAAAAADgAAAAAHDgAAAAAEDgAAAAAANgAAAAACNgAAAAAANgAAAAAANgAAAAACNgAAAAABNgAAAAADHQAAAAABNgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAAANgAAAAAANgAAAAACNgAAAAABNgAAAAABDgAAAAAADgAAAAAAHQAAAAABNgAAAAABDgAAAAAEDgAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAACNgAAAAADNgAAAAABNgAAAAABDgAAAAAADgAAAAAADgAAAAAEDgAAAAAAHQAAAAABNgAAAAAADgAAAAAEDgAAAAAGDgAAAAAIDgAAAAAADgAAAAAANgAAAAADNgAAAAADNgAAAAADNgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAAGHQAAAAADNgAAAAADDgAAAAAAMgAAAAAADgAAAAAADgAAAAAAMgAAAAAANgAAAAACNgAAAAAANgAAAAABDgAAAAAADgAAAAAADgAAAAAHDgAAAAAADgAAAAAAgQAAAAAAHQAAAAAANgAAAAABDgAAAAAADgAAAAAGDgAAAAAADgAAAAAANgAAAAADNgAAAAADNgAAAAADNgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAHQAAAAADHQAAAAACNgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAANgAAAAAANgAAAAACNgAAAAAADgAAAAAADgAAAAAADgAAAAAFDgAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACNgAAAAADgQAAAAAADgAAAAAJDgAAAAAADgAAAAALNgAAAAAANgAAAAADNgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAHQAAAAADHQAAAAACHwAAAAACHwAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHwAAAAADHwAAAAAB + tiles: FAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAACCgAAAAADFAAAAAABEwAAAAAAGgAAAAAAGgAAAAAAEwAAAAAAFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAADFAAAAAADGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAAAFAAAAAACEAAAAAAAEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAAAFAAAAAACGgAAAAAAGgAAAAAAEAAAAAAAEAAAAAAAFAAAAAACEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAACFAAAAAAAEwAAAAAAGgAAAAAAEAAAAAAAEwAAAAAAFAAAAAACFAAAAAACEAAAAAAFEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAEAAAAAAMEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAFAAAAAAAFAAAAAABFAAAAAACCgAAAAAAFAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAFAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABCgAAAAACFAAAAAACEAAAAAAAEwAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAEAAAAAAHEAAAAAAEEAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAADCgAAAAABFAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAABEAAAAAAAEAAAAAAACgAAAAABFAAAAAABEAAAAAAEEAAAAAAGEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAABEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAACgAAAAABFAAAAAAAEAAAAAAEEAAAAAAGEAAAAAAIEAAAAAAAEAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAGCgAAAAADFAAAAAADEAAAAAAAEwAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAFAAAAAACFAAAAAAAFAAAAAABEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAACwAAAAAACgAAAAAAFAAAAAABEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAADCgAAAAACFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAACFAAAAAADCwAAAAAAEAAAAAAJEAAAAAAAEAAAAAALFAAAAAAAFAAAAAADFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAADCgAAAAACCAAAAAACCAAAAAADCgAAAAACCgAAAAAACgAAAAAACgAAAAABCgAAAAABCgAAAAABCgAAAAABCgAAAAADCgAAAAADCgAAAAACCgAAAAABCgAAAAABCgAAAAACCgAAAAAACAAAAAADCAAAAAAB version: 6 -1,1: ind: -1,1 - tiles: AwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAACNgAAAAACNgAAAAACNgAAAAADNgAAAAACNgAAAAACDgAAAAAHHQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAANgAAAAACNgAAAAABNgAAAAABNgAAAAABNgAAAAABNgAAAAACNgAAAAABNgAAAAADNgAAAAACDgAAAAAAHQAAAAADgQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAYAAAAAADgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAYAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIAAAAAACYAAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAYAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAfQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABfQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAABgQAAAAAAYAAAAAACYAAAAAAC + tiles: HgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAACwAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAACEAAAAAAHCgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAACEAAAAAAACgAAAAADCwAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABCwAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAALQAAAAADCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAALQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAACLQAAAAACIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAALQAAAAADIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAAALQAAAAAAIwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACIwAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAABLQAAAAAAIwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAADIwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABIwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAADCwAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAACIwAAAAACIwAAAAACIwAAAAABCwAAAAAALQAAAAACLQAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: fAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAACfAAAAAABfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAMfAAAAAADfAAAAAADfAAAAAADfAAAAAACfAAAAAABfAAAAAACfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQwAAAAACQwAAAAAADgAAAAAADgAAAAAKgQAAAAAAgQAAAAAAfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQwAAAAABQwAAAAACDgAAAAAADgAAAAAMfAAAAAACgQAAAAAAfAAAAAABfAAAAAABgQAAAAAAfAAAAAACfAAAAAADfAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAQwAAAAADQwAAAAAEDgAAAAAADgAAAAAAfAAAAAABgQAAAAAAfAAAAAAAfAAAAAABgQAAAAAAfAAAAAADfAAAAAAAfAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQwAAAAAEQwAAAAADDgAAAAAADgAAAAAAfAAAAAABgQAAAAAAfAAAAAACfAAAAAABgQAAAAAAfAAAAAADfAAAAAAAfAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAAOQAAAAAAYAAAAAABOQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAAOQAAAAAAYAAAAAACOQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAAOQAAAAAAKQAAAAABOQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAAOQAAAAAAYAAAAAABOQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAADgAAAAAAOQAAAAAAYAAAAAABOQAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAABgQAAAAAADgAAAAAAIAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAABgQAAAAAADgAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAADgAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABHQAAAAAA + tiles: LgAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAMLgAAAAADLgAAAAADLgAAAAADLgAAAAACLgAAAAABLgAAAAACLgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANQAAAAACNQAAAAAAEAAAAAAAEAAAAAAKCwAAAAAACwAAAAAALgAAAAABCwAAAAAACwAAAAAACwAAAAAALgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANQAAAAABNQAAAAACEAAAAAAAEAAAAAAMLgAAAAACCwAAAAAALgAAAAABLgAAAAABCwAAAAAALgAAAAACLgAAAAADLgAAAAAACwAAAAAAKwAAAAAAKwAAAAAANAAAAAAANQAAAAADNQAAAAAEEAAAAAAAEAAAAAAALgAAAAABCwAAAAAALgAAAAAALgAAAAABCwAAAAAALgAAAAADLgAAAAAALgAAAAACCwAAAAAAKwAAAAAAKwAAAAAACwAAAAAANQAAAAAENQAAAAADEAAAAAAAEAAAAAAALgAAAAABCwAAAAAALgAAAAACLgAAAAABCwAAAAAALgAAAAADLgAAAAAALgAAAAABCwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEAAAAAAAMQAAAAAALQAAAAABMQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAANAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEAAAAAAAMQAAAAAALQAAAAACMQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEAAAAAAAMQAAAAAAMwAAAAABMQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAMQAAAAAALQAAAAABMQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAAACwAAAAAAEAAAAAAAMQAAAAAALQAAAAABMQAAAAAALQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAABCwAAAAAAEAAAAAAALAAAAAACCwAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAABCwAAAAAAEAAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAALAAAAAAACwAAAAAACwAAAAAAEAAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAAALQAAAAAALQAAAAABCgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: YAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABHQAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABHQAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAADwAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADwAAAAADDwAAAAADDwAAAAAADwAAAAADgQAAAAAADwAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAAAKQAAAAACDwAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAABDwAAAAAADwAAAAAADwAAAAAAKQAAAAAADwAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAACKQAAAAABDwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAABKQAAAAAADwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAACKQAAAAABDwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAAAKQAAAAACDwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAADDwAAAAABDwAAAAADDwAAAAADgQAAAAAADwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADgQAAAAAADwAAAAABDwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAABgQAAAAAADwAAAAABDwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAADwAAAAAADwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAADwAAAAAADwAAAAAC + tiles: LQAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAABLQAAAAABCgAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAABCgAAAAADCwAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAALAAAAAACCwAAAAAACwAAAAAAFQAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAFQAAAAADFQAAAAADFQAAAAAAFQAAAAADCwAAAAAAFQAAAAABLQAAAAABLQAAAAABLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAFQAAAAAAFQAAAAABFQAAAAADFQAAAAAAMwAAAAACFQAAAAABLQAAAAAALQAAAAADLQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAABFQAAAAAAFQAAAAAAFQAAAAAAMwAAAAAAFQAAAAADLQAAAAADLQAAAAABLQAAAAAALQAAAAABCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAABFQAAAAADFQAAAAADFQAAAAACMwAAAAABFQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAAAFQAAAAADFQAAAAACFQAAAAABMwAAAAAAFQAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACMwAAAAABFQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAADFQAAAAABFQAAAAAAFQAAAAAAMwAAAAACFQAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAADFQAAAAABFQAAAAADFQAAAAADCwAAAAAAFQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAFQAAAAAACwAAAAAACwAAAAAACwAAAAAAFQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAADIwAAAAABIwAAAAADCwAAAAAAFQAAAAABFQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAAAIwAAAAABCwAAAAAAFQAAAAABFQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAABIwAAAAAACwAAAAAAFQAAAAAAFQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAACIwAAAAADCwAAAAAAFQAAAAAAFQAAAAAC version: 6 -2,1: ind: -2,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAfQAAAAABfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAD + tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAHgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAHgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAIwAAAAABIwAAAAABIwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAABIwAAAAAD version: 6 0,1: ind: 0,1 - tiles: HQAAAAACHQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAADDgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAALDgAAAAAADgAAAAADDgAAAAABYAAAAAADYAAAAAADKQAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABKQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAZQAAAAADZQAAAAABZQAAAAABZQAAAAACYAAAAAACYAAAAAAAKQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAKQAAAAAAZQAAAAADZQAAAAABZQAAAAAAZQAAAAAAYAAAAAACYAAAAAACgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAKQAAAAAAZQAAAAADZQAAAAACZQAAAAACZQAAAAAAYAAAAAADYAAAAAABYAAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAZQAAAAAAZQAAAAADZQAAAAAAZQAAAAAAYAAAAAACYAAAAAABgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAD + tiles: CgAAAAACCgAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAAACgAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAALQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAALEAAAAAAAEAAAAAADEAAAAAABLQAAAAADLQAAAAADMwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABMwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACwAAAAAAOwAAAAADOwAAAAABOwAAAAABOwAAAAACLQAAAAACLQAAAAAAMwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAMwAAAAAAOwAAAAADOwAAAAABOwAAAAAAOwAAAAAALQAAAAACLQAAAAACCwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAMwAAAAAAOwAAAAADOwAAAAACOwAAAAACOwAAAAAALQAAAAADLQAAAAABLQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACwAAAAAAOwAAAAAAOwAAAAADOwAAAAAAOwAAAAAALQAAAAACLQAAAAABCwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADLQAAAAABLQAAAAABCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAABLQAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAABLQAAAAABKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAACLQAAAAADCwAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAACLQAAAAADCwAAAAAAKwAAAAAACwAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAADLQAAAAAALQAAAAADLQAAAAADCwAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAADCwAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAAD version: 6 1,1: ind: 1,1 - tiles: DgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAACDgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAfwAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAADKQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAfwAAAAAAfwAAAAADfwAAAAABfwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAADfQAAAAABfQAAAAACfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAfwAAAAAAfQAAAAACfQAAAAACfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAfwAAAAACfQAAAAABfQAAAAADfQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAIAAAAAACIAAAAAACgQAAAAAAfwAAAAADfwAAAAADfwAAAAADfwAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAABZQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAcAAAAAAA + tiles: EAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAAAMwAAAAAAMwAAAAACCwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAACEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAAAQQAAAAADCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAAACwAAAAAAQQAAAAAAQQAAAAADQQAAAAABQQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAADIwAAAAABIwAAAAACIwAAAAABCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAALAAAAAAALAAAAAABCwAAAAAAQQAAAAAAIwAAAAACIwAAAAACIwAAAAADCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAACCwAAAAAAQQAAAAACIwAAAAABIwAAAAADIwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAAPAAAAAAALAAAAAACLAAAAAACCwAAAAAAQQAAAAADQQAAAAADQQAAAAADQQAAAAACCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAALAAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAPgAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAAALQAAAAACKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAACCwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAACLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAABKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAABOwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAACCwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAAACwAAAAAANAAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAABCwAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAACLQAAAAAACwAAAAAANAAAAAAA version: 6 1,0: ind: 1,0 - tiles: HQAAAAADHQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACHQAAAAAAHQAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABDgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADDgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABDgAAAAAADgAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABJQAAAAABJQAAAAACJQAAAAACgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACDgAAAAAADgAAAAAAgQAAAAAAIAAAAAADIQAAAAADIQAAAAADIQAAAAABIQAAAAACIQAAAAACJQAAAAACJQAAAAADJQAAAAABKQAAAAADgQAAAAAAKQAAAAACKQAAAAABDgAAAAABDgAAAAAAgQAAAAAAIAAAAAACIQAAAAADKQAAAAABIQAAAAADIQAAAAACKQAAAAACKQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAACDgAAAAAADgAAAAAAgQAAAAAAKQAAAAADIQAAAAACKQAAAAAAIQAAAAADIQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAAADgAAAAAADgAAAAAAgQAAAAAAIAAAAAAAIQAAAAACIQAAAAAAIQAAAAABIQAAAAABIQAAAAACJQAAAAABJQAAAAAAJQAAAAADKQAAAAABgQAAAAAAKQAAAAADKQAAAAABDgAAAAAADgAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAADJQAAAAACJQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAKQAAAAACKQAAAAABDgAAAAAEDgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACDgAAAAAGDgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAAADgAAAAAADgAAAAAEDgAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAAADgAAAAAADgAAAAAADgAAAAACgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACDgAAAAAEDgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAADKQAAAAABKQAAAAADKQAAAAADDgAAAAAADgAAAAACDgAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAADKQAAAAABKQAAAAACgQAAAAAAKQAAAAADKQAAAAADKQAAAAACKQAAAAAC + tiles: CgAAAAADCgAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAAALQAAAAACCgAAAAAACgAAAAACLQAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAABEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAADEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAAMwAAAAADCwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAABEAAAAAAAEAAAAAAACwAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABRQAAAAABRQAAAAACRQAAAAACCwAAAAAACwAAAAAAMwAAAAAAMwAAAAACEAAAAAAAEAAAAAAACwAAAAAALAAAAAADPgAAAAADPgAAAAADPgAAAAABPgAAAAACPgAAAAACRQAAAAACRQAAAAADRQAAAAABMwAAAAADCwAAAAAAMwAAAAACMwAAAAABEAAAAAABEAAAAAAACwAAAAAALAAAAAACPgAAAAADMwAAAAABPgAAAAADPgAAAAACMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAACEAAAAAAAEAAAAAAACwAAAAAAMwAAAAADPgAAAAACMwAAAAAAPgAAAAADPgAAAAABMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAAAEAAAAAAAEAAAAAAACwAAAAAALAAAAAAAPgAAAAACPgAAAAAAPgAAAAABPgAAAAABPgAAAAACRQAAAAABRQAAAAAARQAAAAADMwAAAAABCwAAAAAAMwAAAAADMwAAAAABEAAAAAAAEAAAAAAACwAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAADRQAAAAACRQAAAAAARQAAAAACCwAAAAAACwAAAAAAMwAAAAACMwAAAAABEAAAAAAEEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAACEAAAAAAGEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABCwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAAAEAAAAAAAEAAAAAAEEAAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAABCwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAAEAAAAAAAEAAAAAAAEAAAAAACCwAAAAAACwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACEAAAAAAEEAAAAAAAEAAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADEAAAAAAAEAAAAAACEAAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAACCwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAAC version: 6 1,-1: ind: 1,-1 - tiles: DgAAAAAGDgAAAAAIgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAADDgAAAAAADgAAAAAJDQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAABKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAAADgAAAAAEDgAAAAAADQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAADgAAAAAADgAAAAAADQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAABbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAADKQAAAAACDgAAAAAADgAAAAAEDQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAACKQAAAAAADgAAAAAADgAAAAAJgQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAABKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACDgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACDgAAAAAADgAAAAAAgQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAAADgAAAAAADgAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAADKQAAAAABDgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAACKQAAAAACDgAAAAAADgAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAADKQAAAAADDgAAAAAADgAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAADKQAAAAABDgAAAAAADgAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAACKQAAAAACDgAAAAAADgAAAAAMgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADHQAAAAACHQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAB + tiles: EAAAAAAGEAAAAAAICwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADEAAAAAAAEAAAAAAJGgAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAEAAAAAAEEAAAAAAAGgAAAAAACwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAEAAAAAAAEAAAAAAAGgAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAADMwAAAAABKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAADMwAAAAACEAAAAAAAEAAAAAAEGgAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAACMwAAAAAAEAAAAAAAEAAAAAAJCwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAACEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAACwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAADMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACEAAAAAAAEAAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAAAEAAAAAAAEAAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAADMwAAAAABEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAACMwAAAAACEAAAAAAAEAAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAADMwAAAAADEAAAAAAAEAAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAMwAAAAADMwAAAAABEAAAAAAAEAAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAACMwAAAAACEAAAAAAAEAAAAAAMCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAACwAAAAAALQAAAAADCgAAAAACCgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAABLQAAAAABLQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: fQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAIQAAAAABKQAAAAACKQAAAAADfQAAAAAAfQAAAAACfwAAAAABfQAAAAADfQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAKQAAAAADKQAAAAABgQAAAAAAKQAAAAAAKQAAAAACfQAAAAADfQAAAAACgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAACKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAKQAAAAADKQAAAAABKQAAAAADKQAAAAADKQAAAAACKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAAC + tiles: IwAAAAADIwAAAAAACwAAAAAAIwAAAAABIwAAAAABCwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAMwAAAAAAMwAAAAAAPgAAAAABMwAAAAACMwAAAAADIwAAAAAAIwAAAAACQQAAAAABIwAAAAADIwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAMwAAAAADMwAAAAABCwAAAAAAMwAAAAAAMwAAAAACIwAAAAADIwAAAAACCwAAAAAAIwAAAAACIwAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAMwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAADMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAACMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACCwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAACMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAADCwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: YAAAAAACYAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAABYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAABYAAAAAACYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAADKQAAAAADKQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAACKQAAAAADYAAAAAADYAAAAAABKQAAAAADKQAAAAACKQAAAAABKQAAAAABKQAAAAABKQAAAAACKQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAADKQAAAAABKQAAAAAAKQAAAAACYAAAAAAAYAAAAAADgQAAAAAAKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAABYAAAAAACYAAAAAACgQAAAAAAKQAAAAABKQAAAAABKQAAAAACgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAADgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABYAAAAAADYAAAAAADgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAACfwAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABYAAAAAAAYAAAAAABgQAAAAAAKQAAAAACKQAAAAABKQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHQAAAAACHQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LQAAAAACLQAAAAABCwAAAAAAKgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAKgAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAABLQAAAAACLQAAAAAACwAAAAAAKgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAKgAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAACLQAAAAABLQAAAAADCwAAAAAAKgAAAAAACwAAAAAACwAAAAAARgAAAAAACwAAAAAARgAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAAALQAAAAAALQAAAAADCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAABLQAAAAACLQAAAAABKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAACCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAADLQAAAAADLQAAAAABMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAAAMwAAAAACLQAAAAAALQAAAAADCwAAAAAAMwAAAAAAMwAAAAACMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAABLQAAAAACLQAAAAACCwAAAAAAMwAAAAABMwAAAAABMwAAAAACCwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADCwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABLQAAAAADLQAAAAADCwAAAAAAMwAAAAACMwAAAAAAMwAAAAAACwAAAAAAIwAAAAACIwAAAAACIwAAAAACIwAAAAACQQAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAABLQAAAAAALQAAAAABCwAAAAAAMwAAAAACMwAAAAABMwAAAAAACwAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAACgAAAAACCgAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: cwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAYAAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAADKQAAAAAAKQAAAAACKQAAAAABKQAAAAACYAAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAACcwAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAABKQAAAAACgQAAAAAAYAAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAABdwAAAAACdwAAAAACdwAAAAADgQAAAAAAYAAAAAAAcwAAAAADcwAAAAACgQAAAAAAcwAAAAABcwAAAAACcwAAAAADgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAADdwAAAAABdwAAAAACdwAAAAADgQAAAAAAYAAAAAADcwAAAAADcwAAAAADgQAAAAAAcwAAAAACcwAAAAACcwAAAAADgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAABgQAAAAAAYAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAACMAAAAAABgQAAAAAAQwAAAAAAQwAAAAABQwAAAAAFQwAAAAAAgQAAAAAADgAAAAADDgAAAAAADgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAMAAAAAAAMAAAAAACMAAAAAAAMAAAAAACgQAAAAAAQwAAAAAAQwAAAAAFQwAAAAAEQwAAAAAEgQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAYAAAAAADgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAMgQAAAAAAQwAAAAAEQwAAAAADQwAAAAABQwAAAAACgQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAYAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAFDgAAAAAADgAAAAAHDgAAAAAADgAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAJHQAAAAAA + tiles: RwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAARwAAAAACRwAAAAABRwAAAAADCwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAACwAAAAAALQAAAAAARwAAAAABRwAAAAABCwAAAAAARwAAAAADRwAAAAAARwAAAAAACwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAACLQAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAACCwAAAAAALQAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAAMwAAAAABSwAAAAACSwAAAAACSwAAAAADCwAAAAAALQAAAAAARwAAAAADRwAAAAACCwAAAAAARwAAAAABRwAAAAACRwAAAAADCwAAAAAASQAAAAAASQAAAAAASQAAAAAAMwAAAAADSwAAAAABSwAAAAACSwAAAAADCwAAAAAALQAAAAADRwAAAAADRwAAAAADCwAAAAAARwAAAAACRwAAAAACRwAAAAADCwAAAAAASQAAAAAASQAAAAAASQAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAABCwAAAAAALQAAAAAARwAAAAADRwAAAAABCwAAAAAACwAAAAAARwAAAAAARwAAAAACCwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAASQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAALQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACCwAAAAAASAAAAAAASAAAAAAASAAAAAACSAAAAAABCwAAAAAANQAAAAAANQAAAAABNQAAAAAFNQAAAAAACwAAAAAAEAAAAAADEAAAAAAAEAAAAAAACwAAAAAALQAAAAABCwAAAAAASAAAAAAASAAAAAACSAAAAAAASAAAAAACCwAAAAAANQAAAAAANQAAAAAFNQAAAAAENQAAAAAECwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAALQAAAAADCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAMCwAAAAAANQAAAAAENQAAAAADNQAAAAABNQAAAAACCwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAACwAAAAAALQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAKEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJCgAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: cwAAAAACcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAADcwAAAAABbAAAAAAAbAAAAAAAbAAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAACbAAAAAAAbAAAAAAAbAAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABbAAAAAAAbAAAAAAAbAAAAAAAcwAAAAADgQAAAAAAcwAAAAABcwAAAAACcwAAAAADgQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAfAAAAAAAfAAAAAACfAAAAAABfAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADfAAAAAAAfAAAAAACfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfAAAAAACfAAAAAAAfAAAAAABfAAAAAABgQAAAAAAfAAAAAABfAAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABfAAAAAABfAAAAAABfAAAAAADgQAAAAAAfAAAAAABfAAAAAAAfAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAACDAAAAAACDAAAAAACfAAAAAADfAAAAAADfAAAAAAAfAAAAAACgQAAAAAAfAAAAAACfAAAAAACfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACfAAAAAADfAAAAAABfAAAAAAAfAAAAAADgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADSgAAAAAAMgAAAAAAMgAAAAAAfAAAAAADfAAAAAADfAAAAAADfAAAAAADfAAAAAABfAAAAAADfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABSgAAAAAAMgAAAAAADgAAAAAA + tiles: RwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAADCwAAAAAARwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAAARwAAAAAARwAAAAAACwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACCwAAAAAARwAAAAABRwAAAAABRwAAAAAACwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABTAAAAAAATAAAAAAATAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAACTAAAAAAATAAAAAAATAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAABTAAAAAAATAAAAAAATAAAAAAARwAAAAADCwAAAAAARwAAAAABRwAAAAACRwAAAAADCwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACCwAAAAAARwAAAAAARwAAAAACRwAAAAADCwAAAAAARwAAAAAARwAAAAAACwAAAAAARwAAAAACRwAAAAADRwAAAAAACwAAAAAALgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAABRwAAAAACCwAAAAAARwAAAAAARwAAAAAARwAAAAABCwAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAADLgAAAAAALgAAAAACLgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAALgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALgAAAAACLgAAAAAALgAAAAABLgAAAAABCwAAAAAALgAAAAABLgAAAAACLgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAABLgAAAAABLgAAAAABLgAAAAADCwAAAAAALgAAAAABLgAAAAAALgAAAAACKwAAAAAACwAAAAAACwAAAAAACwAAAAAAGAAAAAAATQAAAAACTQAAAAACTQAAAAACLgAAAAADLgAAAAADLgAAAAAALgAAAAACCwAAAAAALgAAAAACLgAAAAACLgAAAAADCwAAAAAACwAAAAAACwAAAAAANAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAATQAAAAACLgAAAAADLgAAAAABLgAAAAAALgAAAAADCwAAAAAACwAAAAAALgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAATQAAAAADGAAAAAAAEwAAAAAAEwAAAAAALgAAAAADLgAAAAADLgAAAAADLgAAAAADLgAAAAABLgAAAAADLgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAATQAAAAABGAAAAAAAEwAAAAAAEAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: KQAAAAABgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAACbAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABKQAAAAACgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAIAAAAAADbAAAAAAAIAAAAAACIQAAAAADYAAAAAACYAAAAAACYAAAAAAAIQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABbAAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIQAAAAAAIAAAAAADbAAAAAAAIAAAAAACgQAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAACYAAAAAABgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACbAAAAAAAIAAAAAAAYAAAAAACRAAAAAAARAAAAAAARAAAAAAAIAAAAAABYAAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAABYAAAAAABdwAAAAAAdwAAAAACdwAAAAABcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAYAAAAAABdwAAAAADdwAAAAAAdwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAfAAAAAABfAAAAAAAfAAAAAAAfAAAAAACfAAAAAAAfAAAAAADgQAAAAAAfAAAAAABfAAAAAADYAAAAAACcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAACfAAAAAABfAAAAAADfAAAAAADfAAAAAACfAAAAAACfAAAAAACgQAAAAAAfAAAAAAAfAAAAAADfAAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABfAAAAAABfAAAAAAAfAAAAAADfAAAAAABfAAAAAACgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAABcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAfAAAAAAAfAAAAAABfAAAAAACfAAAAAABfAAAAAACfAAAAAABfAAAAAADfAAAAAABfAAAAAABfAAAAAACfAAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAAAfAAAAAABfAAAAAACfAAAAAABfAAAAAABfAAAAAAAfAAAAAADfAAAAAACfAAAAAACfAAAAAAAfAAAAAABfAAAAAADeQAAAAAAeQAAAAAAcwAAAAAAcwAAAAADcwAAAAABgQAAAAAAfAAAAAADfAAAAAABfAAAAAADfAAAAAABfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAADeQAAAAAAeQAAAAAAcwAAAAABcwAAAAABcwAAAAADgQAAAAAAfAAAAAACfAAAAAAAfAAAAAABfAAAAAADfAAAAAADfAAAAAADgQAAAAAAfAAAAAACfAAAAAABfAAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAADfAAAAAAAfAAAAAAAfAAAAAACfAAAAAABfAAAAAADfAAAAAADfAAAAAAAgQAAAAAAfAAAAAADfAAAAAABYAAAAAAC + tiles: MwAAAAABCwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAACwAAAAAALAAAAAACTAAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABMwAAAAACCwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAACwAAAAAALAAAAAADTAAAAAAALAAAAAACPgAAAAADLQAAAAACLQAAAAACLQAAAAAAPgAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAABTAAAAAAALAAAAAACCwAAAAAALQAAAAADLQAAAAACLQAAAAADCwAAAAAALQAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAADPgAAAAAALAAAAAADTAAAAAAALAAAAAACCwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAALAAAAAACLQAAAAABCwAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAACTAAAAAAALAAAAAAALQAAAAACPAAAAAAAPAAAAAAAPAAAAAAALAAAAAABLQAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAACwAAAAAALAAAAAACLAAAAAACLAAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAALAAAAAABLQAAAAABSwAAAAAASwAAAAACSwAAAAABRwAAAAABRwAAAAAARwAAAAACCwAAAAAALAAAAAAALAAAAAACLAAAAAADCwAAAAAALAAAAAACLAAAAAADLAAAAAADCwAAAAAALQAAAAABSwAAAAADSwAAAAAASwAAAAADRwAAAAAARwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADSwAAAAAASwAAAAAASwAAAAAARwAAAAAARwAAAAAACwAAAAAALgAAAAABLgAAAAAALgAAAAAALgAAAAACLgAAAAAALgAAAAADCwAAAAAALgAAAAABLgAAAAADLQAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACLgAAAAABLgAAAAADLgAAAAADLgAAAAACLgAAAAACLgAAAAACCwAAAAAALgAAAAAALgAAAAADLgAAAAABRwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAADLgAAAAABLgAAAAACCwAAAAAALgAAAAAALgAAAAAALgAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAALgAAAAAALgAAAAABLgAAAAACLgAAAAABLgAAAAACLgAAAAABLgAAAAADLgAAAAABLgAAAAABLgAAAAACLgAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAAALgAAAAABLgAAAAACLgAAAAABLgAAAAABLgAAAAAALgAAAAADLgAAAAACLgAAAAACLgAAAAAALgAAAAABLgAAAAADTgAAAAAATgAAAAAARwAAAAAARwAAAAADRwAAAAABCwAAAAAALgAAAAADLgAAAAABLgAAAAADLgAAAAABLgAAAAAALgAAAAAACwAAAAAALgAAAAAALgAAAAAALgAAAAADTgAAAAAATgAAAAAARwAAAAABRwAAAAABRwAAAAADCwAAAAAALgAAAAACLgAAAAAALgAAAAABLgAAAAADLgAAAAADLgAAAAADCwAAAAAALgAAAAACLgAAAAABLgAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADLgAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAADLgAAAAADLgAAAAAACwAAAAAALgAAAAADLgAAAAABLQAAAAAC version: 6 0,-3: ind: 0,-3 - tiles: YAAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABZQAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACZQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADJQAAAAACJQAAAAACJQAAAAADJQAAAAAAJQAAAAACJQAAAAACJQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAADYAAAAAADJQAAAAADJQAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAJQAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAABJQAAAAABJQAAAAABYAAAAAADJQAAAAADJQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAADJQAAAAABJQAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADJQAAAAADJQAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABJQAAAAADJQAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABJQAAAAACJQAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABJQAAAAACJQAAAAACJQAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACJQAAAAABJQAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAJQAAAAADJQAAAAAAJQAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAJQAAAAABJQAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADJQAAAAAAJQAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: LQAAAAAALQAAAAABLQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAABOwAAAAADLQAAAAAALQAAAAADLQAAAAACLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACOwAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAADCwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAAALQAAAAABCwAAAAAALQAAAAADRQAAAAACRQAAAAACRQAAAAADRQAAAAAARQAAAAACRQAAAAACRQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAACCwAAAAAALQAAAAADRQAAAAAARQAAAAAARQAAAAAARQAAAAACRQAAAAABRQAAAAACRQAAAAADLQAAAAADRQAAAAADRQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAACCwAAAAAALQAAAAAARQAAAAABRQAAAAADRQAAAAAARQAAAAACRQAAAAABRQAAAAABRQAAAAABLQAAAAADRQAAAAADRQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAAALQAAAAACLQAAAAADRQAAAAABRQAAAAABLQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADRQAAAAADRQAAAAADLQAAAAADLQAAAAABCwAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAADCwAAAAAALQAAAAABRQAAAAADRQAAAAADLQAAAAABLQAAAAACCwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAABRQAAAAACRQAAAAACLQAAAAADLQAAAAADCwAAAAAALQAAAAABLQAAAAACLQAAAAABRQAAAAACRQAAAAACRQAAAAACLQAAAAACLQAAAAACLQAAAAACCwAAAAAALQAAAAAARQAAAAAARQAAAAACLQAAAAAALQAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAACwAAAAAALQAAAAACRQAAAAABRQAAAAADLQAAAAABLQAAAAADCwAAAAAALQAAAAADLQAAAAADLQAAAAAARQAAAAADRQAAAAAARQAAAAADLQAAAAADLQAAAAAALQAAAAACCwAAAAAALQAAAAAARQAAAAABRQAAAAACLQAAAAAALQAAAAABCwAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAALQAAAAADRQAAAAAARQAAAAADLQAAAAABLQAAAAABCwAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAALQAAAAABLQAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: HAAAAAAAHAAAAAAAHAAAAAAAKQAAAAABKQAAAAABKQAAAAACKQAAAAADKQAAAAABKQAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAKQAAAAADKQAAAAABHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAKQAAAAABKQAAAAADHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAACKQAAAAADIAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAACKQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAIAAAAAADIAAAAAACIAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABfQAAAAABfQAAAAABfQAAAAACgQAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAACfQAAAAADfQAAAAACfQAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAABfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAcwAAAAACcwAAAAADIAAAAAACcwAAAAACcwAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAADcwAAAAACIAAAAAADIAAAAAABIAAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAABfQAAAAABfQAAAAABfQAAAAABgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAAC + tiles: UAAAAAAAUAAAAAAAUAAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAADCwAAAAAALQAAAAABLQAAAAAALQAAAAAACwAAAAAAMwAAAAADMwAAAAABUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAABCwAAAAAAMwAAAAABMwAAAAADUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAADLAAAAAABLQAAAAADLQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAALAAAAAADLAAAAAACLAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACCwAAAAAARwAAAAACRwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAAACwAAAAAACwAAAAAARwAAAAACCwAAAAAACwAAAAAARwAAAAABRwAAAAABIwAAAAABIwAAAAABIwAAAAACCwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAABCwAAAAAARwAAAAACRwAAAAAARwAAAAAACwAAAAAARwAAAAABRwAAAAACIwAAAAADIwAAAAACIwAAAAABCwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAABIwAAAAAAIwAAAAADIwAAAAACCwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACCwAAAAAARwAAAAADRwAAAAABRwAAAAAACwAAAAAARwAAAAACRwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAACRwAAAAACRwAAAAADCwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAADIwAAAAABCwAAAAAARwAAAAACRwAAAAADLAAAAAACRwAAAAACRwAAAAABCwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAQQAAAAADRwAAAAACLAAAAAADLAAAAAABLAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAABIwAAAAABIwAAAAABIwAAAAABCwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABCwAAAAAARwAAAAACRwAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAACwAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAADRwAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAAC version: 6 1,-3: ind: 1,-3 - tiles: gQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAJQAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACJQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADJQAAAAABYAAAAAAAYAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABdwAAAAABdwAAAAAAdwAAAAABJQAAAAABYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAACdwAAAAAAdwAAAAADdwAAAAADJQAAAAACYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAADdwAAAAADdwAAAAADdwAAAAAAJQAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABJQAAAAACYAAAAAABgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAABYAAAAAACgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAKQAAAAACKQAAAAAAYAAAAAABYAAAAAADgQAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACfwAAAAACgQAAAAAAgQAAAAAAfwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAKQAAAAAAKQAAAAADIQAAAAADKQAAAAABKQAAAAAD + tiles: CwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAABCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAADKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAALQAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACRQAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAAALQAAAAADCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADRQAAAAABLQAAAAAALQAAAAADNAAAAAAANAAAAAAANAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABSwAAAAABSwAAAAAASwAAAAABRQAAAAABLQAAAAAALQAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAADLQAAAAACSwAAAAAASwAAAAADSwAAAAADRQAAAAACLQAAAAAALQAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAADLQAAAAADSwAAAAADSwAAAAADSwAAAAAARQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAABRQAAAAACLQAAAAABCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAARQAAAAABLQAAAAACCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAACwAAAAAAMwAAAAACMwAAAAAALQAAAAABLQAAAAADCwAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACQQAAAAACCwAAAAAACwAAAAAAQQAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAMwAAAAAAMwAAAAADPgAAAAADMwAAAAABMwAAAAAD version: 6 2,-2: ind: 2,-2 - tiles: KQAAAAABKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAACKQAAAAAAIQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADIQAAAAACKQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAJwAAAAACJwAAAAACJwAAAAACgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKQAAAAACKQAAAAAAKQAAAAAAgQAAAAAAJwAAAAAAJwAAAAACJwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKQAAAAACKQAAAAACKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAAAgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAABgQAAAAAAKQAAAAACKQAAAAACgQAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAKQAAAAAA + tiles: MwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAAAPgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAACCwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAACMwAAAAABCwAAAAAACwAAAAAAPgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADPgAAAAACMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAACwAAAAAAUQAAAAACUQAAAAACUQAAAAACCwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAMwAAAAACMwAAAAAAMwAAAAAACwAAAAAAUQAAAAAAUQAAAAACUQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARgAAAAAARgAAAAAARgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACCwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAACMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAABCwAAAAAAMwAAAAACMwAAAAACCwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: gQAAAAAAbwAAAAAAKQAAAAABKQAAAAACbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAABbwAAAAAAKQAAAAADKQAAAAACbwAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAKQAAAAADKQAAAAADIQAAAAABKQAAAAADKQAAAAADKQAAAAADKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAJAAAAAADgQAAAAAAdwAAAAADYAAAAAABYAAAAAADgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAKQAAAAACJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAACgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABdwAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAADKQAAAAABgQAAAAAAKQAAAAACKQAAAAADKQAAAAABdwAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAACKQAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAKQAAAAACKQAAAAACKQAAAAADKQAAAAABKQAAAAAAIQAAAAACKQAAAAABKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAACKQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAKQAAAAABKQAAAAABgQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAJAAAAAADgQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAADKQAAAAABKQAAAAAAKQAAAAACIQAAAAACKQAAAAABKQAAAAAAKQAAAAACKQAAAAAAKQAAAAACgQAAAAAAbwAAAAAAbwAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAACKQAAAAACKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAA + tiles: CwAAAAAAKwAAAAAAMwAAAAABMwAAAAACKwAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAMwAAAAABKwAAAAAAMwAAAAADMwAAAAACKwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAVQAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAAMwAAAAAAMwAAAAADCwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAAACwAAAAAAMwAAAAADMwAAAAADPgAAAAABMwAAAAADMwAAAAADMwAAAAADMwAAAAAAMwAAAAACCwAAAAAACwAAAAAAVAAAAAADCwAAAAAASwAAAAADLQAAAAABLQAAAAADCwAAAAAAMwAAAAADMwAAAAAACwAAAAAAMwAAAAACSQAAAAAASQAAAAAASQAAAAAAMwAAAAACCwAAAAAAMwAAAAABMwAAAAAAMwAAAAABSwAAAAABLQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAADMwAAAAABCwAAAAAAMwAAAAACMwAAAAADMwAAAAABSwAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAABLQAAAAACCwAAAAAACwAAAAAACwAAAAAAPgAAAAADCwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAABLQAAAAACLQAAAAADCwAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAAAPgAAAAACMwAAAAABMwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAABCwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAACCwAAAAAACwAAAAAAVAAAAAADCwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAABMwAAAAAAMwAAAAACPgAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACCwAAAAAAKwAAAAAAKwAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABCwAAAAAACwAAAAAACwAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: KQAAAAAAgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAACKQAAAAABKQAAAAAAKQAAAAADKQAAAAABKQAAAAADKQAAAAADKQAAAAADKQAAAAABgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAKQAAAAACKQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAABKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAKQAAAAACKQAAAAAAKQAAAAACKQAAAAAAJwAAAAACJwAAAAACJwAAAAAAJwAAAAADJwAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAADKQAAAAADKQAAAAACJwAAAAACJwAAAAADJwAAAAACJwAAAAACJwAAAAADKQAAAAADKQAAAAADKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAACKQAAAAABJwAAAAAAJwAAAAACJwAAAAAAJwAAAAADJwAAAAACKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAABKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAABgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAADIQAAAAABIQAAAAABgQAAAAAAfQAAAAABfQAAAAADfQAAAAABgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAACfwAAAAAAIQAAAAAAIQAAAAADgQAAAAAAgQAAAAAAfwAAAAADgQAAAAAAgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAABfwAAAAABfQAAAAACfQAAAAACfQAAAAAAfwAAAAABfQAAAAACfQAAAAADfQAAAAACfQAAAAACfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAfwAAAAABfwAAAAADfwAAAAAAfwAAAAACfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfwAAAAABfQAAAAABgQAAAAAAKQAAAAADKQAAAAABfwAAAAAAfQAAAAADfQAAAAACfQAAAAAAfwAAAAADfQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAfQAAAAABgQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAKQAAAAACKQAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAB + tiles: MwAAAAAACwAAAAAAMwAAAAABMwAAAAADCwAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAADMwAAAAABCwAAAAAAMwAAAAABMwAAAAADCwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAUQAAAAACUQAAAAACUQAAAAAAUQAAAAADUQAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAACUQAAAAACUQAAAAADUQAAAAACUQAAAAACUQAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAABUQAAAAAAUQAAAAACUQAAAAAAUQAAAAADUQAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAABCwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAADCwAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAADPgAAAAABPgAAAAABCwAAAAAAIwAAAAABIwAAAAADIwAAAAABCwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAABCwAAAAAAIwAAAAABIwAAAAABIwAAAAACQQAAAAAAPgAAAAAAPgAAAAADCwAAAAAACwAAAAAAQQAAAAADCwAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAABQQAAAAABIwAAAAACIwAAAAACIwAAAAAAQQAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAACIwAAAAABIwAAAAADCwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADCwAAAAAAQQAAAAABQQAAAAADQQAAAAAAQQAAAAACIwAAAAACIwAAAAACIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAQQAAAAABIwAAAAABCwAAAAAAMwAAAAADMwAAAAABQQAAAAAAIwAAAAADIwAAAAACIwAAAAAAQQAAAAADIwAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAABIwAAAAACCwAAAAAAIwAAAAABCwAAAAAAMwAAAAABMwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAACQQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABCwAAAAAAMwAAAAADMwAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAADCwAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACCwAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAAMwAAAAACMwAAAAACLQAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAAALQAAAAAB version: 6 2,0: ind: 2,0 - tiles: YAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAALwAAAAAAYAAAAAADYAAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAALwAAAAAAYAAAAAADYAAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAALwAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAALwAAAAAAYAAAAAACLwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfwAAAAABfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAfwAAAAAAfQAAAAABfQAAAAACfwAAAAABfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADfwAAAAACfQAAAAACfQAAAAACfwAAAAACfQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADgQAAAAAAfQAAAAADfQAAAAAAfwAAAAADfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: LQAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAAALQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAABCwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAAACwAAAAAAIgAAAAAALQAAAAADLQAAAAAAIgAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAACwAAAAAAIgAAAAAALQAAAAADLQAAAAAAIgAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAABCwAAAAAAIgAAAAAALQAAAAABLQAAAAADLQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAADCwAAAAAAIgAAAAAALQAAAAACIgAAAAAAIgAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAADIwAAAAABIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAAACwAAAAAAIwAAAAADIwAAAAABQQAAAAABIwAAAAAAIwAAAAADIwAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAQQAAAAAAIwAAAAABIwAAAAACQQAAAAABIwAAAAADIwAAAAAAIwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAADQQAAAAACIwAAAAACIwAAAAACQQAAAAACIwAAAAAAIwAAAAACIwAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAADCwAAAAAAIwAAAAADIwAAAAAAQQAAAAADIwAAAAABIwAAAAACIwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 2,1: ind: 2,1 - tiles: KQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAABfwAAAAADfwAAAAABfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfwAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAgQAAAAAAgQAAAAAAFgAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfwAAAAADgQAAAAAAfAAAAAABfAAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAADbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfwAAAAADgQAAAAAAfAAAAAABfAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAABfwAAAAACgQAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAcQAAAAADcQAAAAAAcQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAA + tiles: MwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAAACwAAAAAAIwAAAAAAIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAABQQAAAAADQQAAAAABIwAAAAAAIwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAACQQAAAAAACwAAAAAACwAAAAAAQQAAAAAACwAAAAAACwAAAAAAVwAAAAADIwAAAAAAIwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAADQQAAAAADCwAAAAAALgAAAAABLgAAAAADCwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAADKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAADQQAAAAADCwAAAAAALgAAAAABLgAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAABQQAAAAACCwAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAACIwAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAANAAAAAAAVgAAAAADVgAAAAAAVgAAAAABNAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfwAAAAADfQAAAAABfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAABfQAAAAABgQAAAAAAfQAAAAABLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfwAAAAADgQAAAAAAgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAfAAAAAACfAAAAAACfAAAAAABfAAAAAABfAAAAAABgQAAAAAAfQAAAAADLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAfAAAAAACfAAAAAACfAAAAAABfAAAAAACfAAAAAABgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAfAAAAAAAfAAAAAACfAAAAAABfAAAAAABfAAAAAACcwAAAAACcwAAAAAB + tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAACwAAAAAAWgAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAACwAAAAAACwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAIwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAKwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALQAAAAADLQAAAAAALQAAAAABCwAAAAAAWQAAAAAAWQAAAAAAQQAAAAADIwAAAAABIwAAAAAAIwAAAAABIwAAAAACCwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAABCwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAABWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAIwAAAAABIwAAAAABCwAAAAAAIwAAAAABIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAADCwAAAAAAWQAAAAAAWQAAAAAACwAAAAAAQQAAAAADCwAAAAAACwAAAAAAIwAAAAACIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADCwAAAAAALgAAAAACLgAAAAACLgAAAAABLgAAAAABLgAAAAABCwAAAAAAIwAAAAADIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAABCwAAAAAALgAAAAACLgAAAAACLgAAAAABLgAAAAACLgAAAAABCwAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAAACwAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAABLgAAAAACRwAAAAACRwAAAAAB version: 6 -3,-2: ind: -3,-2 - tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAfAAAAAABfAAAAAADfAAAAAADfAAAAAABfAAAAAAAcwAAAAABcwAAAAADIAAAAAAAIAAAAAACIAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAfAAAAAABfAAAAAACfAAAAAACfAAAAAADfAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAKQAAAAADKQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAKQAAAAACKQAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACKQAAAAAAKQAAAAAAYAAAAAADYAAAAAAAKQAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAD + tiles: IgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAACCwAAAAAALgAAAAABLgAAAAADLgAAAAADLgAAAAABLgAAAAAARwAAAAABRwAAAAADLAAAAAAALAAAAAACLAAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAADCwAAAAAALgAAAAABLgAAAAACLgAAAAACLgAAAAADLgAAAAAACwAAAAAACwAAAAAALAAAAAACLAAAAAAALAAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAAAMwAAAAADMwAAAAAALQAAAAADLQAAAAACCwAAAAAALQAAAAACLQAAAAAALQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAAAMwAAAAACMwAAAAABLQAAAAADLQAAAAABCwAAAAAALQAAAAADLQAAAAADLQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAACMwAAAAAAMwAAAAAALQAAAAADLQAAAAAAMwAAAAACLQAAAAACLQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAAACwAAAAAALQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAACLQAAAAABLQAAAAAACwAAAAAALQAAAAABLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAACLQAAAAABLQAAAAAACwAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAAAWwAAAAAAWwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAAACwAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAAACwAAAAAALQAAAAADLQAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAAD version: 6 -3,-1: ind: -3,-1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAABUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAC + tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAABCwAAAAAALQAAAAACLQAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAADLQAAAAACKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAABCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAABWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAADCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAABCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAABCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAABLQAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAACIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAAC version: 6 -3,0: ind: -3,0 - tiles: YAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAKQAAAAACKQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: LQAAAAACLQAAAAADLQAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAADLQAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAACCwAAAAAALQAAAAABLQAAAAADCwAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAAMwAAAAACMwAAAAAACwAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAALQAAAAACCwAAAAAALQAAAAABLQAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAADLQAAAAACCwAAAAAALQAAAAAALQAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAADwAAAAABDwAAAAADgQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAABBQAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAADwAAAAABDwAAAAAAgQAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAADwAAAAADDwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAADwAAAAADDwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: CwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAALQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAALQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADKwAAAAAACwAAAAAACwAAAAAACwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAAFQAAAAABFQAAAAADCwAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAADLQAAAAACCwAAAAAAFQAAAAABFQAAAAAACwAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAACCwAAAAAAFQAAAAADFQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAADCwAAAAAAFQAAAAADFQAAAAABCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAIAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAABgQAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAADgQAAAAAAYAAAAAACKQAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAADgQAAAAAAIAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAADgQAAAAAAYAAAAAADKQAAAAADgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABgQAAAAAAIAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAABgQAAAAAAYAAAAAADKQAAAAADgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAADIQAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAABgQAAAAAAYAAAAAAC + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAABLQAAAAACLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAABLQAAAAABCwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAABLQAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAACCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAAACwAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAALAAAAAACTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAABCwAAAAAALQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAALAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAAACwAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAADCwAAAAAALQAAAAACMwAAAAABCwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADCwAAAAAALAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAADCwAAAAAALQAAAAADMwAAAAADCwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABCwAAAAAALAAAAAABTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAABCwAAAAAALQAAAAADMwAAAAADCwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADPgAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAABCwAAAAAALQAAAAAC version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABgQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAACKQAAAAADKQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAKQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABIAAAAAADYAAAAAABYAAAAAAAYAAAAAACIAAAAAAAKQAAAAADKQAAAAAD + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABCwAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADCwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAACCwAAAAAAMwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABLAAAAAADLQAAAAABLQAAAAAALQAAAAACLAAAAAAAMwAAAAADMwAAAAAD version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAgAAAAAAAgAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAgAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAARAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAXAAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAPAAAAAAACwAAAAAACwAAAAAALAAAAAADLAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAABLAAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADLAAAAAADCwAAAAAAPAAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAADZQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAARAAAAAAAgQAAAAAAZQAAAAAAZQAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAAAZQAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAACCwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAABKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAAOwAAAAADOwAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAAPAAAAAAACwAAAAAAOwAAAAAAOwAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAAOwAAAAAAOwAAAAACLQAAAAADLQAAAAACLQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAIBwAAAAAABwAAAAAIBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAADgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAACFgAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAACfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAAAFgAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAABfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAIVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAECwAAAAAACwAAAAAACwAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAEAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAACVwAAAAAECwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAIwAAAAADIwAAAAABIwAAAAABIwAAAAADIwAAAAAAIwAAAAACCwAAAAAACwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAADVQAAAAAACwAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAACIwAAAAADIwAAAAACCwAAAAAACwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAGVQAAAAAACwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABCwAAAAAACwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAAAVwAAAAADIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAFVQAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAABIwAAAAABIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAECwAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAAAIwAAAAADCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHCwAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAABIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAACIwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 2,2: ind: 2,2 - tiles: cAAAAAAAcQAAAAACcQAAAAADcQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAcQAAAAADcQAAAAAAcQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcQAAAAABcQAAAAADcQAAAAAAcQAAAAAAcQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAcQAAAAABcQAAAAADcQAAAAACcQAAAAAAcQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: NAAAAAAAVgAAAAACVgAAAAADVgAAAAACNAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAANAAAAAAAVgAAAAADVgAAAAAAVgAAAAABNAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAVgAAAAABVgAAAAADVgAAAAAAVgAAAAAAVgAAAAABCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAACLAAAAAAALAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAAALAAAAAADLAAAAAACKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAABLAAAAAADLAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVgAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAABLAAAAAABLAAAAAADCwAAAAAAXAAAAAAAXAAAAAAAVgAAAAABVgAAAAADVgAAAAACVgAAAAAAVgAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAABLAAAAAAALAAAAAAACwAAAAAAXAAAAAAAXAAAAAAACwAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAAALAAAAAACLAAAAAABCwAAAAAAXAAAAAAAXAAAAAAAPgAAAAADPgAAAAACPgAAAAAAPgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAACLAAAAAAALAAAAAACCwAAAAAAXAAAAAAAXAAAAAAAPgAAAAABPgAAAAACPgAAAAADPgAAAAADCwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAVQAAAAACVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAA version: 6 1,2: ind: 1,2 - tiles: JQAAAAADJQAAAAABYAAAAAABYAAAAAABZQAAAAADYAAAAAABYAAAAAADJQAAAAACJQAAAAADJQAAAAAAJQAAAAACJQAAAAAAYAAAAAABYAAAAAADgQAAAAAAcAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACZQAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAgQAAAAAAZQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAIAAAAAABJQAAAAADIAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcQAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAKQAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAcQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAABgQAAAAAAZQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACIQAAAAADIQAAAAADIQAAAAABIQAAAAABIQAAAAADIQAAAAAAIQAAAAACIQAAAAADIQAAAAAAIQAAAAACIQAAAAACKQAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABIQAAAAADIQAAAAADIQAAAAABIQAAAAACIQAAAAACIQAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAARAAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACRAAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: RQAAAAADRQAAAAABLQAAAAABLQAAAAABOwAAAAADLQAAAAABLQAAAAADRQAAAAACRQAAAAADRQAAAAAARQAAAAACRQAAAAAALQAAAAABLQAAAAADCwAAAAAANAAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACOwAAAAABLQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAABLQAAAAADLQAAAAAALQAAAAABCwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAADLAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAAACwAAAAAAOwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAALAAAAAABRQAAAAADLAAAAAADCwAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAAVgAAAAACCwAAAAAALAAAAAAALAAAAAADLAAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAABCwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAABLQAAAAABLQAAAAACCwAAAAAACwAAAAAAMwAAAAACLQAAAAADLQAAAAABLQAAAAABCwAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAACCwAAAAAAVgAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAABCwAAAAAAOwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAADLQAAAAACPgAAAAADPgAAAAADPgAAAAABPgAAAAABPgAAAAADPgAAAAAAPgAAAAACPgAAAAADPgAAAAAAPgAAAAACPgAAAAACMwAAAAABLQAAAAABLQAAAAAALQAAAAABLQAAAAABPgAAAAADPgAAAAADPgAAAAABPgAAAAACPgAAAAACPgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAABPgAAAAADLQAAAAACLQAAAAACLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAAAPAAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAADCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAACPAAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA version: 6 0,2: ind: 0,2 - tiles: YAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAJQAAAAACYAAAAAACYAAAAAADZQAAAAACYAAAAAACYAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACJQAAAAAAYAAAAAADYAAAAAAAZQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABJQAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAfQAAAAAAfQAAAAABfQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABJQAAAAACYAAAAAACYAAAAAADgQAAAAAALwAAAAAAYAAAAAADfQAAAAADfQAAAAABfQAAAAACfQAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACJQAAAAADYAAAAAABYAAAAAAAgQAAAAAALwAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAALwAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAABfQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAADYAAAAAABYAAAAAADgQAAAAAAfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAABYAAAAAACYAAAAAABgQAAAAAAfQAAAAABfQAAAAADfQAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfwAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAfQAAAAABfQAAAAADfQAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAA + tiles: LQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAAARQAAAAACLQAAAAACLQAAAAADOwAAAAACLQAAAAACLQAAAAACRQAAAAAARQAAAAAARQAAAAAARQAAAAABLQAAAAABLQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAACRQAAAAAALQAAAAADLQAAAAAAOwAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAAACwAAAAAALQAAAAADLQAAAAABRQAAAAABLQAAAAACLQAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAAAIwAAAAAAIwAAAAABIwAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAADLQAAAAABLQAAAAABRQAAAAACLQAAAAACLQAAAAADCwAAAAAAIgAAAAAALQAAAAADIwAAAAADIwAAAAABIwAAAAACIwAAAAADLQAAAAABLQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAACRQAAAAADLQAAAAABLQAAAAAACwAAAAAAIgAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAABIwAAAAACLQAAAAABLQAAAAAALQAAAAADCwAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAABCwAAAAAAIgAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAABIwAAAAAALQAAAAADLQAAAAADLQAAAAACCwAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAADLQAAAAABLQAAAAADCwAAAAAAIwAAAAAAIwAAAAACIwAAAAACCwAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAAACwAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAABLQAAAAACLQAAAAABCwAAAAAAIwAAAAABIwAAAAADIwAAAAABCwAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAAIwAAAAACIwAAAAAAIwAAAAACQQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAAIwAAAAABIwAAAAADIwAAAAACCwAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAAIwAAAAAAIwAAAAACIwAAAAABCwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAAQQAAAAACCwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAAACwAAAAAAIwAAAAABIwAAAAACIwAAAAADCwAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAACwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACCwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAACwAAAAAA version: 6 3,0: ind: 3,0 - tiles: YAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACDgAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADDgAAAAAEYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADLwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABLwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAALwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAALwAAAAAAYAAAAAACLwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAARAAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAARAAAAAAAUgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARAAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABJAAAAAABJAAAAAABKQAAAAACgQAAAAAAgQAAAAAAUgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABJAAAAAABJAAAAAADKQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADJAAAAAABJAAAAAADKQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAJAAAAAACJAAAAAACKQAAAAADgQAAAAAAgQAAAAAA + tiles: LQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAACEAAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAADCwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAADEAAAAAAELQAAAAACLQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAADLQAAAAACLQAAAAACLQAAAAADLQAAAAACCwAAAAAACwAAAAAALQAAAAAALQAAAAADIgAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAADCwAAAAAACwAAAAAALQAAAAABLQAAAAABIgAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADCwAAAAAACwAAAAAALQAAAAADLQAAAAAAIgAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAABCwAAAAAACwAAAAAAIgAAAAAALQAAAAACIgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAPAAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAPAAAAAAARgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAPAAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABVAAAAAABVAAAAAABMwAAAAACCwAAAAAACwAAAAAARgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABVAAAAAABVAAAAAADMwAAAAAACwAAAAAACwAAAAAAXgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADXgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADVAAAAAABVAAAAAADMwAAAAAACwAAAAAACwAAAAAAXgAAAAAALAAAAAADXgAAAAAACwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAAVAAAAAACVAAAAAACMwAAAAADCwAAAAAACwAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: KQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAACKQAAAAADKQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACgQAAAAAAKQAAAAABKQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAgQAAAAAAKQAAAAACKQAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAACKQAAAAACKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAIQAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAABKQAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADKQAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAADgAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAABgQAAAAAAIQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADDgAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACDgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAA + tiles: MwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAADMwAAAAADCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAXAAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAACCwAAAAAAMwAAAAABMwAAAAABCwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAXAAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAAACwAAAAAAMwAAAAACMwAAAAADCwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAACCwAAAAAAKgAAAAAAXAAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAACwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADLQAAAAAALQAAAAABLQAAAAACLQAAAAADCwAAAAAAKgAAAAAAXAAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAAACwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAABCwAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAABCwAAAAAAKgAAAAAAXAAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAABMwAAAAAAMwAAAAADMwAAAAABCwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABCwAAAAAAKgAAAAAAXAAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAABCwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAADCwAAAAAACwAAAAAAXAAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADCwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAAALQAAAAABLQAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAAPgAAAAACCwAAAAAAPgAAAAABCwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAABMwAAAAADCwAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAADMwAAAAACCwAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAABLQAAAAAAEAAAAAAALQAAAAADLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAAPgAAAAABCwAAAAAAPgAAAAABCwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAADEAAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADCwAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAABLQAAAAABLQAAAAABLQAAAAABLQAAAAABLQAAAAACLQAAAAACEAAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAAACwAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAABJwAAAAADJwAAAAADgQAAAAAAJwAAAAACJwAAAAADJwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAABJwAAAAAAJwAAAAADgQAAAAAAJwAAAAABJwAAAAADJwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAADKQAAAAABKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAACKQAAAAADKQAAAAADKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAA + tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAUQAAAAABUQAAAAADUQAAAAADCwAAAAAAUQAAAAACUQAAAAADUQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAUQAAAAABUQAAAAAAUQAAAAADCwAAAAAAUQAAAAABUQAAAAADUQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAACwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAACMwAAAAABCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAXAAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAXAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAADBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAHgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAKQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAABKQAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAACKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAACKQAAAAACgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAADKQAAAAACKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAACgQAAAAAABwAAAAAABwAAAAAAKQAAAAABgQAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAACKQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAHCwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAMwAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABCwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAACMwAAAAACCwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAACCwAAAAAAVQAAAAAAVQAAAAAAMwAAAAABCwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACCwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAA version: 6 -1,2: ind: -1,2 - tiles: fQAAAAABfwAAAAABfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAACfQAAAAACfQAAAAADgQAAAAAAYAAAAAADYAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAfwAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAYAAAAAACYAAAAAADbwAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAADfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAYAAAAAABYAAAAAADbwAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAABYAAAAAABYAAAAAACYAAAAAABbwAAAAAAbwAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAADJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAADKQAAAAACKQAAAAAAgQAAAAAA + tiles: IwAAAAABQQAAAAABIwAAAAAAIwAAAAABIwAAAAACCwAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAADIwAAAAAAIwAAAAACIwAAAAACCwAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAABCwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAACIwAAAAACIwAAAAADCwAAAAAALQAAAAADLQAAAAACKwAAAAAACwAAAAAACwAAAAAAQQAAAAABCwAAAAAACwAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADCwAAAAAALQAAAAACLQAAAAADKwAAAAAACwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAADIwAAAAAAIwAAAAACIwAAAAACCwAAAAAALQAAAAABLQAAAAADKwAAAAAACwAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAABLQAAAAABLQAAAAACLQAAAAABKwAAAAAAKwAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAACLQAAAAABLQAAAAAALQAAAAACCwAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAIwAAAAACIwAAAAABCwAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAALQAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAALQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAAACwAAAAAA version: 6 -2,2: ind: -2,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARAAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAPAAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAADLQAAAAADKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAALQAAAAABSQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAALQAAAAAASQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAALQAAAAACSQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAALQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAABKQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAABKQAAAAABKQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAABKQAAAAACKQAAAAABKQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAABKQAAAAADKQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAAAKQAAAAADbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAACKQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAACKQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAKQAAAAADKQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAAAKQAAAAABbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAADKQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAACCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAABCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAADMwAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAAAMwAAAAADKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAACMwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAACMwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAMwAAAAADMwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAAAMwAAAAABKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAAPAAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAADMwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: gAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAABwAAAAAKBwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAKVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAKVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAKVQAAAAABVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAEVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAMwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAMwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAARgAAAAAARgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -2,3: ind: -2,3 - tiles: AAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -1,3: ind: -1,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADRAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAADLQAAAAABCwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAADPAAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAABVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAACwAAAAAAPAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAFVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,3: ind: 0,3 - tiles: YAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACKQAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACJAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + tiles: LQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAAALQAAAAADCwAAAAAALQAAAAAALQAAAAAALQAAAAABCwAAAAAALQAAAAABLQAAAAACLQAAAAACMwAAAAABKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAAALQAAAAABCwAAAAAALQAAAAACVAAAAAACLQAAAAAALQAAAAABLQAAAAAALQAAAAADLQAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAADLQAAAAACCwAAAAAALQAAAAADLQAAAAAALQAAAAACCwAAAAAALQAAAAACLQAAAAABLQAAAAADCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAABLQAAAAADCwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAABLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAYAAAAAADYAAAAAADYAAAAAAARAAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAACYAAAAAACYAAAAAAAYAAAAAABRAAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAALgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARAAAAAAARAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAARAAAAAAARAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CwAAAAAALQAAAAADLQAAAAADLQAAAAAAPAAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAAAMwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAMwAAAAACLQAAAAACLQAAAAAALQAAAAABPAAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAABCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAALCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAVQAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAPAAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAPAAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAKVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 3,2: ind: 3,2 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 3,1: ind: 3,1 - tiles: EgAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAEgAAAAAAIAAAAAADgQAAAAAAKQAAAAAAgQAAAAAAKQAAAAADJAAAAAACJAAAAAABKQAAAAACgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAKQAAAAADKQAAAAACKQAAAAADKQAAAAAAJAAAAAADJAAAAAACKQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACJAAAAAACJAAAAAAAKQAAAAABgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAACgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAA + tiles: XgAAAAAALAAAAAAAXgAAAAAAXgAAAAAACwAAAAAAXgAAAAAALAAAAAADCwAAAAAAMwAAAAAACwAAAAAAMwAAAAADVAAAAAACVAAAAAABMwAAAAACCwAAAAAACwAAAAAAXgAAAAAALAAAAAAAXgAAAAAACwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAAAVAAAAAADVAAAAAACMwAAAAAACwAAAAAACwAAAAAARgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAAXgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACVAAAAAACVAAAAAAAMwAAAAABCwAAAAAACwAAAAAAXgAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAALAAAAAAAXgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAACCwAAAAAACwAAAAAAXgAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAALAAAAAACXgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAAXgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADXgAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAARgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAA version: 6 3,3: ind: 3,3 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,3: ind: 4,3 - tiles: gAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,4: ind: 0,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 1,4: ind: 1,4 - tiles: gAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAfQAAAAADfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfwAAAAAAfQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAfQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABJgAAAAAAJgAAAAAAJgAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAADfQAAAAACfQAAAAACfQAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAAALQAAAAACLQAAAAACTAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAABCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAAACwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAAALQAAAAABCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAACwAAAAAAIwAAAAADIwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAQQAAAAAAIwAAAAABIwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAACwAAAAAAIwAAAAABIwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAACwAAAAAAIwAAAAABSQAAAAAASQAAAAAASQAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAADIwAAAAACIwAAAAACIwAAAAADCwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAABIwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAADIwAAAAACIwAAAAADCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAIwAAAAADIwAAAAAAIwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAARAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAALBwAAAAAABwAAAAAKRAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAABBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAA + tiles: XAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAALVQAAAAAAVQAAAAAKPAAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAGVQAAAAABVQAAAAACCwAAAAAACwAAAAAACwAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAFVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAALQAAAAACLQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAABPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAADLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAAAKwAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAACKwAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAACJQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAAAJQAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADJQAAAAADJQAAAAACJQAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADJQAAAAADJQAAAAABJQAAAAACYAAAAAADYAAAAAABYAAAAAACUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAJQAAAAADJQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAADZQAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAJQAAAAABJQAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAbAAAAAAAbAAAAAAA + tiles: KgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAAALQAAAAABKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAABRQAAAAAARQAAAAACRQAAAAAALQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAADRQAAAAACRQAAAAAARQAAAAACLQAAAAADLQAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAALQAAAAADRQAAAAADRQAAAAACRQAAAAACLQAAAAACLQAAAAADLQAAAAADCwAAAAAAMQAAAAAAWwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADRQAAAAADRQAAAAABRQAAAAACLQAAAAADLQAAAAABLQAAAAACWwAAAAAAMQAAAAAAWwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAACCwAAAAAAMQAAAAAAWwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAARQAAAAAARQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAPAAAAAAARQAAAAADRQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAAOwAAAAACOwAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAABCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAADOwAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAABCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAAOwAAAAACOwAAAAABLQAAAAACLQAAAAABLQAAAAACLQAAAAAACwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAPAAAAAAARQAAAAABRQAAAAABLQAAAAAALQAAAAACLQAAAAADLQAAAAACCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAABLQAAAAAATAAAAAAATAAAAAAA version: 6 4,1: ind: 4,1 - tiles: gQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA + tiles: CwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAA version: 6 4,0: ind: 4,0 - tiles: DgAAAAAJgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: EAAAAAAJCwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAEAAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAEAAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJKgAAAAAAKgAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAACBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,2: ind: 4,2 - tiles: gAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 5,1: ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 - type: Broadphase - type: Physics @@ -8439,215 +8432,215 @@ entities: chunks: 0,0: ind: 0,0 - tiles: IAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIQAAAAACIAAAAAACIAAAAAABIQAAAAADNwAAAAADNwAAAAADNwAAAAAANwAAAAABNwAAAAACNwAAAAAANwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAGDgAAAAAMDgAAAAAADgAAAAAANwAAAAABNwAAAAAADgAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACgQAAAAAADgAAAAAEDgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAANwAAAAABNwAAAAABDgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANwAAAAADNwAAAAACDgAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACgQAAAAAAgQAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAJDgAAAAAADgAAAAAADgAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAACgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAGDgAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAJBAAAAAALBAAAAAADBAAAAAAIBAAAAAANBAAAAAAHBwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAEBAAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAANBAAAAAAHBAAAAAADBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAEBAAAAAAKBAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAE + tiles: LAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABPgAAAAACLAAAAAACLAAAAAABPgAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABCwAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAGEAAAAAAMEAAAAAAAEAAAAAAAGwAAAAABGwAAAAAAEAAAAAAACwAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAACCwAAAAAAEAAAAAAEEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAGwAAAAABGwAAAAABEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAGwAAAAADGwAAAAACEAAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAACwAAAAAACwAAAAAAIwAAAAADCwAAAAAACwAAAAAACwAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAIwAAAAADIwAAAAACIwAAAAACCwAAAAAACwAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAACwAAAAAACwAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAACCwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXwAAAAAJXwAAAAALXwAAAAADXwAAAAAIXwAAAAANXwAAAAAHVQAAAAAAVQAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAEXwAAAAACVQAAAAAAVQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAHXwAAAAADXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAEXwAAAAAKXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAE version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAKDgAAAAABDgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAFDgAAAAADDgAAAAAADgAAAAACDgAAAAAAgQAAAAAAgAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAALgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAANwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANwAAAAADNwAAAAACNwAAAAABDgAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAANwAAAAADDgAAAAAADgAAAAABDgAAAAAADgAAAAAMDgAAAAAANwAAAAADNwAAAAADDgAAAAAGDgAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAGDgAAAAAADgAAAAAJNwAAAAACNwAAAAAADgAAAAAADgAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAADIQAAAAABIAAAAAAAIAAAAAABIQAAAAACNwAAAAADNwAAAAABNwAAAAAANwAAAAADNwAAAAAANwAAAAAANwAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAANwAAAAACNwAAAAADNwAAAAADNwAAAAACNwAAAAACNwAAAAAC + tiles: KgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAKEAAAAAABEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAFEAAAAAADEAAAAAAAEAAAAAACEAAAAAAACwAAAAAAXAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAALCwAAAAAAIwAAAAACIwAAAAAAIwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAACwAAAAAAIwAAAAADIwAAAAADIwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAIwAAAAABIwAAAAACIwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAACwAAAAAACwAAAAAAIwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAALAAAAAABCwAAAAAAGwAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAGwAAAAADGwAAAAACGwAAAAABEAAAAAAACwAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADCwAAAAAAGwAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAMEAAAAAAAGwAAAAADGwAAAAADEAAAAAAGEAAAAAAACwAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAGEAAAAAAAEAAAAAAJGwAAAAACGwAAAAAAEAAAAAAAEAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAADPgAAAAABLAAAAAAALAAAAAABPgAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADCwAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAAC version: 6 1,0: ind: 1,0 - tiles: NwAAAAADNwAAAAADNwAAAAAANwAAAAACNwAAAAABNwAAAAAANwAAAAACDgAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAMBwAAAAAABwAAAAACBwAAAAAABwAAAAAFNwAAAAAADgAAAAAANwAAAAACDgAAAAAANwAAAAABNwAAAAACNwAAAAADNwAAAAABBwAAAAAENgAAAAAANgAAAAADBwAAAAAFBwAAAAAABwAAAAAABwAAAAAGBwAAAAAHDgAAAAACDgAAAAAANwAAAAACDgAAAAADDgAAAAAANwAAAAACNwAAAAAANwAAAAACNgAAAAABNgAAAAABNgAAAAACNgAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAAKDgAAAAAJDgAAAAAANwAAAAADNwAAAAACDgAAAAAADgAAAAAJNwAAAAABNwAAAAADBwAAAAAANgAAAAAANgAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADgAAAAAHfQAAAAADfQAAAAABfQAAAAADDgAAAAAHDgAAAAAADgAAAAAADgAAAAAHBwAAAAAABwAAAAAHBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALDgAAAAAAfQAAAAAAfQAAAAAAfQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAADgAAAAAAfQAAAAAAfQAAAAABfQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAADgAAAAAAfQAAAAABfQAAAAADfQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAHDgAAAAAGDgAAAAAADgAAAAAADgAAAAAEDgAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAADgAAAAAGgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAFBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAMBwAAAAAMBwAAAAAMBwAAAAACBwAAAAAABwAAAAAMBwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJ + tiles: GwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAACEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAMVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAFGwAAAAAAEAAAAAAAGwAAAAACEAAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABVQAAAAAEFAAAAAAAFAAAAAADVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAHEAAAAAACEAAAAAAAGwAAAAACEAAAAAADEAAAAAAAGwAAAAACGwAAAAAAGwAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAKEAAAAAAJEAAAAAAAGwAAAAADGwAAAAACEAAAAAAAEAAAAAAJGwAAAAABGwAAAAADVQAAAAAAFAAAAAAAFAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAHIwAAAAADIwAAAAABIwAAAAADEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAHVQAAAAAAVQAAAAAHVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALEAAAAAAAIwAAAAAAIwAAAAAAIwAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAEAAAAAAAIwAAAAAAIwAAAAABIwAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAEAAAAAAAIwAAAAABIwAAAAADIwAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAGEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAEAAAAAAGCwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAEVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAFVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAMVQAAAAAMVQAAAAAMVQAAAAACVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAKVQAAAAABVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJ version: 6 1,-1: ind: 1,-1 - tiles: gAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAANBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAANBAAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAMBAAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAADBAAAAAANBAAAAAAHBAAAAAACBAAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIDgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAKBAAAAAAABAAAAAACBAAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAABwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAJDgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAJBwAAAAACBwAAAAAABwAAAAAABwAAAAAADgAAAAAHDgAAAAAADgAAAAAADgAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAHDgAAAAAADgAAAAAADgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAHBwAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADgAAAAAADgAAAAAAMgAAAAAAfQAAAAABfQAAAAABfQAAAAAAMgAAAAAADgAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAKDgAAAAAFDgAAAAAAMgAAAAAAfQAAAAABfQAAAAADfQAAAAABMgAAAAAADgAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADgAAAAAADgAAAAAAMgAAAAAAfQAAAAADfQAAAAADfQAAAAACMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIDgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAfQAAAAABMgAAAAAAMgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAJDgAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAABDgAAAAAADgAAAAAADgAAAAALNwAAAAAANwAAAAADNwAAAAADDgAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAJDgAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAANwAAAAACNwAAAAAANwAAAAACNwAAAAAANwAAAAADDgAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAANwAAAAACNwAAAAACNwAAAAACNwAAAAACNwAAAAADNwAAAAADDgAAAAAADgAAAAAIBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAF + tiles: XAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAGVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAMXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXwAAAAADXwAAAAANXwAAAAAHXwAAAAACXwAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXwAAAAAKXwAAAAAAXwAAAAACXwAAAAABVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAHVQAAAAAAVQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAJVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAIwAAAAABIwAAAAABIwAAAAAAEwAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKEAAAAAAFEAAAAAAAEwAAAAAAIwAAAAABIwAAAAADIwAAAAABEwAAAAAAEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAIwAAAAADIwAAAAADIwAAAAACEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAIEAAAAAAAEAAAAAAACwAAAAAACwAAAAAAIwAAAAABEwAAAAAAEwAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAJEAAAAAAAVQAAAAADVQAAAAAAVQAAAAAFVQAAAAABEAAAAAAAEAAAAAAAEAAAAAALGwAAAAAAGwAAAAADGwAAAAADEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADEAAAAAAAEAAAAAAIVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAF version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAB + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAALAAAAAAB version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAALAAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: XAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAABAAAAAAOBAAAAAABBAAAAAACBAAAAAAOBAAAAAADBAAAAAANBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAGBAAAAAAMBAAAAAAMBwAAAAAIBwAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAEgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAADBAAAAAABBAAAAAANBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAhQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABAAAAAADBAAAAAAGBAAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAhQAAAAACBwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABAAAAAAOBAAAAAABBwAAAAADBwAAAAAFgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAAAgQAAAAAAgQAAAAAAhQAAAAACIAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAAChQAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADBwAAAAAABwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAABAAAAAAKBAAAAAALBAAAAAADBAAAAAAMBAAAAAAMBAAAAAAOBAAAAAADBAAAAAAMBwAAAAABBwAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABAAAAAALBAAAAAAEBAAAAAACAAAAAAAAAAAAAAAABAAAAAACBAAAAAAIBwAAAAAABwAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABAAAAAACAAAAAAAABAAAAAAEBAAAAAAFBAAAAAANBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAANBAAAAAAEBwAAAAAABwAAAAAABwAAAAAIgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAEBAAAAAALBwAAAAAABwAAAAAABwAAAAAJBwAAAAAMgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAANBAAAAAAOBwAAAAAABwAAAAAABwAAAAAJBwAAAAAA + tiles: KgAAAAAAXwAAAAAOXwAAAAABXwAAAAACXwAAAAAOXwAAAAADXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAABXwAAAAADXwAAAAADXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAGXwAAAAAMXwAAAAAMVQAAAAAIVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAECwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAADXwAAAAABXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAYQAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXwAAAAADXwAAAAAGXwAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAYQAAAAACVQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXwAAAAAOXwAAAAABVQAAAAADVQAAAAAFCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAAACwAAAAAACwAAAAAAYQAAAAACLAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAACYQAAAAAALAAAAAACLAAAAAABCwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADVQAAAAAAVQAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXwAAAAAKXwAAAAALXwAAAAADXwAAAAAMXwAAAAAMXwAAAAAOXwAAAAADXwAAAAAMVQAAAAABVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXwAAAAALXwAAAAAEXwAAAAACKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAACKgAAAAAAXwAAAAAEXwAAAAAFXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAANXwAAAAAEVQAAAAAAVQAAAAAAVQAAAAAIXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAAEXwAAAAALVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAMXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAANXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,0: ind: 2,0 - tiles: BwAAAAACBwAAAAAABwAAAAAFBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAMBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAA + tiles: VQAAAAACVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAEVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAA version: 6 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAIBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKAAAAAAAAAAAAAAAABAAAAAAKBAAAAAALBAAAAAAHBAAAAAAGBAAAAAAGBAAAAAADBAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAACAAAAAAAABAAAAAAKBAAAAAABBAAAAAAFBAAAAAAFBAAAAAAEBAAAAAAJBAAAAAAFBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAJBAAAAAAJgQAAAAAABAAAAAAOBAAAAAAIBAAAAAADBwAAAAAABwAAAAAABwAAAAAABAAAAAAOBAAAAAAOBAAAAAAIBAAAAAAIBAAAAAAJBAAAAAAIBAAAAAALBAAAAAAKBAAAAAAABwAAAAAABAAAAAAMBAAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAJBAAAAAAIBAAAAAAJBAAAAAAHBAAAAAANBAAAAAAABAAAAAALBAAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAMBAAAAAAMBAAAAAADBAAAAAAABAAAAAALBAAAAAAOBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAEBAAAAAAIBAAAAAADBAAAAAAJAAAAAAAAAAAAAAAABAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAADBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAIBwAAAAAABAAAAAAKBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBAAAAAAABAAAAAAKBAAAAAAGBAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABAAAAAAEBAAAAAAJBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAIXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAALXwAAAAAHXwAAAAAGXwAAAAAGXwAAAAADXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAACKgAAAAAAXwAAAAAKXwAAAAABXwAAAAAFXwAAAAAFXwAAAAAEXwAAAAAJXwAAAAAFXwAAAAABXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAJXwAAAAAJCwAAAAAAXwAAAAAOXwAAAAAIXwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAOXwAAAAAOXwAAAAAIXwAAAAAIXwAAAAAJXwAAAAAIXwAAAAALXwAAAAAKXwAAAAAAVQAAAAAAXwAAAAAMXwAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAIXwAAAAAJXwAAAAAHXwAAAAANXwAAAAAAXwAAAAALXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAACXwAAAAAAXwAAAAAMXwAAAAAMXwAAAAADXwAAAAAAXwAAAAALXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAIXwAAAAADXwAAAAAJKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAABXwAAAAADXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAIVQAAAAAAXwAAAAAKXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKXwAAAAAAXwAAAAAKXwAAAAAGXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAJXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 1,1: ind: 1,1 - tiles: BAAAAAAFBAAAAAAABAAAAAAHBAAAAAAOBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBAAAAAAABAAAAAANBAAAAAAFBAAAAAALBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAANBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAANBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAIBwAAAAAABAAAAAAFBAAAAAACBAAAAAAKBAAAAAABBwAAAAAJBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAAMBAAAAAALBAAAAAAIBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABAAAAAAGBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAAJBAAAAAAKBAAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABAAAAAAJBAAAAAANBAAAAAACBAAAAAADBAAAAAAEBAAAAAAHBAAAAAALBAAAAAANBAAAAAAHBAAAAAAFBAAAAAAABAAAAAAEBAAAAAAFBAAAAAAKBAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGAAAAAAAAAAAAAAAABAAAAAAEBAAAAAANBAAAAAADBAAAAAABBAAAAAANBAAAAAABBAAAAAAIBAAAAAAGBAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAACBAAAAAAHAAAAAAAAAAAAAAAABAAAAAANBAAAAAABBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAAGBAAAAAAABAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAALBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAAKBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAADBAAAAAAJBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XwAAAAAFXwAAAAAAXwAAAAAHXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAABVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACXwAAAAAAXwAAAAANXwAAAAAFXwAAAAALVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAABVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAIVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAIVQAAAAAAXwAAAAAFXwAAAAACXwAAAAAKXwAAAAABVQAAAAAJVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAAXwAAAAAMXwAAAAALXwAAAAAIVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAADXwAAAAADXwAAAAAAXwAAAAAAXwAAAAAJXwAAAAAKXwAAAAACVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAXwAAAAAJXwAAAAANXwAAAAACXwAAAAADXwAAAAAEXwAAAAAHXwAAAAALXwAAAAANXwAAAAAHXwAAAAAFXwAAAAAAXwAAAAAEXwAAAAAFXwAAAAAKXwAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAANXwAAAAADXwAAAAABXwAAAAANXwAAAAABXwAAAAAIXwAAAAAGXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAACXwAAAAAHKgAAAAAAKgAAAAAAXwAAAAANXwAAAAABXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAGXwAAAAAAXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAALXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAKXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAADXwAAAAAJXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,1: ind: 2,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAMBwAAAAAEBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAHBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAFBAAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABAAAAAAIBAAAAAADBAAAAAAGBAAAAAAOBAAAAAAHBAAAAAAHBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABAAAAAAMBAAAAAAIBAAAAAAGBAAAAAAGBAAAAAAMBAAAAAAFBAAAAAAMBAAAAAAKBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAADBAAAAAAOBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAALBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAAOBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAEVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAADVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAFVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAHVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAFXwAAAAACVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAXwAAAAAIXwAAAAADXwAAAAAGXwAAAAAOXwAAAAAHXwAAAAAHXwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAXwAAAAAMXwAAAAAIXwAAAAAGXwAAAAAGXwAAAAAMXwAAAAAFXwAAAAAMXwAAAAAKXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAADXwAAAAAOXwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAALVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 0,2: ind: 0,2 - tiles: BAAAAAAFBwAAAAAABwAAAAADBwAAAAAABAAAAAADBAAAAAAABAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAJBAAAAAABBAAAAAAMBAAAAAAOBAAAAAANBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAEBAAAAAAHBAAAAAAHBAAAAAAABAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XwAAAAAFVQAAAAAAVQAAAAADVQAAAAAAXwAAAAADXwAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAJXwAAAAABXwAAAAAMXwAAAAAOXwAAAAANXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAEXwAAAAAHXwAAAAAHXwAAAAAAXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAANBAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAABLAAAAAAALAAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAABCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAGBAAAAAAGBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAACBAAAAAAGBAAAAAACBAAAAAALBAAAAAAHBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAADBAAAAAABBAAAAAAGBAAAAAAJBAAAAAAHBAAAAAAIBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAALBAAAAAABBwAAAAAABwAAAAAABwAAAAAHBwAAAAADBAAAAAAKBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAMBAAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAANBAAAAAAIBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAAKBAAAAAAMBwAAAAADBwAAAAAABwAAAAAABAAAAAAGBAAAAAAKBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAJBAAAAAAJBAAAAAAJBwAAAAAABwAAAAAABwAAAAAABAAAAAAFBAAAAAANBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAFBAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABAAAAAABBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAJBAAAAAACBAAAAAANBAAAAAALBwAAAAAABAAAAAAABAAAAAAFBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAFBAAAAAANBAAAAAACBAAAAAANBwAAAAAABAAAAAACBAAAAAAMBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAAMBAAAAAAFBAAAAAAHBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAAMBAAAAAANBAAAAAALBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAGXwAAAAAGXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAACXwAAAAAGXwAAAAACXwAAAAALXwAAAAAHXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAADXwAAAAABXwAAAAAGXwAAAAAJXwAAAAAHXwAAAAAIXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAALXwAAAAABVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAADXwAAAAAKXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAMXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAAIXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAKXwAAAAAMVQAAAAADVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAAKXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAJXwAAAAAJXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAFXwAAAAANXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAFXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAXwAAAAABXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAJXwAAAAACXwAAAAANXwAAAAALVQAAAAAAXwAAAAAAXwAAAAAFXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAFXwAAAAANXwAAAAACXwAAAAANVQAAAAAAXwAAAAACXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAMXwAAAAAFXwAAAAAHXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAMXwAAAAANXwAAAAALXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAABwAAAAAABwAAAAAKBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 3,0: ind: 3,0 - tiles: BwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAIBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAJBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: VQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAJVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 3,1: ind: 3,1 - tiles: BwAAAAAKBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAGBgAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADBgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAIfQAAAAACfQAAAAADfQAAAAACfQAAAAABfQAAAAACBgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAKfQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAAABgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABgAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAACBgAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAABgAAAAAAfQAAAAADfQAAAAACfQAAAAACBgAAAAAHBgAAAAAABwAAAAAJBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABgAAAAAABgAAAAAABgAAAAAMBgAAAAAABgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAFBgAAAAAIBgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: VQAAAAAKVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAHYgAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAGYgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAADIwAAAAADYgAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAIIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAACYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAKIwAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAAAYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAACYgAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAAYgAAAAAAIwAAAAADIwAAAAACIwAAAAACYgAAAAAHYgAAAAAAVQAAAAAJVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAMYgAAAAAAYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAFYgAAAAAIYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAABAAAAAANBAAAAAANBAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBAAAAAACBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAALBAAAAAAIBAAAAAAIBAAAAAAMBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAABBAAAAAAJBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABAAAAAALBAAAAAAIBAAAAAADBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAEBAAAAAAHBAAAAAABBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAJBwAAAAAABAAAAAAFBAAAAAAIBAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAAIBAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAIBAAAAAAGBAAAAAAOBAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAFBAAAAAAABAAAAAALBAAAAAADBAAAAAAGBAAAAAAGBAAAAAAOAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAJBAAAAAADBAAAAAAMBAAAAAAGAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABAAAAAAFBAAAAAACBAAAAAAABAAAAAAJAAAAAAAABAAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAKBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAMBAAAAAAOBAAAAAAKBAAAAAACBAAAAAAJBAAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAANXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEXwAAAAACXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAADVQAAAAALXwAAAAAIXwAAAAAIXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAABXwAAAAAJXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAEVQAAAAAAXwAAAAALXwAAAAAIXwAAAAADXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAHXwAAAAABXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAJVQAAAAAAXwAAAAAFXwAAAAAIXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAAIXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAIXwAAAAAGXwAAAAAOXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAEVQAAAAAAVQAAAAAFXwAAAAAAXwAAAAALXwAAAAADXwAAAAAGXwAAAAAGXwAAAAAOKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAABVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAADXwAAAAAMXwAAAAAGKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAXwAAAAAFXwAAAAACXwAAAAAAXwAAAAAJKgAAAAAAXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAKXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAADXwAAAAAAXwAAAAADXwAAAAADXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAMXwAAAAAOXwAAAAAKXwAAAAACXwAAAAAJXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: BwAAAAAABwAAAAAABAAAAAAJBAAAAAAMBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABwAAAAAIBwAAAAAABAAAAAAABAAAAAAEBAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADBwAAAAAABwAAAAAABwAAAAAABAAAAAAEBAAAAAAIBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACBwAAAAAABwAAAAAIBwAAAAAABAAAAAAABAAAAAAMBAAAAAADBAAAAAACBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABBwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAAFBAAAAAALBAAAAAALBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAGBAAAAAAHBAAAAAAJBAAAAAAKBAAAAAALBAAAAAADBAAAAAADAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAEBAAAAAAFBAAAAAACBAAAAAAMBAAAAAAEgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAAAhQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAAChQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAhQAAAAAAhQAAAAACBwAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAAAgQAAAAAAgQAAAAAAhQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAABgQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADhQAAAAABhQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABhQAAAAACgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: VQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAAVQAAAAAIVQAAAAAAXwAAAAAAXwAAAAAEXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAIXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACVQAAAAAAVQAAAAAIVQAAAAAAXwAAAAAAXwAAAAAMXwAAAAADXwAAAAACXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADLAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAABXwAAAAAFXwAAAAALXwAAAAALXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAALAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAGXwAAAAAHXwAAAAAJXwAAAAAKXwAAAAALXwAAAAADXwAAAAADKgAAAAAACwAAAAAACwAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAEXwAAAAAFXwAAAAACXwAAAAAMXwAAAAAECwAAAAAACwAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAAYQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAALAAAAAAACwAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAACYQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADCwAAAAAAYQAAAAAAYQAAAAACVQAAAAAACwAAAAAACwAAAAAAYQAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAAACwAAAAAACwAAAAAAYQAAAAABCwAAAAAACwAAAAAACwAAAAAAYQAAAAABCwAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADYQAAAAABYQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAACwAAAAAACwAAAAAALAAAAAABYQAAAAACCwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAANBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAEBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAKBAAAAAAMBAAAAAAGBAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAAGBAAAAAABBAAAAAAOBAAAAAALBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAIBAAAAAANBAAAAAAJBwAAAAAABAAAAAABBAAAAAACAAAAAAAAAAAAAAAABAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAANBAAAAAAKBAAAAAAMBwAAAAALBwAAAAAABAAAAAAHBAAAAAAEAAAAAAAABAAAAAAFBAAAAAACBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKBAAAAAAABAAAAAABBAAAAAABBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABAAAAAAOBAAAAAACBAAAAAAOBAAAAAADBAAAAAAJBAAAAAAJBAAAAAAGBAAAAAAMBAAAAAACBAAAAAAOBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABAAAAAAKBAAAAAACBAAAAAAFBAAAAAABBAAAAAALBAAAAAAGBAAAAAAJBAAAAAALBwAAAAAEBwAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAAA + tiles: KgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAACLAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAANXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAEXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAKXwAAAAAMXwAAAAAGXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAGXwAAAAABXwAAAAAOXwAAAAALXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAIXwAAAAANXwAAAAAJVQAAAAAAXwAAAAABXwAAAAACKgAAAAAAKgAAAAAAXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAANXwAAAAAKXwAAAAAMVQAAAAALVQAAAAAAXwAAAAAHXwAAAAAEKgAAAAAAXwAAAAAFXwAAAAACXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAAXwAAAAABXwAAAAABVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAXwAAAAAOXwAAAAACXwAAAAAOXwAAAAADXwAAAAAJXwAAAAAJXwAAAAAGXwAAAAAMXwAAAAACXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAAKXwAAAAACXwAAAAAFXwAAAAABXwAAAAALXwAAAAAGXwAAAAAJXwAAAAALVQAAAAAEVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABAAAAAABBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADBAAAAAABBAAAAAAIBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABAAAAAABBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADBwAAAAAABAAAAAACBAAAAAALBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACBwAAAAAABAAAAAAKBAAAAAAKBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAC + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAAXwAAAAABXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADXwAAAAABXwAAAAAIXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAAXwAAAAABXwAAAAADXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADVQAAAAAAXwAAAAACXwAAAAALXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACVQAAAAAAXwAAAAAKXwAAAAAKXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAC version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAABAAAAAAGBAAAAAAEBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAABgQAAAAAABAAAAAAKBAAAAAAHBAAAAAAHBAAAAAAOBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABAAAAAAOBAAAAAAOBAAAAAANBAAAAAADBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBAAAAAAEBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAJBAAAAAADBAAAAAAFBAAAAAAEBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAHBAAAAAAJBAAAAAAFBAAAAAADBAAAAAAABAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAIBAAAAAANBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAALBAAAAAAHBAAAAAANBAAAAAAHBAAAAAAIBAAAAAAGBAAAAAACBAAAAAAABAAAAAANAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABAAAAAAHBAAAAAAJBAAAAAAFAAAAAAAAAAAAAAAABAAAAAAIBAAAAAABBAAAAAAJBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACCwAAAAAAXwAAAAAGXwAAAAAEXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAYQAAAAABCwAAAAAAXwAAAAAKXwAAAAAHXwAAAAAHXwAAAAAOXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAVQAAAAAAXwAAAAAOXwAAAAAOXwAAAAANXwAAAAADXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALXwAAAAAEXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAADXwAAAAAFXwAAAAAEXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAHXwAAAAAJXwAAAAAFXwAAAAADXwAAAAAAXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAAXwAAAAABXwAAAAACXwAAAAAAXwAAAAAIXwAAAAANXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALXwAAAAAHXwAAAAANXwAAAAAHXwAAAAAIXwAAAAAGXwAAAAACXwAAAAAAXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAXwAAAAAHXwAAAAAJXwAAAAAFKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAABXwAAAAAJXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,2: ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAOBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAHBAAAAAAIBwAAAAAKBwAAAAAABwAAAAAABAAAAAAMBAAAAAAJBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAAGBAAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAIBAAAAAAMBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAANBwAAAAAABwAAAAAABwAAAAAABAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAACBwAAAAAABwAAAAAHBwAAAAAABAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAMBwAAAAAABwAAAAAABwAAAAAABAAAAAAHgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAOXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAHXwAAAAAIVQAAAAAKVQAAAAAAVQAAAAAAXwAAAAAMXwAAAAAJXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAGXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAIXwAAAAAMXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAACVQAAAAAAVQAAAAAHVQAAAAAAXwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAHCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAADLAAAAAABLAAAAAABCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAADCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 3,2: ind: 3,2 - tiles: BAAAAAAGBAAAAAAOBAAAAAAFBwAAAAACBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABAAAAAAFBAAAAAADBAAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABAAAAAAJBAAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAABAAAAAAOBAAAAAANBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAANBAAAAAACBAAAAAAKBAAAAAACBAAAAAAEBwAAAAAABwAAAAAAAAAAAAAABAAAAAAJBAAAAAAHBAAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBAAAAAAMBAAAAAALBAAAAAAABAAAAAAIBAAAAAALBwAAAAALBwAAAAAAAAAAAAAABAAAAAAHBAAAAAAEBAAAAAAEBAAAAAAIBAAAAAACBwAAAAADBwAAAAAABAAAAAAKBAAAAAACAAAAAAAAAAAAAAAABAAAAAADBAAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABAAAAAANBAAAAAAKBAAAAAACBAAAAAAMBwAAAAAABAAAAAAGBAAAAAACBAAAAAADAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAIBAAAAAAGBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAIBwAAAAAABAAAAAAEBAAAAAAKBAAAAAADAAAAAAAAAAAAAAAABAAAAAAABAAAAAAMBAAAAAANBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAANBwAAAAAABAAAAAAOBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAACBwAAAAAABAAAAAABBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAEBAAAAAADBAAAAAALBAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAMBAAAAAALBAAAAAAMBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAFBAAAAAAOBAAAAAAKBAAAAAAIBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAIBAAAAAAABAAAAAANBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XwAAAAAGXwAAAAAOXwAAAAAFVQAAAAACVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAXwAAAAAFXwAAAAADXwAAAAAEVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAAJXwAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAHVQAAAAAEVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAAOXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAACXwAAAAAKXwAAAAACXwAAAAAEVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAAJXwAAAAAHXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAGXwAAAAAMXwAAAAALXwAAAAAAXwAAAAAIXwAAAAALVQAAAAALVQAAAAAAKgAAAAAAXwAAAAAHXwAAAAAEXwAAAAAEXwAAAAAIXwAAAAACVQAAAAADVQAAAAAAXwAAAAAKXwAAAAACKgAAAAAAKgAAAAAAXwAAAAADXwAAAAACVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAKXwAAAAACXwAAAAAMVQAAAAAAXwAAAAAGXwAAAAACXwAAAAADKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAIXwAAAAAGVQAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAIVQAAAAAAXwAAAAAEXwAAAAAKXwAAAAADKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAMXwAAAAANXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAANVQAAAAAAXwAAAAAOXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAACVQAAAAAAXwAAAAABXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAAEXwAAAAADXwAAAAALXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAMXwAAAAALXwAAAAAMXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAFXwAAAAAOXwAAAAAKXwAAAAAIXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAIXwAAAAAAXwAAAAANXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,1: ind: 4,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBAAAAAAJBAAAAAADBAAAAAAABAAAAAALBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBAAAAAAIBAAAAAALBAAAAAAJBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAHBwAAAAAKBwAAAAAFBAAAAAAFBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABAAAAAAMBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABAAAAAAMBAAAAAAIBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABAAAAAAABAAAAAAOBAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABAAAAAAHBAAAAAABBAAAAAAGBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAALBAAAAAADBAAAAAAKBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBAAAAAANBAAAAAANgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAEBAAAAAAFBAAAAAAHgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAMBwAAAAAABwAAAAAABwAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBAAAAAAIBAAAAAAFBAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBAAAAAAIBAAAAAAGgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIXwAAAAAJXwAAAAADXwAAAAAAXwAAAAALXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJXwAAAAAIXwAAAAALXwAAAAAJXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAHVQAAAAAKVQAAAAAFXwAAAAAFXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAXwAAAAAMXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAXwAAAAAMXwAAAAAIXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAXwAAAAAAXwAAAAAOXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAXwAAAAAHXwAAAAABXwAAAAAGXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAALXwAAAAADXwAAAAAKXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAJXwAAAAANXwAAAAANCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAFXwAAAAAHCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKXwAAAAAIXwAAAAAFXwAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMXwAAAAAIXwAAAAAGCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,0: ind: 4,0 - tiles: BwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAJBAAAAAAHAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABAAAAAAGBAAAAAADBAAAAAAHAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAAKBAAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAANBAAAAAANBAAAAAAIBAAAAAAHAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABAAAAAALBAAAAAAEBAAAAAAOBAAAAAABBAAAAAAHAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAGBAAAAAAEBAAAAAALBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAAOBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAKBAAAAAAFBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAANBAAAAAAABAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAHBwAAAAAABAAAAAABBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAABBAAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAHBwAAAAAABAAAAAAOBAAAAAANAAAAAAAAAAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAALBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAANBAAAAAADBAAAAAAEBAAAAAAMBAAAAAABBAAAAAAABAAAAAADBAAAAAAMBAAAAAAHBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBAAAAAAJBAAAAAAOBAAAAAAIBAAAAAAJBAAAAAAFBAAAAAAFBAAAAAACBAAAAAACBAAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABAAAAAAIBAAAAAAKBAAAAAALBAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAABBAAAAAANBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABAAAAAABBAAAAAAHBAAAAAAKBAAAAAAKBAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAHKgAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAADXwAAAAAHKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAAKXwAAAAACKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAANXwAAAAAIXwAAAAAHKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAXwAAAAALXwAAAAAEXwAAAAAOXwAAAAABXwAAAAAHKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAAEXwAAAAALXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAFVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAABXwAAAAAOXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAIVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAKXwAAAAAFXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAAAXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAHVQAAAAAAXwAAAAABXwAAAAABXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAABXwAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAHVQAAAAAAXwAAAAAOXwAAAAANKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAADXwAAAAACXwAAAAACXwAAAAALVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAADXwAAAAAEXwAAAAAMXwAAAAABXwAAAAAAXwAAAAADXwAAAAAMXwAAAAAHVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJXwAAAAAJXwAAAAAOXwAAAAAIXwAAAAAJXwAAAAAFXwAAAAAFXwAAAAACXwAAAAACXwAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAXwAAAAAIXwAAAAAKXwAAAAALXwAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAABXwAAAAANXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAXwAAAAABXwAAAAAHXwAAAAAKXwAAAAAKXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAADBAAAAAADBAAAAAAIBAAAAAAMBAAAAAALAAAAAAAABAAAAAAIBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAAFBwAAAAAABAAAAAAKBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAHBAAAAAABBAAAAAABBAAAAAAFBAAAAAAHBAAAAAAIBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAALBAAAAAALBAAAAAAOBAAAAAACBAAAAAACBAAAAAAGBAAAAAANBAAAAAALBAAAAAABBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAIBAAAAAAGBAAAAAAFBAAAAAAHBAAAAAACBAAAAAAKBAAAAAAJBAAAAAACAAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAABBAAAAAADBAAAAAAFBAAAAAACBAAAAAAFBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAAJBAAAAAAFBAAAAAAJBAAAAAAABAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJAAAAAAAAAAAAAAAABAAAAAAGBAAAAAACBAAAAAAGBAAAAAADAAAAAAAABAAAAAAEBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAADBAAAAAANAAAAAAAAAAAAAAAABAAAAAAEBAAAAAACBAAAAAAHBAAAAAANAAAAAAAABAAAAAACBAAAAAAIAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAMBAAAAAAJBAAAAAANBAAAAAADAAAAAAAABAAAAAABBAAAAAAJBAAAAAAHBAAAAAAJBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAMBAAAAAAABAAAAAAEBAAAAAANBAAAAAAJBAAAAAAABAAAAAACBAAAAAAJBAAAAAAHBAAAAAABBAAAAAALBAAAAAAHAAAAAAAABAAAAAAOBAAAAAAABAAAAAABBAAAAAADBwAAAAAIBwAAAAAABAAAAAAMBAAAAAALBAAAAAAGBAAAAAABBwAAAAAABwAAAAAABAAAAAAKBAAAAAAHBAAAAAAIBAAAAAAGBAAAAAAEBAAAAAAKBAAAAAADBAAAAAABBwAAAAAABwAAAAAABAAAAAACBAAAAAAEBAAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABAAAAAAKBAAAAAANBAAAAAAHBAAAAAAOBAAAAAAOBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABAAAAAALBAAAAAANBAAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAGBAAAAAAOBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAJBAAAAAAMBAAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAALBAAAAAADBAAAAAAK + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAADXwAAAAADXwAAAAAIXwAAAAAMXwAAAAALKgAAAAAAXwAAAAAIXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAFVQAAAAAAXwAAAAAKXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAHXwAAAAABXwAAAAABXwAAAAAFXwAAAAAHXwAAAAAIXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAALXwAAAAALXwAAAAAOXwAAAAACXwAAAAACXwAAAAAGXwAAAAANXwAAAAALXwAAAAABXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAIXwAAAAAGXwAAAAAFXwAAAAAHXwAAAAACXwAAAAAKXwAAAAAJXwAAAAACKgAAAAAAXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAABXwAAAAADXwAAAAAFXwAAAAACXwAAAAAFXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAJXwAAAAAFXwAAAAAJXwAAAAAAXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAACXwAAAAAGXwAAAAADKgAAAAAAXwAAAAAEXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAADXwAAAAANKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAACXwAAAAAHXwAAAAANKgAAAAAAXwAAAAACXwAAAAAIKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAMXwAAAAAJXwAAAAANXwAAAAADKgAAAAAAXwAAAAABXwAAAAAJXwAAAAAHXwAAAAAJXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAMXwAAAAAAXwAAAAAEXwAAAAANXwAAAAAJXwAAAAAAXwAAAAACXwAAAAAJXwAAAAAHXwAAAAABXwAAAAALXwAAAAAHKgAAAAAAXwAAAAAOXwAAAAAAXwAAAAABXwAAAAADVQAAAAAIVQAAAAAAXwAAAAAMXwAAAAALXwAAAAAGXwAAAAABVQAAAAAAVQAAAAAAXwAAAAAKXwAAAAAHXwAAAAAIXwAAAAAGXwAAAAAEXwAAAAAKXwAAAAADXwAAAAABVQAAAAAAVQAAAAAAXwAAAAACXwAAAAAEXwAAAAAJVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAKXwAAAAANXwAAAAAHXwAAAAAOXwAAAAAOVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAXwAAAAALXwAAAAANXwAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAAOXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAMXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAALXwAAAAADXwAAAAAK version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAAOBAAAAAAAAAAAAAAABAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAOBAAAAAANBAAAAAACBAAAAAAJBAAAAAABBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAEBAAAAAAFBAAAAAAIBAAAAAAJBAAAAAAKBAAAAAACBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKBAAAAAAGBAAAAAACBAAAAAACBAAAAAALBAAAAAAHBAAAAAACBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAMBwAAAAAIBwAAAAAABAAAAAANBAAAAAALBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAFBwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAALBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAANBAAAAAAOBAAAAAADBAAAAAAEBAAAAAAOBAAAAAAIBAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAANBAAAAAAMBAAAAAAFBAAAAAANBAAAAAAOBAAAAAAHBAAAAAANBAAAAAAJBAAAAAAH + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAOXwAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAOXwAAAAANXwAAAAACXwAAAAAJXwAAAAABXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAEXwAAAAAFXwAAAAAIXwAAAAAJXwAAAAAKXwAAAAACXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAGXwAAAAACXwAAAAACXwAAAAALXwAAAAAHXwAAAAACXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAAMVQAAAAAIVQAAAAAAXwAAAAANXwAAAAALXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAALXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAANXwAAAAAOXwAAAAADXwAAAAAEXwAAAAAOXwAAAAAIXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAMXwAAAAAFXwAAAAANXwAAAAAOXwAAAAAHXwAAAAANXwAAAAAJXwAAAAAH version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKBAAAAAAKBAAAAAAKBAAAAAAMBAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABAAAAAAIBAAAAAAMBAAAAAAJBAAAAAABBAAAAAANBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAJBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABAAAAAANBAAAAAAHBAAAAAAJBAAAAAAOBAAAAAAFBAAAAAAMBAAAAAANBAAAAAACBAAAAAALBAAAAAAOBAAAAAAHBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABAAAAAAIBAAAAAANBAAAAAABBAAAAAAIBAAAAAAGBAAAAAAMBAAAAAANBAAAAAAJBAAAAAAGBAAAAAANBAAAAAANBAAAAAADBAAAAAADAAAAAAAAgAAAAAAAgQAAAAAABAAAAAAHBAAAAAALBAAAAAAJBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBwAAAAAABAAAAAAIBAAAAAAOBAAAAAAGAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAOBAAAAAAGBAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAIBwAAAAAGBwAAAAAABAAAAAAEBAAAAAAMgQAAAAAAgQAAAAAAgQAAAAAABAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAMBAAAAAAJBwAAAAAABAAAAAAIBAAAAAAKBwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAABAAAAAAIBwAAAAAJBwAAAAAGBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAALBwAAAAACBAAAAAAGBAAAAAAHBwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAHBwAAAAAKBAAAAAAIBAAAAAAFgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAANBAAAAAAJBAAAAAAIBAAAAAACBAAAAAAMAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAAOBAAAAAAHBAAAAAAABAAAAAAGBAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAKXwAAAAAKXwAAAAAMXwAAAAAAXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAAIXwAAAAAMXwAAAAAJXwAAAAABXwAAAAANXwAAAAACXwAAAAADXwAAAAACXwAAAAABXwAAAAABXwAAAAAJXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAANXwAAAAAHXwAAAAAJXwAAAAAOXwAAAAAFXwAAAAAMXwAAAAANXwAAAAACXwAAAAALXwAAAAAOXwAAAAAHXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAAIXwAAAAANXwAAAAABXwAAAAAIXwAAAAAGXwAAAAAMXwAAAAANXwAAAAAJXwAAAAAGXwAAAAANXwAAAAANXwAAAAADXwAAAAADKgAAAAAAXAAAAAAACwAAAAAAXwAAAAAHXwAAAAALXwAAAAAJXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAADVQAAAAAAXwAAAAAIXwAAAAAOXwAAAAAGKgAAAAAACwAAAAAACwAAAAAAXwAAAAAOXwAAAAAGXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAIVQAAAAAGVQAAAAAAXwAAAAAEXwAAAAAMCwAAAAAACwAAAAAACwAAAAAAXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAMXwAAAAAJVQAAAAAAXwAAAAAIXwAAAAAKVQAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAAXwAAAAAIVQAAAAAJVQAAAAAGVQAAAAAAVQAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAALVQAAAAACXwAAAAAGXwAAAAAHVQAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAHVQAAAAAKXwAAAAAIXwAAAAAFCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAANXwAAAAAJXwAAAAAIXwAAAAACXwAAAAAMKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAOXwAAAAAHXwAAAAAAXwAAAAAGXwAAAAAAKgAAAAAAXAAAAAAACwAAAAAA version: 6 5,0: ind: 5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAANBAAAAAAIBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAANBAAAAAAMBAAAAAAGBAAAAAACBAAAAAAOBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAAKBAAAAAANBAAAAAAJBAAAAAAIBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAHBAAAAAACBwAAAAAABAAAAAAKBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABAAAAAANBAAAAAAJBAAAAAAMBAAAAAAGBAAAAAAGBwAAAAAABAAAAAAIBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAAKBAAAAAAOBwAAAAAABwAAAAAIBwAAAAAEBAAAAAAABAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABAAAAAAKBAAAAAAOBAAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAHBAAAAAANBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABAAAAAADBAAAAAAIBAAAAAAFBAAAAAAOBAAAAAACBAAAAAABBAAAAAAIBAAAAAAOBAAAAAALBAAAAAANBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAHBAAAAAAHBAAAAAAABAAAAAAFBAAAAAAGBAAAAAALBAAAAAALBAAAAAAKBAAAAAABBAAAAAAFAAAAAAAAAAAAAAAAgAAAAAAABAAAAAADBAAAAAAJBAAAAAANBAAAAAAIBAAAAAAIAAAAAAAAAAAAAAAABAAAAAACBAAAAAAEBAAAAAAGBAAAAAANBAAAAAAHBAAAAAAHAAAAAAAAAAAAAAAAgAAAAAAABAAAAAAEBAAAAAAJBAAAAAAABAAAAAAABAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAAMBAAAAAAFBAAAAAALAAAAAAAAAAAAAAAAgAAAAAAABAAAAAABBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAHBAAAAAAFBAAAAAAFAAAAAAAAAAAAAAAAgAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAANXwAAAAAIXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAMXwAAAAAGXwAAAAACXwAAAAAOXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAKXwAAAAANXwAAAAAJXwAAAAAIXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAHXwAAAAACVQAAAAAAXwAAAAAKXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAJXwAAAAAMXwAAAAAGXwAAAAAGVQAAAAAAXwAAAAAIXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAKXwAAAAAOVQAAAAAAVQAAAAAIVQAAAAAEXwAAAAAAXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXwAAAAAKXwAAAAAOXwAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAHXwAAAAANXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAADXwAAAAAIXwAAAAAFXwAAAAAOXwAAAAACXwAAAAABXwAAAAAIXwAAAAAOXwAAAAALXwAAAAANXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAAAXwAAAAABXwAAAAAAXwAAAAAHXwAAAAAHXwAAAAAAXwAAAAAFXwAAAAAGXwAAAAALXwAAAAALXwAAAAAKXwAAAAABXwAAAAAFKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAADXwAAAAAJXwAAAAANXwAAAAAIXwAAAAAIKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAEXwAAAAAGXwAAAAANXwAAAAAHXwAAAAAHKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAAEXwAAAAAJXwAAAAAAXwAAAAAAXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAMXwAAAAAFXwAAAAALKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAABXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAHXwAAAAAFXwAAAAAFKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAA version: 6 4,2: ind: 4,2 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABAAAAAAJBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBAAAAAALBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABAAAAAABBAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAALBAAAAAAGBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAACBwAAAAAABAAAAAAIBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBAAAAAAMBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAABAAAAAANBAAAAAAKBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABAAAAAADBAAAAAAHBAAAAAAFBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAIBwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAEBAAAAAABBwAAAAAABwAAAAAEBAAAAAAHBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAANBAAAAAAKBAAAAAAMBwAAAAAABwAAAAAABAAAAAANBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAOBwAAAAAABwAAAAAABAAAAAAJBAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAGBAAAAAAGBAAAAAAMBAAAAAAMBAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKBAAAAAAJBAAAAAADBAAAAAANBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKBAAAAAAFBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAALBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAGVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJXwAAAAALXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAXwAAAAABXwAAAAABXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAALXwAAAAAGXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAACVQAAAAACVQAAAAAAXwAAAAAIXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAGXwAAAAAMXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAAJVQAAAAAAVQAAAAAAXwAAAAANXwAAAAAKXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAXwAAAAADXwAAAAAHXwAAAAAFXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAEXwAAAAABVQAAAAAAVQAAAAAEXwAAAAAHXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAKXwAAAAAMVQAAAAAAVQAAAAAAXwAAAAANXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAOVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAGXwAAAAAGXwAAAAAMXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAJXwAAAAADXwAAAAANXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAFXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAALXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,3: ind: 4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAEBAAAAAADBAAAAAAABAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAAHBAAAAAAFBAAAAAAKBAAAAAAIBAAAAAAEBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAJBAAAAAAOBAAAAAAMBwAAAAACBAAAAAALBAAAAAACBAAAAAACBAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAGBAAAAAADBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAEBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAKBAAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBAAAAAAIBAAAAAAABAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABAAAAAAEBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAAEBAAAAAAJBwAAAAAABwAAAAAABwAAAAAABAAAAAAJBAAAAAAJBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKBAAAAAAEBAAAAAAABAAAAAAMBAAAAAACBAAAAAACBAAAAAANBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAACBAAAAAAHBAAAAAAKBAAAAAABBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAAEXwAAAAADXwAAAAAAXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAHXwAAAAAFXwAAAAAKXwAAAAAIXwAAAAAEXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAJXwAAAAAOXwAAAAAMVQAAAAACXwAAAAALXwAAAAACXwAAAAACXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAGXwAAAAADXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAKXwAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFXwAAAAAIXwAAAAAAXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAXwAAAAAEXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAEXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAJXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAEXwAAAAAAXwAAAAAMXwAAAAACXwAAAAACXwAAAAANXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAACXwAAAAAHXwAAAAAKXwAAAAABXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAA version: 6 3,3: ind: 3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,3: ind: 2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 5,1: ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAA version: 6 6,1: ind: 6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 5,3: ind: 5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,4: ind: 4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 3,4: ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 1,4: ind: 1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,4: ind: 2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,3: ind: 0,3 - tiles: AAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 - type: Broadphase - type: Physics @@ -11393,28 +11386,6 @@ entities: - 15168 - 18602 - 18601 -- proto: AirAlarmVox - entities: - - uid: 231 - components: - - type: Transform - pos: -10.5,18.5 - parent: 2 - - type: DeviceList - devices: - - 10840 - - 10841 - - 29050 - - 9276 - - 10839 - - type: DeviceLinkSource - linkedPorts: - 12356: - - AirWarning: Close - - AirDanger: Close - 13577: - - AirDanger: Close - - AirWarning: Close - proto: AirCanister entities: - uid: 4223 @@ -14678,7 +14649,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111136.43 + secondsUntilStateChange: -111545.98 state: Opening - uid: 6934 components: @@ -14690,7 +14661,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111139.06 + secondsUntilStateChange: -111548.61 state: Opening - uid: 6935 components: @@ -14702,7 +14673,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111137.914 + secondsUntilStateChange: -111547.46 state: Opening - uid: 6936 components: @@ -14713,7 +14684,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -111137.13 + secondsUntilStateChange: -111546.68 state: Opening - proto: AirlockTheatreLocked entities: @@ -14803,9 +14774,6 @@ entities: - type: Transform pos: -11.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 231 - uid: 18245 components: - type: Transform @@ -35896,113 +35864,6 @@ entities: - type: Transform pos: -42.5,17.5 parent: 2 -- proto: AtmosFixVoxMarker - entities: - - uid: 10285 - components: - - type: Transform - pos: -15.5,17.5 - parent: 2 - - uid: 10466 - components: - - type: Transform - pos: -14.5,16.5 - parent: 2 - - uid: 10655 - components: - - type: Transform - pos: -15.5,16.5 - parent: 2 - - uid: 10656 - components: - - type: Transform - pos: -14.5,18.5 - parent: 2 - - uid: 10691 - components: - - type: Transform - pos: -13.5,19.5 - parent: 2 - - uid: 11130 - components: - - type: Transform - pos: -13.5,18.5 - parent: 2 - - uid: 12566 - components: - - type: Transform - pos: -13.5,17.5 - parent: 2 - - uid: 12567 - components: - - type: Transform - pos: -13.5,16.5 - parent: 2 - - uid: 12882 - components: - - type: Transform - pos: -12.5,16.5 - parent: 2 - - uid: 12883 - components: - - type: Transform - pos: -11.5,16.5 - parent: 2 - - uid: 12884 - components: - - type: Transform - pos: -14.5,19.5 - parent: 2 - - uid: 12885 - components: - - type: Transform - pos: -14.5,17.5 - parent: 2 - - uid: 12886 - components: - - type: Transform - pos: -11.5,17.5 - parent: 2 - - uid: 12888 - components: - - type: Transform - pos: -12.5,17.5 - parent: 2 - - uid: 12889 - components: - - type: Transform - pos: -12.5,19.5 - parent: 2 - - uid: 12934 - components: - - type: Transform - pos: -10.5,17.5 - parent: 2 - - uid: 12935 - components: - - type: Transform - pos: -11.5,19.5 - parent: 2 - - uid: 12937 - components: - - type: Transform - pos: -11.5,18.5 - parent: 2 - - uid: 12938 - components: - - type: Transform - pos: -12.5,18.5 - parent: 2 - - uid: 13010 - components: - - type: Transform - pos: -16.5,16.5 - parent: 2 - - uid: 13030 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 - proto: Autolathe entities: - uid: 6864 @@ -38240,12 +38101,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-50.5 parent: 2 - - uid: 10949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,18.5 - parent: 2 - proto: ButtonFrameGrey entities: - uid: 4519 @@ -81662,13 +81517,6 @@ entities: - type: Transform pos: -54.5,-11.5 parent: 2 -- proto: DefaultStationBeaconVox - entities: - - uid: 29615 - components: - - type: Transform - pos: -14.5,17.5 - parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - uid: 11912 @@ -94905,7 +94753,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -102460.414 + secondsUntilStateChange: -102869.96 - type: DeviceNetwork deviceLists: - 18275 @@ -98506,14 +98354,6 @@ entities: color: '#FF1212FF' - proto: GasFilterFlipped entities: - - uid: 2176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 15676 components: - type: Transform @@ -101740,6 +101580,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 231 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 253 components: - type: Transform @@ -101832,12 +101679,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,17.5 - parent: 2 - uid: 1636 components: - type: Transform @@ -123328,12 +123169,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 29045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,17.5 - parent: 2 - uid: 29684 components: - type: Transform @@ -129088,15 +128923,6 @@ entities: - 29040 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 29050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 231 - uid: 29707 components: - type: Transform @@ -129144,6 +128970,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2175 components: - type: Transform @@ -131038,26 +130872,12 @@ entities: color: '#FF1212FF' - proto: GasVentScrubberVox entities: - - uid: 10839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 231 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 10840 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 231 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10841 @@ -131066,9 +130886,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 231 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -139623,7 +139440,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -139292.27 + secondsUntilStateChange: -139701.81 state: Opening - uid: 5211 components: @@ -143494,11 +143311,6 @@ entities: - type: Transform pos: -46.5,-44.5 parent: 2 - - uid: 24249 - components: - - type: Transform - pos: -18.5,17.5 - parent: 2 - uid: 26885 components: - type: Transform @@ -149861,13 +149673,6 @@ entities: - type: Transform pos: -3.4752243,-18.994682 parent: 2 -- proto: PresentRandomAsh - entities: - - uid: 26468 - components: - - type: Transform - pos: 53.454712,25.263622 - parent: 21002 - proto: PresentRandomCash entities: - uid: 9641 @@ -149875,6 +149680,13 @@ entities: - type: Transform pos: -26.517355,4.481133 parent: 2 +- proto: PresentRandomCoal + entities: + - uid: 26468 + components: + - type: Transform + pos: 53.454712,25.263622 + parent: 21002 - proto: PressureControlledValve entities: - uid: 8695 @@ -159390,20 +159202,6 @@ entities: - Pressed: Toggle 9295: - Pressed: Toggle - - uid: 29046 - components: - - type: MetaData - name: close door - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,18.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12356: - - Pressed: Close - 13577: - - Pressed: Close - proto: SignAnomaly entities: - uid: 16793 @@ -190158,30 +189956,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-37.5 parent: 2 - - uid: 12356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,17.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 13577: - - DoorStatus: DoorBolt - - uid: 13577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,17.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 7 - - type: DeviceLinkSource - linkedPorts: - 12356: - - DoorStatus: DoorBolt - uid: 19248 components: - type: Transform @@ -191950,7 +191724,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -484496.97 + secondsUntilStateChange: -484906.5 state: Opening - uid: 28863 components: From bbf5369f14b206aab78d680384ef80f57d90fa3f Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Tue, 17 Dec 2024 20:08:22 +0100 Subject: [PATCH 111/263] Core - remove vox box (#33911) remove Core vox box --- Resources/Maps/core.yml | 554 +++++++++++----------------------------- 1 file changed, 143 insertions(+), 411 deletions(-) diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 21fb7b7114..43c51cf388 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -2,68 +2,63 @@ meta: format: 6 postmapinit: false tilemap: - 0: Space - 2: FloorArcadeBlue2 - 7: FloorAsteroidSand - 10: FloorAsteroidSandUnvariantized - 11: FloorAsteroidTile - 5: FloorAstroSnow - 14: FloorBar - 17: FloorBlueCircuit - 18: FloorBoxing - 21: FloorBrokenWood - 22: FloorCarpetClown - 27: FloorClown - 29: FloorConcreteMono - 31: FloorDark - 35: FloorDarkMini - 36: FloorDarkMono - 37: FloorDarkOffset - 38: FloorDarkPavement - 40: FloorDarkPlastic - 43: FloorEighties - 46: FloorFreezer - 48: FloorGold - 49: FloorGrass - 51: FloorGrassJungle - 56: FloorGreenCircuit - 59: FloorHullReinforced - 60: FloorHydro - 3: FloorJungleAstroGrass - 64: FloorLino - 66: FloorMetalDiamond - 67: FloorMime - 69: FloorMiningDark - 4: FloorMowedAstroGrass - 78: FloorRGlass - 79: FloorReinforced - 91: FloorSnow - 93: FloorSteel - 94: FloorSteelBurnt - 95: FloorSteelCheckerDark - 96: FloorSteelCheckerLight - 97: FloorSteelDamaged - 100: FloorSteelDirty - 101: FloorSteelHerringbone - 1: FloorSteelMini - 104: FloorSteelMono - 105: FloorSteelOffset - 108: FloorTechMaint - 109: FloorTechMaint2 - 110: FloorTechMaint3 - 112: FloorWhite - 116: FloorWhiteMini - 117: FloorWhiteMono - 121: FloorWhitePlastic - 122: FloorWood - 123: FloorWoodLarge - 124: FloorWoodTile - 125: Lattice - 126: Plating - 127: PlatingAsteroid - 129: PlatingBurnt - 130: PlatingDamaged - 131: PlatingSnow + 9: Space + 84: FloorArcadeBlue2 + 75: FloorAsteroidSand + 90: FloorAsteroidSandUnvariantized + 76: FloorAsteroidTile + 92: FloorAstroSnow + 13: FloorBar + 71: FloorBlueCircuit + 34: FloorBoxing + 82: FloorBrokenWood + 44: FloorCarpetClown + 42: FloorClown + 54: FloorConcreteMono + 16: FloorDark + 85: FloorDarkMini + 23: FloorDarkMono + 58: FloorDarkOffset + 47: FloorDarkPavement + 39: FloorDarkPlastic + 87: FloorEighties + 19: FloorFreezer + 88: FloorGold + 28: FloorGrassJungle + 77: FloorGreenCircuit + 26: FloorHullReinforced + 65: FloorHydro + 33: FloorJungleAstroGrass + 45: FloorLino + 57: FloorMetalDiamond + 41: FloorMime + 86: FloorMiningDark + 55: FloorMowedAstroGrass + 32: FloorRGlass + 25: FloorReinforced + 15: FloorSteel + 50: FloorSteelCheckerDark + 70: FloorSteelCheckerLight + 74: FloorSteelDamaged + 89: FloorSteelDirty + 83: FloorSteelHerringbone + 63: FloorSteelMini + 24: FloorSteelMono + 30: FloorSteelOffset + 12: FloorTechMaint + 53: FloorTechMaint2 + 80: FloorTechMaint3 + 62: FloorWhite + 72: FloorWhiteMini + 61: FloorWhiteMono + 68: FloorWhitePlastic + 20: FloorWood + 52: FloorWoodLarge + 6: Lattice + 8: Plating + 81: PlatingAsteroid + 73: PlatingDamaged + 98: PlatingSnow entities: - proto: "" entities: @@ -78,283 +73,283 @@ entities: chunks: 0,0: ind: 0,0 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: BgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: DgAAAAAADgAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADgAAAAAADgAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAHwAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAA + tiles: DQAAAAAADQAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAADQAAAAACFwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAACDQAAAAACFwAAAAACCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAADDQAAAAACFwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAAEAAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAEAAAAAADFAAAAAACFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAEAAAAAACFAAAAAAAFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAEAAAAAAAFAAAAAABFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADDwAAAAAADwAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACCAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: bAAAAAAAbAAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAACJAAAAAACXQAAAAAAXQAAAAADaAAAAAABbAAAAAAAbAAAAAAAXQAAAAABaAAAAAABJAAAAAADJAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAADaAAAAAABJAAAAAABJAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: DAAAAAAADAAAAAAADwAAAAABCAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAACFwAAAAACDwAAAAAADwAAAAADGAAAAAABDAAAAAAADAAAAAAADwAAAAABGAAAAAABFwAAAAADFwAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADwAAAAADGAAAAAABFwAAAAABFwAAAAAAFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADwAAAAADCAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAACCAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: fgAAAAAAfgAAAAAAHwAAAAABHwAAAAADXQAAAAAAaAAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABaAAAAAADXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAJAAAAAACJAAAAAAAJAAAAAABXQAAAAABJAAAAAACXQAAAAABXQAAAAACaAAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABHwAAAAABfgAAAAAAXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACAAAAAAAEAAAAAABEAAAAAADDwAAAAAAGAAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAAADwAAAAADCAAAAAAADwAAAAADDAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAADwAAAAACCAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAADDwAAAAABGAAAAAADDwAAAAADDAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAAFwAAAAACFwAAAAAAFwAAAAABDwAAAAABFwAAAAACDwAAAAABDwAAAAACGAAAAAAADwAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABEAAAAAABCAAAAAAADwAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHAAAAAAAHAAAAAAACAAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAFAAAAAADFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAFAAAAAAAFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAFAAAAAADFAAAAAACFAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: XQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABaAAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAaAAAAAAAaAAAAAABaAAAAAADaAAAAAADaAAAAAADaAAAAAADaAAAAAADaAAAAAACaAAAAAABaAAAAAADTgAAAAABTgAAAAABaAAAAAAATgAAAAABTgAAAAACaAAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADaAAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAHwAAAAACfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAaAAAAAABaAAAAAABXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABaAAAAAACaAAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAaAAAAAADaAAAAAADXQAAAAACJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABXQAAAAADTgAAAAAATgAAAAADTgAAAAAAXQAAAAACXQAAAAABTgAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABJAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABJAAAAAAAXQAAAAACJAAAAAADJAAAAAACJAAAAAABfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADXQAAAAAAaAAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAB + tiles: DwAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAABGAAAAAABDwAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAAAGAAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAADGAAAAAADGAAAAAADGAAAAAACGAAAAAABGAAAAAADIAAAAAABIAAAAAABGAAAAAAAIAAAAAABIAAAAAACGAAAAAACDwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAABDwAAAAADGAAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAAADwAAAAAAEAAAAAADCAAAAAAAEAAAAAACCAAAAAAADwAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAADwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAACCAAAAAAADAAAAAAACAAAAAAADwAAAAACCAAAAAAAGAAAAAABGAAAAAABDwAAAAABDwAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAABGAAAAAACGAAAAAADDwAAAAABDwAAAAABCAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAAGAAAAAADGAAAAAADDwAAAAACFwAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABDwAAAAADIAAAAAAAIAAAAAADIAAAAAAADwAAAAACDwAAAAABIAAAAAADCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABFwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABFwAAAAAADwAAAAACFwAAAAADFwAAAAACFwAAAAABCAAAAAAAFwAAAAABFwAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAACCAAAAAAADwAAAAADDwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACDwAAAAACCAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAAEAAAAAADEAAAAAADDwAAAAAAGAAAAAADDwAAAAACDwAAAAADDwAAAAADDwAAAAAADwAAAAADDwAAAAACDwAAAAACCAAAAAAADwAAAAADDwAAAAAB version: 6 0,-2: ind: 0,-2 - tiles: aAAAAAACaAAAAAABXQAAAAAAXQAAAAAAaAAAAAABXQAAAAAAXQAAAAADXQAAAAACaAAAAAADXQAAAAADaAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAABTgAAAAAATgAAAAAAaAAAAAABaAAAAAADaAAAAAAAaAAAAAABaAAAAAABaAAAAAACaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACaAAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAADJAAAAAACJAAAAAADJAAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAJAAAAAAAegAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADJAAAAAACfgAAAAAAHwAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACegAAAAAAegAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABaAAAAAACXQAAAAABHwAAAAACfgAAAAAAHwAAAAACJAAAAAAAJAAAAAADJAAAAAADJAAAAAACXQAAAAADXQAAAAADJAAAAAADfgAAAAAAJAAAAAABaAAAAAADaAAAAAACaAAAAAABXQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAATgAAAAABTgAAAAAAJAAAAAACfgAAAAAAaAAAAAAAaAAAAAABaAAAAAABaAAAAAACXQAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABXQAAAAAAXQAAAAADXQAAAAADaAAAAAABaAAAAAACaAAAAAADaAAAAAACaAAAAAABXQAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADXQAAAAACXQAAAAADaAAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAADaAAAAAADXQAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAACXQAAAAACXQAAAAACaAAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAaAAAAAABaAAAAAACaAAAAAADaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAACaAAAAAABaAAAAAADXQAAAAADfgAAAAAAJAAAAAACJAAAAAACJAAAAAACXQAAAAADXQAAAAACaAAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAXQAAAAACXQAAAAADaAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAABHwAAAAACHwAAAAADXQAAAAABXQAAAAAAaAAAAAAB + tiles: GAAAAAACGAAAAAABDwAAAAAADwAAAAAAGAAAAAABDwAAAAAADwAAAAADDwAAAAACGAAAAAADDwAAAAADGAAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAABDwAAAAABIAAAAAAAIAAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAABGAAAAAABGAAAAAACGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAACDwAAAAACGAAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAABDwAAAAACCAAAAAAAEAAAAAADFwAAAAACFwAAAAADFwAAAAABFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAAADwAAAAADCAAAAAAAEAAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAFwAAAAAAFAAAAAACCAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADFwAAAAACCAAAAAAAEAAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACFAAAAAAAFAAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAAACAAAAAAAEAAAAAADFwAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAAFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAACFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABGAAAAAACDwAAAAABEAAAAAACCAAAAAAAEAAAAAACFwAAAAAAFwAAAAADFwAAAAADFwAAAAACDwAAAAADDwAAAAADFwAAAAADCAAAAAAAFwAAAAABGAAAAAADGAAAAAACGAAAAAABDwAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAIAAAAAABIAAAAAAAFwAAAAACCAAAAAAAGAAAAAAAGAAAAAABGAAAAAABGAAAAAACDwAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABDwAAAAAADwAAAAADDwAAAAADGAAAAAABGAAAAAACGAAAAAADGAAAAAACGAAAAAABDwAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAADDwAAAAACDwAAAAADGAAAAAAADwAAAAADDwAAAAADDwAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAADGAAAAAADDwAAAAACEAAAAAABEAAAAAABCAAAAAAAEAAAAAACDwAAAAACDwAAAAACGAAAAAABEAAAAAABEAAAAAABEAAAAAACCAAAAAAAGAAAAAABGAAAAAACGAAAAAADGAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAABGAAAAAADDwAAAAADCAAAAAAAFwAAAAACFwAAAAACFwAAAAACDwAAAAADDwAAAAACGAAAAAAADwAAAAABDwAAAAAADwAAAAADCAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAADCAAAAAAAFwAAAAAAEAAAAAAAEAAAAAAADwAAAAACDwAAAAADGAAAAAAADwAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAFwAAAAABEAAAAAACEAAAAAADDwAAAAABDwAAAAAAGAAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: XQAAAAABXQAAAAABaAAAAAADXQAAAAADaAAAAAADXQAAAAACfgAAAAAAHwAAAAACaAAAAAAAaAAAAAAAaAAAAAABaAAAAAACaAAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAHwAAAAADaAAAAAADaAAAAAACaAAAAAACaAAAAAABaAAAAAABHwAAAAACfgAAAAAAHwAAAAACJAAAAAADHwAAAAABfgAAAAAAXQAAAAADaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAaAAAAAACaAAAAAADaAAAAAABXQAAAAADaAAAAAABHwAAAAAAHwAAAAACHwAAAAACJAAAAAACHwAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAACfgAAAAAAHwAAAAACaAAAAAACaAAAAAADaAAAAAABaAAAAAAAaAAAAAAAHwAAAAABfgAAAAAAHwAAAAADJAAAAAADHwAAAAAAfgAAAAAAaAAAAAACaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJAAAAAADHwAAAAABfgAAAAAAXQAAAAABaAAAAAADXQAAAAABJAAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAJAAAAAAAHwAAAAABfgAAAAAAXQAAAAABaAAAAAADaAAAAAADaAAAAAABaAAAAAABaAAAAAACaAAAAAAAaAAAAAACaAAAAAABaAAAAAADXQAAAAABfgAAAAAAHwAAAAABJAAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAABaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAADaAAAAAABXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAHwAAAAACJAAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAABaAAAAAAAXQAAAAADaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAA + tiles: DwAAAAABDwAAAAABGAAAAAADDwAAAAADGAAAAAADDwAAAAACCAAAAAAAEAAAAAACGAAAAAAAGAAAAAAAGAAAAAABGAAAAAACGAAAAAAAEAAAAAADCAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAACCAAAAAAAEAAAAAADGAAAAAADGAAAAAACGAAAAAACGAAAAAABGAAAAAABEAAAAAACCAAAAAAAEAAAAAACFwAAAAADEAAAAAABCAAAAAAADwAAAAADGAAAAAAADwAAAAAACAAAAAAAEAAAAAAAGAAAAAACGAAAAAADGAAAAAABDwAAAAADGAAAAAABEAAAAAAAEAAAAAACEAAAAAACFwAAAAACEAAAAAAACAAAAAAADwAAAAABGAAAAAACDwAAAAACCAAAAAAAEAAAAAACGAAAAAACGAAAAAADGAAAAAABGAAAAAAAGAAAAAAAEAAAAAABCAAAAAAAEAAAAAADFwAAAAADEAAAAAAACAAAAAAAGAAAAAACGAAAAAACGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABFwAAAAADEAAAAAABCAAAAAAADwAAAAABGAAAAAADDwAAAAABFwAAAAACDwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAACDwAAAAADDwAAAAACCAAAAAAACAAAAAAAFwAAAAAAEAAAAAABCAAAAAAADwAAAAABGAAAAAADGAAAAAADGAAAAAABGAAAAAABGAAAAAACGAAAAAAAGAAAAAACGAAAAAABGAAAAAADDwAAAAABCAAAAAAAEAAAAAABFwAAAAADEAAAAAADCAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADGAAAAAADDwAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAAACAAAAAAADwAAAAACCAAAAAAAIQAAAAAAIQAAAAAADwAAAAADGAAAAAADDwAAAAAACAAAAAAADwAAAAABCAAAAAAAEAAAAAAAEAAAAAAADwAAAAACDwAAAAABDwAAAAAACAAAAAAADwAAAAABCAAAAAAAIQAAAAAAIQAAAAAADwAAAAABGAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAAACAAAAAAAIQAAAAAAIQAAAAAADwAAAAADGAAAAAABDwAAAAADCAAAAAAADwAAAAABCAAAAAAAEAAAAAACFwAAAAACDwAAAAABDwAAAAADDwAAAAAACAAAAAAAEAAAAAAACAAAAAAAIQAAAAAAIQAAAAAADwAAAAABGAAAAAAADwAAAAADGAAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAADGAAAAAACGAAAAAABGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAAGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAD + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAD version: 6 -2,-2: ind: -2,-2 - tiles: EgAAAAAAXQAAAAABegAAAAABegAAAAACXQAAAAACfgAAAAAAJAAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADaAAAAAAAXQAAAAABXQAAAAADXQAAAAADEgAAAAACXQAAAAACegAAAAADegAAAAADXQAAAAABfgAAAAAAXQAAAAADTgAAAAACTgAAAAABaAAAAAACTgAAAAACaAAAAAAAaAAAAAABaAAAAAAAaAAAAAAAaAAAAAABEgAAAAABXQAAAAABegAAAAACegAAAAACXQAAAAACfgAAAAAAXQAAAAADTgAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAaAAAAAACXQAAAAABXQAAAAACXQAAAAABEgAAAAAAXQAAAAAAegAAAAACegAAAAAAXQAAAAAAaAAAAAADXQAAAAAAaAAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADEgAAAAADXQAAAAACegAAAAACegAAAAABXQAAAAACaAAAAAADXQAAAAACTgAAAAADXQAAAAABXQAAAAAAaAAAAAABHwAAAAACHwAAAAAAJgAAAAACJgAAAAACJgAAAAAAEgAAAAADXQAAAAAAegAAAAAAegAAAAAAXQAAAAABfgAAAAAAXQAAAAAATgAAAAACXQAAAAACXQAAAAACaAAAAAAAHwAAAAADHwAAAAAATgAAAAACTgAAAAAATgAAAAABXQAAAAABXQAAAAABKAAAAAABKAAAAAAAXQAAAAACfgAAAAAAXQAAAAABaAAAAAABXQAAAAACXQAAAAAAaAAAAAABHwAAAAABHwAAAAAAJgAAAAACJgAAAAADJgAAAAABKAAAAAAAKAAAAAADKAAAAAACKAAAAAAAXQAAAAADfgAAAAAAXQAAAAAAaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAADaAAAAAACXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAADfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAQwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAADfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAQwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAXQAAAAADaAAAAAABXQAAAAADfgAAAAAAegAAAAACegAAAAACegAAAAABegAAAAADegAAAAAAfgAAAAAAQwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAAAegAAAAACegAAAAABegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAQwAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAACegAAAAACegAAAAADegAAAAABegAAAAADegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAA + tiles: IgAAAAAADwAAAAABFAAAAAABFAAAAAACDwAAAAACCAAAAAAAFwAAAAACDwAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAADGAAAAAAADwAAAAABDwAAAAADDwAAAAADIgAAAAACDwAAAAACFAAAAAADFAAAAAADDwAAAAABCAAAAAAADwAAAAADIAAAAAACIAAAAAABGAAAAAACIAAAAAACGAAAAAAAGAAAAAABGAAAAAAAGAAAAAAAGAAAAAABIgAAAAABDwAAAAABFAAAAAACFAAAAAACDwAAAAACCAAAAAAADwAAAAADIAAAAAADDwAAAAACDwAAAAADDwAAAAABDwAAAAAAGAAAAAACDwAAAAABDwAAAAACDwAAAAABIgAAAAAADwAAAAAAFAAAAAACFAAAAAAADwAAAAAAGAAAAAADDwAAAAAAGAAAAAACDwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADIgAAAAADDwAAAAACFAAAAAACFAAAAAABDwAAAAACGAAAAAADDwAAAAACIAAAAAADDwAAAAABDwAAAAAAGAAAAAABEAAAAAACEAAAAAAALwAAAAACLwAAAAACLwAAAAAAIgAAAAADDwAAAAAAFAAAAAAAFAAAAAAADwAAAAABCAAAAAAADwAAAAAAIAAAAAACDwAAAAACDwAAAAACGAAAAAAAEAAAAAADEAAAAAAAIAAAAAACIAAAAAAAIAAAAAABDwAAAAABDwAAAAABJwAAAAABJwAAAAAADwAAAAACCAAAAAAADwAAAAABGAAAAAABDwAAAAACDwAAAAAAGAAAAAABEAAAAAABEAAAAAAALwAAAAACLwAAAAADLwAAAAABJwAAAAAAJwAAAAADJwAAAAACJwAAAAAADwAAAAADCAAAAAAADwAAAAAAGAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAADGAAAAAACDwAAAAABCAAAAAAALQAAAAAALQAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAAAGAAAAAADCAAAAAAACAAAAAAAFAAAAAADCAAAAAAAFAAAAAADCAAAAAAACAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAAAGAAAAAADDwAAAAADCAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAABCAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAADCAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAAACAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAABGAAAAAABDwAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAACCAAAAAAAKQAAAAAACAAAAAAALAAAAAAALAAAAAAALAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABCAAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAACCAAAAAAACAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: egAAAAACegAAAAADegAAAAADegAAAAACegAAAAAAaAAAAAADXQAAAAABaAAAAAAAXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACewAAAAAAewAAAAAAfgAAAAAATgAAAAABTgAAAAABKAAAAAADTgAAAAACTgAAAAABaAAAAAABXQAAAAACaAAAAAADXQAAAAADfgAAAAAAegAAAAACegAAAAADegAAAAABewAAAAADewAAAAAAbAAAAAAATgAAAAABTgAAAAABKAAAAAAATgAAAAADTgAAAAACaAAAAAAAXQAAAAADaAAAAAAAXQAAAAACfgAAAAAAegAAAAABegAAAAADegAAAAADewAAAAABewAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAaAAAAAABXQAAAAAAaAAAAAABXQAAAAABfgAAAAAAegAAAAADegAAAAABegAAAAABewAAAAABewAAAAADfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAewAAAAAAewAAAAACewAAAAADfgAAAAAAXQAAAAABaAAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACQAAAAAAAfgAAAAAAaAAAAAACfgAAAAAAKAAAAAABKAAAAAACKAAAAAADfgAAAAAAXQAAAAAAaAAAAAADaAAAAAAAXQAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABQAAAAAAAQAAAAAAAXQAAAAAAfgAAAAAAKAAAAAAAKAAAAAABKAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAaAAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAADQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAaAAAAAACaAAAAAABaAAAAAAAaAAAAAADaAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAAAXwAAAAABJAAAAAADXwAAAAABXwAAAAABXwAAAAABXwAAAAACXQAAAAABXQAAAAADXQAAAAABaAAAAAAAegAAAAABegAAAAACegAAAAADegAAAAABegAAAAABHwAAAAABHwAAAAADXwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACXQAAAAAAXQAAAAADXQAAAAACaAAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABegAAAAADHwAAAAACHwAAAAACXwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAXQAAAAABXQAAAAABXQAAAAABaAAAAAADegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAADHwAAAAAAHwAAAAACXwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAaAAAAAADegAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADaAAAAAADegAAAAACegAAAAACegAAAAACegAAAAABegAAAAAD + tiles: FAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAAAGAAAAAADDwAAAAABGAAAAAAADwAAAAAACAAAAAAAFAAAAAABFAAAAAACFAAAAAACNAAAAAAANAAAAAAACAAAAAAAIAAAAAABIAAAAAABJwAAAAADIAAAAAACIAAAAAABGAAAAAABDwAAAAACGAAAAAADDwAAAAADCAAAAAAAFAAAAAACFAAAAAADFAAAAAABNAAAAAADNAAAAAAADAAAAAAAIAAAAAABIAAAAAABJwAAAAAAIAAAAAADIAAAAAACGAAAAAAADwAAAAADGAAAAAAADwAAAAACCAAAAAAAFAAAAAABFAAAAAADFAAAAAADNAAAAAABNAAAAAAACAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAAAGAAAAAABDwAAAAAAGAAAAAABDwAAAAABCAAAAAAAFAAAAAADFAAAAAABFAAAAAABNAAAAAABNAAAAAADCAAAAAAAJwAAAAADCAAAAAAACAAAAAAAJwAAAAACCAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAAGAAAAAADCAAAAAAANAAAAAAANAAAAAACNAAAAAADCAAAAAAADwAAAAABGAAAAAAADwAAAAABDwAAAAACCAAAAAAAEAAAAAABEAAAAAACEAAAAAACLQAAAAAACAAAAAAAGAAAAAACCAAAAAAAJwAAAAABJwAAAAACJwAAAAADCAAAAAAADwAAAAAAGAAAAAADGAAAAAAADwAAAAACCAAAAAAAEAAAAAAAEAAAAAADEAAAAAABLQAAAAAALQAAAAAADwAAAAAACAAAAAAAJwAAAAAAJwAAAAABJwAAAAAACAAAAAAADwAAAAACDwAAAAAAGAAAAAAADwAAAAACCAAAAAAAEAAAAAACEAAAAAACEAAAAAADLQAAAAAALQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAADGAAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAACGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAMgAAAAAAMgAAAAABFwAAAAADMgAAAAABMgAAAAABMgAAAAABMgAAAAACDwAAAAABDwAAAAADDwAAAAABGAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAABEAAAAAABEAAAAAADMgAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAACDwAAAAAADwAAAAADDwAAAAACGAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAADEAAAAAACEAAAAAACMgAAAAABEAAAAAAAEAAAAAADEAAAAAABEAAAAAAADwAAAAABDwAAAAABDwAAAAABGAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADEAAAAAAAEAAAAAACMgAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAADwAAAAADDwAAAAACDwAAAAAAGAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAACCAAAAAAADwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAADGAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAD version: 6 1,0: ind: 1,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAAAaAAAAAADaAAAAAADAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABaAAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTgAAAAADTgAAAAABaAAAAAAAaAAAAAABbQAAAAAAbQAAAAAAbQAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACTgAAAAACXQAAAAAAXQAAAAAAXQAAAAADJAAAAAACJAAAAAACJAAAAAADXQAAAAABXQAAAAADaAAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAABaAAAAAACfgAAAAAAJAAAAAABJAAAAAACJAAAAAABXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAACfgAAAAAAJAAAAAABJAAAAAABJAAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAACfgAAAAAAJAAAAAABJAAAAAACJAAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAADaAAAAAADaAAAAAACfgAAAAAAaAAAAAABaAAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAACaAAAAAACaAAAAAAAHQAAAAABaAAAAAAAaAAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAAAaAAAAAACaAAAAAACXQAAAAACaAAAAAADaAAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAABaAAAAAABaAAAAAAAXQAAAAACaAAAAAACaAAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAADaAAAAAAAaAAAAAACfgAAAAAAaAAAAAACaAAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAC + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAADGAAAAAAAGAAAAAADGAAAAAADIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAABDwAAAAADDwAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAABGAAAAAACDwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAADIAAAAAADIAAAAAABGAAAAAAAGAAAAAABNQAAAAAANQAAAAAANQAAAAAAGAAAAAADGAAAAAACGAAAAAABGAAAAAADGAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAACIAAAAAACDwAAAAAADwAAAAAADwAAAAADFwAAAAACFwAAAAACFwAAAAADDwAAAAABDwAAAAADGAAAAAADDwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAADCAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAABGAAAAAACCAAAAAAAFwAAAAABFwAAAAACFwAAAAABDwAAAAAADwAAAAACDwAAAAAACAAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAACCAAAAAAAFwAAAAABFwAAAAABFwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAACCAAAAAAAFwAAAAABFwAAAAACFwAAAAACDwAAAAACDwAAAAABDwAAAAADCAAAAAAADwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAADDwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAADCAAAAAAADwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAADGAAAAAADGAAAAAACCAAAAAAAGAAAAAABGAAAAAABDwAAAAACDwAAAAABCAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAACGAAAAAACGAAAAAAANgAAAAABGAAAAAAAGAAAAAABDwAAAAACDwAAAAAACAAAAAAADwAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAAAGAAAAAACGAAAAAACDwAAAAACGAAAAAADGAAAAAABDwAAAAADDwAAAAACCAAAAAAADwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACDwAAAAABGAAAAAABGAAAAAAADwAAAAACGAAAAAACGAAAAAABDwAAAAADDwAAAAABCAAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAADGAAAAAAAGAAAAAACCAAAAAAAGAAAAAACGAAAAAACDwAAAAACDwAAAAAACAAAAAAADwAAAAADDwAAAAAC version: 6 2,-2: ind: 2,-2 - tiles: HwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABJAAAAAADJAAAAAADBAAAAAAAHwAAAAABegAAAAABegAAAAABegAAAAACHwAAAAABfgAAAAAALgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADJAAAAAADHwAAAAAAHwAAAAABHwAAAAACJAAAAAACHwAAAAABegAAAAADegAAAAAAegAAAAABHwAAAAADJAAAAAABLgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAJAAAAAACJAAAAAACJAAAAAABBAAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAABHwAAAAACfgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAADegAAAAABegAAAAADHwAAAAADfgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAegAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABXQAAAAACegAAAAABegAAAAAAegAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADegAAAAACJAAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAADegAAAAABegAAAAABegAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADaAAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABaAAAAAACXQAAAAABTgAAAAADTgAAAAABaAAAAAAATgAAAAAATgAAAAABaAAAAAABaAAAAAABTgAAAAAAaAAAAAADTgAAAAACTgAAAAAATgAAAAAAaAAAAAACTgAAAAAAaAAAAAABaAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABaAAAAAAAXQAAAAADXQAAAAACXQAAAAACaAAAAAACXQAAAAAAXQAAAAAAXQAAAAADaAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAADaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: EAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACCAAAAAAAEAAAAAABFwAAAAADFwAAAAADNwAAAAAAEAAAAAABFAAAAAABFAAAAAABFAAAAAACEAAAAAABCAAAAAAAEwAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAADFwAAAAADEAAAAAAAEAAAAAABEAAAAAACFwAAAAACEAAAAAABFAAAAAADFAAAAAAAFAAAAAABEAAAAAADFwAAAAABEwAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAADCAAAAAAAFwAAAAACFwAAAAACFwAAAAABNwAAAAAAEAAAAAADFAAAAAADFAAAAAAAFAAAAAABEAAAAAACCAAAAAAAEwAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAFAAAAAADFAAAAAABFAAAAAADEAAAAAADCAAAAAAAEwAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAABCAAAAAAAFAAAAAAAFAAAAAABFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABDwAAAAACFAAAAAABFAAAAAAAFAAAAAADCAAAAAAAEAAAAAABEAAAAAADEAAAAAABDwAAAAAADwAAAAADFAAAAAACFwAAAAAACAAAAAAAEAAAAAACDwAAAAADDwAAAAACDwAAAAADFAAAAAABFAAAAAABFAAAAAACEAAAAAABEAAAAAADEAAAAAABEAAAAAABDwAAAAACDwAAAAAADwAAAAAADwAAAAACCAAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAADCAAAAAAAFwAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAACDwAAAAACDwAAAAACDwAAAAACDwAAAAABCAAAAAAADwAAAAADDwAAAAACDwAAAAABCAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAACCAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAADGAAAAAACDwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAABGAAAAAACDwAAAAABIAAAAAADIAAAAAABGAAAAAAAIAAAAAAAIAAAAAABGAAAAAABGAAAAAABIAAAAAAAGAAAAAADIAAAAAACIAAAAAAAIAAAAAAAGAAAAAACIAAAAAAAGAAAAAABGAAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAABGAAAAAAADwAAAAADDwAAAAACDwAAAAACGAAAAAACDwAAAAAADwAAAAAADwAAAAADGAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAACCAAAAAAADwAAAAADGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAADaAAAAAADaAAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAADfgAAAAAAdQAAAAACdQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAACfgAAAAAAdQAAAAACdQAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAADaAAAAAADXQAAAAABfgAAAAAAdQAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAaAAAAAAAXQAAAAACfgAAAAAAdQAAAAACdQAAAAACcAAAAAABJAAAAAADJAAAAAAAJAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAABTgAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAADJAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAACfgAAAAAAdQAAAAAAdQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAaAAAAAABaAAAAAABaAAAAAABaAAAAAABfgAAAAAAXQAAAAACaAAAAAADXQAAAAAAfgAAAAAAdQAAAAADdQAAAAADcAAAAAAA + tiles: BgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAADDwAAAAACDwAAAAADGAAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAADCAAAAAAAPQAAAAACPQAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAACCAAAAAAAPQAAAAACPQAAAAABPgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAACCAAAAAAADwAAAAADGAAAAAADDwAAAAABCAAAAAAAPQAAAAAAPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAACDwAAAAAAGAAAAAAADwAAAAACCAAAAAAAPQAAAAACPQAAAAACPgAAAAABFwAAAAADFwAAAAAAFwAAAAAACAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACAAAAAAADwAAAAABIAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAADFwAAAAAACAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACAAAAAAADwAAAAADIAAAAAABDwAAAAACCAAAAAAAPQAAAAAAPQAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAACCAAAAAAAGAAAAAABGAAAAAABGAAAAAABGAAAAAABCAAAAAAADwAAAAACGAAAAAADDwAAAAAACAAAAAAAPQAAAAADPQAAAAADPgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: aAAAAAADaAAAAAACaAAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACaAAAAAADegAAAAABegAAAAACegAAAAACegAAAAAAegAAAAADaAAAAAAAaAAAAAAAXwAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAaAAAAAACegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAABaAAAAAAAaAAAAAAAXwAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACaAAAAAAAegAAAAABegAAAAADegAAAAADegAAAAABegAAAAACaAAAAAABaAAAAAADaAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACaAAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAADewAAAAACewAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABAwAAAAAAegAAAAACegAAAAACegAAAAADegAAAAAAXQAAAAABXQAAAAAAXQAAAAABHwAAAAAAewAAAAADAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAABXQAAAAABXQAAAAAAAwAAAAAAegAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAJAAAAAACHwAAAAACHwAAAAAAewAAAAADAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAACXQAAAAAAXQAAAAACAwAAAAAAegAAAAACJAAAAAACJAAAAAAAJAAAAAACfgAAAAAAJAAAAAADHwAAAAACHwAAAAAAewAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAADXQAAAAADXQAAAAAAAwAAAAAAegAAAAADJAAAAAAAJAAAAAADJAAAAAADfgAAAAAAJAAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACaAAAAAABaAAAAAABaAAAAAABaAAAAAADaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAXQAAAAADaAAAAAACaAAAAAAAaAAAAAACaAAAAAADaAAAAAACaAAAAAACaAAAAAADaAAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAACaAAAAAABfgAAAAAAfgAAAAAAeQAAAAADeQAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABaAAAAAAAXQAAAAACXQAAAAABXQAAAAABaAAAAAACXQAAAAAAeQAAAAADeQAAAAAAeQAAAAABeQAAAAABeQAAAAADeQAAAAABLgAAAAAALgAAAAAAAQAAAAADaAAAAAACaAAAAAAAAQAAAAABfgAAAAAAXQAAAAABaAAAAAADXQAAAAACfgAAAAAAJAAAAAABeQAAAAABeQAAAAAAeQAAAAABeQAAAAACfgAAAAAALgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAQAAAAACXQAAAAABXQAAAAAAaAAAAAADXQAAAAAAXQAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACfgAAAAAALgAAAAAAXQAAAAADXQAAAAABPAAAAAAAAQAAAAAAXQAAAAADXQAAAAACaAAAAAABXQAAAAAAXQAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADfgAAAAAALgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAJAAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAADfgAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACfgAAAAAAfgAAAAAA + tiles: GAAAAAADGAAAAAACGAAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAACDwAAAAADDwAAAAACGAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAADGAAAAAAAGAAAAAAAMgAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAADDwAAAAABDwAAAAABDwAAAAAAGAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAABGAAAAAAAGAAAAAAAMgAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAACDwAAAAACDwAAAAACGAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAACGAAAAAABGAAAAAADGAAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAACGAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAADNAAAAAACNAAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAABIQAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAAADwAAAAABDwAAAAAADwAAAAABEAAAAAAANAAAAAADIQAAAAAAIQAAAAAAIQAAAAAADwAAAAABDwAAAAABDwAAAAAAIQAAAAAAFAAAAAADEAAAAAABEAAAAAAAEAAAAAABCAAAAAAAFwAAAAACEAAAAAACEAAAAAAANAAAAAADIQAAAAAAIQAAAAAAIQAAAAAADwAAAAACDwAAAAAADwAAAAACIQAAAAAAFAAAAAACFwAAAAACFwAAAAAAFwAAAAACCAAAAAAAFwAAAAADEAAAAAACEAAAAAAANAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAADDwAAAAADDwAAAAAAIQAAAAAAFAAAAAADFwAAAAAAFwAAAAADFwAAAAADCAAAAAAAFwAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACGAAAAAABGAAAAAABGAAAAAABGAAAAAADGAAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAAADwAAAAADGAAAAAACGAAAAAAAGAAAAAACGAAAAAADGAAAAAACGAAAAAACGAAAAAADGAAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAACGAAAAAABCAAAAAAACAAAAAAARAAAAAADRAAAAAAAFwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAABGAAAAAAADwAAAAACDwAAAAABDwAAAAABGAAAAAACDwAAAAAARAAAAAADRAAAAAAARAAAAAABRAAAAAABRAAAAAADRAAAAAABEwAAAAAAEwAAAAAAPwAAAAADGAAAAAACGAAAAAAAPwAAAAABCAAAAAAADwAAAAABGAAAAAADDwAAAAACCAAAAAAAFwAAAAABRAAAAAABRAAAAAAARAAAAAABRAAAAAACCAAAAAAAEwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAPwAAAAACDwAAAAABDwAAAAAAGAAAAAADDwAAAAAADwAAAAABRgAAAAABRgAAAAAARgAAAAABRgAAAAABRgAAAAACCAAAAAAAEwAAAAAADwAAAAADDwAAAAABQQAAAAAAPwAAAAAADwAAAAADDwAAAAACGAAAAAABDwAAAAAADwAAAAABRgAAAAADRgAAAAAARgAAAAAARgAAAAAARgAAAAADCAAAAAAAEwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAADCAAAAAAARgAAAAADRgAAAAAARgAAAAACRgAAAAAARgAAAAACCAAAAAAACAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: bQAAAAAAfgAAAAAAJAAAAAABJAAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAJAAAAAABJAAAAAADJAAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABbQAAAAAAbQAAAAAAJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAJAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABbQAAAAAAbQAAAAAAJAAAAAACJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADJAAAAAABJAAAAAAAJAAAAAABJAAAAAABfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAJAAAAAADJAAAAAADJAAAAAADJAAAAAACJAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAADJAAAAAACJAAAAAABJAAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAJAAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADXQAAAAACXQAAAAABaAAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACaAAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAADHwAAAAAAfgAAAAAAHwAAAAACTgAAAAABaAAAAAAAaAAAAAADaAAAAAADaAAAAAAAXQAAAAADfgAAAAAAHwAAAAABaAAAAAABaAAAAAADaAAAAAAAaAAAAAADaAAAAAADHwAAAAACfgAAAAAAHwAAAAAA + tiles: NQAAAAAACAAAAAAAFwAAAAABFwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAAFwAAAAABFwAAAAADFwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAABNQAAAAAANQAAAAAAFwAAAAACFwAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAFwAAAAAAFwAAAAACCAAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAFwAAAAABFwAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAADAAAAAAADAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAAFwAAAAAAFwAAAAABNQAAAAAANQAAAAAAFwAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAADFwAAAAABFwAAAAAAFwAAAAABFwAAAAABCAAAAAAAEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADEAAAAAAAEAAAAAABEAAAAAABEAAAAAACCAAAAAAAEAAAAAACEAAAAAABCAAAAAAAFwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAADEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAFwAAAAADFwAAAAADFwAAAAADFwAAAAACFwAAAAACCAAAAAAADAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAADFwAAAAACFwAAAAABFwAAAAACCAAAAAAAEAAAAAAAEAAAAAADCAAAAAAAFwAAAAABCAAAAAAADwAAAAABCAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADDwAAAAACDwAAAAABGAAAAAACDwAAAAAADwAAAAAADwAAAAADCAAAAAAAEAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAADEAAAAAAACAAAAAAAEAAAAAACIAAAAAABGAAAAAAAGAAAAAADGAAAAAADGAAAAAAADwAAAAADCAAAAAAAEAAAAAABGAAAAAABGAAAAAADGAAAAAAAGAAAAAADGAAAAAADEAAAAAACCAAAAAAAEAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAJAAAAAABJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAaAAAAAACaAAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABaAAAAAACaAAAAAADJAAAAAABfgAAAAAAXQAAAAABXQAAAAACHwAAAAADHwAAAAABHwAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACJAAAAAAAJAAAAAACJAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAADHwAAAAABJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABaAAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABaAAAAAADaAAAAAACaAAAAAACaAAAAAACTgAAAAABaAAAAAACTgAAAAABaAAAAAAA + tiles: BgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAABCAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABCAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAACCAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAAFwAAAAABFwAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAAGAAAAAACGAAAAAABFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABGAAAAAACGAAAAAADFwAAAAABCAAAAAAADwAAAAABDwAAAAACEAAAAAADEAAAAAABEAAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACFwAAAAAAFwAAAAACFwAAAAABCAAAAAAACAAAAAAADAAAAAAAEAAAAAAAEAAAAAADEAAAAAABFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAABGAAAAAACDwAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAACCAAAAAAACAAAAAAADwAAAAAACAAAAAAADwAAAAABGAAAAAADGAAAAAACGAAAAAACGAAAAAACIAAAAAABGAAAAAACIAAAAAABGAAAAAAA version: 6 1,1: ind: 1,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAABaAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAJAAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADaAAAAAADXQAAAAACXQAAAAABaAAAAAABXQAAAAADfgAAAAAAXQAAAAAAaAAAAAADaAAAAAAAaAAAAAACXQAAAAADaAAAAAACaAAAAAAAaAAAAAACXQAAAAADaAAAAAADaAAAAAACaAAAAAABaAAAAAADaAAAAAAAXQAAAAAAfgAAAAAAXQAAAAACaAAAAAADaAAAAAAAaAAAAAADXQAAAAACaAAAAAACaAAAAAACaAAAAAABXQAAAAAAXQAAAAADaAAAAAABXQAAAAADXQAAAAAAXQAAAAABJAAAAAADfgAAAAAAXQAAAAACaAAAAAACaAAAAAAAaAAAAAADXQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAdQAAAAAAdAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAABGAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAAAFwAAAAACDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACDwAAAAADCAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAADGAAAAAADDwAAAAACDwAAAAABGAAAAAABDwAAAAADCAAAAAAADwAAAAAAGAAAAAADGAAAAAAAGAAAAAACDwAAAAADGAAAAAACGAAAAAAAGAAAAAACDwAAAAADGAAAAAADGAAAAAACGAAAAAABGAAAAAADGAAAAAAADwAAAAAACAAAAAAADwAAAAACGAAAAAADGAAAAAAAGAAAAAADDwAAAAACGAAAAAACGAAAAAACGAAAAAABDwAAAAAADwAAAAADGAAAAAABDwAAAAADDwAAAAAADwAAAAABFwAAAAADCAAAAAAADwAAAAACGAAAAAACGAAAAAAAGAAAAAADDwAAAAADGAAAAAAAGAAAAAAAGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAACDwAAAAAAPQAAAAAASAAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADSAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABaAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAaAAAAAADaAAAAAADaAAAAAAAaAAAAAACaAAAAAABaAAAAAADaAAAAAADaAAAAAABaAAAAAACaAAAAAACaAAAAAAAaAAAAAACaAAAAAABaAAAAAAAaAAAAAADaAAAAAADXQAAAAABXQAAAAACXQAAAAACaAAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAdQAAAAABcAAAAAADcAAAAAACdQAAAAACdAAAAAAAdAAAAAACdAAAAAACXQAAAAADXQAAAAACXQAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADcAAAAAACcAAAAAACdQAAAAADdAAAAAAAdAAAAAACdAAAAAABfgAAAAAAXQAAAAACXQAAAAACHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAAAdAAAAAABdAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABdQAAAAADdQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAaAAAAAABfgAAAAAAJAAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAcAAAAAABcAAAAAACaAAAAAAAfgAAAAAAJAAAAAAAHwAAAAACTwAAAAAATwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAALgAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAABGAAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAAAGAAAAAADGAAAAAADGAAAAAAAGAAAAAACGAAAAAABGAAAAAADGAAAAAADGAAAAAABGAAAAAACGAAAAAACGAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAADGAAAAAADDwAAAAABDwAAAAACDwAAAAACGAAAAAADDwAAAAADDwAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAACDwAAAAACDwAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAADwAAAAADDwAAAAAADwAAAAAAEAAAAAACEAAAAAADEAAAAAACCAAAAAAADAAAAAAACAAAAAAAPQAAAAABPgAAAAADPgAAAAACPQAAAAACSAAAAAAASAAAAAACSAAAAAACDwAAAAADDwAAAAACDwAAAAABEAAAAAADEAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADPgAAAAACPgAAAAACPQAAAAADSAAAAAAASAAAAAACSAAAAAABCAAAAAAADwAAAAACDwAAAAACEAAAAAABEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASAAAAAAASAAAAAABSAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPQAAAAADPQAAAAACCAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAGAAAAAABCAAAAAAAFwAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAABGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAASQAAAAAAPgAAAAABPgAAAAACGAAAAAAACAAAAAAAFwAAAAAAEAAAAAACGQAAAAAAGQAAAAAAEAAAAAADGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAAEwAAAAAA version: 6 -1,1: ind: -1,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABaAAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADaAAAAAACaAAAAAABaAAAAAAAaAAAAAABaAAAAAADaAAAAAADaAAAAAABaAAAAAAAaAAAAAADaAAAAAADTgAAAAACTgAAAAAAaAAAAAABTgAAAAADTgAAAAACaAAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABaAAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACHwAAAAABHwAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAADHwAAAAABHwAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADJAAAAAABJAAAAAAAXQAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAATgAAAAADTgAAAAACHwAAAAACTgAAAAABTgAAAAADTgAAAAABHwAAAAABTgAAAAAATgAAAAABHwAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACJAAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAJAAAAAABJAAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAADDwAAAAABDwAAAAAADwAAAAABGAAAAAACDwAAAAADDwAAAAADDwAAAAABDwAAAAADDwAAAAABDwAAAAACDwAAAAABDwAAAAADGAAAAAACGAAAAAABGAAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAABGAAAAAAAGAAAAAADGAAAAAADIAAAAAACIAAAAAAAGAAAAAABIAAAAAADIAAAAAACGAAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAACDwAAAAABGAAAAAADDwAAAAADDwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAABDwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABCAAAAAAADwAAAAADDwAAAAACDwAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADCAAAAAAADwAAAAABDwAAAAAADwAAAAABCAAAAAAADwAAAAACEAAAAAABEAAAAAACDwAAAAACDwAAAAADDwAAAAACDwAAAAADCAAAAAAADwAAAAACDwAAAAADDwAAAAADCAAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAADwAAAAADEAAAAAABEAAAAAAADwAAAAACCAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAADwAAAAADFwAAAAABFwAAAAAADwAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAABCAAAAAAAEAAAAAAAIAAAAAADIAAAAAACEAAAAAACIAAAAAABIAAAAAADIAAAAAABEAAAAAABIAAAAAAAIAAAAAABEAAAAAADDwAAAAADDwAAAAAADwAAAAADDwAAAAACFwAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAAAFwAAAAABFwAAAAACCAAAAAAADwAAAAAADwAAAAABDwAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AQAAAAAAAQAAAAACAQAAAAABJAAAAAACfgAAAAAAXQAAAAADaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAaAAAAAACfgAAAAAAXQAAAAACaAAAAAADXQAAAAABKAAAAAAAKAAAAAACKAAAAAABKAAAAAADKAAAAAADKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAACXwAAAAACXwAAAAADXwAAAAAAXwAAAAACXwAAAAADXwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAADaAAAAAAAaAAAAAADaAAAAAABaAAAAAADaAAAAAADaAAAAAAAaAAAAAADaAAAAAABaAAAAAACaAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAaAAAAAADXwAAAAADXwAAAAACXwAAAAACXwAAAAABXwAAAAADXwAAAAADaAAAAAACaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACJAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAACKAAAAAAAKAAAAAAAXQAAAAABaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAACbAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACJAAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAADJAAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABJAAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAB + tiles: PwAAAAAAPwAAAAACPwAAAAABFwAAAAACCAAAAAAADwAAAAADGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAGAAAAAACCAAAAAAADwAAAAACGAAAAAADDwAAAAABJwAAAAAAJwAAAAACJwAAAAABJwAAAAADJwAAAAADJwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAACMgAAAAACMgAAAAADMgAAAAAAMgAAAAACMgAAAAADMgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAADGAAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAADGAAAAAAAGAAAAAADGAAAAAABGAAAAAACGAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAAGAAAAAADMgAAAAADMgAAAAACMgAAAAACMgAAAAABMgAAAAADMgAAAAADGAAAAAACGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACFwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAAAJwAAAAAADwAAAAABGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAACCAAAAAAAFAAAAAAAFAAAAAADFAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAACDAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACFwAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAAACAAAAAAAFAAAAAADFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAADFwAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABFwAAAAAAEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAB version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXgAAAAABfgAAAAAAXgAAAAABXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYQAAAAACfgAAAAAAfgAAAAAAYQAAAAACXgAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAggAAAAAAfgAAAAAAfgAAAAAAggAAAAABQgAAAAAAQgAAAAAAYQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAggAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAggAAAAACfgAAAAAAfgAAAAAAfgAAAAAAggAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAACaAAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAaAAAAAADaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAaAAAAAABaAAAAAACaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADSgAAAAABCAAAAAAASgAAAAABDwAAAAADCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASgAAAAACCAAAAAAACAAAAAAASgAAAAACSgAAAAABCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAASQAAAAABOQAAAAAAOQAAAAAASgAAAAADDwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAASQAAAAAASQAAAAAACAAAAAAASQAAAAAASQAAAAACCAAAAAAACAAAAAAACAAAAAAASQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAASQAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAACGAAAAAACCAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAAGAAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAD version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADJAAAAAACJAAAAAACJAAAAAADJAAAAAACJAAAAAABJAAAAAABJAAAAAAAJAAAAAABJAAAAAACJAAAAAABJAAAAAAAJAAAAAAAJAAAAAACJAAAAAACJAAAAAAAJAAAAAACJAAAAAACJAAAAAABJAAAAAAAJAAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAACJAAAAAACJAAAAAACJAAAAAADJAAAAAADJAAAAAADJAAAAAAAJAAAAAAAJAAAAAACJAAAAAABJgAAAAACJgAAAAACJgAAAAADJgAAAAAAJgAAAAAAJgAAAAABJgAAAAACJgAAAAAAJgAAAAACJgAAAAACJgAAAAACJgAAAAACJAAAAAAAJAAAAAACJAAAAAABJgAAAAAAJgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAACJgAAAAABJgAAAAABJAAAAAADJAAAAAADJAAAAAABJgAAAAAAJgAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAJgAAAAABJgAAAAABJAAAAAABHwAAAAACHwAAAAABJAAAAAAAJAAAAAADHwAAAAABHwAAAAACJAAAAAABJAAAAAABJAAAAAAAJAAAAAADJAAAAAACHwAAAAACHwAAAAACJAAAAAABJAAAAAADHwAAAAADHwAAAAACHwAAAAAAJgAAAAAAJAAAAAAAJAAAAAABJAAAAAACJAAAAAABJAAAAAADJAAAAAACJAAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAACJgAAAAADHwAAAAAD + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADFwAAAAACFwAAAAACFwAAAAADFwAAAAACFwAAAAABFwAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAAAFwAAAAAAFwAAAAACFwAAAAACFwAAAAAAFwAAAAACFwAAAAACFwAAAAABFwAAAAAAFwAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAACFwAAAAACFwAAAAACFwAAAAADFwAAAAADFwAAAAADFwAAAAAAFwAAAAAAFwAAAAACFwAAAAABLwAAAAACLwAAAAACLwAAAAADLwAAAAAALwAAAAAALwAAAAABLwAAAAACLwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAACFwAAAAAAFwAAAAACFwAAAAABLwAAAAAALwAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACLwAAAAABLwAAAAABFwAAAAADFwAAAAADFwAAAAABLwAAAAAALwAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAAALwAAAAABLwAAAAABFwAAAAABEAAAAAACEAAAAAABFwAAAAAAFwAAAAADEAAAAAABEAAAAAACFwAAAAABFwAAAAABFwAAAAAAFwAAAAADFwAAAAACEAAAAAACEAAAAAACFwAAAAABFwAAAAADEAAAAAADEAAAAAACEAAAAAAALwAAAAAAFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAADFwAAAAACFwAAAAAAFwAAAAADFwAAAAABFwAAAAACFwAAAAACLwAAAAADEAAAAAAD version: 6 3,-2: ind: 3,-2 - tiles: HwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADaAAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAaAAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABaAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABJAAAAAACfgAAAAAAXQAAAAADTgAAAAABTgAAAAACaAAAAAACTgAAAAADTgAAAAACaAAAAAADaAAAAAACaAAAAAADaAAAAAADaAAAAAABaAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAC + tiles: EAAAAAABEAAAAAADCAAAAAAAEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAADwAAAAAAEAAAAAAAEAAAAAACCAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACEAAAAAAAEAAAAAABCAAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAEAAAAAABEAAAAAADCAAAAAAADwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAADwAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACDwAAAAAAEAAAAAAAEAAAAAAACAAAAAAADwAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAADwAAAAACDwAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAADDwAAAAACDwAAAAAADwAAAAABCAAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAACDwAAAAAAGAAAAAACDwAAAAADDwAAAAADDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAACDwAAAAABGAAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAABFwAAAAACCAAAAAAADwAAAAADIAAAAAABIAAAAAACGAAAAAACIAAAAAADIAAAAAACGAAAAAADGAAAAAACGAAAAAADGAAAAAADGAAAAAABGAAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAABDwAAAAABDwAAAAABDwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAAADwAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAAADwAAAAACCAAAAAAADwAAAAAC version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAADfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAAAbAAAAAAAJAAAAAADJAAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAbgAAAAADJAAAAAAAJAAAAAACfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAADHwAAAAAAOAAAAAAAHwAAAAABOAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAADbAAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAB + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAACSwAAAAAASwAAAAAATAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAADSwAAAAAASwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAHSwAAAAAASwAAAAAAFwAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAACCAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAAFwAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAADCAAAAAAAEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAUAAAAAAADAAAAAAAFwAAAAADFwAAAAAAEAAAAAAAEAAAAAADEAAAAAACCAAAAAAAEAAAAAABEAAAAAABTQAAAAAATQAAAAAATQAAAAAACAAAAAAACAAAAAAAUAAAAAAACAAAAAAAUAAAAAADFwAAAAAAFwAAAAACCAAAAAAAEAAAAAACEAAAAAABCAAAAAAAEAAAAAADEAAAAAAATQAAAAAAEAAAAAABTQAAAAAACAAAAAAACAAAAAAADAAAAAAAUAAAAAADDAAAAAAAEAAAAAABEAAAAAAACAAAAAAAEAAAAAACEAAAAAABCAAAAAAAEAAAAAABEAAAAAADTQAAAAAATQAAAAAATQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADCAAAAAAAEAAAAAACEAAAAAABCAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAAB version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAegAAAAACegAAAAADegAAAAACegAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAegAAAAABFQAAAAAFegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAFQAAAAACgQAAAAAAFQAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACJAAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADKAAAAAADKAAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABKAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAACfgAAAAAAegAAAAADegAAAAADegAAAAACKAAAAAABKAAAAAAAKAAAAAAAKAAAAAABKAAAAAAAKAAAAAABKAAAAAACKAAAAAABfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAABKAAAAAACKAAAAAABKAAAAAAAKAAAAAABKAAAAAADKAAAAAABKAAAAAABKAAAAAABfgAAAAAAfgAAAAAAewAAAAADewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABKAAAAAADKAAAAAACKAAAAAABKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACegAAAAABJAAAAAACfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAACKAAAAAACKAAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAXQAAAAACXQAAAAABKAAAAAADKAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAC + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAABgAAAAAAFAAAAAABUgAAAAAFFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAUgAAAAACSQAAAAAAUgAAAAAAFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAACFwAAAAAACAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADJwAAAAADJwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAADwAAAAABJwAAAAAACAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAAACAAAAAAACAAAAAAANAAAAAADNAAAAAACCAAAAAAAFAAAAAADFAAAAAADFAAAAAACJwAAAAABJwAAAAAAJwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAACJwAAAAABCAAAAAAACAAAAAAANAAAAAAANAAAAAAACAAAAAAAFAAAAAAAFAAAAAADFAAAAAABJwAAAAACJwAAAAABJwAAAAAAJwAAAAABJwAAAAADJwAAAAABJwAAAAABJwAAAAABCAAAAAAACAAAAAAANAAAAAADNAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABJwAAAAADJwAAAAACJwAAAAABJwAAAAAAJwAAAAACJwAAAAAAJwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAABFwAAAAACCAAAAAAACAAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAACDwAAAAACCAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAADCAAAAAAADAAAAAAADwAAAAACDwAAAAABJwAAAAADJwAAAAAADwAAAAACCAAAAAAACAAAAAAADwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAC version: 6 -3,-1: ind: -3,-1 - tiles: HwAAAAAAfgAAAAAAewAAAAACewAAAAAAewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABegAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAATgAAAAADTgAAAAAAKAAAAAADTgAAAAADTgAAAAAAKAAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAATgAAAAABTgAAAAAAKAAAAAACTgAAAAACTgAAAAADKAAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAABZQAAAAADfgAAAAAAewAAAAABewAAAAACewAAAAABfgAAAAAAaAAAAAACKAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZQAAAAABZQAAAAACfgAAAAAAKAAAAAAAKAAAAAABKAAAAAADfgAAAAAAaAAAAAAAKAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAABZQAAAAADfgAAAAAAKAAAAAACKAAAAAADKAAAAAACfgAAAAAAXQAAAAACXQAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXwAAAAAAXwAAAAADXwAAAAAAXwAAAAADXwAAAAAAJAAAAAACXwAAAAADXwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAXwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAABXwAAAAABHwAAAAACHwAAAAABJAAAAAADJAAAAAACJAAAAAABJAAAAAAAJAAAAAACXQAAAAACXQAAAAADfgAAAAAAXwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADXwAAAAACHwAAAAADHwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAABXQAAAAADfgAAAAAAXwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADXwAAAAABHwAAAAABHwAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAAAJAAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA + tiles: EAAAAAAACAAAAAAANAAAAAACNAAAAAAANAAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAIAAAAAADIAAAAAAAJwAAAAADIAAAAAADIAAAAAAAJwAAAAACEAAAAAAACAAAAAAAEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAIAAAAAABIAAAAAAAJwAAAAACIAAAAAACIAAAAAADJwAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAAACAAAAAAACAAAAAAAJwAAAAAAJwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAABUwAAAAADCAAAAAAANAAAAAABNAAAAAACNAAAAAABCAAAAAAAGAAAAAACJwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAUwAAAAABUwAAAAACCAAAAAAAJwAAAAAAJwAAAAABJwAAAAADCAAAAAAAGAAAAAAAJwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAABUwAAAAADCAAAAAAAJwAAAAACJwAAAAADJwAAAAACCAAAAAAADwAAAAACDwAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAADCAAAAAAADwAAAAACDwAAAAABCAAAAAAAMgAAAAAAMgAAAAADMgAAAAAAMgAAAAADMgAAAAAAFwAAAAACMgAAAAADMgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAAACAAAAAAAMgAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAABMgAAAAABEAAAAAACEAAAAAABFwAAAAADFwAAAAACFwAAAAABFwAAAAAAFwAAAAACDwAAAAACDwAAAAADCAAAAAAAMgAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADMgAAAAACEAAAAAADEAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAABDwAAAAADCAAAAAAAMgAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAADMgAAAAABEAAAAAABEAAAAAAAFwAAAAADFwAAAAABFwAAAAACFwAAAAAAFwAAAAACDwAAAAABDwAAAAADCAAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAA version: 6 -3,0: ind: -3,0 - tiles: ZQAAAAADZQAAAAAAZQAAAAADZQAAAAABZQAAAAAAXQAAAAABaAAAAAACaAAAAAABXQAAAAAAXQAAAAABaAAAAAABaAAAAAAAaAAAAAADaAAAAAADaAAAAAAAXQAAAAADTgAAAAADTgAAAAAAaAAAAAACTgAAAAADTgAAAAACaAAAAAADaAAAAAACaAAAAAAAXQAAAAAAXQAAAAACXwAAAAADaAAAAAABaAAAAAABaAAAAAAAXwAAAAAAaAAAAAACZQAAAAABZQAAAAAAZQAAAAACZQAAAAACZQAAAAABXQAAAAADaAAAAAABaAAAAAADXQAAAAABXQAAAAAAXwAAAAABaAAAAAABaAAAAAABaAAAAAADXwAAAAADaAAAAAABJAAAAAACJAAAAAABJAAAAAABJAAAAAAAJAAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAADaAAAAAADaAAAAAADaAAAAAABaAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAewAAAAACewAAAAACewAAAAAAewAAAAAAewAAAAAAJAAAAAACJAAAAAADJAAAAAAAJAAAAAACJAAAAAABXQAAAAADXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAewAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAewAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAewAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAACHwAAAAABHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAAAewAAAAACfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAABAgAAAAAAJAAAAAAAJAAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAADfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAACAgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAQAAAAACPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADAQAAAAADPAAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAADPAAAAAAAPAAAAAAA + tiles: UwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAADwAAAAABGAAAAAACGAAAAAABDwAAAAAADwAAAAABGAAAAAABGAAAAAAAGAAAAAADGAAAAAADGAAAAAAADwAAAAADIAAAAAADIAAAAAAAGAAAAAACIAAAAAADIAAAAAACGAAAAAADGAAAAAACGAAAAAAADwAAAAAADwAAAAACMgAAAAADGAAAAAABGAAAAAABGAAAAAAAMgAAAAAAGAAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAABDwAAAAADGAAAAAABGAAAAAADDwAAAAABDwAAAAAAMgAAAAABGAAAAAABGAAAAAABGAAAAAADMgAAAAADGAAAAAABFwAAAAACFwAAAAABFwAAAAABFwAAAAAAFwAAAAACDwAAAAAADwAAAAACCAAAAAAADwAAAAAADwAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAADGAAAAAABGAAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAADDwAAAAADCAAAAAAADwAAAAAADwAAAAADDwAAAAAANAAAAAACNAAAAAACNAAAAAAANAAAAAAANAAAAAAAFwAAAAACFwAAAAADFwAAAAAAFwAAAAACFwAAAAABDwAAAAADDwAAAAACCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAABCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANAAAAAACEAAAAAAAEAAAAAABEAAAAAAAEAAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAADCAAAAAAADwAAAAADDwAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAEAAAAAACEAAAAAABEAAAAAADDAAAAAAACAAAAAAACAAAAAAANAAAAAACNAAAAAAANAAAAAACCAAAAAAAGAAAAAAAGAAAAAAAGAAAAAABVAAAAAAAFwAAAAAAFwAAAAAAEAAAAAACEAAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAANAAAAAAANAAAAAAANAAAAAADCAAAAAAAGAAAAAAAGAAAAAAAGAAAAAACVAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAAPwAAAAACQQAAAAAAQQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADPwAAAAADQQAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPwAAAAADQQAAAAAAQQAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAACaAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADaAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAIwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAIwAAAAADRQAAAAAAIwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAIwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAgQAAAAAAFQAAAAAGgQAAAAAAegAAAAACegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAggAAAAABFQAAAAABegAAAAACfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAACegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAggAAAAABgQAAAAAAFQAAAAAFfgAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAFQAAAAAGfgAAAAAAgQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAggAAAAACFQAAAAACegAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAACGAAAAAABCQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAABCQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAABCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAVQAAAAABCAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAAVQAAAAADVgAAAAAAVQAAAAADCAAAAAAABgAAAAAABgAAAAAACAAAAAAAFAAAAAACCAAAAAAAFAAAAAACFAAAAAABFAAAAAABCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAVQAAAAADCAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAASQAAAAAAUgAAAAAGSQAAAAAAFAAAAAACFAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAAASQAAAAABUgAAAAABFAAAAAACCAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAABgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAACFAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAAASQAAAAAASQAAAAABSQAAAAAAUgAAAAAFCAAAAAAAFAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAUgAAAAAGCAAAAAAASQAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAACUgAAAAACFAAAAAAAFAAAAAACCAAAAAAAFAAAAAABFAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: aAAAAAADaAAAAAABaAAAAAAAaAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACegAAAAAAegAAAAACXQAAAAACEgAAAAACEgAAAAABEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAaAAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAADegAAAAABegAAAAAAXQAAAAADEgAAAAAAEgAAAAADEgAAAAACEgAAAAACEgAAAAAAAwAAAAAAAwAAAAAAJAAAAAABaAAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAegAAAAAAegAAAAAAXQAAAAABEgAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAABAwAAAAAAAwAAAAAAJAAAAAABaAAAAAABaAAAAAADXQAAAAACaAAAAAACXQAAAAAAegAAAAACegAAAAABXQAAAAABEgAAAAABEgAAAAADEgAAAAABEgAAAAADEgAAAAADAwAAAAAAAwAAAAAAJAAAAAAAaAAAAAADaAAAAAABXQAAAAAAaAAAAAADXQAAAAADegAAAAADegAAAAACXQAAAAABEgAAAAAAEgAAAAADEgAAAAACEgAAAAADEgAAAAADAwAAAAAAAwAAAAAAJAAAAAACaAAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAABegAAAAADegAAAAACXQAAAAAAEgAAAAABEgAAAAADEgAAAAAAEgAAAAACEgAAAAABfgAAAAAAfgAAAAAAJAAAAAABaAAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACKAAAAAACKAAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADaAAAAAACaAAAAAACaAAAAAAAaAAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAABKAAAAAABKAAAAAADKAAAAAADKAAAAAACKAAAAAAAKAAAAAACKAAAAAADKAAAAAABaAAAAAACaAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAXQAAAAABfgAAAAAAewAAAAABewAAAAACewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAQwAAAAAAXQAAAAACfgAAAAAAewAAAAABewAAAAACewAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAA + tiles: GAAAAAADGAAAAAABGAAAAAAAGAAAAAAADwAAAAACDwAAAAAACAAAAAAADwAAAAACFAAAAAAAFAAAAAACDwAAAAACIgAAAAACIgAAAAABIgAAAAAAIgAAAAAAIgAAAAAACAAAAAAACAAAAAAAFwAAAAAAGAAAAAADDwAAAAADDwAAAAABCAAAAAAADwAAAAADFAAAAAABFAAAAAAADwAAAAADIgAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAAAIQAAAAAAIQAAAAAAFwAAAAABGAAAAAABDwAAAAADDwAAAAACCAAAAAAADwAAAAAAFAAAAAAAFAAAAAAADwAAAAABIgAAAAACIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAABIQAAAAAAIQAAAAAAFwAAAAABGAAAAAABGAAAAAADDwAAAAACGAAAAAACDwAAAAAAFAAAAAACFAAAAAABDwAAAAABIgAAAAABIgAAAAADIgAAAAABIgAAAAADIgAAAAADIQAAAAAAIQAAAAAAFwAAAAAAGAAAAAADGAAAAAABDwAAAAAAGAAAAAADDwAAAAADFAAAAAADFAAAAAACDwAAAAABIgAAAAAAIgAAAAADIgAAAAACIgAAAAADIgAAAAADIQAAAAAAIQAAAAAAFwAAAAACGAAAAAABDwAAAAACDwAAAAADCAAAAAAADwAAAAABFAAAAAADFAAAAAACDwAAAAAAIgAAAAABIgAAAAADIgAAAAAAIgAAAAACIgAAAAABCAAAAAAACAAAAAAAFwAAAAABGAAAAAAADwAAAAADDwAAAAACCAAAAAAADwAAAAACJwAAAAACJwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAADGAAAAAACGAAAAAACGAAAAAAAGAAAAAACDwAAAAABDwAAAAADCAAAAAAADwAAAAABJwAAAAABJwAAAAADJwAAAAADJwAAAAACJwAAAAAAJwAAAAACJwAAAAADJwAAAAABGAAAAAACGAAAAAAADwAAAAAADwAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAADDwAAAAACDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADDwAAAAABDwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAAADwAAAAADDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAABFAAAAAAAVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAADFAAAAAACVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAACFAAAAAABVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAABCAAAAAAANAAAAAABNAAAAAACNAAAAAABCAAAAAAACAAAAAAACAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAACCAAAAAAANAAAAAABNAAAAAACNAAAAAADCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABCAAAAAAACAAAAAAACAAAAAAAJwAAAAAAJwAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: XQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACaAAAAAADXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAfQAAAAAAAAAAAAAATgAAAAACTgAAAAAAaAAAAAACTgAAAAACTgAAAAABaAAAAAAAaAAAAAACaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAJAAAAAADJAAAAAADHwAAAAAAHwAAAAAAfgAAAAAAegAAAAABaAAAAAADaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAADHwAAAAABHwAAAAABfgAAAAAAegAAAAACaAAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAACTgAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAXQAAAAACfgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAACfgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAJfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADXQAAAAABTgAAAAADXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAALfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABXQAAAAABaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADTgAAAAADXQAAAAADXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAADTgAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAAKAAAAAABaAAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABKAAAAAADKAAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAC + tiles: DwAAAAADDwAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAACDwAAAAACGAAAAAADDwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAHCQAAAAAABgAAAAAACQAAAAAAIAAAAAACIAAAAAAAGAAAAAACIAAAAAACIAAAAAABGAAAAAAAGAAAAAACGAAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAAFwAAAAADFwAAAAADEAAAAAAAEAAAAAAACAAAAAAAFAAAAAABGAAAAAADGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAADEAAAAAABEAAAAAABCAAAAAAAFAAAAAACGAAAAAACDwAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAAAEAAAAAAAEAAAAAAACAAAAAAAFAAAAAACIAAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOQAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAAADwAAAAACCAAAAAAASwAAAAAASwAAAAALSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAACCAAAAAAASwAAAAACSwAAAAAASwAAAAABSwAAAAAASwAAAAAFSwAAAAAASwAAAAAJCAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAADDwAAAAABIAAAAAADDwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAASwAAAAALCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABDwAAAAABGAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAANAAAAAADIAAAAAADDwAAAAADDwAAAAABDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAANAAAAAADIAAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANAAAAAAAGAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACJwAAAAAAJwAAAAABJwAAAAAAJwAAAAAAJwAAAAACJwAAAAAAJwAAAAAAJwAAAAABGAAAAAACDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABJwAAAAADJwAAAAADDwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAABDwAAAAAC version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAACaAAAAAADXQAAAAADXQAAAAAAZQAAAAABZQAAAAACZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAABaAAAAAACaAAAAAAAaAAAAAAATgAAAAABTgAAAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAACaAAAAAADXQAAAAADXQAAAAABZQAAAAACZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAAAJAAAAAADJAAAAAAAJAAAAAADJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADXQAAAAADXQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAADXQAAAAACJAAAAAABJAAAAAAAJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAJAAAAAADJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAADDwAAAAADDwAAAAAAUwAAAAABUwAAAAACUwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAAAGAAAAAAAIAAAAAABIAAAAAABGAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAADDwAAAAADDwAAAAABUwAAAAACUwAAAAAAUwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAADDwAAAAADDwAAAAABIQAAAAAAIQAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAADDwAAAAACFwAAAAABFwAAAAAAFwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAADDwAAAAABDwAAAAABDwAAAAACDwAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAADwAAAAAADwAAAAABDwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAAEAAAAAABEAAAAAAAEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAACAAAAAAAFwAAAAAAFwAAAAAAFwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAVAAAAAAAVAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAAAFwAAAAADFwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABTgAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACTgAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABTgAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACTgAAAAAAXQAAAAABXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACTgAAAAACXQAAAAACfgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACTgAAAAADXQAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAADXQAAAAAAJAAAAAADJAAAAAADJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADXQAAAAADXQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAAAJAAAAAAAJAAAAAABJAAAAAACJAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABIAAAAAAADwAAAAACCAAAAAAAEAAAAAADEAAAAAACEAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAACDwAAAAABCAAAAAAAEAAAAAAAEAAAAAACEAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABIAAAAAABDwAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADIAAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAAADwAAAAABDwAAAAADDAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAACDwAAAAACCAAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAADDwAAAAABCAAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAABCAAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAADDwAAAAAAFwAAAAADFwAAAAADFwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADDwAAAAADDwAAAAADIQAAAAAAIQAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAAAFwAAAAAAFwAAAAABFwAAAAACFwAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACaAAAAAADaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAABaAAAAAACJAAAAAAAAwAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAAAaAAAAAACJAAAAAADAwAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAACaAAAAAABJAAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAACaAAAAAABJAAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAADHwAAAAACfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAADaAAAAAAAaAAAAAAAXQAAAAAAaAAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAaAAAAAACaAAAAAAAaAAAAAACaAAAAAADaAAAAAABXQAAAAACaAAAAAACaAAAAAABaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACaAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACaAAAAAACaAAAAAAAaAAAAAABaAAAAAADaAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADaAAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAaAAAAAABaAAAAAAAaAAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAC + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACGAAAAAADGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAACCAAAAAAADwAAAAABGAAAAAACFwAAAAAAIQAAAAAADAAAAAAACAAAAAAAFwAAAAAAEAAAAAAAEAAAAAAAEAAAAAACCAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAADCAAAAAAADwAAAAAAGAAAAAACFwAAAAADIQAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAACFAAAAAADEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAADEAAAAAADCAAAAAAADwAAAAACGAAAAAABFwAAAAAAIQAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAADFAAAAAABEAAAAAABCAAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAABCAAAAAAADwAAAAACGAAAAAABFwAAAAAAIQAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAADFAAAAAADEAAAAAACCAAAAAAAGAAAAAAAGAAAAAAAGAAAAAADGAAAAAAAGAAAAAAADwAAAAAAGAAAAAABFwAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAABCAAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAADGAAAAAABDwAAAAACGAAAAAACGAAAAAABGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAACGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAACGAAAAAADCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAACGAAAAAACCAAAAAAACAAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACGAAAAAACGAAAAAAAGAAAAAABGAAAAAADGAAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAADCQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAAGAAAAAABGAAAAAAAGAAAAAADCAAAAAAACAAAAAAADwAAAAACDwAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADGAAAAAAADwAAAAACCAAAAAAADwAAAAADDwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAACCAAAAAAADwAAAAADDwAAAAACDwAAAAAC version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABaAAAAAADaAAAAAABaAAAAAAATgAAAAAATgAAAAABaAAAAAAATgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXgAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXgAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXgAAAAABXgAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADYQAAAAAEYQAAAAAAXgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAACDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAABGAAAAAADGAAAAAABGAAAAAAAIAAAAAAAIAAAAAABGAAAAAAAIAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAACDwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABCQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADCQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADCQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAADSgAAAAABDwAAAAADDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADDwAAAAACBgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAAASgAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADBgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACSgAAAAABSgAAAAABDwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADSgAAAAAESgAAAAAASgAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAA version: 6 2,0: ind: 2,0 - tiles: HwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAaAAAAAAAaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABXQAAAAAAaAAAAAAAXQAAAAAAdQAAAAADdQAAAAACdQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAaAAAAAAAXQAAAAADXQAAAAACTgAAAAAAXQAAAAABdQAAAAABdQAAAAACdQAAAAADfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAACaAAAAAABTgAAAAACTgAAAAABaAAAAAAAaAAAAAADaAAAAAABTgAAAAADTgAAAAABXQAAAAABdQAAAAADdQAAAAAAaAAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABaAAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACdQAAAAADdQAAAAABdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAcAAAAAADcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAdQAAAAADdQAAAAABcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAAAdQAAAAACXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAdQAAAAADTgAAAAACcAAAAAACdQAAAAABcAAAAAADTgAAAAACdQAAAAACXQAAAAADXQAAAAACXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAABcAAAAAABdQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABdAAAAAABdQAAAAACdQAAAAADdQAAAAADdAAAAAABdQAAAAACfgAAAAAAXQAAAAADegAAAAADegAAAAABegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABdAAAAAADdQAAAAAAdQAAAAACdQAAAAACdAAAAAADJAAAAAADXQAAAAACXQAAAAAAegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAABfgAAAAAAXQAAAAACegAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACJAAAAAADHwAAAAADJAAAAAACfgAAAAAAXQAAAAAAegAAAAABegAAAAADegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAADJAAAAAAATwAAAAAATwAAAAAA + tiles: EAAAAAAAEAAAAAAAEAAAAAABCAAAAAAAGAAAAAAAGAAAAAABGAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAABGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABDwAAAAAAGAAAAAAADwAAAAAAPQAAAAADPQAAAAACPQAAAAACCAAAAAAADwAAAAAADwAAAAADDwAAAAAAFwAAAAAADwAAAAAADwAAAAABDwAAAAAAGAAAAAAADwAAAAADDwAAAAACIAAAAAAADwAAAAABPQAAAAABPQAAAAACPQAAAAADCAAAAAAAGAAAAAAAGAAAAAAAGAAAAAACGAAAAAABIAAAAAACIAAAAAABGAAAAAAAGAAAAAADGAAAAAABIAAAAAADIAAAAAABDwAAAAABPQAAAAADPQAAAAAAGAAAAAADCAAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAABGAAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAACPQAAAAADPQAAAAABPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPgAAAAAAPgAAAAADPgAAAAAAPgAAAAAAPgAAAAABPgAAAAADCAAAAAAADwAAAAABDwAAAAACDwAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAACCAAAAAAADwAAAAACCAAAAAAAPgAAAAADPgAAAAADPgAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAAPQAAAAADPQAAAAABPgAAAAACPgAAAAABPgAAAAABPgAAAAACPgAAAAAAPQAAAAACDwAAAAACDwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAPQAAAAAAPQAAAAADIAAAAAACPgAAAAACPQAAAAABPgAAAAADIAAAAAACPQAAAAACDwAAAAADDwAAAAACDwAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPgAAAAADPgAAAAACPgAAAAABPgAAAAABPgAAAAABPQAAAAAADwAAAAADDwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAACCAAAAAAACAAAAAAACAAAAAAAPgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABSAAAAAABPQAAAAACPQAAAAADPQAAAAADSAAAAAABPQAAAAACCAAAAAAADwAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAACCAAAAAAACAAAAAAACAAAAAAAPQAAAAABSAAAAAADPQAAAAAAPQAAAAACPQAAAAACSAAAAAADFwAAAAADDwAAAAACDwAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAACPgAAAAAAPgAAAAAAPgAAAAACPgAAAAABPgAAAAAAPgAAAAABCAAAAAAADwAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACFwAAAAADEAAAAAADFwAAAAACCAAAAAAADwAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAADFwAAAAAAGQAAAAAAGQAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAACAAAAAAASQAAAAAASQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,2: ind: 0,2 - tiles: fgAAAAAAfgAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAdAAAAAADdAAAAAAAdQAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADHwAAAAABHwAAAAACHwAAAAACfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACAAAAAAAGQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAEAAAAAAAEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAABCAAAAAAASAAAAAADSAAAAAAAPQAAAAABCAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAACCAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABCAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAACCAAAAAAAEAAAAAAAEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAADEAAAAAAAEAAAAAABEAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAADEAAAAAABEAAAAAACEAAAAAACCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACEAAAAAADEAAAAAAAEAAAAAACCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: HwAAAAACHwAAAAAAewAAAAAAewAAAAACewAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACJAAAAAAAJAAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAADewAAAAADewAAAAADewAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADewAAAAACewAAAAACewAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAHwAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdAAAAAADdAAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADgQAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAJAAAAAABJAAAAAACJAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAC + tiles: EAAAAAACEAAAAAAANAAAAAAANAAAAAACNAAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAACFwAAAAAAFwAAAAACCAAAAAAADwAAAAABDwAAAAABDwAAAAACCAAAAAAAEAAAAAADNAAAAAADNAAAAAADNAAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAAADwAAAAACEAAAAAADEAAAAAADCAAAAAAAEAAAAAABEAAAAAAAEAAAAAABCAAAAAAAEAAAAAADNAAAAAACNAAAAAACNAAAAAACDwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAABEAAAAAADEAAAAAABCAAAAAAAEAAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAEAAAAAADDwAAAAABCAAAAAAADAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAAAEAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAEAAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADSAAAAAADSAAAAAACCAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADSQAAAAAAEAAAAAADEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAADCAAAAAAAFwAAAAABFwAAAAACFwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACCAAAAAAADwAAAAABDwAAAAABDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAADwAAAAACCAAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAACEAAAAAACDwAAAAABDwAAAAACDwAAAAACDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAAADwAAAAADDwAAAAABDwAAAAADDwAAAAAC version: 6 -2,2: ind: -2,2 - tiles: fQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACXQAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: BgAAAAAABgAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACDwAAAAADCAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAAACAAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABCAAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAADDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAADCQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAEAAAAAABCQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABJAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAABFwAAAAAADwAAAAABDwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAABDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAADwAAAAADEAAAAAADEAAAAAACDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,3: ind: 0,3 - tiles: XQAAAAAAHwAAAAADHwAAAAAAJAAAAAACfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACHwAAAAACHwAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DwAAAAAAEAAAAAADEAAAAAAAFwAAAAACCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAABCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAABCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACEAAAAAACEAAAAAABDwAAAAADCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAADEAAAAAAAEAAAAAACCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 2,1: ind: 2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAADJAAAAAABTwAAAAAATwAAAAAAfgAAAAAAJAAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACTgAAAAADTgAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAATgAAAAACTgAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACaAAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAADFwAAAAABGQAAAAAAGQAAAAAACAAAAAAAFwAAAAAAEAAAAAABEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACIAAAAAADIAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAEAAAAAAAIAAAAAACIAAAAAABEAAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAACGAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAWAAAAAAAWAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 3,0: ind: 3,0 - tiles: fgAAAAAAdQAAAAACdQAAAAACdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAfgAAAAAAdQAAAAADdQAAAAACdQAAAAACcAAAAAADdQAAAAADcAAAAAABfgAAAAAAcAAAAAACcAAAAAACdQAAAAABdQAAAAABdQAAAAACfgAAAAAAcAAAAAACdQAAAAAAdQAAAAADdQAAAAACdQAAAAACdQAAAAAAcAAAAAADdQAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAABdQAAAAAAdQAAAAADdQAAAAACdQAAAAADdQAAAAAAdQAAAAAAcAAAAAADcAAAAAADcAAAAAABdQAAAAADcAAAAAAAdQAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAAAdQAAAAACdQAAAAADdQAAAAABfgAAAAAAcAAAAAADdQAAAAADdQAAAAABdQAAAAAAdQAAAAACdQAAAAABcAAAAAACdQAAAAACcAAAAAABfgAAAAAAcAAAAAAAcAAAAAAAdQAAAAAAdQAAAAAAdQAAAAABfgAAAAAAcAAAAAABcAAAAAAAfgAAAAAAdQAAAAABdQAAAAAAdQAAAAACcAAAAAADdQAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdQAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABcAAAAAADdQAAAAACcAAAAAADcAAAAAABcAAAAAAAdQAAAAAAdQAAAAABdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdQAAAAACdQAAAAAAcAAAAAAAfgAAAAAAcAAAAAACdQAAAAADdQAAAAADdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAdQAAAAACcAAAAAABdQAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADfgAAAAAAcAAAAAAAdQAAAAACcAAAAAACfgAAAAAAJAAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAcAAAAAABdQAAAAACcAAAAAAAcAAAAAADcAAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdQAAAAABcAAAAAABfgAAAAAAcAAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAdQAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdQAAAAADdQAAAAACdQAAAAADcAAAAAABcAAAAAADcAAAAAABdQAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACdQAAAAADdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAdQAAAAADdQAAAAADdQAAAAACcAAAAAACfgAAAAAAfgAAAAAA + tiles: CAAAAAAAPQAAAAACPQAAAAACPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAADPgAAAAAACAAAAAAAPQAAAAADPQAAAAACPQAAAAACPgAAAAADPQAAAAADPgAAAAABCAAAAAAAPgAAAAACPgAAAAACPQAAAAABPQAAAAABPQAAAAACCAAAAAAAPgAAAAACPQAAAAAAPQAAAAADPQAAAAACPQAAAAACPQAAAAAAPgAAAAADPQAAAAAAPgAAAAAAPgAAAAABPgAAAAABPgAAAAABPQAAAAAAPQAAAAADPQAAAAACPQAAAAADPQAAAAAAPQAAAAAAPgAAAAADPgAAAAADPgAAAAABPQAAAAADPgAAAAAAPQAAAAAAPgAAAAADPgAAAAADPgAAAAADPgAAAAAAPQAAAAACPQAAAAADPQAAAAABCAAAAAAAPgAAAAADPQAAAAADPQAAAAABPQAAAAAAPQAAAAACPQAAAAABPgAAAAACPQAAAAACPgAAAAABCAAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAAPQAAAAABCAAAAAAAPgAAAAABPgAAAAAACAAAAAAAPQAAAAABPQAAAAAAPQAAAAACPgAAAAADPQAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAACPQAAAAAAPgAAAAAACAAAAAAAPgAAAAADPgAAAAADPgAAAAADPgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPgAAAAADPQAAAAACPgAAAAADPgAAAAABPgAAAAAAPQAAAAAAPQAAAAABPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADPQAAAAACPQAAAAAAPgAAAAAACAAAAAAAPgAAAAACPQAAAAADPQAAAAADPQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAPQAAAAACPgAAAAABPQAAAAADPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADCAAAAAAAPgAAAAAAPQAAAAACPgAAAAACCAAAAAAAFwAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAABFAAAAAADFAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAAPgAAAAABPQAAAAACPgAAAAAAPgAAAAADPgAAAAACEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAAFAAAAAABFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPQAAAAABPgAAAAABCAAAAAAAPgAAAAABEAAAAAACEAAAAAADEAAAAAADCAAAAAAAFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPgAAAAAAPQAAAAABPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADPQAAAAADPQAAAAACPQAAAAADPgAAAAABPgAAAAADPgAAAAABPQAAAAADPgAAAAADPgAAAAAAPgAAAAADPgAAAAAAPgAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAACPQAAAAADPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAPQAAAAADPQAAAAADPQAAAAACPgAAAAACCAAAAAAACAAAAAAA version: 6 3,1: ind: 3,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAACdQAAAAACdQAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXgAAAAABZAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXgAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAADfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPQAAAAACPQAAAAACPQAAAAADPgAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPgAAAAABPgAAAAAAPgAAAAADPgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAWgAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAASgAAAAABWQAAAAAADwAAAAACDwAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAWAAAAAAACAAAAAAADwAAAAACDwAAAAACSgAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABCAAAAAAAFAAAAAADFAAAAAABCAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABCAAAAAAAFAAAAAAAFAAAAAADCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAAAFAAAAAABFAAAAAADCAAAAAAAFAAAAAADFAAAAAABCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADJAAAAAABJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAABJAAAAAABJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAJAAAAAAAJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADJAAAAAADJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAACJAAAAAAAJAAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAATgAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACTgAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADTgAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAaAAAAAAAaAAAAAABaAAAAAADfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA + tiles: CQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAADFwAAAAABFwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAABFwAAAAABFwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAFwAAAAAAFwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAADFwAAAAADFwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAACFwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAAFwAAAAACFwAAAAAAFwAAAAABCAAAAAAAEAAAAAADEAAAAAADEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAABFwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAACGAAAAAABDwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAAIAAAAAADDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAACIAAAAAAADwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAADIAAAAAADDwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAAAGAAAAAABGAAAAAADCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAJAAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABJAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACJAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADJAAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABJAAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAADJAAAAAADJAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTgAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACTgAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAADfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAADfgAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAaAAAAAADaAAAAAADaAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAAAFwAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAAAFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAABFwAAAAABCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAACEAAAAAACEAAAAAADEAAAAAACEAAAAAACFwAAAAABCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAADFwAAAAACEAAAAAACEAAAAAACEAAAAAACEAAAAAADFwAAAAACCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAADFwAAAAACCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAAACAAAAAAAFwAAAAADFwAAAAADFwAAAAADCAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAACFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABGAAAAAABDwAAAAADCAAAAAAADwAAAAADDwAAAAADCAAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADIAAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAIAAAAAAADwAAAAADCAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAACDwAAAAADCAAAAAAASwAAAAAASwAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAAACAAAAAAASwAAAAAASwAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJAAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAJAAAAAABfgAAAAAAAAAAAAAAfQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAADEAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAAAFwAAAAABCAAAAAAACQAAAAAABgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABJAAAAAABJAAAAAACJAAAAAABJAAAAAAAJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAAAJAAAAAADJAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAADdQAAAAAAdQAAAAAAcAAAAAAAfgAAAAAAdQAAAAABdQAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABdQAAAAACcAAAAAAAcAAAAAADcAAAAAABdQAAAAABdQAAAAADfgAAAAAAcAAAAAACdQAAAAAAdQAAAAACdQAAAAABcAAAAAADfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAdQAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdQAAAAACdQAAAAABdQAAAAADcAAAAAACfgAAAAAAfgAAAAAAcAAAAAADdQAAAAAAdQAAAAABdQAAAAAAcAAAAAAAcAAAAAABdQAAAAAAcAAAAAADcAAAAAACcAAAAAABaAAAAAABaAAAAAADaAAAAAABcAAAAAABfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABdQAAAAACcAAAAAAAcAAAAAAAcAAAAAADdQAAAAADcAAAAAAAcAAAAAADcAAAAAABaAAAAAADaAAAAAAAaAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACdQAAAAACcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAABdQAAAAABdQAAAAABcAAAAAADfgAAAAAAdQAAAAACdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAABdQAAAAADdQAAAAAAcAAAAAADcAAAAAACdQAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAABCAAAAAAACAAAAAAADwAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAAFwAAAAACDwAAAAABDwAAAAACDwAAAAACDwAAAAADCAAAAAAADwAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAACDwAAAAACCAAAAAAADwAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAACDwAAAAADDwAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAACDwAAAAAACAAAAAAADwAAAAABFwAAAAABFwAAAAACFwAAAAABFwAAAAAAFwAAAAACFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAACFwAAAAAAFwAAAAADFwAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPQAAAAADPQAAAAAAPQAAAAAAPgAAAAAACAAAAAAAPQAAAAABPQAAAAACCAAAAAAAPgAAAAACPgAAAAACPgAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAAPgAAAAABPgAAAAABPQAAAAACPgAAAAAAPgAAAAADPgAAAAABPQAAAAABPQAAAAADCAAAAAAAPgAAAAACPQAAAAAAPQAAAAACPQAAAAABPgAAAAADCAAAAAAACAAAAAAAPgAAAAABPgAAAAAAPQAAAAABPgAAAAACPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAACPQAAAAACPQAAAAABPQAAAAADPgAAAAACCAAAAAAACAAAAAAAPgAAAAADPQAAAAAAPQAAAAABPQAAAAAAPgAAAAAAPgAAAAABPQAAAAAAPgAAAAADPgAAAAACPgAAAAABGAAAAAABGAAAAAADGAAAAAABPgAAAAABCAAAAAAACAAAAAAAPgAAAAAAPgAAAAABPQAAAAACPgAAAAAAPgAAAAAAPgAAAAADPQAAAAADPgAAAAAAPgAAAAADPgAAAAABGAAAAAADGAAAAAAAGAAAAAACPgAAAAAACAAAAAAACAAAAAAAPgAAAAACPgAAAAACPQAAAAACPgAAAAACPgAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPQAAAAABPQAAAAABPQAAAAABPgAAAAADCAAAAAAAPQAAAAACPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPQAAAAABPQAAAAADPQAAAAAAPgAAAAADPgAAAAACPQAAAAAAPQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 4,0: ind: 4,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABDwAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABDwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: XQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAADfgAAAAAAaAAAAAABaAAAAAADaAAAAAADaAAAAAACaAAAAAACfgAAAAAAXQAAAAADbQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAATgAAAAADXQAAAAADfgAAAAAAaAAAAAACaAAAAAACaAAAAAADaAAAAAACaAAAAAACfgAAAAAAXQAAAAACbQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADaAAAAAACaAAAAAABaAAAAAAAaAAAAAAAaAAAAAABfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAaAAAAAACaAAAAAABaAAAAAAAaAAAAAAAaAAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACXQAAAAABXQAAAAADXQAAAAABaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAADCAAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAACGAAAAAACCAAAAAAADwAAAAADNQAAAAAADwAAAAACDwAAAAACDwAAAAABCAAAAAAACAAAAAAAIAAAAAADDwAAAAADCAAAAAAAGAAAAAACGAAAAAACGAAAAAADGAAAAAACGAAAAAACCAAAAAAADwAAAAACNQAAAAAADwAAAAADDwAAAAACDwAAAAACCAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAADGAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAABCAAAAAAADAAAAAAADAAAAAAADwAAAAADDwAAAAADDwAAAAADCAAAAAAACAAAAAAADwAAAAACDwAAAAAACAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAACCAAAAAAADAAAAAAADAAAAAAANQAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACDwAAAAABDwAAAAADDwAAAAABGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAADAAAAAAADAAAAAAADAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAADAAAAAAADAAAAAAADAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 4,1: ind: 4,1 - tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAggAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAggAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASQAAAAAACAAAAAAASQAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAASQAAAAAASQAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACJAAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADJAAAAAABJAAAAAADJAAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAJAAAAAACHwAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAegAAAAADegAAAAADegAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAaAAAAAADXQAAAAACegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAegAAAAAAegAAAAABegAAAAABXQAAAAABXQAAAAABJAAAAAAAfgAAAAAAaAAAAAABXQAAAAABegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAaAAAAAADXQAAAAABJAAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADbQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADbQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAATgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAACFwAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADFwAAAAABFwAAAAADFwAAAAABDwAAAAABDwAAAAACDwAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAFwAAAAACEAAAAAACDwAAAAACDwAAAAAADwAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAADAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABDwAAAAACDwAAAAADDwAAAAABCAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFAAAAAADFAAAAAADFAAAAAAADwAAAAACDwAAAAABDwAAAAACCAAAAAAAGAAAAAADDwAAAAACFAAAAAACFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFAAAAAAAFAAAAAABFAAAAAABDwAAAAABDwAAAAABFwAAAAAACAAAAAAAGAAAAAABDwAAAAABFAAAAAAAFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFAAAAAADFAAAAAABFAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAAGAAAAAADDwAAAAABFwAAAAABFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAACFAAAAAACFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAADNQAAAAAADwAAAAACDwAAAAACDwAAAAACCAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAADNQAAAAAADwAAAAACDwAAAAACDwAAAAADCAAAAAAACAAAAAAAIAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAABNQAAAAAADwAAAAAADwAAAAAADwAAAAAACAAAAAAACAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAABXQAAAAABXQAAAAABaAAAAAABaAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAADXQAAAAADXQAAAAABJAAAAAADJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAADXQAAAAACXQAAAAACJAAAAAAAJAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAAWAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAACCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAABDwAAAAABDwAAAAABGAAAAAABGAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAADDwAAAAADDwAAAAABFwAAAAADFwAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAADDwAAAAACDwAAAAACFwAAAAAAFwAAAAADCAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: CwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAggAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAgQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: TAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAASwAAAAAESwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAANQAAAAAASQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAANQAAAAAASQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAANQAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: fgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAADBwAAAAAABwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAECwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAALBwAAAAAAfgAAAAAABwAAAAAHBwAAAAAAfwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAAAfwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADJAAAAAABHwAAAAAAHwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAfwAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAADfgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: CAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAHSwAAAAADSwAAAAAASwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAETAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAALSwAAAAAACAAAAAAASwAAAAAHSwAAAAAAUQAAAAAASwAAAAAASwAAAAAACAAAAAAAUQAAAAAACAAAAAAATAAAAAAATAAAAAAABgAAAAAABgAAAAAAUQAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAFSwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAADCAAAAAAAEAAAAAAAEAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAADFwAAAAABEAAAAAAAEAAAAAADCAAAAAAASwAAAAAASwAAAAAASwAAAAAMSwAAAAAAUQAAAAAACAAAAAAATAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAABCAAAAAAAEAAAAAACEAAAAAADCAAAAAAASwAAAAAASwAAAAAMSwAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAADCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAABCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAIBwAAAAAIBwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAGfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFBwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAJAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAC + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAHSwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAISwAAAAAISwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAFSwAAAAAASwAAAAAASwAAAAAGBgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAGSwAAAAAASwAAAAAFSwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAACAAAAAAAFwAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAAFwAAAAAACAAAAAAACAAAAAAAFwAAAAAC version: 6 -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAggAAAAAAfgAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAASQAAAAAACAAAAAAASQAAAAAACAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAADwAAAAADDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAADwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA version: 6 -2,3: ind: -2,3 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADgwAAAAAAgwAAAAAAQAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXAAAAAADYgAAAAAAYgAAAAAALQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYgAAAAAALQAAAAAALQAAAAAALQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 1,2: ind: 1,2 - tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAABwAAAAAMBwAAAAAJBwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAAfgAAAAAAfwAAAAAABwAAAAAGBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAJBwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAMSwAAAAAJSwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAGSwAAAAABSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAKSwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAKSwAAAAACSwAAAAAJSwAAAAAJSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAAGSwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAJSwAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAAFCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAKUQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAABCwAAAAAACwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAJBwAAAAAHBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFfwAAAAAAfgAAAAAACwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACwAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAABSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAMSwAAAAAASwAAAAAASwAAAAAASwAAAAAHSwAAAAAASwAAAAACUQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAABTAAAAAAATAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAJSwAAAAAHSwAAAAAASwAAAAAHSwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAGSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAHSwAAAAAMSwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAJSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAADSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAFUQAAAAAACAAAAAAATAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAACFAAAAAACFAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAABFAAAAAADFAAAAAABCAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAADCAAAAAAASwAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAAACAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAOQAAAAAAOQAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADEQAAAAAAfgAAAAAAEQAAAAAAfgAAAAAAEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAEQAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADEQAAAAAATwAAAAAAEQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABEQAAAAAATwAAAAAAEQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADEQAAAAAATwAAAAAAEQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAJAAAAAADHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAAEAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADRwAAAAAACAAAAAAARwAAAAAACAAAAAAARwAAAAAAEAAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAARwAAAAAAEAAAAAADRwAAAAAAEAAAAAABRwAAAAAAEAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADRwAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAAEAAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAARwAAAAAARwAAAAAARwAAAAAAGQAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADEAAAAAADRwAAAAAAGQAAAAAARwAAAAAAEAAAAAABEAAAAAADCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAAEAAAAAABRwAAAAAAGQAAAAAARwAAAAAAEAAAAAACEAAAAAACCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADEAAAAAADRwAAAAAAGQAAAAAARwAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAACCAAAAAAAEAAAAAAAEAAAAAACCAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAFwAAAAADEAAAAAAAEAAAAAACCAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAAD + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAAD version: 6 - type: Broadphase - type: Physics @@ -899,7 +894,6 @@ entities: 7410: 23,-53 7417: -55,-46 7418: -41,-46 - 7421: -7,-40 7451: -30,-5 7510: -35,-5 7536: -37,36 @@ -6533,9 +6527,6 @@ entities: 7379: 62,-36 7380: 63,-35 7427: -5,-41 - 7447: -6,-40 - 7448: -7,-40 - 7449: -7,-40 7470: -32,-5 7471: -34,-5 7472: -35,-2 @@ -7193,7 +7184,6 @@ entities: 7320: 37,-29 7321: 37,-31 7411: 23,-54 - 7423: -6,-40 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -11730,19 +11720,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: fgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACJAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAASQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAACEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAACFwAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAFwAAAAACCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABJAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAADJAAAAAACJAAAAAABJAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAfgAAAAAAgQAAAAAAJAAAAAADfgAAAAAAAAAAAAAAfgAAAAAAggAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAACfQAAAAAAggAAAAACYQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACgQAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACJAAAAAADJAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADJAAAAAADJAAAAAADaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABJAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAACCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAADFwAAAAACFwAAAAABFwAAAAACCAAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAAACAAAAAAASQAAAAAAFwAAAAADCAAAAAAACQAAAAAACAAAAAAASQAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASQAAAAACBgAAAAAASQAAAAACSgAAAAAACAAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAACSQAAAAAACAAAAAAAGAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAACFwAAAAADFwAAAAABGAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAADFwAAAAADFwAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAACCAAAAAAABgAAAAAACAAAAAAAGAAAAAAAGAAAAAADGAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAAFwAAAAACCAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -14095,18 +14085,6 @@ entities: - type: DeviceList devices: - 22450 -- proto: AirAlarmVox - entities: - - uid: 21945 - components: - - type: Transform - pos: -4.5,-37.5 - parent: 2 - - type: DeviceList - devices: - - 22367 - - 21959 - - 21955 - proto: AirCanister entities: - uid: 4 @@ -18209,9 +18187,6 @@ entities: - type: Transform pos: -3.5,-39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21945 - proto: AltarHeaven entities: - uid: 16557 @@ -20429,58 +20404,6 @@ entities: - type: Transform pos: 24.5,-4.5 parent: 2 -- proto: AtmosFixVoxMarker - entities: - - uid: 22459 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 2 - - uid: 22460 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 2 - - uid: 22461 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - - uid: 22462 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 2 - - uid: 22463 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 2 - - uid: 22464 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 2 - - uid: 22465 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 2 - - uid: 22466 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 2 - - uid: 22468 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - - uid: 22469 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 2 - proto: Autolathe entities: - uid: 127 @@ -61472,11 +61395,6 @@ entities: - type: Transform pos: 64.5,-34.5 parent: 2 - - uid: 22506 - components: - - type: Transform - pos: -3.622323,-41.379776 - parent: 2 - proto: ClothingMaskGasAtmos entities: - uid: 900 @@ -63917,13 +63835,6 @@ entities: - type: Transform pos: 54.5,-33.5 parent: 2 -- proto: DefaultStationBeaconVox - entities: - - uid: 21940 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - uid: 20871 @@ -76570,17 +76481,6 @@ entities: - type: Transform pos: 60.5,-5.5 parent: 2 - - uid: 21956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-38.5 - parent: 2 - - type: GasFilter - filteredGas: Nitrogen - enabled: True - - type: AtmosPipeColor - color: '#0335FCFF' - proto: GasMinerCarbonDioxide entities: - uid: 1093 @@ -76843,6 +76743,14 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-6.5 parent: 2 + - uid: 15081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15153 components: - type: Transform @@ -78392,22 +78300,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 22052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 22106 components: - type: Transform @@ -78499,22 +78391,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 7063 @@ -79367,13 +79243,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 15081 + - uid: 13174 components: - type: Transform - pos: -3.5,-39.5 + rot: -1.5707963267948966 rad + pos: -6.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' - uid: 15090 components: - type: Transform @@ -92313,14 +92190,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 22352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 22413 components: - type: Transform @@ -92436,62 +92305,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 22452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - proto: GasPipeTJunction entities: - uid: 575 @@ -94442,14 +94255,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - proto: GasPort entities: - uid: 1198 @@ -95880,18 +95685,6 @@ entities: - 22429 - type: AtmosPipeColor color: '#0335FCFF' -- proto: GasVentPumpVox - entities: - - uid: 22367 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21945 - - type: AtmosPipeColor - color: '#0335FCFF' - proto: GasVentScrubber entities: - uid: 893 @@ -97050,18 +96843,6 @@ entities: - 22429 - type: AtmosPipeColor color: '#FF1212FF' -- proto: GasVentScrubberVox - entities: - - uid: 21959 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21945 - - type: AtmosPipeColor - color: '#FF1212FF' - proto: GasVolumePump entities: - uid: 9163 @@ -106074,13 +105855,6 @@ entities: - type: Transform pos: -62.5,-32.5 parent: 2 -- proto: NitrogenTankFilled - entities: - - uid: 21452 - components: - - type: Transform - pos: -3.4021726,-41.526543 - parent: 2 - proto: NitrousOxideCanister entities: - uid: 1515 @@ -120382,13 +120156,6 @@ entities: - type: Transform pos: 56.5,15.5 parent: 2 -- proto: SignVox - entities: - - uid: 21946 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 2 - proto: SingularityGenerator entities: - uid: 2092 @@ -147330,18 +147097,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-38.5 parent: 2 - - uid: 13174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-39.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 21594: - - DoorStatus: DoorBolt - uid: 16324 components: - type: Transform @@ -147366,18 +147121,6 @@ entities: rot: 3.141592653589793 rad pos: 80.5,-24.5 parent: 2 - - uid: 21594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 13174: - - DoorStatus: DoorBolt - uid: 22489 components: - type: Transform @@ -148459,11 +148202,6 @@ entities: - type: Transform pos: 43.5,-20.5 parent: 2 - - uid: 16945 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 2 - uid: 17484 components: - type: Transform @@ -148567,12 +148305,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,1.5 parent: 2 - - uid: 21927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-40.5 - parent: 2 - uid: 22366 components: - type: Transform From 7780b867acd6fe34ff066aa48660c1e5dc60ffde Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:18:15 -0600 Subject: [PATCH 112/263] Holopads (#32711) * Initial resources commit * Initial code commit * Added additional resources * Continuing to build holopad and telephone systems * Added hologram shader * Added hologram system and entity * Holo calls now have a hologram of the user appear on them * Initial implementation of holopads transmitting nearby chatter * Added support for linking across multiple telephones/holopads/entities * Fixed a bunch of bugs * Tried simplifying holopad entity dependence, added support for mid-call user switching * Replaced PVS expansion with manually networked sprite states * Adjusted volume of ring tone * Added machine board * Minor features and tweaks * Resolving merge conflict * Recommit audio attributions * Telephone chat adjustments * Added support for AI interactions with holopads * Building the holopad UI * Holopad UI finished * Further UI tweaks * Station AI can hear local chatter when being projected from a holopad * Minor bug fixes * Added wire panels to holopads * Basic broadcasting * Start of emergency broadcasting code * Fixing issues with broadcasting * More work on emergency broadcasting * Updated holopad visuals * Added cooldown text to emergency broadcast and control lock out screen * Code clean up * Fixed issue with timing * Broadcasting now requires command access * Fixed some bugs * Added multiple holopad prototypes with different ranges * The AI no longer requires power to interact with holopads * Fixed some additional issues * Addressing more issues * Added emote support for holograms * Changed the broadcast lockout durations to their proper values * Added AI vision wire to holopads * Bug fixes * AI vision and interaction wires can be added to the same wire panel * Fixed error * More bug fixes * Fixed test fail * Embellished the emergency call lock out window * Holopads play borg sounds when speaking * Borg and AI names are listed as the caller ID on the holopad * Borg chassis can now be seen on holopad holograms * Holopad returns to a machine frame when badly damaged * Clarified some text * Fix merge conflict * Fixed merge conflict * Fixing merge conflict * Fixing merge conflict * Fixing merge conflict * Offset menu on open * AI can alt click on holopads to activate the projector * Bug fixes for intellicard interactions * Fixed speech issue with intellicards * The UI automatically opens for the AI when it alt-clicks on the holopad * Simplified shader math * Telephones will auto hang up 60 seconds after the last person on a call stops speaking * Added better support for AI requests when multiple AI cores are on the station * The call controls pop up for the AI when they accept a summons from a holopad * Compatibility mode fix for the hologram shader * Further shader fixes for compatibility mode * File clean up * More cleaning up * Removed access requirements from quantum holopads so they can used by nukies * The title of the holopad window now reflects the name of the device * Linked telephones will lose their connection if both move out of range of each other --- Content.Client/Chat/UI/SpeechBubble.cs | 8 +- .../Holopad/HolopadBoundUserInterface.cs | 101 +++ Content.Client/Holopad/HolopadSystem.cs | 172 ++++ Content.Client/Holopad/HolopadWindow.xaml | 107 +++ Content.Client/Holopad/HolopadWindow.xaml.cs | 338 ++++++++ Content.Client/Stylesheets/StyleNano.cs | 15 + Content.Client/Telephone/TelephoneSystem.cs | 8 + Content.Server/Holopad/HolopadSystem.cs | 761 ++++++++++++++++++ .../Silicons/StationAi/AiVisionWireAction.cs | 4 +- .../Silicons/StationAi/StationAiSystem.cs | 41 + Content.Server/Telephone/TelephoneSystem.cs | 468 +++++++++++ Content.Shared/Doors/AirlockWireStatus.cs | 3 +- .../Holopad/HolographicAvatarComponent.cs | 13 + Content.Shared/Holopad/HolopadComponent.cs | 133 +++ .../Holopad/HolopadHologramComponent.cs | 71 ++ .../Holopad/HolopadUserComponent.cs | 104 +++ Content.Shared/Holopad/SharedHolopadSystem.cs | 43 + .../StationAi/SharedStationAiSystem.cs | 88 +- .../StationAi/StationAiCoreComponent.cs | 10 + Content.Shared/Speech/SpeechComponent.cs | 6 + .../Telephone/SharedTelephoneSystem.cs | 39 + .../Telephone/TelephoneComponent.cs | 203 +++++ Resources/Audio/Machines/attributions.yml | 5 + Resources/Audio/Machines/double_ring.ogg | Bin 0 -> 16754 bytes Resources/Locale/en-US/holopad/holopad.ftl | 40 + .../Locale/en-US/telephone/telephone.ftl | 8 + Resources/Locale/en-US/wires/wire-names.ftl | 1 + .../Entities/Mobs/Player/silicon.yml | 39 + .../Devices/Circuitboards/Machine/holopad.yml | 12 + .../Entities/Structures/Machines/holopad.yml | 158 ++++ Resources/Prototypes/Shaders/shaders.yml | 5 + Resources/Prototypes/Wires/layouts.yml | 10 +- Resources/Textures/Shaders/hologram.swsl | 23 + .../Structures/Machines/holopad.rsi/base.png | Bin 0 -> 457 bytes .../Structures/Machines/holopad.rsi/blank.png | Bin 0 -> 83 bytes .../Machines/holopad.rsi/icon_in_call.png | Bin 0 -> 414 bytes .../Machines/holopad.rsi/lights_calling.png | Bin 0 -> 425 bytes .../holopad.rsi/lights_hanging_up.png | Bin 0 -> 432 bytes .../Machines/holopad.rsi/lights_in_call.png | Bin 0 -> 326 bytes .../Machines/holopad.rsi/lights_ringing.png | Bin 0 -> 4429 bytes .../Structures/Machines/holopad.rsi/meta.json | 100 +++ .../Machines/holopad.rsi/panel_open.png | Bin 0 -> 221 bytes .../Machines/holopad.rsi/unpowered.png | Bin 0 -> 441 bytes 43 files changed, 3129 insertions(+), 8 deletions(-) create mode 100644 Content.Client/Holopad/HolopadBoundUserInterface.cs create mode 100644 Content.Client/Holopad/HolopadSystem.cs create mode 100644 Content.Client/Holopad/HolopadWindow.xaml create mode 100644 Content.Client/Holopad/HolopadWindow.xaml.cs create mode 100644 Content.Client/Telephone/TelephoneSystem.cs create mode 100644 Content.Server/Holopad/HolopadSystem.cs create mode 100644 Content.Server/Telephone/TelephoneSystem.cs create mode 100644 Content.Shared/Holopad/HolographicAvatarComponent.cs create mode 100644 Content.Shared/Holopad/HolopadComponent.cs create mode 100644 Content.Shared/Holopad/HolopadHologramComponent.cs create mode 100644 Content.Shared/Holopad/HolopadUserComponent.cs create mode 100644 Content.Shared/Holopad/SharedHolopadSystem.cs create mode 100644 Content.Shared/Telephone/SharedTelephoneSystem.cs create mode 100644 Content.Shared/Telephone/TelephoneComponent.cs create mode 100644 Resources/Audio/Machines/double_ring.ogg create mode 100644 Resources/Locale/en-US/holopad/holopad.ftl create mode 100644 Resources/Locale/en-US/telephone/telephone.ftl create mode 100644 Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/holopad.yml create mode 100644 Resources/Prototypes/Entities/Structures/Machines/holopad.yml create mode 100644 Resources/Textures/Shaders/hologram.swsl create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/base.png create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/blank.png create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/icon_in_call.png create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/lights_calling.png create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/lights_hanging_up.png create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/lights_in_call.png create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/lights_ringing.png create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/meta.json create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/panel_open.png create mode 100644 Resources/Textures/Structures/Machines/holopad.rsi/unpowered.png diff --git a/Content.Client/Chat/UI/SpeechBubble.cs b/Content.Client/Chat/UI/SpeechBubble.cs index 32e9f4ae9b..aa61e73e31 100644 --- a/Content.Client/Chat/UI/SpeechBubble.cs +++ b/Content.Client/Chat/UI/SpeechBubble.cs @@ -2,6 +2,7 @@ using System.Numerics; using Content.Client.Chat.Managers; using Content.Shared.CCVar; using Content.Shared.Chat; +using Content.Shared.Speech; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; @@ -141,7 +142,12 @@ namespace Content.Client.Chat.UI Modulate = Color.White; } - var offset = (-_eyeManager.CurrentEye.Rotation).ToWorldVec() * -EntityVerticalOffset; + var baseOffset = 0f; + + if (_entityManager.TryGetComponent(_senderEntity, out var speech)) + baseOffset = speech.SpeechBubbleOffset; + + var offset = (-_eyeManager.CurrentEye.Rotation).ToWorldVec() * -(EntityVerticalOffset + baseOffset); var worldPos = _transformSystem.GetWorldPosition(xform) + offset; var lowerCenter = _eyeManager.WorldToScreen(worldPos) / UIScale; diff --git a/Content.Client/Holopad/HolopadBoundUserInterface.cs b/Content.Client/Holopad/HolopadBoundUserInterface.cs new file mode 100644 index 0000000000..20b55ea8c7 --- /dev/null +++ b/Content.Client/Holopad/HolopadBoundUserInterface.cs @@ -0,0 +1,101 @@ +using Content.Shared.Holopad; +using Content.Shared.Silicons.StationAi; +using Robust.Client.Graphics; +using Robust.Client.UserInterface; +using Robust.Shared.Player; +using System.Numerics; + +namespace Content.Client.Holopad; + +public sealed class HolopadBoundUserInterface : BoundUserInterface +{ + [Dependency] private readonly ISharedPlayerManager _playerManager = default!; + [Dependency] private readonly IClyde _displayManager = default!; + + [ViewVariables] + private HolopadWindow? _window; + + public HolopadBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _window = this.CreateWindow(); + _window.Title = Loc.GetString("holopad-window-title", ("title", EntMan.GetComponent(Owner).EntityName)); + + if (this.UiKey is not HolopadUiKey) + { + Close(); + return; + } + + var uiKey = (HolopadUiKey)this.UiKey; + + // AIs will see a different holopad interface to crew when interacting with them in the world + if (uiKey == HolopadUiKey.InteractionWindow && EntMan.HasComponent(_playerManager.LocalEntity)) + uiKey = HolopadUiKey.InteractionWindowForAi; + + _window.SetState(Owner, uiKey); + _window.UpdateState(new Dictionary()); + + // Set message actions + _window.SendHolopadStartNewCallMessageAction += SendHolopadStartNewCallMessage; + _window.SendHolopadAnswerCallMessageAction += SendHolopadAnswerCallMessage; + _window.SendHolopadEndCallMessageAction += SendHolopadEndCallMessage; + _window.SendHolopadStartBroadcastMessageAction += SendHolopadStartBroadcastMessage; + _window.SendHolopadActivateProjectorMessageAction += SendHolopadActivateProjectorMessage; + _window.SendHolopadRequestStationAiMessageAction += SendHolopadRequestStationAiMessage; + + // If this call is addressed to an AI, open the window in the bottom right hand corner of the screen + if (uiKey == HolopadUiKey.AiRequestWindow) + _window.OpenCenteredAt(new Vector2(1f, 1f)); + + // Otherwise offset to the left so the holopad can still be seen + else + _window.OpenCenteredAt(new Vector2(0.3333f, 0.50f)); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + var castState = (HolopadBoundInterfaceState)state; + EntMan.TryGetComponent(Owner, out var xform); + + _window?.UpdateState(castState.Holopads); + } + + public void SendHolopadStartNewCallMessage(NetEntity receiver) + { + SendMessage(new HolopadStartNewCallMessage(receiver)); + } + + public void SendHolopadAnswerCallMessage() + { + SendMessage(new HolopadAnswerCallMessage()); + } + + public void SendHolopadEndCallMessage() + { + SendMessage(new HolopadEndCallMessage()); + } + + public void SendHolopadStartBroadcastMessage() + { + SendMessage(new HolopadStartBroadcastMessage()); + } + + public void SendHolopadActivateProjectorMessage() + { + SendMessage(new HolopadActivateProjectorMessage()); + } + + public void SendHolopadRequestStationAiMessage() + { + SendMessage(new HolopadStationAiRequestMessage()); + } +} diff --git a/Content.Client/Holopad/HolopadSystem.cs b/Content.Client/Holopad/HolopadSystem.cs new file mode 100644 index 0000000000..3bd556f1fc --- /dev/null +++ b/Content.Client/Holopad/HolopadSystem.cs @@ -0,0 +1,172 @@ +using Content.Shared.Chat.TypingIndicator; +using Content.Shared.Holopad; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; +using System.Linq; + +namespace Content.Client.Holopad; + +public sealed class HolopadSystem : SharedHolopadSystem +{ + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnShaderRender); + SubscribeAllEvent(OnTypingChanged); + + SubscribeNetworkEvent(OnPlayerSpriteStateRequest); + SubscribeNetworkEvent(OnPlayerSpriteStateMessage); + } + + private void OnComponentInit(EntityUid uid, HolopadHologramComponent component, ComponentInit ev) + { + if (!TryComp(uid, out var sprite)) + return; + + UpdateHologramSprite(uid); + } + + private void OnShaderRender(EntityUid uid, HolopadHologramComponent component, BeforePostShaderRenderEvent ev) + { + if (ev.Sprite.PostShader == null) + return; + + ev.Sprite.PostShader.SetParameter("t", (float)_timing.CurTime.TotalSeconds * component.ScrollRate); + } + + private void OnTypingChanged(TypingChangedEvent ev, EntitySessionEventArgs args) + { + var uid = args.SenderSession.AttachedEntity; + + if (!Exists(uid)) + return; + + if (!HasComp(uid)) + return; + + var netEv = new HolopadUserTypingChangedEvent(GetNetEntity(uid.Value), ev.IsTyping); + RaiseNetworkEvent(netEv); + } + + private void OnPlayerSpriteStateRequest(PlayerSpriteStateRequest ev) + { + var targetPlayer = GetEntity(ev.TargetPlayer); + var player = _playerManager.LocalSession?.AttachedEntity; + + // Ignore the request if received by a player who isn't the target + if (targetPlayer != player) + return; + + if (!TryComp(player, out var playerSprite)) + return; + + var spriteLayerData = new List(); + + if (playerSprite.Visible) + { + // Record the RSI paths, state names and shader paramaters of all visible layers + for (int i = 0; i < playerSprite.AllLayers.Count(); i++) + { + if (!playerSprite.TryGetLayer(i, out var layer)) + continue; + + if (!layer.Visible || + string.IsNullOrEmpty(layer.ActualRsi?.Path.ToString()) || + string.IsNullOrEmpty(layer.State.Name)) + continue; + + var layerDatum = new PrototypeLayerData(); + layerDatum.RsiPath = layer.ActualRsi.Path.ToString(); + layerDatum.State = layer.State.Name; + + if (layer.CopyToShaderParameters != null) + { + var key = (string)layer.CopyToShaderParameters.LayerKey; + + if (playerSprite.LayerMapTryGet(key, out var otherLayerIdx) && + playerSprite.TryGetLayer(otherLayerIdx, out var otherLayer) && + otherLayer.Visible) + { + layerDatum.MapKeys = new() { key }; + + layerDatum.CopyToShaderParameters = new PrototypeCopyToShaderParameters() + { + LayerKey = key, + ParameterTexture = layer.CopyToShaderParameters.ParameterTexture, + ParameterUV = layer.CopyToShaderParameters.ParameterUV + }; + } + } + + spriteLayerData.Add(layerDatum); + } + } + + // Return the recorded data to the server + var evResponse = new PlayerSpriteStateMessage(ev.TargetPlayer, spriteLayerData.ToArray()); + RaiseNetworkEvent(evResponse); + } + + private void OnPlayerSpriteStateMessage(PlayerSpriteStateMessage ev) + { + UpdateHologramSprite(GetEntity(ev.SpriteEntity), ev.SpriteLayerData); + } + + private void UpdateHologramSprite(EntityUid uid, PrototypeLayerData[]? layerData = null) + { + if (!TryComp(uid, out var hologramSprite)) + return; + + if (!TryComp(uid, out var holopadhologram)) + return; + + for (int i = hologramSprite.AllLayers.Count() - 1; i >= 0; i--) + hologramSprite.RemoveLayer(i); + + if (layerData == null || layerData.Length == 0) + { + layerData = new PrototypeLayerData[1]; + layerData[0] = new PrototypeLayerData() + { + RsiPath = holopadhologram.RsiPath, + State = holopadhologram.RsiState + }; + } + + for (int i = 0; i < layerData.Length; i++) + { + var layer = layerData[i]; + layer.Shader = "unshaded"; + + hologramSprite.AddLayer(layerData[i], i); + } + + UpdateHologramShader(uid, hologramSprite, holopadhologram); + } + + private void UpdateHologramShader(EntityUid uid, SpriteComponent sprite, HolopadHologramComponent holopadHologram) + { + // Find the texture height of the largest layer + float texHeight = sprite.AllLayers.Max(x => x.PixelSize.Y); + + var instance = _prototypeManager.Index(holopadHologram.ShaderName).InstanceUnique(); + instance.SetParameter("color1", new Vector3(holopadHologram.Color1.R, holopadHologram.Color1.G, holopadHologram.Color1.B)); + instance.SetParameter("color2", new Vector3(holopadHologram.Color2.R, holopadHologram.Color2.G, holopadHologram.Color2.B)); + instance.SetParameter("alpha", holopadHologram.Alpha); + instance.SetParameter("intensity", holopadHologram.Intensity); + instance.SetParameter("texHeight", texHeight); + instance.SetParameter("t", (float)_timing.CurTime.TotalSeconds * holopadHologram.ScrollRate); + + sprite.PostShader = instance; + sprite.RaiseShaderEvent = true; + } +} diff --git a/Content.Client/Holopad/HolopadWindow.xaml b/Content.Client/Holopad/HolopadWindow.xaml new file mode 100644 index 0000000000..9c3dfab1ea --- /dev/null +++ b/Content.Client/Holopad/HolopadWindow.xaml @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + +